From c4ce0da8f490a805f91a7db7f9639d9269b7bd85 Mon Sep 17 00:00:00 2001 From: Kano <89972582+kano-dot@users.noreply.github.com> Date: Mon, 27 Apr 2026 03:11:39 +0300 Subject: [PATCH] Runtime 2.0 (#22338) ## About PR Remaps runtime, the debugging map so it hopefully now has less ancient layout and provides a more thorough testing space Known issues: - Due to a race condition in between the overmap z-level and overmap object initialization, runtime's overmap object won't be tranferred to overmap properly, meaning not being able to test away site docking process with the runtime and its shuttle is still a present issue ## Images image1 image2 --- code/game/objects/structures/signs.dm | 4 + .../structures/stool_bed_chair_nest/bed.dm | 2 +- code/unit_tests/map_tests.dm | 1 + html/changelogs/kano-dot-run-outof-time.yml | 6 + maps/runtime/code/runtime.dm | 28 +- maps/runtime/code/runtime_unittest.dm | 17 +- maps/runtime/runtime.dmm | 27107 +++++++++------- maps/runtime/runtime_overmap.dm | 33 +- 8 files changed, 16245 insertions(+), 10953 deletions(-) create mode 100644 html/changelogs/kano-dot-run-outof-time.yml diff --git a/code/game/objects/structures/signs.dm b/code/game/objects/structures/signs.dm index 48d68658062..6dc5554d1a8 100644 --- a/code/game/objects/structures/signs.dm +++ b/code/game/objects/structures/signs.dm @@ -755,3 +755,7 @@ name = "SSF Nemora plaque" desc = "On the plaque's bronze surface, the old emblem of the Alliance of Sovereign Solarian Nations is engraved. Just below it, the text reads: 'SSF Nemora: Research Rooted in Discovery'." desc_extended = "At the bottom, there is an engraved text stained in dried blood that reads: 'Department of Colonization. Taking necessary steps today, charting the future.'." + +/obj/structure/sign/floor_plaque/runtime + name = "Runtime" + desc = "Abandon hope all ye who enter here. May your runtimes be few and debugging sessions fruitful." diff --git a/code/game/objects/structures/stool_bed_chair_nest/bed.dm b/code/game/objects/structures/stool_bed_chair_nest/bed.dm index 8d14b21176e..92e6a8267c3 100644 --- a/code/game/objects/structures/stool_bed_chair_nest/bed.dm +++ b/code/game/objects/structures/stool_bed_chair_nest/bed.dm @@ -127,7 +127,7 @@ /obj/structure/bed/proc/generate_strings() if(material_alteration & MATERIAL_ALTERATION_NAME) - name = padding_material ? "[padding_material.adjective_name] padded [material.adjective_name] [initial(name)]" : "[material.adjective_name] [initial(name)]" //this is not perfect but it will do for now. + name = padding_material ? "[padding_material.adjective_name] padded [material.adjective_name] [name]" : "[material.adjective_name] [name]" //this is not perfect but it will do for now. if(material_alteration & MATERIAL_ALTERATION_DESC) desc = initial(desc) diff --git a/code/unit_tests/map_tests.dm b/code/unit_tests/map_tests.dm index 4f50184b816..b25cd5ea08b 100644 --- a/code/unit_tests/map_tests.dm +++ b/code/unit_tests/map_tests.dm @@ -376,6 +376,7 @@ /area/space, /area/shuttle, /area/template_noop, + /area/supply/dock, // this is exempt because runtime has this area in its z-level for the sake of not having an additional non-station z-level, since we care about short boot time ) /datum/unit_test/map_test/areas_in_station_zlevels_must_be_marked_as_station_areas/start_test() diff --git a/html/changelogs/kano-dot-run-outof-time.yml b/html/changelogs/kano-dot-run-outof-time.yml new file mode 100644 index 00000000000..5c5a0b4b541 --- /dev/null +++ b/html/changelogs/kano-dot-run-outof-time.yml @@ -0,0 +1,6 @@ +author: Kano + +delete-after: True + +changes: + - rscadd: "Remapped runtime map to provide easier access to variety of testing." diff --git a/maps/runtime/code/runtime.dm b/maps/runtime/code/runtime.dm index 69ff11aef0a..76134b6bc2b 100644 --- a/maps/runtime/code/runtime.dm +++ b/maps/runtime/code/runtime.dm @@ -58,8 +58,13 @@ away_site_budget = 2 away_ship_budget = 2 - map_shuttles = list(/datum/shuttle/autodock/overmap/runtime) - warehouse_basearea = /area/storage/primary + map_shuttles = list( + /datum/shuttle/autodock/overmap/runtime, + /datum/shuttle/autodock/ferry/supply/horizon, + ) + + warehouse_basearea = /area/storage/supply + warehouse_packagearea = /area/storage/supply/package /** * This file is the only location in which runtime map areas should be defined. @@ -147,6 +152,16 @@ name = "Bridge Maintenance" icon_state = "maintcentral" +// Exterior +/area/exterior + name = "Exterior" + icon_state = "exterior" + needs_starlight = TRUE + has_gravity = FALSE + station_area = TRUE + requires_power = FALSE + ambience = AMBIENCE_SPACE + /// MEDICAL_AREAS /// OPERATIONS_AREAS @@ -181,6 +196,15 @@ icon_state = "primarystorage" allow_nightmode = 1 +/area/storage/supply + name = "Supply Storage" + icon_state = "dark128" + +/area/storage/supply/package + name = "Package Storage" + icon_state = "dark160" + requires_power = FALSE + /// TCOMMS_AREAS /area/tcommsat ambience = AMBIENCE_ENGINEERING diff --git a/maps/runtime/code/runtime_unittest.dm b/maps/runtime/code/runtime_unittest.dm index 4d244fbf9d4..21c1d7202c8 100644 --- a/maps/runtime/code/runtime_unittest.dm +++ b/maps/runtime/code/runtime_unittest.dm @@ -1,10 +1,17 @@ /datum/map/runtime ut_environ_exempt_areas = list( /area/space, - /area/turbolift + /area/exterior ) - ut_apc_exempt_areas = list(/area/maintenance/maintcentral) + + ut_apc_exempt_areas = list( + /area/storage/supply/package, + /area/supply/dock, + /area/centcom, + ) + ut_atmos_exempt_areas = list(/area) + ut_fire_exempt_areas = list( /area/maintenance/maintcentral, /area/shuttle/runtime, @@ -13,8 +20,12 @@ /area/construction/storage, /area/turret_protected, /area/tcommsat, - /area/construction/hallway + /area/construction/hallway, + /area/storage/supply/package, + /area/supply/dock, + /area/centcom, ) + excluded_test_types = list( /datum/unit_test/zas_area_test, /datum/unit_test/foundation/step_shall_return_true_on_success diff --git a/maps/runtime/runtime.dmm b/maps/runtime/runtime.dmm index 123c15458e1..0ab80b12fc2 100644 --- a/maps/runtime/runtime.dmm +++ b/maps/runtime/runtime.dmm @@ -3,3961 +3,9192 @@ /turf/template_noop, /area/template_noop) "ab" = ( -/obj/structure/lattice, -/turf/template_noop, -/area/template_noop) -"ac" = ( -/turf/simulated/wall/r_wall, -/area/maintenance/maintcentral) -"ad" = ( -/obj/structure/lattice, -/obj/structure/grille, -/turf/template_noop, -/area/template_noop) -"ae" = ( -/turf/simulated/floor/plating, -/area/maintenance/maintcentral) -"af" = ( -/turf/simulated/wall/r_wall, -/area/engineering/atmos) -"ag" = ( -/obj/machinery/power/rtg/advanced, -/obj/structure/cable{ - d2 = 2; - icon_state = "0-2" - }, -/turf/simulated/floor/airless, -/area/template_noop) -"ah" = ( -/turf/simulated/wall/r_wall, -/area/engineering) -"ai" = ( -/turf/simulated/wall/r_wall, -/area/engineering/gravity_gen) -"aj" = ( -/obj/machinery/alarm/north{ - locked = 0; - pixel_y = 23 - }, -/obj/structure/closet/secure_closet/atmos_personal, -/turf/simulated/floor/plating, -/area/engineering/atmos) -"ak" = ( -/obj/machinery/atmospherics/pipe/tank/air, -/turf/simulated/floor/plating, -/area/engineering/atmos) -"al" = ( -/obj/structure/lattice/catwalk, -/obj/structure/cable{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/turf/template_noop, -/area/template_noop) -"am" = ( -/obj/structure/lattice/catwalk, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/cable{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/turf/template_noop, -/area/template_noop) -"an" = ( -/obj/machinery/alarm/north{ - locked = 0; - pixel_y = 23 - }, -/obj/machinery/power/apc/west, -/obj/structure/closet/secure_closet/engineering_electrical, -/obj/structure/cable{ - d2 = 4; - icon_state = "0-4" - }, -/turf/simulated/floor/plating, -/area/engineering) -"ao" = ( -/obj/structure/cable{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/turf/simulated/floor/plating, -/area/engineering) -"ap" = ( -/obj/structure/closet/secure_closet/engineering_welding, -/turf/simulated/floor/plating, -/area/engineering) -"aq" = ( -/obj/machinery/alarm/north{ - locked = 0; - pixel_y = 23 - }, -/obj/structure/cable{ - d2 = 4; - icon_state = "0-4" - }, -/obj/effect/floor_decal/industrial/warning{ - dir = 9 - }, -/obj/machinery/power/smes/buildable{ - charge = 1000000; - input_attempt = 1; - input_level = 200000; - output_attempt = 1; - output_level = 200000 - }, -/turf/simulated/floor/tiled, -/area/engineering/gravity_gen) -"ar" = ( -/obj/machinery/power/apc/north, -/obj/structure/cable{ - d2 = 8; - icon_state = "0-8" - }, -/obj/structure/cable{ - d2 = 2; - icon_state = "0-2" - }, -/obj/effect/floor_decal/industrial/warning{ - dir = 5 - }, -/obj/machinery/power/sensor{ - name = "Powernet Sensor - Master Grid"; - name_tag = "Master" - }, -/turf/simulated/floor/tiled, -/area/engineering/gravity_gen) -"as" = ( -/obj/effect/map_effect/window_spawner/full/reinforced, -/obj/structure/sign/securearea{ - desc = "A warning sign which reads 'RADIOACTIVE AREA'"; - icon_state = "radiation"; - name = "RADIOACTIVE AREA"; - pixel_y = 32 - }, -/turf/simulated/floor/plating, -/area/engineering/gravity_gen) -"at" = ( -/turf/simulated/floor/tiled/dark, -/area/engineering/gravity_gen) -"au" = ( -/turf/simulated/floor/plating, -/area/engineering/atmos) -"av" = ( -/obj/machinery/atmospherics/pipe/simple/visible/blue{ - dir = 5 - }, -/turf/simulated/floor/plating, -/area/engineering/atmos) -"aw" = ( -/obj/machinery/atmospherics/pipe/manifold/visible/blue, -/turf/simulated/floor/plating, -/area/engineering/atmos) -"ax" = ( -/obj/machinery/meter, -/obj/machinery/atmospherics/pipe/manifold/visible/blue{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/engineering/atmos) -"ay" = ( -/obj/structure/cable{ - d2 = 4; - icon_state = "0-4" - }, -/obj/effect/decal/warning_stripes, -/obj/machinery/power/smes/magical{ - output_attempt = 1 - }, -/turf/simulated/floor/airless, -/area/template_noop) -"az" = ( -/obj/structure/lattice/catwalk, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/cable{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/obj/structure/cable{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/turf/template_noop, -/area/template_noop) -"aA" = ( -/obj/structure/lattice/catwalk, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/template_noop, -/area/template_noop) -"aC" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/plating, -/area/engineering) -"aD" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/plating, -/area/engineering) -"aE" = ( -/obj/machinery/door/airlock/external{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/shuttle/runtime) -"aF" = ( -/obj/machinery/power/terminal{ +/obj/machinery/atmospherics/unary/vent_scrubber/on, +/obj/effect/decal/curb{ dir = 1 }, -/obj/machinery/light{ - brightness_range = 16; - dir = 8; - must_start_working = 1 - }, -/obj/effect/floor_decal/industrial/warning{ - dir = 8 - }, -/obj/structure/cable{ - d2 = 8; - icon_state = "0-8" - }, -/turf/simulated/floor/tiled, -/area/engineering/gravity_gen) -"aG" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, +/turf/simulated/floor/tiled/full, +/area/hallway/primary/central_one) +"ac" = ( /obj/effect/floor_decal/industrial/warning{ dir = 4 }, -/turf/simulated/floor/tiled, -/area/engineering/gravity_gen) -"aH" = ( -/obj/effect/map_effect/window_spawner/full/reinforced, -/turf/simulated/floor/plating, -/area/engineering/gravity_gen) -"aI" = ( -/obj/structure/table/rack, -/obj/item/clothing/suit/space/void/engineering, -/obj/item/clothing/head/helmet/space/void/engineering, -/obj/item/clothing/shoes/magboots, -/turf/simulated/floor/plating, -/area/engineering/atmos) -"aJ" = ( -/obj/machinery/portable_atmospherics/canister/sleeping_agent, -/obj/machinery/atmospherics/portables_connector{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/engineering/atmos) -"aK" = ( -/obj/machinery/atmospherics/binary/pump{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/engineering/atmos) -"aL" = ( -/obj/machinery/atmospherics/pipe/manifold/visible/blue{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/engineering/atmos) -"aM" = ( -/obj/structure/lattice/catwalk, -/obj/structure/cable{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/turf/template_noop, -/area/template_noop) -"aN" = ( -/obj/structure/lattice/catwalk, -/obj/structure/cable{ - icon_state = "1-8" - }, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/template_noop, -/area/template_noop) -"aO" = ( -/obj/item/flashlight{ - pixel_y = 5 - }, -/obj/structure/table/standard, -/obj/item/radio/intercom/west{ - name = "Common Channel" - }, -/turf/simulated/floor/plating, -/area/engineering) -"aP" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/cable{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/turf/simulated/floor/plating, -/area/engineering) -"aQ" = ( -/obj/machinery/door/airlock/glass_engineering{ - dir = 4; - name = "Gravity Generator" - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/door/firedoor, -/turf/simulated/floor/tiled, -/area/engineering/gravity_gen) -"aR" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" +/turf/simulated/floor/tiled/white, +/area/hallway/primary/central_one) +"ad" = ( +/obj/effect/floor_decal/corner/yellow{ + dir = 5 }, +/obj/effect/floor_decal/industrial/outline/yellow, /obj/effect/floor_decal/industrial/warning{ - dir = 8 + dir = 1 }, -/obj/effect/landmark/start{ - name = "Chief Engineer" - }, -/turf/simulated/floor/tiled, -/area/engineering/gravity_gen) -"aS" = ( -/obj/structure/cable{ - icon_state = "1-8" - }, -/obj/effect/floor_decal/industrial/warning{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/engineering/gravity_gen) -"aT" = ( -/obj/machinery/door/airlock/glass_engineering{ - dir = 4; - name = "Gravity Generator" - }, -/obj/machinery/door/firedoor, -/turf/simulated/floor/tiled/dark, -/area/engineering/gravity_gen) -"aU" = ( -/obj/machinery/light{ - brightness_range = 16; - dir = 4; - must_start_working = 1 - }, -/turf/simulated/floor/tiled/dark, -/area/engineering/gravity_gen) -"aV" = ( -/obj/structure/dispenser{ - pixel_x = -1 - }, -/turf/simulated/floor/plating, -/area/engineering/atmos) -"aW" = ( -/obj/machinery/atmospherics/unary/vent_pump, -/turf/simulated/floor/plating, -/area/engineering/atmos) -"aX" = ( -/obj/machinery/portable_atmospherics/canister, -/obj/machinery/atmospherics/portables_connector{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/engineering/atmos) -"aY" = ( -/obj/machinery/atmospherics/binary/pump{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/engineering/atmos) -"aZ" = ( -/obj/machinery/power/rtg/advanced, -/obj/structure/cable, -/turf/simulated/floor/airless, -/area/template_noop) -"ba" = ( -/obj/item/weldingtool/experimental, -/obj/structure/table/standard, -/turf/simulated/floor/plating, -/area/engineering) -"bb" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/plating, -/area/engineering) -"bc" = ( -/obj/structure/closet/secure_closet/engineering_chief, -/turf/simulated/floor/plating, -/area/engineering) -"bd" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 8 - }, -/obj/machinery/camera/network/engineering{ - c_tag = "Engineering - Engine Airlock"; - dir = 4 - }, -/obj/machinery/firealarm/west, -/turf/simulated/floor/tiled, -/area/engineering/gravity_gen) -"be" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/engineering/gravity_gen) -"bf" = ( -/obj/machinery/gravity_generator/main/station, -/turf/simulated/floor/tiled/dark, -/area/engineering/gravity_gen) -"bg" = ( -/obj/machinery/power/apc/west, -/obj/structure/cable{ - d2 = 2; - icon_state = "0-2"; - pixel_y = 1 - }, -/obj/machinery/light{ - brightness_range = 16; - must_start_working = 1 - }, -/obj/item/analyzer, -/obj/item/wrench, -/obj/structure/table/standard, -/turf/simulated/floor/plating, -/area/engineering/atmos) -"bh" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 8 - }, -/turf/simulated/floor/plating, -/area/engineering/atmos) -"bi" = ( -/obj/machinery/meter, -/obj/machinery/atmospherics/pipe/simple/visible/universal{ - dir = 4 - }, -/obj/machinery/firealarm/south, -/turf/simulated/floor/plating, -/area/engineering/atmos) -"bj" = ( -/obj/machinery/atmospherics/valve{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/engineering/atmos) -"bk" = ( -/obj/machinery/light{ - brightness_range = 16; - must_start_working = 1 - }, -/obj/machinery/atmospherics/pipe/simple/visible/blue{ +/obj/structure/closet/secure_closet/engineering_electrical, +/turf/simulated/floor/tiled/gridded, +/area/hallway/primary/central_one) +"ae" = ( +/obj/effect/floor_decal/corner/mauve{ dir = 9 }, -/turf/simulated/floor/plating, -/area/engineering/atmos) -"bl" = ( -/obj/machinery/atmospherics/unary/vent_pump, -/obj/item/screwdriver, -/obj/item/wirecutters, -/obj/structure/table/standard, -/obj/machinery/firealarm/south, -/turf/simulated/floor/plating, -/area/engineering) -"bm" = ( -/obj/machinery/light{ - brightness_range = 16; - must_start_working = 1 +/obj/effect/floor_decal/industrial/warning{ + dir = 8 }, -/obj/item/storage/box/lights/mixed, -/obj/item/lightreplacer, -/obj/structure/table/standard, -/turf/simulated/floor/plating, -/area/engineering) -"bn" = ( +/turf/simulated/floor/tiled/white, +/area/hallway/primary/central_one) +"af" = ( +/obj/effect/map_effect/window_spawner/full/reinforced/firedoor, +/obj/machinery/door/blast/regular/open{ + id = "runtime_blastdoors"; + dir = 4 + }, +/turf/simulated/floor/tiled/full, +/area/hallway/primary/central_one) +"ag" = ( +/turf/simulated/floor/tiled/gridded, +/area/hallway/primary/central_one) +"ah" = ( +/obj/effect/floor_decal/corner/grey{ + dir = 9 + }, +/turf/simulated/floor/tiled/dark, +/area/hallway/primary/central_one) +"ai" = ( +/obj/effect/floor_decal/corner/grey{ + dir = 6 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/hallway/primary/central_one) +"aj" = ( +/obj/effect/floor_decal/corner/mauve/full, +/obj/machinery/optable/robotics, +/obj/effect/floor_decal/industrial/outline/yellow, /obj/effect/floor_decal/industrial/warning{ dir = 10 }, -/turf/simulated/floor/tiled, -/area/engineering/gravity_gen) -"bo" = ( -/obj/structure/closet/radiation, +/turf/simulated/floor/tiled/white, +/area/hallway/primary/central_one) +"ak" = ( +/obj/effect/floor_decal/industrial/warning, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 1 + }, +/turf/simulated/floor/tiled/white, +/area/hallway/primary/central_one) +"al" = ( +/obj/effect/floor_decal/corner/yellow{ + dir = 10 + }, +/obj/machinery/vending/tool{ + random_itemcount = 0 + }, +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/effect/floor_decal/industrial/warning, +/turf/simulated/floor/tiled/gridded, +/area/hallway/primary/central_one) +"am" = ( +/obj/effect/floor_decal/corner/yellow{ + dir = 10 + }, +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/effect/floor_decal/industrial/warning, +/obj/machinery/floodlight, +/turf/simulated/floor/tiled/gridded, +/area/hallway/primary/central_one) +"ao" = ( +/obj/effect/floor_decal/corner_wide/paleblue/full, +/obj/effect/floor_decal/industrial/outline/red, /obj/effect/floor_decal/industrial/warning{ + dir = 10 + }, +/obj/machinery/sleeper{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/hallway/primary/central_one) +"ap" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/obj/machinery/light/floor, +/turf/simulated/floor/tiled/bitile, +/area/hallway/primary/central_one) +"at" = ( +/obj/effect/shuttle_landmark/supply/horizon/dock{ + dir = 1 + }, +/obj/structure/railing/retractable, +/turf/simulated/floor/tiled/dark/full, +/area/hallway/primary/central_one) +"av" = ( +/obj/machinery/atmospherics/unary/vent_pump/on, +/turf/simulated/floor/tiled/full, +/area/hallway/primary/central_one) +"aw" = ( +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/machinery/computer/telecomms/server{ + network = "tcommsat"; + dir = 4 + }, +/turf/simulated/floor/tiled/techfloor, +/area/turret_protected/ai) +"ax" = ( +/obj/effect/map_effect/window_spawner/full/reinforced/firedoor, +/obj/machinery/door/blast/regular/open{ + id = "runtime_blastdoors"; + dir = 2 + }, +/turf/simulated/floor/tiled/full, +/area/construction) +"ay" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled/full, +/area/hallway/primary/central_one) +"aC" = ( +/obj/structure/extinguisher_cabinet/east, +/obj/machinery/atmospherics/pipe/simple/visible/blue{ + dir = 9 + }, +/turf/simulated/floor/tiled/full, +/area/construction/storage) +"aD" = ( +/obj/machinery/alarm/west, +/turf/simulated/floor/tiled/full, +/area/hallway/primary/central_one) +"aE" = ( +/obj/machinery/atmospherics/binary/pump/high_power{ + name = "Mix to Nitrous Oxide Storage" + }, +/obj/effect/floor_decal/industrial/hatch_tiny/red, +/turf/simulated/floor/tiled/gridded, +/area/construction/storage) +"aF" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 6 }, -/turf/simulated/floor/tiled, -/area/engineering/gravity_gen) -"bp" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 8 + }, +/obj/structure/lattice/catwalk/indoor/grate/gridded, +/turf/simulated/floor/plating, +/area/hallway/primary/central_one) +"aG" = ( +/obj/machinery/light/floor{ + dir = 1 + }, +/turf/simulated/floor/tiled/full, +/area/hallway/primary/central_one) +"aH" = ( +/obj/structure/lattice/catwalk/indoor/grate/dark, +/obj/structure/platform, +/turf/simulated/floor/plating, +/area/hallway/primary/central_one) +"aI" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/fuel, +/turf/simulated/wall/shuttle/space_ship/mercenary, +/area/shuttle/runtime) +"aJ" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/supply, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, +/obj/machinery/light/floor{ + dir = 1 + }, +/turf/simulated/floor/tiled/bitile{ + dir = 1 + }, +/area/hallway/primary/central_one) +"aK" = ( +/obj/effect/floor_decal/corner/grey{ + dir = 10 + }, +/obj/structure/cable/yellow{ icon_state = "1-2" }, +/obj/structure/cable{ + icon_state = "1-4" + }, +/turf/simulated/floor/tiled/gridded, +/area/hallway/primary/central_two) +"aL" = ( +/obj/effect/floor_decal/spline/plain/black{ + dir = 4 + }, +/turf/simulated/floor/tiled/gridded, +/area/shuttle/runtime) +"aM" = ( +/obj/effect/floor_decal/corner/grey/full{ + dir = 8 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 9 + }, +/turf/simulated/floor/tiled/dark, +/area/hallway/primary/central_one) +"aO" = ( +/obj/effect/floor_decal/corner/grey{ + dir = 5 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/turf/simulated/floor/tiled/dark, +/area/hallway/primary/central_one) +"aQ" = ( +/obj/effect/floor_decal/corner/grey/full{ + dir = 1 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 5 + }, +/turf/simulated/floor/tiled/dark, +/area/hallway/primary/central_one) +"aS" = ( +/obj/structure/sink/kitchen{ + name = "surgical sink"; + pixel_x = 20; + dir = 8 + }, +/turf/simulated/floor/tiled/white, +/area/hallway/primary/central_one) +"aT" = ( +/obj/structure/lattice/catwalk, +/turf/space, +/area/exterior) +"aV" = ( +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/machinery/ntnet_relay, +/turf/simulated/floor/tiled/techfloor, +/area/turret_protected/ai) +"aW" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/fuel, +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/machinery/portable_atmospherics/powered/pump/filled, +/turf/simulated/floor/tiled/dark/full, +/area/shuttle/runtime) +"aX" = ( +/obj/effect/decal/exterior_stairs/half/center{ + dir = 1 + }, +/turf/simulated/floor/tiled/bitile, +/area/hallway/primary/central_one) +"aY" = ( +/obj/effect/floor_decal/spline/plain/black{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/fuel{ + dir = 4 + }, +/turf/simulated/floor/tiled/gridded, +/area/shuttle/runtime) +"aZ" = ( +/obj/structure/table/rack, +/obj/item/gun/energy/rifle/pulse, +/obj/item/gun/energy/rifle/laser, +/obj/item/gun/energy/rifle/laser/sniper, +/obj/item/gun/energy/rifle/ionrifle, +/obj/item/gun/projectile/peac, +/obj/item/gun/energy/gun, +/obj/effect/floor_decal/industrial/outline/grey, +/obj/structure/railing/mapped/no_density/low{ + dir = 8 + }, +/turf/unsimulated/floor/dark_monotile, +/area/hallway/primary/central_one) +"ba" = ( +/obj/effect/map_effect/window_spawner/full/reinforced/firedoor, +/obj/machinery/door/blast/regular/open{ + id = "runtime_blastdoors"; + dir = 2 + }, +/turf/simulated/floor/tiled/full, +/area/hallway/primary/central_one) +"bb" = ( +/obj/structure/closet/crate/plastic, +/obj/item/target, +/obj/item/target, +/obj/item/target, +/obj/item/target, +/obj/item/target, +/obj/item/target, +/turf/unsimulated/floor/dark_monotile, +/area/hallway/primary/central_one) +"bc" = ( +/turf/unsimulated/floor/dark_monotile, +/area/hallway/primary/central_one) +"be" = ( +/obj/effect/floor_decal/corner/yellow/full{ + dir = 1 + }, +/obj/structure/table/rack, +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/effect/floor_decal/industrial/warning{ + dir = 5 + }, +/obj/item/stack/material/glass/phoronglass/full, +/obj/item/stack/material/glass/phoronglass/full, +/obj/item/stack/material/glass/phoronglass/full, +/turf/simulated/floor/tiled/gridded, +/area/hallway/primary/central_one) +"bg" = ( +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 4 + }, /turf/simulated/wall/r_wall, +/area/bridge) +"bh" = ( +/obj/structure/lattice/catwalk/indoor/grate/gridded, +/obj/structure/railing/mapped/no_density/low{ + dir = 1 + }, +/obj/structure/railing/mapped/no_density/low{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/hallway/primary/central_one) +"bi" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 + }, +/turf/simulated/floor/tiled/full, +/area/hallway/primary/central_one) +"bj" = ( +/obj/structure/lattice/catwalk/indoor/grate/gridded, +/obj/structure/railing/mapped/no_density/low{ + dir = 1 + }, +/obj/structure/railing/mapped/no_density/low{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/hallway/primary/central_one) +"bk" = ( +/obj/effect/floor_decal/corner/grey{ + dir = 6 + }, +/obj/machinery/alarm/west, +/turf/simulated/floor/tiled/gridded, +/area/turret_protected/ai) +"bl" = ( +/obj/effect/floor_decal/corner/brown/full{ + dir = 8 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 9 + }, +/obj/structure/table/steel, +/obj/item/price_scanner{ + pixel_x = -4; + pixel_y = 6 + }, +/obj/item/stamp/denied{ + pixel_x = -8; + pixel_y = -2 + }, +/turf/simulated/floor/tiled/gridded, +/area/hallway/primary/central_one) +"bp" = ( +/obj/effect/decal/exterior_stairs/half/center{ + dir = 4 + }, +/turf/simulated/floor/tiled/bitile{ + dir = 4 + }, /area/hallway/primary/central_one) "bq" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/door/airlock/engineering{ - dir = 1 - }, -/obj/machinery/door/firedoor, -/turf/simulated/floor/tiled, -/area/engineering/atmos) +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/effect/floor_decal/industrial/warning, +/obj/structure/closet/secure_closet/scientist/modlaser, +/turf/simulated/floor/tiled/white, +/area/hallway/primary/central_one) "br" = ( -/turf/simulated/wall/r_wall, -/area/bridge) +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/machinery/bluespacerelay, +/turf/simulated/floor/tiled/techfloor, +/area/turret_protected/ai) "bs" = ( -/obj/effect/map_effect/window_spawner/full/reinforced, -/turf/simulated/floor/plating, -/area/bridge) +/turf/simulated/floor/tiled/dark, +/area/hallway/primary/central_one) "bt" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/wall/r_wall, -/area/engineering) +/obj/effect/floor_decal/industrial/outline/grey, +/turf/unsimulated/floor/dark_monotile, +/area/hallway/primary/central_one) "bu" = ( -/obj/machinery/door/airlock{ - dir = 1 - }, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/door/firedoor, -/turf/simulated/floor/plating, -/area/engineering) +/obj/effect/floor_decal/industrial/outline/grey, +/obj/structure/target_stake, +/turf/unsimulated/floor/dark_monotile, +/area/hallway/primary/central_one) "bv" = ( -/turf/simulated/wall/r_wall, -/area/hallway/primary/central_two) -"bw" = ( -/obj/machinery/light{ - brightness_range = 16; - dir = 8; - must_start_working = 1 +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/effect/floor_decal/industrial/warning{ + dir = 4 }, -/turf/simulated/floor/plating, -/area/maintenance/maintcentral) +/obj/structure/closet/secure_closet/chemical, +/turf/simulated/floor/tiled/white, +/area/hallway/primary/central_one) "bx" = ( /turf/simulated/wall/r_wall, /area/hallway/primary/central_one) "by" = ( -/obj/machinery/power/apc/west, -/obj/structure/cable, -/obj/structure/cable{ - d2 = 2; - icon_state = "0-2"; - pixel_y = 1 - }, -/obj/machinery/alarm/north{ - locked = 0; - pixel_y = 23 - }, -/obj/structure/closet/secure_closet/custodial, -/turf/simulated/floor/tiled, -/area/hallway/primary/central_one) -"bz" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ +/obj/machinery/door/firedoor, +/obj/effect/floor_decal/industrial/hatch_door/yellow{ dir = 8 }, -/turf/simulated/floor/tiled, -/area/hallway/primary/central_one) -"bA" = ( -/obj/machinery/atmospherics/unary/vent_pump{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/hallway/primary/central_one) -"bB" = ( -/turf/simulated/floor/tiled, -/area/hallway/primary/central_one) -"bC" = ( -/obj/structure/closet/secure_closet/CMO, -/turf/simulated/floor/tiled, -/area/hallway/primary/central_one) -"bD" = ( -/obj/machinery/alarm/north{ - locked = 0; - pixel_y = 23 - }, -/obj/machinery/power/apc/west, -/obj/structure/cable{ - d2 = 2; - icon_state = "0-2"; - pixel_y = 1 - }, -/obj/structure/closet/secure_closet/captains, -/obj/effect/floor_decal/corner/dark_blue{ - dir = 9 - }, -/turf/simulated/floor/tiled, -/area/bridge) -"bE" = ( -/obj/machinery/computer/ship/sensors, -/turf/simulated/floor/tiled, -/area/bridge) -"bF" = ( -/obj/item/card/id/captains_spare, -/obj/structure/table/standard, -/turf/simulated/floor/tiled, -/area/bridge) -"bG" = ( -/obj/item/storage/backpack/holding, -/obj/structure/table/standard, -/turf/simulated/floor/tiled, -/area/bridge) -"bH" = ( -/obj/item/rfd_ammo, -/obj/item/rfd_ammo, -/obj/item/rfd_ammo, -/obj/item/rfd/construction, -/obj/structure/table/standard, -/turf/simulated/floor/tiled, -/area/bridge) -"bI" = ( -/obj/structure/closet/secure_closet/xo, -/obj/effect/floor_decal/corner/dark_blue{ - dir = 6 - }, -/obj/machinery/firealarm/east, -/turf/simulated/floor/tiled, -/area/bridge) -"bJ" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/tiled, -/area/hallway/primary/central_one) -"bK" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; +/obj/structure/cable/yellow{ icon_state = "1-2" }, -/turf/simulated/floor/tiled, +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 9 + }, +/obj/machinery/door/airlock/glass{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 1 + }, +/turf/simulated/floor/tiled/dark/full, +/area/bridge) +"bz" = ( +/obj/structure/lattice/catwalk/indoor/grate/gridded, +/obj/structure/railing/mapped/no_density/low{ + dir = 8 + }, +/obj/structure/railing/mapped/no_density/low, +/turf/simulated/floor/plating, +/area/hallway/primary/central_one) +"bA" = ( +/obj/structure/lattice/catwalk/indoor/grate/gridded, +/turf/simulated/floor/plating, +/area/hallway/primary/central_one) +"bB" = ( +/obj/structure/lattice/catwalk/indoor/grate/gridded, +/obj/structure/railing/mapped/no_density/low{ + dir = 4 + }, +/obj/structure/railing/mapped/no_density/low, +/turf/simulated/floor/plating, +/area/hallway/primary/central_one) +"bC" = ( +/obj/structure/lattice/catwalk/indoor, +/obj/structure/railing/mapped{ + dir = 1 + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/open, +/area/hallway/primary/central_two) +"bE" = ( +/obj/item/shield/riot, +/obj/item/clothing/suit/armor/carrier/riot, +/obj/item/clothing/head/helmet/riot, +/obj/item/clothing/suit/armor/carrier/heavy/sec, +/obj/item/clothing/head/helmet/security/heavy, +/obj/effect/floor_decal/industrial/outline/grey, +/obj/structure/table/rack, +/obj/structure/railing/mapped/no_density/low{ + dir = 4 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 8 + }, +/turf/simulated/floor/tiled/dark, +/area/hallway/primary/central_one) +"bF" = ( +/obj/effect/floor_decal/corner/grey{ + dir = 6 + }, +/turf/simulated/floor/tiled/dark, +/area/hallway/primary/central_one) +"bG" = ( +/obj/effect/floor_decal/corner/grey{ + dir = 10 + }, +/turf/simulated/floor/tiled/dark, +/area/hallway/primary/central_one) +"bH" = ( +/obj/effect/floor_decal/industrial/hatch/yellow, +/obj/item/clothing/ears/earmuffs, +/obj/item/clothing/glasses/safety/goggles, +/obj/structure/table/reinforced/steel, +/turf/simulated/floor/tiled/dark/full, +/area/hallway/primary/central_one) +"bI" = ( +/obj/machinery/camera/network/civilian_main{ + c_tag = "Central 5" + }, +/turf/simulated/floor/tiled/full, +/area/hallway/primary/central_one) +"bJ" = ( +/obj/effect/floor_decal/corner/brown{ + dir = 10 + }, +/obj/machinery/conveyor{ + id = "cargo_1" + }, +/obj/effect/floor_decal/industrial/hatch/operations, +/obj/effect/floor_decal/industrial/warning, +/turf/simulated/floor/tiled/gridded, +/area/hallway/primary/central_one) +"bK" = ( +/obj/effect/floor_decal/corner/brown{ + dir = 10 + }, +/obj/machinery/conveyor_switch/oneway{ + id = "cargo_1"; + pixel_x = 12; + pixel_y = -5 + }, +/obj/effect/floor_decal/industrial/warning, +/turf/simulated/floor/tiled/gridded, /area/hallway/primary/central_one) "bL" = ( -/obj/machinery/vending/cigarette, +/obj/effect/floor_decal/corner/grey{ + dir = 5 + }, /turf/simulated/floor/tiled/dark, /area/hallway/primary/central_one) "bM" = ( -/obj/machinery/vending/coffee, -/turf/simulated/floor/tiled/dark, -/area/hallway/primary/central_one) -"bN" = ( -/obj/machinery/vending/cola, -/turf/simulated/floor/tiled/dark, -/area/hallway/primary/central_one) -"bO" = ( -/obj/machinery/vending/snack, -/turf/simulated/floor/tiled/dark, +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 6 + }, +/turf/simulated/floor/wood/walnut, /area/hallway/primary/central_one) "bP" = ( -/obj/machinery/computer/arcade, -/turf/simulated/floor/tiled/dark, -/area/hallway/primary/central_one) -"bQ" = ( -/obj/machinery/alarm/north{ - locked = 0; - pixel_y = 23 - }, -/obj/machinery/power/apc/west, -/obj/structure/cable{ - d2 = 2; - icon_state = "0-2"; - pixel_y = 1 - }, -/obj/structure/closet/firecloset/full, -/obj/effect/floor_decal/corner/dark_blue{ - dir = 1 - }, -/obj/effect/floor_decal/corner/white{ +/obj/effect/floor_decal/industrial/outline_door/yellow, +/obj/effect/floor_decal/industrial/outline_door/yellow{ dir = 4 }, -/obj/effect/floor_decal/corner/white{ +/obj/effect/floor_decal/industrial/outline_door/yellow{ + dir = 1 + }, +/obj/effect/floor_decal/industrial/outline_door/yellow{ dir = 8 }, -/turf/simulated/floor/tiled, -/area/hallway/primary/central_two) -"bR" = ( -/obj/machinery/light{ - brightness_range = 16; - dir = 1; - must_start_working = 1 - }, -/obj/structure/closet/emcloset, -/obj/effect/floor_decal/corner/dark_blue{ - dir = 1 - }, -/obj/effect/floor_decal/corner/white{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/hallway/primary/central_two) -"bS" = ( -/obj/structure/closet/secure_closet/hos, -/obj/effect/floor_decal/corner/dark_blue{ - dir = 1 - }, -/obj/effect/floor_decal/corner/white{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/hallway/primary/central_two) -"bT" = ( -/obj/structure/closet/emcloset, -/obj/effect/floor_decal/corner/dark_blue{ - dir = 1 - }, -/obj/effect/floor_decal/corner/white{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/hallway/primary/central_two) -"bU" = ( -/obj/effect/map_effect/window_spawner/full/reinforced, -/turf/simulated/floor/plating, -/area/maintenance/maintcentral) -"bV" = ( -/obj/effect/map_effect/window_spawner/full/reinforced, -/turf/simulated/floor/plating, -/area/hallway/primary/central_one) -"bW" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/obj/structure/cable{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled, -/area/hallway/primary/central_one) -"bX" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/tiled, -/area/hallway/primary/central_one) -"bY" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled, -/area/hallway/primary/central_one) -"bZ" = ( -/obj/effect/map_effect/window_spawner/full/reinforced, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/plating, -/area/bridge) -"ca" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/cable{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/obj/effect/floor_decal/corner/dark_blue{ - dir = 9 - }, -/turf/simulated/floor/tiled, -/area/bridge) -"cb" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled, -/area/bridge) -"cc" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/effect/floor_decal/corner/dark_blue{ - dir = 6 - }, -/turf/simulated/floor/tiled, -/area/bridge) -"cd" = ( -/obj/effect/map_effect/window_spawner/full/reinforced, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/cable{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/turf/simulated/floor/plating, -/area/bridge) -"ce" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled, -/area/hallway/primary/central_one) -"cf" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/cable{ - icon_state = "1-8" - }, -/turf/simulated/floor/tiled, -/area/hallway/primary/central_one) -"cg" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/wall/r_wall, -/area/hallway/primary/central_two) -"ch" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/effect/floor_decal/corner/dark_blue{ - dir = 1 - }, -/obj/effect/floor_decal/corner/white{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/hallway/primary/central_two) -"ci" = ( -/turf/simulated/floor/tiled, -/area/hallway/primary/central_two) -"cj" = ( -/obj/machinery/door/airlock/maintenance{ - dir = 4 - }, -/obj/machinery/door/firedoor, -/turf/simulated/floor/plating, -/area/hallway/primary/central_two) -"ck" = ( -/obj/machinery/light{ - brightness_range = 16; - dir = 4; - must_start_working = 1 - }, -/turf/simulated/floor/tiled, -/area/hallway/primary/central_one) -"cl" = ( -/obj/machinery/light{ - brightness_range = 16; - must_start_working = 1 - }, -/obj/machinery/atmospherics/unary/vent_pump, -/obj/effect/floor_decal/corner/dark_blue/full, -/obj/item/modular_computer/console/preset/ai, -/turf/simulated/floor/tiled, -/area/bridge) -"cm" = ( -/obj/effect/floor_decal/corner/dark_blue{ - dir = 10 - }, -/turf/simulated/floor/tiled, -/area/bridge) -"cn" = ( -/obj/machinery/light{ - brightness_range = 16; - must_start_working = 1 - }, -/obj/effect/floor_decal/corner/dark_blue/full{ - dir = 4 - }, -/obj/item/modular_computer/console/preset/command/account, -/turf/simulated/floor/tiled, -/area/bridge) -"co" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/wall/r_wall, -/area/bridge) -"cp" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/light{ - brightness_range = 16; - dir = 8; - must_start_working = 1 - }, -/turf/simulated/floor/tiled, -/area/hallway/primary/central_one) -"cq" = ( -/obj/machinery/power/apc/south, -/turf/simulated/wall/r_wall, -/area/shuttle/runtime) -"cr" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/wall/r_wall, -/area/bridge) -"cs" = ( -/obj/machinery/door/airlock/glass_command{ - dir = 1; - name = "Bridge" - }, -/obj/machinery/door/firedoor, -/turf/simulated/floor/tiled, -/area/bridge) -"ct" = ( -/obj/machinery/door/airlock/glass{ - dir = 4 - }, -/obj/machinery/door/firedoor, -/turf/simulated/floor/tiled, -/area/hallway/primary/central_two) -"cu" = ( -/obj/effect/floor_decal/industrial/loading/yellow{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/hallway/primary/central_two) -"cv" = ( -/obj/machinery/door/airlock/external{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/hallway/primary/central_two) -"cw" = ( -/turf/simulated/floor/plating, -/area/hallway/primary/central_two) -"cx" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/hallway/primary/central_one) -"cy" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/light{ - brightness_range = 16; - dir = 1; - must_start_working = 1 - }, -/obj/effect/floor_decal/corner/dark_blue{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/hallway/primary/central_one) -"cz" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/supply, -/obj/effect/floor_decal/corner/dark_blue{ - dir = 5 - }, -/obj/machinery/ai_status_display{ - pixel_y = 32 - }, -/turf/simulated/floor/tiled, -/area/hallway/primary/central_one) -"cA" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/effect/floor_decal/corner/dark_blue{ - dir = 5 - }, -/turf/simulated/floor/tiled, -/area/hallway/primary/central_one) -"cB" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/light{ - brightness_range = 16; - dir = 1; - must_start_working = 1 - }, -/obj/effect/floor_decal/corner/dark_blue{ - dir = 1 - }, -/obj/machinery/newscaster/north, -/turf/simulated/floor/tiled, -/area/hallway/primary/central_one) -"cC" = ( -/obj/machinery/atmospherics/pipe/manifold4w/hidden/supply, -/turf/simulated/floor/tiled, -/area/hallway/primary/central_one) -"cD" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/wall/r_wall, -/area/hallway/primary/central_two) -"cE" = ( -/obj/machinery/atmospherics/unary/vent_pump{ - dir = 8 - }, -/obj/effect/floor_decal/corner/dark_blue{ - dir = 1 - }, -/obj/effect/floor_decal/corner/white{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/hallway/primary/central_two) -"cF" = ( -/obj/effect/floor_decal/corner/dark_blue{ - dir = 1 - }, -/obj/effect/floor_decal/corner/white{ - dir = 8 - }, -/obj/structure/table/standard, -/turf/simulated/floor/tiled, -/area/hallway/primary/central_two) -"cG" = ( -/obj/item/storage/box/fancy/donut, -/obj/effect/floor_decal/corner/dark_blue{ - dir = 1 - }, -/obj/effect/floor_decal/corner/dark_blue, -/obj/effect/floor_decal/corner/white{ - dir = 8 - }, -/obj/structure/table/standard, -/turf/simulated/floor/tiled, -/area/hallway/primary/central_two) -"cH" = ( -/obj/item/stack/material/glass{ - amount = 50 - }, -/obj/item/stack/rods{ - amount = 50 - }, -/obj/machinery/light{ - brightness_range = 16; - must_start_working = 1 - }, -/obj/effect/floor_decal/corner/dark_blue, -/obj/effect/floor_decal/corner/white{ - dir = 8 - }, -/obj/structure/table/standard, -/turf/simulated/floor/tiled, -/area/hallway/primary/central_two) -"cI" = ( -/obj/item/paper_bin{ - pixel_x = -3; - pixel_y = 7 - }, -/obj/effect/floor_decal/corner/dark_blue, -/obj/effect/floor_decal/corner/white{ - dir = 8 - }, -/obj/structure/table/standard, -/turf/simulated/floor/tiled, -/area/hallway/primary/central_two) -"cJ" = ( -/obj/item/healthanalyzer, -/obj/effect/floor_decal/corner/dark_blue, -/obj/effect/floor_decal/corner/white{ - dir = 8 - }, -/obj/structure/table/standard, -/turf/simulated/floor/tiled, -/area/hallway/primary/central_two) -"cK" = ( -/turf/simulated/wall/r_wall, -/area/construction) -"cL" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/wall/r_wall, -/area/construction) -"cM" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/wall/r_wall, -/area/construction) -"cN" = ( -/obj/machinery/door/airlock/glass{ - dir = 1 - }, -/obj/machinery/door/firedoor, -/turf/simulated/floor/tiled, -/area/construction) -"cO" = ( -/obj/effect/map_effect/window_spawner/full/reinforced, -/turf/simulated/floor/plating, -/area/construction) -"cP" = ( -/turf/simulated/wall/r_wall, -/area/storage/primary) -"cQ" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/wall/r_wall, -/area/storage/primary) -"cR" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/wall/r_wall, -/area/storage/primary) -"cS" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 4 - }, -/obj/structure/disposalpipe/trunk{ - dir = 1 - }, -/obj/structure/disposaloutlet{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/construction) -"cT" = ( -/obj/machinery/alarm/north{ - locked = 0 - }, -/obj/structure/cable, -/obj/machinery/power/apc/west, -/obj/effect/floor_decal/industrial/warning/corner, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 6 - }, -/turf/simulated/floor/tiled, -/area/construction) -"cU" = ( -/obj/effect/floor_decal/industrial/warning, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 9 - }, -/turf/simulated/floor/tiled, -/area/construction) -"cV" = ( -/obj/effect/floor_decal/industrial/warning, -/turf/simulated/floor/tiled, -/area/construction) -"cW" = ( -/obj/effect/floor_decal/industrial/warning/corner{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/construction) -"cX" = ( -/obj/machinery/alarm/north{ - locked = 0; - pixel_y = 23 - }, -/obj/machinery/power/apc/west, -/obj/structure/cable, -/turf/simulated/floor/tiled, -/area/storage/primary) -"cY" = ( -/obj/machinery/atmospherics/unary/vent_pump{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/storage/primary) -"cZ" = ( -/obj/effect/map_effect/window_spawner/full/reinforced, -/turf/simulated/floor/tiled/full, -/area/storage/primary) -"da" = ( -/turf/simulated/floor/tiled, -/area/storage/primary) -"db" = ( -/obj/effect/landmark{ - name = "RevenantRift" - }, -/turf/simulated/floor/plating, -/area/construction) -"dc" = ( -/turf/simulated/floor/plating, -/area/storage/primary) -"dd" = ( -/obj/machinery/light{ - brightness_range = 16; - dir = 8; - must_start_working = 1 - }, -/obj/effect/floor_decal/industrial/warning{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/construction) -"de" = ( -/turf/simulated/floor/plating, -/area/construction) -"df" = ( -/obj/machinery/light{ - brightness_range = 16; - dir = 4; - must_start_working = 1 - }, -/obj/effect/floor_decal/industrial/warning{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/construction) -"dg" = ( -/obj/machinery/light{ - brightness_range = 16; - dir = 8; - must_start_working = 1 - }, -/turf/simulated/floor/tiled, -/area/storage/primary) -"dh" = ( -/obj/machinery/light{ - brightness_range = 16; - dir = 4; - must_start_working = 1 - }, -/turf/simulated/floor/tiled, -/area/storage/primary) -"di" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/construction) -"dj" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/construction) -"dk" = ( -/obj/item/flashlight{ - pixel_y = 5 - }, -/obj/structure/table/standard, -/turf/simulated/floor/tiled, -/area/construction) -"dl" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/door/airlock/external{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/engineering) -"dm" = ( -/turf/simulated/wall, -/area/storage/primary) -"dn" = ( -/obj/machinery/door/airlock/glass{ - dir = 1 - }, -/obj/machinery/door/firedoor, -/turf/simulated/floor/tiled, -/area/storage/primary) -"dp" = ( -/obj/structure/window_frame/empty, -/turf/simulated/floor/tiled/full, -/area/storage/primary) -"dq" = ( -/obj/effect/landmark/thunderdome1, -/turf/simulated/floor/plating, -/area/construction) -"dr" = ( -/obj/machinery/door/airlock{ - dir = 4 - }, -/obj/machinery/door/firedoor, -/turf/simulated/floor/tiled, -/area/storage/primary) -"ds" = ( -/obj/item/storage/box/lights/mixed, -/obj/item/storage/box/lights/tubes, -/obj/machinery/light{ - brightness_range = 16; - must_start_working = 1 - }, -/obj/structure/table/standard, -/turf/simulated/floor/tiled, -/area/construction) -"dt" = ( -/obj/machinery/door/airlock{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/hallway/primary/central_one) -"du" = ( -/obj/structure/table/standard, -/turf/simulated/floor/tiled, -/area/construction) -"dv" = ( -/obj/structure/stairs/south, -/turf/simulated/floor/plating, -/area/construction) -"dw" = ( -/obj/effect/floor_decal/industrial/warning/corner{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/construction) -"dx" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/construction) -"dy" = ( -/obj/effect/floor_decal/industrial/warning/corner{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/construction) -"dz" = ( -/obj/item/lightreplacer, -/obj/structure/table/standard, -/turf/simulated/floor/tiled, -/area/construction) -"dB" = ( -/obj/machinery/atmospherics/unary/vent_pump/high_volume{ - dir = 4 - }, -/obj/machinery/airlock_sensor{ - dir = 4; - pixel_x = -20 - }, -/obj/effect/map_effect/marker/airlock{ - master_tag = "runtime_airlock_1_1"; - name = "runtime_airlock_1_1" - }, -/turf/simulated/floor/plating, -/area/maintenance/maintcentral) -"dC" = ( -/obj/machinery/light{ - brightness_range = 16; - must_start_working = 1 - }, -/obj/item/material/twohanded/fireaxe, -/obj/item/extinguisher, -/obj/structure/table/standard, -/turf/simulated/floor/tiled, -/area/construction) -"dI" = ( -/obj/machinery/fabricator/autolathe, -/turf/simulated/floor/tiled, -/area/construction/storage) -"dK" = ( -/obj/machinery/mineral/stacking_unit_console{ - id = "runtime_stacking_1"; - pixel_y = -21 - }, -/turf/simulated/floor/tiled, -/area/construction/storage) -"dM" = ( -/obj/machinery/mecha_part_fabricator{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/construction/storage) -"dV" = ( -/obj/effect/landmark/start{ - name = "Xenobotanist" - }, -/turf/simulated/floor/plating, -/area/construction) -"em" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 8 - }, -/obj/effect/landmark/start{ - name = "Physician" - }, -/obj/structure/disposalpipe/segment{ - icon_state = "pipe-c" - }, -/turf/simulated/floor/tiled, -/area/construction) -"eq" = ( -/obj/effect/landmark/start{ - name = "Chef" - }, -/turf/simulated/floor/plating, -/area/construction) -"es" = ( -/obj/item/radio/intercom/locked/west{ - frequency = 1343; - locked_frequency = 1343; - name = "Private AI Channel"; - pixel_y = 22 - }, -/obj/machinery/r_n_d/weapons_analyzer, -/turf/simulated/floor/tiled, -/area/construction/storage) -"eE" = ( -/obj/machinery/light{ - brightness_range = 16; - dir = 4; - must_start_working = 1 - }, -/obj/structure/cable/cyan{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/ai_status_display{ - pixel_x = 32 - }, -/turf/simulated/floor/tiled{ - name = "cooled floor"; - temperature = 278 - }, -/area/turret_protected/ai_upload_foyer) -"eH" = ( -/obj/machinery/vending/medical, -/obj/item/advanced_healthanalyzer, -/turf/simulated/floor/tiled, -/area/construction/storage) -"eI" = ( -/obj/machinery/camera/network/civilian_main{ - c_tag = "Central Corridor 1"; - dir = 1 - }, -/obj/item/radio/intercom/south, -/turf/simulated/floor/tiled, -/area/hallway/primary/central_one) -"eY" = ( -/obj/machinery/computer/ship/engines/terminal, -/turf/simulated/floor/tiled, -/area/storage/primary) -"fm" = ( -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/plating, -/area/construction) -"fq" = ( -/obj/machinery/computer/shuttle_control/explore/runtime, -/obj/item/paper/fluff/runtime/dontforgetuseovermap, -/turf/simulated/floor/shuttle, -/area/shuttle/runtime) -"fr" = ( -/obj/machinery/optable, -/mob/living/carbon/human/tajaran, -/turf/simulated/floor/tiled, -/area/construction/storage) -"ft" = ( -/obj/machinery/recharge_station, -/turf/simulated/floor/tiled{ - name = "cooled floor"; - temperature = 278 - }, -/area/turret_protected/ai_upload_foyer) -"fx" = ( -/obj/machinery/door/airlock/hatch{ - name = "Telecoms Control Room"; - req_access = list(61); - dir = 1 - }, -/turf/simulated/floor/tiled{ - name = "cooled floor"; - temperature = 278 - }, -/area/tcommsat/computer) -"fy" = ( -/obj/structure/cable{ - d1 = 16; - d2 = 0; - icon_state = "12-0" - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/zpipe/up/supply, -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" - }, -/turf/simulated/floor/tiled, -/area/construction/storage) -"fH" = ( -/obj/machinery/door/airlock/glass, -/turf/simulated/floor/tiled/dark, -/area/engineering/gravity_gen) -"fM" = ( -/turf/unsimulated/wall/steel, -/area/template_noop) -"fV" = ( -/obj/machinery/atmospherics/portables_connector, -/obj/machinery/portable_atmospherics/canister/air/airlock, -/turf/simulated/floor/plating, -/area/maintenance/maintcentral) -"fX" = ( -/turf/template_noop, -/area/space) -"gk" = ( -/turf/simulated/floor/tiled, -/area/construction/storage) -"gn" = ( -/obj/structure/cable/cyan{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/light{ - brightness_range = 16; - dir = 4; - must_start_working = 1 - }, -/obj/structure/closet/crate/secure/aimodules, -/turf/simulated/floor/tiled{ - name = "cooled floor"; - temperature = 278 - }, -/area/turret_protected/ai_upload_foyer) -"gr" = ( -/obj/effect/landmark/newplayer_start, -/turf/simulated/floor/tiled, -/area/hallway/primary/central_one) -"gv" = ( -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" - }, -/turf/simulated/floor/plating, -/area/construction) -"gC" = ( -/turf/simulated/wall/r_wall, -/area/outpost/mining_main/eva) -"gF" = ( -/obj/machinery/light{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/maintenance/maintcentral) -"gU" = ( -/obj/structure/cable/cyan{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/computer/robotics, -/turf/simulated/floor/tiled{ - name = "cooled floor"; - temperature = 278 - }, -/area/turret_protected/ai_upload_foyer) -"hf" = ( -/obj/machinery/ion_engine{ - dir = 1 - }, -/turf/simulated/floor/plating, -/area/shuttle/runtime) -"hz" = ( -/obj/effect/landmark/start{ - name = "Operations Manager" - }, -/turf/simulated/floor/tiled, -/area/construction/storage) -"hI" = ( -/obj/effect/landmark/start{ - name = "Surgeon" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/construction) -"hR" = ( -/obj/machinery/light{ - brightness_range = 16; - dir = 8; - must_start_working = 1 - }, -/obj/structure/cable{ - icon_state = "1-8" - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 4 - }, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/tiled, -/area/construction/storage) -"hW" = ( -/obj/machinery/disposal/deliveryChute{ - dir = 4 - }, -/obj/structure/disposalpipe/trunk{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/construction/storage) -"hY" = ( -/obj/structure/cable/cyan{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/door/blast/regular{ - density = 0; - dir = 4; - icon_state = "pdoor0"; - id = "AICore"; - name = "AI core maintenance hatch"; - opacity = 0 - }, -/obj/machinery/door/airlock/highsecurity{ - locked = 1; - name = "AI Core"; - req_access = list(16); - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/plasticflaps/airtight, -/turf/simulated/floor/tiled{ - name = "cooled floor"; - temperature = 278 - }, -/area/turret_protected/ai_upload_foyer) -"ia" = ( -/obj/machinery/atmospherics/unary/vent_pump{ - dir = 4 - }, -/turf/simulated/floor/tiled{ - name = "cooled floor"; - temperature = 278 - }, -/area/turret_protected/ai_upload_foyer) -"ie" = ( -/obj/effect/map_effect/window_spawner/full/reinforced, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/plating, -/area/hallway/primary/central_one) -"if" = ( -/obj/effect/landmark/start{ - name = "Lab Assistant" - }, -/turf/simulated/floor/plating, -/area/construction) -"iq" = ( -/obj/effect/landmark/start{ - name = "Security Officer" - }, -/turf/simulated/floor/plating, -/area/construction) -"is" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 4 - }, -/obj/structure/disposalpipe/junction{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/construction) -"iw" = ( -/turf/simulated/floor/tiled{ - name = "cooled floor"; - temperature = 278 - }, -/area/turret_protected/ai_upload_foyer) -"iA" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 8 - }, -/obj/effect/landmark/start{ - name = "Bartender" - }, -/turf/simulated/floor/tiled, -/area/construction) -"iD" = ( -/obj/structure/table/standard, -/obj/item/storage/belt/utility/very_full, -/turf/simulated/floor/tiled, -/area/construction) -"iG" = ( -/obj/structure/railing/mapped{ - dir = 4 - }, -/obj/item/storage/box/unique/monkeycubes, -/turf/simulated/floor/tiled, -/area/construction/storage) -"iN" = ( -/obj/structure/disposalpipe/trunk, -/obj/structure/disposaloutlet{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/storage/primary) -"iQ" = ( -/obj/effect/landmark/start{ - name = "Shaft Miner" - }, -/turf/simulated/floor/plating, -/area/outpost/mining_main/eva) -"iR" = ( -/obj/effect/landmark/skrell_srom, -/turf/simulated/floor/tiled, -/area/construction/storage) -"jf" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/wall/r_wall, -/area/engineering/gravity_gen) -"jj" = ( -/obj/machinery/r_n_d/destructive_analyzer, -/turf/simulated/floor/tiled, -/area/construction/storage) -"jD" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 8 - }, -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" - }, -/turf/simulated/floor/tiled, -/area/construction) -"kc" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/power/sensor{ - name = "Powernet Sensor - Engine Output"; - name_tag = "Engine Output" - }, -/obj/structure/cable{ - d2 = 8; - icon_state = "0-8" - }, -/turf/simulated/floor/plating, -/area/engineering) -"kt" = ( -/obj/machinery/door/airlock{ - dir = 4 - }, -/obj/machinery/door/firedoor, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/storage/primary) -"kI" = ( -/obj/machinery/power/apc/super/critical/west, -/obj/structure/cable/cyan, -/turf/simulated/floor/tiled{ - name = "cooled floor"; - temperature = 278 - }, -/area/turret_protected/ai) -"kM" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/camera/network/engineering{ - c_tag = "Engineering - Airlock" - }, -/obj/machinery/light/small{ - brightness_range = 16; - must_start_working = 1 - }, -/turf/simulated/floor/plating, -/area/engineering) -"kV" = ( -/obj/effect/landmark/start{ - name = "Hangar Technician" - }, -/turf/simulated/floor/plating, -/area/construction) -"kW" = ( -/obj/machinery/light/small{ - brightness_range = 16; - dir = 4; - must_start_working = 1 - }, -/obj/machinery/camera/network/command{ - c_tag = "Telecomms Control Room"; - dir = 8 - }, -/obj/structure/cable/cyan{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/tiled{ - name = "cooled floor"; - temperature = 278 - }, -/area/tcommsat/computer) -"kX" = ( -/turf/simulated/open, -/area/turbolift/main_mid) -"lg" = ( -/obj/machinery/light{ - brightness_range = 16; - dir = 4; - must_start_working = 1 - }, -/obj/effect/floor_decal/industrial/warning{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/construction/storage) -"ll" = ( -/obj/machinery/atmospherics/unary/freezer{ - icon_state = "freezer_1"; - set_temperature = 73; - use_power = 1 - }, -/turf/simulated/floor/tiled{ - name = "cooled floor"; - temperature = 278 - }, -/area/tcommsat/computer) -"lF" = ( -/obj/structure/lattice/catwalk, -/turf/simulated/open, -/area/construction/storage) -"lJ" = ( -/obj/machinery/door/window/holowindoor{ - dir = 4 - }, -/obj/machinery/mineral/processing_unit_console{ - id = "runtime_processing_1"; - pixel_y = -21 - }, -/turf/simulated/floor/tiled, -/area/construction/storage) -"md" = ( -/obj/machinery/ion_engine{ - dir = 1 - }, -/obj/effect/landmark/entry_point/fore, -/turf/simulated/floor/plating, -/area/shuttle/runtime) -"mg" = ( -/obj/effect/floor_decal/industrial/warning, -/obj/structure/railing/mapped{ - density = 0; - icon_state = "railing0-0" - }, -/turf/simulated/floor/tiled, -/area/construction/storage) -"mn" = ( -/obj/effect/floor_decal/corner/dark_blue{ - dir = 10 - }, -/obj/machinery/requests_console/south{ - announcementConsole = 1; - department = "Bridge"; - departmentType = 5; - name = "Bridge RC" - }, -/obj/machinery/computer/security, -/turf/simulated/floor/tiled, -/area/bridge) -"mo" = ( -/obj/machinery/light{ - brightness_range = 16; - dir = 4; - must_start_working = 1 - }, -/turf/simulated/floor/tiled, -/area/construction/storage) -"mr" = ( -/obj/item/gun/custom_ka/frame03/prebuilt/shaft_miner, -/obj/machinery/power/apc/north, -/obj/machinery/alarm/north{ - dir = 4; - pixel_y = 0; - pixel_x = 10 - }, -/turf/simulated/floor/plating, -/area/outpost/mining_main/eva) -"my" = ( -/obj/structure/cable/cyan{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/obj/structure/cable/cyan{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/tiled{ - name = "cooled floor"; - temperature = 278 - }, -/area/turret_protected/ai_upload_foyer) -"mM" = ( -/obj/machinery/camera/network/command{ - c_tag = "Messaging Server"; - dir = 8 - }, -/obj/machinery/light/small{ - brightness_range = 16; - dir = 4; - must_start_working = 1 - }, -/turf/simulated/floor/tiled{ - name = "cooled floor"; - temperature = 278 - }, -/area/turret_protected/ai_upload_foyer) -"mT" = ( -/obj/machinery/mecha_part_fabricator{ - dir = 1 - }, -/obj/item/storage/belt/utility/very_full, -/turf/simulated/floor/tiled, -/area/construction/storage) -"ne" = ( -/obj/structure/cable/cyan{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/plasticflaps/airtight, -/obj/machinery/door/airlock/hatch{ - name = "Telecoms Satellite"; - req_access = list(61); - dir = 1 - }, -/turf/simulated/floor/tiled{ - name = "cooled floor"; - temperature = 278 - }, -/area/tcommsat/chamber) -"nh" = ( -/obj/structure/cable{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/disposalpipe/segment{ - icon_state = "pipe-c" - }, -/turf/simulated/floor/tiled{ - name = "cooled floor"; - temperature = 278 - }, -/area/turret_protected/ai_upload_foyer) -"nv" = ( -/obj/effect/landmark/start{ - name = "Machinist" - }, -/turf/simulated/floor/tiled, -/area/construction/storage) -"nB" = ( -/obj/machinery/atmospherics/binary/pump/high_power/on{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/storage/primary) -"nD" = ( -/obj/machinery/light{ - brightness_range = 16; - must_start_working = 1 - }, -/turf/simulated/floor/tiled{ - name = "cooled floor"; - temperature = 278 - }, -/area/turret_protected/ai) -"nQ" = ( -/obj/effect/landmark/minimap_poi{ - desc = "Minimap description ayup" - }, -/turf/simulated/floor/plating, -/area/construction) -"ob" = ( -/obj/machinery/light{ - brightness_range = 16; - dir = 8; - must_start_working = 1 - }, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/plating, -/area/maintenance/maintcentral) -"og" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/construction/storage) -"oo" = ( -/obj/structure/table/rack, -/obj/item/stack/material/steel/full, -/obj/item/stack/material/glass/full, -/turf/simulated/floor/plating, -/area/construction) -"oD" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/construction/storage) -"oI" = ( -/obj/machinery/r_n_d/tech_processor, -/turf/simulated/floor/tiled, -/area/construction/storage) -"oL" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/wall/r_wall, -/area/construction/storage) -"oN" = ( -/obj/machinery/door/airlock/glass, -/turf/simulated/floor/plating, -/area/outpost/mining_main/eva) -"oP" = ( -/obj/machinery/telecomms/server/presets/engineering, -/obj/machinery/light{ - brightness_range = 16; - dir = 1; - must_start_working = 1 - }, -/turf/simulated/floor/bluegrid{ - name = "cooled mainframe floor"; - temperature = 278 - }, -/area/tcommsat/chamber) -"oR" = ( -/obj/machinery/camera/network/command{ - c_tag = "Telecomms"; - dir = 8 - }, -/turf/simulated/floor/tiled{ - name = "cooled floor"; - temperature = 278 - }, -/area/tcommsat/chamber) -"oS" = ( -/turf/simulated/wall/r_wall, -/area/tcommsat/chamber) -"pd" = ( -/obj/effect/landmark/start{ - name = "Atmospheric Technician" - }, -/turf/simulated/floor/plating, -/area/engineering/atmos) -"pe" = ( -/obj/machinery/chem_master, -/obj/item/reagent_containers/glass/beaker/bluespace, -/turf/simulated/floor/tiled, -/area/construction/storage) -"pv" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/effect/overmap/visitable/ship/runtime, -/turf/simulated/floor/tiled, -/area/bridge) -"pA" = ( -/obj/machinery/r_n_d/protolathe, -/turf/simulated/floor/tiled, -/area/construction/storage) -"pD" = ( -/obj/effect/landmark/start{ - name = "Assistant" - }, -/turf/simulated/floor/plating, -/area/construction) -"pI" = ( -/turf/simulated/wall/r_wall, -/area/tcommsat/computer) -"pM" = ( -/turf/simulated/floor/tiled, -/area/construction) -"pT" = ( -/obj/effect/landmark/start{ - name = "Ship Engineer" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/construction) -"pX" = ( -/obj/structure/cable{ - d1 = 16; - d2 = 0; - icon_state = "12-0" - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/zpipe/up/supply, -/obj/structure/disposalpipe/up, -/turf/simulated/floor/plating, -/area/maintenance/maintcentral) -"qa" = ( -/obj/machinery/hologram/holopad, -/turf/simulated/floor/tiled, -/area/hallway/primary/central_one) -"qb" = ( -/obj/machinery/hologram/holopad, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/tiled{ - name = "cooled floor"; - temperature = 278 - }, -/area/turret_protected/ai_upload_foyer) -"qi" = ( -/obj/machinery/computer/rdconsole/core{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/construction/storage) -"qk" = ( -/obj/machinery/atmospherics/unary/vent_pump/high_volume/aux{ - dir = 8 - }, -/obj/machinery/embedded_controller/radio/airlock/airlock_controller{ - dir = 8; - pixel_x = 20 - }, -/obj/effect/map_effect/marker/airlock{ - master_tag = "runtime_airlock_1_1"; - name = "runtime_airlock_1_1" - }, -/turf/simulated/floor/plating, -/area/maintenance/maintcentral) -"qq" = ( -/turf/simulated/open, -/area/construction/storage) -"qs" = ( -/turf/simulated/floor/tiled{ - name = "cooled floor"; - temperature = 278 - }, -/area/tcommsat/chamber) -"qx" = ( -/obj/effect/landmark/entry_point/aft, -/turf/simulated/wall/r_wall, -/area/shuttle/runtime) -"qY" = ( -/obj/effect/floor_decal/industrial/warning/corner{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/construction/storage) -"ra" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/effect/floor_decal/corner/dark_blue{ - dir = 5 - }, -/obj/machinery/photocopier, -/turf/simulated/floor/tiled, -/area/hallway/primary/central_one) -"rm" = ( -/obj/item/blueprints/shuttle, -/turf/simulated/floor/shuttle, -/area/shuttle/runtime) -"rs" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 6 - }, -/turf/simulated/wall/r_wall, -/area/construction/storage) -"rE" = ( -/obj/effect/landmark/start{ - name = "Xenoarchaeologist" - }, -/turf/simulated/floor/plating, -/area/construction) -"rU" = ( -/obj/item/storage/box/fancy/tray, -/obj/item/reagent_containers/hypospray, -/turf/simulated/floor/tiled, -/area/construction/storage) -"sf" = ( -/obj/machinery/computer/ship/sensors/terminal, -/turf/simulated/floor/tiled, -/area/storage/primary) -"sh" = ( -/obj/structure/cable/cyan{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/turf/simulated/floor/tiled{ - name = "cooled floor"; - temperature = 278 - }, -/area/turret_protected/ai_upload_foyer) -"sv" = ( -/obj/effect/landmark/start{ - name = "AI" - }, -/obj/structure/cable/cyan{ - d2 = 8; - icon_state = "0-8" - }, -/obj/effect/decal/warning_stripes, -/obj/item/radio/intercom/east{ - name = "Common Channel"; - pixel_y = -3 - }, -/obj/item/radio/intercom/south{ - frequency = 1343; - name = "Private Channel" - }, -/obj/machinery/button/remote/blast_door{ - desc = "A remote control-switch for the AI core maintenance door."; - id = "AICore"; - name = "AI Maintenance Hatch"; - pixel_x = 17; - pixel_y = 25; - req_access = list(20) - }, -/obj/machinery/newscaster/security_unit/east{ - pixel_y = 32 - }, -/obj/machinery/requests_console/east{ - department = "AI"; - departmentType = 5; - pixel_y = -32 - }, -/turf/simulated/floor/bluegrid{ - name = "cooled mainframe floor"; - temperature = 278 - }, -/area/turret_protected/ai) -"sx" = ( -/obj/effect/shuttle_landmark/runtime/hangar{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/construction) -"sH" = ( -/obj/structure/cable/cyan{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled{ - name = "cooled floor"; - temperature = 278 - }, -/area/turret_protected/ai_upload_foyer) -"sJ" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 1 - }, -/turf/simulated/floor/tiled{ - name = "cooled floor"; - temperature = 278 - }, -/area/turret_protected/ai_upload_foyer) -"sR" = ( -/obj/structure/cable{ - d1 = 32; - d2 = 2; - icon_state = "11-2" - }, -/obj/structure/lattice/catwalk, -/obj/machinery/atmospherics/pipe/zpipe/down/supply, -/obj/structure/disposalpipe/down, -/turf/simulated/open, -/area/construction/storage) -"sU" = ( -/obj/machinery/atmospherics/pipe/simple/hidden{ - dir = 9 - }, -/turf/simulated/floor/plating, -/area/maintenance/maintcentral) -"sX" = ( -/obj/machinery/atmospherics/pipe/simple/visible/black{ - dir = 5 - }, -/obj/structure/cable/cyan{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/turf/simulated/floor/tiled{ - name = "cooled floor"; - temperature = 278 - }, -/area/tcommsat/computer) -"sY" = ( -/obj/machinery/atmospherics/pipe/simple/hidden{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/aux{ - dir = 9 - }, -/turf/simulated/floor/plating, -/area/maintenance/maintcentral) -"tl" = ( -/obj/effect/floor_decal/industrial/warning, +/obj/structure/sign/floor_plaque/runtime, /obj/effect/landmark/start{ name = "Passenger" }, -/turf/simulated/floor/tiled, -/area/construction) -"tr" = ( -/obj/machinery/alarm/south, -/turf/simulated/floor/tiled, -/area/storage/primary) -"tA" = ( -/obj/structure/cable/cyan{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/tiled{ - name = "cooled floor"; - temperature = 278 - }, -/area/tcommsat/computer) -"tI" = ( -/turf/simulated/floor/tiled{ - name = "cooled floor"; - temperature = 278 - }, -/area/turret_protected/ai) -"tQ" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/tiled{ - name = "cooled floor"; - temperature = 278 - }, -/area/turret_protected/ai_upload_foyer) -"tT" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/hologram/holopad, -/turf/simulated/floor/tiled, -/area/bridge) -"uh" = ( -/turf/simulated/floor/airless, -/area/template_noop) -"uw" = ( -/turf/simulated/floor/bluegrid{ - name = "cooled mainframe floor"; - temperature = 278 - }, -/area/tcommsat/chamber) -"uA" = ( -/obj/machinery/atmospherics/pipe/tank/phoron{ - dir = 1 - }, -/turf/simulated/floor/plating, -/area/storage/primary) -"uC" = ( -/obj/effect/landmark/start{ - name = "Research Director" - }, -/turf/simulated/floor/tiled, -/area/construction/storage) -"uF" = ( -/obj/effect/decal/warning_stripes, -/obj/machinery/porta_turret{ - dir = 4 - }, -/turf/simulated/floor/tiled{ - name = "cooled floor"; - temperature = 278 - }, -/area/turret_protected/ai_upload_foyer) -"uI" = ( -/obj/effect/floor_decal/corner/dark_blue{ - dir = 1 - }, -/obj/effect/floor_decal/corner/white{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/hallway/primary/central_two) -"uQ" = ( -/obj/structure/sink, -/turf/simulated/floor/tiled, -/area/construction/storage) -"ve" = ( -/obj/machinery/power/apc/super/south, -/obj/structure/cable/cyan{ - d2 = 4; - icon_state = "0-4" - }, -/turf/simulated/floor/tiled{ - name = "cooled floor"; - temperature = 278 - }, -/area/tcommsat/chamber) -"vl" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/aux{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/maintenance/maintcentral) -"vm" = ( -/obj/structure/lattice/catwalk, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/template_noop, -/area/engineering) -"vV" = ( -/turf/simulated/wall/r_wall, -/area/turret_protected/ai) -"wi" = ( -/obj/machinery/atmospherics/pipe/simple/hidden, -/obj/machinery/access_button{ - pixel_x = 27; - pixel_y = -11 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/aux, -/obj/machinery/door/airlock/external/blue, -/obj/effect/map_effect/marker/airlock{ - master_tag = "runtime_airlock_1_1"; - name = "runtime_airlock_1_1" - }, -/obj/effect/map_effect/marker_helper/airlock/interior, -/turf/simulated/floor/plating, -/area/maintenance/maintcentral) -"wk" = ( -/obj/effect/floor_decal/corner/dark_blue{ - dir = 10 - }, -/obj/item/modular_computer/console/preset/command, -/turf/simulated/floor/tiled, -/area/bridge) -"wI" = ( -/obj/machinery/atmospherics/pipe/simple/hidden{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/maintenance/maintcentral) -"wL" = ( -/obj/machinery/computer/ship/engines, -/turf/simulated/floor/shuttle, -/area/shuttle/runtime) -"xb" = ( -/obj/machinery/atmospherics/pipe/simple/hidden{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/storage/primary) -"xi" = ( -/obj/effect/map_effect/window_spawner/full/reinforced, -/turf/simulated/floor/tiled{ - name = "cooled floor"; - temperature = 278 - }, -/area/tcommsat/computer) -"xv" = ( -/obj/machinery/atmospherics/pipe/manifold4w/hidden, -/turf/simulated/floor/plating, -/area/storage/primary) -"xz" = ( -/obj/item/destTagger, -/obj/item/stack/packageWrap, -/turf/simulated/floor/tiled, -/area/construction/storage) -"xE" = ( -/obj/machinery/atmospherics/pipe/manifold/visible/black{ - dir = 1 - }, -/obj/structure/cable/cyan{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/turf/simulated/floor/tiled{ - name = "cooled floor"; - temperature = 278 - }, -/area/tcommsat/chamber) -"xP" = ( -/obj/effect/landmark/latejoin, -/turf/simulated/floor/plating, -/area/construction) -"xV" = ( -/obj/effect/landmark/start{ - name = "Cyborg" - }, -/turf/simulated/floor/tiled{ - name = "cooled floor"; - temperature = 278 - }, -/area/turret_protected/ai_upload_foyer) -"yk" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/construction) -"yq" = ( -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" - }, -/turf/simulated/floor/tiled, -/area/storage/primary) -"yr" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/tiled{ - name = "cooled floor"; - temperature = 278 - }, -/area/turret_protected/ai_upload_foyer) -"yC" = ( -/obj/structure/lattice, -/obj/machinery/power/terminal{ - dir = 4 - }, -/turf/template_noop, -/area/template_noop) -"yE" = ( -/obj/structure/bed/stool/chair/shuttle, -/obj/effect/landmark/start{ - name = "Executive Officer" - }, -/turf/simulated/floor/shuttle, -/area/shuttle/runtime) -"yY" = ( -/obj/effect/floor_decal/industrial/warning, -/turf/simulated/floor/tiled, -/area/construction/storage) -"za" = ( -/obj/structure/table/standard, -/obj/item/book/manual/wiki/ntsl2, -/turf/simulated/floor/tiled{ - name = "cooled floor"; - temperature = 278 - }, -/area/tcommsat/computer) -"zd" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 9 - }, -/turf/simulated/wall/r_wall, -/area/construction/storage) -"ze" = ( -/obj/machinery/light{ - brightness_range = 16; - dir = 8; - must_start_working = 1 - }, -/obj/machinery/status_display{ - pixel_x = -32 - }, -/turf/simulated/floor/tiled{ - name = "cooled floor"; - temperature = 278 - }, -/area/turret_protected/ai_upload_foyer) -"zg" = ( -/obj/machinery/alarm/cold/west, -/obj/machinery/turretid/stun{ - name = "AI Upload turret control"; - pixel_y = -28 - }, -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" - }, -/turf/simulated/floor/tiled{ - name = "cooled floor"; - temperature = 278 - }, -/area/turret_protected/ai_upload_foyer) -"zw" = ( -/obj/structure/reagent_dispensers/acid{ - pixel_x = 28 - }, -/turf/template_noop, -/area/template_noop) -"zE" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/effect/map_effect/window_spawner/full/reinforced, -/turf/simulated/floor/tiled/full, -/area/hallway/primary/central_one) -"zF" = ( -/obj/machinery/telecomms/receiver/preset_right, -/turf/simulated/floor/bluegrid{ - name = "cooled mainframe floor"; - temperature = 278 - }, -/area/tcommsat/chamber) -"zM" = ( -/obj/machinery/telecomms/bus/preset_four, -/obj/machinery/light{ - brightness_range = 16; - dir = 1; - must_start_working = 1 - }, -/turf/simulated/floor/bluegrid{ - name = "cooled mainframe floor"; - temperature = 278 - }, -/area/tcommsat/chamber) -"zO" = ( -/obj/machinery/ntnet_relay, -/turf/simulated/floor/tiled{ - name = "cooled floor"; - temperature = 278 - }, -/area/tcommsat/computer) -"zP" = ( -/obj/machinery/camera/network/civilian_main{ - c_tag = "Central Corridor 2"; - dir = 1 - }, -/obj/item/radio/intercom/south, -/turf/simulated/floor/tiled, -/area/hallway/primary/central_one) -"zQ" = ( -/obj/machinery/firealarm/south, -/turf/simulated/floor/tiled, -/area/hallway/primary/central_one) -"zV" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 9 - }, -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" - }, -/turf/simulated/floor/tiled, -/area/construction/storage) -"zY" = ( -/obj/structure/table/standard, -/obj/item/paper/monitorkey, -/turf/simulated/floor/tiled{ - name = "cooled floor"; - temperature = 278 - }, -/area/turret_protected/ai_upload_foyer) -"AB" = ( -/obj/machinery/atmospherics/pipe/simple/hidden{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/aux{ - dir = 4 - }, -/obj/effect/map_effect/marker/airlock{ - master_tag = "runtime_airlock_1_1"; - name = "runtime_airlock_1_1" - }, -/turf/simulated/floor/plating, -/area/maintenance/maintcentral) -"Bc" = ( -/obj/machinery/power/sensor{ - long_range = 1; - name = "Powernet Sensor - AI Subgrid"; - name_tag = "AI Subgrid" - }, -/obj/structure/cable/cyan{ - d2 = 8; - icon_state = "0-8" - }, -/obj/structure/cable/cyan{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/bluegrid{ - name = "cooled mainframe floor"; - temperature = 278 - }, -/area/turret_protected/ai) -"Bd" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/wall/r_wall, -/area/construction) -"BQ" = ( -/turf/simulated/wall/r_wall, -/area/construction/storage) -"Ca" = ( -/obj/machinery/power/apc/east, -/obj/structure/cable/cyan, -/turf/simulated/floor/tiled{ - name = "cooled floor"; - temperature = 278 - }, -/area/tcommsat/computer) -"Cd" = ( -/obj/structure/engineer_maintenance/pipe/wall, -/turf/simulated/floor/tiled, -/area/storage/primary) -"Ct" = ( -/obj/machinery/door/airlock/glass{ - dir = 4 - }, -/obj/machinery/door/firedoor, -/turf/simulated/floor/plating, -/area/storage/primary) -"Cu" = ( -/obj/effect/landmark/latejoinlift, -/turf/simulated/floor/plating, -/area/construction) -"CB" = ( -/obj/machinery/computer/telecomms/server{ - network = "tcommsat" - }, -/turf/simulated/floor/tiled{ - name = "cooled floor"; - temperature = 278 - }, -/area/tcommsat/computer) -"CD" = ( -/obj/machinery/door/window{ - dir = 4 - }, -/turf/simulated/floor/tiled{ - name = "cooled floor"; - temperature = 278 - }, -/area/turret_protected/ai_upload_foyer) -"CG" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/tiled, -/area/construction/storage) -"CI" = ( -/obj/structure/engineer_maintenance/electric, -/turf/simulated/floor/tiled, -/area/storage/primary) -"CZ" = ( -/obj/machinery/atmospherics/unary/vent_pump{ - dir = 8; - external_pressure_bound = 140; - external_pressure_bound_default = 140; - icon_state = "map_vent_out"; - pressure_checks = 0; - pressure_checks_default = 0; - use_power = 1 - }, -/turf/simulated/floor/tiled{ - name = "cooled floor"; - temperature = 278 - }, -/area/tcommsat/chamber) -"Dq" = ( -/obj/machinery/atmospherics/pipe/simple/visible/black{ - dir = 5 - }, -/obj/structure/cable/cyan{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/structure/cable/cyan{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/tiled{ - name = "cooled floor"; - temperature = 278 - }, -/area/tcommsat/chamber) -"Es" = ( -/obj/structure/railing/mapped{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/construction/storage) -"Et" = ( -/obj/structure/cable/cyan{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/cable/cyan{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 9 - }, -/turf/simulated/floor/tiled{ - name = "cooled floor"; - temperature = 278 - }, -/area/turret_protected/ai) -"Eu" = ( -/obj/effect/landmark/entry_point/aft, -/turf/simulated/wall/r_wall, -/area/maintenance/maintcentral) -"Ew" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 5 - }, -/turf/simulated/wall/r_wall, -/area/construction/storage) -"Ex" = ( -/obj/effect/landmark/start{ - name = "Investigator" - }, -/turf/simulated/floor/plating, -/area/construction) -"ER" = ( -/obj/structure/closet/crate, -/obj/item/ore/aluminium, -/obj/item/ore/aluminium, -/obj/item/ore/coal, -/obj/item/ore/coal, -/obj/item/ore/diamond, -/obj/item/ore/diamond, -/obj/item/ore/glass, -/obj/item/ore/glass, -/obj/item/ore/gold, -/obj/item/ore/gold, -/obj/item/ore/hydrogen, -/obj/item/ore/hydrogen, -/obj/item/ore/iron, -/obj/item/ore/iron, -/obj/item/ore/lead, -/obj/item/ore/lead, -/obj/item/ore/osmium, -/obj/item/ore/osmium, -/obj/item/ore/phoron, -/obj/item/ore/phoron, -/obj/item/ore/silver, -/obj/item/ore/silver, -/obj/item/ore/slag, -/obj/item/ore/slag, -/obj/item/ore/uranium, -/obj/item/ore/uranium, -/turf/simulated/floor/tiled, -/area/construction/storage) -"ES" = ( -/obj/structure/lattice/catwalk, -/obj/machinery/shipsensors, -/turf/template_noop, -/area/engineering) -"Fn" = ( -/obj/machinery/light{ - brightness_range = 16; - dir = 1; - must_start_working = 1 - }, -/turf/simulated/floor/tiled{ - name = "cooled floor"; - temperature = 278 - }, -/area/turret_protected/ai) -"Ft" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden, -/turf/simulated/floor/plating, -/area/maintenance/maintcentral) -"Fw" = ( -/obj/machinery/alarm/west, -/turf/simulated/floor/tiled, -/area/storage/primary) -"FC" = ( -/obj/item/modular_computer/console/preset/ai, -/obj/machinery/camera/network/command{ - c_tag = "AI Core"; - dir = 8 - }, -/turf/simulated/floor/bluegrid{ - name = "cooled mainframe floor"; - temperature = 278 - }, -/area/turret_protected/ai) -"FR" = ( -/obj/machinery/atmospherics/pipe/simple/visible/black{ - dir = 4 - }, -/obj/structure/cable/cyan{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled{ - name = "cooled floor"; - temperature = 278 - }, -/area/tcommsat/chamber) -"FT" = ( -/obj/machinery/power/smes/buildable{ - charge = 5000000; - input_attempt = 1; - input_level = 200000; - output_attempt = 1; - output_level = 200000 - }, -/obj/structure/cable/cyan, -/turf/simulated/floor/tiled{ - name = "cooled floor"; - temperature = 278 - }, -/area/turret_protected/ai_upload_foyer) -"FU" = ( -/obj/effect/landmark/start{ - name = "Bridge Crew" - }, -/turf/simulated/floor/tiled, -/area/storage/primary) -"FZ" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/recharge_station, -/turf/simulated/floor/tiled/dark, -/area/hallway/primary/central_one) -"Gb" = ( -/obj/structure/engineer_maintenance/pipe, -/turf/simulated/floor/tiled, -/area/storage/primary) -"Go" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/plating, -/area/maintenance/maintcentral) -"Gp" = ( -/obj/effect/landmark/start{ - name = "Psychiatrist" - }, -/turf/simulated/floor/plating, -/area/construction) -"Gr" = ( -/obj/effect/floor_decal/industrial/warning/corner{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/construction/storage) -"Gs" = ( -/obj/machinery/atmospherics/unary/vent_pump{ - dir = 1 - }, -/obj/structure/disposalpipe/junction, -/turf/simulated/floor/tiled, -/area/construction/storage) -"GD" = ( -/obj/effect/landmark/latejoincyborg, -/turf/simulated/floor/tiled{ - name = "cooled floor"; - temperature = 278 - }, -/area/turret_protected/ai_upload_foyer) -"GF" = ( -/obj/effect/landmark/start{ - name = "Pharmacist" - }, -/turf/simulated/floor/tiled, -/area/construction/storage) -"GH" = ( -/obj/effect/landmark/start{ - name = "Scientist" - }, -/turf/simulated/floor/plating, -/area/construction) -"GO" = ( -/obj/machinery/computer/telecomms/monitor{ - network = "tcommsat" - }, -/turf/simulated/floor/tiled{ - name = "cooled floor"; - temperature = 278 - }, -/area/tcommsat/computer) -"Hg" = ( -/obj/effect/landmark/start{ - name = "Chaplain" - }, -/turf/simulated/floor/plating, -/area/construction) -"HB" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 5 - }, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/plating, -/area/maintenance/maintcentral) -"HD" = ( /obj/effect/landmark/start{ name = "Captain" }, -/turf/simulated/floor/plating, -/area/construction) -"HJ" = ( -/obj/structure/cable{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/turf/simulated/floor/plating, -/area/maintenance/maintcentral) -"HK" = ( -/obj/machinery/light{ - brightness_range = 16; - dir = 8; - must_start_working = 1 - }, -/obj/effect/floor_decal/industrial/warning{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/construction) -"HS" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/wall/r_wall, -/area/construction/storage) -"HV" = ( -/obj/machinery/alarm/east, -/turf/simulated/floor/tiled, -/area/storage/primary) -"In" = ( -/obj/machinery/computer/ship/helm, -/turf/simulated/floor/tiled, -/area/bridge) -"IL" = ( -/obj/effect/floor_decal/industrial/warning/corner{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/construction/storage) -"IQ" = ( -/obj/machinery/telecomms/hub/preset, -/turf/simulated/floor/bluegrid{ - name = "cooled mainframe floor"; - temperature = 278 - }, -/area/tcommsat/chamber) -"IY" = ( -/obj/machinery/computer/ship/engines, -/obj/item/paper/fluff/runtime/dontforgetuseovermap, -/turf/simulated/floor/plating, -/area/storage/primary) -"Jd" = ( /obj/effect/landmark{ - name = "Observer-Start" + name = "RevenantRift" }, -/turf/simulated/floor/plating, -/area/construction) -"Js" = ( -/obj/machinery/alarm/north{ - locked = 0; - pixel_y = 23 +/obj/effect/landmark/start{ + name = "Head of Security" }, -/obj/machinery/power/apc/west, -/obj/structure/cable{ - d2 = 2; - icon_state = "0-2" +/obj/effect/landmark/start{ + name = "Security Officer" }, -/obj/structure/cable{ - d1 = 2; - d2 = 4; - icon_state = "2-4" +/obj/effect/landmark/start{ + name = "Warden" }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 6 - }, -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" - }, -/turf/simulated/floor/tiled, -/area/construction/storage) -"Jw" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/construction/storage) -"Jx" = ( -/obj/machinery/computer/ship/helm, -/turf/simulated/floor/shuttle, -/area/shuttle/runtime) -"Jz" = ( -/obj/machinery/conveyor_switch/oneway{ - pixel_y = 7; - id = "mining_1" - }, -/turf/simulated/floor/tiled, -/area/construction/storage) -"JB" = ( -/obj/structure/engineer_maintenance/electric/wall, -/turf/simulated/floor/tiled, -/area/storage/primary) -"JC" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/effect/floor_decal/corner/dark_blue{ - dir = 5 - }, -/obj/machinery/papershredder{ - pixel_x = 7 - }, -/turf/simulated/floor/tiled, -/area/hallway/primary/central_one) -"JE" = ( -/obj/machinery/access_button{ - dir = 1; - pixel_x = 27; - pixel_y = 11 - }, -/obj/machinery/door/airlock/external/red, -/obj/effect/map_effect/marker/airlock{ - master_tag = "runtime_airlock_1_1"; - name = "runtime_airlock_1_1" - }, -/obj/effect/map_effect/marker_helper/airlock/exterior, -/turf/simulated/floor/plating, -/area/maintenance/maintcentral) -"JT" = ( -/obj/machinery/telecomms/server/presets/common, -/turf/simulated/floor/bluegrid{ - name = "cooled mainframe floor"; - temperature = 278 - }, -/area/tcommsat/chamber) -"Kj" = ( -/obj/structure/table/standard, -/obj/item/gun/projectile/automatic/rifle/sol, -/obj/item/gun/projectile/automatic/rifle/sol, -/obj/item/gun/projectile/automatic/rifle/sol, -/obj/item/gun/projectile/automatic/rifle/sol, -/obj/item/gun/projectile/automatic/rifle/sol, -/obj/item/gun/projectile/automatic/rifle/sol, -/obj/item/gun/projectile/automatic/rifle/sol, -/obj/item/gun/projectile/automatic/rifle/sol, -/obj/item/gun/projectile/automatic/rifle/sol, -/obj/item/gun/projectile/automatic/rifle/sol, -/obj/item/gun/projectile/automatic/rifle/sol, -/obj/item/gun/energy/rifle/laser, -/obj/machinery/recharger/wallcharger{ - pixel_y = -25 - }, -/turf/simulated/floor/tiled, -/area/construction) -"Ks" = ( -/obj/machinery/mineral/processing_unit{ - id = "runtime_processing_1"; - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/construction/storage) -"Kz" = ( -/obj/machinery/atmospherics/pipe/manifold/visible/blue{ - dir = 4 - }, -/obj/machinery/camera/network/engineering{ - c_tag = "Engineering - Atmospherics"; - dir = 8 - }, -/turf/simulated/floor/plating, -/area/engineering/atmos) -"KC" = ( -/obj/machinery/light{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/construction/storage) -"KE" = ( -/obj/machinery/firealarm/north{ - pixel_y = -17 - }, -/turf/simulated/floor/tiled, -/area/storage/primary) -"KM" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 8 +/obj/effect/landmark/start{ + name = "Investigator" }, /obj/effect/landmark/start{ name = "Security Cadet" }, -/turf/simulated/floor/tiled, -/area/construction) -"KR" = ( /obj/effect/landmark/start{ - name = "Head of Security" + name = "Engineering Apprentice" }, -/turf/simulated/floor/plating, -/area/construction) -"KU" = ( /obj/effect/landmark/start{ name = "Consular Officer" }, +/obj/effect/landmark/start{ + name = "Chef" + }, +/obj/effect/landmark/start{ + name = "Gardener" + }, +/obj/effect/landmark/start{ + name = "Bartender" + }, +/obj/effect/landmark/start{ + name = "Lab Assistant" + }, +/obj/effect/landmark/start{ + name = "Scientist" + }, +/obj/effect/landmark/start{ + name = "Xenoarchaeologist" + }, +/obj/effect/landmark/start{ + name = "Chaplain" + }, +/obj/effect/landmark/start{ + name = "Assistant" + }, +/obj/effect/landmark/start{ + name = "Xenobotanist" + }, +/obj/effect/landmark/start{ + name = "Xenobiologist" + }, +/obj/effect/landmark/start{ + name = "Hangar Technician" + }, +/obj/effect/landmark/start{ + name = "Bridge Crew" + }, +/obj/effect/landmark/start{ + name = "Atmospheric Technician" + }, +/obj/effect/landmark/start{ + name = "Chief Engineer" + }, +/obj/effect/landmark/start{ + name = "Shaft Miner" + }, +/obj/effect/landmark/newplayer_start, +/obj/effect/landmark/lobby_mobs_location, +/obj/effect/landmark/start{ + name = "Cyborg" + }, +/obj/effect/landmark/latejoincyborg, +/obj/effect/landmark/start{ + name = "Pharmacist" + }, +/obj/effect/landmark/start{ + name = "Research Director" + }, +/obj/effect/landmark/start{ + name = "Chief Medical Officer" + }, +/obj/effect/landmark/start{ + name = "Machinist" + }, +/obj/effect/landmark/start{ + name = "Operations Manager" + }, +/obj/effect/landmark/minimap_poi{ + desc = "Minimap description ayup" + }, +/turf/simulated/floor/tiled/gridded, +/area/hallway/primary/central_one) +"bQ" = ( +/obj/machinery/suit_cycler/medical/prepared, +/obj/effect/floor_decal/industrial/outline/medical, +/turf/simulated/floor/tiled/dark/full, +/area/hallway/primary/central_two) +"bT" = ( +/obj/effect/floor_decal/corner/yellow/full{ + dir = 1 + }, +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/effect/floor_decal/industrial/warning{ + dir = 5 + }, +/obj/structure/closet/secure_closet/engineering_welding, +/turf/simulated/floor/tiled/gridded, +/area/hallway/primary/central_one) +"bU" = ( +/obj/effect/floor_decal/corner_wide/orange/full{ + dir = 4 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 6 + }, +/turf/simulated/floor/tiled/white, +/area/hallway/primary/central_one) +"bV" = ( +/obj/effect/floor_decal/corner/brown/full, +/obj/effect/floor_decal/industrial/warning{ + dir = 10 + }, +/obj/structure/table/steel, +/obj/item/hand_labeler{ + pixel_x = -4; + pixel_y = -1 + }, +/turf/simulated/floor/tiled/gridded, +/area/hallway/primary/central_one) +"bW" = ( +/obj/machinery/portable_atmospherics/canister/air/airlock, +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/machinery/atmospherics/portables_connector{ + dir = 1 + }, +/turf/simulated/floor/tiled/full, +/area/hallway/primary/central_two) +"bX" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 1 + }, +/obj/effect/floor_decal/corner/black{ + dir = 5 + }, +/turf/simulated/floor/tiled/gridded, +/area/hallway/primary/central_one) +"bY" = ( +/obj/machinery/atmospherics/unary/vent_pump/high_volume{ + dir = 1 + }, +/obj/structure/lattice/catwalk/indoor/grate/dark, +/obj/effect/map_effect/marker/airlock/docking/runtime/dock, +/turf/simulated/floor/plating, +/area/hallway/primary/central_two) +"ca" = ( +/obj/effect/floor_decal/corner/mauve/full{ + dir = 1 + }, +/obj/machinery/r_n_d/circuit_imprinter, +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/effect/floor_decal/industrial/warning{ + dir = 5 + }, +/turf/simulated/floor/tiled/white, +/area/hallway/primary/central_one) +"cb" = ( +/obj/structure/table/rack, +/obj/effect/floor_decal/industrial/outline/grey, +/obj/item/clothing/suit/armor/carrier/ballistic, +/obj/item/clothing/head/helmet/ballistic, +/obj/item/clothing/suit/armor/carrier/ablative, +/obj/item/clothing/head/helmet/ablative, +/obj/structure/railing/mapped/no_density/low{ + dir = 4 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 8 + }, +/turf/simulated/floor/tiled/dark, +/area/hallway/primary/central_one) +"ce" = ( +/obj/effect/floor_decal/corner/mauve{ + dir = 5 + }, +/obj/machinery/mecha_part_fabricator{ + dir = 8 + }, +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/turf/simulated/floor/tiled/white, +/area/hallway/primary/central_one) +"cg" = ( +/obj/structure/lattice/catwalk, +/obj/machinery/atmospherics/pipe/simple/heat_exchanging{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/heat_exchanging{ + dir = 1 + }, +/turf/space, +/area/exterior) +"ch" = ( +/obj/effect/floor_decal/corner_wide/paleblue/full{ + dir = 1 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 5 + }, +/obj/structure/table/rack, +/obj/item/storage/box/masks{ + pixel_x = -8; + pixel_y = 7 + }, +/obj/item/storage/box/gloves{ + pixel_x = -8; + pixel_y = -3 + }, +/obj/item/storage/box/unique/sharps{ + pixel_x = 6; + pixel_y = 8 + }, +/obj/item/reagent_containers/spray/cleaner{ + desc = "Someone has crossed out the Space from Space Cleaner and written in Surgery. 'Do not remove under punishment of death!!!' is scrawled on the back."; + icon_state = "sterilesprayblue"; + name = "surgery cleaner"; + pixel_x = 4; + pixel_y = -6 + }, +/turf/simulated/floor/tiled/white, +/area/hallway/primary/central_one) +"ci" = ( +/obj/structure/lattice/catwalk/indoor/grate, +/turf/simulated/floor/plating, +/area/hallway/primary/central_two) +"cj" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/obj/structure/tank_wall/carbon_dioxide{ + icon_state = "co2-2" + }, +/turf/simulated/floor/airless, +/area/construction/storage) +"ck" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 1 + }, +/turf/simulated/floor/tiled/dark/full, +/area/bridge) +"cl" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 + }, +/obj/effect/decal/curb{ + dir = 1 + }, +/turf/simulated/floor/tiled/full, +/area/hallway/primary/central_one) +"cn" = ( +/obj/effect/decal/curb{ + dir = 1 + }, +/obj/effect/floor_decal/corner/black/full, +/turf/simulated/floor/tiled/gridded, +/area/hallway/primary/central_one) +"cp" = ( +/obj/effect/floor_decal/corner/grey{ + dir = 10 + }, +/obj/effect/floor_decal/industrial/warning, +/turf/simulated/floor/tiled/dark, +/area/hallway/primary/central_one) +"cq" = ( +/obj/effect/floor_decal/corner/mauve{ + dir = 10 + }, +/obj/effect/floor_decal/industrial/warning, +/turf/simulated/floor/tiled/white, +/area/hallway/primary/central_one) +"cr" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 1 + }, +/obj/effect/decal/curb/corner{ + dir = 1 + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/full, +/area/hallway/primary/central_one) +"ct" = ( +/obj/effect/floor_decal/corner_wide/paleblue{ + dir = 9 + }, +/obj/effect/floor_decal/industrial/outline/red, +/obj/effect/floor_decal/industrial/warning{ + dir = 8 + }, +/obj/machinery/bodyscanner{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/hallway/primary/central_one) +"cv" = ( +/obj/effect/floor_decal/corner/yellow{ + dir = 10 + }, +/obj/structure/table/rack, +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/effect/floor_decal/industrial/warning, +/obj/item/stack/rods/full, +/obj/item/stack/rods/full, +/obj/item/stack/rods/full, +/turf/simulated/floor/tiled/gridded, +/area/hallway/primary/central_one) +"cx" = ( +/obj/effect/floor_decal/corner/brown{ + dir = 5 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/turf/simulated/floor/tiled/gridded, +/area/hallway/primary/central_one) +"cy" = ( +/obj/effect/floor_decal/corner/brown/full{ + dir = 1 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 5 + }, +/turf/simulated/floor/tiled/gridded, +/area/hallway/primary/central_one) +"cz" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 1 + }, +/turf/simulated/floor/tiled/full, +/area/hallway/primary/central_one) +"cA" = ( +/obj/effect/floor_decal/corner/grey/full{ + dir = 8 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 9 + }, +/turf/simulated/floor/tiled/gridded, +/area/hallway/primary/central_one) +"cB" = ( +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/machinery/computer/telecomms/monitor{ + network = "tcommsat"; + dir = 1 + }, +/turf/simulated/floor/tiled/techfloor, +/area/turret_protected/ai) +"cC" = ( +/obj/item/bikehorn/rubberducky{ + desc = "Your code is quakced up."; + name = "Wisdom"; + pixel_x = 1; + pixel_y = 6 + }, +/obj/item/flame/candle{ + pixel_x = -10; + pixel_y = 12 + }, +/obj/item/flame/candle{ + pixel_x = -6; + pixel_y = 15 + }, +/obj/item/flame/candle{ + pixel_x = -11; + pixel_y = 5 + }, +/obj/item/flame/candle{ + pixel_x = -8 + }, +/obj/structure/table/rack/cafe_table{ + name = "shrine of wisdom" + }, +/turf/simulated/floor/carpet/darkblue, +/area/hallway/primary/central_one) +"cD" = ( +/obj/effect/floor_decal/corner/grey{ + dir = 8 + }, +/turf/simulated/floor/tiled/gridded, +/area/turret_protected/ai) +"cE" = ( +/obj/structure/lattice/catwalk/indoor/grate, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/structure/cable/yellow{ + icon_state = "2-4" + }, +/turf/simulated/floor/plating, +/area/hallway/primary/central_one) +"cH" = ( +/obj/effect/floor_decal/corner/mauve{ + dir = 5 + }, +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/turf/simulated/floor/tiled/white, +/area/hallway/primary/central_one) +"cK" = ( +/obj/effect/floor_decal/corner/black{ + dir = 10 + }, +/obj/structure/platform_stairs, +/obj/structure/platform{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/hallway/primary/central_one) +"cL" = ( +/obj/effect/floor_decal/corner/black{ + dir = 10 + }, +/obj/structure/platform_stairs, +/obj/structure/platform{ + dir = 8 + }, +/turf/simulated/floor/tiled/dark, +/area/hallway/primary/central_one) +"cM" = ( +/obj/machinery/conveyor{ + id = "cargo_1" + }, +/obj/effect/floor_decal/industrial/hatch/operations, +/obj/structure/plasticflaps, +/obj/structure/railing/mapped{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark/full, +/area/hallway/primary/central_one) +"cN" = ( +/obj/effect/floor_decal/industrial/hatch/operations, +/obj/structure/railing/mapped, +/turf/simulated/floor/tiled/full, +/area/hallway/primary/central_one) +"cO" = ( +/obj/effect/floor_decal/corner/black{ + dir = 10 + }, +/obj/structure/platform_stairs, +/obj/machinery/status_display/supply_display{ + pixel_x = 32 + }, +/turf/simulated/floor/tiled/dark, +/area/hallway/primary/central_one) +"cP" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/full, +/area/hallway/primary/central_one) +"cQ" = ( +/obj/structure/lattice, +/turf/space, +/area/exterior) +"cT" = ( +/obj/structure/lattice/catwalk/indoor/grate/dark, +/obj/structure/platform_deco{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/hallway/primary/central_one) +"cU" = ( +/obj/machinery/conveyor{ + id = "cargo_1"; + color = "#CCCCCC" + }, +/obj/effect/floor_decal/industrial/hatch/operations, +/turf/simulated/floor/tiled/dark/full, +/area/hallway/primary/central_one) +"cV" = ( +/obj/effect/floor_decal/industrial/hatch/operations, +/obj/machinery/conveyor{ + dir = 1; + id = "QMLoad"; + color = "#CCCCCC" + }, +/turf/simulated/floor/tiled/dark/full, +/area/hallway/primary/central_one) +"cW" = ( +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/effect/floor_decal/industrial/warning{ + dir = 4 + }, +/obj/machinery/smartfridge/chemistry, +/turf/simulated/floor/tiled/white, +/area/hallway/primary/central_one) +"cZ" = ( +/obj/effect/floor_decal/corner/mauve/full{ + dir = 1 + }, +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/effect/floor_decal/industrial/warning{ + dir = 5 + }, +/obj/machinery/recharge_station, +/turf/simulated/floor/tiled/white, +/area/hallway/primary/central_one) +"dc" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/full, +/area/construction) +"de" = ( +/obj/machinery/rotating_alarm{ + dir = 8 + }, +/turf/simulated/floor/tiled/full, +/area/hallway/primary/central_one) +"dg" = ( +/obj/effect/floor_decal/corner/mauve/full{ + dir = 8 + }, +/obj/structure/closet/crate, +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/effect/floor_decal/industrial/warning{ + dir = 9 + }, +/obj/item/stack/material/uranium/full, +/obj/item/stack/material/uranium/full, +/obj/item/stack/material/silver/full, +/obj/item/stack/material/silver/full, +/obj/item/stack/material/lead/full, +/obj/item/stack/material/lead/full, +/obj/item/stack/material/diamond/full, +/obj/item/stack/material/diamond/full, +/obj/item/stack/material/phoron/full, +/obj/item/stack/material/phoron/full, +/obj/item/stack/material/platinum/full, +/obj/item/stack/material/platinum/full, +/obj/item/stack/material/gold/full, +/obj/item/stack/material/gold/full, +/turf/simulated/floor/tiled/white, +/area/hallway/primary/central_one) +"dh" = ( +/obj/effect/floor_decal/corner/yellow{ + dir = 6 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 4 + }, +/turf/simulated/floor/tiled/gridded, +/area/hallway/primary/central_one) +"di" = ( +/obj/machinery/atmospherics/unary/vent_pump/siphon/on/atmos{ + id_tag = "co2_out"; + dir = 4 + }, +/turf/simulated/floor/reinforced/carbon_dioxide, +/area/construction/storage) +"dj" = ( +/obj/effect/floor_decal/industrial/outline/red, +/obj/machinery/iv_drip, +/turf/simulated/floor/tiled/white, +/area/hallway/primary/central_one) +"dk" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/obj/structure/tank_wall/hydrogen{ + icon_state = "h3" + }, +/turf/simulated/floor/airless, +/area/construction/storage) +"dl" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 8 + }, +/obj/effect/floor_decal/industrial/outline_door/yellow{ + dir = 4 + }, +/obj/effect/floor_decal/industrial/arrow/yellow{ + dir = 4 + }, +/obj/effect/floor_decal/industrial/outline_segment/yellow{ + dir = 6 + }, +/obj/effect/floor_decal/industrial/outline_segment/yellow{ + dir = 1 + }, +/turf/simulated/floor/tiled/gridded, +/area/hallway/primary/central_one) +"dm" = ( +/obj/structure/bed/stool/chair{ + dir = 8; + name = "chair of final agony" + }, +/turf/simulated/floor/carpet/darkblue, +/area/hallway/primary/central_one) +"do" = ( +/obj/effect/floor_decal/spline/plain/black{ + dir = 8 + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/gridded, +/area/shuttle/runtime) +"dq" = ( +/turf/simulated/floor/tiled/full, +/area/hallway/primary/central_one) +"ds" = ( +/obj/structure/lattice/catwalk/indoor/grate/dark, +/turf/simulated/floor/plating, +/area/hallway/primary/central_one) +"dt" = ( /turf/simulated/floor/plating, /area/construction) -"KY" = ( -/obj/machinery/r_n_d/circuit_imprinter, -/turf/simulated/floor/tiled, +"dv" = ( +/obj/structure/railing/mapped/no_density/low, +/obj/structure/bed/handrail, +/turf/simulated/floor/airless, +/area/shuttle/runtime) +"dx" = ( +/obj/effect/floor_decal/corner/mauve/full, +/obj/item/stack/material/steel/full, +/obj/structure/closet/crate, +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/effect/floor_decal/industrial/warning{ + dir = 10 + }, +/obj/item/stack/material/steel/full, +/obj/item/stack/material/steel/full, +/obj/item/stack/material/steel/full, +/obj/item/stack/material/steel/full, +/obj/item/stack/material/steel/full, +/obj/item/stack/material/glass/full, +/obj/item/stack/material/glass/full, +/obj/item/stack/material/glass/full, +/obj/item/stack/material/aluminium/full, +/obj/item/stack/material/aluminium/full, +/obj/item/stack/material/aluminium/full, +/turf/simulated/floor/tiled/white, +/area/hallway/primary/central_one) +"dy" = ( +/obj/effect/floor_decal/corner_wide/paleblue{ + dir = 9 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 8 + }, +/obj/structure/closet/secure_closet/medical2, +/obj/effect/floor_decal/industrial/outline/red, +/obj/item/mass_spectrometer, +/obj/item/auto_cpr, +/obj/item/screwdriver, +/turf/simulated/floor/tiled/white, +/area/hallway/primary/central_one) +"dz" = ( +/obj/effect/floor_decal/corner/yellow{ + dir = 5 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/turf/simulated/floor/tiled/gridded, +/area/hallway/primary/central_one) +"dC" = ( +/obj/structure/lattice/catwalk/indoor/grate, +/turf/simulated/floor/plating, +/area/construction) +"dE" = ( +/obj/machinery/atmospherics/pipe/manifold4w/visible/black, +/obj/machinery/meter, +/turf/simulated/floor/tiled/gridded, /area/construction/storage) -"Ly" = ( +"dH" = ( +/obj/machinery/power/smes/magical{ + output_attempt = 1; + output_level = 2000000 + }, +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/structure/cable/yellow{ + icon_state = "0-2" + }, +/turf/simulated/floor/tiled/dark/full, +/area/hallway/primary/central_two) +"dL" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 1 + }, +/turf/simulated/floor/tiled/full, +/area/hallway/primary/central_one) +"dQ" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/bitile, +/area/hallway/primary/central_one) +"dV" = ( +/turf/unsimulated/floor/plating, +/area/hallway/primary/central_one) +"dW" = ( +/obj/machinery/door/airlock/external/blue{ + dir = 4 + }, +/obj/effect/map_effect/marker_helper/airlock/exterior, +/obj/effect/map_effect/marker/airlock{ + master_tag = "runtime_airlock_1_1"; + name = "runtime_airlock_1_1" + }, +/obj/effect/floor_decal/industrial/hatch_door/red, +/turf/simulated/floor/tiled/dark/full, +/area/hallway/primary/central_two) +"dY" = ( +/obj/effect/floor_decal/corner/grey{ + dir = 8 + }, +/turf/simulated/floor/tiled/gridded, +/area/hallway/primary/central_two) +"ec" = ( +/obj/effect/floor_decal/industrial/hatch_small/yellow, +/obj/machinery/atmospherics/portables_connector{ + dir = 1 + }, +/turf/simulated/floor/tiled/gridded, +/area/construction/storage) +"ej" = ( +/obj/structure/tank_wall/carbon_dioxide{ + density = 0; + icon_state = "co2-6"; + opacity = 0 + }, +/obj/machinery/atmospherics/unary/outlet_injector{ + frequency = 1441; + id = "co2_in"; + name = "carbon dioxide injector"; + use_power = 1; + dir = 4 + }, +/turf/simulated/floor/reinforced/carbon_dioxide, +/area/construction/storage) +"et" = ( +/obj/machinery/atmospherics/pipe/simple/visible/green{ + dir = 5 + }, +/obj/machinery/meter, +/turf/simulated/floor/tiled/bitile/middle, +/area/construction/storage) +"eu" = ( +/obj/effect/floor_decal/corner/grey{ + dir = 5 + }, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 1 + }, +/turf/simulated/floor/tiled/gridded, +/area/hallway/primary/central_two) +"ey" = ( +/obj/effect/floor_decal/industrial/outline/grey, +/obj/structure/railing/mapped/no_density/low{ + dir = 4 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 8 + }, +/obj/machinery/vending/tacticool/ert, +/turf/simulated/floor/tiled/dark, +/area/hallway/primary/central_one) +"eG" = ( +/obj/structure/railing/mapped/no_density/low, +/obj/machinery/mineral/stacking_unit_console{ + id = "runtime_stacking_1"; + pixel_y = 32 + }, +/turf/simulated/floor/tiled/full, +/area/hallway/primary/central_two) +"eI" = ( +/obj/effect/floor_decal/industrial/outline_straight/operations, +/obj/effect/floor_decal/industrial/arrow/operations{ + dir = 1 + }, +/turf/simulated/floor/tiled/full, +/area/hallway/primary/central_one) +"eR" = ( +/obj/machinery/atmospherics/portables_connector, +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/effect/floor_decal/industrial/loading/yellow{ + dir = 1 + }, +/turf/simulated/floor/tiled/full, +/area/construction/storage) +"eW" = ( +/obj/effect/floor_decal/industrial/outline_straight/operations, +/obj/effect/floor_decal/industrial/arrow/operations, +/turf/simulated/floor/tiled/full, +/area/hallway/primary/central_one) +"eX" = ( +/turf/simulated/floor/reinforced/oxygen, +/area/construction/storage) +"eY" = ( +/obj/effect/floor_decal/corner/grey{ + dir = 5 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/turf/simulated/floor/tiled/gridded, +/area/hallway/primary/central_one) +"fc" = ( +/obj/machinery/door/firedoor, +/obj/effect/floor_decal/industrial/hatch/yellow, +/turf/unsimulated/floor/dark_monotile, +/area/hallway/primary/central_one) +"fe" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, -/obj/machinery/camera/network/civilian_main{ - c_tag = "Central Corridor 3"; +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/structure/lattice/catwalk/indoor/grate/gridded, +/turf/simulated/floor/plating, +/area/hallway/primary/central_one) +"ff" = ( +/obj/effect/decal/curb{ + dir = 8 + }, +/turf/simulated/floor/tiled/full, +/area/hallway/primary/central_one) +"fm" = ( +/obj/effect/floor_decal/spline/plain/black{ + dir = 8 + }, +/obj/structure/railing/retractable{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark/full, +/area/hallway/primary/central_one) +"fo" = ( +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/machinery/atmospherics/pipe/tank/phoron{ + dir = 1 + }, +/turf/simulated/floor/tiled/dark/full, +/area/shuttle/runtime) +"fr" = ( +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/machinery/atmospherics/portables_connector, +/obj/machinery/atmospherics/pipe/simple/hidden/fuel, +/obj/machinery/portable_atmospherics/canister/air/airlock, +/turf/simulated/floor/tiled/dark/full, +/area/shuttle/runtime) +"ft" = ( +/obj/effect/floor_decal/corner/grey/full{ + dir = 1 + }, +/turf/simulated/floor/tiled/gridded, +/area/hallway/primary/central_two) +"fu" = ( +/turf/simulated/wall/r_wall, +/area/construction/storage) +"fy" = ( +/obj/structure/lattice/catwalk/indoor/grate, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 1 + }, +/turf/simulated/floor/plating, +/area/hallway/primary/central_two) +"fF" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/obj/effect/floor_decal/corner/black{ + dir = 9 + }, +/obj/structure/cable/yellow{ + icon_state = "12-0" + }, +/obj/structure/cable/yellow{ + icon_state = "0-4" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 1 + }, +/turf/simulated/floor/tiled/gridded, +/area/hallway/primary/central_one) +"fG" = ( +/turf/simulated/wall/r_wall, +/area/construction) +"fH" = ( +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/machinery/telecomms/hub/preset, +/turf/simulated/floor/tiled/techfloor, +/area/turret_protected/ai) +"fL" = ( +/obj/machinery/atmospherics/pipe/simple/visible/black{ + dir = 5 + }, +/obj/machinery/light/spot{ + dir = 8 + }, +/turf/simulated/floor/tiled/full, +/area/construction/storage) +"fR" = ( +/obj/structure/cable/yellow{ + icon_state = "2-8" + }, +/turf/simulated/floor/tiled/gridded, +/area/turret_protected/ai) +"fS" = ( +/obj/structure/lattice/catwalk, +/obj/machinery/atmospherics/pipe/simple/heat_exchanging/junction{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/heat_exchanging/junction{ + dir = 4 + }, +/turf/space, +/area/exterior) +"fT" = ( +/obj/machinery/atmospherics/pipe/simple/visible/blue{ + dir = 4 + }, +/obj/structure/lattice/catwalk/indoor/grate, +/turf/simulated/floor/plating, +/area/construction/storage) +"fV" = ( +/obj/structure/railing/mapped/no_density/low, +/obj/machinery/light/spot{ + dir = 1 + }, +/turf/simulated/floor/tiled/full, +/area/hallway/primary/central_two) +"fW" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/full, +/area/hallway/primary/central_one) +"fX" = ( +/turf/template_noop, +/area/space) +"ga" = ( +/obj/effect/floor_decal/industrial/warning, +/obj/machinery/atmospherics/pipe/simple/visible/cyan{ + dir = 1 + }, +/obj/structure/tank_wall/oxygen{ + icon_state = "o2-16" + }, +/turf/simulated/floor/plating, +/area/construction/storage) +"gb" = ( +/obj/machinery/alarm/south, +/obj/machinery/atmospherics/pipe/simple/hidden/red{ + dir = 8 + }, +/turf/simulated/floor/tiled/full, +/area/construction/storage) +"gd" = ( +/obj/effect/floor_decal/industrial/warning, +/obj/structure/tank_wall/nitrogen{ + icon_state = "n15" + }, +/turf/simulated/floor/plating, +/area/construction/storage) +"ge" = ( +/obj/structure/railing/mapped/no_density/low{ + dir = 8 + }, +/obj/machinery/atmospherics/unary/engine, +/turf/simulated/floor/airless, +/area/shuttle/runtime) +"gf" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/obj/structure/crate_shelf, +/turf/simulated/floor/tiled/dark/full, +/area/storage/supply) +"gg" = ( +/obj/effect/floor_decal/corner/yellow{ + dir = 8 + }, +/obj/effect/floor_decal/corner/dark_blue{ + dir = 1 + }, +/obj/machinery/atmospherics/binary/pump/high_power{ + name = "Canister to Carbondioxide Storage"; + dir = 1 + }, +/turf/simulated/floor/tiled/gridded, +/area/construction/storage) +"gh" = ( +/obj/effect/decal/curb{ + dir = 8 + }, +/obj/effect/floor_decal/corner/brown{ + dir = 6 + }, +/turf/simulated/floor/tiled/gridded, +/area/storage/supply) +"gj" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/manifold/visible/green, +/obj/structure/tank_wall/nitrogen{ + icon_state = "n10" + }, +/turf/simulated/floor/plating, +/area/construction/storage) +"gk" = ( +/obj/structure/platform/ledge{ + dir = 1 + }, +/obj/structure/lattice, +/turf/simulated/open, +/area/hallway/primary/central_two) +"go" = ( +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/effect/floor_decal/industrial/loading/yellow{ + dir = 8 + }, +/obj/machinery/atmospherics/binary/pump/high_power{ + name = "Exterior Cooling to Mix"; + dir = 8 + }, +/turf/simulated/floor/plating, +/area/construction/storage) +"gs" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/visible/red{ + dir = 9 + }, +/obj/structure/tank_wall/hydrogen{ + icon_state = "h9" + }, +/turf/simulated/floor/airless, +/area/construction/storage) +"gt" = ( +/turf/simulated/floor/airless, +/area/exterior) +"gw" = ( +/obj/effect/floor_decal/industrial/hatch_tiny/yellow, +/obj/machinery/atmospherics/binary/pump/high_power{ + dir = 1 + }, +/turf/simulated/floor/tiled/dark/full, +/area/shuttle/runtime) +"gz" = ( +/obj/structure/tank_wall/phoron{ + density = 0; + icon_state = "ph5"; + opacity = 0 + }, +/turf/simulated/floor/reinforced/phoron, +/area/construction/storage) +"gE" = ( +/obj/machinery/atmospherics/pipe/manifold4w/visible/yellow, +/turf/simulated/floor/tiled/gridded, +/area/construction/storage) +"gO" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/obj/effect/floor_decal/industrial/warning, +/turf/simulated/floor/reinforced, +/area/hallway/primary/central_two) +"gP" = ( +/obj/structure/cable/yellow{ + icon_state = "1-8" + }, +/turf/simulated/floor/tiled/full, +/area/construction) +"gU" = ( +/obj/structure/platform/ledge{ + dir = 1 + }, +/turf/simulated/open, +/area/hallway/primary/central_two) +"gW" = ( +/obj/effect/floor_decal/industrial/warning, +/obj/structure/railing/mapped, +/obj/effect/floor_decal/industrial/hatch/operations, +/obj/machinery/conveyor{ + id = "cargo_1"; + color = "#CCCCCC" + }, +/turf/simulated/floor/tiled/dark/full, +/area/supply/dock) +"gY" = ( +/obj/effect/floor_decal/corner/dark_green/full{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 10 + }, +/obj/effect/floor_decal/spline/plain/corner/paleblue{ dir = 8 }, /turf/simulated/floor/tiled, /area/hallway/primary/central_one) -"LF" = ( -/obj/machinery/computer/ship/targeting/terminal, -/obj/item/paper/fluff/runtime/dontforgetuseovermap, -/turf/simulated/floor/tiled, -/area/storage/primary) -"LM" = ( -/obj/effect/landmark/lobby_mobs_location, -/turf/unsimulated/floor, -/area/template_noop) -"ME" = ( -/obj/machinery/atmospherics/portables_connector/aux{ +"gZ" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 5 + }, +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 8 + }, +/turf/simulated/floor/reinforced, +/area/hallway/primary/central_two) +"ha" = ( +/obj/effect/floor_decal/industrial/warning, +/obj/machinery/atmospherics/pipe/manifold/visible/cyan{ + dir = 8 + }, +/obj/structure/tank_wall/oxygen{ + icon_state = "o2-14" + }, +/turf/simulated/floor/plating, +/area/construction/storage) +"hb" = ( +/obj/effect/floor_decal/industrial/hatch/operations, +/obj/machinery/conveyor{ + dir = 1; + id = "QMLoad"; + color = "#CCCCCC" + }, +/turf/simulated/floor/tiled/dark/full, +/area/supply/dock) +"hc" = ( +/obj/effect/floor_decal/corner/dark_blue/full, +/obj/effect/floor_decal/corner/dark_blue{ dir = 4 }, -/obj/machinery/portable_atmospherics/canister/air/airlock, -/turf/simulated/floor/plating, -/area/maintenance/maintcentral) -"MW" = ( -/obj/effect/landmark/latejoincryo, -/turf/simulated/floor/plating, -/area/construction) -"Ng" = ( -/obj/machinery/computer/operating{ +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 8 + }, +/turf/simulated/floor/tiled/dark, +/area/bridge) +"hd" = ( +/obj/machinery/atmospherics/pipe/simple/visible/green{ dir = 1 }, -/turf/simulated/floor/tiled, +/turf/simulated/wall/r_wall, /area/construction/storage) -"Nh" = ( +"hf" = ( +/obj/effect/landmark/entry_point/port, +/turf/simulated/wall/r_wall, +/area/hallway/primary/central_one) +"hg" = ( +/obj/structure/railing/mapped/no_density/low{ + dir = 4 + }, +/obj/structure/table/reinforced/steel, +/obj/effect/floor_decal/industrial/outline/grey, +/obj/item/paper/fluff/runtime/dontforgetuseovermap{ + pixel_y = 4 + }, +/turf/simulated/floor/carpet/rubber, +/area/shuttle/runtime) +"hi" = ( +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/machinery/chem_heater, +/obj/effect/floor_decal/industrial/warning{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/hallway/primary/central_one) +"hk" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 4 + }, +/obj/structure/tank_wall/nitrogen{ + icon_state = "n7" + }, +/turf/simulated/floor/plating, +/area/construction/storage) +"hl" = ( +/obj/effect/floor_decal/corner/yellow{ + dir = 8 + }, +/obj/effect/floor_decal/corner/dark_blue{ + dir = 1 + }, +/turf/simulated/floor/tiled/gridded, +/area/construction/storage) +"hm" = ( +/turf/simulated/floor/tiled/bitile, +/area/construction/storage) +"hy" = ( +/obj/machinery/atmospherics/portables_connector{ + dir = 8 + }, +/obj/effect/floor_decal/industrial/hatch_small/emergency_closet, +/obj/machinery/portable_atmospherics/canister/empty/oxygen, +/turf/simulated/floor/tiled/gridded, +/area/construction/storage) +"hC" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/obj/effect/floor_decal/industrial/hatch/operations, +/obj/machinery/conveyor{ + id = "cargo_1"; + color = "#CCCCCC" + }, +/turf/simulated/floor/tiled/dark/full, +/area/supply/dock) +"hD" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 8 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 4 + }, +/turf/simulated/floor/reinforced, +/area/hallway/primary/central_two) +"hI" = ( +/obj/effect/floor_decal/corner/yellow{ + dir = 5 + }, +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/obj/structure/cart/storage/engineeringcart/full{ + dir = 4 + }, +/turf/simulated/floor/tiled/gridded, +/area/hallway/primary/central_one) +"hK" = ( +/obj/effect/floor_decal/industrial/warning, +/obj/structure/tank_wall/carbon_dioxide{ + icon_state = "co2-14" + }, +/turf/simulated/floor/airless, +/area/construction/storage) +"hL" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/visible/green{ + dir = 4 + }, +/obj/structure/tank_wall/nitrogen{ + icon_state = "n4" + }, +/turf/simulated/floor/plating, +/area/construction/storage) +"hP" = ( +/obj/machinery/atmospherics/pipe/simple/visible/red{ + dir = 1 + }, +/turf/simulated/floor/tiled/gridded, +/area/construction/storage) +"hQ" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden{ + dir = 1 + }, +/turf/simulated/wall/r_wall, +/area/hallway/primary/central_two) +"hR" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 1 + }, +/turf/simulated/floor/tiled/full, +/area/hallway/primary/central_two) +"hU" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/structure/cable/yellow{ + icon_state = "1-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/turf/simulated/floor/tiled/full, +/area/hallway/primary/central_two) +"hY" = ( +/obj/structure/cable/yellow{ + icon_state = "2-4" + }, +/turf/simulated/floor/tiled/dark/full, +/area/shuttle/runtime) +"hZ" = ( +/obj/machinery/light/spot{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/visible/blue, +/turf/simulated/floor/tiled/full, +/area/construction/storage) +"ia" = ( +/obj/machinery/light/spot{ + dir = 8 + }, +/turf/simulated/floor/tiled/full, +/area/hallway/primary/central_one) +"ib" = ( +/obj/effect/floor_decal/corner/grey{ + dir = 5 + }, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 1 + }, +/turf/simulated/floor/tiled/gridded, +/area/turret_protected/ai) +"id" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/obj/effect/floor_decal/corner/black{ + dir = 9 + }, +/turf/simulated/floor/tiled/gridded, +/area/hallway/primary/central_one) +"ie" = ( +/obj/machinery/camera/network/civilian_main{ + c_tag = "Central 4" + }, +/turf/simulated/floor/tiled/full, +/area/hallway/primary/central_one) +"ig" = ( +/turf/simulated/wall/r_wall, +/area/bridge) +"ik" = ( +/obj/effect/floor_decal/industrial/hatch_door/red{ + dir = 1 + }, +/obj/machinery/door/airlock/external/blue{ + dir = 1 + }, +/obj/effect/map_effect/marker_helper/airlock/exterior, +/obj/machinery/access_button{ + pixel_x = -28; + pixel_y = 8; + dir = 1 + }, /obj/structure/cable{ - d1 = 4; - d2 = 8; + icon_state = "1-2" + }, +/obj/effect/map_effect/marker/airlock/shuttle/runtime, +/turf/simulated/floor/tiled/dark/full, +/area/shuttle/runtime) +"il" = ( +/obj/structure/closet/crate, +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/effect/floor_decal/industrial/loading/yellow{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/hallway/primary/central_two) +"im" = ( +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/structure/table/reinforced/steel, +/obj/item/rfd_ammo{ + pixel_x = -8; + pixel_y = 10 + }, +/obj/item/rfd_ammo{ + pixel_x = -8; + pixel_y = 10 + }, +/obj/item/rfd_ammo{ + pixel_x = -8; + pixel_y = 10 + }, +/obj/item/rfd_ammo{ + pixel_x = -8; + pixel_y = 10 + }, +/obj/item/rfd_ammo{ + pixel_x = -8; + pixel_y = 10 + }, +/obj/item/rfd/piping{ + pixel_x = -1; + pixel_y = -2 + }, +/obj/item/t_scanner{ + pixel_x = 7; + pixel_y = 8 + }, +/obj/machinery/atmospherics/pipe/simple/visible/green{ + dir = 1 + }, +/turf/unsimulated/floor/dark_monotile, +/area/construction/storage) +"io" = ( +/obj/effect/decal/curb/corner{ + dir = 8 + }, +/obj/effect/floor_decal/corner/black, +/turf/simulated/floor/tiled/gridded, +/area/hallway/primary/central_one) +"ip" = ( +/obj/effect/floor_decal/industrial/outline/service, +/obj/machinery/atmospherics/portables_connector{ + dir = 8 + }, +/obj/machinery/portable_atmospherics/hydroponics, +/turf/simulated/floor/tiled/dark/full, +/area/hallway/primary/central_one) +"iq" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/obj/structure/tank_wall/nitrogen, +/turf/simulated/floor/plating, +/area/construction/storage) +"ir" = ( +/obj/structure/lattice, +/obj/machinery/atmospherics/pipe/simple/heat_exchanging{ + dir = 5 + }, +/turf/space, +/area/exterior) +"is" = ( +/obj/effect/step_trigger/cargo_elevator, +/turf/simulated/floor/plating/cargo_elevator, +/area/hallway/primary/central_one) +"iv" = ( +/obj/effect/floor_decal/industrial/outline/service, +/obj/machinery/vending/hydronutrients/hydroponics, +/turf/simulated/floor/tiled/dark/full, +/area/hallway/primary/central_one) +"iy" = ( +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 9 + }, +/turf/simulated/floor/tiled/full, +/area/hallway/primary/central_two) +"iG" = ( +/obj/effect/floor_decal/corner/dark_green{ + dir = 9 + }, +/obj/effect/floor_decal/spline/plain/corner/paleblue{ + dir = 1 + }, +/obj/structure/railing/mapped/no_density/low{ + dir = 4 + }, +/obj/machinery/atmospherics/valve/digital/open/no_admin_message{ + name = "Tray Cutoff Valve" + }, +/obj/effect/floor_decal/industrial/hatch_tiny/service, +/turf/simulated/floor/tiled, +/area/hallway/primary/central_one) +"iI" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 4 + }, +/obj/structure/lattice/catwalk/indoor/grate, +/turf/simulated/floor/plating, +/area/supply/dock) +"iK" = ( +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 4 + }, +/turf/simulated/wall/r_wall, +/area/bridge) +"iM" = ( +/obj/machinery/atmospherics/pipe/simple/heat_exchanging{ + dir = 6 + }, +/obj/structure/lattice/catwalk, +/turf/space, +/area/exterior) +"iN" = ( +/obj/effect/floor_decal/corner/grey/full{ + dir = 4 + }, +/turf/simulated/floor/tiled/gridded, +/area/turret_protected/ai) +"iR" = ( +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 5 + }, +/turf/simulated/floor/wood/walnut, +/area/hallway/primary/central_one) +"iS" = ( +/obj/structure/table/steel, +/obj/effect/floor_decal/industrial/outline/operations, +/obj/machinery/light/spot{ + dir = 1 + }, +/turf/simulated/floor/tiled/full, +/area/storage/supply) +"iT" = ( +/obj/effect/floor_decal/corner/dark_blue{ + dir = 9 + }, +/obj/machinery/atmospherics/binary/pump/high_power/on{ + name = "Thrust to Engines"; + dir = 4 + }, +/obj/effect/floor_decal/industrial/hatch_tiny/yellow, +/turf/simulated/floor/tiled/dark, +/area/bridge) +"ja" = ( +/obj/effect/floor_decal/corner/dark_blue{ + dir = 1 + }, +/obj/effect/floor_decal/corner/yellow{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/visible/purple{ + dir = 8 + }, +/obj/effect/floor_decal/industrial/hatch_tiny/red, +/obj/machinery/atmospherics/binary/pump/high_power{ + name = "Mix to Phoron Storage"; + dir = 1 + }, +/turf/simulated/floor/tiled/gridded, +/area/construction/storage) +"jd" = ( +/obj/effect/floor_decal/industrial/hatch/operations, +/obj/structure/railing/retractable, +/obj/machinery/conveyor{ + id = "cargo_1"; + color = "#CCCCCC" + }, +/turf/simulated/floor/tiled/dark/full, +/area/hallway/primary/central_one) +"je" = ( +/obj/effect/floor_decal/industrial/outline/grey, +/obj/machinery/atmospherics/omni/filter{ + name = "carbondioxide filter"; + tag_north = 1; + tag_south = 2; + tag_east = 5 + }, +/turf/simulated/floor/tiled/gridded, +/area/construction/storage) +"ji" = ( +/obj/machinery/atmospherics/pipe/simple/visible/red{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/visible/green{ + dir = 8 + }, +/turf/simulated/floor/tiled/gridded, +/area/construction/storage) +"jj" = ( +/obj/machinery/atmospherics/pipe/simple/visible/red{ + dir = 6 + }, +/turf/simulated/floor/tiled/gridded, +/area/construction/storage) +"jk" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/visible/red{ + dir = 1 + }, +/obj/structure/tank_wall/hydrogen{ + icon_state = "h7" + }, +/turf/simulated/floor/airless, +/area/construction/storage) +"jp" = ( +/obj/structure/lattice, +/obj/machinery/atmospherics/pipe/simple/heat_exchanging{ + dir = 9 + }, +/turf/space, +/area/exterior) +"jr" = ( +/obj/machinery/suit_cycler/mining/prepared, +/obj/effect/floor_decal/industrial/outline/operations, +/obj/structure/railing/mapped/no_density/low{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark/full, +/area/hallway/primary/central_two) +"js" = ( +/obj/effect/floor_decal/corner/yellow{ + dir = 5 + }, +/obj/structure/table/rack, +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/obj/item/stack/material/glass/full, +/obj/item/stack/material/glass/full, +/obj/item/stack/material/glass/full, +/turf/simulated/floor/tiled/gridded, +/area/hallway/primary/central_one) +"ju" = ( +/obj/effect/floor_decal/spline/plain/paleblue{ + dir = 1 + }, +/obj/machinery/atmospherics/unary/heater, +/turf/simulated/floor/tiled/dark/full, +/area/hallway/primary/central_one) +"jz" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 8 + }, +/obj/structure/lattice/catwalk/indoor/grate, +/turf/simulated/floor/plating, +/area/supply/dock) +"jC" = ( +/obj/effect/floor_decal/industrial/warning, +/obj/structure/tank_wall/nitrogen{ + icon_state = "n14" + }, +/turf/simulated/floor/plating, +/area/construction/storage) +"jD" = ( +/obj/effect/floor_decal/corner_wide/orange{ + dir = 10 + }, +/obj/effect/floor_decal/industrial/warning, +/turf/simulated/floor/tiled/white, +/area/hallway/primary/central_one) +"jE" = ( +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/machinery/telecomms/message_server, +/turf/simulated/floor/tiled/techfloor, +/area/turret_protected/ai) +"jF" = ( +/obj/effect/floor_decal/corner/dark_green{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 5 + }, +/turf/simulated/floor/tiled, +/area/hallway/primary/central_one) +"jL" = ( +/obj/machinery/atmospherics/pipe/simple/visible/green{ + dir = 1 + }, +/obj/machinery/meter, +/obj/structure/lattice/catwalk/indoor/grate, +/turf/simulated/floor/plating, +/area/construction/storage) +"jN" = ( +/obj/effect/floor_decal/industrial/outline/operations, +/obj/structure/closet/crate, +/obj/structure/railing/mapped/no_density/low, +/turf/simulated/floor/tiled/full, +/area/storage/supply) +"jO" = ( +/obj/structure/railing/mapped{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 4 + }, +/obj/structure/lattice/catwalk/indoor, +/turf/simulated/open, +/area/hallway/primary/central_two) +"jP" = ( +/obj/effect/floor_decal/corner/yellow{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/visible/green{ + dir = 1 + }, +/obj/effect/floor_decal/corner/dark_blue, +/obj/effect/floor_decal/industrial/hatch_tiny/red, +/obj/machinery/atmospherics/binary/pump/high_power{ + name = "Mix to Nitrogen Storage"; + dir = 4 + }, +/turf/simulated/floor/tiled/gridded, +/area/construction/storage) +"jS" = ( +/obj/effect/floor_decal/industrial/hatch/operations, +/obj/machinery/conveyor{ + id = "cargo_1"; + color = "#CCCCCC" + }, +/turf/simulated/floor/tiled/dark/full, +/area/supply/dock) +"jX" = ( +/obj/effect/floor_decal/industrial/hatch/yellow, +/obj/structure/table/reinforced/steel, +/obj/item/storage/box/zipties, +/turf/simulated/floor/tiled/dark/full, +/area/hallway/primary/central_one) +"jY" = ( +/obj/structure/lattice/catwalk/indoor/grate, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/turf/simulated/floor/plating, +/area/hallway/primary/central_one) +"kf" = ( +/obj/effect/floor_decal/corner/dark_blue, +/obj/effect/floor_decal/corner/yellow{ + dir = 8 + }, +/turf/simulated/floor/tiled/gridded, +/area/construction/storage) +"kj" = ( +/obj/structure/lattice/catwalk/indoor, +/obj/structure/cable/yellow{ icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, -/obj/structure/disposalpipe/segment{ +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 }, -/turf/simulated/floor/tiled, +/turf/simulated/open, +/area/hallway/primary/central_two) +"kk" = ( +/obj/structure/tank_wall/hydrogen{ + density = 0; + icon_state = "h12"; + opacity = 0 + }, +/obj/machinery/atmospherics/unary/outlet_injector{ + frequency = 1441; + id = "h_in"; + name = "hydrogen injector"; + use_power = 1; + dir = 4 + }, +/turf/simulated/floor/reinforced/hydrogen, /area/construction/storage) -"Nn" = ( -/obj/machinery/atmospherics/unary/vent_pump/high_volume/aux{ +"km" = ( +/obj/machinery/meter, +/obj/machinery/atmospherics/pipe/manifold/visible/cyan{ dir = 4 }, +/turf/simulated/floor/tiled/full, +/area/construction/storage) +"ku" = ( +/obj/machinery/atmospherics/pipe/simple/visible/black{ + dir = 9 + }, +/turf/simulated/floor/tiled/gridded, +/area/construction/storage) +"kw" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/obj/structure/tank_wall/oxygen{ + icon_state = "o2-3" + }, +/turf/simulated/floor/plating, +/area/construction/storage) +"kE" = ( +/obj/machinery/conveyor{ + dir = 1; + id = "QMLoad"; + color = "#CCCCCC" + }, +/obj/effect/floor_decal/industrial/warning, +/obj/structure/railing/mapped, +/obj/effect/floor_decal/industrial/hatch/operations, +/turf/simulated/floor/tiled/dark/full, +/area/supply/dock) +"kH" = ( +/obj/structure/lattice/catwalk/indoor/grate, +/obj/effect/decal/curb, +/turf/simulated/floor/plating, +/area/storage/supply) +"kI" = ( +/obj/structure/railing/mapped, +/turf/simulated/open, +/area/hallway/primary/central_two) +"kJ" = ( +/obj/machinery/r_n_d/weapons_analyzer, +/obj/effect/floor_decal/industrial/outline/grey, +/turf/unsimulated/floor/dark_monotile, +/area/hallway/primary/central_one) +"kP" = ( +/obj/machinery/light/spot, +/obj/machinery/atmospherics/pipe/manifold/visible/yellow, +/obj/machinery/firealarm/south, +/turf/simulated/floor/carpet/rubber, +/area/bridge) +"kU" = ( +/obj/effect/floor_decal/corner/brown{ + dir = 9 + }, +/obj/effect/decal/curb/corner{ + dir = 4 + }, +/turf/simulated/floor/tiled/gridded, +/area/storage/supply) +"kW" = ( +/obj/structure/platform/ledge{ + dir = 4 + }, +/turf/simulated/open, +/area/hallway/primary/central_two) +"kX" = ( +/obj/structure/lattice/catwalk/indoor/grate, +/turf/simulated/floor/plating, +/area/hallway/primary/central_one) +"kY" = ( +/obj/structure/tank_wall/nitrous_oxide{ + density = 0; + icon_state = "h11"; + opacity = 0 + }, +/obj/machinery/atmospherics/unary/outlet_injector{ + frequency = 1441; + id = "n2o_in"; + name = "nitrous oxide injector"; + use_power = 1; + dir = 8 + }, +/turf/simulated/floor/reinforced/n20, +/area/construction/storage) +"kZ" = ( +/obj/machinery/atmospherics/pipe/simple/visible/yellow{ + dir = 1 + }, +/turf/simulated/floor/tiled/gridded, +/area/construction/storage) +"la" = ( +/obj/machinery/atmospherics/pipe/simple/visible/yellow{ + dir = 4 + }, +/turf/simulated/floor/tiled/full, +/area/construction/storage) +"lc" = ( +/obj/effect/decal/curb, +/obj/effect/floor_decal/corner/black/full{ + dir = 8 + }, +/turf/simulated/floor/tiled/gridded, +/area/hallway/primary/central_one) +"le" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/obj/effect/floor_decal/industrial/warning, +/obj/machinery/camera/network/civilian_main{ + c_tag = "Gravity Engine" + }, +/turf/simulated/floor/reinforced, +/area/hallway/primary/central_two) +"lf" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/full, +/area/storage/supply) +"lh" = ( +/obj/machinery/airlock_sensor{ + pixel_x = -25; + pixel_y = -6; + dir = 4 + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/unary/vent_pump/high_volume{ + dir = 1 + }, +/obj/structure/lattice/catwalk/indoor/grate/dark, +/obj/effect/map_effect/marker/airlock/docking/runtime/dock, +/turf/simulated/floor/plating, +/area/hallway/primary/central_two) +"lk" = ( +/obj/structure/table/reinforced/steel, +/turf/unsimulated/floor/dark_monotile, +/area/hallway/primary/central_one) +"ll" = ( +/obj/structure/platform/ledge{ + dir = 4 + }, +/obj/structure/lattice, +/turf/simulated/open, +/area/hallway/primary/central_two) +"lp" = ( +/obj/machinery/atmospherics/binary/pump/high_power{ + name = "Mix to Hydrogen Tank" + }, +/obj/effect/floor_decal/industrial/hatch_tiny/red, +/turf/simulated/floor/tiled/gridded, +/area/construction/storage) +"lq" = ( +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/structure/cable{ + icon_state = "0-8" + }, +/turf/simulated/floor/plating, +/area/hallway/primary/central_two) +"lx" = ( +/obj/machinery/atmospherics/binary/pump/high_power{ + name = "Oxygen to Canister"; + dir = 8 + }, +/obj/machinery/computer/general_air_control/large_tank_control/wall{ + input_tag = "o2_in"; + name = "Oxygen Tank Control"; + output_tag = "o2_out"; + sensors = list("o2_sensor"="Tank"); + pixel_y = 28 + }, +/turf/simulated/floor/tiled/full, +/area/construction/storage) +"lB" = ( +/obj/effect/floor_decal/industrial/warning/full, +/obj/machinery/mineral/processing_unit{ + id = "runtime_processing_1"; + dir = 8 + }, +/turf/simulated/floor/plating, +/area/hallway/primary/central_two) +"lD" = ( +/obj/machinery/atmospherics/portables_connector{ + dir = 8 + }, +/obj/effect/floor_decal/industrial/hatch_small/yellow, +/turf/simulated/floor/tiled/gridded, +/area/construction/storage) +"lI" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/heat_exchanging{ + dir = 6 + }, +/turf/simulated/floor/reinforced/airless, +/area/construction/storage) +"lJ" = ( +/obj/effect/floor_decal/industrial/hatch/operations, +/obj/structure/railing/retractable, +/obj/machinery/conveyor{ + dir = 1; + id = "QMLoad"; + color = "#CCCCCC" + }, +/turf/simulated/floor/tiled/dark/full, +/area/hallway/primary/central_one) +"lK" = ( +/obj/machinery/atmospherics/pipe/simple/visible/red{ + dir = 8 + }, +/obj/structure/lattice/catwalk/indoor/grate, +/turf/simulated/floor/plating, +/area/construction/storage) +"lL" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 4 + }, +/obj/structure/lattice/catwalk/indoor/grate/gridded, +/turf/simulated/floor/plating, +/area/hallway/primary/central_one) +"lM" = ( +/turf/simulated/floor/tiled/gridded, +/area/storage/supply) +"lN" = ( +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/effect/floor_decal/industrial/loading/yellow{ + dir = 4 + }, +/obj/machinery/atmospherics/binary/pump/high_power{ + name = "Mix to Exterior Cooling"; + dir = 4 + }, +/turf/simulated/floor/plating, +/area/construction/storage) +"lO" = ( +/obj/machinery/button/remote/blast_door{ + desc = "A remote control-switch for the AI core maintenance door."; + id = "runtime_blastdoors"; + name = "Runtime Safety Blast Doors"; + pixel_x = 5; + pixel_y = 28; + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/visible/yellow{ + dir = 10 + }, +/turf/simulated/floor/carpet/rubber, +/area/bridge) +"lR" = ( +/obj/machinery/hologram/holopad/long_range, +/obj/effect/overmap/visitable/ship/runtime, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 1 + }, +/turf/simulated/floor/tiled/dark/full, +/area/bridge) +"lW" = ( +/obj/machinery/atmospherics/pipe/simple/heat_exchanging{ + dir = 1 + }, +/turf/space, +/area/exterior) +"lZ" = ( +/obj/structure/tank_wall/oxygen{ + density = 0; + icon_state = "o2-12"; + opacity = 0 + }, +/obj/machinery/atmospherics/unary/outlet_injector{ + frequency = 1441; + id = "o2_in"; + name = "oxygen injector"; + use_power = 1 + }, +/turf/simulated/floor/reinforced/oxygen, +/area/construction/storage) +"mb" = ( +/obj/machinery/portable_atmospherics/canister/empty, +/obj/effect/floor_decal/industrial/outline/grey, +/turf/simulated/floor/plating, +/area/construction/storage) +"md" = ( +/obj/effect/floor_decal/corner/grey{ + dir = 5 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/obj/structure/stairs_lower/stairs_upper{ + dir = 4 + }, +/turf/simulated/floor/tiled/gridded, +/area/hallway/primary/central_one) +"mg" = ( +/obj/effect/floor_decal/corner/mauve{ + dir = 5 + }, +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/obj/machinery/r_n_d/protolathe, +/turf/simulated/floor/tiled/white, +/area/hallway/primary/central_one) +"mh" = ( +/obj/structure/table/steel, +/obj/item/reagent_containers/glass/beaker/cryoxadone{ + pixel_x = -8; + pixel_y = 12 + }, +/obj/effect/floor_decal/corner_wide/paleblue{ + dir = 5 + }, +/obj/effect/floor_decal/industrial/outline/red, +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/obj/item/bodybag/cryobag{ + pixel_x = 5; + pixel_y = 8 + }, +/obj/item/tank/oxygen{ + pixel_x = 8; + pixel_y = -1 + }, +/obj/item/clothing/mask/breath/medical{ + pixel_x = 3; + pixel_y = -2 + }, +/turf/simulated/floor/tiled/white, +/area/hallway/primary/central_one) +"ml" = ( +/turf/simulated/floor/tiled/gridded, +/area/turret_protected/ai) +"mo" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 1 + }, +/turf/simulated/floor/tiled/white, +/area/hallway/primary/central_one) +"mp" = ( +/obj/structure/tank_wall/hydrogen{ + icon_state = "h4" + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 8 + }, +/turf/simulated/floor/airless, +/area/construction/storage) +"mq" = ( +/obj/effect/floor_decal/corner/yellow{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/visible/yellow{ + dir = 4 + }, +/obj/effect/floor_decal/corner/dark_blue, +/turf/simulated/floor/tiled/gridded, +/area/construction/storage) +"mt" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/obj/structure/lattice/catwalk/indoor/grate, +/turf/simulated/floor/plating, +/area/hallway/primary/central_one) +"my" = ( +/obj/effect/floor_decal/industrial/warning, +/obj/machinery/atmospherics/pipe/manifold/visible/purple{ + dir = 4 + }, +/obj/structure/tank_wall/phoron{ + icon_state = "ph16" + }, +/turf/simulated/floor/airless, +/area/construction/storage) +"mA" = ( +/obj/structure/railing/mapped/no_density/low, +/turf/simulated/floor/airless, +/area/template_noop) +"mB" = ( +/obj/effect/map_effect/window_spawner/full/shuttle/mercenary, +/obj/machinery/door/blast/regular/open{ + id = "runtime_shuttle_blastdoors"; + dir = 4 + }, +/turf/simulated/floor/tiled/dark/full, +/area/shuttle/runtime) +"mC" = ( +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/machinery/computer/aiupload{ + dir = 8 + }, +/turf/simulated/floor/tiled/techfloor, +/area/turret_protected/ai) +"mD" = ( +/turf/space, +/area/exterior) +"mF" = ( +/obj/effect/floor_decal/corner/red/diagonal, +/obj/effect/floor_decal/industrial/outline/grey, +/obj/machinery/air_sensor{ + frequency = 1441; + id_tag = "n2o_sensor" + }, +/obj/effect/decal/fake_object/light_source/invisible, +/turf/simulated/floor/reinforced/n20, +/area/construction/storage) +"mL" = ( +/obj/structure/railing/mapped/no_density/low{ + dir = 8 + }, +/obj/effect/floor_decal/industrial/outline/grey, +/obj/machinery/computer/ship/sensors/terminal{ + dir = 1 + }, +/turf/simulated/floor/carpet/rubber, +/area/shuttle/runtime) +"mM" = ( +/obj/effect/floor_decal/corner/dark_green{ + dir = 9 + }, +/obj/effect/floor_decal/spline/plain/paleblue{ + dir = 4 + }, +/obj/machinery/meter, +/obj/machinery/atmospherics/pipe/manifold4w/hidden, +/turf/simulated/floor/tiled, +/area/hallway/primary/central_one) +"mP" = ( +/turf/simulated/floor/reinforced/nitrogen, +/area/construction/storage) +"mS" = ( +/obj/machinery/light/small/emergency{ + dir = 4 + }, +/obj/structure/bed/handrail{ + dir = 8 + }, +/obj/machinery/atmospherics/unary/vent_pump/high_volume, +/obj/structure/lattice/catwalk/indoor/grate/dark, +/obj/effect/map_effect/marker/airlock/shuttle/runtime, +/turf/simulated/floor/plating, +/area/shuttle/runtime) +"mW" = ( +/obj/structure/lattice/catwalk, +/obj/machinery/atmospherics/pipe/simple/heat_exchanging{ + dir = 1 + }, +/turf/space, +/area/exterior) +"mZ" = ( +/obj/machinery/atmospherics/pipe/manifold/visible/black, +/turf/simulated/floor/tiled/gridded, +/area/construction/storage) +"nb" = ( +/obj/effect/floor_decal/corner/brown{ + dir = 9 + }, +/obj/effect/decal/curb/corner{ + dir = 1 + }, +/turf/simulated/floor/tiled/gridded, +/area/storage/supply) +"nd" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/obj/structure/tank_wall/oxygen{ + icon_state = "o2-2" + }, +/turf/simulated/floor/plating, +/area/construction/storage) +"nh" = ( /obj/effect/map_effect/marker/airlock{ master_tag = "runtime_airlock_1_1"; name = "runtime_airlock_1_1" }, +/obj/machinery/atmospherics/unary/vent_pump/high_volume{ + dir = 1 + }, +/obj/structure/lattice/catwalk/indoor/grate/dark, +/obj/machinery/light/small/emergency, /turf/simulated/floor/plating, -/area/maintenance/maintcentral) -"Nu" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; +/area/hallway/primary/central_two) +"nl" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/obj/effect/floor_decal/industrial/hatch/operations, +/obj/machinery/conveyor{ + dir = 1; + id = "QMLoad"; + color = "#CCCCCC" + }, +/turf/simulated/floor/tiled/dark/full, +/area/supply/dock) +"np" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/obj/structure/tank_wall/nitrogen{ + icon_state = "n2" + }, +/turf/simulated/floor/plating, +/area/construction/storage) +"nq" = ( +/obj/machinery/camera/network/command{ + c_tag = "AI Core 1"; + dir = 1 + }, +/obj/item/modular_computer/console/preset/ai{ + dir = 1 + }, +/obj/effect/floor_decal/industrial/outline/yellow, +/turf/simulated/floor/tiled/techfloor, +/area/turret_protected/ai) +"nt" = ( +/obj/structure/railing/mapped{ + dir = 1 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 9 + }, +/obj/structure/railing/mapped{ + dir = 8 + }, +/obj/structure/lattice/catwalk/indoor/grate, +/turf/simulated/floor/plating, +/area/supply/dock) +"nu" = ( +/obj/effect/floor_decal/corner/grey{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 1 + }, +/turf/simulated/floor/tiled/gridded, +/area/hallway/primary/central_two) +"nA" = ( +/obj/machinery/power/apc/super/critical/west, +/obj/effect/floor_decal/corner/grey{ + dir = 6 + }, +/obj/structure/cable/yellow, +/turf/simulated/floor/tiled/gridded, +/area/turret_protected/ai) +"nD" = ( +/obj/effect/floor_decal/corner/grey{ + dir = 10 + }, +/obj/effect/floor_decal/industrial/warning, +/turf/simulated/floor/tiled/gridded, +/area/hallway/primary/central_two) +"nK" = ( +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/machinery/telecomms/receiver/preset_right, +/turf/simulated/floor/tiled/techfloor, +/area/turret_protected/ai) +"nN" = ( +/obj/effect/floor_decal/corner/dark_blue{ + dir = 9 + }, +/turf/simulated/floor/tiled/dark, +/area/bridge) +"nP" = ( +/obj/effect/floor_decal/corner/black{ + dir = 10 + }, +/obj/structure/platform_stairs, +/obj/machinery/status_display/supply_display{ + pixel_x = -32 + }, +/turf/simulated/floor/tiled/dark, +/area/hallway/primary/central_one) +"nQ" = ( +/obj/structure/lattice, +/obj/machinery/atmospherics/pipe/simple/heat_exchanging{ + dir = 10 + }, +/turf/space, +/area/exterior) +"nV" = ( +/obj/structure/railing/mapped{ + dir = 8 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 10 + }, +/obj/structure/lattice/catwalk/indoor/grate, +/obj/structure/railing/mapped, +/turf/simulated/floor/plating, +/area/supply/dock) +"nZ" = ( +/obj/effect/floor_decal/corner/grey/full{ + dir = 1 + }, +/turf/simulated/floor/tiled/gridded, +/area/turret_protected/ai) +"ob" = ( +/obj/item/hullbeacon/red, +/obj/effect/floor_decal/industrial/outline/operations, +/obj/structure/railing/mapped/no_density/low, +/turf/simulated/floor/tiled/full, +/area/hallway/primary/central_one) +"oc" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 8 + }, +/turf/simulated/floor/tiled/gridded, +/area/turret_protected/ai) +"of" = ( +/obj/effect/floor_decal/industrial/outline/emergency_closet, +/obj/machinery/atmospherics/omni/filter{ + name = "oxygen filter"; + tag_north = 1; + tag_south = 2; + tag_east = 3 + }, +/turf/simulated/floor/tiled/gridded, +/area/construction/storage) +"og" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/visible/red{ + dir = 8 + }, +/obj/structure/tank_wall/hydrogen{ + icon_state = "h13" + }, +/turf/simulated/floor/airless, +/area/construction/storage) +"or" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/visible/green{ + dir = 6 + }, +/obj/structure/tank_wall/nitrogen{ + icon_state = "n8" + }, +/turf/simulated/floor/plating, +/area/construction/storage) +"os" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 4 + }, +/obj/structure/tank_wall/phoron{ + icon_state = "ph13" + }, +/turf/simulated/floor/airless, +/area/construction/storage) +"ot" = ( +/obj/effect/floor_decal/corner/grey{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 8 + }, +/turf/simulated/floor/tiled/gridded, +/area/hallway/primary/central_two) +"ox" = ( +/obj/effect/map_effect/window_spawner/full/reinforced/firedoor, +/turf/simulated/floor/tiled/full, +/area/construction/storage) +"oy" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/obj/structure/lattice/catwalk/indoor/grate/gridded, +/turf/simulated/floor/plating, +/area/hallway/primary/central_one) +"oG" = ( +/obj/structure/railing/retractable{ + dir = 1 + }, +/obj/machinery/alarm/south, +/turf/simulated/floor/tiled/dark/full, +/area/hallway/primary/central_one) +"oR" = ( +/obj/structure/lattice/catwalk/indoor, +/obj/structure/railing/mapped{ + dir = 8 + }, +/turf/simulated/open, +/area/hallway/primary/central_two) +"oT" = ( +/obj/machinery/meter, +/obj/machinery/atmospherics/pipe/manifold/visible/purple{ + dir = 8 + }, +/turf/simulated/floor/tiled/full, +/area/construction/storage) +"oU" = ( +/obj/machinery/button/remote/blast_door{ + desc = "A remote control-switch for the AI core maintenance door."; + id = "runtime_blastdoors"; + name = "Runtime Safety Blast Doors"; + dir = 8; + pixel_x = -22 + }, +/turf/simulated/floor/tiled/full, +/area/hallway/primary/central_one) +"oX" = ( +/obj/effect/floor_decal/industrial/warning, +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/turf/simulated/floor/reinforced, +/area/hallway/primary/central_two) +"pa" = ( +/obj/structure/lattice/catwalk/indoor/grate, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/camera/network/civilian_main{ + c_tag = "Upper Floor 4" + }, +/turf/simulated/floor/plating, +/area/hallway/primary/central_two) +"pd" = ( +/obj/effect/floor_decal/corner/grey{ + dir = 10 + }, +/obj/structure/cable/yellow{ + icon_state = "1-4" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, +/turf/simulated/floor/tiled/gridded, +/area/hallway/primary/central_two) +"pe" = ( +/obj/structure/lattice/catwalk/indoor, +/obj/structure/railing/mapped, +/turf/simulated/open, +/area/hallway/primary/central_two) +"pl" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 1 + }, +/obj/machinery/light/floor{ + dir = 8 + }, +/turf/simulated/floor/tiled/bitile{ + dir = 8 + }, +/area/hallway/primary/central_one) +"pn" = ( +/obj/structure/cable/yellow{ icon_state = "1-2" }, -/obj/machinery/door/blast/regular{ +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 1 + }, +/turf/simulated/floor/tiled/full, +/area/hallway/primary/central_two) +"po" = ( +/obj/effect/floor_decal/corner_wide/paleblue{ + dir = 6 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/hallway/primary/central_one) +"pp" = ( +/obj/structure/tank_wall/hydrogen{ + icon_state = "h10" + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 8 + }, +/turf/simulated/floor/airless, +/area/construction/storage) +"pq" = ( +/obj/effect/floor_decal/corner/paleblue/diagonal, +/obj/effect/floor_decal/industrial/outline/grey, +/obj/machinery/air_sensor{ + frequency = 1441; + id_tag = "o2_sensor" + }, +/obj/effect/decal/fake_object/light_source/invisible, +/turf/simulated/floor/reinforced/oxygen, +/area/construction/storage) +"pt" = ( +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 6 + }, +/turf/simulated/floor/tiled/full, +/area/hallway/primary/central_two) +"pu" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 4 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 8 + }, +/turf/simulated/floor/reinforced, +/area/hallway/primary/central_two) +"pv" = ( +/obj/machinery/suit_cycler/engineering/prepared/atmos, +/obj/effect/floor_decal/industrial/outline/firefighting_closet, +/turf/simulated/floor/tiled/dark/full, +/area/hallway/primary/central_two) +"pz" = ( +/obj/effect/floor_decal/corner/dark_blue{ + dir = 6 + }, +/turf/simulated/floor/tiled/dark, +/area/bridge) +"pD" = ( +/obj/effect/floor_decal/corner_wide/paleblue{ + dir = 5 + }, +/obj/machinery/computer/operating, +/obj/effect/floor_decal/industrial/outline/red, +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/turf/simulated/floor/tiled/white, +/area/hallway/primary/central_one) +"pI" = ( +/turf/simulated/floor/tiled/full, +/area/hallway/primary/central_two) +"pL" = ( +/obj/machinery/atmospherics/pipe/manifold/visible/yellow{ + dir = 8 + }, +/turf/simulated/floor/tiled/gridded, +/area/construction/storage) +"pM" = ( +/obj/structure/lattice/catwalk/indoor/grate, +/obj/machinery/light/spot{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/construction) +"pS" = ( +/obj/structure/cable/yellow{ + icon_state = "0-8" + }, +/obj/machinery/power/apc/hyper/south, +/obj/machinery/atmospherics/pipe/simple/hidden/blue{ + dir = 5 + }, +/turf/simulated/floor/tiled/full, +/area/construction/storage) +"pV" = ( +/obj/machinery/atmospherics/pipe/simple/visible/red{ + dir = 10 + }, +/obj/machinery/meter, +/turf/simulated/floor/tiled/gridded, +/area/construction/storage) +"pX" = ( +/obj/effect/floor_decal/spline/plain/black{ + dir = 8 + }, +/turf/simulated/floor/tiled/dark/full, +/area/hallway/primary/central_one) +"pY" = ( +/obj/effect/floor_decal/corner/yellow{ + dir = 8 + }, +/obj/effect/floor_decal/corner/dark_blue, +/obj/machinery/atmospherics/pipe/simple/visible/red{ + dir = 5 + }, +/turf/simulated/floor/tiled/gridded, +/area/construction/storage) +"pZ" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/turf/simulated/floor/tiled/dark/full, +/area/storage/supply/package) +"qa" = ( +/obj/structure/stairs/east, +/turf/simulated/floor/tiled/gridded, +/area/hallway/primary/central_one) +"qc" = ( +/obj/machinery/alarm/south, +/turf/unsimulated/floor/plating, +/area/hallway/primary/central_one) +"qe" = ( +/obj/machinery/atmospherics/binary/pump/high_power{ + name = "Hydrogen to Canister"; + dir = 1 + }, +/obj/machinery/computer/general_air_control/large_tank_control/wall{ + input_tag = "h_in"; + name = "Hydrogen Tank Control"; + output_tag = "h_out"; + sensors = list("h_sensor"="Tank"); + pixel_x = -32 + }, +/turf/simulated/floor/tiled/full, +/area/construction/storage) +"qf" = ( +/obj/effect/map_effect/window_spawner/full/reinforced/firedoor, +/obj/machinery/door/blast/regular/open{ + id = "runtime_blastdoors"; + dir = 2 + }, +/turf/simulated/floor/tiled/full, +/area/construction/storage) +"qh" = ( +/obj/effect/decal/curb{ + dir = 4 + }, +/obj/effect/floor_decal/corner/black/full, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 1 + }, +/turf/simulated/floor/tiled/gridded, +/area/hallway/primary/central_one) +"qi" = ( +/obj/effect/floor_decal/corner/grey/full{ + dir = 8 + }, +/turf/simulated/floor/tiled/gridded, +/area/turret_protected/ai) +"qk" = ( +/obj/effect/floor_decal/corner/yellow{ + dir = 10 + }, +/obj/effect/floor_decal/industrial/warning, +/obj/structure/table/reinforced/steel, +/obj/item/storage/bag/inflatable{ + pixel_y = 11; + pixel_x = -7 + }, +/obj/item/storage/bag/inflatable{ + pixel_y = 7; + pixel_x = -7 + }, +/obj/item/storage/bag/inflatable{ + pixel_y = 2; + pixel_x = -7 + }, +/obj/item/crowbar/hydraulic_rescue_tool, +/turf/simulated/floor/tiled/gridded, +/area/hallway/primary/central_one) +"qq" = ( +/turf/simulated/open, +/area/hallway/primary/central_two) +"qs" = ( +/obj/structure/platform/ledge{ + dir = 8 + }, +/turf/simulated/open, +/area/hallway/primary/central_two) +"qv" = ( +/obj/effect/floor_decal/corner/yellow{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/visible/green{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/visible/cyan{ + dir = 9 + }, +/obj/effect/floor_decal/corner/dark_blue, +/obj/effect/floor_decal/corner/dark_blue{ + dir = 1 + }, +/turf/simulated/floor/tiled/gridded, +/area/construction/storage) +"qy" = ( +/obj/effect/floor_decal/corner/grey{ + dir = 4 + }, +/turf/simulated/floor/tiled/gridded, +/area/hallway/primary/central_two) +"qz" = ( +/obj/effect/landmark/entry_point/port, +/turf/simulated/wall/shuttle/space_ship/mercenary, +/area/shuttle/runtime) +"qA" = ( +/obj/effect/floor_decal/corner/yellow{ + dir = 4 + }, +/obj/effect/floor_decal/corner/dark_blue, +/obj/machinery/atmospherics/binary/pump/high_power{ + name = "Canister to Nitrogen Storage"; + dir = 1 + }, +/turf/simulated/floor/tiled/gridded, +/area/construction/storage) +"qC" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 8 + }, +/obj/structure/tank_wall/phoron{ + icon_state = "ph4" + }, +/turf/simulated/floor/airless, +/area/construction/storage) +"qD" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 4 + }, +/obj/structure/tank_wall/nitrogen{ + icon_state = "n9" + }, +/turf/simulated/floor/plating, +/area/construction/storage) +"qL" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/turf/simulated/floor/tiled/full, +/area/hallway/primary/central_one) +"qN" = ( +/obj/structure/tank_wall/hydrogen{ density = 0; - icon_state = "pdoor0"; - id = "AICore"; - name = "AI core maintenance hatch"; + icon_state = "h5"; opacity = 0 }, +/turf/simulated/floor/reinforced/hydrogen, +/area/construction/storage) +"qO" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 8 + }, +/obj/structure/tank_wall/phoron{ + icon_state = "ph8" + }, +/turf/simulated/floor/airless, +/area/construction/storage) +"qQ" = ( +/obj/effect/floor_decal/corner/grey{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled/gridded, +/area/hallway/primary/central_two) +"qR" = ( +/obj/machinery/atmospherics/pipe/manifold/visible/purple{ + dir = 8 + }, +/obj/machinery/meter, +/turf/simulated/floor/tiled/full, +/area/construction/storage) +"qT" = ( +/obj/effect/floor_decal/spline/plain/black{ + dir = 6 + }, +/turf/simulated/floor/tiled/gridded, +/area/shuttle/runtime) +"qU" = ( +/obj/effect/floor_decal/corner/dark_blue{ + dir = 5 + }, +/obj/structure/bed/stool/chair/office/bridge{ + dir = 1 + }, +/obj/structure/cable/yellow{ + icon_state = "2-4" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 + }, +/turf/simulated/floor/tiled/dark, +/area/bridge) +"qV" = ( +/obj/effect/floor_decal/corner/yellow{ + dir = 8 + }, +/obj/effect/floor_decal/corner/dark_blue, +/obj/machinery/atmospherics/pipe/manifold/visible/red, +/obj/machinery/meter, +/obj/effect/floor_decal/corner/yellow{ + dir = 4 + }, +/turf/simulated/floor/tiled/gridded, +/area/construction/storage) +"qX" = ( +/obj/structure/railing/mapped/no_density/low{ + dir = 8 + }, +/obj/effect/floor_decal/industrial/outline/grey, +/obj/structure/table/reinforced/steel, +/obj/machinery/button/remote/blast_door{ + desc = "A remote control-switch for the AI core maintenance door."; + id = "runtime_shuttle_blastdoors"; + name = "Runtime Shuttle Safety Blast Doors"; + pixel_x = 8; + pixel_y = 7; + dir = 9 + }, +/turf/simulated/floor/carpet/rubber, +/area/shuttle/runtime) +"ra" = ( +/obj/machinery/light/spot{ + dir = 4 + }, +/turf/simulated/floor/tiled/full, +/area/hallway/primary/central_one) +"re" = ( +/obj/machinery/door/firedoor{ + dir = 4 + }, +/obj/effect/floor_decal/industrial/hatch/yellow, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/turf/unsimulated/floor/dark_monotile, +/area/construction) +"rg" = ( +/obj/structure/cable/yellow{ + icon_state = "0-8" + }, +/obj/machinery/power/apc/east, +/obj/effect/floor_decal/industrial/outline/operations, +/obj/structure/closet/crate, +/turf/simulated/floor/tiled/full, +/area/storage/supply) +"rk" = ( +/obj/effect/floor_decal/corner/dark_green{ + dir = 6 + }, +/obj/effect/floor_decal/spline/plain/paleblue{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 9 + }, +/obj/structure/sink/kitchen{ + name = "surgical sink"; + dir = 4; + pixel_x = -20 + }, +/obj/item/reagent_containers/glass/beaker/bluespace{ + pixel_x = 7; + pixel_y = -9 + }, +/turf/simulated/floor/tiled, +/area/hallway/primary/central_one) +"rm" = ( +/obj/machinery/suit_cycler/engineering/prepared, +/obj/effect/floor_decal/industrial/outline/engineering, +/turf/simulated/floor/tiled/dark/full, +/area/hallway/primary/central_two) +"ro" = ( +/obj/machinery/door/airlock/external/blue{ + dir = 4 + }, +/obj/effect/map_effect/marker_helper/airlock/interior, +/obj/effect/map_effect/marker/airlock{ + master_tag = "runtime_airlock_1_1"; + name = "runtime_airlock_1_1" + }, +/obj/effect/floor_decal/industrial/hatch_door/red, +/turf/simulated/floor/tiled/dark/full, +/area/hallway/primary/central_two) +"rA" = ( +/obj/effect/floor_decal/corner/grey{ + dir = 5 + }, +/turf/simulated/floor/tiled/gridded, +/area/hallway/primary/central_two) +"rC" = ( +/obj/effect/map_effect/window_spawner/full/reinforced/firedoor, +/obj/machinery/door/blast/regular/open{ + id = "runtime_blastdoors"; + dir = 2 + }, +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 4 + }, +/turf/simulated/floor/tiled/full, +/area/hallway/primary/central_two) +"rF" = ( +/obj/machinery/atmospherics/portables_connector{ + dir = 8 + }, +/obj/effect/floor_decal/industrial/hatch_small/red, +/obj/machinery/portable_atmospherics/canister/empty/sleeping_agent, +/turf/simulated/floor/tiled/gridded, +/area/construction/storage) +"rH" = ( +/obj/effect/floor_decal/industrial/outline/operations, +/obj/structure/closet/crate, +/turf/simulated/floor/tiled/full, +/area/storage/supply) +"rL" = ( +/obj/structure/bed/handrail{ + dir = 8 + }, +/obj/structure/lattice/catwalk/indoor/grate/dark, +/obj/effect/map_effect/marker/airlock/shuttle/runtime, +/turf/simulated/floor/plating, +/area/shuttle/runtime) +"rM" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/obj/structure/tank_wall/nitrous_oxide, +/turf/simulated/floor/plating, +/area/construction/storage) +"rN" = ( +/obj/effect/floor_decal/corner/grey{ + dir = 6 + }, +/obj/machinery/power/apc/hyper/north, +/obj/structure/cable/yellow{ + icon_state = "0-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled/gridded, +/area/hallway/primary/central_two) +"rP" = ( +/obj/machinery/door/firedoor, +/obj/effect/floor_decal/industrial/hatch/yellow, +/turf/unsimulated/floor/dark_monotile, +/area/construction/storage) +"rU" = ( +/obj/structure/tank_wall/hydrogen{ + icon_state = "h8" + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 8 + }, +/turf/simulated/floor/airless, +/area/construction/storage) +"rV" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 4 + }, +/obj/structure/tank_wall/nitrous_oxide{ + icon_state = "h7" + }, +/turf/simulated/floor/plating, +/area/construction/storage) +"rY" = ( +/obj/effect/floor_decal/corner/grey{ + dir = 10 + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/gridded, +/area/hallway/primary/central_two) +"sa" = ( +/obj/structure/railing/mapped/no_density/low{ + dir = 4 + }, +/turf/simulated/floor/tiled/gridded, +/area/hallway/primary/central_two) +"sf" = ( +/obj/effect/floor_decal/corner_wide/paleblue/full{ + dir = 4 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 6 + }, +/turf/simulated/floor/tiled/white, +/area/hallway/primary/central_one) +"sr" = ( +/obj/machinery/atmospherics/pipe/simple/heat_exchanging{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/heat_exchanging{ + dir = 1 + }, +/turf/space, +/area/exterior) +"su" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/full, +/area/hallway/primary/central_one) +"sv" = ( +/obj/effect/floor_decal/corner/grey/full{ + dir = 1 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 5 + }, +/turf/simulated/floor/tiled/gridded, +/area/hallway/primary/central_two) +"sy" = ( +/obj/structure/cable/yellow{ + icon_state = "1-8" + }, +/turf/simulated/floor/tiled/full, +/area/hallway/primary/central_two) +"sz" = ( +/obj/effect/floor_decal/corner/black{ + dir = 5 + }, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/gridded, +/area/hallway/primary/central_one) +"sA" = ( +/obj/machinery/meter, +/obj/machinery/atmospherics/pipe/simple/hidden/universal{ + dir = 4 + }, +/obj/structure/lattice/catwalk/indoor/grate, +/turf/simulated/floor/plating, +/area/hallway/primary/central_two) +"sB" = ( +/obj/machinery/atmospherics/portables_connector{ + dir = 8 + }, +/obj/effect/floor_decal/industrial/hatch_small/grey, +/obj/machinery/portable_atmospherics/canister/empty/carbon_dioxide, +/turf/simulated/floor/tiled/gridded, +/area/construction/storage) +"sC" = ( +/obj/machinery/conveyor{ + dir = 8; + id = "mining_1" + }, +/turf/simulated/floor/tiled/dark/full, +/area/hallway/primary/central_two) +"sE" = ( +/obj/machinery/atmospherics/portables_connector{ + dir = 8 + }, +/obj/effect/floor_decal/industrial/hatch_small/custodial, +/obj/machinery/portable_atmospherics/canister/empty/phoron, +/turf/simulated/floor/tiled/gridded, +/area/construction/storage) +"sG" = ( +/obj/effect/floor_decal/industrial/outline/custodial, +/obj/machinery/atmospherics/omni/filter{ + name = "phoron filter"; + tag_north = 1; + tag_south = 2; + tag_east = 6 + }, +/turf/simulated/floor/tiled/gridded, +/area/construction/storage) +"sH" = ( +/turf/simulated/floor/tiled/white, +/area/hallway/primary/central_one) +"sJ" = ( +/obj/effect/floor_decal/corner_wide/paleblue{ + dir = 5 + }, +/obj/effect/floor_decal/industrial/outline/red, +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/obj/machinery/optable, +/turf/simulated/floor/tiled/white, +/area/hallway/primary/central_one) +"sL" = ( +/obj/effect/decal/curb/corner{ + dir = 4 + }, +/obj/effect/floor_decal/corner/black{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 + }, +/turf/simulated/floor/tiled/gridded, +/area/hallway/primary/central_one) +"sM" = ( +/obj/machinery/atmospherics/pipe/manifold/visible/black{ + dir = 1 + }, +/obj/machinery/meter, +/turf/simulated/floor/tiled/full, +/area/construction/storage) +"sP" = ( +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/machinery/portable_atmospherics/canister/oxygen, +/turf/simulated/floor/tiled/dark/full, +/area/hallway/primary/central_two) +"sS" = ( +/obj/structure/tank_wall/hydrogen{ + density = 0; + icon_state = "h11"; + opacity = 0 + }, +/turf/simulated/floor/reinforced/hydrogen, +/area/construction/storage) +"sU" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, +/obj/structure/lattice/catwalk/indoor/grate, +/turf/simulated/floor/plating, +/area/hallway/primary/central_one) +"sZ" = ( +/obj/effect/floor_decal/corner/yellow{ + dir = 4 + }, +/obj/machinery/atmospherics/portables_connector, +/obj/effect/floor_decal/corner/dark_blue, +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/effect/floor_decal/industrial/loading/yellow, +/turf/simulated/floor/tiled/gridded, +/area/construction/storage) +"tc" = ( +/obj/structure/dispenser/oxygen, +/obj/effect/floor_decal/industrial/outline/yellow, +/turf/simulated/floor/tiled/dark/full, +/area/hallway/primary/central_two) +"td" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 8 + }, +/obj/structure/tank_wall/oxygen{ + icon_state = "o2-4" + }, +/turf/simulated/floor/plating, +/area/construction/storage) +"tf" = ( +/obj/effect/floor_decal/industrial/outline/grey, +/obj/machinery/computer/ship/engines/terminal, +/turf/simulated/floor/carpet/rubber, +/area/bridge) +"ti" = ( +/obj/effect/floor_decal/corner/grey{ + dir = 6 + }, +/turf/simulated/floor/tiled/gridded, +/area/turret_protected/ai) +"tr" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 4 + }, +/obj/structure/tank_wall/phoron{ + icon_state = "ph9" + }, +/turf/simulated/floor/airless, +/area/construction/storage) +"tt" = ( +/obj/structure/lattice/catwalk, +/obj/machinery/door/blast/regular{ + dir = 4; + id = "runtime_mixchamber_ext" + }, +/obj/effect/landmark/entry_point/aft, +/turf/simulated/floor/airless, +/area/construction/storage) +"tu" = ( +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/machinery/pipedispenser/disposal, +/obj/machinery/atmospherics/pipe/simple/visible/green{ + dir = 1 + }, +/turf/unsimulated/floor/dark_monotile, +/area/construction/storage) +"tw" = ( +/obj/effect/map_effect/marker/airlock{ + master_tag = "runtime_airlock_1_1"; + name = "runtime_airlock_1_1" + }, +/obj/machinery/atmospherics/pipe/manifold4w/hidden, +/obj/structure/lattice/catwalk/indoor/grate/dark, +/turf/simulated/floor/plating, +/area/hallway/primary/central_two) +"ty" = ( +/obj/machinery/door/firedoor, +/obj/effect/floor_decal/industrial/hatch_door/engineering{ + dir = 1 + }, +/obj/machinery/door/airlock/engineering{ + dir = 1; + name = "Gravity Generator Monitoring"; + req_access = list(11) + }, +/turf/simulated/floor/tiled/dark/full, +/area/hallway/primary/central_two) +"tC" = ( +/obj/machinery/atmospherics/portables_connector{ + dir = 8 + }, +/obj/effect/floor_decal/industrial/hatch_small/firefighting_closet, +/obj/machinery/portable_atmospherics/canister/empty/hydrogen, +/turf/simulated/floor/tiled/gridded, +/area/construction/storage) +"tI" = ( +/obj/effect/floor_decal/corner/grey/full{ + dir = 4 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 6 + }, +/turf/simulated/floor/tiled/gridded, +/area/hallway/primary/central_two) +"tJ" = ( +/obj/effect/map_effect/window_spawner/full/borosilicate/reinforced/firedoor, +/turf/simulated/floor/reinforced, +/area/hallway/primary/central_two) +"tL" = ( +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 1 + }, +/obj/structure/flora/pottedplant/minitree, +/turf/simulated/floor/wood/walnut, +/area/hallway/primary/central_one) +"tM" = ( +/obj/effect/floor_decal/industrial/outline/red, +/obj/machinery/atmospherics/omni/filter{ + name = "nitrous oxide filter"; + tag_north = 1; + tag_east = 7; + tag_south = 2 + }, +/turf/simulated/floor/tiled/gridded, +/area/construction/storage) +"tT" = ( +/obj/effect/floor_decal/corner/yellow{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/visible/red{ + dir = 1 + }, +/obj/effect/floor_decal/corner/dark_blue, +/turf/simulated/floor/tiled/gridded, +/area/construction/storage) +"ua" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 8 + }, +/turf/simulated/floor/tiled/gridded, +/area/hallway/primary/central_two) +"ue" = ( +/obj/machinery/door/airlock/external/blue{ + dir = 4 + }, +/obj/effect/map_effect/marker_helper/airlock/interior, +/obj/effect/map_effect/marker/airlock{ + master_tag = "runtime_airlock_1_1"; + name = "runtime_airlock_1_1" + }, +/obj/machinery/access_button{ + pixel_x = -10; + pixel_y = -30; + dir = 8 + }, +/obj/effect/floor_decal/industrial/hatch_door/red, +/turf/simulated/floor/tiled/dark/full, +/area/hallway/primary/central_two) +"uh" = ( +/turf/simulated/floor/airless, +/area/template_noop) +"ui" = ( +/obj/effect/floor_decal/industrial/outline/operations, +/obj/structure/closet/crate, +/obj/structure/railing/mapped/no_density/low{ + dir = 1 + }, +/turf/simulated/floor/tiled/full, +/area/storage/supply) +"uk" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/visible/red{ + dir = 5 + }, +/obj/structure/tank_wall/nitrous_oxide{ + icon_state = "n2o8" + }, +/turf/simulated/floor/plating, +/area/construction/storage) +"um" = ( +/obj/effect/floor_decal/industrial/warning/full, +/obj/machinery/iff_beacon/name_change{ + pixel_y = 5 + }, +/turf/simulated/floor/airless, +/area/bridge) +"un" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 8 + }, +/obj/structure/tank_wall/carbon_dioxide{ + icon_state = "co2-8" + }, +/turf/simulated/floor/airless, +/area/construction/storage) +"uo" = ( +/obj/structure/cable/yellow{ + icon_state = "2-8" + }, +/turf/simulated/floor/tiled/full, +/area/hallway/primary/central_one) +"up" = ( +/obj/machinery/atmospherics/pipe/tank/phoron{ + dir = 4 + }, +/obj/effect/floor_decal/industrial/outline/yellow, +/turf/simulated/floor/carpet/rubber, +/area/bridge) +"uq" = ( +/obj/effect/floor_decal/corner/brown/full, +/turf/simulated/floor/tiled/gridded, +/area/storage/supply/package) +"ut" = ( +/obj/machinery/atmospherics/unary/vent_pump/siphon/on/atmos{ + id_tag = "o2_out" + }, +/turf/simulated/floor/reinforced/oxygen, +/area/construction/storage) +"uy" = ( +/obj/machinery/atmospherics/unary/vent_pump/siphon/on/atmos{ + dir = 8; + id_tag = "n_out" + }, +/turf/simulated/floor/reinforced/nitrogen, +/area/construction/storage) +"uz" = ( +/obj/effect/decal/curb/corner{ + dir = 1 + }, +/obj/effect/floor_decal/corner/black{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 1 + }, +/turf/simulated/floor/tiled/gridded, +/area/hallway/primary/central_one) +"uA" = ( +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 5 + }, +/obj/effect/floor_decal/corner_wide/paleblue/full, +/obj/structure/closet/crate/freezer{ + name = "Fridge" + }, +/obj/effect/floor_decal/industrial/outline/red, +/obj/effect/floor_decal/industrial/warning{ + dir = 10 + }, +/obj/item/storage/firstaid/adv, +/obj/item/storage/firstaid/o2, +/obj/item/storage/firstaid/toxin, +/obj/item/storage/firstaid/fire, +/obj/item/storage/firstaid/regular, +/obj/item/storage/box/syringes, +/obj/item/storage/firstaid/radiation, +/obj/item/storage/firstaid/combat, +/turf/simulated/floor/tiled/white, +/area/hallway/primary/central_one) +"uC" = ( +/obj/structure/platform/ledge, +/obj/structure/platform/ledge{ + dir = 8 + }, +/obj/structure/platform_deco/ledge{ + dir = 9 + }, +/turf/simulated/open, +/area/hallway/primary/central_two) +"uD" = ( +/obj/machinery/button/remote/blast_door{ + desc = "A remote control-switch for the AI core maintenance door."; + id = "runtime_mixchamber_ext"; + name = "Mix Chamber Exterior Blast Doors"; + pixel_x = -4; + pixel_y = 9; + dir = 6 + }, +/obj/machinery/button/remote/blast_door{ + desc = "A remote control-switch for the AI core maintenance door."; + id = "runtime_mixchamber_int"; + name = "Mix Chamber Interior Blast Doors"; + pixel_x = -4; + pixel_y = -2; + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/visible/green{ + dir = 1 + }, +/obj/structure/table/reinforced/steel, +/obj/structure/lattice/catwalk/indoor/grate, +/obj/machinery/computer/general_air_control/large_tank_control/wall{ + input_tag = "turbine_fuel_in"; + name = "Combustion Fuel Control"; + output_tag = "turbine_fuel_out"; + sensors = list("turbine_sensor"="Turbine Combustion Sensor"); + pixel_y = 28; + frequency = 1443 + }, +/obj/machinery/button/ignition{ + id = "turbine_igni"; + pixel_y = -2; + name = "Combustion Chamber Ignition"; + pixel_x = 7 + }, +/turf/simulated/floor/plating, +/area/construction/storage) +"uE" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 + }, +/obj/effect/decal/curb{ + dir = 8 + }, +/turf/simulated/floor/tiled/full, +/area/hallway/primary/central_one) +"uF" = ( +/obj/effect/floor_decal/industrial/outline/security, +/obj/machinery/suit_cycler/security/prepared, +/turf/simulated/floor/tiled/dark/full, +/area/hallway/primary/central_two) +"uG" = ( +/obj/effect/decal/curb{ + dir = 4 + }, +/obj/effect/floor_decal/industrial/hatch_tiny/service, +/obj/machinery/atmospherics/binary/pump/high_power{ + name = "Trays to Scrubbers"; + dir = 8 + }, +/turf/simulated/floor/tiled/full, +/area/hallway/primary/central_one) +"uI" = ( +/obj/effect/floor_decal/corner_wide/orange{ + dir = 5 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/turf/simulated/floor/tiled/white, +/area/hallway/primary/central_one) +"uN" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 4 + }, +/obj/structure/tank_wall/oxygen{ + icon_state = "o2-7" + }, +/turf/simulated/floor/plating, +/area/construction/storage) +"uQ" = ( +/obj/effect/floor_decal/corner/mauve/full{ + dir = 8 + }, +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/effect/floor_decal/industrial/warning{ + dir = 9 + }, +/obj/machinery/fabricator/autolathe, +/turf/simulated/floor/tiled/white, +/area/hallway/primary/central_one) +"uR" = ( +/obj/effect/floor_decal/industrial/outline/service, +/obj/machinery/atmospherics/portables_connector{ + dir = 4 + }, +/obj/machinery/portable_atmospherics/hydroponics, +/turf/simulated/floor/tiled/dark/full, +/area/hallway/primary/central_one) +"uS" = ( +/obj/effect/floor_decal/spline/plain/black{ + dir = 8 + }, +/obj/machinery/power/terminal{ + dir = 8 + }, +/obj/structure/cable, +/turf/simulated/floor/tiled/gridded, +/area/shuttle/runtime) +"vi" = ( +/obj/effect/decal/curb, +/obj/structure/cable/yellow{ + icon_state = "1-4" + }, +/turf/simulated/floor/tiled/full, +/area/hallway/primary/central_one) +"vj" = ( +/obj/effect/floor_decal/corner/dark_blue, +/obj/effect/floor_decal/corner/yellow{ + dir = 8 + }, +/obj/effect/floor_decal/corner/dark_blue{ + dir = 1 + }, +/obj/machinery/meter, +/obj/machinery/atmospherics/pipe/manifold/visible/red, +/turf/simulated/floor/tiled/gridded, +/area/construction/storage) +"vl" = ( +/obj/machinery/conveyor{ + id = "cargo_1" + }, +/obj/effect/floor_decal/industrial/hatch/operations, +/turf/simulated/floor/tiled/dark/full, +/area/hallway/primary/central_one) +"vm" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 8 + }, +/turf/simulated/floor/tiled/full, +/area/hallway/primary/central_one) +"vt" = ( +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/effect/floor_decal/industrial/loading/yellow{ + dir = 1 + }, +/obj/machinery/atmospherics/portables_connector, +/turf/simulated/floor/tiled/full, +/area/construction/storage) +"vu" = ( +/obj/effect/decal/curb{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 + }, +/turf/simulated/floor/tiled/full, +/area/hallway/primary/central_one) +"vw" = ( +/obj/machinery/door/firedoor{ + dir = 4 + }, +/obj/effect/floor_decal/industrial/hatch/yellow, +/turf/unsimulated/floor/dark_monotile, +/area/construction) +"vz" = ( +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 4 + }, +/turf/simulated/floor/tiled/full, +/area/hallway/primary/central_two) +"vC" = ( +/obj/structure/sign/atmosplaque{ + pixel_y = 32 + }, +/turf/simulated/floor/tiled/full, +/area/construction/storage) +"vD" = ( +/obj/effect/floor_decal/corner/brown{ + dir = 5 + }, +/turf/simulated/floor/tiled/gridded, +/area/storage/supply) +"vH" = ( +/obj/effect/floor_decal/corner/grey/full, +/obj/effect/floor_decal/industrial/warning{ + dir = 10 + }, +/turf/simulated/floor/tiled/gridded, +/area/hallway/primary/central_one) +"vI" = ( +/obj/machinery/atmospherics/unary/vent_pump/siphon/on/atmos{ + dir = 4; + id_tag = "h_out" + }, +/turf/simulated/floor/reinforced/hydrogen, +/area/construction/storage) +"vL" = ( +/obj/effect/floor_decal/industrial/warning/full, +/obj/machinery/iff_beacon/name_change{ + pixel_y = 5 + }, +/obj/structure/railing/mapped/no_density/low{ + dir = 4 + }, +/obj/structure/railing/mapped/no_density/low, +/turf/simulated/floor/airless, +/area/shuttle/runtime) +"vO" = ( +/obj/machinery/door/firedoor, +/obj/effect/floor_decal/industrial/hatch/yellow, +/turf/unsimulated/floor/dark_monotile, +/area/construction) +"vS" = ( +/obj/machinery/atmospherics/pipe/simple/visible/black{ + dir = 10 + }, +/turf/simulated/floor/plating, +/area/construction/storage) +"vV" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 4 + }, +/obj/effect/floor_decal/industrial/outline_door/yellow{ + dir = 8 + }, +/obj/effect/floor_decal/industrial/arrow/yellow{ + dir = 8 + }, +/obj/effect/floor_decal/industrial/outline_segment/yellow, +/obj/effect/floor_decal/industrial/outline_segment/yellow{ + dir = 9 + }, +/turf/simulated/floor/tiled/gridded, +/area/hallway/primary/central_two) +"vX" = ( +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/machinery/telecomms/processor/preset_four, +/obj/machinery/status_display{ + pixel_y = 32 + }, +/turf/simulated/floor/tiled/techfloor, +/area/turret_protected/ai) +"wa" = ( +/obj/structure/tank_wall/carbon_dioxide{ + density = 0; + icon_state = "co2-12"; + opacity = 0 + }, +/obj/machinery/atmospherics/unary/vent_pump/siphon/on/atmos{ + id_tag = "co2_out"; + dir = 4 + }, +/turf/simulated/floor/reinforced/carbon_dioxide, +/area/construction/storage) +"wi" = ( +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 6 + }, +/obj/structure/lattice/catwalk/indoor/grate, +/turf/simulated/floor/plating, +/area/hallway/primary/central_two) +"wj" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/visible/yellow{ + dir = 6 + }, +/turf/unsimulated/floor/dark_monotile, +/area/construction/storage) +"wk" = ( +/obj/effect/floor_decal/corner/grey/full, +/obj/effect/floor_decal/industrial/warning{ + dir = 10 + }, +/turf/simulated/floor/tiled/dark, +/area/hallway/primary/central_one) +"wl" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/bitile{ + dir = 1 + }, +/area/hallway/primary/central_one) +"wn" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/obj/structure/tank_wall/carbon_dioxide{ + icon_state = "co2-3" + }, +/turf/simulated/floor/airless, +/area/construction/storage) +"wo" = ( +/obj/machinery/mineral/unloading_machine{ + dir = 8 + }, +/obj/effect/floor_decal/industrial/outline/yellow, +/turf/simulated/floor/tiled/dark/full, +/area/hallway/primary/central_two) +"wq" = ( +/obj/machinery/atmospherics/unary/freezer{ + icon_state = "freezer" + }, +/obj/effect/floor_decal/corner_wide/paleblue{ + dir = 5 + }, +/obj/effect/floor_decal/industrial/outline/red, +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/obj/item/storage/toolbox/mechanical{ + pixel_y = 12 + }, +/turf/simulated/floor/tiled/white, +/area/hallway/primary/central_one) +"ws" = ( +/obj/machinery/atmospherics/portables_connector{ + dir = 4 + }, +/obj/effect/floor_decal/industrial/hatch_small/yellow, +/turf/simulated/floor/tiled/gridded, +/area/construction/storage) +"wu" = ( +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/machinery/telecomms/server/presets/common, +/obj/machinery/status_display{ + pixel_y = 32 + }, +/turf/simulated/floor/tiled/techfloor, +/area/turret_protected/ai) +"wy" = ( +/obj/structure/lattice/catwalk/indoor/grate, +/obj/machinery/atmospherics/pipe/simple/visible/red{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/construction/storage) +"wD" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 8 + }, +/turf/unsimulated/floor/dark_monotile, +/area/construction/storage) +"wG" = ( +/obj/effect/floor_decal/corner_wide/orange{ + dir = 9 + }, +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/effect/floor_decal/industrial/warning{ + dir = 8 + }, +/obj/machinery/chemical_dispenser/ert, +/turf/simulated/floor/tiled/white, +/area/hallway/primary/central_one) +"wL" = ( +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 9 + }, +/obj/structure/curtain/open/bar, +/turf/simulated/floor/wood/walnut, +/area/hallway/primary/central_one) +"wN" = ( +/obj/machinery/light/spot{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/visible/red{ + dir = 1 + }, +/turf/simulated/floor/tiled/full, +/area/construction/storage) +"wQ" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 1 + }, +/obj/effect/decal/curb, +/turf/simulated/floor/tiled/full, +/area/hallway/primary/central_one) +"wV" = ( +/obj/effect/floor_decal/industrial/warning, +/obj/structure/tank_wall/nitrous_oxide{ + icon_state = "n2o15" + }, +/turf/simulated/floor/plating, +/area/construction/storage) +"wW" = ( +/obj/structure/tank_wall/nitrous_oxide{ + density = 0; + icon_state = "h12"; + opacity = 0 + }, +/turf/simulated/floor/reinforced/n20, +/area/construction/storage) +"wY" = ( +/obj/effect/map_effect/marker/airlock{ + master_tag = "runtime_airlock_1_1"; + name = "runtime_airlock_1_1" + }, +/obj/machinery/atmospherics/unary/vent_pump/high_volume, +/obj/structure/lattice/catwalk/indoor/grate/dark, +/obj/machinery/embedded_controller/radio/airlock/airlock_controller{ + pixel_x = 9; + pixel_y = 27 + }, +/turf/simulated/floor/plating, +/area/hallway/primary/central_two) +"xj" = ( +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/structure/table/rack{ + dir = 8 + }, +/obj/item/suit_cooling_unit, +/obj/item/suit_cooling_unit, +/obj/item/storage/toolbox/mechanical, +/obj/item/clothing/shoes/magboots, +/obj/item/clothing/shoes/magboots, +/obj/item/tank/jetpack/carbondioxide, +/obj/item/tank/jetpack/carbondioxide, +/turf/simulated/floor/tiled/dark/full, +/area/hallway/primary/central_two) +"xk" = ( +/obj/effect/map_effect/window_spawner/full/reinforced/firedoor, +/turf/simulated/floor/tiled/full, +/area/storage/supply) +"xp" = ( +/obj/effect/floor_decal/industrial/hatch_door/yellow{ + dir = 8 + }, +/obj/machinery/door/firedoor, /obj/structure/plasticflaps/airtight, /obj/machinery/door/airlock/highsecurity{ name = "AI Upload"; req_access = list(16); dir = 1 }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/tiled, -/area/turret_protected/ai_upload_foyer) -"Ny" = ( -/obj/structure/cable/cyan{ - d1 = 2; - d2 = 8; - icon_state = "2-8" +/obj/structure/cable/yellow{ + icon_state = "1-2" }, -/obj/machinery/computer/aiupload, -/turf/simulated/floor/tiled{ - name = "cooled floor"; - temperature = 278 +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 1 }, -/area/turret_protected/ai_upload_foyer) -"Oe" = ( -/obj/effect/landmark/start{ - name = "Corporate Liaison" +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 1 }, -/obj/effect/floor_decal/industrial/loading/yellow, -/turf/simulated/floor/plating, -/area/construction) -"Og" = ( -/obj/machinery/computer/message_monitor, -/turf/simulated/floor/tiled{ - name = "cooled floor"; - temperature = 278 - }, -/area/turret_protected/ai_upload_foyer) -"Ot" = ( -/obj/machinery/atmospherics/unary/vent_pump/high_volume{ +/turf/unsimulated/floor/dark_monotile, +/area/turret_protected/ai) +"xr" = ( +/obj/effect/floor_decal/corner/yellow{ dir = 8 }, +/obj/effect/floor_decal/corner/dark_blue{ + dir = 1 + }, +/obj/machinery/atmospherics/portables_connector, +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/effect/floor_decal/industrial/loading/yellow, +/turf/simulated/floor/tiled/gridded, +/area/construction/storage) +"xs" = ( +/obj/effect/floor_decal/corner/grey{ + dir = 10 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/gridded, +/area/hallway/primary/central_two) +"xu" = ( +/obj/machinery/door/firedoor, +/obj/effect/floor_decal/industrial/hatch/yellow, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/turf/unsimulated/floor/dark_monotile, +/area/construction/storage) +"xy" = ( +/turf/simulated/wall/shuttle/space_ship/mercenary, +/area/shuttle/runtime) +"xz" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/universal, +/obj/structure/bed/handrail{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark/full, +/area/shuttle/runtime) +"xB" = ( +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 1 + }, +/turf/simulated/floor/wood/walnut, +/area/hallway/primary/central_one) +"xF" = ( +/obj/structure/tank_wall/phoron{ + density = 0; + icon_state = "ph6"; + opacity = 0 + }, +/turf/simulated/floor/reinforced/phoron, +/area/construction/storage) +"xL" = ( +/obj/effect/floor_decal/corner/grey{ + dir = 1 + }, +/turf/simulated/floor/tiled/gridded, +/area/turret_protected/ai) +"xN" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden{ + dir = 1 + }, +/turf/simulated/floor/tiled/full, +/area/hallway/primary/central_two) +"xO" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/fuel{ + dir = 8 + }, +/turf/simulated/floor/tiled/dark/full, +/area/shuttle/runtime) +"xP" = ( +/obj/effect/floor_decal/corner/grey/diagonal, +/obj/effect/floor_decal/industrial/outline/grey, +/obj/machinery/air_sensor{ + frequency = 1441; + id_tag = "co2_sensor" + }, +/obj/effect/decal/fake_object/light_source/invisible, +/turf/simulated/floor/reinforced/carbon_dioxide, +/area/construction/storage) +"xQ" = ( +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/machinery/blackbox_recorder, +/turf/simulated/floor/tiled/techfloor, +/area/turret_protected/ai) +"xU" = ( /obj/effect/map_effect/marker/airlock{ master_tag = "runtime_airlock_1_1"; name = "runtime_airlock_1_1" }, -/turf/simulated/floor/plating, -/area/maintenance/maintcentral) -"OX" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/camera/network/command{ - c_tag = "AI Access"; - dir = 1 - }, -/obj/item/radio/intercom/south{ - frequency = 1343; - name = "Private Channel" - }, -/turf/simulated/floor/tiled{ - name = "cooled floor"; - temperature = 278 - }, -/area/turret_protected/ai_upload_foyer) -"Pc" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 1 - }, -/obj/structure/railing/mapped{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/construction/storage) -"PS" = ( -/obj/effect/landmark{ - name = "Revenant" +/obj/machinery/atmospherics/unary/vent_pump/high_volume, +/obj/structure/lattice/catwalk/indoor/grate/dark, +/obj/machinery/airlock_sensor{ + pixel_x = -9; + pixel_y = 26 }, /turf/simulated/floor/plating, -/area/maintenance/maintcentral) -"Qe" = ( -/turf/simulated/wall/r_wall, -/area/shuttle/runtime) -"Qi" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ +/area/hallway/primary/central_two) +"xV" = ( +/obj/effect/floor_decal/corner/dark_green{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden{ dir = 4 }, -/obj/machinery/door/airlock{ - dir = 4 +/obj/effect/floor_decal/spline/plain/paleblue{ + dir = 8 }, /turf/simulated/floor/tiled, /area/hallway/primary/central_one) -"QS" = ( -/obj/structure/cable/cyan{ - d1 = 4; - d2 = 8; - icon_state = "4-8" +"xY" = ( +/obj/effect/floor_decal/corner/grey{ + dir = 10 }, -/obj/machinery/computer/borgupload, -/turf/simulated/floor/tiled{ - name = "cooled floor"; - temperature = 278 - }, -/area/turret_protected/ai_upload_foyer) -"QT" = ( -/obj/machinery/atmospherics/unary/vent_pump{ - dir = 8; - external_pressure_bound = 0; - external_pressure_bound_default = 0; - icon_state = "map_vent_in"; - initialize_directions = 1; - internal_pressure_bound = 4000; - internal_pressure_bound_default = 4000; - pressure_checks = 2; - pressure_checks_default = 2; - pump_direction = 0; - use_power = 1 - }, -/turf/simulated/floor/tiled{ - name = "cooled floor"; - temperature = 278 - }, -/area/tcommsat/chamber) -"QV" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden, -/turf/simulated/floor/plating, -/area/storage/primary) -"Rl" = ( -/obj/machinery/conveyor{ - dir = 8; - id = "mining_1" - }, -/turf/simulated/floor/tiled, -/area/construction/storage) -"Ro" = ( +/turf/simulated/floor/tiled/gridded, +/area/turret_protected/ai) +"yg" = ( /obj/machinery/atmospherics/pipe/simple/hidden{ - dir = 10 - }, -/turf/simulated/floor/plating, -/area/storage/primary) -"RL" = ( -/obj/effect/floor_decal/corner/dark_blue{ - dir = 10 - }, -/obj/machinery/camera/network/command{ - c_tag = "Bridge"; dir = 1 }, -/obj/item/radio/intercom/south, -/turf/simulated/floor/tiled, -/area/bridge) -"RN" = ( -/obj/machinery/telecomms/message_server, -/turf/simulated/floor/tiled{ - name = "cooled floor"; - temperature = 278 - }, -/area/turret_protected/ai_upload_foyer) -"RU" = ( -/obj/machinery/bluespacerelay, -/turf/simulated/floor/bluegrid{ - name = "cooled mainframe floor"; - temperature = 278 - }, -/area/tcommsat/chamber) -"RY" = ( -/obj/structure/lattice/catwalk, -/turf/simulated/floor/tiled, -/area/construction/storage) -"Sj" = ( -/obj/effect/landmark/start{ - name = "Warden" - }, +/obj/structure/lattice/catwalk/indoor/grate, /turf/simulated/floor/plating, -/area/construction) -"Sm" = ( -/obj/machinery/door/window/holowindoor{ - dir = 1 - }, -/mob/living/carbon/slime, -/turf/simulated/floor/tiled, -/area/construction/storage) -"Sv" = ( -/obj/machinery/light{ - brightness_range = 16; - dir = 8; - must_start_working = 1 +/area/hallway/primary/central_two) +"yh" = ( +/obj/effect/floor_decal/corner/yellow{ + dir = 9 }, /obj/effect/floor_decal/industrial/warning{ + dir = 8 + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/gridded, +/area/hallway/primary/central_one) +"yk" = ( +/obj/effect/floor_decal/spline/plain/black{ dir = 4 }, -/turf/simulated/floor/tiled, +/obj/structure/railing/retractable{ + dir = 8 + }, +/turf/simulated/floor/tiled/dark/full, +/area/hallway/primary/central_one) +"yr" = ( +/obj/structure/cable/yellow{ + icon_state = "1-4" + }, +/turf/simulated/floor/tiled/full, +/area/hallway/primary/central_one) +"yw" = ( +/obj/effect/floor_decal/corner/yellow{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/visible/black{ + dir = 1 + }, +/obj/machinery/atmospherics/portables_connector{ + dir = 4 + }, +/obj/effect/floor_decal/corner/dark_blue{ + dir = 1 + }, +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/effect/floor_decal/industrial/loading/yellow{ + dir = 4 + }, +/turf/simulated/floor/tiled/gridded, /area/construction/storage) -"Sz" = ( -/obj/machinery/alarm/north, +"yC" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 + }, +/obj/effect/decal/curb/corner{ + dir = 4 + }, +/turf/simulated/floor/tiled/full, +/area/hallway/primary/central_one) +"yD" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/light/floor{ + dir = 4 + }, +/turf/simulated/floor/tiled/bitile{ + dir = 4 + }, +/area/hallway/primary/central_one) +"yE" = ( +/obj/structure/tank_wall/hydrogen{ + icon_state = "h16" + }, +/obj/effect/floor_decal/industrial/warning, +/turf/simulated/floor/airless, +/area/construction/storage) +"yG" = ( +/obj/machinery/power/sensor{ + long_range = 1; + name = "Powernet Sensor - AI Subgrid"; + name_tag = "AI Subgrid" + }, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/structure/cable/yellow, +/obj/structure/cable/yellow{ + icon_state = "1-4" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, +/turf/simulated/floor/tiled/gridded, +/area/turret_protected/ai) +"yJ" = ( +/obj/effect/floor_decal/corner/dark_green{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 8 + }, +/obj/effect/floor_decal/spline/plain/paleblue, +/obj/structure/railing/mapped/no_density/low, /turf/simulated/floor/tiled, -/area/storage/primary) -"SA" = ( -/obj/effect/landmark/start{ - name = "First Responder" +/area/hallway/primary/central_one) +"yK" = ( +/obj/structure/extinguisher_cabinet/west, +/obj/machinery/atmospherics/pipe/simple/visible/red{ + dir = 5 }, -/obj/structure/disposalpipe/segment{ +/obj/machinery/firealarm/south, +/turf/simulated/floor/tiled/full, +/area/construction/storage) +"yT" = ( +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 9 + }, +/obj/effect/floor_decal/corner_wide/paleblue{ + dir = 10 + }, +/obj/effect/floor_decal/industrial/warning, +/turf/simulated/floor/tiled/white, +/area/hallway/primary/central_one) +"yV" = ( +/obj/effect/floor_decal/industrial/hatch_door/red{ + dir = 1 + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/effect/map_effect/marker_helper/airlock/interior, +/obj/machinery/access_button{ + pixel_x = -30; + pixel_y = 11; + dir = 1 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden{ + dir = 8 + }, +/obj/machinery/door/airlock/external/blue{ + dir = 1 + }, +/obj/effect/map_effect/marker/airlock/docking/runtime/dock, +/turf/simulated/floor/tiled/dark/full, +/area/hallway/primary/central_two) +"yW" = ( +/obj/effect/floor_decal/industrial/outline/grey, +/obj/machinery/computer/ship/helm/terminal, +/turf/simulated/floor/carpet/rubber, +/area/bridge) +"yZ" = ( +/obj/machinery/atmospherics/pipe/simple/hidden{ dir = 4 }, -/turf/simulated/floor/plating, -/area/construction) -"SP" = ( -/obj/effect/landmark/start{ - name = "Engineering Apprentice" +/obj/machinery/light/floor{ + dir = 1 }, -/obj/structure/disposalpipe/segment{ +/obj/machinery/atmospherics/pipe/simple/hidden/fuel{ dir = 4 }, +/turf/simulated/floor/tiled/dark/full, +/area/shuttle/runtime) +"zb" = ( +/obj/machinery/atmospherics/omni/filter{ + name = "hydrogen filter"; + tag_north = 1; + tag_south = 2; + tag_east = 8 + }, +/obj/effect/floor_decal/industrial/outline/firefighting_closet, +/turf/simulated/floor/tiled/gridded, +/area/construction/storage) +"zd" = ( +/obj/effect/map_effect/window_spawner/full/reinforced/firedoor, +/obj/machinery/door/blast/regular/open{ + id = "runtime_blastdoors"; + dir = 2 + }, +/turf/simulated/floor/tiled/full, +/area/hallway/primary/central_two) +"zj" = ( +/obj/machinery/atmospherics/pipe/manifold/visible/yellow{ + dir = 1 + }, +/turf/simulated/floor/tiled/gridded, +/area/construction/storage) +"zp" = ( +/obj/effect/shuttle_landmark/runtime/transit{ + dir = 1 + }, +/turf/space/transit/north, +/area/space) +"zr" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/obj/structure/lattice/catwalk/indoor/grate/gridded, +/turf/simulated/floor/plating, +/area/hallway/primary/central_one) +"zv" = ( +/obj/structure/railing/mapped/no_density/low, +/obj/machinery/mineral/processing_unit_console{ + id = "runtime_processing_1"; + pixel_y = 32 + }, +/turf/simulated/floor/tiled/full, +/area/hallway/primary/central_two) +"zw" = ( +/obj/machinery/atmospherics/binary/pump/high_power{ + name = "Canisters to Mix"; + dir = 4 + }, +/obj/effect/floor_decal/industrial/hatch_tiny/yellow, +/turf/simulated/floor/tiled/gridded, +/area/construction/storage) +"zx" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/obj/effect/decal/curb/corner{ + dir = 8 + }, +/turf/simulated/floor/tiled/full, +/area/hallway/primary/central_one) +"zz" = ( +/obj/machinery/door/firedoor, +/obj/effect/floor_decal/industrial/hatch/yellow, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/turf/unsimulated/floor/dark_monotile, +/area/hallway/primary/central_one) +"zE" = ( +/turf/simulated/floor/tiled/full, +/area/storage/supply) +"zI" = ( +/obj/effect/decal/curb{ + dir = 10 + }, +/obj/effect/floor_decal/corner/brown/full{ + dir = 1 + }, +/turf/simulated/floor/tiled/gridded, +/area/storage/supply) +"zM" = ( +/obj/effect/floor_decal/corner_wide/orange{ + dir = 9 + }, +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/effect/floor_decal/industrial/warning{ + dir = 8 + }, +/obj/structure/table/rack, +/obj/item/reagent_containers/glass/beaker/bluespace{ + pixel_x = -8; + pixel_y = 10 + }, +/obj/item/reagent_containers/glass/beaker/bluespace{ + pixel_x = -8; + pixel_y = 10 + }, +/obj/item/reagent_containers/glass/beaker/bluespace{ + pixel_x = -8; + pixel_y = 10 + }, +/obj/item/storage/box/beakers{ + pixel_x = -8; + pixel_y = -3 + }, +/obj/item/stack/material/phoron/full{ + pixel_x = 2; + pixel_y = 5 + }, +/turf/simulated/floor/tiled/white, +/area/hallway/primary/central_one) +"zP" = ( +/obj/effect/floor_decal/corner_wide/orange{ + dir = 9 + }, +/obj/machinery/chemical_dispenser/full, +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/effect/floor_decal/industrial/warning{ + dir = 8 + }, +/turf/simulated/floor/tiled/white, +/area/hallway/primary/central_one) +"zQ" = ( +/obj/effect/floor_decal/corner/grey{ + dir = 10 + }, +/obj/effect/floor_decal/industrial/warning, +/obj/structure/stairs_lower{ + pixel_y = 9 + }, +/obj/structure/stairs_railing{ + pixel_y = 22 + }, +/turf/simulated/floor/tiled/gridded, +/area/hallway/primary/central_one) +"zR" = ( +/obj/effect/decal/curb{ + dir = 6 + }, +/obj/effect/floor_decal/corner/brown/full{ + dir = 8 + }, +/turf/simulated/floor/tiled/gridded, +/area/storage/supply) +"zS" = ( +/obj/effect/floor_decal/corner/yellow{ + dir = 8 + }, +/obj/effect/floor_decal/corner/dark_blue{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/visible/black{ + dir = 1 + }, +/obj/effect/floor_decal/industrial/hatch_tiny/yellow, +/obj/machinery/atmospherics/binary/pump/high_power{ + name = "Carbondioxide to Mix"; + dir = 4 + }, +/turf/simulated/floor/tiled/gridded, +/area/construction/storage) +"zX" = ( +/obj/machinery/atmospherics/portables_connector{ + dir = 8 + }, +/obj/effect/floor_decal/industrial/hatch_small/medical, +/obj/machinery/portable_atmospherics/canister/empty/nitrogen, +/turf/simulated/floor/tiled/gridded, +/area/construction/storage) +"zY" = ( +/obj/machinery/atmospherics/pipe/simple/visible/black{ + dir = 9 + }, +/turf/simulated/floor/plating, +/area/construction/storage) +"zZ" = ( +/obj/machinery/firealarm/north, +/turf/simulated/floor/tiled/full, +/area/hallway/primary/central_one) +"Ag" = ( +/obj/effect/floor_decal/industrial/outline/operations, +/obj/structure/table/steel, +/turf/simulated/floor/tiled/full, +/area/storage/supply) +"Am" = ( +/obj/effect/floor_decal/corner/grey{ + dir = 5 + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 1 + }, +/turf/simulated/floor/tiled/gridded, +/area/hallway/primary/central_two) +"Ao" = ( +/obj/structure/railing/mapped/no_density/low{ + dir = 8 + }, +/obj/effect/decal/curb{ + dir = 4 + }, +/turf/simulated/floor/tiled/full, +/area/hallway/primary/central_one) +"Ar" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/visible/black{ + dir = 10 + }, +/obj/structure/tank_wall/oxygen{ + icon_state = "o2-8" + }, +/turf/simulated/floor/plating, +/area/construction/storage) +"As" = ( +/obj/effect/floor_decal/corner/yellow/full{ + dir = 8 + }, +/obj/structure/table/rack, +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/effect/floor_decal/industrial/warning{ + dir = 9 + }, +/obj/item/stack/material/plasteel/full, +/obj/item/stack/material/plasteel/full, +/obj/item/stack/material/plasteel/full, +/turf/simulated/floor/tiled/gridded, +/area/hallway/primary/central_one) +"At" = ( +/obj/effect/floor_decal/corner/yellow{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/visible/cyan{ + dir = 4 + }, +/obj/effect/floor_decal/corner/dark_blue{ + dir = 1 + }, +/obj/effect/floor_decal/industrial/hatch_tiny/red, +/obj/machinery/atmospherics/binary/pump/high_power{ + name = "Mix to Oxygen Storage"; + dir = 1 + }, +/turf/simulated/floor/tiled/gridded, +/area/construction/storage) +"Aw" = ( +/obj/effect/floor_decal/corner/yellow/full{ + dir = 4 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 6 + }, +/obj/structure/table/reinforced/steel, +/obj/item/storage/backpack/holding{ + pixel_x = 6; + pixel_y = 4 + }, +/turf/simulated/floor/tiled/gridded, +/area/hallway/primary/central_one) +"AC" = ( +/obj/structure/lattice/catwalk/indoor/grate, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/firealarm/north, /turf/simulated/floor/plating, /area/construction) -"Te" = ( +"AM" = ( +/obj/effect/floor_decal/corner/dark_green{ + dir = 9 + }, +/obj/effect/floor_decal/spline/plain/paleblue{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold4w/hidden, +/turf/simulated/floor/tiled, +/area/hallway/primary/central_one) +"AS" = ( +/obj/effect/floor_decal/corner/yellow{ + dir = 9 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 8 + }, +/obj/machinery/power/apc/hyper/north, +/obj/structure/cable/yellow{ + icon_state = "0-8" + }, +/turf/simulated/floor/tiled/gridded, +/area/hallway/primary/central_one) +"Ba" = ( +/obj/effect/floor_decal/corner/dark_green/full{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 6 + }, +/obj/effect/floor_decal/spline/plain/corner/paleblue, +/turf/simulated/floor/tiled, +/area/hallway/primary/central_one) +"Bc" = ( +/obj/effect/floor_decal/corner/grey{ + dir = 5 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/obj/structure/railing/mapped, +/turf/simulated/floor/tiled/gridded, +/area/hallway/primary/central_two) +"Bd" = ( +/obj/structure/railing/retractable, +/obj/effect/landmark/destination_helper/cargo_elevator, +/turf/simulated/floor/tiled/dark/full, +/area/hallway/primary/central_one) +"Bi" = ( /obj/machinery/mineral/stacking_machine{ id = "runtime_stacking_1"; dir = 8 }, -/turf/simulated/floor/tiled, -/area/construction/storage) -"Th" = ( +/obj/effect/floor_decal/industrial/warning/full, /turf/simulated/floor/plating, -/area/outpost/mining_main/eva) -"Ti" = ( -/obj/machinery/light{ - dir = 4 - }, -/obj/machinery/firealarm/east, -/turf/simulated/floor/plating, -/area/outpost/mining_main/eva) -"Tj" = ( -/obj/machinery/atmospherics/pipe/manifold4w/hidden, -/obj/machinery/atmospherics/pipe/simple/hidden/aux, -/obj/effect/map_effect/marker/airlock{ - master_tag = "runtime_airlock_1_1"; - name = "runtime_airlock_1_1" - }, -/turf/simulated/floor/plating, -/area/maintenance/maintcentral) -"Tq" = ( -/obj/effect/overmap/visitable/ship/landable/runtime, -/turf/simulated/floor/shuttle, -/area/shuttle/runtime) -"Tz" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/aux{ - dir = 1 - }, -/obj/effect/map_effect/marker/airlock{ - master_tag = "runtime_airlock_1_1"; - name = "runtime_airlock_1_1" - }, -/turf/simulated/floor/plating, -/area/maintenance/maintcentral) -"TA" = ( -/obj/machinery/light{ - brightness_range = 16; - dir = 8; - must_start_working = 1 - }, -/obj/structure/disposalpipe/trunk, -/obj/machinery/disposal/deliveryChute{ - dir = 1 - }, -/turf/simulated/floor/tiled{ - name = "cooled floor"; - temperature = 278 - }, -/area/turret_protected/ai_upload_foyer) -"TB" = ( -/mob/living/heavy_vehicle/premade/random, -/obj/machinery/mech_recharger, -/turf/simulated/floor/tiled, -/area/construction/storage) -"TD" = ( -/obj/machinery/atmospherics/pipe/simple/hidden{ - dir = 6 - }, -/turf/simulated/floor/plating, -/area/storage/primary) -"TL" = ( -/obj/structure/cable{ - d2 = 8; - icon_state = "0-8" - }, -/obj/machinery/power/apc/south, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled{ - name = "cooled floor"; - temperature = 278 - }, -/area/turret_protected/ai_upload_foyer) -"TP" = ( +/area/hallway/primary/central_two) +"Bj" = ( /obj/effect/floor_decal/industrial/warning{ dir = 4 }, -/obj/machinery/atmospherics/unary/vent_pump{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/construction) -"TR" = ( -/turf/simulated/wall/r_wall, -/area/turret_protected/ai_upload_foyer) -"TU" = ( -/obj/machinery/atmospherics/unary/vent_pump, -/turf/simulated/floor/tiled{ - name = "cooled floor"; - temperature = 278 - }, -/area/turret_protected/ai) -"TW" = ( -/obj/effect/landmark/start{ - name = "Gardener" +/obj/structure/tank_wall/oxygen{ + icon_state = "o2-13" }, /turf/simulated/floor/plating, -/area/construction) -"Uf" = ( -/turf/simulated/floor/plating, -/area/turbolift/main_station) -"Us" = ( -/obj/machinery/atmospherics/pipe/simple/visible/black{ +/area/construction/storage) +"Bo" = ( +/obj/structure/railing/mapped, +/obj/effect/floor_decal/corner/grey/full{ + dir = 8 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 9 + }, +/turf/simulated/floor/tiled/gridded, +/area/hallway/primary/central_two) +"Br" = ( +/obj/machinery/atmospherics/pipe/simple/visible/red{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/visible/blue, +/turf/simulated/floor/tiled/full, +/area/construction/storage) +"Bv" = ( +/obj/effect/floor_decal/corner/brown{ + dir = 10 + }, +/obj/effect/floor_decal/industrial/hatch/operations, +/obj/machinery/conveyor{ + dir = 1; + id = "QMLoad" + }, +/obj/effect/floor_decal/industrial/warning, +/turf/simulated/floor/tiled/gridded, +/area/hallway/primary/central_one) +"Bx" = ( +/obj/machinery/rotating_alarm{ dir = 4 }, -/obj/structure/plasticflaps/airtight, -/obj/machinery/door/window/brigdoor/eastleft, -/obj/structure/cable/cyan{ - d1 = 4; - d2 = 8; - icon_state = "4-8" +/turf/simulated/floor/tiled/full, +/area/hallway/primary/central_one) +"BF" = ( +/obj/effect/floor_decal/industrial/warning/full, +/obj/machinery/shipsensors/strong{ + pixel_y = 4 }, -/turf/simulated/floor/tiled{ - name = "cooled floor"; - temperature = 278 +/obj/structure/railing/mapped/no_density/low{ + dir = 8 }, -/area/tcommsat/computer) -"Ut" = ( -/obj/machinery/r_n_d/server/advanced/core, -/turf/simulated/floor/tiled, +/obj/structure/railing/mapped/no_density/low, +/turf/simulated/floor/airless, +/area/shuttle/runtime) +"BH" = ( +/obj/machinery/atmospherics/unary/vent_pump/siphon/on/atmos{ + dir = 8; + id_tag = "n2o_out" + }, +/turf/simulated/floor/reinforced/n20, /area/construction/storage) -"UD" = ( -/obj/machinery/telecomms/broadcaster/preset_right, -/turf/simulated/floor/bluegrid{ - name = "cooled mainframe floor"; - temperature = 278 +"BI" = ( +/obj/effect/floor_decal/industrial/outline/grey, +/obj/machinery/computer/shuttle_control/explore/terminal/runtime{ + dir = 1 }, -/area/tcommsat/chamber) -"UF" = ( +/turf/simulated/floor/carpet/rubber, +/area/shuttle/runtime) +"BL" = ( +/turf/simulated/floor/reinforced/carbon_dioxide, +/area/construction/storage) +"BM" = ( +/turf/simulated/floor/reinforced/hydrogen, +/area/construction/storage) +"BO" = ( +/obj/effect/floor_decal/corner/grey{ + dir = 6 + }, +/turf/simulated/floor/tiled/gridded, +/area/hallway/primary/central_two) +"BQ" = ( +/turf/simulated/wall/r_wall, +/area/hallway/primary/central_two) +"BW" = ( +/obj/machinery/meter, +/obj/machinery/atmospherics/pipe/manifold4w/visible/red, +/turf/simulated/floor/tiled/full, +/area/construction/storage) +"Ca" = ( +/obj/structure/platform/ledge{ + dir = 4 + }, +/obj/structure/platform/ledge{ + dir = 1 + }, +/obj/structure/platform_deco/ledge{ + dir = 10 + }, +/turf/simulated/open, +/area/hallway/primary/central_two) +"Cb" = ( +/obj/effect/floor_decal/industrial/hatch_door/red{ + dir = 1 + }, +/obj/effect/map_effect/marker_helper/airlock/interior, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 5 + }, +/obj/machinery/door/airlock/external/blue{ + dir = 1 + }, +/obj/effect/map_effect/marker/airlock/shuttle/runtime, +/turf/simulated/floor/tiled/dark/full, +/area/shuttle/runtime) +"Ch" = ( +/obj/effect/floor_decal/corner/brown{ + dir = 6 + }, +/obj/effect/decal/curb/corner{ + dir = 8 + }, +/turf/simulated/floor/tiled/gridded, +/area/storage/supply) +"Cl" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, -/obj/effect/floor_decal/corner/dark_blue{ +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 1 + }, +/obj/effect/floor_decal/corner/black{ + dir = 6 + }, +/turf/simulated/floor/tiled/gridded, +/area/hallway/primary/central_one) +"Cm" = ( +/obj/structure/cable/yellow{ + icon_state = "1-4" + }, +/turf/simulated/floor/tiled/full, +/area/storage/supply) +"Cr" = ( +/obj/machinery/atmospherics/pipe/simple/visible/black{ dir = 5 }, -/obj/machinery/status_display{ - pixel_y = 32 +/turf/simulated/floor/tiled/gridded, +/area/construction/storage) +"Ct" = ( +/obj/effect/floor_decal/corner_wide/paleblue/full{ + dir = 1 }, -/turf/simulated/floor/tiled, +/obj/effect/floor_decal/industrial/warning{ + dir = 5 + }, +/obj/structure/table/steel, +/obj/item/storage/pill_bottle/mortaphenyl{ + pixel_x = 10; + pixel_y = 13 + }, +/obj/item/storage/pill_bottle/ryetalyn{ + pixel_x = 2; + pixel_y = 13 + }, +/obj/item/reagent_containers/inhaler/pneumalin{ + pixel_x = 9; + pixel_y = -1 + }, +/obj/item/reagent_containers/inhaler/pneumalin{ + pixel_x = 9; + pixel_y = -1 + }, +/obj/item/reagent_containers/inhaler/pneumalin{ + pixel_x = 9; + pixel_y = -1 + }, +/obj/item/reagent_containers/syringe/antiparasitic{ + pixel_y = -1 + }, +/obj/item/reagent_containers/syringe/antiparasitic, +/turf/simulated/floor/tiled/white, /area/hallway/primary/central_one) -"UP" = ( -/obj/effect/map_effect/window_spawner/full/reinforced, -/turf/simulated/floor/plating, -/area/storage/primary) -"UQ" = ( -/obj/machinery/telecomms/processor/preset_four, -/turf/simulated/floor/bluegrid{ - name = "cooled mainframe floor"; - temperature = 278 - }, -/area/tcommsat/chamber) -"UW" = ( -/obj/effect/map_effect/window_spawner/full/reinforced, +"Cu" = ( +/obj/effect/floor_decal/industrial/outline_straight/operations, /turf/simulated/floor/tiled/full, /area/hallway/primary/central_one) -"Vm" = ( -/turf/simulated/floor/shuttle, +"Cw" = ( +/obj/machinery/light/spot{ + dir = 8 + }, +/turf/unsimulated/floor/plating, +/area/hallway/primary/central_one) +"Cx" = ( +/obj/machinery/door/airlock/external/blue{ + dir = 4 + }, +/obj/effect/map_effect/marker_helper/airlock/exterior, +/obj/effect/map_effect/marker/airlock{ + master_tag = "runtime_airlock_1_1"; + name = "runtime_airlock_1_1" + }, +/obj/machinery/access_button{ + pixel_x = 9; + pixel_y = 33; + dir = 4 + }, +/obj/effect/floor_decal/industrial/hatch_door/red, +/turf/simulated/floor/tiled/dark/full, +/area/hallway/primary/central_two) +"Cz" = ( +/obj/effect/floor_decal/corner/mauve{ + dir = 10 + }, +/obj/effect/floor_decal/industrial/warning, +/obj/structure/reagent_dispensers/acid, +/turf/simulated/floor/tiled/white, +/area/hallway/primary/central_one) +"CB" = ( +/turf/simulated/floor/tiled/full, +/area/construction) +"CG" = ( +/obj/structure/lattice/catwalk/indoor, +/obj/structure/railing/mapped{ + dir = 4 + }, +/turf/simulated/open, +/area/hallway/primary/central_two) +"CH" = ( +/obj/structure/cable/yellow{ + icon_state = "1-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/obj/structure/lattice/catwalk/indoor/grate/gridded, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/turf/simulated/floor/plating, +/area/hallway/primary/central_one) +"CI" = ( +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 8 + }, +/obj/structure/curtain/open/bar, +/turf/simulated/floor/wood/walnut, +/area/hallway/primary/central_one) +"CL" = ( +/obj/structure/railing/mapped{ + dir = 1 + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/structure/cable/yellow{ + icon_state = "1-4" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 1 + }, +/obj/structure/lattice/catwalk/indoor, +/turf/simulated/open, +/area/hallway/primary/central_two) +"CT" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/dark/full, /area/shuttle/runtime) -"VV" = ( +"CX" = ( +/obj/structure/cable/yellow{ + icon_state = "2-4" + }, +/obj/machinery/atmospherics/pipe/simple/visible/red{ + dir = 9 + }, +/obj/structure/lattice/catwalk/indoor/grate, +/turf/simulated/floor/plating, +/area/construction/storage) +"CY" = ( +/obj/machinery/atmospherics/portables_connector, +/obj/effect/floor_decal/industrial/hatch_small/yellow, +/turf/simulated/floor/tiled/gridded, +/area/construction/storage) +"CZ" = ( +/obj/effect/floor_decal/industrial/hatch_tiny/yellow, +/obj/machinery/atmospherics/valve/digital/no_admin_message{ + dir = 4; + name = "Exterior Cooling Bypass" + }, +/turf/simulated/floor/plating, +/area/construction/storage) +"Da" = ( +/obj/structure/table/rack, +/obj/item/ammo_magazine/a10mm, +/obj/item/ammo_magazine/a10mm, +/obj/item/ammo_magazine/a10mm, +/obj/item/ammo_magazine/a762, +/obj/item/ammo_magazine/a762, +/obj/item/ammo_magazine/a762, +/obj/item/ammo_magazine/c762/sol, +/obj/item/ammo_magazine/c762/sol, +/obj/item/ammo_magazine/c762/sol, +/obj/effect/floor_decal/industrial/outline/grey, +/obj/structure/railing/mapped/no_density/low{ + dir = 4 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 8 + }, +/obj/item/storage/box/shells/beanbags, +/obj/item/storage/box/shells/beanbags, +/obj/item/storage/box/shells/buckshot, +/obj/item/storage/box/shells/buckshot, +/turf/simulated/floor/tiled/dark, +/area/hallway/primary/central_one) +"Db" = ( +/obj/effect/floor_decal/corner/brown/full{ + dir = 4 + }, +/turf/simulated/floor/tiled/gridded, +/area/storage/supply/package) +"Df" = ( +/obj/machinery/atmospherics/pipe/simple/visible/yellow{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/visible/black{ + dir = 1 + }, +/turf/simulated/floor/tiled/gridded, +/area/construction/storage) +"Di" = ( +/obj/machinery/button/remote/blast_door{ + desc = "A remote control-switch for the AI core maintenance door."; + id = "runtime_blastdoors"; + name = "Runtime Safety Blast Doors"; + pixel_y = 4; + dir = 4; + pixel_x = 24 + }, +/turf/simulated/floor/tiled/full, +/area/hallway/primary/central_two) +"Dl" = ( +/obj/machinery/power/apc/north, +/obj/structure/cable/yellow{ + icon_state = "0-8" + }, +/obj/machinery/atmospherics/pipe/simple/visible/yellow{ + dir = 6 + }, +/obj/item/storage/toolbox/mechanical{ + pixel_x = 8; + pixel_y = 11 + }, +/turf/simulated/floor/carpet/rubber, +/area/bridge) +"Do" = ( +/obj/effect/floor_decal/corner/grey/full, +/turf/simulated/floor/tiled/gridded, +/area/hallway/primary/central_two) +"Dp" = ( +/obj/structure/lattice/catwalk, +/obj/machinery/door/blast/regular{ + dir = 4; + id = "runtime_mixchamber_ext" + }, +/turf/simulated/floor/airless, +/area/construction/storage) +"Dt" = ( +/obj/machinery/atmospherics/binary/pump/high_power{ + name = "Carbondioxide to Canister" + }, +/obj/machinery/computer/general_air_control/large_tank_control/wall{ + input_tag = "co2_in"; + name = "Carbondioxide Tank Control"; + output_tag = "co2_out"; + sensors = list("co2_sensor"="Tank"); + pixel_x = -32 + }, +/turf/simulated/floor/tiled/full, +/area/construction/storage) +"Dv" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/structure/bed/handrail{ + dir = 4 + }, +/obj/machinery/embedded_controller/radio/airlock/docking_port{ + pixel_x = -24; + dir = 4; + pixel_y = 10 + }, +/obj/machinery/atmospherics/unary/vent_pump/high_volume, +/obj/structure/lattice/catwalk/indoor/grate/dark, +/obj/effect/map_effect/marker/airlock/shuttle/runtime, +/turf/simulated/floor/plating, +/area/shuttle/runtime) +"Dw" = ( +/turf/space/transit/north, +/area/space) +"Dy" = ( +/obj/effect/floor_decal/corner/dark_green{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden{ + dir = 4 + }, +/obj/effect/floor_decal/spline/plain/paleblue{ + dir = 8 + }, +/mob/living/bot/farmbot, +/turf/simulated/floor/tiled, +/area/hallway/primary/central_one) +"Dz" = ( +/obj/effect/decal/curb{ + dir = 5 + }, +/obj/effect/floor_decal/corner/brown/full, +/turf/simulated/floor/tiled/gridded, +/area/storage/supply) +"DA" = ( +/obj/structure/tank_wall/hydrogen{ + icon_state = "h15" + }, +/obj/effect/floor_decal/industrial/warning, +/turf/simulated/floor/airless, +/area/construction/storage) +"DG" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden{ + dir = 1 + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/full, +/area/hallway/primary/central_two) +"DK" = ( +/obj/machinery/power/terminal{ + dir = 8 + }, +/obj/structure/cable{ + icon_state = "0-4" + }, +/turf/simulated/floor/tiled/dark/full, +/area/hallway/primary/central_two) +"DP" = ( +/obj/effect/floor_decal/corner_wide/orange{ + dir = 9 + }, +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/effect/floor_decal/industrial/warning{ + dir = 8 + }, +/obj/machinery/chem_master, +/turf/simulated/floor/tiled/white, +/area/hallway/primary/central_one) +"DS" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 4 + }, +/obj/structure/tank_wall/nitrogen{ + icon_state = "n13" + }, +/turf/simulated/floor/plating, +/area/construction/storage) +"DW" = ( +/obj/effect/floor_decal/corner/grey{ + dir = 10 + }, +/obj/effect/floor_decal/industrial/warning, +/obj/machinery/alarm/south, +/turf/simulated/floor/tiled/gridded, +/area/hallway/primary/central_two) +"Eb" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 1 + }, +/obj/effect/floor_decal/corner/black{ + dir = 10 + }, +/turf/simulated/floor/tiled/gridded, +/area/hallway/primary/central_one) +"Ee" = ( +/obj/machinery/button/remote/blast_door{ + desc = "A remote control-switch for the AI core maintenance door."; + id = "runtime_blastdoors"; + name = "Runtime Safety Blast Doors"; + pixel_y = 4; + dir = 4; + pixel_x = 24 + }, +/turf/simulated/floor/tiled/full, +/area/hallway/primary/central_one) +"Eg" = ( +/obj/structure/table/rack/retail_shelf, +/obj/effect/floor_decal/industrial/outline/operations, +/obj/machinery/firealarm/north, +/turf/simulated/floor/tiled/full, +/area/storage/supply) +"Eh" = ( /obj/effect/floor_decal/industrial/warning{ dir = 1 }, +/obj/structure/tank_wall/nitrous_oxide{ + icon_state = "h3" + }, +/turf/simulated/floor/plating, +/area/construction/storage) +"En" = ( +/obj/effect/floor_decal/corner/yellow/full, +/obj/structure/table/rack, +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/effect/floor_decal/industrial/warning{ + dir = 10 + }, +/obj/item/stack/material/steel/full, +/obj/item/stack/material/steel/full, +/obj/item/stack/material/steel/full, +/turf/simulated/floor/tiled/gridded, +/area/hallway/primary/central_one) +"Es" = ( +/obj/effect/map_effect/window_spawner/full/reinforced/firedoor, +/turf/simulated/floor/tiled/full, +/area/bridge) +"Eu" = ( +/obj/effect/floor_decal/corner/mauve{ + dir = 5 + }, +/obj/machinery/computer/rdconsole/core, +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 1 + }, +/obj/machinery/light/floor{ + dir = 1 + }, +/turf/simulated/floor/tiled/white, +/area/hallway/primary/central_one) +"Ey" = ( +/obj/structure/lattice/catwalk, +/obj/machinery/atmospherics/pipe/simple/visible/black{ + dir = 9 + }, +/turf/space, +/area/exterior) +"EB" = ( +/obj/effect/floor_decal/corner/brown{ + dir = 10 + }, +/obj/machinery/conveyor_switch/oneway{ + id = "QMLoad"; + pixel_x = -13; + pixel_y = -5 + }, +/obj/effect/floor_decal/industrial/warning, +/turf/simulated/floor/tiled/gridded, +/area/hallway/primary/central_one) +"ED" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/universal, +/obj/machinery/power/apc/east, +/obj/structure/cable/yellow{ + icon_state = "0-8" + }, +/turf/simulated/floor/tiled/dark/full, +/area/shuttle/runtime) +"EF" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 10 + }, +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 4 + }, +/turf/simulated/floor/reinforced, +/area/hallway/primary/central_two) +"EH" = ( +/obj/machinery/alarm/south, +/obj/machinery/atmospherics/pipe/manifold/visible/yellow, +/turf/simulated/floor/carpet/rubber, +/area/bridge) +"EM" = ( +/obj/machinery/atmospherics/pipe/simple/visible/purple{ + dir = 10 + }, +/obj/machinery/camera/network/civilian_main{ + c_tag = "Atmospherics 1" + }, +/turf/simulated/floor/tiled/full, +/area/construction/storage) +"EN" = ( +/obj/effect/floor_decal/corner/yellow{ + dir = 4 + }, +/obj/machinery/atmospherics/portables_connector{ + dir = 1 + }, +/obj/effect/floor_decal/corner/dark_blue, +/obj/effect/floor_decal/industrial/outline/yellow, /obj/effect/floor_decal/industrial/loading/yellow{ dir = 1 }, -/turf/simulated/floor/tiled, +/turf/simulated/floor/tiled/gridded, /area/construction/storage) -"Wa" = ( -/obj/machinery/door/airlock{ +"EQ" = ( +/obj/structure/lattice/catwalk/indoor/grate, +/obj/machinery/camera/network/civilian_main{ + c_tag = "Upper Floor 3"; + dir = 8 + }, +/turf/simulated/floor/plating, +/area/hallway/primary/central_two) +"ET" = ( +/obj/effect/decal/curb, +/obj/effect/floor_decal/corner/brown{ + dir = 5 + }, +/turf/simulated/floor/tiled/gridded, +/area/storage/supply) +"EX" = ( +/obj/machinery/door/blast/regular/open{ + id = "runtime_mixchamber_int"; dir = 4 }, +/obj/effect/map_effect/window_spawner/full/borosilicate/reinforced, +/turf/simulated/floor/tiled/full, +/area/construction/storage) +"EY" = ( +/obj/machinery/hologram/holopad/long_range, +/obj/effect/overmap/visitable/ship/landable/runtime, +/turf/simulated/floor/tiled/dark/full, +/area/shuttle/runtime) +"Fb" = ( +/obj/machinery/meter, +/obj/machinery/atmospherics/pipe/manifold4w/visible/black, +/turf/simulated/floor/tiled/gridded, +/area/construction/storage) +"Fc" = ( +/obj/structure/tank_wall/carbon_dioxide{ + density = 0; + icon_state = "co2-5"; + opacity = 0 + }, +/turf/simulated/floor/reinforced/carbon_dioxide, +/area/construction/storage) +"Fk" = ( +/obj/machinery/atmospherics/pipe/simple/visible/blue, +/obj/machinery/meter, +/turf/simulated/floor/tiled/gridded, +/area/construction/storage) +"Fm" = ( +/obj/effect/map_effect/marker/airlock{ + master_tag = "runtime_airlock_1_1"; + name = "runtime_airlock_1_1" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden{ + dir = 4 + }, +/obj/structure/lattice/catwalk/indoor/grate/dark, +/turf/simulated/floor/plating, +/area/hallway/primary/central_two) +"Fn" = ( +/obj/structure/sink/kitchen{ + name = "surgical sink"; + pixel_x = -20; + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/hallway/primary/central_one) +"Fv" = ( +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 9 + }, /turf/simulated/floor/tiled, /area/hallway/primary/central_one) -"Wf" = ( -/obj/structure/table/rack, -/obj/item/stack/material/glass/full, -/obj/item/stack/material/aluminium/full, -/obj/item/stack/material/bronze/full, -/obj/item/stack/material/phoron/full, -/obj/item/stack/material/plastic/full, -/obj/item/stack/material/silver/full, -/obj/item/stack/material/steel/full, -/obj/item/stack/material/titanium/full, -/obj/structure/reagent_dispensers/acid{ - pixel_y = 24 - }, -/turf/simulated/floor/tiled, -/area/construction/storage) -"WH" = ( -/obj/effect/floor_decal/industrial/warning, -/obj/machinery/firealarm/north{ - pixel_y = -17 - }, -/turf/simulated/floor/tiled, -/area/construction) -"WM" = ( -/obj/structure/cable{ - d2 = 8; - icon_state = "0-8" - }, -/obj/machinery/power/terminal{ +"FA" = ( +/obj/effect/floor_decal/industrial/warning{ dir = 4 }, -/turf/simulated/floor/tiled{ - name = "cooled floor"; - temperature = 278 +/obj/machinery/atmospherics/pipe/simple/heat_exchanging{ + dir = 10 }, -/area/turret_protected/ai_upload_foyer) -"WN" = ( -/obj/machinery/alarm/cold/south, -/turf/simulated/floor/tiled{ - name = "cooled floor"; - temperature = 278 +/turf/simulated/floor/reinforced/airless, +/area/construction/storage) +"FF" = ( +/obj/machinery/air_sensor{ + frequency = 1443; + id_tag = "turbine_sensor"; + output = 31 }, +/obj/machinery/atmospherics/pipe/simple/heat_exchanging{ + dir = 4 + }, +/turf/simulated/floor/reinforced/airless, +/area/construction/storage) +"FK" = ( +/obj/effect/floor_decal/corner/brown/full, +/obj/structure/crate_shelf, +/turf/simulated/floor/tiled/gridded, +/area/storage/supply) +"FN" = ( +/obj/machinery/power/smes/buildable/third_party_shuttle, +/obj/structure/cable/yellow, +/turf/simulated/floor/tiled/dark/full, +/area/shuttle/runtime) +"FQ" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 1 + }, +/obj/effect/decal/curb, +/turf/simulated/floor/tiled/full, +/area/hallway/primary/central_one) +"FT" = ( +/obj/structure/tank_wall/nitrous_oxide{ + density = 0; + icon_state = "h6"; + opacity = 0 + }, +/turf/simulated/floor/reinforced/n20, +/area/construction/storage) +"FV" = ( +/turf/simulated/floor/reinforced/n20, +/area/construction/storage) +"FZ" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/lattice/catwalk/indoor/grate/gridded, +/turf/simulated/floor/plating, +/area/hallway/primary/central_one) +"Ga" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/structure/lattice/catwalk/indoor/grate/gridded, +/obj/machinery/atmospherics/pipe/simple/hidden/universal{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/hallway/primary/central_one) +"Ge" = ( +/obj/machinery/door/firedoor{ + dir = 4 + }, +/obj/effect/floor_decal/industrial/hatch_door/yellow, +/obj/machinery/door/airlock/glass{ + dir = 4 + }, +/turf/simulated/floor/tiled/full, +/area/storage/supply) +"Gf" = ( +/obj/machinery/door/firedoor{ + dir = 4 + }, +/obj/effect/floor_decal/industrial/hatch_door/yellow, +/turf/simulated/floor/tiled/full, +/area/storage/supply) +"Gg" = ( +/obj/effect/floor_decal/corner/yellow{ + dir = 8 + }, +/obj/effect/floor_decal/corner/dark_blue{ + dir = 1 + }, +/obj/machinery/atmospherics/binary/pump/high_power{ + name = "Canister to Hydrogen Storage" + }, +/turf/simulated/floor/tiled/gridded, +/area/construction/storage) +"Gh" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/visible/black{ + dir = 4 + }, +/obj/structure/tank_wall/carbon_dioxide{ + icon_state = "co2-7" + }, +/turf/simulated/floor/airless, +/area/construction/storage) +"Gj" = ( +/obj/structure/table/steel, +/obj/effect/floor_decal/industrial/outline/operations, +/turf/simulated/floor/tiled/full, +/area/storage/supply) +"Go" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 1 + }, +/obj/effect/decal/curb/corner, +/turf/simulated/floor/tiled/full, +/area/hallway/primary/central_one) +"Gq" = ( +/obj/structure/railing/mapped{ + dir = 4 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 6 + }, +/obj/structure/railing/mapped, +/obj/structure/lattice/catwalk/indoor/grate, +/turf/simulated/floor/plating, +/area/supply/dock) +"Gs" = ( +/obj/effect/floor_decal/corner/grey{ + dir = 5 + }, +/turf/simulated/floor/tiled/gridded, /area/turret_protected/ai) +"Gt" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/obj/effect/floor_decal/corner/black{ + dir = 6 + }, +/turf/simulated/floor/tiled/gridded, +/area/hallway/primary/central_one) +"Gv" = ( +/obj/structure/lattice, +/obj/machinery/atmospherics/pipe/simple/heat_exchanging{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/heat_exchanging{ + dir = 1 + }, +/turf/space, +/area/exterior) +"Gy" = ( +/obj/effect/floor_decal/industrial/hatch/yellow, +/turf/simulated/floor/reinforced, +/area/hallway/primary/central_two) +"Gz" = ( +/obj/effect/floor_decal/industrial/hatch_door/red{ + dir = 1 + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/effect/map_effect/marker_helper/airlock/exterior, +/obj/effect/map_effect/marker/airlock/docking/runtime/dock, +/obj/machinery/door/airlock/external/blue{ + dir = 1 + }, +/turf/simulated/floor/tiled/dark/full, +/area/hallway/primary/central_two) +"GC" = ( +/obj/effect/floor_decal/spline/plain/black{ + dir = 4 + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/gridded, +/area/shuttle/runtime) +"GD" = ( +/obj/structure/lattice/catwalk/indoor, +/obj/structure/railing/mapped{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/open, +/area/hallway/primary/central_two) +"GF" = ( +/obj/structure/platform/ledge, +/turf/simulated/open, +/area/hallway/primary/central_two) +"GH" = ( +/obj/machinery/atmospherics/unary/vent_pump/siphon/on/atmos{ + dir = 4; + id_tag = "h_out" + }, +/obj/structure/tank_wall/hydrogen{ + density = 0; + icon_state = "h6"; + opacity = 0 + }, +/turf/simulated/floor/reinforced/hydrogen, +/area/construction/storage) +"GN" = ( +/obj/effect/landmark/start{ + name = "AI" + }, +/obj/effect/floor_decal/industrial/warning/full, +/obj/item/radio/intercom/east, +/obj/structure/cable/yellow, +/turf/simulated/floor/tiled/techfloor, +/area/turret_protected/ai) +"GO" = ( +/obj/effect/floor_decal/corner/grey/full, +/turf/simulated/floor/tiled/gridded, +/area/turret_protected/ai) +"GR" = ( +/obj/effect/floor_decal/corner/brown/full{ + dir = 1 + }, +/obj/structure/crate_shelf, +/turf/simulated/floor/tiled/gridded, +/area/storage/supply) +"GV" = ( +/obj/effect/floor_decal/corner/purple/diagonal, +/obj/effect/floor_decal/industrial/outline/grey, +/obj/machinery/air_sensor{ + frequency = 1441; + id_tag = "ph_sensor" + }, +/obj/effect/decal/fake_object/light_source/invisible, +/turf/simulated/floor/reinforced/phoron, +/area/construction/storage) +"GY" = ( +/obj/machinery/light/small/emergency{ + dir = 4 + }, +/obj/structure/lattice/catwalk/indoor/grate/dark, +/obj/effect/map_effect/marker/airlock/docking/runtime/dock, +/turf/simulated/floor/plating, +/area/hallway/primary/central_two) +"Hb" = ( +/obj/structure/lattice/catwalk/indoor/grate, +/turf/simulated/floor/plating, +/area/construction/storage) +"Hf" = ( +/obj/effect/decal/curb, +/turf/simulated/floor/tiled/full, +/area/hallway/primary/central_one) +"Hi" = ( +/obj/machinery/door/blast/regular/open{ + id = "runtime_blastdoors"; + dir = 2 + }, +/obj/machinery/atmospherics/pipe/manifold/visible/black{ + dir = 1 + }, +/obj/effect/map_effect/window_spawner/full/reinforced/firedoor, +/turf/simulated/floor/tiled/full, +/area/construction/storage) +"Hj" = ( +/obj/effect/floor_decal/corner/dark_blue{ + dir = 1 + }, +/obj/effect/floor_decal/corner/yellow{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/visible/purple{ + dir = 8 + }, +/obj/effect/floor_decal/industrial/hatch_tiny/yellow, +/obj/machinery/atmospherics/binary/pump/high_power{ + name = "Phoron to Mix" + }, +/turf/simulated/floor/tiled/gridded, +/area/construction/storage) +"Hk" = ( +/obj/item/melee/baton/loaded, +/obj/structure/table/rack, +/obj/item/melee/baton/stunrod{ + pixel_x = -5; + pixel_y = 3 + }, +/obj/item/melee/telebaton{ + pixel_x = 5; + pixel_y = 2 + }, +/obj/item/material/twohanded/fireaxe, +/obj/effect/floor_decal/industrial/outline/grey, +/obj/structure/railing/mapped/no_density/low{ + dir = 8 + }, +/turf/unsimulated/floor/dark_monotile, +/area/hallway/primary/central_one) +"Hl" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/full, +/area/hallway/primary/central_one) +"Hm" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/obj/structure/tank_wall/carbon_dioxide, +/turf/simulated/floor/airless, +/area/construction/storage) +"Ho" = ( +/obj/effect/floor_decal/industrial/outline/service, +/obj/machinery/biogenerator, +/turf/simulated/floor/tiled/dark/full, +/area/hallway/primary/central_one) +"Hp" = ( +/obj/structure/closet/radiation, +/obj/effect/floor_decal/industrial/outline/yellow, +/turf/simulated/floor/tiled/full, +/area/hallway/primary/central_two) +"Hr" = ( +/obj/effect/floor_decal/corner/yellow{ + dir = 8 + }, +/obj/effect/floor_decal/corner/dark_blue{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/visible/black{ + dir = 1 + }, +/obj/effect/floor_decal/industrial/hatch_tiny/red, +/obj/machinery/atmospherics/binary/pump/high_power{ + name = "Mix to Carbondioxide Storage"; + dir = 8 + }, +/turf/simulated/floor/tiled/gridded, +/area/construction/storage) +"Hs" = ( +/obj/effect/floor_decal/corner/brown/full{ + dir = 8 + }, +/turf/simulated/floor/tiled/gridded, +/area/storage/supply/package) +"Hu" = ( +/obj/effect/floor_decal/industrial/outline/yellow, +/turf/simulated/floor/plating, +/area/supply/dock) +"HA" = ( +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/machinery/atmospherics/portables_connector{ + dir = 1 + }, +/obj/machinery/portable_atmospherics/canister/phoron, +/turf/simulated/floor/tiled/dark/full, +/area/shuttle/runtime) +"HB" = ( +/obj/effect/floor_decal/corner/brown{ + dir = 10 + }, +/obj/item/modular_computer/console/preset/supply{ + dir = 1 + }, +/obj/effect/floor_decal/industrial/outline/operations, +/obj/effect/floor_decal/industrial/warning, +/turf/simulated/floor/tiled/gridded, +/area/hallway/primary/central_one) +"HD" = ( +/obj/effect/step_trigger/teleporter, +/turf/space, +/area/space) +"HH" = ( +/obj/machinery/atmospherics/portables_connector{ + dir = 1 + }, +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/machinery/portable_atmospherics/canister/air/airlock, +/obj/machinery/camera/network/civilian_main{ + c_tag = "Upper Floor 5"; + dir = 1 + }, +/turf/simulated/floor/tiled/full, +/area/hallway/primary/central_two) +"HJ" = ( +/obj/effect/floor_decal/corner/yellow/full{ + dir = 4 + }, +/obj/structure/table/rack, +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/effect/floor_decal/industrial/warning{ + dir = 6 + }, +/obj/item/stack/material/plastic/full, +/obj/item/stack/material/plastic/full, +/obj/item/stack/material/plastic/full, +/obj/item/stack/material/wood/full, +/obj/item/stack/material/wood/full, +/obj/item/stack/material/wood/full, +/turf/simulated/floor/tiled/gridded, +/area/hallway/primary/central_one) +"HK" = ( +/obj/structure/railing/retractable, +/turf/simulated/floor/tiled/dark/full, +/area/hallway/primary/central_one) +"HM" = ( +/obj/effect/floor_decal/industrial/warning, +/obj/structure/tank_wall/carbon_dioxide{ + icon_state = "co2-15" + }, +/turf/simulated/floor/airless, +/area/construction/storage) +"HP" = ( +/obj/effect/floor_decal/corner/yellow{ + dir = 4 + }, +/obj/effect/floor_decal/corner/dark_blue{ + dir = 1 + }, +/obj/machinery/atmospherics/binary/pump/high_power{ + name = "Canister to Oxygen Storage"; + dir = 4 + }, +/turf/simulated/floor/tiled/gridded, +/area/construction/storage) +"HR" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 6 + }, +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 1 + }, +/turf/simulated/floor/reinforced, +/area/hallway/primary/central_two) +"HS" = ( +/obj/structure/platform/ledge, +/obj/structure/platform/ledge{ + dir = 4 + }, +/obj/structure/platform_deco/ledge{ + dir = 5 + }, +/turf/simulated/open, +/area/hallway/primary/central_two) +"HT" = ( +/obj/effect/decal/curb{ + dir = 1 + }, +/turf/simulated/floor/tiled/full, +/area/hallway/primary/central_one) +"HV" = ( +/obj/effect/decal/curb/corner{ + dir = 1 + }, +/obj/effect/floor_decal/corner/brown{ + dir = 1 + }, +/turf/simulated/floor/tiled/gridded, +/area/storage/supply) +"Ia" = ( +/obj/effect/floor_decal/corner/grey{ + dir = 5 + }, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/turf/simulated/floor/tiled/gridded, +/area/hallway/primary/central_two) +"Ic" = ( +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/machinery/recharge_station, +/turf/simulated/floor/tiled/techfloor, +/area/turret_protected/ai) +"Ig" = ( +/obj/structure/lattice/catwalk/indoor/grate, +/obj/structure/cable/yellow{ + icon_state = "2-4" + }, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/turf/simulated/floor/plating, +/area/hallway/primary/central_one) +"Ih" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/visible/black, +/obj/structure/tank_wall/carbon_dioxide{ + icon_state = "co2-13" + }, +/turf/simulated/floor/airless, +/area/construction/storage) +"Ii" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 4 + }, +/turf/simulated/floor/tiled/gridded, +/area/turret_protected/ai) +"Ij" = ( +/obj/effect/floor_decal/industrial/warning/corner, +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 8 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/turf/simulated/floor/reinforced, +/area/hallway/primary/central_two) +"Ik" = ( +/obj/effect/floor_decal/industrial/warning, +/obj/structure/tank_wall/carbon_dioxide{ + icon_state = "co2-16" + }, +/turf/simulated/floor/airless, +/area/construction/storage) +"Il" = ( +/obj/effect/floor_decal/corner/black{ + dir = 10 + }, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/universal{ + dir = 4 + }, +/turf/simulated/floor/tiled/gridded, +/area/hallway/primary/central_one) +"In" = ( +/obj/structure/table/reinforced/steel, +/obj/machinery/recharger{ + pixel_x = -10; + pixel_y = 8 + }, +/obj/machinery/recharger{ + pixel_y = 8 + }, +/obj/machinery/recharger{ + pixel_x = 10; + pixel_y = 8 + }, +/obj/machinery/recharger{ + pixel_x = -10; + pixel_y = -5 + }, +/obj/machinery/recharger{ + pixel_y = -5 + }, +/obj/machinery/recharger{ + pixel_x = -10; + pixel_y = -5 + }, +/obj/machinery/recharger{ + pixel_x = 10; + pixel_y = -5 + }, +/obj/effect/floor_decal/industrial/outline/grey, +/turf/unsimulated/floor/dark_monotile, +/area/hallway/primary/central_one) +"Iw" = ( +/obj/machinery/atmospherics/portables_connector{ + dir = 1 + }, +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/effect/floor_decal/industrial/loading/yellow, +/turf/simulated/floor/tiled/full, +/area/construction/storage) +"IA" = ( +/obj/machinery/atmospherics/portables_connector{ + dir = 8 + }, +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/effect/floor_decal/industrial/loading/yellow{ + dir = 4 + }, +/turf/simulated/floor/tiled/full, +/area/construction/storage) +"IB" = ( +/obj/effect/floor_decal/corner/brown/full{ + dir = 1 + }, +/obj/machinery/alarm/east, +/turf/simulated/floor/tiled/gridded, +/area/storage/supply/package) +"IC" = ( +/obj/machinery/atmospherics/pipe/simple/visible/black{ + dir = 10 + }, +/turf/simulated/floor/tiled/gridded, +/area/construction/storage) +"ID" = ( +/obj/machinery/airlock_sensor{ + pixel_x = -25; + pixel_y = -6; + dir = 4 + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/structure/bed/handrail{ + dir = 4 + }, +/obj/structure/lattice/catwalk/indoor/grate/dark, +/obj/effect/map_effect/marker/airlock/shuttle/runtime, +/turf/simulated/floor/plating, +/area/shuttle/runtime) +"II" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/obj/structure/lattice/catwalk/indoor, +/turf/simulated/open, +/area/hallway/primary/central_two) +"IJ" = ( +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/machinery/atmospherics/portables_connector{ + dir = 8 + }, +/obj/machinery/portable_atmospherics/canister/phoron, +/turf/simulated/floor/carpet/rubber, +/area/bridge) +"IM" = ( +/obj/machinery/atmospherics/unary/cryo_cell, +/obj/effect/floor_decal/corner_wide/paleblue{ + dir = 5 + }, +/obj/effect/floor_decal/industrial/outline/red, +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/turf/simulated/floor/tiled/white, +/area/hallway/primary/central_one) +"IN" = ( +/obj/effect/floor_decal/corner/grey{ + dir = 9 + }, +/obj/machinery/firealarm/east, +/turf/simulated/floor/tiled/gridded, +/area/turret_protected/ai) +"IO" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 4 + }, +/turf/unsimulated/floor/dark_monotile, +/area/hallway/primary/central_two) +"IP" = ( +/obj/effect/floor_decal/corner_wide/orange/full{ + dir = 8 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 9 + }, +/turf/simulated/floor/tiled/white, +/area/hallway/primary/central_one) +"Jc" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/full, +/area/construction) +"Jd" = ( +/obj/effect/floor_decal/spline/plain/black{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark/full, +/area/hallway/primary/central_one) +"Jf" = ( +/obj/structure/railing/mapped/no_density/low, +/turf/simulated/floor/tiled/full, +/area/hallway/primary/central_two) +"Jg" = ( +/turf/simulated/wall/r_wall, +/area/storage/supply) +"Jh" = ( +/obj/structure/tank_wall/oxygen{ + density = 0; + icon_state = "o2-11"; + opacity = 0 + }, +/obj/machinery/atmospherics/unary/vent_pump/siphon/on/atmos{ + id_tag = "o2_out" + }, +/turf/simulated/floor/reinforced/oxygen, +/area/construction/storage) +"Ji" = ( +/obj/effect/floor_decal/corner/dark_blue{ + dir = 6 + }, +/obj/effect/floor_decal/industrial/hatch_tiny/yellow, +/obj/machinery/atmospherics/binary/pump/high_power{ + name = "Auxiliary Thrust to Engines"; + dir = 8 + }, +/turf/simulated/floor/tiled/dark, +/area/bridge) +"Jo" = ( +/obj/structure/platform/ledge{ + dir = 1 + }, +/obj/structure/lattice, +/obj/structure/cable/yellow{ + icon_state = "11-2" + }, +/turf/simulated/open, +/area/hallway/primary/central_two) +"Jp" = ( +/obj/machinery/atmospherics/pipe/simple/visible{ + dir = 10 + }, +/turf/unsimulated/floor/dark_monotile, +/area/hallway/primary/central_two) +"Jq" = ( +/obj/structure/railing/mapped/no_density/low{ + dir = 4 + }, +/obj/effect/decal/curb{ + dir = 8 + }, +/turf/simulated/floor/tiled/full, +/area/hallway/primary/central_one) +"Ju" = ( +/obj/machinery/light/spot, +/turf/simulated/floor/tiled/full, +/area/hallway/primary/central_two) +"Jw" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 4 + }, +/turf/simulated/floor/tiled/full, +/area/hallway/primary/central_one) +"Jx" = ( +/obj/structure/tank_wall/hydrogen, +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/turf/simulated/floor/airless, +/area/construction/storage) +"Jz" = ( +/obj/effect/floor_decal/corner/grey{ + dir = 10 + }, +/obj/effect/floor_decal/industrial/warning, +/turf/simulated/floor/tiled/gridded, +/area/hallway/primary/central_one) +"JA" = ( +/turf/simulated/floor/tiled/full, +/area/construction/storage) +"JC" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 1 + }, +/obj/structure/lattice/catwalk/indoor/grate/gridded, +/turf/simulated/floor/plating, +/area/hallway/primary/central_one) +"JD" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 4 + }, +/obj/machinery/atmospherics/unary/outlet_injector{ + frequency = 1443; + id = "turbine_fuel_in"; + name = "fuel injector"; + tag = "turbine_fuel_in"; + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/heat_exchanging/junction{ + dir = 1 + }, +/turf/simulated/floor/reinforced/airless, +/area/construction/storage) +"JR" = ( +/obj/machinery/alarm/north, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled/gridded, +/area/hallway/primary/central_two) +"JS" = ( +/obj/effect/floor_decal/corner/brown/full{ + dir = 8 + }, +/obj/structure/crate_shelf, +/turf/simulated/floor/tiled/gridded, +/area/storage/supply) +"JT" = ( +/obj/effect/floor_decal/industrial/warning, +/obj/structure/tank_wall/nitrogen{ + icon_state = "n16" + }, +/turf/simulated/floor/plating, +/area/construction/storage) +"JV" = ( +/obj/effect/decal/curb{ + dir = 1 + }, +/obj/effect/floor_decal/corner/brown{ + dir = 10 + }, +/turf/simulated/floor/tiled/gridded, +/area/storage/supply) +"JX" = ( +/obj/effect/map_effect/window_spawner/full/reinforced/firedoor, +/obj/machinery/door/blast/regular/open{ + id = "runtime_blastdoors"; + dir = 4 + }, +/turf/simulated/floor/tiled/full, +/area/bridge) +"JZ" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 4 + }, +/obj/machinery/atmospherics/binary/passive_gate/on/output{ + name = "Air tank to supply"; + target_pressure = 200; + dir = 4 + }, +/turf/unsimulated/floor/dark_monotile, +/area/hallway/primary/central_two) +"Kd" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/structure/lattice/catwalk/indoor/grate/gridded, +/turf/simulated/floor/plating, +/area/hallway/primary/central_one) +"Ke" = ( +/obj/effect/floor_decal/industrial/hatch_tiny/yellow, +/obj/machinery/atmospherics/binary/pump/high_power{ + name = "Heat Exchangers to Canister"; + dir = 4 + }, +/turf/simulated/floor/tiled/gridded, +/area/construction/storage) +"Kg" = ( +/obj/effect/floor_decal/industrial/warning, +/obj/structure/lattice/catwalk/indoor/grate, +/turf/simulated/floor/plating, +/area/supply/dock) +"Ki" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 1 + }, +/turf/simulated/floor/tiled/gridded, +/area/turret_protected/ai) +"Kj" = ( +/obj/effect/floor_decal/industrial/warning/full, +/obj/machinery/shipsensors/strong{ + pixel_y = 4 + }, +/turf/simulated/floor/airless, +/area/bridge) +"Kn" = ( +/obj/machinery/atmospherics/pipe/simple/visible/cyan{ + dir = 6 + }, +/obj/machinery/camera/network/civilian_main{ + c_tag = "Atmospherics 2" + }, +/turf/simulated/floor/tiled/full, +/area/construction/storage) +"Kp" = ( +/obj/structure/lattice/catwalk/indoor/grate/dark, +/obj/structure/platform_deco{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/hallway/primary/central_one) +"Kw" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/embedded_controller/radio/airlock/docking_port{ + pixel_x = -24; + dir = 4; + pixel_y = 10 + }, +/obj/structure/lattice/catwalk/indoor/grate/dark, +/obj/effect/map_effect/marker/airlock/docking/runtime/dock, +/turf/simulated/floor/plating, +/area/hallway/primary/central_two) +"Ky" = ( +/obj/effect/landmark/entry_point/starboard, +/turf/simulated/wall/r_wall, +/area/hallway/primary/central_one) +"Kz" = ( +/obj/effect/decal/curb{ + dir = 8 + }, +/obj/effect/floor_decal/corner/black/full{ + dir = 4 + }, +/turf/simulated/floor/tiled/gridded, +/area/hallway/primary/central_one) +"KA" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 4 + }, +/obj/structure/tank_wall/nitrous_oxide{ + icon_state = "n2o9" + }, +/turf/simulated/floor/plating, +/area/construction/storage) +"KD" = ( +/obj/effect/floor_decal/corner/brown{ + dir = 5 + }, +/turf/simulated/floor/tiled/gridded, +/area/storage/supply/package) +"KF" = ( +/obj/structure/tank_wall/hydrogen{ + icon_state = "h14" + }, +/obj/effect/floor_decal/industrial/warning, +/turf/simulated/floor/airless, +/area/construction/storage) +"KH" = ( +/obj/effect/floor_decal/corner/dark_blue{ + dir = 1 + }, +/obj/effect/floor_decal/corner/yellow{ + dir = 4 + }, +/obj/machinery/atmospherics/portables_connector{ + dir = 8 + }, +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/effect/floor_decal/industrial/loading/yellow{ + dir = 8 + }, +/turf/simulated/floor/tiled/gridded, +/area/construction/storage) +"KI" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 8 + }, +/turf/simulated/floor/tiled/dark, +/area/hallway/primary/central_one) +"KR" = ( +/obj/structure/lattice/catwalk/indoor/grate, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/light/spot{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/construction) +"KT" = ( +/obj/structure/cable/yellow{ + icon_state = "2-4" + }, +/turf/simulated/floor/tiled/full, +/area/construction) +"KU" = ( +/obj/structure/railing/retractable{ + dir = 1 + }, +/turf/simulated/floor/tiled/dark/full, +/area/hallway/primary/central_one) +"KW" = ( +/obj/structure/table/rack{ + dir = 8 + }, +/obj/item/gun/custom_ka/frame03/prebuilt/shaft_miner, +/obj/effect/floor_decal/industrial/outline/operations, +/turf/simulated/floor/tiled/dark/full, +/area/hallway/primary/central_two) +"KY" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, +/obj/effect/decal/curb{ + dir = 4 + }, +/turf/simulated/floor/tiled/full, +/area/hallway/primary/central_one) +"La" = ( +/obj/effect/floor_decal/corner_wide/paleblue/full{ + dir = 8 + }, +/obj/structure/closet/crate/freezer{ + name = "Fridge" + }, +/obj/effect/floor_decal/industrial/outline/red, +/obj/effect/floor_decal/industrial/warning{ + dir = 9 + }, +/obj/item/reagent_containers/blood/OMinus, +/obj/item/reagent_containers/blood/OMinus, +/obj/item/reagent_containers/blood/OMinus, +/obj/item/reagent_containers/blood/OMinus, +/obj/item/reagent_containers/blood/OMinus, +/obj/item/reagent_containers/blood/OMinus, +/obj/item/reagent_containers/blood/OMinus, +/obj/item/storage/box/unique/monkeycubes, +/obj/item/storage/box/unique/monkeycubes, +/turf/simulated/floor/tiled/white, +/area/hallway/primary/central_one) +"Ld" = ( +/obj/effect/floor_decal/corner/brown{ + dir = 10 + }, +/turf/simulated/floor/tiled/gridded, +/area/storage/supply/package) +"Lg" = ( +/obj/effect/decal/curb{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/zpipe/up/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/zpipe/up/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled/full, +/area/hallway/primary/central_one) +"Ln" = ( +/obj/effect/floor_decal/corner_wide/paleblue{ + dir = 10 + }, +/obj/machinery/vending/medical{ + density = 0 + }, +/obj/effect/floor_decal/industrial/outline/red, +/obj/effect/floor_decal/industrial/warning, +/turf/simulated/floor/tiled/white, +/area/hallway/primary/central_one) +"Lu" = ( +/obj/effect/floor_decal/corner/mauve{ + dir = 5 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/obj/structure/table/steel, +/obj/item/reagent_containers/weldpack, +/obj/item/paint_sprayer, +/turf/simulated/floor/tiled/white, +/area/hallway/primary/central_one) +"LA" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 8 + }, +/obj/structure/tank_wall/carbon_dioxide{ + icon_state = "co2-4" + }, +/turf/simulated/floor/airless, +/area/construction/storage) +"LG" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/heat_exchanging, +/obj/machinery/atmospherics/pipe/simple/heat_exchanging/junction{ + dir = 8 + }, +/turf/simulated/floor/reinforced/airless, +/area/construction/storage) +"LJ" = ( +/obj/effect/floor_decal/industrial/outline/service, +/obj/machinery/honey_extractor{ + density = 1 + }, +/turf/simulated/floor/tiled/dark/full, +/area/hallway/primary/central_one) +"LL" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/obj/structure/tank_wall/phoron{ + icon_state = "ph2" + }, +/turf/simulated/floor/airless, +/area/construction/storage) +"LU" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/obj/structure/tank_wall/nitrous_oxide{ + icon_state = "n2o2" + }, +/turf/simulated/floor/plating, +/area/construction/storage) +"LY" = ( +/obj/effect/floor_decal/industrial/hatch_door/red{ + dir = 1 + }, +/obj/effect/map_effect/marker_helper/airlock/interior, +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 10 + }, +/obj/machinery/door/airlock/external/blue{ + dir = 1 + }, +/obj/effect/map_effect/marker/airlock/docking/runtime/dock, +/turf/simulated/floor/tiled/dark/full, +/area/hallway/primary/central_two) +"Ma" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 4 + }, +/obj/structure/tank_wall/oxygen{ + icon_state = "o2-9" + }, +/turf/simulated/floor/plating, +/area/construction/storage) +"Mc" = ( +/obj/effect/floor_decal/corner/grey, +/obj/machinery/camera/network/civilian_main{ + c_tag = "Upper Floor 2"; + dir = 1 + }, +/turf/simulated/floor/tiled/gridded, +/area/hallway/primary/central_two) +"Me" = ( +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/fuel{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark/full, +/area/shuttle/runtime) +"Mf" = ( +/obj/structure/railing/mapped/no_density/low{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/visible/green{ + dir = 1 + }, +/turf/simulated/floor/tiled/bitile{ + dir = 1 + }, +/area/construction/storage) +"Mh" = ( +/obj/machinery/atmospherics/pipe/manifold4w/visible/black, +/obj/machinery/meter, +/turf/simulated/floor/plating, +/area/construction/storage) +"Mi" = ( +/obj/effect/floor_decal/corner/grey{ + dir = 6 + }, +/obj/structure/railing/mapped/no_density/low{ + dir = 8 + }, +/turf/simulated/floor/tiled/gridded, +/area/hallway/primary/central_two) +"Mp" = ( +/obj/effect/floor_decal/industrial/warning, +/obj/machinery/atmospherics/pipe/simple/visible/purple{ + dir = 1 + }, +/obj/structure/tank_wall/phoron{ + icon_state = "ph14" + }, +/turf/simulated/floor/airless, +/area/construction/storage) +"Mu" = ( +/obj/structure/lattice, +/obj/machinery/atmospherics/pipe/simple/heat_exchanging{ + dir = 6 + }, +/turf/space, +/area/exterior) +"Mz" = ( +/obj/machinery/atmospherics/unary/vent_pump/on, +/obj/effect/decal/curb{ + dir = 1 + }, +/turf/simulated/floor/tiled/full, +/area/hallway/primary/central_one) +"MD" = ( +/obj/machinery/camera/network/civilian_main{ + c_tag = "Central 2"; + dir = 8 + }, +/turf/simulated/floor/tiled/full, +/area/hallway/primary/central_one) +"ME" = ( +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 6 + }, +/turf/simulated/wall/r_wall, +/area/hallway/primary/central_two) +"MF" = ( +/obj/machinery/atmospherics/pipe/simple/visible/yellow{ + dir = 4 + }, +/turf/simulated/floor/tiled/gridded, +/area/construction/storage) +"MG" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden, +/turf/simulated/floor/tiled, +/area/hallway/primary/central_one) +"MI" = ( +/obj/machinery/atmospherics/pipe/tank/phoron{ + dir = 4 + }, +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/machinery/camera/network/civilian_main{ + c_tag = "Flight Deck"; + dir = 4 + }, +/turf/simulated/floor/carpet/rubber, +/area/bridge) +"ML" = ( +/obj/structure/lattice/catwalk/indoor/grate, +/obj/effect/decal/curb{ + dir = 1 + }, +/turf/simulated/floor/plating, +/area/storage/supply) +"MQ" = ( +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 4 + }, +/obj/effect/map_effect/window_spawner/full/reinforced/firedoor, +/turf/simulated/floor/tiled/full, +/area/bridge) +"MR" = ( +/turf/simulated/wall/r_wall, +/area/turret_protected/ai) +"MW" = ( +/obj/structure/table/rack, +/obj/item/gun/projectile/automatic/rifle/l6_saw, +/obj/item/gun/projectile/automatic/rifle/sol, +/obj/item/gun/projectile/automatic/c20r/sol, +/obj/effect/floor_decal/industrial/outline/grey, +/obj/structure/railing/mapped/no_density/low{ + dir = 8 + }, +/obj/item/gun/projectile/shotgun/pump/combat, +/turf/unsimulated/floor/dark_monotile, +/area/hallway/primary/central_one) +"Nf" = ( +/obj/effect/decal/curb{ + dir = 4 + }, +/obj/effect/floor_decal/industrial/hatch_tiny/service, +/obj/machinery/atmospherics/binary/passive_gate/on{ + dir = 4; + name = "Distro to Trays" + }, +/turf/simulated/floor/tiled/full, +/area/hallway/primary/central_one) +"Ng" = ( +/obj/structure/platform/ledge{ + dir = 8 + }, +/obj/structure/lattice, +/turf/simulated/open, +/area/hallway/primary/central_two) +"Nh" = ( +/obj/effect/shuttle_landmark/supply/horizon/start{ + dir = 1 + }, +/turf/unsimulated/floor/plating, +/area/hallway/primary/central_one) +"Nj" = ( +/obj/effect/floor_decal/corner/mauve{ + dir = 5 + }, +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/obj/machinery/r_n_d/destructive_analyzer, +/turf/simulated/floor/tiled/white, +/area/hallway/primary/central_one) +"Nl" = ( +/obj/effect/floor_decal/corner/brown/full{ + dir = 4 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 6 + }, +/turf/simulated/floor/tiled/gridded, +/area/hallway/primary/central_one) +"Nu" = ( +/obj/effect/floor_decal/corner/grey/full{ + dir = 4 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 6 + }, +/turf/simulated/floor/tiled/gridded, +/area/hallway/primary/central_one) +"Nv" = ( +/obj/machinery/alarm/east, +/obj/effect/floor_decal/industrial/outline/operations, +/obj/structure/closet/crate, +/turf/simulated/floor/tiled/full, +/area/storage/supply) +"Ny" = ( +/obj/effect/floor_decal/corner_wide/paleblue{ + dir = 5 + }, +/obj/effect/floor_decal/industrial/outline/red, +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/obj/structure/table/steel, +/obj/item/storage/box/fancy/tray, +/turf/simulated/floor/tiled/white, +/area/hallway/primary/central_one) +"NB" = ( +/obj/machinery/meter, +/obj/machinery/atmospherics/pipe/manifold/visible/green{ + dir = 1 + }, +/turf/simulated/floor/tiled/full, +/area/construction/storage) +"NM" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/effect/floor_decal/corner/grey{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 1 + }, +/turf/simulated/floor/tiled/gridded, +/area/hallway/primary/central_two) +"NP" = ( +/obj/effect/floor_decal/corner/yellow{ + dir = 10 + }, +/obj/effect/floor_decal/industrial/warning, +/turf/simulated/floor/tiled/gridded, +/area/hallway/primary/central_one) +"NS" = ( +/obj/effect/floor_decal/spline/plain/corner/paleblue{ + dir = 4 + }, +/obj/structure/railing/mapped/no_density/low{ + dir = 8 + }, +/obj/machinery/seed_extractor, +/obj/effect/floor_decal/industrial/outline/service, +/turf/simulated/floor/tiled/dark/full, +/area/hallway/primary/central_one) +"NV" = ( +/obj/effect/floor_decal/corner/yellow{ + dir = 4 + }, +/obj/effect/floor_decal/corner/dark_blue, +/obj/machinery/atmospherics/binary/pump/high_power{ + name = "Canister to Nitrous Oxide Storage" + }, +/turf/simulated/floor/tiled/gridded, +/area/construction/storage) +"NX" = ( +/obj/effect/decal/exterior_stairs/half/center, +/turf/simulated/floor/tiled/bitile{ + dir = 1 + }, +/area/hallway/primary/central_one) +"Oe" = ( +/obj/machinery/camera/network/civilian_main{ + c_tag = "Central 1"; + dir = 4 + }, +/turf/simulated/floor/tiled/full, +/area/hallway/primary/central_one) +"Oh" = ( +/turf/simulated/wall/r_wall, +/area/storage/supply/package) +"Oi" = ( +/obj/structure/tank_wall/oxygen{ + density = 0; + icon_state = "o2-5"; + opacity = 0 + }, +/turf/simulated/floor/reinforced/oxygen, +/area/construction/storage) +"Om" = ( +/obj/structure/tank_wall/nitrogen{ + density = 0; + icon_state = "n11"; + opacity = 0 + }, +/obj/machinery/atmospherics/unary/vent_pump/siphon/on/atmos{ + dir = 8; + id_tag = "n_out" + }, +/turf/simulated/floor/reinforced/nitrogen, +/area/construction/storage) +"On" = ( +/obj/effect/floor_decal/industrial/warning, +/obj/structure/tank_wall/nitrous_oxide{ + icon_state = "h16" + }, +/turf/simulated/floor/plating, +/area/construction/storage) +"Op" = ( +/obj/effect/floor_decal/corner_wide/orange{ + dir = 9 + }, +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/effect/floor_decal/industrial/warning{ + dir = 8 + }, +/obj/structure/table/reinforced/steel, +/obj/machinery/reagentgrinder{ + pixel_y = 12 + }, +/obj/item/reagent_containers/dropper/electronic_pipette{ + pixel_x = -10; + pixel_y = 8 + }, +/obj/item/hand_labeler{ + pixel_y = -5; + pixel_x = -5 + }, +/obj/item/advanced_healthanalyzer{ + pixel_x = 7; + pixel_y = -7 + }, +/turf/simulated/floor/tiled/white, +/area/hallway/primary/central_one) +"Oq" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 1 + }, +/obj/structure/railing/mapped/no_density/low, +/obj/effect/decal/curb{ + dir = 1 + }, +/turf/simulated/floor/tiled/full, +/area/hallway/primary/central_one) +"Or" = ( +/obj/machinery/atmospherics/pipe/simple/visible{ + dir = 9 + }, +/turf/unsimulated/floor/dark_monotile, +/area/hallway/primary/central_two) +"Ou" = ( +/obj/effect/floor_decal/industrial/hatch_door/red{ + dir = 1 + }, +/obj/effect/map_effect/marker_helper/airlock/interior, +/obj/machinery/access_button{ + pixel_x = 30; + pixel_y = -2 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden{ + dir = 4 + }, +/obj/machinery/door/airlock/external/blue{ + dir = 1 + }, +/obj/effect/map_effect/marker/airlock/shuttle/runtime, +/turf/simulated/floor/tiled/dark/full, +/area/shuttle/runtime) +"Ov" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 8 + }, +/turf/simulated/floor/tiled/gridded, +/area/hallway/primary/central_two) +"Ox" = ( +/obj/machinery/alarm/east, +/turf/simulated/floor/tiled/full, +/area/hallway/primary/central_one) +"Oz" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold4w/visible/yellow, +/obj/machinery/meter, +/turf/unsimulated/floor/dark_monotile, +/area/construction/storage) +"OB" = ( +/obj/machinery/door/blast/regular/open{ + id = "runtime_blastdoors"; + dir = 2 + }, +/obj/machinery/atmospherics/pipe/simple/visible/black{ + dir = 5 + }, +/obj/effect/map_effect/window_spawner/full/reinforced/firedoor, +/turf/simulated/floor/tiled/full, +/area/construction/storage) +"OF" = ( +/obj/machinery/atmospherics/pipe/manifold/visible/yellow{ + dir = 8 + }, +/turf/simulated/floor/carpet/rubber, +/area/bridge) +"OM" = ( +/obj/effect/floor_decal/corner/dark_blue{ + dir = 1 + }, +/obj/effect/floor_decal/corner/yellow{ + dir = 4 + }, +/obj/machinery/atmospherics/binary/pump/high_power{ + name = "Canister to Phoron Storage"; + dir = 8 + }, +/turf/simulated/floor/tiled/gridded, +/area/construction/storage) +"OT" = ( +/obj/machinery/atmospherics/pipe/simple/visible/green{ + dir = 9 + }, +/obj/machinery/light/spot{ + dir = 4 + }, +/turf/simulated/floor/tiled/full, +/area/construction/storage) +"OY" = ( +/obj/effect/floor_decal/corner/red/diagonal, +/obj/effect/floor_decal/industrial/outline/grey, +/obj/machinery/air_sensor{ + frequency = 1441; + id_tag = "h_sensor" + }, +/obj/effect/decal/fake_object/light_source/invisible, +/turf/simulated/floor/reinforced/hydrogen, +/area/construction/storage) +"Pb" = ( +/turf/simulated/floor/reinforced/phoron, +/area/construction/storage) +"Pe" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/obj/structure/tank_wall/oxygen, +/turf/simulated/floor/plating, +/area/construction/storage) +"Ps" = ( +/obj/machinery/meter, +/obj/machinery/atmospherics/pipe/manifold/visible/black{ + dir = 1 + }, +/turf/simulated/floor/tiled/full, +/area/construction/storage) +"Pu" = ( +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/effect/floor_decal/industrial/loading/yellow{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/visible/black{ + dir = 1 + }, +/obj/machinery/atmospherics/portables_connector{ + dir = 4 + }, +/turf/simulated/floor/tiled/full, +/area/construction/storage) +"Px" = ( +/obj/machinery/conveyor_switch/oneway{ + pixel_y = 7; + id = "mining_1" + }, +/obj/effect/floor_decal/corner/grey{ + dir = 5 + }, +/obj/effect/floor_decal/industrial/hatch_tiny/yellow, +/turf/simulated/floor/tiled/gridded, +/area/hallway/primary/central_two) +"Pz" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/manifold/visible/red{ + dir = 1 + }, +/obj/structure/tank_wall/nitrous_oxide{ + icon_state = "h4" + }, +/turf/simulated/floor/plating, +/area/construction/storage) +"PB" = ( +/obj/structure/tank_wall/nitrous_oxide{ + density = 0; + icon_state = "h5"; + opacity = 0 + }, +/obj/machinery/atmospherics/unary/vent_pump/siphon/on/atmos{ + dir = 8; + id_tag = "n2o_out" + }, +/turf/simulated/floor/reinforced/n20, +/area/construction/storage) +"PG" = ( +/obj/machinery/conveyor{ + dir = 1; + id = "QMLoad" + }, +/obj/effect/floor_decal/industrial/hatch/operations, +/turf/simulated/floor/tiled/dark/full, +/area/hallway/primary/central_one) +"PM" = ( +/obj/machinery/portable_atmospherics/canister/empty, +/obj/machinery/atmospherics/portables_connector{ + dir = 8 + }, +/obj/effect/floor_decal/industrial/hatch_small/yellow, +/turf/simulated/floor/tiled/gridded, +/area/construction/storage) +"PP" = ( +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 1 + }, +/turf/simulated/floor/tiled/full, +/area/hallway/primary/central_two) +"PS" = ( +/obj/effect/floor_decal/spline/plain/black{ + dir = 8 + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/fuel{ + dir = 4 + }, +/turf/simulated/floor/tiled/gridded, +/area/shuttle/runtime) +"PV" = ( +/obj/effect/floor_decal/industrial/outline/operations, +/obj/structure/closet/secure_closet/miner, +/obj/structure/railing/mapped/no_density/low{ + dir = 8 + }, +/turf/simulated/floor/tiled/dark/full, +/area/hallway/primary/central_two) +"PX" = ( +/obj/effect/floor_decal/corner_wide/paleblue{ + dir = 10 + }, +/obj/effect/floor_decal/industrial/warning, +/turf/simulated/floor/tiled/white, +/area/hallway/primary/central_one) +"PZ" = ( +/obj/machinery/atmospherics/binary/pump/high_power{ + name = "Nitrogen to Canister" + }, +/obj/machinery/computer/general_air_control/large_tank_control/wall{ + input_tag = "n_in"; + name = "Nitrogen Tank Control"; + output_tag = "n_out"; + pixel_x = 32; + sensors = list("n_sensor"="Tank") + }, +/turf/simulated/floor/tiled/full, +/area/construction/storage) +"Qb" = ( +/obj/effect/floor_decal/corner/yellow{ + dir = 8 + }, +/obj/effect/floor_decal/corner/dark_blue, +/obj/machinery/atmospherics/binary/pump/high_power{ + name = "Fuel to Mixer"; + dir = 1 + }, +/turf/simulated/floor/tiled/gridded, +/area/construction/storage) +"Qc" = ( +/obj/machinery/camera/network/civilian_main{ + c_tag = "Elevator"; + dir = 4 + }, +/turf/unsimulated/floor/plating, +/area/hallway/primary/central_one) +"Qg" = ( +/obj/structure/table/steel, +/obj/item/storage/toolbox/electrical{ + pixel_y = 10; + pixel_x = -4 + }, +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/effect/floor_decal/industrial/warning, +/obj/item/storage/toolbox/mechanical{ + pixel_x = -4; + pixel_y = 4 + }, +/obj/item/mmi{ + pixel_x = -5 + }, +/obj/item/mmi{ + pixel_x = -5 + }, +/obj/item/ipc_tag_scanner{ + pixel_x = 6; + pixel_y = 10 + }, +/obj/item/robotanalyzer{ + pixel_x = 4; + pixel_y = -3 + }, +/turf/simulated/floor/tiled/white, +/area/hallway/primary/central_one) +"Qo" = ( +/obj/machinery/atmospherics/pipe/simple/visible/yellow{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/visible/green{ + dir = 1 + }, +/turf/simulated/floor/tiled/bitile{ + dir = 1 + }, +/area/construction/storage) +"Qq" = ( +/obj/effect/decal/curb/corner, +/obj/effect/floor_decal/corner/black{ + dir = 4 + }, +/turf/simulated/floor/tiled/gridded, +/area/hallway/primary/central_one) +"Qr" = ( +/obj/effect/floor_decal/industrial/hatch/yellow, +/obj/machinery/gravity_generator/main/station, +/turf/simulated/floor/reinforced, +/area/hallway/primary/central_two) +"Qs" = ( +/obj/machinery/atmospherics/unary/engine{ + dir = 1 + }, +/turf/simulated/floor/airless, +/area/hallway/primary/central_two) +"Qu" = ( +/obj/effect/decal/curb{ + dir = 4 + }, +/obj/effect/floor_decal/corner/black/full{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 1 + }, +/turf/simulated/floor/tiled/gridded, +/area/hallway/primary/central_one) +"Qx" = ( +/obj/effect/floor_decal/corner/brown/full{ + dir = 4 + }, +/obj/structure/crate_shelf, +/turf/simulated/floor/tiled/gridded, +/area/storage/supply) +"Qy" = ( +/obj/structure/railing/mapped{ + dir = 1 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 5 + }, +/obj/structure/railing/mapped{ + dir = 4 + }, +/obj/structure/lattice/catwalk/indoor/grate, +/turf/simulated/floor/plating, +/area/supply/dock) +"Qz" = ( +/obj/effect/floor_decal/industrial/warning, +/obj/structure/tank_wall/nitrous_oxide{ + icon_state = "h14" + }, +/turf/simulated/floor/plating, +/area/construction/storage) +"QG" = ( +/obj/effect/floor_decal/corner/yellow{ + dir = 6 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 4 + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/gridded, +/area/hallway/primary/central_one) +"QI" = ( +/obj/effect/floor_decal/industrial/warning, +/obj/machinery/atmospherics/pipe/simple/visible/purple{ + dir = 5 + }, +/obj/structure/tank_wall/phoron{ + icon_state = "ph15" + }, +/turf/simulated/floor/airless, +/area/construction/storage) +"QJ" = ( +/obj/structure/cable/yellow{ + icon_state = "2-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 1 + }, +/turf/simulated/floor/tiled/full, +/area/hallway/primary/central_two) +"QK" = ( +/obj/effect/floor_decal/corner/dark_green{ + dir = 6 + }, +/turf/simulated/floor/tiled, +/area/hallway/primary/central_one) +"QM" = ( +/obj/machinery/door/blast/regular/open{ + id = "runtime_mixchamber_int"; + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/visible/black{ + dir = 8 + }, +/obj/effect/map_effect/window_spawner/full/borosilicate/reinforced, +/turf/simulated/floor/tiled/full, +/area/construction/storage) +"QP" = ( +/obj/machinery/atmospherics/unary/vent_pump/siphon/on/atmos{ + id_tag = "ph_out" + }, +/turf/simulated/floor/reinforced/phoron, +/area/construction/storage) +"QS" = ( +/obj/structure/platform/ledge{ + dir = 8 + }, +/obj/structure/platform/ledge{ + dir = 1 + }, +/obj/structure/platform_deco/ledge{ + dir = 6 + }, +/turf/simulated/open, +/area/hallway/primary/central_two) +"QT" = ( +/obj/structure/lattice, +/turf/simulated/open, +/area/hallway/primary/central_two) +"QU" = ( +/obj/effect/floor_decal/industrial/outline/grey, +/obj/machinery/computer/ship/sensors/terminal, +/turf/simulated/floor/carpet/rubber, +/area/bridge) +"QW" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/visible/red{ + dir = 8 + }, +/obj/structure/tank_wall/nitrous_oxide{ + icon_state = "h10" + }, +/turf/simulated/floor/plating, +/area/construction/storage) +"QZ" = ( +/obj/structure/cable/yellow{ + icon_state = "2-4" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 1 + }, +/obj/structure/lattice/catwalk/indoor, +/obj/structure/railing/mapped{ + dir = 1 + }, +/turf/simulated/open, +/area/hallway/primary/central_two) +"Ra" = ( +/obj/structure/railing/mapped/no_density/low{ + dir = 1 + }, +/obj/effect/decal/curb, +/turf/simulated/floor/tiled/full, +/area/hallway/primary/central_one) +"Rd" = ( +/obj/structure/closet/crate, +/obj/effect/floor_decal/industrial/outline/operations, +/turf/simulated/floor/tiled/dark/full, +/area/storage/supply) +"Rf" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/obj/structure/tank_wall/phoron{ + icon_state = "ph3" + }, +/turf/simulated/floor/airless, +/area/construction/storage) +"Rh" = ( +/obj/structure/lattice/catwalk/indoor, +/obj/structure/railing/mapped{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/open, +/area/hallway/primary/central_two) +"Rl" = ( +/obj/item/modular_computer/console/preset/ai{ + dir = 1 + }, +/obj/effect/floor_decal/industrial/outline/yellow, +/turf/simulated/floor/tiled/techfloor, +/area/turret_protected/ai) +"Rm" = ( +/obj/machinery/light/spot, +/turf/simulated/floor/tiled/full, +/area/storage/supply) +"Ro" = ( +/obj/effect/floor_decal/corner/dark_green{ + dir = 9 + }, +/obj/effect/floor_decal/spline/plain/paleblue{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/hallway/primary/central_one) +"Rr" = ( +/obj/machinery/atmospherics/binary/pump/high_power{ + name = "Nitrous Oxide to Canister"; + dir = 1 + }, +/obj/machinery/computer/general_air_control/large_tank_control/wall{ + input_tag = "n2o_in"; + name = "Nitrous Oxide Tank Control"; + output_tag = "n2o_out"; + pixel_x = 32; + sensors = list("n2o_sensor"="Tank") + }, +/turf/simulated/floor/tiled/full, +/area/construction/storage) +"Rs" = ( +/obj/machinery/camera/network/civilian_main{ + c_tag = "Central 3" + }, +/turf/simulated/floor/tiled/full, +/area/hallway/primary/central_one) +"Rt" = ( +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/machinery/computer/telecomms/traffic{ + network = "tcommsat"; + dir = 1 + }, +/turf/simulated/floor/tiled/techfloor, +/area/turret_protected/ai) +"Ru" = ( +/obj/structure/tank_wall/oxygen{ + density = 0; + icon_state = "o2-6"; + opacity = 0 + }, +/turf/simulated/floor/reinforced/oxygen, +/area/construction/storage) +"Rv" = ( +/obj/effect/floor_decal/corner/grey{ + dir = 9 + }, +/turf/simulated/floor/tiled/gridded, +/area/turret_protected/ai) +"Rx" = ( +/obj/effect/floor_decal/corner/yellow{ + dir = 8 + }, +/obj/effect/floor_decal/corner/dark_blue{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/visible/red{ + dir = 1 + }, +/turf/simulated/floor/tiled/gridded, +/area/construction/storage) +"Ry" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/lattice/catwalk/indoor/grate, +/turf/simulated/floor/plating, +/area/hallway/primary/central_one) +"RF" = ( +/obj/machinery/atmospherics/pipe/manifold/visible/green{ + dir = 1 + }, +/turf/simulated/floor/reinforced/airless, +/area/construction/storage) +"RH" = ( +/obj/effect/floor_decal/corner/dark_blue/full{ + dir = 4 + }, +/obj/effect/floor_decal/corner/dark_blue{ + dir = 1 + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/bridge) +"RJ" = ( +/obj/effect/floor_decal/corner/brown{ + dir = 10 + }, +/turf/simulated/floor/tiled/gridded, +/area/storage/supply) +"RM" = ( +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/machinery/telecomms/server/presets/engineering, +/turf/simulated/floor/tiled/techfloor, +/area/turret_protected/ai) +"RO" = ( +/obj/structure/tank_wall/nitrogen{ + density = 0; + icon_state = "n5"; + opacity = 0 + }, +/obj/machinery/atmospherics/unary/outlet_injector{ + frequency = 1441; + id = "n_in"; + name = "nitrogen injector"; + use_power = 1; + dir = 8 + }, +/turf/simulated/floor/reinforced/nitrogen, +/area/construction/storage) +"RS" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/heat_exchanging{ + dir = 5 + }, +/obj/machinery/sparker{ + id = "turbine_igni"; + pixel_x = -15 + }, +/turf/simulated/floor/reinforced/airless, +/area/construction/storage) +"RU" = ( +/obj/machinery/atmospherics/portables_connector, +/obj/machinery/portable_atmospherics/canister/oxygen, +/obj/effect/floor_decal/corner_wide/paleblue/full{ + dir = 8 + }, +/obj/effect/floor_decal/industrial/outline/red, +/obj/effect/floor_decal/industrial/warning{ + dir = 9 + }, +/turf/simulated/floor/tiled/white, +/area/hallway/primary/central_one) +"RV" = ( +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/machinery/computer/robotics{ + dir = 8 + }, +/turf/simulated/floor/tiled/techfloor, +/area/turret_protected/ai) +"RX" = ( +/obj/effect/floor_decal/industrial/warning, +/obj/machinery/atmospherics/pipe/simple/visible/cyan{ + dir = 9 + }, +/obj/structure/tank_wall/oxygen{ + icon_state = "o2-15" + }, +/turf/simulated/floor/plating, +/area/construction/storage) +"RY" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/turf/simulated/floor/tiled/dark/full, +/area/storage/supply) +"Sc" = ( +/obj/effect/floor_decal/corner/yellow{ + dir = 8 + }, +/obj/effect/floor_decal/corner/dark_blue{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/visible/red{ + dir = 1 + }, +/obj/effect/floor_decal/industrial/hatch_tiny/yellow, +/obj/machinery/atmospherics/binary/pump/high_power{ + name = "Hydrogen to Mix"; + dir = 4 + }, +/turf/simulated/floor/tiled/gridded, +/area/construction/storage) +"Se" = ( +/obj/effect/decal/curb{ + dir = 4 + }, +/turf/simulated/floor/tiled/full, +/area/hallway/primary/central_one) +"Sf" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/full, +/area/hallway/primary/central_two) +"Sh" = ( +/obj/effect/decal/curb{ + dir = 8 + }, +/obj/effect/floor_decal/corner/black/full{ + dir = 1 + }, +/turf/simulated/floor/tiled/gridded, +/area/hallway/primary/central_one) +"Si" = ( +/obj/machinery/atmospherics/pipe/tank/air{ + dir = 4 + }, +/turf/unsimulated/floor/dark_monotile, +/area/hallway/primary/central_two) +"Sl" = ( +/obj/machinery/atmospherics/pipe/manifold/visible/yellow{ + dir = 4 + }, +/turf/simulated/floor/tiled/gridded, +/area/construction/storage) +"Sn" = ( +/obj/effect/floor_decal/industrial/hatch/yellow, +/obj/structure/table/reinforced/steel, +/turf/simulated/floor/tiled/dark/full, +/area/hallway/primary/central_one) +"Sr" = ( +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/machinery/telecomms/bus/preset_four, +/turf/simulated/floor/tiled/techfloor, +/area/turret_protected/ai) +"Ss" = ( +/obj/structure/railing/mapped{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/zpipe/down/supply, +/obj/machinery/atmospherics/pipe/zpipe/down/scrubbers, +/obj/structure/lattice/catwalk/indoor, +/turf/simulated/open, +/area/hallway/primary/central_two) +"Sw" = ( +/obj/effect/floor_decal/spline/plain/paleblue{ + dir = 1 + }, +/obj/machinery/atmospherics/unary/freezer, +/obj/random/pottedplant_small{ + pixel_x = -9; + pixel_y = 4 + }, +/turf/simulated/floor/tiled/dark/full, +/area/hallway/primary/central_one) +"Sy" = ( +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/machinery/pipedispenser, +/obj/item/analyzer{ + pixel_x = -6; + pixel_y = 11 + }, +/obj/machinery/atmospherics/pipe/simple/visible/green{ + dir = 1 + }, +/turf/unsimulated/floor/dark_monotile, +/area/construction/storage) +"SA" = ( +/obj/effect/floor_decal/corner/mauve{ + dir = 6 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/hallway/primary/central_one) +"SC" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/gridded, +/area/hallway/primary/central_one) +"SE" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/obj/structure/tank_wall/phoron, +/turf/simulated/floor/airless, +/area/construction/storage) +"SG" = ( +/obj/machinery/camera/network/command{ + c_tag = "AI Core 2" + }, +/turf/simulated/floor/tiled/gridded, +/area/turret_protected/ai) +"SP" = ( +/obj/machinery/body_scanconsole{ + dir = 8 + }, +/turf/simulated/floor/tiled/white, +/area/hallway/primary/central_one) +"SU" = ( +/obj/effect/floor_decal/corner/grey/full{ + dir = 8 + }, +/turf/simulated/floor/tiled/gridded, +/area/hallway/primary/central_two) +"SV" = ( +/obj/effect/landmark/entry_point/fore, +/turf/simulated/wall/r_wall, +/area/hallway/primary/central_one) +"SZ" = ( +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/machinery/computer/message_monitor{ + dir = 1 + }, +/obj/item/paper/monitorkey, +/turf/simulated/floor/tiled/techfloor, +/area/turret_protected/ai) +"Te" = ( +/obj/effect/floor_decal/corner_wide/orange/full{ + dir = 1 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 5 + }, +/turf/simulated/floor/tiled/white, +/area/hallway/primary/central_one) +"Tg" = ( +/obj/effect/decal/curb{ + dir = 9 + }, +/obj/effect/floor_decal/corner/brown/full{ + dir = 4 + }, +/turf/simulated/floor/tiled/gridded, +/area/storage/supply) +"Th" = ( +/obj/effect/floor_decal/corner/yellow/full, +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/effect/floor_decal/industrial/warning{ + dir = 10 + }, +/obj/machinery/vending/engivend, +/turf/simulated/floor/tiled/gridded, +/area/hallway/primary/central_one) +"Tj" = ( +/obj/structure/lattice, +/obj/machinery/atmospherics/pipe/simple/heat_exchanging{ + dir = 1 + }, +/turf/space, +/area/exterior) +"Tl" = ( +/obj/machinery/atmospherics/portables_connector{ + dir = 1 + }, +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/machinery/portable_atmospherics/canister/air/airlock, +/turf/simulated/floor/tiled/full, +/area/hallway/primary/central_two) +"Tn" = ( +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 4 + }, +/turf/simulated/wall/r_wall, +/area/hallway/primary/central_two) +"Ts" = ( +/obj/machinery/meter, +/obj/machinery/atmospherics/pipe/manifold4w/visible, +/turf/unsimulated/floor/dark_monotile, +/area/hallway/primary/central_two) +"Tu" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/structure/lattice/catwalk/indoor/grate, +/turf/simulated/floor/plating, +/area/hallway/primary/central_two) +"Tw" = ( +/obj/structure/tank_wall/hydrogen{ + icon_state = "h2" + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/turf/simulated/floor/airless, +/area/construction/storage) +"Tx" = ( +/obj/structure/tank_wall/phoron{ + density = 0; + icon_state = "ph12"; + opacity = 0 + }, +/obj/machinery/atmospherics/unary/vent_pump/siphon/on/atmos{ + id_tag = "ph_out" + }, +/turf/simulated/floor/reinforced/phoron, +/area/construction/storage) +"Ty" = ( +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/machinery/computer/borgupload{ + dir = 8 + }, +/turf/simulated/floor/tiled/techfloor, +/area/turret_protected/ai) +"Tz" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/effect/floor_decal/corner/grey{ + dir = 10 + }, +/turf/simulated/floor/tiled/techfloor, +/area/turret_protected/ai) +"TA" = ( +/obj/machinery/atmospherics/pipe/manifold/visible/cyan{ + dir = 4 + }, +/obj/machinery/meter, +/turf/simulated/floor/tiled/full, +/area/construction/storage) +"TC" = ( +/obj/machinery/atmospherics/binary/pump/high_power{ + name = "Phoron to Canister"; + dir = 4 + }, +/obj/machinery/computer/general_air_control/large_tank_control/wall{ + input_tag = "ph_in"; + name = "Phoron Tank Control"; + output_tag = "ph_out"; + sensors = list("ph_sensor"="Tank"); + pixel_y = 28 + }, +/turf/simulated/floor/tiled/full, +/area/construction/storage) +"TD" = ( +/obj/effect/floor_decal/corner/mauve/full{ + dir = 4 + }, +/obj/machinery/mech_recharger, +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/effect/floor_decal/industrial/warning{ + dir = 6 + }, +/turf/simulated/floor/tiled/white, +/area/hallway/primary/central_one) +"TG" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/obj/structure/lattice/catwalk/indoor/grate, +/turf/simulated/floor/plating, +/area/supply/dock) +"TH" = ( +/obj/structure/lattice/catwalk/indoor/grate, +/obj/machinery/light/spot{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/hallway/primary/central_two) +"TI" = ( +/obj/effect/landmark/entry_point/starboard, +/turf/simulated/wall/shuttle/space_ship/mercenary, +/area/shuttle/runtime) +"TK" = ( +/obj/machinery/atmospherics/omni/mixer{ + active_power_usage = 7500; + tag_north = 1; + tag_north_con = 0.4; + tag_south = 1; + tag_south_con = 0.6; + tag_west = 2 + }, +/obj/effect/floor_decal/industrial/outline/grey, +/turf/simulated/floor/tiled/gridded, +/area/construction/storage) +"TL" = ( +/obj/effect/floor_decal/corner_wide/paleblue/full{ + dir = 4 + }, +/obj/machinery/stasis_bed, +/obj/effect/floor_decal/industrial/outline/red, +/obj/effect/floor_decal/industrial/warning{ + dir = 6 + }, +/turf/simulated/floor/tiled/white, +/area/hallway/primary/central_one) +"TM" = ( +/obj/machinery/atmospherics/pipe/simple/heat_exchanging{ + dir = 9 + }, +/turf/space, +/area/exterior) +"TQ" = ( +/obj/effect/map_effect/marker/airlock{ + master_tag = "runtime_airlock_1_1"; + name = "runtime_airlock_1_1" + }, +/obj/machinery/atmospherics/unary/vent_pump/high_volume{ + dir = 1 + }, +/obj/structure/lattice/catwalk/indoor/grate/dark, +/turf/simulated/floor/plating, +/area/hallway/primary/central_two) +"TR" = ( +/turf/simulated/floor/tiled/gridded, +/area/hallway/primary/central_two) +"TT" = ( +/obj/machinery/alarm/north, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/full, +/area/construction) +"TW" = ( +/obj/structure/platform/ledge, +/obj/structure/lattice, +/turf/simulated/open, +/area/hallway/primary/central_two) +"TY" = ( +/obj/effect/floor_decal/spline/fancy/wood, +/obj/structure/flora/pottedplant/fern, +/turf/simulated/floor/wood/walnut, +/area/hallway/primary/central_one) +"TZ" = ( +/obj/effect/floor_decal/corner/grey/full{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "2-8" + }, +/turf/simulated/floor/tiled/gridded, +/area/hallway/primary/central_two) +"Uc" = ( +/obj/effect/floor_decal/industrial/outline/operations, +/obj/structure/table/rack/retail_shelf, +/turf/simulated/floor/tiled/full, +/area/storage/supply) +"Uf" = ( +/obj/machinery/camera/network/civilian_main{ + c_tag = "Upper Floor 1"; + dir = 4 + }, +/turf/simulated/floor/tiled/full, +/area/hallway/primary/central_two) +"Ug" = ( +/obj/structure/tank_wall/nitrogen{ + density = 0; + icon_state = "n12"; + opacity = 0 + }, +/turf/simulated/floor/reinforced/nitrogen, +/area/construction/storage) +"Uj" = ( +/obj/effect/floor_decal/corner/grey{ + dir = 5 + }, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 1 + }, +/turf/simulated/floor/tiled/gridded, +/area/hallway/primary/central_two) +"Uk" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/obj/machinery/light/floor{ + dir = 1 + }, +/obj/machinery/embedded_controller/radio/simple_docking_controller{ + frequency = 1380; + id_tag = "cargo_shuttle"; + name = "cargo elevator docking controller"; + req_one_access = list(13,31); + tag_door = "cargo_shuttle_airlock"; + pixel_y = -6 + }, +/turf/simulated/floor/tiled/full, +/area/supply/dock) +"Um" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/visible/yellow{ + dir = 5 + }, +/turf/unsimulated/floor/dark_monotile, +/area/construction/storage) +"Uo" = ( +/obj/item/grenade/chem_grenade, +/obj/item/grenade/chem_grenade, +/obj/item/grenade/chem_grenade, +/obj/item/grenade/chem_grenade, +/obj/item/assembly/igniter, +/obj/item/assembly/igniter, +/obj/item/assembly/igniter, +/obj/item/assembly/igniter, +/obj/item/assembly/timer, +/obj/item/assembly/timer, +/obj/item/assembly/timer, +/obj/item/assembly/timer, +/obj/structure/closet/crate/drop/grey{ + desc = "A large, sturdy crate, that stores grenade components."; + name = "grenade crate"; + pixel_y = -4; + tablestatus = -1 + }, +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/effect/floor_decal/industrial/warning{ + dir = 4 + }, +/obj/item/screwdriver, +/turf/simulated/floor/tiled/white, +/area/hallway/primary/central_one) +"Up" = ( +/obj/effect/floor_decal/corner/yellow{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/visible/red{ + dir = 1 + }, +/obj/effect/floor_decal/corner/dark_blue, +/obj/effect/floor_decal/industrial/hatch_tiny/yellow, +/obj/machinery/atmospherics/binary/pump/high_power{ + name = "Nitrous Oxide to Mix"; + dir = 8 + }, +/turf/simulated/floor/tiled/gridded, +/area/construction/storage) +"Us" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/visible/black{ + dir = 1 + }, +/obj/structure/tank_wall/oxygen{ + icon_state = "o2-10" + }, +/turf/simulated/floor/plating, +/area/construction/storage) +"Uw" = ( +/obj/effect/floor_decal/corner/grey/full{ + dir = 4 + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/structure/cable/yellow{ + icon_state = "1-4" + }, +/turf/simulated/floor/tiled/gridded, +/area/hallway/primary/central_two) +"Uy" = ( +/obj/effect/floor_decal/corner/brown{ + dir = 6 + }, +/obj/effect/decal/curb/corner, +/turf/simulated/floor/tiled/gridded, +/area/storage/supply) +"UB" = ( +/obj/machinery/light/spot{ + dir = 1 + }, +/obj/machinery/r_n_d/server/advanced/core, +/obj/effect/floor_decal/industrial/outline/yellow, +/turf/simulated/floor/tiled/gridded, +/area/turret_protected/ai) +"UC" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/obj/structure/tank_wall/nitrogen{ + icon_state = "n3" + }, +/turf/simulated/floor/plating, +/area/construction/storage) +"UE" = ( +/obj/effect/floor_decal/corner/grey, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/gridded, +/area/turret_protected/ai) +"UF" = ( +/obj/structure/lattice/catwalk/indoor/grate, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/hallway/primary/central_two) +"UH" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 9 + }, +/obj/effect/floor_decal/industrial/warning/corner, +/turf/simulated/floor/reinforced, +/area/hallway/primary/central_two) +"UI" = ( +/obj/structure/tank_wall/carbon_dioxide{ + density = 0; + icon_state = "co2-11"; + opacity = 0 + }, +/turf/simulated/floor/reinforced/carbon_dioxide, +/area/construction/storage) +"UO" = ( +/obj/machinery/light/floor{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/fuel{ + dir = 4 + }, +/obj/structure/fuel_port/phoron{ + pixel_y = 32 + }, +/turf/simulated/floor/tiled/dark/full, +/area/shuttle/runtime) +"UQ" = ( +/obj/structure/lattice/catwalk/indoor, +/turf/simulated/open, +/area/hallway/primary/central_two) +"US" = ( +/obj/effect/decal/exterior_stairs/half/center{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 1 + }, +/turf/simulated/floor/tiled/bitile{ + dir = 8 + }, +/area/hallway/primary/central_one) +"UW" = ( +/obj/machinery/atmospherics/pipe/manifold/visible/yellow{ + dir = 4 + }, +/obj/item/paper/fluff/runtime/dontforgetuseovermap, +/turf/simulated/floor/carpet/rubber, +/area/bridge) +"Va" = ( +/obj/effect/floor_decal/corner/yellow{ + dir = 8 + }, +/obj/effect/floor_decal/corner/dark_blue, +/turf/simulated/floor/tiled/gridded, +/area/construction/storage) +"Vd" = ( +/obj/effect/floor_decal/corner/grey{ + dir = 9 + }, +/turf/simulated/floor/tiled/gridded, +/area/hallway/primary/central_two) +"Vh" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 8 + }, +/obj/structure/tank_wall/phoron{ + icon_state = "ph10" + }, +/turf/simulated/floor/airless, +/area/construction/storage) +"Vm" = ( +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 10 + }, +/obj/structure/curtain/open/bar, +/turf/simulated/floor/wood/walnut, +/area/hallway/primary/central_one) +"Vn" = ( +/obj/machinery/light/spot{ + dir = 4 + }, +/turf/unsimulated/floor/plating, +/area/hallway/primary/central_one) +"Vp" = ( +/obj/effect/floor_decal/industrial/outline/service, +/obj/machinery/seed_storage/garden/hydroponics, +/turf/simulated/floor/tiled/dark/full, +/area/hallway/primary/central_one) +"Vv" = ( +/obj/structure/railing/mapped/no_density/low{ + dir = 4 + }, +/obj/effect/floor_decal/industrial/outline/grey, +/obj/machinery/computer/ship/engines/terminal{ + dir = 1 + }, +/turf/simulated/floor/carpet/rubber, +/area/shuttle/runtime) +"Vw" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 4 + }, +/obj/structure/tank_wall/nitrous_oxide{ + icon_state = "h13" + }, +/turf/simulated/floor/plating, +/area/construction/storage) +"Vy" = ( +/obj/effect/floor_decal/corner/grey{ + dir = 10 + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 1 + }, +/turf/simulated/floor/tiled/gridded, +/area/hallway/primary/central_two) +"VD" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 8 + }, +/obj/machinery/atmospherics/unary/vent_pump/siphon/on/atmos{ + id_tag = "turbine_hot_out"; + frequency = 1443; + use_power = 0; + dir = 4 + }, +/turf/simulated/floor/reinforced/airless, +/area/construction/storage) +"VN" = ( +/obj/structure/lattice/catwalk/indoor/grate, +/obj/machinery/camera/network/civilian_main{ + c_tag = "Construction Room"; + dir = 1 + }, +/turf/simulated/floor/plating, +/area/construction) +"VS" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/bitile/middle, +/area/hallway/primary/central_one) +"VU" = ( +/obj/effect/floor_decal/corner/grey/full{ + dir = 8 + }, +/obj/machinery/light/spot{ + dir = 1 + }, +/turf/simulated/floor/tiled/gridded, +/area/turret_protected/ai) +"VW" = ( +/obj/effect/floor_decal/corner/yellow{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/visible/cyan{ + dir = 4 + }, +/obj/effect/floor_decal/corner/dark_blue{ + dir = 1 + }, +/obj/effect/floor_decal/industrial/hatch_tiny/yellow, +/obj/machinery/atmospherics/binary/pump/high_power{ + name = "Oxygen tp Mix" + }, +/turf/simulated/floor/tiled/gridded, +/area/construction/storage) +"Wd" = ( +/obj/effect/map_effect/window_spawner/full/reinforced/firedoor, +/turf/simulated/floor/tiled/full, +/area/hallway/primary/central_two) +"We" = ( +/obj/effect/floor_decal/industrial/warning/full, +/obj/machinery/porta_turret, +/turf/simulated/floor/tiled/techfloor, +/area/turret_protected/ai) +"Wh" = ( +/obj/structure/closet/crate, +/obj/item/ore/aluminium, +/obj/item/ore/aluminium, +/obj/item/ore/coal, +/obj/item/ore/coal, +/obj/item/ore/diamond, +/obj/item/ore/diamond, +/obj/item/ore/glass, +/obj/item/ore/glass, +/obj/item/ore/gold, +/obj/item/ore/gold, +/obj/item/ore/hydrogen, +/obj/item/ore/hydrogen, +/obj/item/ore/iron, +/obj/item/ore/iron, +/obj/item/ore/lead, +/obj/item/ore/lead, +/obj/item/ore/osmium, +/obj/item/ore/osmium, +/obj/item/ore/phoron, +/obj/item/ore/phoron, +/obj/item/ore/silver, +/obj/item/ore/silver, +/obj/item/ore/slag, +/obj/item/ore/slag, +/obj/item/ore/uranium, +/obj/item/ore/uranium, +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/effect/floor_decal/industrial/loading/yellow{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/hallway/primary/central_two) +"Wx" = ( +/obj/structure/tank_wall/phoron{ + density = 0; + icon_state = "ph11"; + opacity = 0 + }, +/obj/machinery/atmospherics/unary/outlet_injector{ + frequency = 1441; + id = "ph_in"; + name = "phoron injector"; + use_power = 1 + }, +/turf/simulated/floor/reinforced/phoron, +/area/construction/storage) +"WA" = ( +/obj/machinery/atmospherics/pipe/manifold/visible/yellow, +/turf/simulated/floor/tiled/gridded, +/area/construction/storage) +"WE" = ( +/obj/effect/floor_decal/industrial/hatch_door/red{ + dir = 1 + }, +/obj/effect/map_effect/marker_helper/airlock/exterior, +/obj/machinery/access_button{ + pixel_x = 30; + pixel_y = -2 + }, +/obj/effect/map_effect/marker/airlock/docking/runtime/dock, +/obj/effect/shuttle_landmark/runtime/dock{ + dir = 1 + }, +/obj/machinery/door/airlock/external/blue{ + dir = 1 + }, +/turf/simulated/floor/tiled/dark/full, +/area/hallway/primary/central_two) +"WM" = ( +/obj/effect/floor_decal/spline/fancy/wood, +/turf/simulated/floor/wood/walnut, +/area/hallway/primary/central_one) +"WN" = ( +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 4 + }, +/turf/simulated/floor/wood/walnut, +/area/hallway/primary/central_one) +"WO" = ( +/obj/effect/floor_decal/corner/dark_blue, +/obj/effect/floor_decal/corner/yellow{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/visible/red{ + dir = 9 + }, +/turf/simulated/floor/tiled/gridded, +/area/construction/storage) "WP" = ( /turf/simulated/wall, /area/hallway/primary/central_one) "WS" = ( -/obj/turbolift_map_holder/runtime, -/turf/simulated/floor/plating, -/area/turbolift/main_station) -"WV" = ( -/obj/effect/landmark/start{ - name = "Xenobiologist" - }, -/turf/simulated/floor/plating, -/area/construction) -"Xj" = ( -/obj/random/pottedplant{ - desc = "I like moster truck"; - name = "walter" - }, -/obj/effect/decal/warning_stripes, -/turf/simulated/floor/tiled, -/area/construction/storage) -"XQ" = ( -/obj/effect/floor_decal/corner/dark_blue{ - dir = 1 - }, -/obj/effect/floor_decal/corner/white{ - dir = 8 - }, -/obj/machinery/firealarm/west, -/turf/simulated/floor/tiled, -/area/hallway/primary/central_two) -"Yc" = ( -/obj/effect/landmark{ - name = "carpspawn" - }, -/turf/template_noop, -/area/template_noop) -"Yi" = ( -/obj/effect/landmark/start{ - name = "Chief Medical Officer" - }, -/turf/simulated/floor/tiled, -/area/construction/storage) -"Yr" = ( -/obj/machinery/mineral/unloading_machine{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/construction/storage) -"YI" = ( -/obj/machinery/door/airlock/external/khaki{ - dir = 4 - }, -/obj/machinery/access_button{ - dir = 8; - pixel_x = -11; - pixel_y = -27 - }, -/obj/effect/map_effect/marker/airlock{ - master_tag = "runtime_airlock_1_1"; - name = "runtime_airlock_1_1" - }, -/obj/effect/map_effect/marker_helper/airlock/exterior, -/turf/simulated/floor/plating, -/area/maintenance/maintcentral) -"YP" = ( -/obj/effect/floor_decal/corner/dark_blue{ +/obj/effect/floor_decal/corner/grey{ dir = 10 }, -/obj/item/modular_computer/console/preset/command/captain, -/turf/simulated/floor/tiled, -/area/bridge) -"YR" = ( -/obj/machinery/atmospherics/unary/engine{ +/turf/simulated/floor/tiled/gridded, +/area/hallway/primary/central_two) +"WZ" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/effect/decal/curb{ dir = 1 }, +/turf/simulated/floor/tiled/full, +/area/hallway/primary/central_one) +"Xb" = ( +/obj/effect/floor_decal/industrial/hatch_tiny/yellow, +/obj/machinery/atmospherics/binary/pump/high_power{ + name = "Gas to Heat Exchangers"; + dir = 8 + }, +/turf/simulated/floor/tiled/gridded, +/area/construction/storage) +"Xe" = ( +/obj/effect/floor_decal/corner_wide/orange/full, +/obj/effect/floor_decal/industrial/warning{ + dir = 10 + }, +/obj/structure/reagent_dispensers/acid, +/turf/simulated/floor/tiled/white, +/area/hallway/primary/central_one) +"Xi" = ( +/obj/effect/floor_decal/corner/yellow{ + dir = 8 + }, +/obj/effect/floor_decal/corner/dark_blue{ + dir = 1 + }, +/obj/machinery/atmospherics/portables_connector{ + dir = 1 + }, +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/effect/floor_decal/industrial/loading/yellow{ + dir = 1 + }, +/turf/simulated/floor/tiled/gridded, +/area/construction/storage) +"Xo" = ( +/obj/effect/floor_decal/industrial/hatch_door/red{ + dir = 1 + }, +/obj/machinery/door/airlock/external/blue{ + dir = 1 + }, +/obj/effect/map_effect/marker_helper/airlock/exterior, +/obj/effect/map_effect/marker/airlock/shuttle/runtime, +/obj/effect/landmark/entry_point/aft, +/turf/simulated/floor/tiled/dark/full, +/area/shuttle/runtime) +"Xp" = ( +/obj/effect/floor_decal/corner/yellow{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/visible/green{ + dir = 1 + }, +/obj/effect/floor_decal/corner/dark_blue, +/obj/effect/floor_decal/industrial/hatch_tiny/yellow, +/obj/machinery/atmospherics/binary/pump/high_power{ + name = "Nitrogen to Mix"; + dir = 8 + }, +/turf/simulated/floor/tiled/gridded, +/area/construction/storage) +"Xt" = ( +/obj/machinery/atmospherics/pipe/simple/visible/red{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/visible/red{ + dir = 1 + }, +/turf/simulated/floor/tiled/full, +/area/construction/storage) +"Xx" = ( +/obj/structure/sign/radiation{ + pixel_y = 32 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 + }, +/turf/simulated/floor/tiled/full, +/area/hallway/primary/central_two) +"Xy" = ( +/obj/machinery/light/spot, +/turf/simulated/floor/tiled/gridded, +/area/hallway/primary/central_two) +"XD" = ( +/obj/machinery/conveyor{ + dir = 1; + id = "QMLoad" + }, +/obj/effect/floor_decal/industrial/hatch/operations, +/obj/structure/plasticflaps, +/obj/structure/railing/mapped{ + dir = 8 + }, +/turf/simulated/floor/tiled/dark/full, +/area/hallway/primary/central_one) +"XG" = ( +/obj/effect/floor_decal/corner/grey/full{ + dir = 1 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 5 + }, +/obj/structure/table/reinforced/steel, +/obj/structure/railing/mapped/no_density/low, +/obj/machinery/camera/network/civilian_main{ + c_tag = "Central 6"; + dir = 1 + }, +/turf/simulated/floor/tiled/gridded, +/area/hallway/primary/central_one) +"XH" = ( +/obj/effect/map_effect/window_spawner/full/shuttle/mercenary, +/obj/machinery/door/blast/regular/open{ + id = "runtime_shuttle_blastdoors"; + dir = 4 + }, +/obj/effect/landmark/entry_point/fore, +/turf/simulated/floor/tiled/dark/full, +/area/shuttle/runtime) +"XN" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, +/obj/structure/lattice/catwalk/indoor/grate/gridded, /turf/simulated/floor/plating, -/area/storage/primary) +/area/hallway/primary/central_one) +"XO" = ( +/obj/structure/railing/mapped/no_density/low, +/obj/machinery/atmospherics/pipe/simple/visible/green{ + dir = 1 + }, +/obj/machinery/atmospherics/portables_connector{ + dir = 4 + }, +/obj/effect/floor_decal/industrial/hatch_small/yellow, +/turf/simulated/floor/tiled/bitile, +/area/construction/storage) +"XP" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 8 + }, +/obj/structure/tank_wall/carbon_dioxide{ + icon_state = "co2-10" + }, +/turf/simulated/floor/airless, +/area/construction/storage) +"XR" = ( +/obj/effect/decal/curb, +/obj/effect/floor_decal/corner/black/full{ + dir = 1 + }, +/turf/simulated/floor/tiled/gridded, +/area/hallway/primary/central_one) +"XU" = ( +/obj/effect/floor_decal/industrial/outline/medical, +/obj/machinery/atmospherics/omni/filter{ + name = "nitrogen filter"; + tag_north = 1; + tag_south = 2; + tag_east = 4 + }, +/turf/simulated/floor/tiled/gridded, +/area/construction/storage) +"XX" = ( +/obj/effect/floor_decal/corner/mauve/full{ + dir = 4 + }, +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/effect/floor_decal/industrial/warning{ + dir = 6 + }, +/obj/machinery/vending/robotics, +/turf/simulated/floor/tiled/white, +/area/hallway/primary/central_one) +"Ya" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 4 + }, +/obj/structure/tank_wall/phoron{ + icon_state = "ph7" + }, +/turf/simulated/floor/airless, +/area/construction/storage) +"Yc" = ( +/obj/machinery/atmospherics/pipe/simple/heat_exchanging{ + dir = 10 + }, +/turf/space, +/area/exterior) +"Yd" = ( +/obj/effect/floor_decal/industrial/warning, +/obj/machinery/light/floor, +/turf/simulated/floor/tiled/full, +/area/supply/dock) +"Yi" = ( +/obj/machinery/alarm/north, +/turf/simulated/floor/tiled/gridded, +/area/hallway/primary/central_one) +"Yk" = ( +/obj/effect/floor_decal/corner/yellow{ + dir = 8 + }, +/obj/effect/floor_decal/corner/dark_blue, +/obj/machinery/atmospherics/binary/pump/high_power{ + name = "Oxidizer to Mixer"; + dir = 1 + }, +/turf/simulated/floor/tiled/gridded, +/area/construction/storage) +"Yl" = ( +/obj/effect/decal/curb{ + dir = 4 + }, +/obj/effect/floor_decal/corner/brown{ + dir = 9 + }, +/turf/simulated/floor/tiled/gridded, +/area/storage/supply) +"Yn" = ( +/obj/structure/railing/mapped/no_density/low{ + dir = 8 + }, +/turf/simulated/floor/tiled/gridded, +/area/storage/supply) +"Yq" = ( +/obj/effect/floor_decal/corner/yellow{ + dir = 8 + }, +/obj/effect/floor_decal/corner/dark_blue{ + dir = 1 + }, +/obj/effect/floor_decal/corner/yellow{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/visible/black{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/visible/purple{ + dir = 5 + }, +/turf/simulated/floor/tiled/gridded, +/area/construction/storage) +"Yr" = ( +/obj/machinery/atmospherics/pipe/simple/heat_exchanging{ + dir = 4 + }, +/turf/simulated/floor/reinforced/airless, +/area/construction/storage) +"YE" = ( +/turf/simulated/floor/tiled/gridded, +/area/construction/storage) +"YI" = ( +/obj/structure/railing/mapped/no_density/low{ + dir = 4 + }, +/obj/machinery/atmospherics/unary/engine, +/turf/simulated/floor/airless, +/area/shuttle/runtime) +"YL" = ( +/obj/effect/floor_decal/industrial/outline/grey, +/obj/machinery/computer/ship/helm/terminal{ + dir = 1 + }, +/turf/simulated/floor/carpet/rubber, +/area/shuttle/runtime) +"YN" = ( +/obj/structure/tank_wall/nitrogen{ + density = 0; + icon_state = "n6"; + opacity = 0 + }, +/turf/simulated/floor/reinforced/nitrogen, +/area/construction/storage) +"YO" = ( +/obj/item/hullbeacon/red, +/obj/effect/floor_decal/industrial/outline/operations, +/obj/structure/railing/mapped/no_density/low, +/obj/machinery/camera/network/civilian_main{ + c_tag = "Central 7"; + dir = 1 + }, +/turf/simulated/floor/tiled/full, +/area/hallway/primary/central_one) +"YP" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden, +/obj/effect/floor_decal/corner_wide/paleblue{ + dir = 10 + }, +/obj/effect/floor_decal/industrial/warning, +/turf/simulated/floor/tiled/white, +/area/hallway/primary/central_one) +"YR" = ( +/obj/effect/floor_decal/corner/grey/full{ + dir = 4 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 6 + }, +/turf/simulated/floor/tiled/dark, +/area/hallway/primary/central_one) "YX" = ( -/obj/effect/floor_decal/industrial/warning/corner, -/turf/simulated/floor/tiled, +/obj/effect/floor_decal/industrial/hatch_tiny/yellow, +/obj/machinery/atmospherics/binary/pump/high_power{ + dir = 1 + }, +/obj/machinery/alarm/east, +/turf/simulated/floor/tiled/dark/full, +/area/shuttle/runtime) +"YY" = ( +/obj/effect/floor_decal/corner/grey{ + dir = 4 + }, +/turf/simulated/floor/tiled/gridded, +/area/turret_protected/ai) +"Zi" = ( +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/machinery/telecomms/broadcaster/preset_right, +/turf/simulated/floor/tiled/techfloor, +/area/turret_protected/ai) +"Zm" = ( +/obj/machinery/power/apc/hyper/north, +/obj/structure/cable/yellow{ + icon_state = "0-8" + }, +/turf/simulated/floor/tiled/full, +/area/construction) +"Zn" = ( +/obj/machinery/atmospherics/pipe/simple/visible/black{ + dir = 9 + }, +/turf/simulated/wall/r_wall, /area/construction/storage) "Zp" = ( -/obj/machinery/suit_cycler/mining/prepared, -/turf/simulated/floor/plating, -/area/outpost/mining_main/eva) -"ZA" = ( -/obj/item/modular_computer/console/preset/ai, -/turf/simulated/floor/bluegrid{ - name = "cooled mainframe floor"; - temperature = 278 +/obj/machinery/atmospherics/pipe/simple/visible/green{ + dir = 1 }, -/area/turret_protected/ai) -"ZB" = ( -/obj/machinery/computer/telecomms/traffic{ - network = "tcommsat" +/obj/machinery/atmospherics/portables_connector{ + dir = 4 }, -/turf/simulated/floor/tiled{ - name = "cooled floor"; - temperature = 278 - }, -/area/tcommsat/computer) -"ZD" = ( -/obj/machinery/blackbox_recorder, -/turf/simulated/floor/tiled{ - name = "cooled floor"; - temperature = 278 - }, -/area/turret_protected/ai_upload_foyer) -"ZE" = ( -/obj/structure/lattice/catwalk, -/turf/template_noop, -/area/engineering) -"ZH" = ( -/obj/structure/fuel_port/phoron, -/turf/simulated/wall/r_wall, -/area/shuttle/runtime) -"ZJ" = ( -/obj/structure/closet/secure_closet/miner, -/turf/simulated/floor/plating, -/area/outpost/mining_main/eva) -"ZU" = ( -/obj/structure/table/standard, -/turf/simulated/floor/tiled, -/area/storage/primary) -"ZZ" = ( -/obj/structure/closet/crate, -/turf/simulated/floor/tiled, +/obj/effect/floor_decal/industrial/hatch_small/yellow, +/turf/simulated/floor/tiled/bitile/middle, /area/construction/storage) +"Zv" = ( +/obj/effect/decal/curb{ + dir = 1 + }, +/obj/effect/floor_decal/corner/black/full{ + dir = 4 + }, +/turf/simulated/floor/tiled/gridded, +/area/hallway/primary/central_one) +"Zx" = ( +/obj/effect/floor_decal/corner/grey{ + dir = 10 + }, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 4 + }, +/turf/simulated/floor/tiled/gridded, +/area/hallway/primary/central_two) +"Zz" = ( +/obj/effect/floor_decal/corner/lime/diagonal, +/obj/effect/floor_decal/industrial/outline/grey, +/obj/machinery/air_sensor{ + frequency = 1441; + id_tag = "n_sensor" + }, +/obj/effect/decal/fake_object/light_source/invisible, +/turf/simulated/floor/reinforced/nitrogen, +/area/construction/storage) +"ZG" = ( +/obj/structure/railing/mapped/no_density/low, +/obj/machinery/firealarm/north, +/turf/simulated/floor/tiled/full, +/area/hallway/primary/central_two) +"ZH" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/visible/black{ + dir = 10 + }, +/obj/structure/tank_wall/carbon_dioxide{ + icon_state = "co2-9" + }, +/turf/simulated/floor/airless, +/area/construction/storage) +"ZR" = ( +/obj/structure/railing/mapped/no_density/low{ + dir = 4 + }, +/turf/simulated/floor/tiled/gridded, +/area/storage/supply) +"ZV" = ( +/obj/effect/floor_decal/spline/plain/black{ + dir = 10 + }, +/obj/structure/bed/stool/chair/office/bridge, +/turf/simulated/floor/tiled/gridded, +/area/shuttle/runtime) (1,1,1) = {" fX @@ -4127,94 +9358,94 @@ fX fX fX fX +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa fX fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -cK -cK -cK -cK -cK -cK -cK -cK -cK -cK -cK -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa +HD +HD +HD +HD +HD +HD +HD +HD +HD +HD +HD +HD +HD +HD +HD +HD +HD +HD +HD +HD +HD +HD +HD +HD +HD +HD +HD +HD +HD +HD "} (2,1,1) = {" fX @@ -4384,94 +9615,94 @@ fX fX fX fX +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa fX fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -cK -de -de -de -de -de -de -de -de -de -cK -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa +HD +Dw +Dw +Dw +Dw +Dw +Dw +Dw +Dw +Dw +Dw +Dw +Dw +Dw +Dw +Dw +Dw +Dw +Dw +Dw +Dw +Dw +Dw +Dw +Dw +Dw +Dw +Dw +Dw +HD "} (3,1,1) = {" fX @@ -4641,94 +9872,94 @@ fX fX fX fX +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa fX fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -cK -de -Qe -Qe -Qe -Qe -Qe -Qe -de -de -cK -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa +HD +Dw +Dw +Dw +Dw +Dw +Dw +Dw +Dw +Dw +Dw +Dw +Dw +Dw +Dw +Dw +Dw +Dw +Dw +Dw +Dw +Dw +Dw +Dw +Dw +Dw +Dw +Dw +Dw +HD "} (4,1,1) = {" fX @@ -4898,94 +10129,94 @@ fX fX fX fX +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa fX fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -cK -de -qx -Vm -Vm -Vm -Vm -Qe -md -de -cK -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa +HD +Dw +Dw +Dw +Dw +Dw +Dw +Dw +Dw +Dw +Dw +Dw +Dw +Dw +Dw +Dw +Dw +Dw +Dw +Dw +Dw +Dw +Dw +Dw +Dw +Dw +Dw +Dw +Dw +HD "} (5,1,1) = {" fX @@ -5155,94 +10386,94 @@ fX fX fX fX +aa +aa +aa +aa +aa +aa +fu +LA +un +XP +fu +fu +qf +fu +fu +mp +rU +pp +fu +aa +bx +aT +bx +cQ +cQ +aT +aT +cQ +cQ +Ky +cQ +cQ +aT +cQ +cQ +bx +cQ +cQ +aT +cQ +cQ +bx +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa fX fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -Yc -cK -de -Qe -rm -Jx -wL -Vm -Qe -hf -de -cK -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa +HD +Dw +Dw +Dw +Dw +Dw +Dw +Dw +Dw +Dw +Dw +Dw +Dw +Dw +Dw +Dw +Dw +Dw +Dw +Dw +Dw +Dw +Dw +Dw +Dw +Dw +Dw +Dw +Dw +HD "} (6,1,1) = {" fX @@ -5412,94 +10643,94 @@ fX fX fX fX +aa +aa +aa +aa +aa +aa +Hm +Fc +BL +UI +hK +mb +mb +mb +Jx +qN +BM +sS +KF +fu +bx +ba +bx +bx +bx +ba +ba +bx +bx +bx +bx +ba +ba +ba +bx +bx +bx +ba +ba +ba +bx +bx +bx +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa fX fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -cK -de -qx -fq -yE -Tq -Vm -Qe -md -de -cK -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa +HD +Dw +Dw +Dw +Dw +Dw +Dw +Dw +Dw +Dw +Dw +Dw +Dw +Dw +Dw +Dw +Dw +Dw +Dw +Dw +Dw +Dw +Dw +Dw +Dw +Dw +Dw +Dw +Dw +HD "} (7,1,1) = {" fX @@ -5669,94 +10900,94 @@ fX fX fX fX +aa +aa +aa +aa +aa +aa +cj +BL +xP +BL +HM +mb +mb +mb +Tw +BM +OY +BM +DA +fu +dq +dq +ia +dq +dq +dq +dq +dq +oU +ia +Oe +dq +dq +dq +aD +ia +dq +dq +dq +dq +dq +bx +cQ +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa fX fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -cK -de -Qe -Qe -ZH -aE -cq -Qe -de -de -cK -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa +HD +Dw +Dw +Dw +Dw +Dw +Dw +Dw +Dw +Dw +Dw +Dw +Dw +Dw +Dw +Dw +Dw +Dw +Dw +Dw +Dw +Dw +Dw +Dw +Dw +Dw +Dw +Dw +Dw +HD "} (8,1,1) = {" fX @@ -5926,94 +11157,94 @@ fX fX fX fX +aa +aa +aa +aa +aa +aa +wn +ej +di +wa +Ik +mb +mb +mb +dk +GH +vI +kk +yE +fu +dq +RU +uA +dq +La +dy +ct +ao +Jw +IP +DP +wG +zP +zM +Op +Xe +dq +wL +CI +Vm +dq +af +aT +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa fX fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -cK -de -de -de -de -sx -de -de -de -de -cK -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa +HD +Dw +Dw +Dw +Dw +Dw +Dw +Dw +Dw +Dw +Dw +Dw +Dw +Dw +Dw +Dw +Dw +Dw +Dw +Dw +Dw +Dw +Dw +Dw +Dw +Dw +Dw +Dw +Dw +HD "} (9,1,1) = {" fX @@ -6183,42 +11414,49 @@ fX fX fX fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX +aa +aa +aa +aa +aa +fu +fu +Gh +ZH +Ih +fu +wD +wD +wD +fu +jk +gs +og +fu +fu +dq +wq +YP +dq +Ny +Fn +SP +PX +mt +uI +sH +sH +sH +sH +sH +jD +kX +tL +cC +TY +dq +af +aT aa aa aa @@ -6227,50 +11465,43 @@ aa aa aa aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -cK -cK -cK -cK -de -de -cK -cK -cK -cK -cK -ab -ab -ab -ab -ab -ab -ab -aa -aa -aa aa aa aa aa aa +fX +fX +HD +Dw +Dw +Dw +Dw +Dw +Dw +Dw +Dw +Dw +Dw +Dw +Dw +Dw +Dw +Dw +Dw +Dw +Dw +Dw +Dw +Dw +Dw +Dw +Dw +Dw +Dw +Dw +Dw +HD "} (10,1,1) = {" fX @@ -6440,94 +11671,94 @@ fX fX fX fX +aa +fu +qC +qO +Vh +fu +vC +Ps +fL +sM +Dt +Iw +JA +eR +qe +BW +wN +Xt +yK +fu +bI +IM +yT +kX +sJ +sH +sH +PX +mt +uI +aS +sH +sH +sH +sH +jD +kX +xB +dm +WM +dq +bx +bx +bx +ba +ba +ba +ba +bx +bx +bx +aa +aa +aa +aa +aa fX fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -aa -aa -aa -aa -aa -aa -aa -aa -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -cK -de -de -cK -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -aa -aa -aa -aa -aa -aa -aa -aa +HD +Dw +Dw +Dw +Dw +Dw +Dw +Dw +Dw +Dw +Dw +Dw +Dw +Dw +Dw +Dw +Dw +Dw +Dw +Dw +Dw +Dw +Dw +Dw +Dw +Dw +Dw +Dw +Dw +HD "} (11,1,1) = {" fX @@ -6697,94 +11928,94 @@ fX fX fX fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -aa -aa -aa -aa -aa -aa -aa -aa -ab aa +SE +gz +Pb +Wx +Mp +oT +Yq +Hr +zS +gg +Xi +hl +xr +Gg +Sc +Rx +vj +lK +ox +dq +mh +PX +dq +pD +dj +sH +Ln +qL +Te +cW +Uo ac -ac -ac -ac -ac -ac -ac -ac -ac -ac +hi +bv bU -bU -bU -bU -bU -ac -ac -ac -ac -cK -de -de -cK -ac -ac -ac -ac -ac -ac -ac -ac -ac -aa -ab -aa -aa -aa +dq +iR +WN +bM +dq +ia +Bx +oU +dq +dq +dq +dq +ia +Bx +bx aa aa aa aa aa +fX +fX +HD +Dw +Dw +Dw +Dw +Dw +Dw +Dw +Dw +Dw +Dw +Dw +Dw +Dw +Dw +Dw +Dw +Dw +Dw +Dw +Dw +Dw +Dw +Dw +Dw +Dw +Dw +Dw +Dw +HD "} (12,1,1) = {" fX @@ -6954,94 +12185,94 @@ fX fX fX fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX aa -aa -aa -aa -aa -aa -aa -aa -ab -aa -ac -ae -ae -ae -ae -ae -ae -ae -ae -bw -HJ -Go -Go -Go -Go -ob +LL +Pb +GV +QP +QI +EM +ja +gE +Sl +kZ +kZ +kZ +kZ +kZ +Sl +lp +WO +lK +ox +dq +Ct +sf +dq +ch +po +po +TL +zx +ff +ff +ff +Jq +ff +Lg +uE Go +dL +dq +YO +WP +pX pX -HB fm fm -gv -de -ae -ae -ae -ae -ae -ae -ae -ae -ac -aa -ab -aa -aa -aa +fm +fm +fm +fm +pX +bx aa aa aa aa aa +fX +fX +HD +Dw +Dw +Dw +Dw +Dw +Dw +Dw +Dw +Dw +Dw +Dw +Dw +Dw +Dw +Dw +Dw +Dw +Dw +Dw +Dw +Dw +Dw +Dw +Dw +Dw +Dw +Dw +Dw +HD "} (13,1,1) = {" fX @@ -7211,94 +12442,94 @@ fX fX fX fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX aa -aa -aa -aa -aa -aa -aa -aa -ab -aa -Eu -ae -af -af -af -af -af -af -af -bx -ie +Rf +xF +Pb +Tx +my +qR +Hj +WA +YE +YE +YE +YE +YE +YE +YE +YE +kf +lK +ox +dq +dq +av +bi +dq +kX +kX +dq +cl +aF +JC +Eb +pl +bX +lL +oy +Hf +bl bV -bV -bV -bV -bx -cK -cK +Cu +nP +ds Bd -cK -de -yk -cK -cK -cK -cK -cK -cK -cK -cK -ae -ac -aa -ab -aa -aa -aa +is +is +is +is +is +is +KU +af aa aa aa aa aa +fX +fX +HD +Dw +Dw +Dw +Dw +Dw +Dw +Dw +Dw +Dw +Dw +Dw +Dw +Dw +Dw +Dw +Dw +Dw +Dw +Dw +Dw +Dw +Dw +Dw +Dw +Dw +Dw +Dw +Dw +HD "} (14,1,1) = {" fX @@ -7468,94 +12699,94 @@ fX fX fX fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX aa -aa -aa -aa -aa -aa -aa -aa -ab -aa -ac +fu +Ya +tr +os +fu +TC +OM +zj +zb +je +sG +of +XU +tM +Cr +YE +kf +gb +fu +zZ +dg +dx +ay +uQ +ae ae -af aj -au -aI -aV -bg +HT +zr +io +Kz bp -by -bW -bK -bK -bK -bK +Sh +Qq +zr +Hf +cx bK +eW cL cT HK -TP -di is -cS -di -di -di -di -dd -dw -cK -ae -ac -aa -ab +is +is +is +is +is +KU +af aa aa aa aa aa -Yc -aa -aa +fX +fX +HD +Dw +Dw +Dw +Dw +Dw +Dw +Dw +Dw +Dw +Dw +Dw +Dw +Dw +Dw +Dw +Dw +Dw +Dw +Dw +Dw +Dw +Dw +Dw +Dw +Dw +Dw +Dw +Dw +HD "} (15,1,1) = {" fX @@ -7725,94 +12956,94 @@ fX fX fX fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX aa -aa -aa -aa -aa -aa -aa -aa -ab -aa -ac -ae -af -ak -av -pd -aW +Dp +lI +RS +VD +EX +IA +KH +MF +tC +sB +sE +hy +zX +rF +PM +YE +kf +lK +rP +dq +cH +cq +ay +Nj +sH +sH +Qg +Mz +Gt +Zv bh -bq +bA bz -bX -bJ -bJ -bz -bJ +XR +Cl +wQ +cx bJ +vl cM cU -de -oo -de -SP -de -de -de -Oe -de -dv -dx -cK -ae -ac -aa -ab -aa -aa -aa +jd +is +is +is +is +is +is +KU +af aa aa aa aa aa +fX +fX +HD +Dw +Dw +Dw +Dw +Dw +zp +Dw +Dw +Dw +Dw +Dw +Dw +Dw +Dw +Dw +Dw +Dw +Dw +Dw +Dw +Dw +Dw +Dw +Dw +Dw +Dw +Dw +Dw +HD "} (16,1,1) = {" fX @@ -7982,94 +13213,94 @@ fX fX fX fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -aa -aa -aa -aa -aa -aa -aa -aa -ab aa +tt +Yr +FF +RF +hd +uD +jL +Qo +Zp +XO +Sy +im +tu +Mf +et +hm +Hb +wy +rP +kX +ce +cq +sU Eu -ae -af +mo +mo ak -aw +Oq aJ aX -bi -af bA -bY -bB -bB +bP +bA +NX +ap +Ra cx -bB -bB +HB +aG cN -cV -de -de -de -pT -de -de -de -KU -de -de -dx -cK -ae -ac -aa -ab -aa -aa -aa +aH +at +is +is +is +is +is +is +oG +SV aa aa aa aa aa +fX +fX +HD +Dw +Dw +Dw +Dw +Dw +Dw +Dw +Dw +Dw +Dw +Dw +Dw +Dw +Dw +Dw +Dw +Dw +Dw +Dw +Dw +Dw +Dw +Dw +Dw +Dw +Dw +Dw +Dw +HD "} (17,1,1) = {" fX @@ -8239,94 +13470,94 @@ fX fX fX fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -aa -aa -aa -aa -aa -aa -aa aa +Dp +FA +LG +JD +QM +Pu +yw +Df +Fb +mZ +ws +ws +ws +jj +ji +hP +Qb +CX +xu +yr +Lu +Cz +qL +mg +sH +sH +bq ab -aa -ac -ae -af -ak -aw -aK -aY +id +cn bj -af -bB -bY -bB +bA bB +lc +fF +FQ cx -bB -bB -cN +Bv +PG +XD cV -de -de -de -yk -dq -dq -de -de -de -de -dx -cK -ae -ac -aa -ab -aa -aa -aa +lJ +is +is +is +is +is +is +KU +af aa aa aa aa aa +fX +fX +HD +Dw +Dw +Dw +Dw +Dw +Dw +Dw +Dw +Dw +Dw +Dw +Dw +Dw +Dw +Dw +Dw +Dw +Dw +Dw +Dw +Dw +Dw +Dw +Dw +Dw +Dw +Dw +Dw +HD "} (18,1,1) = {" fX @@ -8496,94 +13727,94 @@ fX fX fX fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX aa -aa -aa -aa -aa -aa -aa -aa -ab -aa -ac -ae -af -ak -ax -Kz -aL -bk -af -bC -bY -ck -bB +fu +td +Ar +Us +Zn +lx +HP +MF +Ke +Xb +IC +dE +ku +pV +TK +Fk +Yk +pS +fu +su +cZ +TD +qL +ca +SA +SA +XX +HT +FZ +sL +qh +US +Qu +uz +XN +Hf cx -bB +EB eI cK -cV -de -de -de -yk -dq -dq -xP -de -de -de -du -cK -ae -ac -aa -ab -aa -aa -aa +Kp +HK +is +is +is +is +is +is +KU +af aa aa aa aa aa +fX +fX +HD +Dw +Dw +Dw +Dw +Dw +Dw +Dw +Dw +Dw +Dw +Dw +Dw +Dw +Dw +Dw +Dw +Dw +Dw +Dw +Dw +Dw +Dw +Dw +Dw +Dw +Dw +Dw +Dw +HD "} (19,1,1) = {" fX @@ -8753,94 +13984,94 @@ fX fX fX fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX aa -aa -aa -aa -aa -aa -aa -aa -ab -aa -ac -ac -af -af -af -af -af -af -br -br -bZ -br -br +Pe +Oi +eX +Jh +ha +TA +VW +WA +lD +lD +YE +zw +YE +CY +gE +ec +Va +fT +ox +uo +Hl +fW +cP +Hl +Ig +cE +Hl +WZ +fe +Ga +Il +yD +sz +Kd +CH +vi cy -bB -bB +Nl +Cu cO -cV -de +ds +HK +is +is +is +is +is +is +KU +af +aa +aa +aa +aa +aa +fX +fX +HD +Dw +Dw +Dw +Dw +Dw +Dw +Dw +Dw +Dw +Dw +Dw +Dw +Dw +Dw +Dw +Dw +Dw +Dw +Dw +Dw +Dw +Dw +Dw +Dw +Dw +Dw +Dw +Dw HD -de -yk -dq -dq -MW -de -if -de -dC -cK -ae -ac -aa -ab -aa -aa -aa -aa -aa -aa -aa -aa "} (20,1,1) = {" fX @@ -9010,94 +14241,94 @@ fX fX fX fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX aa -aa -aa -aa -aa -aa -aa -aa -ab -aa -ad -ab -ab -ab +nd +eX +pq +ut +RX +Kn +At +gE +pL +kZ +kZ +gE +kZ +kZ +gE +aE +pY +fT +ox +dq +As +En +dq +bx +AS +yh +Th yC -ab -ab -ab -br -bD -ca -cl +KY +Nf +uG +Ao +Se +Se +vu cr cz -bB -bB -cO -tl -pM -db -de -yk dq -dq -Cu +ob +WP Jd -GH -dV -iD -cK -ae -ac -aa -ab -aa -aa -aa +Jd +yk +yk +yk +yk +yk +yk +Jd +bx aa aa aa aa aa +fX +fX +HD +Dw +Dw +Dw +Dw +Dw +Dw +Dw +Dw +Dw +Dw +Dw +Dw +Dw +Dw +Dw +Dw +Dw +Dw +Dw +Dw +Dw +Dw +Dw +Dw +Dw +Dw +Dw +Dw +HD "} (21,1,1) = {" fX @@ -9267,94 +14498,94 @@ fX fX fX fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX aa -aa -aa -aa -aa -aa -aa -aa -ab -aa -ad -ab -ag +kw +Ru +eX +lZ +ga +km +qv +jP +Xp +qA +EN +mq +sZ +NV +Up +tT +qV +fT +ox +dq +dz +NP +dq +bx +Yi +SC al ay -aM -aZ -ab -bs -bE -cb -wk -bs +Ba +AM +mM +Ro +iG +jF +Ho +su cA -bB -bB -cO -cV +dl +vH +dq +ra de -KR -de -yk +dq +MD +dq +dq dq dq -nQ de -rE -WV -Kj -cK -ae -ac -cP -cP -cP -cP -aa +bx aa aa aa aa aa +fX +fX +HD +Dw +Dw +Dw +Dw +Dw +Dw +Dw +Dw +Dw +Dw +Dw +Dw +Dw +Dw +Dw +Dw +Dw +Dw +Dw +Dw +Dw +Dw +Dw +Dw +Dw +Dw +Dw +Dw +HD "} (22,1,1) = {" fX @@ -9524,94 +14755,94 @@ fX fX fX fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX aa -aa -aa -aa -aa -aa -aa -aa -ab -aa -ad -ab +fu +uN +Ma +Bj +fu +JA +NB +OT +NB +PZ +Iw +la +vt +Rr +BW +hZ +Br +aC +fu +ie +js +cv +dq +hI ag +SC am -az -aN -aZ -ab -bs -In -pv -mn -br -cA -bB +Ry +yJ +ip +ip +ip +Sw +MG +LJ +jY +md +ag zQ -cK -WH -de -iq -de -yk dq -dq -de -de -de -de -dz -cK -ae -ac -dc -TD -uA -cP -aa -aa -aa -aa -aa +Jg +Jg +xk +xk +Gf +Gf +xk +xk +Jg +Jg +Oh +Oh +Oh +Oh aa +fX +fX +HD +Dw +Dw +Dw +Dw +Dw +Dw +Dw +Dw +Dw +Dw +Dw +Dw +Dw +Dw +Dw +Dw +Dw +Dw +Dw +Dw +Dw +Dw +Dw +Dw +Dw +Dw +Dw +Dw +HD "} (23,1,1) = {" fX @@ -9781,94 +15012,94 @@ fX fX fX fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX aa aa aa aa aa -aa -aa -aa -ab -ab +fu +fu +hL +or +gj +fu +wj +Oz +Um +fu +Pz +uk +QW +fu +fu +dq +dz +NP +dq ad -ab -ab -ab -aA -ab -ab -ab -bs -bF -tT -cm -cs -cA +ag +SC +qk +Ry +yJ +uR +uR +uR +ju +Fv +Vp +jY +eY qa -bB -cN -cV -de -Sj -de -SA -Gp -de -de -eq -Hg -kV -ds -cK -ae -ac -TD -xv -uA -cP -aa -aa -aa -aa -aa +Jz +dq +Jg +Uc +rH +rH +kH +ML +zE +zE +zE +zE +pZ +Hs +uq +Oh aa +fX +fX +HD +Dw +Dw +Dw +Dw +Dw +Dw +Dw +Dw +Dw +Dw +Dw +Dw +Dw +Dw +Dw +Dw +Dw +Dw +Dw +Dw +Dw +Dw +Dw +Dw +Dw +Dw +Dw +Dw +HD "} (24,1,1) = {" fX @@ -10038,94 +15269,94 @@ fX fX fX fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX aa aa aa aa aa -Yc aa -aa -ab -aa -ad -aa -aa -ab +iq +RO +uy +Om +jC +go +CZ +lN +rM +PB +BH +kY +Qz +fu +dq +be +HJ +dq +bT +dh +QG +Aw vm -ZE -ZE -ab -bs -bG -cb -RL -br -JC -bB -bB -cN -cV -de -Ex -de -hI -de -de -de -TW -pD -de -dk -cK -ae -ac -xb -Ro -uA -cP -aa -aa -aa -aa -aa +gY +xV +Dy +rk +NS +QK +iv +su +XG +bx +Nu +dq +xk +Gj +zR +Yl +nb +kU +Yl +Yl +Dz +zE +pZ +KD +Ld +Oh aa +fX +fX +HD +Dw +Dw +Dw +Dw +Dw +Dw +Dw +Dw +Dw +Dw +Dw +Dw +Dw +Dw +Dw +Dw +Dw +Dw +Dw +Dw +Dw +Dw +Dw +Dw +Dw +Dw +Dw +Dw +HD "} (25,1,1) = {" fX @@ -10295,94 +15526,94 @@ fX fX fX fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX aa aa aa aa aa aa -aa -aa -ab -aa -ad -aa -aa -ah -dl -ah -ZE -ab -bs -bH -cb -YP -bs +np +mP +Zz +mP +gd +vS +Mh +zY +LU +FV +mF +FV +wV +fu +dq +dq ra -bB -bB -cK -cW -df -KM -dj -em -jD -dj -dj -iA -dj -df -dy -cK -ae -ac -xb -cP -cP -cP -aa -aa -aa -aa -aa +dq +dq +dq +su +ra +dq +dq +dq +dq +kX +dq +dq +dq +su +ra +dq +dq +dq +xk +Gj +ET +lM +ZR +ZR +lM +lM +JV +zE +pZ +KD +Ld +Oh aa +fX +fX +HD +Dw +Dw +Dw +Dw +Dw +Dw +Dw +Dw +Dw +Dw +Dw +Dw +Dw +Dw +Dw +Dw +Dw +Dw +Dw +Dw +Dw +Dw +Dw +Dw +Dw +Dw +Dw +Dw +HD "} (26,1,1) = {" fX @@ -10552,94 +15783,94 @@ fX fX fX fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -aa -aa -aa -aa -aa -aa -aa -aa -ab -aa -ad -aa -aa -ah -kM -ah -ES -ab -br -bI -cc -cn -br -UF -bB -zP -cP -cP -cP -UP -UP -cP -kt -dr -cP -UP -UP -cP -cP -cP -ae -ac -nB -TD -YR aa aa aa aa aa aa +UC +YN +mP +Ug +JT +qf +Hi +OB +Eh +FT +FV +wW +On +fu +bx +ba +ba +bx +fG +vw +re +fG +Rs +aM +ey +Da +KI +bE +cb +wk +su +bx +lk +lk +bx +Jg +iS +ET +lM +Rd +Rd +lM +lM +JV +zE +pZ +IB +Db +Oh aa +fX +fX +HD +Dw +Dw +Dw +Dw +Dw +Dw +Dw +Dw +Dw +Dw +Dw +Dw +Dw +Dw +Dw +Dw +Dw +Dw +Dw +Dw +Dw +Dw +Dw +Dw +Dw +Dw +Dw +Dw +HD "} (27,1,1) = {" fX @@ -10809,94 +16040,94 @@ fX fX fX fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX aa aa aa aa aa aa -aa -aa -ab -aa -ac -ac -ah -ah -dl -ah -ah -ah -br -br -cd -co -co -cB -bK -bK +fu +hk +qD +DS +fu +iM +fS +Ey +fu +rV +KA +Vw +fu +fu cQ -cX -dg -da -da -iN -yq -da -da -HV -da -dg -da -cP +aT +aT +cQ +fG +CB dc -dc -Ro -QV -cP -aa -aa -aa -aa -aa -aa +fG +dq +aO +aZ +MW +bc +In +Hk +cp +su +bx +bx +bx +bx +Eg +Ag +ET +lM +Rd +Rd +lM +lM +JV +Rm +Jg +Jg +Jg +Jg aa +fX +fX +HD +Dw +Dw +Dw +Dw +Dw +Dw +Dw +Dw +Dw +Dw +Dw +Dw +Dw +Dw +Dw +Dw +Dw +Dw +Dw +Dw +Dw +Dw +Dw +Dw +Dw +Dw +Dw +Dw +HD "} (28,1,1) = {" fX @@ -11066,42 +16297,6 @@ fX fX fX fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX aa aa aa @@ -11110,50 +16305,86 @@ aa aa aa aa -ab aa -ac -ME -ah -an -aC +aT +cQ +Yc +sr +lW +ir +fG +fG +fG +fG +fG +fG +ax +ax +fG +fG +CB +dc +fG +dq aO -ba -bl -bt -FZ -ce +bc +bF +bF +bF +bc cp -bJ -cC -bJ -bJ -cR -cY -dm -cZ -dm -da -dm -da -tr -dm -Sz -dm -Gb -cP -ae -ac -IY -Ro -YR -aa -aa -aa -aa -aa -aa +su +dq +dq +dq +fc +zE +zR +HV +lM +Rd +Rd +lM +lM +JV +zE +gf +JS +FK +Jg aa +fX +fX +HD +Dw +Dw +Dw +Dw +Dw +Dw +Dw +Dw +Dw +Dw +Dw +Dw +Dw +Dw +Dw +Dw +Dw +Dw +Dw +Dw +Dw +Dw +Dw +Dw +Dw +Dw +Dw +Dw +HD "} (29,1,1) = {" fX @@ -11323,42 +16554,6 @@ fX fX fX fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX aa aa aa @@ -11367,50 +16562,86 @@ aa aa aa aa -ab aa -ac -vl -ah -ao -aD -aP -bb -bb -bu -bK -cf -WP -Wa +aT +Mu +Tj +Gv +Tj +jp +fG +KT +Jc +Jc +Jc +Jc +KR +Jc +Jc +Jc +Jc +gP +fG +dq +aO +bc +bL +bs +bG +bc +cp +uo +wl +VS +dQ +zz +Cm +ET +lM +lM +Yn +Yn +lM +lM +JV zE -WP -bB -cP -da -cZ -dc -cZ -da -cZ -sf -da -Fw -da -dm -Cd -cP -ae -ac -cP -cP -cP -aa -aa -aa -aa -aa -aa +RY +vD +RJ +Jg aa +fX +fX +HD +Dw +Dw +Dw +Dw +Dw +Dw +Dw +Dw +Dw +Dw +Dw +Dw +Dw +Dw +Dw +Dw +Dw +Dw +Dw +Dw +Dw +Dw +Dw +Dw +Dw +Dw +Dw +Dw +HD "} (30,1,1) = {" fX @@ -11580,42 +16811,6 @@ fX fX fX fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX aa aa aa @@ -11624,50 +16819,86 @@ aa aa aa aa -ab aa -Eu -vl -ah -ap -kc -aC -bc -bm -ah -bL -bY -UW -bB -cx -UW -bB -cP -da -cZ +aT +nQ +lW +sr +lW +ir +fG dc -cZ -da -cZ -LF -FU -ZU -da -dm -CI -cP -ae -ac -aa -ab -aa -aa -aa -aa -aa -aa -aa +dt +dt +dt +dt +dt +dt +dt +dt +dt +CB +vO +dq +aO +bc +bH +Sn +jX +kJ +cp +dq +Ee +dq +dq +fc +lf +zI +gh +gh +Uy +Ch +gh +gh +Tg +zE +RY +vD +RJ +Jg aa +fX +fX +HD +HD +HD +HD +HD +HD +HD +HD +HD +HD +HD +HD +HD +HD +HD +HD +HD +HD +HD +HD +HD +HD +HD +HD +HD +HD +HD +HD +HD +HD "} (31,1,1) = {" fX @@ -11837,94 +17068,94 @@ fX fX fX fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX aa aa aa aa aa aa -ac -ac -YI -ac -ac -vl -ai -ai -jf -aQ -ai -ai -ai -bM -bY -UW -gr -cx +aa +aa +aa +aT +Mu +mW +cg +mW +jp +fG +dc dt -bB -cP -KE -dm -cZ -dm -da -dm -eY -da -dm -da -dm -JB -cP -ae -ac -aa -ab -aa -aa -aa -aa -aa -aa -aa +dt +dt +dt +dt +dt +dt +dt +dt +CB +vO +dq +aO +bc +bL +bs +bG +bc +cp +dq +bx +ba +ba +bx +rg +Nv +rH +jN +kH +ML +ui +rH +rH +rH +gf +GR +Qx +Jg aa +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX "} (32,1,1) = {" fX @@ -12094,94 +17325,94 @@ fX fX fX fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX aa aa aa aa aa aa -ac -Nn -Nn -dB -ac -vl -ai -aq -aF -aR -bd -bn -ai -bN -bY -UW -bB -cx -UW -bB -dn -da -cZ +aa +aa +aa +aT +nQ +lW +sr +lW +ir +fG dc -cZ -da -cZ -da -da -ZU -da -da -da -cP -ae -ac -aa -ab -aa -aa -aa -aa -aa +dt +dt +dt +dt +dt +dt +dt +dt +dt +CB +vO +dq +aO +bc +ah +ah +ah +bc +cp +dq +bx aa aa +bx +Jg +Jg +xk +xk +Ge +Ge +xk +xk +Jg +Jg +Jg +Jg +Jg +Jg aa +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX "} (33,1,1) = {" fX @@ -12351,94 +17582,94 @@ fX fX fX fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX aa aa aa aa aa aa -JE -Tz -AB +aa +aa +aa +aT +Mu Tj -wi -sY -ai -ar -aG -aS -be -bo -ai -bO -bY -WP -UW -Qi -WP -bB -dn -da -dm -cZ -dm -da -dm -da -da -da -da -da -da -cP -ae -ac -aa -ab -aa -aa +Gv +Tj +jp +fG +TT +dt +dt +dt +dt +dt +dt +dt +dt +dt +CB +fG +dq +aO +bc +bt +bt +bt +bc +cp +dq +bx aa aa aa +bx +dV +dV +Cw +dV +dV +Qc +dV +dV +bx +aa +aa aa aa aa +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX "} (34,1,1) = {" fX @@ -12608,94 +17839,94 @@ fX fX fX fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX aa aa aa aa aa aa -ac -qk -Ot -Ot -ac -wI -ai -as -aH +aa +aa +aa aT -aH -aH -ai -bP -bY -ck -bB -Ly -bB -bB -dn -da -ZU -cZ -ZU -da -cZ -da -da -da -da -da -da -cP -ae -ac -aa -ab -aa -aa +nQ +lW +sr +lW +ir +fG +AC +dt +dt +dt +dt +dC +dt +dt +dt +dt +VN +fG +dq +aO +bb +bu +bu +bu +bc +cp +dq +bx aa aa aa +bx +dV +nt +jz +jz +jz +jz +nV +dV +bx +aa +aa aa aa aa +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX "} (35,1,1) = {" fX @@ -12865,94 +18096,94 @@ fX fX fX fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX aa aa aa aa aa aa -ac -ac -bU -bU -ac -wI -ai -at -at -at -at -at -bv -bv +aa +aa +aa +aT +Mu +mW cg -bv -ct -cD -bv -bv -bv -da -da -da -da -da -da -da -da -da -da -da -da -cP -ae -ac -aa -ab -aa -aa +mW +jp +fG +Zm +dt +dt +dt +dt +dt +dt +dt +dt +dt +CB +fG +dq +aO +bc +bt +bt +bt +bc +cp +dq +bx aa aa aa +bx +dV +TG +Hu +Hu +Hu +Hu +Kg +dV +bx +aa +aa aa aa aa +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX "} (36,1,1) = {" fX @@ -13122,42 +18353,6 @@ fX fX fX fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX aa aa aa @@ -13165,51 +18360,87 @@ aa aa aa aa -gC -ZJ -Th -gC -wI +aa +aa +aT +nQ +lW +TM +mD +cQ +fG +CB +dt +dt +dt +dt +dt +dt +dt +dt +dt +CB +fG +dq +aQ ai -at -at -at -at -at -bv -bQ -ch -XQ -uI -cE -cF -cG -bv -da -dm -dm -dm -da -cZ -cZ -da -da -dp -dp -da -cP -ae -ac -aa -ab -aa -aa +ai +ai +ai +ai +YR +dq +bx aa aa aa +bx +dV +hC +jS +jS +jS +jS +gW +dV +bx +aa +aa aa aa aa +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX "} (37,1,1) = {" fX @@ -13379,42 +18610,6 @@ fX fX fX fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX aa aa aa @@ -13422,51 +18617,87 @@ aa aa aa aa -gC -Zp -iQ -oN -wI -fH -at -at -at -bf -at -bv -bR -ci -ci -ci -ci -ci -cH -bv -da -dm -dm -dm -da -cZ -cZ -da -da -dp -dp -da -cP -ae -ac aa -ab +aa +aT +aT +aT +aT +aT +aT +fG +CB +dt +dt +dt +dt +dt +dt +dt +dt +dt +CB +fG +bx +dq +dq +Ee +ra +Ox +dq +dq +bx +bx +aa +aa +aa +bx +Nh +Uk +Hu +Hu +Hu +Hu +Yd +qc +bx aa aa aa aa -Yc -aa -aa aa +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX "} (38,1,1) = {" fX @@ -13636,86 +18867,6 @@ fX fX fX fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -aa -aa -aa -aa -aa -aa -aa -gC -mr -Ti -gC -wI -ai -at -at -at -at -at -bv -bS -ci -ci -ci -ci -ci -cI -bv -da -dm -dm -dm -da -cZ -cZ -da -da -dp -dp -da -cP -ae -ac -aa -ab aa aa aa @@ -13724,6 +18875,86 @@ aa aa aa aa +aa +aa +aa +aa +aa +aa +aa +fG +CB +dt +dt +dt +dt +dt +dt +dt +dt +dt +CB +fG +bx +ba +ba +bx +hf +bx +ba +ba +bx +aa +aa +aa +aa +bx +dV +nl +hb +hb +hb +hb +kE +dV +bx +aa +aa +aa +aa +aa +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX "} (39,1,1) = {" fX @@ -13893,86 +19124,6 @@ fX fX fX fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -aa -aa -aa -aa -aa -aa -aa -gC -gC -gC -gC -wI -ai -at -at -aU -at -at -bv -bT -ci -ci -cu -ci -ci -cJ -bv -da -dh -da -da -da -da -da -da -da -da -dh -da -cP -ae -ac -aa -ab aa aa aa @@ -13981,6 +19132,86 @@ aa aa aa aa +aa +aa +aa +aa +aa +aa +aa +fG +CB +CB +CB +CB +CB +pM +CB +CB +CB +CB +CB +fG +aa +aT +aT +bx +aT +bx +aT +aT +aa +aa +aa +aa +aa +bx +dV +TG +Hu +Hu +Hu +Hu +Kg +dV +bx +aa +aa +aa +aa +aa +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX "} (40,1,1) = {" fX @@ -14150,86 +19381,6 @@ fX fX fX fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -aa -aa -aa -aa -aa -aa -aa -ab -aa -Eu -fV -Ft -ai -ai -ai -ai -ai -ai -bv -bv -cj -bv -cv -bv -cj -bv -bv -cP -cP -cP -cP -Ct -Ct -Ct -cP -cP -cP -cP -cP -cP -ae -ac -aa -ab aa aa aa @@ -14238,6 +19389,86 @@ aa aa aa aa +aa +aa +aa +aa +aa +aa +aa +fG +fG +fG +fG +fG +fG +fG +fG +fG +fG +fG +fG +fG +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +bx +dV +Qy +iI +iI +iI +iI +Gq +dV +bx +aa +aa +aa +aa +aa +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX "} (41,1,1) = {" fX @@ -14407,86 +19638,6 @@ fX fX fX fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -aa -aa -aa -aa -aa -aa -aa -ab -aa -ac -fV -sU -ae -ae -ae -ae -ae -ae -ae -ae -ae -bv -cw -bv -PS -ae -ae -ae -ae -gF -ae -ae -ae -ae -ae -gF -ae -ae -ae -ae -ae -ac -aa -ab aa aa aa @@ -14495,6 +19646,86 @@ aa aa aa aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +bx +dV +dV +dV +Vn +dV +dV +dV +dV +bx +aa +aa +aa +aa +aa +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX "} (42,1,1) = {" fX @@ -14664,86 +19895,6 @@ fX fX fX fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -aa -aa -aa -aa -aa -aa -aa -ab -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -bv -cv -bv -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -aa -ab aa aa aa @@ -14752,6 +19903,86 @@ aa aa aa aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +bx +bx +bx +bx +bx +bx +bx +bx +bx +bx +aa +aa +aa +aa +aa +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX "} (43,1,1) = {" fX @@ -14921,6 +20152,62 @@ fX fX fX fX +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa fX fX fX @@ -14953,62 +20240,6 @@ fX fX fX fX -fX -fX -fX -fX -aa -aa -aa -aa -aa -aa -aa -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -Uf -Uf -Uf -Uf -WS -ac -aa -aa -aa -aa -aa -aa -aa -ab -aa -aa -aa -aa -aa -aa -aa -aa "} (44,1,1) = {" fX @@ -15214,58 +20445,58 @@ fX fX fX fX -aa -aa -aa -aa -aa -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ac -Uf -Uf -Uf -Uf -Uf -ac -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -aa -aa -aa -aa -aa -aa +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX "} (45,1,1) = {" fX @@ -15471,58 +20702,58 @@ fX fX fX fX -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -Uf -Uf -Uf -Uf -Uf -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX "} (46,1,1) = {" fX @@ -15728,58 +20959,58 @@ fX fX fX fX -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -fM -fM -ac -Uf -Uf -Uf -Uf -Uf -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX "} (47,1,1) = {" fX @@ -15985,58 +21216,58 @@ fX fX fX fX -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -Yc -aa -aa -aa -aa -aa -fM -LM -ac -Uf -Uf -Uf -Uf -Uf -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX "} (48,1,1) = {" fX @@ -16242,58 +21473,58 @@ fX fX fX fX -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -fM -fM -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX "} (49,1,1) = {" fX @@ -16499,58 +21730,58 @@ fX fX fX fX -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX "} (50,1,1) = {" fX @@ -16756,58 +21987,58 @@ fX fX fX fX -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX "} (51,1,1) = {" fX @@ -17013,58 +22244,58 @@ fX fX fX fX -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX "} (52,1,1) = {" fX @@ -17270,58 +22501,58 @@ fX fX fX fX -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX "} (53,1,1) = {" fX @@ -69663,6 +74894,62 @@ fX fX fX fX +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa fX fX fX @@ -69695,62 +74982,6 @@ fX fX fX fX -fX -fX -fX -fX -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa "} (2,1,2) = {" fX @@ -69920,6 +75151,62 @@ fX fX fX fX +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa fX fX fX @@ -69952,62 +75239,6 @@ fX fX fX fX -fX -fX -fX -fX -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa "} (3,1,2) = {" fX @@ -70177,6 +75408,62 @@ fX fX fX fX +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa fX fX fX @@ -70209,62 +75496,6 @@ fX fX fX fX -fX -fX -fX -fX -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -Yc -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa "} (4,1,2) = {" fX @@ -70434,6 +75665,62 @@ fX fX fX fX +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa fX fX fX @@ -70466,62 +75753,6 @@ fX fX fX fX -fX -fX -fX -fX -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa "} (5,1,2) = {" fX @@ -70691,6 +75922,62 @@ fX fX fX fX +aa +aa +aa +aa +aa +aa +uh +uh +uh +uh +uh +uh +uh +uh +uh +uh +uh +uh +uh +aa +uh +uh +uh +uh +uh +uh +uh +uh +uh +uh +uh +uh +uh +uh +uh +uh +uh +uh +uh +uh +uh +uh +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa fX fX fX @@ -70723,62 +76010,6 @@ fX fX fX fX -fX -fX -fX -fX -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa "} (6,1,2) = {" fX @@ -70948,6 +76179,62 @@ fX fX fX fX +aa +aa +aa +aa +aa +aa +uh +uh +uh +uh +uh +uh +uh +uh +uh +uh +uh +uh +uh +uh +uh +uh +uh +uh +uh +uh +uh +uh +uh +uh +uh +uh +uh +uh +uh +uh +uh +uh +uh +uh +uh +uh +uh +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa fX fX fX @@ -70980,62 +76267,6 @@ fX fX fX fX -fX -fX -fX -fX -aa -aa -aa -aa -Yc -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa "} (7,1,2) = {" fX @@ -71205,6 +76436,62 @@ fX fX fX fX +aa +aa +aa +aa +aa +aa +uh +uh +uh +uh +uh +uh +uh +uh +uh +uh +uh +uh +uh +uh +uh +uh +uh +uh +uh +BQ +BQ +uh +uh +uh +uh +uh +uh +BQ +BQ +BQ +BQ +BQ +uh +uh +uh +uh +uh +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa fX fX fX @@ -71237,62 +76524,6 @@ fX fX fX fX -fX -fX -fX -fX -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa "} (8,1,2) = {" fX @@ -71462,6 +76693,62 @@ fX fX fX fX +aa +aa +aa +aa +aa +aa +uh +uh +uh +uh +uh +uh +uh +uh +uh +uh +uh +uh +uh +uh +uh +uh +uh +uh +uh +ME +Qs +uh +uh +uh +uh +uh +uh +BQ +Si +Si +Si +BQ +uh +uh +uh +uh +uh +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa fX fX fX @@ -71494,62 +76781,6 @@ fX fX fX fX -fX -fX -fX -fX -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa "} (9,1,2) = {" fX @@ -71719,42 +76950,49 @@ fX fX fX fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX +aa +aa +aa +aa +aa +uh +uh +uh +uh +uh +uh +uh +uh +uh +uh +uh +uh +uh +uh +uh +uh +uh +uh +uh +uh +hQ +Qs +uh +uh +uh +uh +uh +uh +BQ +Jp +Ts +Or +BQ +uh +uh +uh +uh +uh aa aa aa @@ -71763,50 +77001,43 @@ aa aa aa aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -aa aa aa aa aa aa +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX "} (10,1,2) = {" fX @@ -71976,6 +77207,62 @@ fX fX fX fX +aa +uh +uh +uh +uh +uh +uh +uh +uh +uh +uh +uh +uh +uh +uh +uh +uh +uh +uh +uh +uh +uh +uh +uh +uh +Tn +BQ +BQ +BQ +BQ +BQ +BQ +BQ +BQ +IO +JZ +IO +BQ +BQ +uh +uh +uh +uh +uh +uh +uh +uh +uh +uh +uh +uh +aa +aa +aa +aa +aa fX fX fX @@ -72008,62 +77295,6 @@ fX fX fX fX -fX -fX -fX -fX -aa -aa -aa -aa -aa -aa -aa -aa -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -zw -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -aa -aa -aa -aa -aa -aa -aa -aa "} (11,1,2) = {" fX @@ -72233,51 +77464,6 @@ fX fX fX fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -aa -aa -aa -aa -aa -aa -aa -aa -ab aa uh uh @@ -72285,26 +77471,44 @@ uh uh uh uh -pI -pI -pI -pI -pI -pI -pI -TR -TR -TR -TR +uh +uh +uh +uh +uh +uh +uh +uh +uh +uh +uh +uh +uh +uh +uh +uh +uh +uh +Tn BQ -rs -oL -Ew -uh -uh -uh -uh -uh +pI +pI +ci +Uf +pI +TH +pI +pI +sA +pI +pI +BQ +MR +MR +MR +MR +MR +MR uh uh uh @@ -72312,15 +77516,42 @@ uh uh uh aa -ab -aa -aa -aa -aa aa aa aa aa +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX "} (12,1,2) = {" fX @@ -72490,51 +77721,6 @@ fX fX fX fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -aa -aa -aa -aa -aa -aa -aa -aa -ab aa uh uh @@ -72542,42 +77728,87 @@ uh uh uh uh -pI -za -ZB -GO -CB -zO -pI -zY -ZD -RN -TR -sR +uh +uh +uh +uh +uh +uh +uh +uh +uh +uh +uh +uh +mA +ig +ig +ig +ig +ig +iK +ci +ci +UQ CG -fy -zd +CG +CG +CG +CG +Ss +jO +II +ci +ci +MR +Sr +qi +Rv +GO +MR +MR +MR +MR +MR uh uh -uh -uh -uh -uh -uh -uh -uh -uh -uh -aa -ab -aa -aa -aa aa aa aa aa aa +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX "} (13,1,2) = {" fX @@ -72747,51 +77978,6 @@ fX fX fX fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -aa -aa -aa -aa -aa -aa -aa -aa -ab aa uh uh @@ -72799,42 +77985,87 @@ uh uh uh uh -pI +uh +uh +uh +uh +uh +uh +uh +uh +uh +uh +uh +uh +mA +Kj +JX +up +MI +up +bg +Vd +Do +pe +HS +kW +ll +kW ll -sX -tA kW Ca -fx -iw -mM -Og -TR -BQ -HS -oD -BQ -BQ -BQ -BQ -BQ -BQ -BQ -BQ -BQ -BQ -uh +Rh +SU +Vd +MR +vX +Gs +We +xY +nK +br +Zi +aw +MR +MR uh aa -ab -aa -aa -aa -aa aa aa aa aa +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX "} (14,1,2) = {" fX @@ -73004,51 +78235,6 @@ fX fX fX fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -aa -aa -aa -aa -aa -aa -aa -aa -ab aa uh uh @@ -73056,42 +78242,87 @@ uh uh uh uh -pI -xi -Us -xi -pI -pI -pI -CD +uh +uh +uh +uh +uh +uh +uh +uh +uh +uh +uh +uh +mA +ig +ig +lO +UW +kP +bg TR +WS +pe +GF +qq +QT +qq +QT +qq +gU +Rh +rA TR -TR -Js -hR +MR +fH Gs -hW -xz -gk -gk -gk -YX -Jw -Sv -IL -BQ -uh +ml +cD +IN +Rv +Rv +GO +cB +MR uh aa -ab -aa -aa -aa -aa aa aa aa aa +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX "} (15,1,2) = {" fX @@ -73261,51 +78492,6 @@ fX fX fX fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -aa -aa -aa -aa -aa -aa -aa -aa -ab aa uh uh @@ -73313,42 +78499,87 @@ uh uh uh uh -oS -uw -FR -ve -oS -ft -ze -ia -TA -zg -TR -Nh +uh +uh +uh +uh +uh +uh +uh +uh +uh +uh +uh +uh +uh +JX +QU +RH +nN +iT +MQ +qy +Zx +pe +TW +QT +UQ +QT +UQ +QT gk -gk -gk -gk -gk -gk -gk -mg -qq -qq -VV -BQ -uh +GD +eu +Mc +MR +VU +xL +Ii +nq +MR +MR +SG +xY +Rt +MR uh aa -ab -aa -aa -aa -aa aa aa aa aa +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX "} (16,1,2) = {" fX @@ -73518,51 +78749,6 @@ fX fX fX fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -aa -aa -aa -aa -aa -aa -aa -aa -ab aa uh uh @@ -73570,42 +78756,87 @@ uh uh uh uh -oS -zM -xE -Dq -ne -sh -iw -sJ -tQ -nh -Nu -zV -gk -gk -gk -gk -gk -gk -gk -qY -og -og -Gr -BQ uh uh -aa -ab -aa -aa -aa +uh +uh +uh +uh +uh +uh +uh +uh +uh +uh +uh +JX +yW +qU +lR +ck +by +Ia +pd +pe +GF +qq +QT +qq +QT +qq +gU +QZ +Uj +NM +xp +ib +Ki +yG +Tz +GN +MR +UB +xY +xQ +MR +uh aa aa aa aa aa +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX "} (17,1,2) = {" fX @@ -73775,51 +79006,6 @@ fX fX fX fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -aa -aa -aa -aa -aa -aa -aa -aa -ab aa uh uh @@ -73827,42 +79013,87 @@ uh uh uh uh -oS +uh +uh +uh +uh +uh +uh +uh +uh +uh +uh +uh +uh +uh +JX +tf +hc +pz +Ji +Es +nu +Vy +pe +TW +QT UQ QT -CZ -oS -sH -xV -qb -xV -TL -TR -es -gk -jj -gk -gk -gk -gk -gk -gk -TB -nv -dM -BQ -uh +UQ +QT +Jo +CL +Am +dY +MR +nZ +YY +oc +Rl +MR +MR +ml +xY +jE +MR uh aa -ab -aa -aa -aa -aa aa aa aa aa +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX "} (18,1,2) = {" fX @@ -74032,51 +79263,6 @@ fX fX fX fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -aa -aa -aa -aa -aa -aa -aa -aa -ab aa uh uh @@ -74084,42 +79270,87 @@ uh uh uh uh -oS -IQ -qs -zF -oS -gU -uF -yr -uF -OX -TR +uh +uh +uh +uh +uh +uh +uh +uh +uh +uh +uh +uh +mA +ig +ig +Dl +OF +EH +ig +JR +rY pe GF -qi -gk -gk -gk -gk -gk -gk -gk -gk -mT -BQ -uh +qq +QT +qq +QT +qq +gU +bC +rA +Xy +MR +RM +Gs +fR +UE +nA +bk +ti +iN +SZ +MR uh aa -ab -aa -aa -aa -aa aa aa aa aa +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX "} (19,1,2) = {" fX @@ -74289,51 +79520,6 @@ fX fX fX fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -aa -aa -aa -aa -aa -aa -aa -aa -ab aa uh uh @@ -74341,42 +79527,87 @@ uh uh uh uh -oS -oP -qs -RU -oS -QS -GD -yr -GD -WM -TR -dI +uh +uh +uh +uh +uh +uh +uh +uh +uh +uh +uh +uh +mA +um +JX +IJ +IJ +IJ +ig +rN +Uw +pe uC -pA -eH -fr +qs Ng -gk -gk -gk -ZZ -gk -dM -BQ -uh +qs +Ng +qs +QS +bC +ft +BO +MR +wu +Gs +We +xY +Ic +mC +Ty +RV +MR +MR uh aa -ab -aa -aa -aa -aa aa aa aa aa +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX "} (20,1,2) = {" fX @@ -74546,51 +79777,6 @@ fX fX fX fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -aa -aa -aa -aa -aa -aa -aa -aa -ab aa uh uh @@ -74598,42 +79784,87 @@ uh uh uh uh -oS -JT +uh +uh +uh +uh +uh +uh +uh +uh +uh +uh +uh +uh +mA +ig +ig +ig +ig +ig +ig +pa +Tu +UQ oR -UD -oS -Ny -eE -my -gn -FT -TR -Wf -gk -KY -uQ -Yi -rU -gk -gk -gk -Te -gk -oI -BQ +oR +oR +oR +oR +oR +oR +kj +ci +ci +MR +aV +nZ +ti +iN +MR +MR +MR +MR +MR uh uh aa -ab -aa -aa -aa -aa aa aa aa aa +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX "} (21,1,2) = {" fX @@ -74803,51 +80034,6 @@ fX fX fX fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -aa -aa -aa -aa -aa -aa -aa -aa -ab aa uh uh @@ -74855,42 +80041,87 @@ uh uh uh uh -oS -oS -oS -oS -oS -TR -TR -hY -TR -TR -TR -gk -Es -Es -Es -Es -iG -Es -Es -gk -Rl -gk -Ut +uh +uh +uh +uh +uh +uh +uh +uh +uh +uh +uh +uh +uh BQ +UH +hD +hD +EF +BQ +Xx +QJ +hR +fy +pn +hR +UF +hR +hR +fy +hU +Bo +Wd +MR +MR +MR +MR +MR +MR +uh +uh +uh +uh uh uh aa -ab -aa -aa -aa -aa aa aa aa aa +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX "} (22,1,2) = {" fX @@ -75060,51 +80291,6 @@ fX fX fX fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -aa -aa -aa -aa -aa -aa -aa -aa -ab aa uh uh @@ -75116,38 +80302,83 @@ uh uh uh uh -vV -tI -TU -Et +uh +uh +uh +uh +uh +uh +uh +uh +uh +BQ +gO +Gy +Gy +oX +tJ +pI +SU +Vd +Vd +ot +Vd +qQ +Vd +Vd +Do +Sf +Bc kI -WN -vV -yY -RY -RY -RY -RY -RY -RY -RY -Pc -Ks -gk -oI +nD BQ uh uh +uh +uh +uh +uh +uh +uh +uh +uh +uh +uh +uh +uh aa -ab -aa -aa -aa -aa -aa -aa -aa -aa +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX "} (23,1,2) = {" fX @@ -75317,52 +80548,11 @@ fX fX fX fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX aa aa aa aa aa -aa -aa -aa -ab -aa uh uh uh @@ -75373,38 +80563,79 @@ uh uh uh uh -vV -Fn -ZA +uh +uh +uh +uh +uh +BQ +le +Gy +Qr +Ij +ty +ci +rA +TR +TR +Ov +TR +ua +TR +dH +aK +sy Bc -FC -nD -vV -yY -qq -qq -lF -qq -qq -qq -qq -Pc -Rl -hz -dK +kI +DW BQ uh uh +uh +uh +uh +uh +uh +uh +uh +uh +uh +uh +uh +uh aa -ab -aa -aa -aa -aa -aa -aa -aa -aa +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX "} (24,1,2) = {" fX @@ -75574,52 +80805,12 @@ fX fX fX fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX aa aa aa aa aa aa -aa -aa -ab -aa uh uh uh @@ -75630,38 +80821,78 @@ uh uh uh uh -vV -tI -vV +uh +uh +uh +uh +BQ +gO +Gy +Gy +oX +tJ +pI +ft +BO +BO +qy +TR +TR +TR +DK +xs +pI sv vV tI -vV -yY -qq -qq -lF -qq -qq -qq -qq -Pc -Yr -Jz -lJ BQ uh uh +uh +uh +uh +uh +uh +uh +uh +uh +uh +uh +uh +uh aa -ab -aa -aa -aa -aa -aa -aa -aa -aa +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX "} (25,1,2) = {" fX @@ -75831,52 +81062,12 @@ fX fX fX fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX aa aa aa aa aa aa -aa -aa -ab -aa uh uh uh @@ -75887,38 +81078,78 @@ uh uh uh uh -vV -vV -vV -vV -vV -vV -vV -qY -lg -og -og -og -og -og -og -Gr -ER -mo -Sm +uh +uh +uh +uh +BQ +gZ +pu +pu +HR +BQ +Hp +pI +Jf +il +rA +TR +PV +TR +lq +xs +pI +pI +pI +pI BQ uh uh +uh +uh +uh +uh +uh +uh +uh +uh +uh +uh +uh +uh aa -ab -aa -aa -aa -aa -Yc -aa -aa -aa +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX "} (26,1,2) = {" fX @@ -76088,54 +81319,12 @@ fX fX fX fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX aa aa aa aa aa aa -aa -aa -ab -aa -uh -uh uh uh uh @@ -76158,24 +81347,66 @@ BQ BQ BQ BQ -BQ -BQ +fV +Bi +rA +TR +KW +TR +sa +xs +Ju BQ BQ BQ BQ uh uh +uh +uh +uh +uh +uh +uh +uh +uh +uh +uh +uh +uh aa -ab -aa -aa -aa -aa -aa -aa -aa -aa +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX "} (27,1,2) = {" fX @@ -76345,78 +81576,12 @@ fX fX fX fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX aa aa aa aa aa aa -aa -aa -ab -aa -uh -uh -uh -uh -uh -uh -uh -uh -uh -uh -uh -uh -uh -uh -uh -uh -uh -uh -uh -uh -uh -uh -uh -uh -uh -uh uh uh uh @@ -76424,15 +81589,81 @@ uh uh uh aa -ab -aa -aa -aa -aa -aa -aa aa +uh +uh +uh +uh +uh +uh +uh +uh +uh +uh +uh +uh +uh +BQ +eG +sC +rA +TR +jr +TR +sP +xs +pt +bW +BQ +gt +gt +gt +gt +gt +gt +gt +gt +gt +gt +gt +gt +gt +uh +uh +uh aa +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX "} (28,1,2) = {" fX @@ -76602,42 +81833,6 @@ fX fX fX fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX aa aa aa @@ -76646,42 +81841,6 @@ aa aa aa aa -ab -aa -uh -uh -uh -uh -uh -uh -uh -uh -uh -uh -uh -uh -uh -uh -uh -uh -uh -uh -uh -uh -uh -uh -uh -uh -uh -uh -uh -uh -uh -uh -uh -uh -aa -ab aa aa aa @@ -76689,7 +81848,79 @@ aa aa aa aa +uh +uh +uh +uh +uh +uh +uh +uh +uh +uh +uh +uh +BQ +Jf +lB +rA +TR +rm +TR +xj +xs +xN +HH +BQ +gt +gt +gt +gt +xy +xy +xy +TI +xy +xy +xy +gt +gt +uh +uh +uh aa +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX "} (29,1,2) = {" fX @@ -76859,42 +82090,6 @@ fX fX fX fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX aa aa aa @@ -76903,42 +82098,6 @@ aa aa aa aa -ab -aa -uh -uh -uh -uh -uh -uh -uh -uh -uh -uh -uh -uh -uh -uh -uh -uh -uh -uh -uh -uh -uh -uh -uh -uh -uh -uh -uh -uh -uh -uh -uh -uh -aa -ab aa aa aa @@ -76946,7 +82105,79 @@ aa aa aa aa +uh +uh +uh +uh +uh +uh +uh +uh +uh +uh +uh +uh +BQ +zv +sC +rA +TR +pv +TR +tc +xs +xN +Tl +BQ +gt +gt +ge +aI +aI +aW +xO +xz +gw +fo +xy +xy +xy +uh +uh +uh aa +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX "} (30,1,2) = {" fX @@ -77116,42 +82347,6 @@ fX fX fX fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX aa aa aa @@ -77160,42 +82355,6 @@ aa aa aa aa -ab -aa -uh -uh -uh -uh -uh -uh -uh -uh -uh -uh -uh -uh -uh -uh -uh -uh -uh -uh -uh -uh -uh -uh -uh -uh -uh -uh -uh -uh -uh -uh -uh -uh -aa -ab aa aa aa @@ -77203,7 +82362,79 @@ aa aa aa aa +uh +uh +uh +uh +uh +uh +uh +uh +uh +uh +uh +uh +BQ +Jf +wo +rA +TR +uF +TR +bQ +xs +vz +BQ +BQ +BQ +BQ +xy +xy +xy +xy +UO +hY +FN +qX +mL +mB +BF +uh +uh +uh aa +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX "} (31,1,2) = {" fX @@ -77373,42 +82604,6 @@ fX fX fX fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX aa aa aa @@ -77417,42 +82612,6 @@ aa aa aa aa -ab -aa -uh -uh -uh -uh -uh -uh -uh -uh -uh -uh -uh -uh -uh -uh -uh -uh -uh -uh -uh -uh -uh -uh -uh -uh -uh -uh -uh -uh -uh -uh -uh -uh -aa -ab aa aa aa @@ -77460,7 +82619,79 @@ aa aa aa aa +uh +uh +uh +uh +uh +uh +uh +uh +uh +uh +uh +uh +BQ +ZG +Wh +Px +BO +Mi +BO +Mi +TZ +DG +yV +lh +Kw +Gz +ik +ID +Dv +Cb +PS +do +uS +ZV +YL +mB +dv +uh +uh +uh aa +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX "} (32,1,2) = {" fX @@ -77630,42 +82861,6 @@ fX fX fX fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX aa aa aa @@ -77674,42 +82869,6 @@ aa aa aa aa -ab -aa -uh -uh -uh -uh -uh -uh -uh -uh -uh -uh -uh -uh -uh -uh -uh -uh -uh -uh -uh -uh -uh -uh -uh -uh -uh -uh -uh -uh -uh -uh -uh -uh -aa -ab aa aa aa @@ -77717,7 +82876,79 @@ aa aa aa aa +uh +uh +uh +uh +uh +uh +uh +uh +uh +uh +uh +uh +BQ +Di +EQ +pI +pI +wi +PP +PP +yg +iy +LY +bY +GY +WE +Xo +rL +mS +Ou +aY +GC +aL +qT +BI +XH +dv +uh +uh +uh aa +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX "} (33,1,2) = {" fX @@ -77887,42 +83118,6 @@ fX fX fX fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX aa aa aa @@ -77931,42 +83126,6 @@ aa aa aa aa -ab -aa -uh -uh -uh -uh -uh -uh -uh -uh -uh -uh -uh -uh -uh -uh -uh -uh -uh -uh -uh -uh -uh -uh -uh -uh -uh -uh -uh -uh -uh -uh -uh -uh -aa -ab aa aa aa @@ -77974,7 +83133,79 @@ aa aa aa aa +uh +uh +uh +uh +uh +uh +uh +uh +uh +uh +uh +uh +BQ +BQ +zd +BQ +ro +rC +ue +BQ +zd +BQ +BQ +BQ +BQ +BQ +xy +xy +xy +xy +yZ +CT +EY +hg +Vv +mB +vL +uh +uh +uh aa +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX "} (34,1,2) = {" fX @@ -78144,42 +83375,6 @@ fX fX fX fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX aa aa aa @@ -78188,42 +83383,6 @@ aa aa aa aa -ab -aa -uh -uh -uh -uh -uh -uh -uh -uh -uh -uh -uh -uh -uh -uh -uh -uh -uh -uh -uh -uh -uh -uh -uh -uh -uh -uh -uh -uh -uh -uh -uh -uh -aa -ab aa aa aa @@ -78231,7 +83390,79 @@ aa aa aa aa +uh +uh +uh +uh +uh +uh +uh +uh +uh +uh +uh +uh +uh +BQ +uh +BQ +wY +tw +nh +BQ +uh +BQ +uh +uh +gt +gt +YI +aI +aI +fr +Me +ED +YX +HA +xy +xy +xy +uh +uh +uh aa +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX "} (35,1,2) = {" fX @@ -78401,42 +83632,6 @@ fX fX fX fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX aa aa aa @@ -78445,42 +83640,6 @@ aa aa aa aa -ab -aa -uh -uh -uh -uh -uh -uh -uh -uh -uh -uh -uh -uh -uh -uh -uh -uh -uh -uh -uh -uh -uh -uh -uh -uh -uh -uh -uh -uh -uh -uh -uh -uh -aa -ab aa aa aa @@ -78488,7 +83647,79 @@ aa aa aa aa +uh +uh +uh +uh +uh +uh +uh +uh +uh +uh +uh +uh +uh +uh +uh +BQ +xU +Fm +TQ +BQ +uh +uh +uh +uh +gt +gt +gt +gt +xy +xy +xy +qz +xy +xy +xy +gt +gt +uh +uh +uh aa +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX "} (36,1,2) = {" fX @@ -78658,42 +83889,6 @@ fX fX fX fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX aa aa aa @@ -78702,42 +83897,6 @@ aa aa aa aa -ab -aa -uh -uh -uh -uh -uh -uh -uh -uh -uh -uh -uh -uh -uh -uh -uh -uh -uh -uh -uh -uh -uh -uh -uh -uh -uh -uh -uh -uh -uh -uh -uh -uh -aa -ab aa aa aa @@ -78745,7 +83904,79 @@ aa aa aa aa +uh +uh +uh +uh +uh +uh +uh +uh +uh +uh +uh +uh +uh +uh +uh +BQ +Cx +zd +dW +BQ +uh +uh +uh +uh +gt +gt +gt +gt +gt +gt +gt +gt +gt +gt +gt +gt +gt +uh +uh +uh aa +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX "} (37,1,2) = {" fX @@ -78915,42 +84146,6 @@ fX fX fX fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX aa aa aa @@ -78959,17 +84154,13 @@ aa aa aa aa -ab aa -uh -uh -uh -uh -uh -uh -uh -uh -uh +aa +aa +aa +aa +aa +aa uh uh uh @@ -78994,15 +84185,55 @@ uh uh uh aa -ab -aa -aa -aa -aa -aa aa aa +uh +uh +uh +uh +uh +uh +uh +uh +uh +uh +uh +uh +uh +uh aa +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX "} (38,1,2) = {" fX @@ -79172,42 +84403,6 @@ fX fX fX fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX aa aa aa @@ -79216,18 +84411,13 @@ aa aa aa aa -ab aa -uh -uh -uh -uh -uh -uh -uh -uh -uh -uh +aa +aa +aa +aa +aa +aa uh uh uh @@ -79251,15 +84441,56 @@ uh uh uh aa -ab -aa -aa -aa -aa aa aa aa +uh +uh +uh +uh +uh +uh +uh +uh +uh +uh +uh +uh +uh +uh aa +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX "} (39,1,2) = {" fX @@ -79429,42 +84660,6 @@ fX fX fX fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX aa aa aa @@ -79473,42 +84668,6 @@ aa aa aa aa -ab -aa -uh -uh -uh -uh -uh -uh -uh -uh -uh -uh -uh -uh -uh -uh -uh -uh -uh -uh -uh -BQ -BQ -BQ -BQ -BQ -BQ -BQ -uh -uh -uh -uh -uh -uh -aa -ab aa aa aa @@ -79516,7 +84675,79 @@ aa aa aa aa +uh +uh +uh +uh +uh +uh +uh +uh +uh +uh +uh +uh +uh +uh +uh +uh +uh +uh +uh +uh +uh aa +aa +aa +aa +aa +uh +uh +uh +uh +uh +uh +uh +uh +uh +uh +uh +uh +uh +uh +aa +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX "} (40,1,2) = {" fX @@ -79686,42 +84917,6 @@ fX fX fX fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX aa aa aa @@ -79730,7 +84925,12 @@ aa aa aa aa -ab +aa +aa +aa +aa +aa +aa aa uh uh @@ -79745,27 +84945,6 @@ uh uh uh uh -uh -uh -uh -uh -uh -uh -BQ -KC -gk -Xj -gk -KC -BQ -uh -uh -uh -uh -uh -uh -aa -ab aa aa aa @@ -79774,6 +84953,58 @@ aa aa aa aa +aa +aa +aa +aa +aa +uh +uh +uh +uh +uh +uh +uh +uh +uh +uh +uh +uh +uh +uh +aa +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX "} (41,1,2) = {" fX @@ -79943,42 +85174,6 @@ fX fX fX fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX aa aa aa @@ -79987,7 +85182,38 @@ aa aa aa aa -ab +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa aa uh uh @@ -80003,34 +85229,39 @@ uh uh uh uh -uh -uh -uh -uh -uh -BQ -gk -gk -iR -gk -gk -BQ -uh -uh -uh -uh -uh -uh -aa -ab -aa -aa -aa -aa -aa -aa -aa aa +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX "} (42,1,2) = {" fX @@ -80200,42 +85431,6 @@ fX fX fX fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX aa aa aa @@ -80244,7 +85439,38 @@ aa aa aa aa -ab +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa aa uh uh @@ -80256,38 +85482,43 @@ uh uh uh uh -uh -uh -uh -uh -uh -uh -uh -uh -uh -BQ -BQ -BQ -BQ -BQ -BQ -BQ -uh -uh -uh -uh -uh -uh -aa -ab -aa -aa -aa aa aa aa aa aa +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX "} (43,1,2) = {" fX @@ -80457,6 +85688,62 @@ fX fX fX fX +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa fX fX fX @@ -80489,62 +85776,6 @@ fX fX fX fX -fX -fX -fX -fX -aa -aa -aa -aa -aa -aa -aa -aa -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -BQ -kX -kX -kX -kX -kX -BQ -aa -aa -aa -aa -aa -aa -aa -ab -aa -aa -aa -aa -aa -aa -aa -aa "} (44,1,2) = {" fX @@ -80750,58 +85981,58 @@ fX fX fX fX -aa -aa -aa -aa -aa -aa -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -BQ -kX -kX -kX -kX -kX -BQ -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -aa -aa -aa -aa -aa -aa +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX "} (45,1,2) = {" fX @@ -81007,58 +86238,58 @@ fX fX fX fX -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -BQ -kX -kX -kX -kX -kX -BQ -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX "} (46,1,2) = {" fX @@ -81264,58 +86495,58 @@ fX fX fX fX -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -BQ -kX -kX -kX -kX -kX -BQ -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX "} (47,1,2) = {" fX @@ -81521,58 +86752,58 @@ fX fX fX fX -aa -aa -aa -aa -Yc -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -BQ -kX -kX -kX -kX -kX -BQ -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX "} (48,1,2) = {" fX @@ -81778,58 +87009,58 @@ fX fX fX fX -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -BQ -BQ -BQ -BQ -BQ -BQ -BQ -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX "} (49,1,2) = {" fX @@ -82035,58 +87266,58 @@ fX fX fX fX -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX "} (50,1,2) = {" fX @@ -82292,58 +87523,58 @@ fX fX fX fX -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX "} (51,1,2) = {" fX @@ -82549,58 +87780,58 @@ fX fX fX fX -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -Yc -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX "} (52,1,2) = {" fX @@ -82806,58 +88037,58 @@ fX fX fX fX -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX "} (53,1,2) = {" fX diff --git a/maps/runtime/runtime_overmap.dm b/maps/runtime/runtime_overmap.dm index 662236b0ef1..f3d73840361 100644 --- a/maps/runtime/runtime_overmap.dm +++ b/maps/runtime/runtime_overmap.dm @@ -23,10 +23,9 @@ fore_dir = WEST vessel_size = SHIP_SIZE_SMALL -/obj/machinery/computer/shuttle_control/explore/runtime +/obj/machinery/computer/shuttle_control/explore/terminal/runtime name = "whiletrue control console" shuttle_tag = "WhileTrue" - req_access = list() /area/shuttle/runtime name = "While True" @@ -36,18 +35,34 @@ name = "WhileTrue" move_time = 90 shuttle_area = list(/area/shuttle/runtime) - dock_target = "runtime_shuttle" - current_location = "nav_runtime_hangar" + dock_target = "airlock_runtime_shuttle" + current_location = "nav_runtime_dock" landmark_transition = "nav_transit_runtime" + logging_home_tag = "nav_runtime_dock" range = 1 fuel_consumption = 4 ceiling_type = /turf/simulated/floor/shuttle_ceiling -/obj/effect/shuttle_landmark/runtime/hangar - name = "Runtime Hangar" - landmark_tag = "nav_runtime_hangar" - base_area = /area/construction - base_turf = /turf/simulated/floor/plating +/obj/effect/shuttle_landmark/runtime/dock + name = "Runtime Dock" + landmark_tag = "nav_runtime_dock" + docking_controller = "nav_runtime_dock" + base_area = /area/exterior + base_turf = /turf/simulated/floor/airless + movable_flags = MOVABLE_FLAG_EFFECTMOVE + +// runtime dock airlocks +/obj/effect/map_effect/marker/airlock/docking/runtime/dock + name = "Shuttle Dock" + landmark_tag = "nav_runtime_dock" + master_tag = "nav_runtime_dock" + +// runtime shuttle airlocks +/obj/effect/map_effect/marker/airlock/shuttle/runtime + name = "WhileTrue" + shuttle_tag = "WhileTrue" + master_tag = "airlock_runtime_shuttle" + cycle_to_external_air = TRUE /obj/effect/shuttle_landmark/runtime/transit name = "In transit"