From e8d22ed53dd36c0d2254646e75f733375b26d088 Mon Sep 17 00:00:00 2001 From: BurgerLUA Date: Sun, 8 Apr 2018 01:07:06 -0700 Subject: [PATCH] Cargo/Mining Map Tweaks (#4542) Mining Map Changes There is an easier way for paramedics/miners to traverse down zlevels, without the using of a mobile ladder. A new area is built for that purpose. Main level has a ladder going up and down to two different areas. Both areas are guaranteed to be connected to another airlock. Top level is connected to science, bottom level is connected to a cargo elevator. Atmospherics system in mining is more saner. The mining processor was made shorter, and 4 grates are guaranteed to spawn now for each miner slot, and contains it's own maintenance hatch for easy upgrades. Mining also now has its own requests console and disposals delivery destination. The industrial smelter is now twice as fast, however uses three times as much power. --- code/modules/mining/machine_processing.dm | 38 +- code/modules/mining/machine_stacking.dm | 31 +- code/modules/mining/mine_items.dm | 4 +- html/changelogs/burgerbb-mining_map.yml | 4 + maps/aurora/aurora-3_sublevel.dmm | 11099 ++++---- maps/aurora/aurora-4_mainlevel.dmm | 28886 ++++++++++---------- maps/aurora/aurora-5_interstitial.dmm | 9508 +++---- maps/exodus/exodus-5_asteroid.dmm | 26481 +++++++++--------- 8 files changed, 37295 insertions(+), 38756 deletions(-) create mode 100644 html/changelogs/burgerbb-mining_map.yml diff --git a/code/modules/mining/machine_processing.dm b/code/modules/mining/machine_processing.dm index b7f9492cd83..009d2e1a500 100644 --- a/code/modules/mining/machine_processing.dm +++ b/code/modules/mining/machine_processing.dm @@ -4,25 +4,30 @@ name = "ore redemption console" icon = 'icons/obj/machines/mining_machines.dmi' icon_state = "console" - density = 1 + density = 0 anchored = 1 use_power = 1 idle_power_usage = 15 active_power_usage = 50 var/obj/machinery/mineral/processing_unit/machine = null - var/machinedir = NORTHEAST var/show_all_ores = 0 var/points = 0 var/obj/item/weapon/card/id/inserted_id -/obj/machinery/mineral/processing_unit_console/Initialize() - . = ..() - src.machine = locate(/obj/machinery/mineral/processing_unit, get_step(src, machinedir)) - if (machine) - machine.console = src - else - return INITIALIZE_HINT_QDEL +/obj/machinery/mineral/processing_unit_console/proc/setup_machine(mob/user) + if(!machine) + var/area/A = get_area(src) + for(var/obj/machinery/mineral/processing_unit/checked_machine in SSmachinery.all_machines) + if(A == get_area(checked_machine)) + machine = checked_machine + break + if (machine) + machine.console = src + else + user << "ERROR: Linked machine not found!" + + return machine /obj/machinery/mineral/processing_unit_console/attack_hand(mob/user) add_fingerprint(user) @@ -33,6 +38,9 @@ if(..()) return + if(!setup_machine(user)) + return + if(!allowed(user)) user << "Access denied." return @@ -142,7 +150,7 @@ /obj/machinery/mineral/processing_unit - name = "industrial smelter" //This isn't actually a goddamn furnace, we're in space and it's processing platinum and flammable phoron... //lol fuk u bay it is + name = "industrial smelter" //This isn't actually a goddamn furnace, we're in space and it's processing platinum and flammable phoron... //lol fuk u bay it is //i'm gay icon = 'icons/obj/machines/mining_machines.dmi' icon_state = "furnace-off" density = 1 @@ -151,14 +159,14 @@ var/obj/machinery/mineral/input = null var/obj/machinery/mineral/output = null var/obj/machinery/mineral/processing_unit_console/console = null - var/sheets_per_tick = 10 + var/sheets_per_tick = 20 var/list/ores_processing[0] var/list/ores_stored[0] var/static/list/alloy_data var/active = 0 use_power = 1 idle_power_usage = 15 - active_power_usage = 50 + active_power_usage = 150 component_types = list( /obj/item/weapon/circuitboard/refiner, @@ -181,7 +189,7 @@ ores_processing[O] = 0 ores_stored[O] = 0 -//Locate our output and input machinery. + //Locate our output and input machinery. for (var/dir in cardinal) src.input = locate(/obj/machinery/mineral/input, get_step(src, dir)) if(src.input) break @@ -309,7 +317,7 @@ return else if(default_part_replacement(user, W)) return - + /obj/machinery/mineral/processing_unit/RefreshParts() ..() var/scan_rating = 0 @@ -324,4 +332,4 @@ else if(ismicrolaser(P)) laser_rating += P.rating - sheets_per_tick += scan_rating + cap_rating + laser_rating + sheets_per_tick += scan_rating + cap_rating + laser_rating \ No newline at end of file diff --git a/code/modules/mining/machine_stacking.dm b/code/modules/mining/machine_stacking.dm index 3783b7c9a1d..a2172d44498 100644 --- a/code/modules/mining/machine_stacking.dm +++ b/code/modules/mining/machine_stacking.dm @@ -4,27 +4,36 @@ name = "stacking machine console" icon = 'icons/obj/machines/mining_machines.dmi' icon_state = "console" - density = 1 + density = 0 anchored = 1 var/obj/machinery/mineral/stacking_machine/machine = null - var/machinedir = NORTHEAST use_power = 1 idle_power_usage = 15 active_power_usage = 50 -/obj/machinery/mineral/stacking_unit_console/Initialize() - . = ..() - src.machine = locate(/obj/machinery/mineral/stacking_machine, get_step(src, machinedir)) - if (machine) - machine.console = src - else - return INITIALIZE_HINT_QDEL +/obj/machinery/mineral/stacking_unit_console/proc/setup_machine(mob/user) + if(!machine) + var/area/A = get_area(src) + for(var/obj/machinery/mineral/stacking_machine/checked_machine in SSmachinery.all_machines) + if(A == get_area(checked_machine)) + machine = checked_machine + break + if (machine) + machine.console = src + else + user << "ERROR: Linked machine not found!" + + return machine /obj/machinery/mineral/stacking_unit_console/attack_hand(mob/user) add_fingerprint(user) ui_interact(user) /obj/machinery/mineral/stacking_unit_console/ui_interact(mob/user, ui_key = "main", datum/nanoui/ui = null, force_open = 1, datum/topic_state/state = default_state) + + if(!setup_machine(user)) + return + var/list/data = list( "stack_amt" = machine.stack_amt, "contents" = list() @@ -108,8 +117,6 @@ /obj/machinery/mineral/stacking_machine/machinery_process() ..() if(!console) - log_debug("Stacking machine tried to process, but no console has linked itself to it.") - qdel(src) return if (output && input) @@ -126,4 +133,4 @@ for(var/sheet in stack_storage) if(stack_storage[sheet] >= stack_amt) new sheet(get_turf(output), stack_amt) - stack_storage[sheet] -= stack_amt + stack_storage[sheet] -= stack_amt \ No newline at end of file diff --git a/code/modules/mining/mine_items.dm b/code/modules/mining/mine_items.dm index f7a2984e2d5..9124097e819 100644 --- a/code/modules/mining/mine_items.dm +++ b/code/modules/mining/mine_items.dm @@ -25,6 +25,8 @@ new /obj/item/weapon/shovel(src) new /obj/item/weapon/pickaxe(src) new /obj/item/weapon/ore_radar(src) + new /obj/item/weapon/key/minecarts(src) + new /obj/item/device/gps/mining(src) /******************************Lantern*******************************/ @@ -1355,4 +1357,4 @@ var/list/total_extraction_beacons = list() if(target) target.overlays -= image_overlay - qdel(src) + qdel(src) \ No newline at end of file diff --git a/html/changelogs/burgerbb-mining_map.yml b/html/changelogs/burgerbb-mining_map.yml new file mode 100644 index 00000000000..7cb20ac884d --- /dev/null +++ b/html/changelogs/burgerbb-mining_map.yml @@ -0,0 +1,4 @@ +author: BurgerBB +delete-after: True +changes: + - maptweak: "Improved the mining/cargo layout to better reflect the needs and desires of cargo techs and miners." \ No newline at end of file diff --git a/maps/aurora/aurora-3_sublevel.dmm b/maps/aurora/aurora-3_sublevel.dmm index 0bc2ba91242..768c40de91b 100644 --- a/maps/aurora/aurora-3_sublevel.dmm +++ b/maps/aurora/aurora-3_sublevel.dmm @@ -10322,9 +10322,15 @@ /turf/simulated/floor/tiled/dark, /area/bridge/aibunker) "sF" = ( -/turf/simulated/wall/r_wall, +/obj/machinery/light/small{ + dir = 4 + }, +/turf/simulated/floor/asteroid/ash/rocky, /area/outpost/research/anomaly_analysis) "sG" = ( +/turf/simulated/wall/r_wall, +/area/outpost/research/anomaly_analysis) +"sH" = ( /obj/machinery/hologram/holopad, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ icon_state = "intact-scrubbers"; @@ -10332,7 +10338,7 @@ }, /turf/simulated/floor/tiled/white, /area/outpost/research/analysis) -"sH" = ( +"sI" = ( /obj/structure/sign/nosmoking_2{ pixel_x = 32 }, @@ -10349,7 +10355,7 @@ }, /turf/simulated/floor/tiled/white, /area/outpost/research/analysis) -"sI" = ( +"sJ" = ( /obj/structure/cable{ d1 = 1; d2 = 2; @@ -10357,14 +10363,14 @@ }, /turf/simulated/floor/asteroid/ash/rocky, /area/mine/unexplored) -"sJ" = ( +"sK" = ( /obj/structure/window/reinforced{ icon_state = "rwindow"; dir = 1 }, /turf/simulated/floor/asteroid/ash/rocky, /area/mine/unexplored) -"sK" = ( +"sL" = ( /obj/structure/table/rack{ dir = 1 }, @@ -10376,20 +10382,20 @@ /obj/item/clothing/glasses/meson, /turf/simulated/floor/tiled/dark, /area/bridge/aibunker) -"sL" = ( +"sM" = ( /obj/structure/sign/securearea{ pixel_y = 32 }, /turf/simulated/floor/tiled/dark, /area/bridge/aibunker) -"sM" = ( +"sN" = ( /obj/effect/decal/warning_stripes, /obj/structure/ladder/up{ pixel_y = 16 }, /turf/simulated/floor/tiled/dark, /area/bridge/aibunker) -"sN" = ( +"sO" = ( /obj/structure/cable{ d1 = 2; d2 = 4; @@ -10407,7 +10413,7 @@ icon_state = "plating" }, /area/bridge/aibunker) -"sO" = ( +"sP" = ( /obj/structure/cable{ d1 = 4; d2 = 8; @@ -10438,7 +10444,7 @@ icon_state = "plating" }, /area/bridge/aibunker) -"sP" = ( +"sQ" = ( /obj/structure/cable{ d1 = 4; d2 = 8; @@ -10458,7 +10464,7 @@ /obj/effect/decal/cleanable/dirt, /turf/simulated/floor/tiled/dark, /area/bridge/aibunker) -"sQ" = ( +"sR" = ( /obj/structure/cable{ d1 = 4; d2 = 8; @@ -10471,7 +10477,7 @@ /obj/machinery/firealarm/north, /turf/simulated/floor/tiled/dark, /area/bridge/aibunker) -"sR" = ( +"sS" = ( /obj/structure/cable{ d1 = 1; d2 = 8; @@ -10484,7 +10490,7 @@ /obj/effect/decal/cleanable/dirt, /turf/simulated/floor/tiled/dark, /area/bridge/aibunker) -"sS" = ( +"sT" = ( /obj/machinery/door/airlock/highsecurity{ id_tag = null; name = "Auxiliary Commanding Post"; @@ -10496,7 +10502,7 @@ }, /turf/simulated/floor/tiled/dark, /area/bridge/aibunker) -"sT" = ( +"sU" = ( /obj/machinery/alarm{ dir = 1; icon_state = "alarm0"; @@ -10508,7 +10514,7 @@ }, /turf/simulated/floor/tiled/dark, /area/bridge/aibunker) -"sU" = ( +"sV" = ( /obj/machinery/firealarm/south, /obj/machinery/atmospherics/unary/vent_pump/on{ dir = 8 @@ -10516,7 +10522,7 @@ /obj/effect/decal/cleanable/dirt, /turf/simulated/floor/tiled/dark, /area/bridge/aibunker) -"sV" = ( +"sW" = ( /obj/structure/bed/chair{ dir = 4 }, @@ -10525,15 +10531,15 @@ }, /turf/simulated/floor/tiled/dark, /area/bridge/aibunker) -"sW" = ( +"sX" = ( /obj/item/modular_computer/console/preset/command, /turf/simulated/floor/tiled/dark, /area/bridge/aibunker) -"sX" = ( +"sY" = ( /obj/structure/closet, /turf/simulated/floor/asteroid/ash/rocky, /area/mine/unexplored) -"sY" = ( +"sZ" = ( /obj/structure/grille, /obj/structure/window/reinforced{ dir = 8 @@ -10556,17 +10562,20 @@ }, /turf/simulated/floor/plating, /area/outpost/research/anomaly_analysis) -"sZ" = ( +"ta" = ( /obj/machinery/washing_machine, /obj/effect/floor_decal/corner/grey/diagonal, /turf/simulated/floor/tiled/white, /area/outpost/research/anomaly_analysis) -"ta" = ( +"tb" = ( /obj/machinery/atmospherics/unary/vent_pump/on, /obj/effect/floor_decal/corner/grey/diagonal, +/obj/machinery/recharger/wallcharger{ + pixel_y = 24 + }, /turf/simulated/floor/tiled/white, /area/outpost/research/anomaly_analysis) -"tb" = ( +"tc" = ( /obj/structure/table/rack, /obj/item/clothing/suit/bio_suit/anomaly, /obj/item/clothing/head/bio_hood/anomaly, @@ -10582,15 +10591,15 @@ /obj/effect/floor_decal/industrial/hatch/yellow, /turf/simulated/floor/tiled, /area/outpost/research/anomaly_analysis) -"tc" = ( +"td" = ( /turf/simulated/wall, /area/outpost/research/anomaly_analysis) -"td" = ( +"te" = ( /obj/machinery/atmospherics/unary/vent_pump/on, /obj/effect/floor_decal/corner/mauve, /turf/simulated/floor/tiled/white, /area/outpost/research/anomaly_analysis) -"te" = ( +"tf" = ( /obj/machinery/alarm{ dir = 2; pixel_y = 25 @@ -10604,7 +10613,7 @@ }, /turf/simulated/floor/tiled/white, /area/outpost/research/anomaly_analysis) -"tf" = ( +"tg" = ( /obj/structure/cable/green{ d2 = 2; icon_state = "0-2" @@ -10621,7 +10630,7 @@ }, /turf/simulated/floor/tiled/white, /area/outpost/research/anomaly_analysis) -"tg" = ( +"th" = ( /obj/structure/sign/nosmoking_2{ pixel_x = 0; pixel_y = 32 @@ -10632,7 +10641,7 @@ }, /turf/simulated/floor/tiled/white, /area/outpost/research/anomaly_analysis) -"th" = ( +"ti" = ( /obj/effect/floor_decal/corner/mauve/full{ icon_state = "corner_white_full"; dir = 4 @@ -10642,7 +10651,7 @@ }, /turf/simulated/floor/tiled/white, /area/outpost/research/anomaly_analysis) -"ti" = ( +"tj" = ( /obj/machinery/conveyor{ dir = 1; id = "anolaser" @@ -10652,7 +10661,7 @@ }, /turf/simulated/floor/tiled, /area/outpost/research/anomaly_analysis) -"tj" = ( +"tk" = ( /obj/machinery/atmospherics/unary/vent_pump/on{ dir = 4 }, @@ -10661,7 +10670,7 @@ }, /turf/simulated/floor/tiled/white, /area/outpost/research/analysis) -"tk" = ( +"tl" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ icon_state = "intact-scrubbers"; dir = 1 @@ -10679,7 +10688,7 @@ }, /turf/simulated/floor/tiled/white, /area/outpost/research/analysis) -"tl" = ( +"tm" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/effect/floor_decal/industrial/warning/dust{ @@ -10696,22 +10705,22 @@ icon_state = "asteroidplating" }, /area/mine/unexplored) -"tm" = ( -/obj/effect/floor_decal/industrial/warning/dust{ - icon_state = "warning_dust"; - dir = 1 - }, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2"; - pixel_y = 0 - }, -/turf/simulated/floor/airless{ - icon_state = "asteroidplating" - }, -/area/mine/unexplored) "tn" = ( +/obj/effect/floor_decal/industrial/warning/dust{ + icon_state = "warning_dust"; + dir = 1 + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2"; + pixel_y = 0 + }, +/turf/simulated/floor/airless{ + icon_state = "asteroidplating" + }, +/area/mine/unexplored) +"to" = ( /obj/effect/floor_decal/industrial/warning/dust{ icon_state = "warning_dust"; dir = 5 @@ -10727,11 +10736,11 @@ icon_state = "asteroidplating" }, /area/mine/unexplored) -"to" = ( +"tp" = ( /obj/machinery/light/small/emergency, /turf/simulated/floor/asteroid/ash/rocky, /area/turret_protected/ai_upload_foyer) -"tp" = ( +"tq" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 5 }, @@ -10743,7 +10752,7 @@ icon_state = "plating" }, /area/bridge/aibunker) -"tq" = ( +"tr" = ( /obj/machinery/light/small/emergency, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 @@ -10755,7 +10764,7 @@ icon_state = "plating" }, /area/bridge/aibunker) -"tr" = ( +"ts" = ( /obj/machinery/door/airlock/highsecurity{ id_tag = "bunker1"; name = "Command Bunker Access"; @@ -10770,7 +10779,7 @@ /obj/machinery/door/firedoor, /turf/simulated/floor/tiled/dark, /area/bridge/aibunker) -"ts" = ( +"tt" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, @@ -10779,7 +10788,7 @@ }, /turf/simulated/floor/tiled/dark, /area/bridge/aibunker) -"tt" = ( +"tu" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 10 }, @@ -10792,7 +10801,7 @@ }, /turf/simulated/floor/tiled/dark, /area/bridge/aibunker) -"tu" = ( +"tv" = ( /obj/structure/cable{ d1 = 1; d2 = 2; @@ -10811,7 +10820,7 @@ icon_state = "plating" }, /area/bridge/aibunker) -"tv" = ( +"tw" = ( /obj/machinery/button/remote/airlock{ id = "bunker3"; name = "Bunker Inner Airlock Bolt Control"; @@ -10821,35 +10830,35 @@ }, /turf/simulated/floor/tiled/dark, /area/bridge/aibunker) -"tw" = ( +"tx" = ( /obj/machinery/atmospherics/pipe/simple/hidden/cyan, /obj/machinery/vending/wallmed2{ pixel_x = 28 }, /turf/simulated/floor/tiled/dark, /area/bridge/aibunker) -"tx" = ( +"ty" = ( /obj/structure/table/steel, /turf/simulated/floor/asteroid/ash/rocky, /area/mine/unexplored) -"ty" = ( +"tz" = ( /obj/structure/bed/chair{ dir = 8 }, /turf/simulated/floor/asteroid/ash/rocky, /area/mine/unexplored) -"tz" = ( +"tA" = ( /obj/structure/bed/chair{ dir = 4 }, /turf/simulated/floor/asteroid/ash/rocky, /area/mine/unexplored) -"tA" = ( +"tB" = ( /obj/structure/table/rack, /obj/item/weapon/ladder_mobile, /turf/simulated/floor/asteroid/ash/rocky, /area/mine/unexplored) -"tB" = ( +"tC" = ( /obj/structure/grille, /obj/structure/window/reinforced{ dir = 8 @@ -10869,17 +10878,17 @@ }, /turf/simulated/floor/plating, /area/outpost/research/anomaly_analysis) -"tC" = ( +"tD" = ( /obj/effect/floor_decal/corner/grey/diagonal, /obj/structure/closet/crate/bin, /turf/simulated/floor/tiled/white, /area/outpost/research/anomaly_analysis) -"tD" = ( +"tE" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/effect/floor_decal/corner/grey/diagonal, /turf/simulated/floor/tiled/white, /area/outpost/research/anomaly_analysis) -"tE" = ( +"tF" = ( /obj/structure/table/rack, /obj/item/clothing/suit/bio_suit/anomaly, /obj/item/clothing/head/bio_hood/anomaly, @@ -10898,7 +10907,7 @@ /obj/effect/floor_decal/industrial/hatch/yellow, /turf/simulated/floor/tiled, /area/outpost/research/anomaly_analysis) -"tF" = ( +"tG" = ( /obj/item/device/radio/intercom{ frequency = 1459; name = "Station Intercom (General)"; @@ -10911,13 +10920,13 @@ }, /turf/simulated/floor/tiled/white, /area/outpost/research/anomaly_analysis) -"tG" = ( +"tH" = ( /obj/structure/table/standard, /obj/item/weapon/flame/lighter/random, /obj/item/weapon/crowbar, /turf/simulated/floor/tiled/white, /area/outpost/research/anomaly_analysis) -"tH" = ( +"tI" = ( /obj/machinery/artifact_analyser, /obj/structure/cable/green{ d1 = 1; @@ -10926,17 +10935,17 @@ }, /turf/simulated/floor/bluegrid, /area/outpost/research/anomaly_analysis) -"tI" = ( +"tJ" = ( /obj/machinery/artifact_scanpad, /turf/simulated/floor/bluegrid, /area/outpost/research/anomaly_analysis) -"tJ" = ( +"tK" = ( /obj/machinery/conveyor_switch{ id = "anolaser" }, /turf/simulated/floor/tiled/white, /area/outpost/research/anomaly_analysis) -"tK" = ( +"tL" = ( /obj/machinery/conveyor{ dir = 1; id = "anolaser" @@ -10947,10 +10956,10 @@ }, /turf/simulated/floor/tiled, /area/outpost/research/anomaly_analysis) -"tL" = ( +"tM" = ( /turf/simulated/wall, /area/outpost/research/analysis) -"tM" = ( +"tN" = ( /obj/machinery/door/firedoor{ dir = 4; name = "Firelock" @@ -10968,10 +10977,10 @@ }, /turf/simulated/floor/tiled/white, /area/outpost/research/analysis) -"tN" = ( +"tO" = ( /turf/simulated/wall/r_wall, /area/outpost/research/emergency_storage) -"tO" = ( +"tP" = ( /obj/effect/floor_decal/industrial/warning/dust{ icon_state = "warning_dust"; dir = 8 @@ -10980,7 +10989,7 @@ icon_state = "asteroidplating" }, /area/mine/unexplored) -"tP" = ( +"tQ" = ( /obj/machinery/atmospherics/pipe/manifold/hidden/supply{ dir = 8 }, @@ -11002,7 +11011,7 @@ icon_state = "asteroidplating" }, /area/mine/unexplored) -"tQ" = ( +"tR" = ( /obj/structure/cable{ d1 = 1; d2 = 8; @@ -11028,7 +11037,7 @@ icon_state = "asteroidplating" }, /area/mine/unexplored) -"tR" = ( +"tS" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 }, @@ -11044,7 +11053,7 @@ icon_state = "asteroidplating" }, /area/mine/unexplored) -"tS" = ( +"tT" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 }, @@ -11065,7 +11074,7 @@ }, /turf/simulated/floor/plating, /area/maintenance/sublevel) -"tT" = ( +"tU" = ( /obj/machinery/light/small/emergency{ dir = 1 }, @@ -11085,7 +11094,7 @@ }, /turf/simulated/floor/plating, /area/maintenance/sublevel) -"tU" = ( +"tV" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 }, @@ -11108,7 +11117,7 @@ }, /turf/simulated/floor/plating, /area/maintenance/sublevel) -"tV" = ( +"tW" = ( /obj/structure/cable{ d1 = 4; d2 = 8; @@ -11130,7 +11139,7 @@ }, /turf/simulated/floor/plating, /area/maintenance/sublevel) -"tW" = ( +"tX" = ( /obj/structure/cable{ d1 = 2; d2 = 8; @@ -11148,20 +11157,20 @@ }, /turf/simulated/floor/plating, /area/maintenance/sublevel) -"tX" = ( +"tY" = ( /obj/machinery/portable_atmospherics/canister/air/airlock, /obj/machinery/atmospherics/portables_connector{ dir = 8 }, /turf/simulated/floor/plating, /area/maintenance/sublevel) -"tY" = ( +"tZ" = ( /obj/structure/window/reinforced{ dir = 1 }, /turf/simulated/floor/asteroid/ash/rocky, /area/mine/unexplored) -"tZ" = ( +"ua" = ( /obj/structure/table/rack{ dir = 1 }, @@ -11171,7 +11180,7 @@ /obj/item/clothing/head/helmet/space/emergency, /turf/simulated/floor/tiled/dark, /area/bridge/aibunker) -"ua" = ( +"ub" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/machinery/camera/network/command{ @@ -11189,7 +11198,7 @@ }, /turf/simulated/floor/tiled/dark, /area/bridge/aibunker) -"ub" = ( +"uc" = ( /obj/structure/cable{ d1 = 1; d2 = 2; @@ -11213,7 +11222,7 @@ icon_state = "plating" }, /area/bridge/aibunker) -"uc" = ( +"ud" = ( /obj/machinery/recharger/wallcharger{ pixel_x = -26; pixel_y = 0 @@ -11224,14 +11233,14 @@ /obj/item/weapon/stool, /turf/simulated/floor/tiled/dark, /area/bridge/aibunker) -"ud" = ( +"ue" = ( /obj/machinery/atmospherics/unary/vent_pump/on{ dir = 1 }, /obj/effect/decal/cleanable/dirt, /turf/simulated/floor/tiled/dark, /area/bridge/aibunker) -"ue" = ( +"uf" = ( /obj/structure/closet, /obj/item/weapon/reagent_containers/food/snacks/liquidfood, /obj/item/weapon/reagent_containers/food/snacks/liquidfood, @@ -11246,16 +11255,16 @@ /obj/effect/decal/cleanable/cobweb2, /turf/simulated/floor/tiled/dark, /area/bridge/aibunker) -"uf" = ( +"ug" = ( /obj/structure/table/rack, /obj/item/hoist_kit, /turf/simulated/floor/asteroid/ash/rocky, /area/mine/unexplored) -"ug" = ( +"uh" = ( /obj/effect/floor_decal/corner/grey/diagonal, /turf/simulated/floor/tiled/white, /area/outpost/research/anomaly_analysis) -"uh" = ( +"ui" = ( /obj/structure/table/rack, /obj/item/clothing/suit/bio_suit/anomaly, /obj/item/clothing/head/bio_hood/anomaly, @@ -11272,7 +11281,7 @@ /obj/effect/floor_decal/industrial/hatch/yellow, /turf/simulated/floor/tiled, /area/outpost/research/anomaly_analysis) -"ui" = ( +"uj" = ( /obj/machinery/light/small{ dir = 8 }, @@ -11287,11 +11296,11 @@ }, /turf/simulated/floor/tiled/white, /area/outpost/research/anomaly_analysis) -"uj" = ( +"uk" = ( /obj/item/weapon/stool/padded, /turf/simulated/floor/tiled/white, /area/outpost/research/anomaly_analysis) -"uk" = ( +"ul" = ( /obj/structure/table/standard, /obj/item/weapon/reagent_containers/dropper{ pixel_y = -4 @@ -11303,10 +11312,10 @@ }, /turf/simulated/floor/tiled/white, /area/outpost/research/anomaly_analysis) -"ul" = ( +"um" = ( /turf/simulated/floor/tiled/white, /area/outpost/research/anomaly_analysis) -"um" = ( +"un" = ( /obj/machinery/power/emitter{ anchored = 1; dir = 4; @@ -11323,7 +11332,7 @@ }, /turf/simulated/floor/tiled/white, /area/outpost/research/anomaly_analysis) -"un" = ( +"uo" = ( /obj/machinery/conveyor{ dir = 1; id = "anolaser" @@ -11339,14 +11348,14 @@ }, /turf/simulated/floor/tiled, /area/outpost/research/anomaly_analysis) -"uo" = ( +"up" = ( /obj/machinery/atmospherics/unary/vent_pump/on{ dir = 4 }, /mob/living/carbon/human/monkey, /turf/simulated/floor/tiled/white, /area/outpost/research/hallway) -"up" = ( +"uq" = ( /obj/machinery/door/window/westleft{ dir = 4; name = "Monkey Pen"; @@ -11369,7 +11378,7 @@ /mob/living/carbon/human/monkey, /turf/simulated/floor/tiled/white, /area/outpost/research/hallway) -"uq" = ( +"ur" = ( /obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ dir = 4 }, @@ -11387,7 +11396,7 @@ }, /turf/simulated/floor/tiled/white, /area/outpost/research/hallway) -"ur" = ( +"us" = ( /obj/machinery/camera/network/research_outpost{ c_tag = "Research Sublevel - Corridor Camera 6" }, @@ -11402,7 +11411,7 @@ }, /turf/simulated/floor/tiled/white, /area/outpost/research/hallway) -"us" = ( +"ut" = ( /obj/structure/closet/crate/bin, /obj/effect/floor_decal/corner/paleblue/full{ icon_state = "corner_white_full"; @@ -11410,20 +11419,20 @@ }, /turf/simulated/floor/tiled/white, /area/outpost/research/hallway) -"ut" = ( +"uu" = ( /turf/simulated/wall, /area/outpost/research/emergency_storage) -"uu" = ( +"uv" = ( /obj/machinery/power/emitter{ anchored = 0 }, /turf/simulated/floor/plating, /area/outpost/research/emergency_storage) -"uv" = ( +"uw" = ( /obj/machinery/suspension_gen, /turf/simulated/floor/plating, /area/outpost/research/emergency_storage) -"uw" = ( +"ux" = ( /obj/structure/table/rack, /obj/item/weapon/storage/box/gloves{ pixel_x = 4; @@ -11439,7 +11448,7 @@ }, /turf/simulated/floor/plating, /area/outpost/research/emergency_storage) -"ux" = ( +"uy" = ( /obj/effect/floor_decal/industrial/warning/dust, /obj/structure/cable{ d1 = 1; @@ -11451,7 +11460,7 @@ icon_state = "asteroidplating" }, /area/mine/unexplored) -"uy" = ( +"uz" = ( /obj/machinery/door/airlock/external{ frequency = 1379; icon_state = "door_locked"; @@ -11461,7 +11470,7 @@ }, /turf/simulated/floor/plating, /area/maintenance/sublevel) -"uz" = ( +"uA" = ( /obj/machinery/airlock_sensor{ id_tag = "sl3s"; pixel_y = -26 @@ -11473,13 +11482,13 @@ }, /turf/simulated/floor/plating, /area/maintenance/sublevel) -"uA" = ( +"uB" = ( /obj/machinery/atmospherics/pipe/simple/visible{ dir = 4 }, /turf/simulated/floor/plating, /area/maintenance/sublevel) -"uB" = ( +"uC" = ( /obj/machinery/atmospherics/pipe/simple/visible{ dir = 4 }, @@ -11492,7 +11501,7 @@ }, /turf/simulated/floor/plating, /area/maintenance/sublevel) -"uC" = ( +"uD" = ( /obj/structure/cable{ d1 = 1; d2 = 2; @@ -11508,7 +11517,7 @@ /obj/machinery/atmospherics/pipe/manifold/visible, /turf/simulated/floor/plating, /area/maintenance/sublevel) -"uD" = ( +"uE" = ( /obj/machinery/alarm{ dir = 1; icon_state = "alarm0"; @@ -11516,7 +11525,7 @@ }, /turf/simulated/floor/tiled/dark, /area/bridge/aibunker) -"uE" = ( +"uF" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/structure/cable{ @@ -11526,7 +11535,7 @@ }, /turf/simulated/floor/tiled/dark, /area/bridge/aibunker) -"uF" = ( +"uG" = ( /obj/structure/cable{ d1 = 4; d2 = 8; @@ -11553,7 +11562,7 @@ icon_state = "plating" }, /area/bridge/aibunker) -"uG" = ( +"uH" = ( /obj/structure/cable{ d1 = 1; d2 = 8; @@ -11569,7 +11578,7 @@ icon_state = "plating" }, /area/bridge/aibunker) -"uH" = ( +"uI" = ( /obj/item/device/radio/intercom{ dir = 4; name = "Station Intercom (General)"; @@ -11578,14 +11587,14 @@ /obj/item/weapon/stool, /turf/simulated/floor/tiled/dark, /area/bridge/aibunker) -"uI" = ( +"uJ" = ( /obj/effect/decal/cleanable/cobweb2{ icon_state = "spiderling"; name = "dead spider" }, /turf/simulated/floor/tiled/dark, /area/bridge/aibunker) -"uJ" = ( +"uK" = ( /obj/machinery/status_display{ density = 0; layer = 4; @@ -11595,42 +11604,42 @@ /obj/structure/closet/emcloset, /turf/simulated/floor/tiled/dark, /area/bridge/aibunker) -"uK" = ( +"uL" = ( /obj/structure/closet/crate, /turf/simulated/floor/asteroid/ash/rocky, /area/mine/unexplored) -"uL" = ( +"uM" = ( /obj/machinery/floodlight, /turf/simulated/floor/asteroid/ash/rocky, /area/mine/unexplored) -"uM" = ( +"uN" = ( /obj/machinery/atmospherics/unary/vent_scrubber/on{ dir = 4 }, /obj/effect/floor_decal/corner/grey/diagonal, /turf/simulated/floor/tiled/white, /area/outpost/research/anomaly_analysis) -"uN" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 5 - }, -/obj/effect/floor_decal/corner/grey/diagonal, -/turf/simulated/floor/tiled/white, -/area/outpost/research/anomaly_analysis) "uO" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 + dir = 5 }, /obj/effect/floor_decal/corner/grey/diagonal, /turf/simulated/floor/tiled/white, /area/outpost/research/anomaly_analysis) "uP" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/effect/floor_decal/corner/grey/diagonal, +/turf/simulated/floor/tiled/white, +/area/outpost/research/anomaly_analysis) +"uQ" = ( /obj/machinery/door/firedoor{ dir = 4; name = "Firelock" @@ -11647,7 +11656,7 @@ }, /turf/simulated/floor/tiled/white, /area/outpost/research/anomaly_analysis) -"uQ" = ( +"uR" = ( /obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ dir = 1 }, @@ -11665,7 +11674,7 @@ }, /turf/simulated/floor/tiled/white, /area/outpost/research/anomaly_analysis) -"uR" = ( +"uS" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 }, @@ -11680,7 +11689,7 @@ }, /turf/simulated/floor/tiled/white, /area/outpost/research/anomaly_analysis) -"uS" = ( +"uT" = ( /obj/machinery/atmospherics/unary/vent_scrubber/on{ dir = 8 }, @@ -11700,7 +11709,7 @@ }, /turf/simulated/floor/tiled/white, /area/outpost/research/anomaly_analysis) -"uT" = ( +"uU" = ( /obj/effect/floor_decal/corner/mauve{ icon_state = "corner_white"; dir = 5 @@ -11712,7 +11721,7 @@ }, /turf/simulated/floor/tiled/white, /area/outpost/research/anomaly_analysis) -"uU" = ( +"uV" = ( /obj/effect/floor_decal/corner/mauve{ icon_state = "corner_white"; dir = 5 @@ -11724,14 +11733,14 @@ }, /turf/simulated/floor/tiled/white, /area/outpost/research/anomaly_analysis) -"uV" = ( +"uW" = ( /obj/effect/floor_decal/corner/mauve{ icon_state = "corner_white"; dir = 5 }, /turf/simulated/floor/tiled/white, /area/outpost/research/anomaly_analysis) -"uW" = ( +"uX" = ( /obj/machinery/door/firedoor{ dir = 4; name = "Firelock" @@ -11748,7 +11757,7 @@ }, /turf/simulated/floor/tiled/white, /area/outpost/research/anomaly_analysis) -"uX" = ( +"uY" = ( /obj/effect/floor_decal/corner/mauve{ icon_state = "corner_white"; dir = 5 @@ -11760,7 +11769,7 @@ /mob/living/carbon/human/monkey, /turf/simulated/floor/tiled/white, /area/outpost/research/hallway) -"uY" = ( +"uZ" = ( /obj/structure/window/reinforced{ dir = 4 }, @@ -11768,7 +11777,7 @@ /mob/living/carbon/human/monkey, /turf/simulated/floor/tiled/white, /area/outpost/research/hallway) -"uZ" = ( +"va" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ icon_state = "intact-scrubbers"; dir = 1 @@ -11790,7 +11799,7 @@ }, /turf/simulated/floor/tiled/white, /area/outpost/research/hallway) -"va" = ( +"vb" = ( /obj/structure/cable/green{ d1 = 4; d2 = 8; @@ -11798,7 +11807,7 @@ }, /turf/simulated/floor/tiled/white, /area/outpost/research/hallway) -"vb" = ( +"vc" = ( /obj/structure/cable/green{ d1 = 4; d2 = 8; @@ -11810,7 +11819,7 @@ }, /turf/simulated/floor/tiled/white, /area/outpost/research/hallway) -"vc" = ( +"vd" = ( /obj/machinery/door/airlock/research{ name = "Supply Closet"; req_access = list(65) @@ -11823,7 +11832,7 @@ /obj/machinery/door/firedoor, /turf/simulated/floor/tiled/white, /area/outpost/research/emergency_storage) -"vd" = ( +"ve" = ( /obj/structure/cable/green{ d1 = 2; d2 = 8; @@ -11831,10 +11840,10 @@ }, /turf/simulated/floor/plating, /area/outpost/research/emergency_storage) -"ve" = ( +"vf" = ( /turf/simulated/floor/plating, /area/outpost/research/emergency_storage) -"vf" = ( +"vg" = ( /obj/structure/table/rack, /obj/item/weapon/storage/box/lights/bulbs{ pixel_x = 5; @@ -11850,7 +11859,7 @@ }, /turf/simulated/floor/plating, /area/outpost/research/emergency_storage) -"vg" = ( +"vh" = ( /obj/structure/cable{ d1 = 1; d2 = 2; @@ -11861,7 +11870,7 @@ icon_state = "asteroidplating" }, /area/mine/unexplored) -"vh" = ( +"vi" = ( /obj/structure/cable{ d1 = 1; d2 = 4; @@ -11882,7 +11891,7 @@ }, /turf/simulated/floor/plating, /area/maintenance/sublevel) -"vi" = ( +"vj" = ( /obj/structure/cable{ d1 = 4; d2 = 8; @@ -11897,7 +11906,7 @@ }, /turf/simulated/floor/plating, /area/maintenance/sublevel) -"vj" = ( +"vk" = ( /obj/structure/cable{ d1 = 4; d2 = 8; @@ -11912,7 +11921,7 @@ }, /turf/simulated/floor/plating, /area/maintenance/sublevel) -"vk" = ( +"vl" = ( /obj/structure/cable{ d1 = 4; d2 = 8; @@ -11928,7 +11937,7 @@ /obj/machinery/door/firedoor, /turf/simulated/floor/plating, /area/maintenance/sublevel) -"vl" = ( +"vm" = ( /obj/structure/cable{ d1 = 2; d2 = 8; @@ -11942,7 +11951,7 @@ }, /turf/simulated/floor/plating, /area/maintenance/sublevel) -"vm" = ( +"vn" = ( /obj/structure/cable{ d1 = 1; d2 = 2; @@ -11959,7 +11968,7 @@ /obj/machinery/door/firedoor, /turf/simulated/floor/tiled/dark, /area/bridge/aibunker) -"vn" = ( +"vo" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/floor_decal/industrial/outline/yellow, /obj/structure/sign/emerg_exitZ{ @@ -11969,14 +11978,14 @@ }, /turf/simulated/floor/tiled/dark, /area/bridge/aibunker) -"vo" = ( +"vp" = ( /obj/machinery/computer/cryopod{ pixel_x = 32; pixel_y = 0 }, /turf/simulated/floor/tiled/dark, /area/bridge/aibunker) -"vp" = ( +"vq" = ( /obj/structure/grille, /obj/structure/window/reinforced, /obj/structure/window/reinforced{ @@ -11997,7 +12006,7 @@ }, /turf/simulated/floor/plating, /area/outpost/research/anomaly_analysis) -"vq" = ( +"vr" = ( /obj/structure/closet/secure_closet/xenoarchaeologist{ req_access = list(47) }, @@ -12006,14 +12015,14 @@ }, /turf/simulated/floor/tiled, /area/outpost/research/anomaly_analysis) -"vr" = ( +"vs" = ( /obj/structure/closet/secure_closet/scientist, /obj/effect/floor_decal/industrial/warning{ dir = 1 }, /turf/simulated/floor/tiled, /area/outpost/research/anomaly_analysis) -"vs" = ( +"vt" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/structure/cable/green{ @@ -12023,11 +12032,11 @@ }, /turf/simulated/floor/tiled/white, /area/outpost/research/anomaly_analysis) -"vt" = ( +"vu" = ( /obj/machinery/firealarm/south, /turf/simulated/floor/tiled/white, /area/outpost/research/anomaly_analysis) -"vu" = ( +"vv" = ( /obj/structure/table/rack, /obj/item/clothing/head/welding, /obj/item/weapon/weldingtool, @@ -12037,7 +12046,7 @@ }, /turf/simulated/floor/tiled/white, /area/outpost/research/anomaly_analysis) -"vv" = ( +"vw" = ( /obj/structure/table/standard, /obj/machinery/cell_charger, /obj/item/weapon/screwdriver{ @@ -12046,19 +12055,19 @@ /obj/item/weapon/melee/baton/loaded, /turf/simulated/floor/tiled/white, /area/outpost/research/anomaly_analysis) -"vw" = ( +"vx" = ( /obj/machinery/light/small, /obj/machinery/hologram/holopad, /turf/simulated/floor/tiled/white, /area/outpost/research/anomaly_analysis) -"vx" = ( +"vy" = ( /obj/machinery/camera/network/research_outpost{ c_tag = "Research Sublevel - Anomalous Materials Lab"; dir = 8 }, /turf/simulated/floor/tiled/white, /area/outpost/research/anomaly_analysis) -"vy" = ( +"vz" = ( /obj/machinery/door/window/westleft{ dir = 2; name = "Monkey Pen"; @@ -12071,7 +12080,7 @@ }, /turf/simulated/floor/tiled/white, /area/outpost/research/hallway) -"vz" = ( +"vA" = ( /obj/structure/window/reinforced, /obj/structure/window/reinforced{ dir = 4 @@ -12089,7 +12098,7 @@ }, /turf/simulated/floor/tiled/white, /area/outpost/research/hallway) -"vA" = ( +"vB" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ icon_state = "intact-scrubbers"; dir = 1 @@ -12106,17 +12115,17 @@ }, /turf/simulated/floor/tiled/white, /area/outpost/research/hallway) -"vB" = ( +"vC" = ( /turf/simulated/floor/tiled/white, /area/outpost/research/hallway) -"vC" = ( +"vD" = ( /obj/effect/floor_decal/corner/paleblue{ icon_state = "corner_white"; dir = 6 }, /turf/simulated/floor/tiled/white, /area/outpost/research/hallway) -"vD" = ( +"vE" = ( /obj/structure/closet/hydrant{ pixel_x = -32 }, @@ -12128,7 +12137,7 @@ }, /turf/simulated/floor/plating, /area/outpost/research/emergency_storage) -"vE" = ( +"vF" = ( /obj/structure/table/rack, /obj/item/weapon/storage/box/monkeycubes, /obj/item/weapon/storage/box/monkeycubes, @@ -12136,24 +12145,13 @@ /obj/item/weapon/reagent_containers/spray/cleaner, /turf/simulated/floor/plating, /area/outpost/research/emergency_storage) -"vF" = ( +"vG" = ( /obj/machinery/light/small/emergency{ dir = 8 }, /turf/simulated/floor/plating, /area/maintenance/sublevel) -"vG" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/plating, -/area/maintenance/sublevel) "vH" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2"; - pixel_y = 0 - }, /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/plating, @@ -12167,11 +12165,22 @@ }, /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/plating, +/area/maintenance/sublevel) +"vJ" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2"; + pixel_y = 0 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor{ icon_state = "plating" }, /area/maintenance/sublevel) -"vJ" = ( +"vK" = ( /obj/structure/table/reinforced/steel, /obj/machinery/cell_charger, /obj/structure/extinguisher_cabinet{ @@ -12180,21 +12189,21 @@ }, /turf/simulated/floor/tiled/dark, /area/bridge/aibunker) -"vK" = ( +"vL" = ( /obj/structure/table/reinforced/steel, /obj/item/weapon/storage/firstaid/regular, /turf/simulated/floor/tiled/dark, /area/bridge/aibunker) -"vL" = ( +"vM" = ( /obj/machinery/cryopod, /obj/effect/decal/cleanable/dirt, /turf/simulated/floor/tiled/dark, /area/bridge/aibunker) -"vM" = ( +"vN" = ( /obj/structure/cryofeed, /turf/simulated/floor/tiled/dark, /area/bridge/aibunker) -"vN" = ( +"vO" = ( /obj/machinery/door/firedoor{ dir = 4; name = "Firelock" @@ -12212,7 +12221,7 @@ }, /turf/simulated/floor/tiled/white, /area/outpost/research/anomaly_analysis) -"vO" = ( +"vP" = ( /obj/machinery/door/firedoor{ dir = 4; name = "Firelock" @@ -12223,7 +12232,7 @@ }, /turf/simulated/floor/tiled/white, /area/outpost/research/anomaly_analysis) -"vP" = ( +"vQ" = ( /obj/machinery/light{ dir = 8 }, @@ -12238,7 +12247,7 @@ }, /turf/simulated/floor/tiled/white, /area/outpost/research/hallway) -"vQ" = ( +"vR" = ( /obj/effect/floor_decal/corner/paleblue{ icon_state = "corner_white"; dir = 5 @@ -12249,7 +12258,7 @@ }, /turf/simulated/floor/tiled/white, /area/outpost/research/hallway) -"vR" = ( +"vS" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ icon_state = "intact-scrubbers"; dir = 1 @@ -12266,7 +12275,7 @@ }, /turf/simulated/floor/tiled/white, /area/outpost/research/hallway) -"vS" = ( +"vT" = ( /obj/machinery/light{ dir = 4; icon_state = "tube1" @@ -12277,13 +12286,13 @@ }, /turf/simulated/floor/tiled/white, /area/outpost/research/hallway) -"vT" = ( -/turf/simulated/wall/r_wall, -/area/outpost/research/anomaly_storage) "vU" = ( /turf/simulated/wall/r_wall, -/area/medical/virology) +/area/outpost/research/anomaly_storage) "vV" = ( +/turf/simulated/wall/r_wall, +/area/medical/virology) +"vW" = ( /obj/machinery/door/airlock/engineering{ name = "Medbay Substation"; req_one_access = list(11,24) @@ -12291,7 +12300,7 @@ /obj/machinery/door/firedoor, /turf/simulated/floor/plating, /area/maintenance/sublevel) -"vW" = ( +"vX" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/machinery/door/airlock/maintenance{ @@ -12299,7 +12308,7 @@ }, /turf/simulated/floor/plating, /area/maintenance/sublevel) -"vX" = ( +"vY" = ( /obj/structure/grille, /obj/structure/window/reinforced{ dir = 8 @@ -12322,12 +12331,12 @@ }, /turf/simulated/floor/plating, /area/outpost/research/hallway) -"vY" = ( +"vZ" = ( /obj/structure/closet/emcloset, /obj/effect/floor_decal/industrial/hatch/yellow, /turf/simulated/floor/tiled/white, /area/outpost/research/hallway) -"vZ" = ( +"wa" = ( /obj/structure/closet/emcloset, /obj/effect/floor_decal/industrial/hatch/yellow, /obj/structure/window/reinforced{ @@ -12336,7 +12345,7 @@ }, /turf/simulated/floor/tiled/white, /area/outpost/research/hallway) -"wa" = ( +"wb" = ( /obj/effect/floor_decal/corner/paleblue{ icon_state = "corner_white"; dir = 5 @@ -12344,7 +12353,7 @@ /obj/machinery/firealarm/north, /turf/simulated/floor/tiled/white, /area/outpost/research/hallway) -"wb" = ( +"wc" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/structure/cable/green{ @@ -12358,21 +12367,21 @@ }, /turf/simulated/floor/tiled/white, /area/outpost/research/hallway) -"wc" = ( +"wd" = ( /obj/effect/floor_decal/corner/paleblue{ icon_state = "corner_white"; dir = 5 }, /turf/simulated/floor/tiled/white, /area/outpost/research/hallway) -"wd" = ( +"we" = ( /obj/effect/floor_decal/corner/mauve{ icon_state = "corner_white"; dir = 5 }, /turf/simulated/floor/tiled/white, /area/outpost/research/hallway) -"we" = ( +"wf" = ( /obj/machinery/atmospherics/unary/vent_pump/on, /obj/effect/floor_decal/corner/paleblue{ icon_state = "corner_white"; @@ -12383,7 +12392,7 @@ }, /turf/simulated/floor/tiled/white, /area/outpost/research/hallway) -"wf" = ( +"wg" = ( /obj/effect/floor_decal/corner/mauve{ icon_state = "corner_white"; dir = 5 @@ -12393,7 +12402,7 @@ }, /turf/simulated/floor/tiled/white, /area/outpost/research/hallway) -"wg" = ( +"wh" = ( /obj/effect/floor_decal/corner/mauve{ icon_state = "corner_white"; dir = 5 @@ -12401,7 +12410,7 @@ /obj/machinery/door/firedoor, /turf/simulated/floor/tiled/white, /area/outpost/research/hallway) -"wh" = ( +"wi" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ icon_state = "intact-scrubbers"; dir = 1 @@ -12420,13 +12429,13 @@ }, /turf/simulated/floor/tiled/white, /area/outpost/research/hallway) -"wi" = ( +"wj" = ( /obj/machinery/atmospherics/unary/vent_pump/on{ dir = 8 }, /turf/simulated/floor/tiled/white, /area/outpost/research/hallway) -"wj" = ( +"wk" = ( /obj/structure/cable/green{ d2 = 2; icon_state = "0-2" @@ -12442,31 +12451,31 @@ }, /turf/simulated/floor/tiled, /area/outpost/research/anomaly_storage) -"wk" = ( +"wl" = ( /obj/machinery/light/small{ dir = 1 }, /obj/machinery/atmospherics/unary/vent_pump, /turf/simulated/floor/tiled/dark, /area/outpost/research/anomaly_storage) -"wl" = ( +"wm" = ( /obj/machinery/artifact_scanpad, /obj/structure/sign/nosmoking_1{ pixel_y = 32 }, /turf/simulated/floor/bluegrid, /area/outpost/research/anomaly_storage) -"wm" = ( +"wn" = ( /obj/machinery/artifact_harvester, /turf/simulated/floor/bluegrid, /area/outpost/research/anomaly_storage) -"wn" = ( +"wo" = ( /obj/structure/crematorium{ id = "patientmurder" }, /turf/simulated/floor/tiled/dark, /area/medical/virology) -"wo" = ( +"wp" = ( /obj/machinery/button/crematorium{ id = "patientmurder"; pixel_x = -4; @@ -12479,13 +12488,13 @@ }, /turf/simulated/floor/tiled/dark, /area/medical/virology) -"wp" = ( +"wq" = ( /obj/machinery/power/breakerbox/activated{ RCon_tag = "\[F.4] Medical Substation Bypass" }, /turf/simulated/floor/plating, /area/maintenance/sublevel) -"wq" = ( +"wr" = ( /obj/machinery/power/smes/buildable{ RCon_tag = "Substation - \[F.4] Medical" }, @@ -12499,7 +12508,7 @@ }, /turf/simulated/floor/plating, /area/maintenance/sublevel) -"wr" = ( +"ws" = ( /obj/structure/cable/green{ d2 = 8; icon_state = "0-8" @@ -12515,24 +12524,24 @@ }, /turf/simulated/floor/plating, /area/maintenance/sublevel) -"ws" = ( +"wt" = ( /obj/structure/table/rack, /obj/item/weapon/storage/toolbox/mechanical, /turf/simulated/floor/asteroid/ash/rocky, /area/mine/unexplored) -"wt" = ( +"wu" = ( /obj/structure/table/rack, /obj/item/weapon/pickaxe, /turf/simulated/floor/asteroid/ash/rocky, /area/mine/unexplored) -"wu" = ( +"wv" = ( /obj/structure/table/rack, /obj/item/stack/material/steel{ amount = 10 }, /turf/simulated/floor/asteroid/ash/rocky, /area/mine/unexplored) -"wv" = ( +"ww" = ( /obj/structure/grille, /obj/structure/window/reinforced{ dir = 8 @@ -12552,7 +12561,7 @@ }, /turf/simulated/floor/plating, /area/outpost/research/hallway) -"ww" = ( +"wx" = ( /obj/effect/floor_decal/corner/mauve{ icon_state = "corner_white"; dir = 9 @@ -12563,7 +12572,7 @@ }, /turf/simulated/floor/tiled/white, /area/outpost/research/hallway) -"wx" = ( +"wy" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 6 }, @@ -12577,7 +12586,7 @@ }, /turf/simulated/floor/tiled/white, /area/outpost/research/hallway) -"wy" = ( +"wz" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 }, @@ -12591,7 +12600,7 @@ }, /turf/simulated/floor/tiled/white, /area/outpost/research/hallway) -"wz" = ( +"wA" = ( /obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, /obj/machinery/atmospherics/pipe/manifold/hidden/supply, /obj/structure/cable/green{ @@ -12606,7 +12615,7 @@ }, /turf/simulated/floor/tiled/white, /area/outpost/research/hallway) -"wA" = ( +"wB" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 }, @@ -12618,7 +12627,7 @@ }, /turf/simulated/floor/tiled/white, /area/outpost/research/hallway) -"wB" = ( +"wC" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 }, @@ -12637,7 +12646,7 @@ }, /turf/simulated/floor/tiled/white, /area/outpost/research/hallway) -"wC" = ( +"wD" = ( /obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ dir = 1 }, @@ -12652,7 +12661,7 @@ /obj/machinery/door/firedoor, /turf/simulated/floor/tiled/white, /area/outpost/research/hallway) -"wD" = ( +"wE" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, @@ -12666,7 +12675,7 @@ }, /turf/simulated/floor/tiled/white, /area/outpost/research/hallway) -"wE" = ( +"wF" = ( /obj/structure/cable/green{ d1 = 4; d2 = 8; @@ -12685,7 +12694,7 @@ }, /turf/simulated/floor/tiled/white, /area/outpost/research/hallway) -"wF" = ( +"wG" = ( /obj/structure/cable/green{ d1 = 4; d2 = 8; @@ -12700,7 +12709,7 @@ }, /turf/simulated/floor/tiled/white, /area/outpost/research/hallway) -"wG" = ( +"wH" = ( /obj/machinery/door/firedoor{ dir = 4; name = "Firelock" @@ -12719,7 +12728,7 @@ }, /turf/simulated/floor/tiled, /area/outpost/research/anomaly_storage) -"wH" = ( +"wI" = ( /obj/structure/cable/green{ d1 = 1; d2 = 8; @@ -12733,17 +12742,17 @@ }, /turf/simulated/floor/tiled, /area/outpost/research/anomaly_storage) -"wI" = ( +"wJ" = ( /obj/machinery/atmospherics/pipe/manifold/visible/yellow{ icon_state = "map"; dir = 4 }, /turf/simulated/floor/tiled/dark, /area/outpost/research/anomaly_storage) -"wJ" = ( +"wK" = ( /turf/simulated/floor/tiled/dark, /area/outpost/research/anomaly_storage) -"wK" = ( +"wL" = ( /obj/item/weapon/anodevice{ pixel_x = 3; pixel_y = 3 @@ -12752,10 +12761,10 @@ /obj/structure/table/steel, /turf/simulated/floor/tiled/dark, /area/outpost/research/anomaly_storage) -"wL" = ( +"wM" = ( /turf/simulated/floor/tiled/dark, /area/medical/virology) -"wM" = ( +"wN" = ( /obj/effect/floor_decal/industrial/warning/dust{ icon_state = "warning_dust"; dir = 1 @@ -12769,7 +12778,7 @@ icon_state = "asteroidplating" }, /area/mine/unexplored) -"wN" = ( +"wO" = ( /obj/effect/floor_decal/industrial/warning/dust{ icon_state = "warning_dust"; dir = 5 @@ -12783,7 +12792,7 @@ icon_state = "asteroidplating" }, /area/mine/unexplored) -"wO" = ( +"wP" = ( /obj/structure/cable{ d1 = 4; d2 = 8; @@ -12793,7 +12802,7 @@ icon_state = "asteroidplating" }, /area/mine/unexplored) -"wP" = ( +"wQ" = ( /obj/structure/cable{ d1 = 4; d2 = 8; @@ -12813,7 +12822,7 @@ /obj/machinery/door/firedoor, /turf/simulated/floor/plating, /area/maintenance/sublevel) -"wQ" = ( +"wR" = ( /obj/structure/cable{ d1 = 1; d2 = 8; @@ -12826,7 +12835,7 @@ }, /turf/simulated/floor/plating, /area/maintenance/sublevel) -"wR" = ( +"wS" = ( /obj/machinery/power/terminal{ icon_state = "term"; dir = 1 @@ -12838,7 +12847,7 @@ }, /turf/simulated/floor/plating, /area/maintenance/sublevel) -"wS" = ( +"wT" = ( /obj/structure/cable/green{ d1 = 1; d2 = 2; @@ -12846,14 +12855,14 @@ }, /turf/simulated/floor/plating, /area/maintenance/sublevel) -"wT" = ( +"wU" = ( /obj/effect/floor_decal/corner/paleblue{ icon_state = "corner_white"; dir = 9 }, /turf/simulated/floor/tiled/white, /area/outpost/research/hallway) -"wU" = ( +"wV" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/structure/cable/green{ @@ -12863,11 +12872,11 @@ }, /turf/simulated/floor/tiled/white, /area/outpost/research/hallway) -"wV" = ( +"wW" = ( /obj/effect/floor_decal/corner/paleblue, /turf/simulated/floor/tiled/white, /area/outpost/research/hallway) -"wW" = ( +"wX" = ( /obj/effect/floor_decal/corner/mauve{ icon_state = "corner_white"; dir = 10 @@ -12878,21 +12887,21 @@ }, /turf/simulated/floor/tiled/white, /area/outpost/research/hallway) -"wX" = ( +"wY" = ( /obj/effect/floor_decal/corner/paleblue{ icon_state = "corner_white"; dir = 10 }, /turf/simulated/floor/tiled/white, /area/outpost/research/hallway) -"wY" = ( +"wZ" = ( /obj/effect/floor_decal/corner/mauve{ icon_state = "corner_white"; dir = 10 }, /turf/simulated/floor/tiled/white, /area/outpost/research/hallway) -"wZ" = ( +"xa" = ( /obj/machinery/light, /obj/machinery/camera/network/research_outpost{ c_tag = "Research Sublevel - Corridor Camera 5"; @@ -12904,7 +12913,7 @@ }, /turf/simulated/floor/tiled/white, /area/outpost/research/hallway) -"xa" = ( +"xb" = ( /obj/structure/cable/green{ d1 = 1; d2 = 2; @@ -12916,7 +12925,7 @@ }, /turf/simulated/floor/tiled/white, /area/outpost/research/hallway) -"xb" = ( +"xc" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/effect/floor_decal/corner/mauve{ @@ -12926,7 +12935,7 @@ /obj/machinery/door/firedoor, /turf/simulated/floor/tiled/white, /area/outpost/research/hallway) -"xc" = ( +"xd" = ( /obj/machinery/atmospherics/unary/vent_scrubber/on{ dir = 1 }, @@ -12936,7 +12945,7 @@ }, /turf/simulated/floor/tiled/white, /area/outpost/research/hallway) -"xd" = ( +"xe" = ( /obj/effect/floor_decal/corner/paleblue/full{ icon_state = "corner_white_full"; dir = 4 @@ -12947,7 +12956,7 @@ }, /turf/simulated/floor/tiled/white, /area/outpost/research/hallway) -"xe" = ( +"xf" = ( /obj/structure/sign/securearea{ desc = "A warning sign which reads 'RADIOACTIVE AREA'"; icon_state = "radiation"; @@ -12964,11 +12973,11 @@ }, /turf/simulated/floor/tiled, /area/outpost/research/anomaly_storage) -"xf" = ( +"xg" = ( /obj/machinery/atmospherics/pipe/simple/visible/yellow, /turf/simulated/floor/tiled/dark, /area/outpost/research/anomaly_storage) -"xg" = ( +"xh" = ( /obj/item/weapon/anobattery{ pixel_x = -6; pixel_y = 2 @@ -12991,19 +13000,19 @@ }, /turf/simulated/floor/tiled/dark, /area/outpost/research/anomaly_storage) -"xh" = ( +"xi" = ( /obj/machinery/light/small/emergency{ dir = 8 }, /obj/effect/decal/cleanable/blood/drip, /turf/simulated/floor/asteroid/ash/rocky, /area/mine/unexplored) -"xi" = ( +"xj" = ( /obj/effect/decal/cleanable/blood, /obj/random/junk, /turf/simulated/floor/asteroid/ash/rocky, /area/mine/unexplored) -"xj" = ( +"xk" = ( /obj/machinery/light/small{ dir = 8 }, @@ -13020,32 +13029,32 @@ }, /turf/simulated/floor/tiled/dark, /area/medical/virology) -"xk" = ( +"xl" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 6 }, /turf/simulated/floor/tiled/dark, /area/medical/virology) -"xl" = ( +"xm" = ( /obj/machinery/atmospherics/unary/vent_scrubber/on{ dir = 8 }, /turf/simulated/floor/tiled/dark, /area/medical/virology) -"xm" = ( +"xn" = ( /obj/structure/morgue{ icon_state = "morgue1"; dir = 8 }, /turf/simulated/floor/tiled/dark, /area/medical/virology) -"xn" = ( +"xo" = ( /obj/effect/floor_decal/industrial/warning/dust, /turf/simulated/floor/airless{ icon_state = "asteroidplating" }, /area/mine/unexplored) -"xo" = ( +"xp" = ( /obj/machinery/door/firedoor, /obj/machinery/door/airlock/engineering{ name = "Medbay Substation"; @@ -13058,7 +13067,7 @@ }, /turf/simulated/floor/plating, /area/maintenance/sublevel) -"xp" = ( +"xq" = ( /obj/machinery/door/airlock/maintenance{ req_access = list(19) }, @@ -13075,7 +13084,7 @@ icon_state = "plating" }, /area/maintenance/sublevel) -"xq" = ( +"xr" = ( /obj/effect/floor_decal/corner/mauve{ icon_state = "corner_white"; dir = 9 @@ -13083,7 +13092,7 @@ /obj/machinery/door/firedoor, /turf/simulated/floor/tiled/white, /area/outpost/research/hallway) -"xr" = ( +"xs" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/structure/cable/green{ @@ -13094,7 +13103,7 @@ /obj/machinery/door/firedoor, /turf/simulated/floor/tiled/white, /area/outpost/research/hallway) -"xs" = ( +"xt" = ( /obj/effect/floor_decal/corner/mauve{ icon_state = "corner_white"; dir = 6 @@ -13102,10 +13111,10 @@ /obj/machinery/door/firedoor, /turf/simulated/floor/tiled/white, /area/outpost/research/hallway) -"xt" = ( +"xu" = ( /turf/simulated/wall/r_wall, /area/outpost/research/isolation_monitoring) -"xu" = ( +"xv" = ( /obj/structure/grille, /obj/structure/window/reinforced, /obj/structure/window/reinforced{ @@ -13120,7 +13129,7 @@ }, /turf/simulated/floor/plating, /area/outpost/research/isolation_monitoring) -"xv" = ( +"xw" = ( /obj/structure/grille, /obj/structure/window/reinforced, /obj/structure/window/reinforced{ @@ -13135,7 +13144,7 @@ }, /turf/simulated/floor/plating, /area/outpost/research/isolation_monitoring) -"xw" = ( +"xx" = ( /obj/machinery/door/airlock/research{ name = "Anomaly Isolation"; req_access = list(65) @@ -13151,7 +13160,7 @@ }, /turf/simulated/floor/tiled, /area/outpost/research/isolation_monitoring) -"xx" = ( +"xy" = ( /obj/structure/grille, /obj/structure/window/reinforced, /obj/structure/window/reinforced{ @@ -13168,7 +13177,7 @@ }, /turf/simulated/floor/plating, /area/outpost/research/isolation_monitoring) -"xy" = ( +"xz" = ( /obj/structure/grille, /obj/structure/window/reinforced, /obj/structure/window/reinforced{ @@ -13180,7 +13189,7 @@ }, /turf/simulated/floor/plating, /area/outpost/research/isolation_monitoring) -"xz" = ( +"xA" = ( /obj/structure/grille, /obj/structure/window/reinforced, /obj/structure/window/reinforced{ @@ -13196,7 +13205,7 @@ /obj/machinery/atmospherics/pipe/simple/visible/yellow, /turf/simulated/floor/plating, /area/outpost/research/isolation_monitoring) -"xA" = ( +"xB" = ( /obj/structure/sign/nosmoking_2{ pixel_y = -32 }, @@ -13205,7 +13214,7 @@ }, /turf/simulated/floor/tiled, /area/outpost/research/anomaly_storage) -"xB" = ( +"xC" = ( /obj/machinery/atmospherics/unary/vent_scrubber{ icon_state = "map_scrubber_off"; dir = 1 @@ -13217,16 +13226,16 @@ }, /turf/simulated/floor/tiled/dark, /area/outpost/research/anomaly_storage) -"xC" = ( +"xD" = ( /obj/machinery/artifact_scanpad, /obj/machinery/light/small, /turf/simulated/floor/bluegrid, /area/outpost/research/anomaly_storage) -"xD" = ( +"xE" = ( /obj/effect/decal/cleanable/blood/splatter, /turf/simulated/floor/asteroid/ash/rocky, /area/mine/unexplored) -"xE" = ( +"xF" = ( /obj/structure/table/standard, /obj/item/weapon/storage/box/bodybags, /obj/machinery/alarm{ @@ -13236,7 +13245,7 @@ }, /turf/simulated/floor/tiled/dark, /area/medical/virology) -"xF" = ( +"xG" = ( /obj/structure/disposalpipe/segment{ dir = 4; icon_state = "pipe-c" @@ -13244,13 +13253,13 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/tiled/dark, /area/medical/virology) -"xG" = ( +"xH" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, /turf/simulated/floor/tiled/dark, /area/medical/virology) -"xH" = ( +"xI" = ( /obj/machinery/disposal, /obj/effect/decal/warning_stripes, /obj/structure/disposalpipe/trunk{ @@ -13261,7 +13270,7 @@ }, /turf/simulated/floor/tiled/dark, /area/medical/virology) -"xI" = ( +"xJ" = ( /obj/machinery/light/small/emergency{ icon_state = "bulb1"; dir = 4 @@ -13270,7 +13279,7 @@ icon_state = "asteroidplating" }, /area/maintenance/sublevel) -"xJ" = ( +"xK" = ( /obj/machinery/door/firedoor, /obj/structure/grille, /obj/structure/window/reinforced{ @@ -13285,7 +13294,7 @@ /obj/structure/window/reinforced, /turf/simulated/floor/plating, /area/maintenance/sublevel) -"xK" = ( +"xL" = ( /obj/structure/cable/green{ d1 = 1; d2 = 4; @@ -13293,7 +13302,7 @@ }, /turf/simulated/floor/plating, /area/maintenance/sublevel) -"xL" = ( +"xM" = ( /obj/structure/cable/green{ d1 = 4; d2 = 8; @@ -13301,7 +13310,7 @@ }, /turf/simulated/floor/plating, /area/maintenance/sublevel) -"xM" = ( +"xN" = ( /obj/structure/cable/green{ d1 = 4; d2 = 8; @@ -13315,7 +13324,7 @@ }, /turf/simulated/floor/plating, /area/maintenance/sublevel) -"xN" = ( +"xO" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 10 }, @@ -13329,161 +13338,11 @@ }, /turf/simulated/floor/plating, /area/maintenance/sublevel) -"xO" = ( -/obj/machinery/portable_atmospherics/canister/air, -/turf/simulated/floor/tiled, -/area/outpost/research/isolation_monitoring) "xP" = ( -/obj/machinery/portable_atmospherics/canister/carbon_dioxide, -/turf/simulated/floor/tiled, -/area/outpost/research/isolation_monitoring) -"xQ" = ( -/obj/machinery/portable_atmospherics/canister/nitrogen, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/sign/nosmoking_1{ - pixel_y = 32 - }, -/turf/simulated/floor/tiled, -/area/outpost/research/isolation_monitoring) -"xR" = ( -/obj/structure/cable/blue{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/cable/blue{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/turf/simulated/floor/tiled, -/area/outpost/research/isolation_monitoring) -"xS" = ( -/obj/structure/cable/blue{ - d2 = 8; - icon_state = "0-8" - }, -/obj/machinery/power/apc{ - dir = 1; - name = "north bump"; - pixel_x = 0; - pixel_y = 24 - }, -/turf/simulated/floor/tiled, -/area/outpost/research/isolation_monitoring) -"xT" = ( -/obj/machinery/atmospherics/pipe/simple/visible/scrubbers, -/obj/machinery/atmospherics/pipe/simple/visible/supply, -/turf/simulated/floor/tiled, -/area/outpost/research/isolation_monitoring) -"xU" = ( -/obj/structure/table/standard, -/obj/item/weapon/paper_bin, -/obj/item/weapon/tape_roll, -/turf/simulated/floor/tiled, -/area/outpost/research/isolation_monitoring) -"xV" = ( -/turf/simulated/floor/tiled, -/area/outpost/research/isolation_monitoring) -"xW" = ( -/obj/structure/closet/crate/bin, -/turf/simulated/floor/tiled, -/area/outpost/research/isolation_monitoring) -"xX" = ( -/obj/machinery/atmospherics/pipe/simple/visible/yellow, -/obj/structure/filingcabinet/filingcabinet, -/turf/simulated/floor/tiled, -/area/outpost/research/isolation_monitoring) -"xY" = ( -/obj/structure/disposaloutlet{ - dir = 1 - }, -/obj/structure/disposalpipe/trunk, -/obj/structure/disposalpipe/trunk, +/obj/machinery/light, /turf/simulated/floor/asteroid/ash/rocky, -/area/mine/unexplored) -"xZ" = ( -/obj/structure/table/standard, -/obj/item/weapon/scalpel, -/obj/item/weapon/autopsy_scanner, -/turf/simulated/floor/tiled/dark, -/area/medical/virology) -"ya" = ( -/obj/machinery/optable, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 4 - }, -/turf/simulated/floor/tiled/dark, -/area/medical/virology) -"yb" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 10 - }, -/turf/simulated/floor/tiled/dark, -/area/medical/virology) -"yc" = ( -/obj/machinery/door/firedoor, -/obj/structure/grille, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/window/reinforced, -/turf/simulated/floor/plating, -/area/medical/virology) -"yd" = ( -/obj/machinery/door/firedoor, -/obj/structure/grille, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/window/reinforced, -/turf/simulated/floor/plating, -/area/medical/virology) -"ye" = ( -/obj/machinery/door/firedoor, -/obj/structure/grille, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/medical/virology) -"yf" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/plating, -/area/maintenance/sublevel) -"yg" = ( -/obj/machinery/door/firedoor, -/obj/structure/grille, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced, -/turf/simulated/floor/plating, -/area/maintenance/sublevel) -"yh" = ( +/area/outpost/research/eva) +"xQ" = ( /obj/effect/floor_decal/industrial/warning/dust{ icon_state = "warning_dust"; dir = 9 @@ -13491,8 +13350,8 @@ /turf/simulated/floor/tiled/airless{ icon_state = "asteroidfloor" }, -/area/mine/unexplored) -"yi" = ( +/area/outpost/research/eva) +"xR" = ( /obj/machinery/access_button{ command = "cycle_exterior"; frequency = 1379; @@ -13509,8 +13368,8 @@ /turf/simulated/floor/tiled/airless{ icon_state = "asteroidfloor" }, -/area/mine/unexplored) -"yj" = ( +/area/outpost/research/eva) +"xS" = ( /obj/effect/floor_decal/industrial/warning/dust{ icon_state = "warning_dust"; dir = 5 @@ -13518,171 +13377,165 @@ /turf/simulated/floor/tiled/airless{ icon_state = "asteroidfloor" }, -/area/mine/unexplored) -"yk" = ( -/obj/structure/grille, -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/window/reinforced{ - icon_state = "rwindow"; - dir = 4 - }, -/obj/machinery/door/firedoor, -/obj/machinery/door/blast/regular{ - density = 0; - dir = 1; - icon_state = "pdoor0"; - id = "Biohazard"; - name = "Biohazard Shutter"; - opacity = 0 - }, -/turf/simulated/floor/plating, -/area/outpost/research/hallway) -"yl" = ( -/obj/effect/floor_decal/corner/mauve{ - icon_state = "corner_white"; - dir = 9 - }, -/turf/simulated/floor/tiled/white, -/area/outpost/research/hallway) -"ym" = ( -/obj/effect/floor_decal/corner/mauve{ - icon_state = "corner_white"; - dir = 6 - }, -/turf/simulated/floor/tiled/white, -/area/outpost/research/hallway) -"yn" = ( -/obj/machinery/portable_atmospherics/canister/phoron, +/area/outpost/research/eva) +"xT" = ( +/obj/machinery/portable_atmospherics/canister/air, /turf/simulated/floor/tiled, /area/outpost/research/isolation_monitoring) -"yo" = ( -/obj/machinery/portable_atmospherics/canister/sleeping_agent, +"xU" = ( +/obj/machinery/portable_atmospherics/canister/carbon_dioxide, /turf/simulated/floor/tiled, /area/outpost/research/isolation_monitoring) -"yp" = ( -/obj/machinery/portable_atmospherics/canister/oxygen, +"xV" = ( +/obj/machinery/portable_atmospherics/canister/nitrogen, /obj/structure/window/reinforced{ dir = 4 }, +/obj/structure/sign/nosmoking_1{ + pixel_y = 32 + }, /turf/simulated/floor/tiled, /area/outpost/research/isolation_monitoring) -"yq" = ( +"xW" = ( /obj/structure/cable/blue{ d1 = 1; d2 = 2; icon_state = "1-2" }, -/turf/simulated/floor/tiled, -/area/outpost/research/isolation_monitoring) -"yr" = ( -/obj/structure/table/standard, -/obj/item/weapon/storage/firstaid/regular, -/turf/simulated/floor/tiled, -/area/outpost/research/isolation_monitoring) -"ys" = ( -/obj/structure/bed/chair/office/light, -/turf/simulated/floor/tiled, -/area/outpost/research/isolation_monitoring) -"yt" = ( -/obj/machinery/hologram/holopad, -/turf/simulated/floor/tiled, -/area/outpost/research/isolation_monitoring) -"yu" = ( -/obj/machinery/atmospherics/pipe/simple/visible/yellow, -/obj/machinery/light_switch{ - pixel_x = 27; - pixel_y = 0 +/obj/structure/cable/blue{ + d1 = 1; + d2 = 4; + icon_state = "1-4" }, /turf/simulated/floor/tiled, /area/outpost/research/isolation_monitoring) -"yv" = ( -/obj/structure/disposalpipe/segment, -/turf/simulated/wall/r_wall, -/area/medical/virology) -"yw" = ( -/turf/simulated/wall, -/area/medical/virology) -"yx" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/door/blast/regular{ - density = 0; +"xX" = ( +/obj/structure/cable/blue{ + d2 = 8; + icon_state = "0-8" + }, +/obj/machinery/power/apc{ dir = 1; - icon_state = "pdoor0"; - id = "virologyquar"; - name = "Virology Emergency Quarantine Blast Doors"; - opacity = 0 + name = "north bump"; + pixel_x = 0; + pixel_y = 24 }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/door/airlock/medical{ - name = "Virology Morgue"; - req_access = list(5) - }, -/obj/machinery/door/firedoor, -/turf/simulated/floor/tiled/white, -/area/medical/virology) -"yy" = ( -/obj/structure/sign/biohazard{ - pixel_x = -32 - }, -/obj/machinery/camera/network/medbay{ - c_tag = "Medical - Virology Entrance"; - dir = 5; - icon_state = "camera" - }, -/obj/effect/floor_decal/corner/lime/full{ - icon_state = "corner_white_full"; - dir = 8 - }, -/obj/structure/flora/pottedplant/random, -/turf/simulated/floor/tiled/white, -/area/medical/virology) -"yz" = ( -/obj/effect/floor_decal/corner/lime{ - icon_state = "corner_white"; - dir = 5 - }, -/obj/structure/closet/emcloset, -/turf/simulated/floor/tiled/white, -/area/medical/virology) -"yA" = ( +/turf/simulated/floor/tiled, +/area/outpost/research/isolation_monitoring) +"xY" = ( +/obj/machinery/atmospherics/pipe/simple/visible/scrubbers, +/obj/machinery/atmospherics/pipe/simple/visible/supply, +/turf/simulated/floor/tiled, +/area/outpost/research/isolation_monitoring) +"xZ" = ( /obj/structure/table/standard, -/obj/effect/floor_decal/corner/lime{ - icon_state = "corner_white"; - dir = 5 - }, -/obj/machinery/atmospherics/unary/vent_scrubber/on, -/obj/machinery/light{ +/obj/item/weapon/paper_bin, +/obj/item/weapon/tape_roll, +/turf/simulated/floor/tiled, +/area/outpost/research/isolation_monitoring) +"ya" = ( +/turf/simulated/floor/tiled, +/area/outpost/research/isolation_monitoring) +"yb" = ( +/obj/structure/closet/crate/bin, +/turf/simulated/floor/tiled, +/area/outpost/research/isolation_monitoring) +"yc" = ( +/obj/machinery/atmospherics/pipe/simple/visible/yellow, +/obj/structure/filingcabinet/filingcabinet, +/turf/simulated/floor/tiled, +/area/outpost/research/isolation_monitoring) +"yd" = ( +/obj/structure/disposaloutlet{ dir = 1 }, -/turf/simulated/floor/tiled/white, +/obj/structure/disposalpipe/trunk, +/obj/structure/disposalpipe/trunk, +/turf/simulated/floor/asteroid/ash/rocky, +/area/mine/unexplored) +"ye" = ( +/obj/structure/table/standard, +/obj/item/weapon/scalpel, +/obj/item/weapon/autopsy_scanner, +/turf/simulated/floor/tiled/dark, /area/medical/virology) -"yB" = ( -/obj/structure/bed/chair, -/obj/effect/floor_decal/corner/lime{ - icon_state = "corner_white"; - dir = 5 +"yf" = ( +/obj/machinery/optable, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 4 }, -/turf/simulated/floor/tiled/white, +/turf/simulated/floor/tiled/dark, /area/medical/virology) -"yC" = ( -/obj/effect/floor_decal/corner/lime{ - icon_state = "corner_white"; - dir = 5 +"yg" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 }, -/obj/structure/flora/pottedplant/random, -/turf/simulated/floor/tiled/white, +/turf/simulated/floor/tiled/dark, /area/medical/virology) -"yD" = ( -/turf/simulated/floor/tiled, -/area/turbolift/medical_sub) -"yE" = ( +"yh" = ( +/obj/machinery/door/firedoor, +/obj/structure/grille, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/window/reinforced, +/turf/simulated/floor/plating, +/area/medical/virology) +"yi" = ( +/obj/machinery/door/firedoor, +/obj/structure/grille, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/window/reinforced, +/turf/simulated/floor/plating, +/area/medical/virology) +"yj" = ( +/obj/machinery/door/firedoor, +/obj/structure/grille, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/window/reinforced, +/obj/structure/window/reinforced{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/medical/virology) +"yk" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/plating, +/area/maintenance/sublevel) +"yl" = ( +/obj/machinery/door/firedoor, +/obj/structure/grille, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/window/reinforced, +/turf/simulated/floor/plating, +/area/maintenance/sublevel) +"ym" = ( /turf/simulated/wall/r_wall, /area/outpost/research/eva) -"yF" = ( +"yn" = ( /obj/structure/window/reinforced{ dir = 4 }, @@ -13707,7 +13560,7 @@ }, /turf/simulated/floor/plating, /area/outpost/research/eva) -"yG" = ( +"yo" = ( /obj/machinery/door/firedoor{ dir = 2 }, @@ -13728,47 +13581,57 @@ }, /turf/simulated/floor/tiled, /area/outpost/research/eva) -"yH" = ( -/turf/simulated/wall/r_wall, -/area/outpost/research/hallway) -"yI" = ( -/obj/machinery/light{ - dir = 4; - icon_state = "tube1" - }, -/obj/machinery/camera/network/research_outpost{ - c_tag = "Research Sublevel - Corridor Camera 4"; +"yp" = ( +/obj/structure/grille, +/obj/structure/window/reinforced, +/obj/structure/window/reinforced{ dir = 8 }, -/obj/effect/floor_decal/corner/paleblue{ +/obj/structure/window/reinforced{ + icon_state = "rwindow"; + dir = 4 + }, +/obj/machinery/door/firedoor, +/obj/machinery/door/blast/regular{ + density = 0; + dir = 1; + icon_state = "pdoor0"; + id = "Biohazard"; + name = "Biohazard Shutter"; + opacity = 0 + }, +/turf/simulated/floor/plating, +/area/outpost/research/hallway) +"yq" = ( +/obj/effect/floor_decal/corner/mauve{ + icon_state = "corner_white"; + dir = 9 + }, +/turf/simulated/floor/tiled/white, +/area/outpost/research/hallway) +"yr" = ( +/obj/effect/floor_decal/corner/mauve{ icon_state = "corner_white"; dir = 6 }, /turf/simulated/floor/tiled/white, /area/outpost/research/hallway) -"yJ" = ( -/obj/machinery/atmospherics/portables_connector{ +"ys" = ( +/obj/machinery/portable_atmospherics/canister/phoron, +/turf/simulated/floor/tiled, +/area/outpost/research/isolation_monitoring) +"yt" = ( +/obj/machinery/portable_atmospherics/canister/sleeping_agent, +/turf/simulated/floor/tiled, +/area/outpost/research/isolation_monitoring) +"yu" = ( +/obj/machinery/portable_atmospherics/canister/oxygen, +/obj/structure/window/reinforced{ dir = 4 }, /turf/simulated/floor/tiled, /area/outpost/research/isolation_monitoring) -"yK" = ( -/obj/machinery/atmospherics/binary/pump{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/outpost/research/isolation_monitoring) -"yL" = ( -/obj/machinery/atmospherics/pipe/manifold/visible/yellow{ - icon_state = "map"; - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/outpost/research/isolation_monitoring) -"yM" = ( -/obj/machinery/atmospherics/binary/pump{ - dir = 8 - }, +"yv" = ( /obj/structure/cable/blue{ d1 = 1; d2 = 2; @@ -13776,101 +13639,36 @@ }, /turf/simulated/floor/tiled, /area/outpost/research/isolation_monitoring) -"yN" = ( -/obj/machinery/atmospherics/pipe/simple/visible/universal{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/outpost/research/isolation_monitoring) -"yO" = ( -/obj/machinery/atmospherics/pipe/simple/visible/scrubbers, -/obj/machinery/atmospherics/pipe/manifold/visible/supply, -/turf/simulated/floor/tiled, -/area/outpost/research/isolation_monitoring) -"yP" = ( +"yw" = ( /obj/structure/table/standard, -/obj/item/device/flashlight/lamp, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 8 - }, +/obj/item/weapon/storage/firstaid/regular, /turf/simulated/floor/tiled, /area/outpost/research/isolation_monitoring) -"yQ" = ( -/obj/structure/table/standard, -/obj/item/clothing/gloves/latex, +"yx" = ( +/obj/structure/bed/chair/office/light, /turf/simulated/floor/tiled, /area/outpost/research/isolation_monitoring) -"yR" = ( -/obj/structure/table/standard, -/obj/machinery/computer/atmoscontrol/laptop{ - monitored_alarm_ids = list("isolation_one","isolation_two","isolation_three"); - req_one_access = list(47,24,11) - }, +"yy" = ( +/obj/machinery/hologram/holopad, /turf/simulated/floor/tiled, /area/outpost/research/isolation_monitoring) -"yS" = ( -/obj/structure/table/standard, -/obj/item/weapon/folder/purple, -/obj/item/device/camera, -/obj/item/weapon/pen, -/turf/simulated/floor/tiled, -/area/outpost/research/isolation_monitoring) -"yT" = ( +"yz" = ( /obj/machinery/atmospherics/pipe/simple/visible/yellow, -/obj/machinery/camera/network/research_outpost{ - c_tag = "Research Sublevel - Isolation Starboard"; - dir = 8 - }, -/obj/machinery/requests_console{ - department = "Xenoarcheology"; - departmentType = 5; - pixel_x = 32; +/obj/machinery/light_switch{ + pixel_x = 27; pixel_y = 0 }, /turf/simulated/floor/tiled, /area/outpost/research/isolation_monitoring) -"yU" = ( -/obj/structure/table/standard, -/obj/item/weapon/storage/box/beakers, -/obj/item/weapon/storage/box/syringes{ - pixel_x = 4; - pixel_y = 4 - }, -/obj/item/weapon/reagent_containers/dropper, -/obj/effect/floor_decal/corner/lime/full{ - icon_state = "corner_white_full"; - dir = 8 - }, -/turf/simulated/floor/tiled/white, -/area/medical/virology) -"yV" = ( +"yA" = ( /obj/structure/disposalpipe/segment, -/obj/effect/floor_decal/corner/lime{ - icon_state = "corner_white"; - dir = 5 - }, -/turf/simulated/floor/tiled/white, +/turf/simulated/wall/r_wall, /area/medical/virology) -"yW" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on, -/obj/machinery/alarm{ - pixel_y = 22 - }, -/obj/effect/floor_decal/corner/lime{ - icon_state = "corner_white"; - dir = 5 - }, -/turf/simulated/floor/tiled/white, +"yB" = ( +/turf/simulated/wall, /area/medical/virology) -"yX" = ( -/obj/machinery/firealarm/north, -/obj/effect/floor_decal/corner/lime/full{ - icon_state = "corner_white_full"; - dir = 1 - }, -/turf/simulated/floor/tiled/white, -/area/medical/virology) -"yY" = ( +"yC" = ( +/obj/structure/disposalpipe/segment, /obj/machinery/door/blast/regular{ density = 0; dir = 1; @@ -13879,181 +13677,71 @@ name = "Virology Emergency Quarantine Blast Doors"; opacity = 0 }, -/obj/machinery/door/airlock/glass_medical{ - name = "Virology Laboratory"; - req_access = list(39) - }, -/obj/effect/floor_decal/corner/lime{ - icon_state = "corner_white"; - dir = 9 - }, -/obj/effect/floor_decal/corner/lime{ - dir = 6 +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/door/airlock/medical{ + name = "Virology Morgue"; + req_access = list(5) }, /obj/machinery/door/firedoor, /turf/simulated/floor/tiled/white, /area/medical/virology) -"yZ" = ( +"yD" = ( +/obj/structure/sign/biohazard{ + pixel_x = -32 + }, +/obj/machinery/camera/network/medbay{ + c_tag = "Medical - Virology Entrance"; + dir = 5; + icon_state = "camera" + }, /obj/effect/floor_decal/corner/lime/full{ icon_state = "corner_white_full"; dir = 8 }, -/obj/machinery/light_switch{ - pixel_y = 27 - }, +/obj/structure/flora/pottedplant/random, /turf/simulated/floor/tiled/white, /area/medical/virology) -"za" = ( -/obj/machinery/alarm{ - pixel_y = 22 - }, +"yE" = ( /obj/effect/floor_decal/corner/lime{ icon_state = "corner_white"; dir = 5 }, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 4 - }, +/obj/structure/closet/emcloset, /turf/simulated/floor/tiled/white, /area/medical/virology) -"zb" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, +"yF" = ( +/obj/structure/table/standard, /obj/effect/floor_decal/corner/lime{ icon_state = "corner_white"; dir = 5 }, -/turf/simulated/floor/tiled/white, -/area/medical/virology) -"zc" = ( -/obj/structure/closet/l3closet/virology, -/obj/item/clothing/mask/gas, -/obj/effect/floor_decal/corner/lime/full{ - icon_state = "corner_white_full"; - dir = 1 - }, -/obj/machinery/embedded_controller/radio/airlock/access_controller{ - id_tag = "virology_airlock_control"; - name = "Virology Access Console"; - pixel_x = 26; - pixel_y = 0; - tag_exterior_door = "virology_airlock_exterior"; - tag_interior_door = "virology_airlock_interior" - }, -/turf/simulated/floor/tiled/white, -/area/medical/virology) -"zd" = ( -/obj/structure/closet/l3closet/virology, -/obj/item/clothing/mask/gas, /obj/machinery/atmospherics/unary/vent_scrubber/on, -/obj/machinery/camera/network/medbay{ - c_tag = "Medical - Virology Airlock"; - dir = 5; - icon_state = "camera" - }, -/obj/effect/floor_decal/industrial/warning{ - icon_state = "warning"; - dir = 9 - }, -/turf/simulated/floor/tiled/white, -/area/medical/virology) -"ze" = ( -/obj/structure/closet/l3closet/virology, -/obj/item/clothing/mask/gas, -/obj/machinery/alarm{ - pixel_y = 22 - }, /obj/machinery/light{ dir = 1 }, -/obj/effect/floor_decal/industrial/warning{ - dir = 1 - }, /turf/simulated/floor/tiled/white, /area/medical/virology) -"zf" = ( -/obj/structure/closet/wardrobe/virology_white, -/obj/effect/floor_decal/industrial/warning{ - dir = 5 - }, -/turf/simulated/floor/tiled/white, -/area/medical/virology) -"zg" = ( +"yG" = ( +/obj/structure/bed/chair, /obj/effect/floor_decal/corner/lime{ icon_state = "corner_white"; - dir = 9 + dir = 5 }, -/obj/machinery/firealarm/west, /turf/simulated/floor/tiled/white, /area/medical/virology) -"zh" = ( -/turf/simulated/floor/tiled/white, -/area/medical/virology) -"zi" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/tiled/white, -/area/medical/virology) -"zj" = ( -/obj/machinery/light/small{ - dir = 1 +"yH" = ( +/obj/effect/floor_decal/corner/lime{ + icon_state = "corner_white"; + dir = 5 }, +/obj/structure/flora/pottedplant/random, +/turf/simulated/floor/tiled/white, +/area/medical/virology) +"yI" = ( /turf/simulated/floor/tiled, /area/turbolift/medical_sub) -"zk" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/obj/machinery/power/apc{ - dir = 8; - name = "west bump"; - pixel_x = -24 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 5 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 5 - }, -/turf/simulated/floor/plating, -/area/maintenance/sublevel) -"zl" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/door/firedoor, -/turf/simulated/floor/plating, -/area/maintenance/sublevel) -"zm" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 9; - pixel_y = 0 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 9 - }, -/turf/simulated/floor/plating, -/area/maintenance/sublevel) -"zn" = ( +"yJ" = ( /obj/machinery/light/small{ dir = 8 }, @@ -14078,14 +13766,14 @@ }, /turf/simulated/floor/tiled, /area/outpost/research/eva) -"zo" = ( +"yK" = ( /obj/machinery/atmospherics/pipe/manifold/hidden{ dir = 1; icon_state = "map" }, /turf/simulated/floor/tiled, /area/outpost/research/eva) -"zp" = ( +"yL" = ( /obj/machinery/atmospherics/unary/vent_pump/high_volume{ dir = 8; frequency = 1379; @@ -14094,7 +13782,399 @@ /obj/structure/closet/walllocker/emerglocker/east, /turf/simulated/floor/tiled, /area/outpost/research/eva) +"yM" = ( +/turf/simulated/wall/r_wall, +/area/outpost/research/hallway) +"yN" = ( +/obj/machinery/light{ + dir = 4; + icon_state = "tube1" + }, +/obj/machinery/camera/network/research_outpost{ + c_tag = "Research Sublevel - Corridor Camera 4"; + dir = 8 + }, +/obj/effect/floor_decal/corner/paleblue{ + icon_state = "corner_white"; + dir = 6 + }, +/turf/simulated/floor/tiled/white, +/area/outpost/research/hallway) +"yO" = ( +/obj/machinery/atmospherics/portables_connector{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/outpost/research/isolation_monitoring) +"yP" = ( +/obj/machinery/atmospherics/binary/pump{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/outpost/research/isolation_monitoring) +"yQ" = ( +/obj/machinery/atmospherics/pipe/manifold/visible/yellow{ + icon_state = "map"; + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/outpost/research/isolation_monitoring) +"yR" = ( +/obj/machinery/atmospherics/binary/pump{ + dir = 8 + }, +/obj/structure/cable/blue{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled, +/area/outpost/research/isolation_monitoring) +"yS" = ( +/obj/machinery/atmospherics/pipe/simple/visible/universal{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/outpost/research/isolation_monitoring) +"yT" = ( +/obj/machinery/atmospherics/pipe/simple/visible/scrubbers, +/obj/machinery/atmospherics/pipe/manifold/visible/supply, +/turf/simulated/floor/tiled, +/area/outpost/research/isolation_monitoring) +"yU" = ( +/obj/structure/table/standard, +/obj/item/device/flashlight/lamp, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/outpost/research/isolation_monitoring) +"yV" = ( +/obj/structure/table/standard, +/obj/item/clothing/gloves/latex, +/turf/simulated/floor/tiled, +/area/outpost/research/isolation_monitoring) +"yW" = ( +/obj/structure/table/standard, +/obj/machinery/computer/atmoscontrol/laptop{ + monitored_alarm_ids = list("isolation_one","isolation_two","isolation_three"); + req_one_access = list(47,24,11) + }, +/turf/simulated/floor/tiled, +/area/outpost/research/isolation_monitoring) +"yX" = ( +/obj/structure/table/standard, +/obj/item/weapon/folder/purple, +/obj/item/device/camera, +/obj/item/weapon/pen, +/turf/simulated/floor/tiled, +/area/outpost/research/isolation_monitoring) +"yY" = ( +/obj/machinery/atmospherics/pipe/simple/visible/yellow, +/obj/machinery/camera/network/research_outpost{ + c_tag = "Research Sublevel - Isolation Starboard"; + dir = 8 + }, +/obj/machinery/requests_console{ + department = "Xenoarcheology"; + departmentType = 5; + pixel_x = 32; + pixel_y = 0 + }, +/turf/simulated/floor/tiled, +/area/outpost/research/isolation_monitoring) +"yZ" = ( +/obj/structure/table/standard, +/obj/item/weapon/storage/box/beakers, +/obj/item/weapon/storage/box/syringes{ + pixel_x = 4; + pixel_y = 4 + }, +/obj/item/weapon/reagent_containers/dropper, +/obj/effect/floor_decal/corner/lime/full{ + icon_state = "corner_white_full"; + dir = 8 + }, +/turf/simulated/floor/tiled/white, +/area/medical/virology) +"za" = ( +/obj/structure/disposalpipe/segment, +/obj/effect/floor_decal/corner/lime{ + icon_state = "corner_white"; + dir = 5 + }, +/turf/simulated/floor/tiled/white, +/area/medical/virology) +"zb" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on, +/obj/machinery/alarm{ + pixel_y = 22 + }, +/obj/effect/floor_decal/corner/lime{ + icon_state = "corner_white"; + dir = 5 + }, +/turf/simulated/floor/tiled/white, +/area/medical/virology) +"zc" = ( +/obj/machinery/firealarm/north, +/obj/effect/floor_decal/corner/lime/full{ + icon_state = "corner_white_full"; + dir = 1 + }, +/turf/simulated/floor/tiled/white, +/area/medical/virology) +"zd" = ( +/obj/machinery/door/blast/regular{ + density = 0; + dir = 1; + icon_state = "pdoor0"; + id = "virologyquar"; + name = "Virology Emergency Quarantine Blast Doors"; + opacity = 0 + }, +/obj/machinery/door/airlock/glass_medical{ + name = "Virology Laboratory"; + req_access = list(39) + }, +/obj/effect/floor_decal/corner/lime{ + icon_state = "corner_white"; + dir = 9 + }, +/obj/effect/floor_decal/corner/lime{ + dir = 6 + }, +/obj/machinery/door/firedoor, +/turf/simulated/floor/tiled/white, +/area/medical/virology) +"ze" = ( +/obj/effect/floor_decal/corner/lime/full{ + icon_state = "corner_white_full"; + dir = 8 + }, +/obj/machinery/light_switch{ + pixel_y = 27 + }, +/turf/simulated/floor/tiled/white, +/area/medical/virology) +"zf" = ( +/obj/machinery/alarm{ + pixel_y = 22 + }, +/obj/effect/floor_decal/corner/lime{ + icon_state = "corner_white"; + dir = 5 + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/medical/virology) +"zg" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/effect/floor_decal/corner/lime{ + icon_state = "corner_white"; + dir = 5 + }, +/turf/simulated/floor/tiled/white, +/area/medical/virology) +"zh" = ( +/obj/structure/closet/l3closet/virology, +/obj/item/clothing/mask/gas, +/obj/effect/floor_decal/corner/lime/full{ + icon_state = "corner_white_full"; + dir = 1 + }, +/obj/machinery/embedded_controller/radio/airlock/access_controller{ + id_tag = "virology_airlock_control"; + name = "Virology Access Console"; + pixel_x = 26; + pixel_y = 0; + tag_exterior_door = "virology_airlock_exterior"; + tag_interior_door = "virology_airlock_interior" + }, +/turf/simulated/floor/tiled/white, +/area/medical/virology) +"zi" = ( +/obj/structure/closet/l3closet/virology, +/obj/item/clothing/mask/gas, +/obj/machinery/atmospherics/unary/vent_scrubber/on, +/obj/machinery/camera/network/medbay{ + c_tag = "Medical - Virology Airlock"; + dir = 5; + icon_state = "camera" + }, +/obj/effect/floor_decal/industrial/warning{ + icon_state = "warning"; + dir = 9 + }, +/turf/simulated/floor/tiled/white, +/area/medical/virology) +"zj" = ( +/obj/structure/closet/l3closet/virology, +/obj/item/clothing/mask/gas, +/obj/machinery/alarm{ + pixel_y = 22 + }, +/obj/machinery/light{ + dir = 1 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/turf/simulated/floor/tiled/white, +/area/medical/virology) +"zk" = ( +/obj/structure/closet/wardrobe/virology_white, +/obj/effect/floor_decal/industrial/warning{ + dir = 5 + }, +/turf/simulated/floor/tiled/white, +/area/medical/virology) +"zl" = ( +/obj/effect/floor_decal/corner/lime{ + icon_state = "corner_white"; + dir = 9 + }, +/obj/machinery/firealarm/west, +/turf/simulated/floor/tiled/white, +/area/medical/virology) +"zm" = ( +/turf/simulated/floor/tiled/white, +/area/medical/virology) +"zn" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled/white, +/area/medical/virology) +"zo" = ( +/obj/machinery/light/small{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/turbolift/medical_sub) +"zp" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/machinery/power/apc{ + dir = 8; + name = "west bump"; + pixel_x = -24 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/turf/simulated/floor/plating, +/area/maintenance/sublevel) "zq" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/door/firedoor, +/turf/simulated/floor/plating, +/area/maintenance/sublevel) +"zr" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9; + pixel_y = 0 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/turf/simulated/floor/plating, +/area/maintenance/sublevel) +"zs" = ( +/obj/effect/floor_decal/industrial/warning/dust{ + icon_state = "warning_dust"; + dir = 9 + }, +/obj/machinery/mech_recharger, +/turf/simulated/floor/tiled/airless{ + icon_state = "asteroidfloor" + }, +/area/outpost/research/eva) +"zt" = ( +/obj/effect/floor_decal/industrial/warning/dust{ + icon_state = "warning_dust"; + dir = 1 + }, +/obj/structure/table/steel, +/turf/simulated/floor/tiled/airless{ + icon_state = "asteroidfloor" + }, +/area/outpost/research/eva) +"zu" = ( +/obj/structure/table/steel, +/obj/machinery/cell_charger{ + pixel_y = 5 + }, +/obj/effect/floor_decal/industrial/warning/dust{ + icon_state = "warning_dust"; + dir = 5 + }, +/turf/simulated/floor/tiled/airless{ + icon_state = "asteroidfloor" + }, +/area/outpost/research/eva) +"zv" = ( +/obj/machinery/airlock_sensor{ + frequency = 1379; + id_tag = "research_sensor"; + master_tag = "research_airlock"; + pixel_x = -25; + pixel_y = 0 + }, +/obj/machinery/atmospherics/unary/vent_pump/high_volume{ + dir = 4; + frequency = 1379; + id_tag = "research_pump" + }, +/obj/effect/floor_decal/industrial/warning, +/turf/simulated/floor/tiled, +/area/outpost/research/eva) +"zw" = ( +/obj/machinery/atmospherics/pipe/manifold4w/hidden, +/obj/effect/floor_decal/industrial/warning, +/turf/simulated/floor/tiled, +/area/outpost/research/eva) +"zx" = ( +/obj/structure/ore_box, +/obj/machinery/atmospherics/unary/vent_pump/high_volume{ + dir = 8; + frequency = 1379; + id_tag = "research_pump" + }, +/obj/structure/sign/vacuum{ + pixel_x = 32 + }, +/obj/effect/floor_decal/industrial/warning, +/turf/simulated/floor/tiled, +/area/outpost/research/eva) +"zy" = ( /obj/effect/floor_decal/corner/mauve{ icon_state = "corner_white"; dir = 9 @@ -14105,7 +14185,7 @@ }, /turf/simulated/floor/tiled/white, /area/outpost/research/hallway) -"zr" = ( +"zz" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ dir = 8 @@ -14117,7 +14197,7 @@ }, /turf/simulated/floor/tiled/white, /area/outpost/research/hallway) -"zs" = ( +"zA" = ( /obj/machinery/atmospherics/unary/vent_scrubber/on{ dir = 8 }, @@ -14127,7 +14207,7 @@ }, /turf/simulated/floor/tiled/white, /area/outpost/research/hallway) -"zt" = ( +"zB" = ( /obj/machinery/atmospherics/portables_connector{ dir = 4 }, @@ -14141,17 +14221,17 @@ }, /turf/simulated/floor/tiled, /area/outpost/research/isolation_monitoring) -"zu" = ( +"zC" = ( /obj/machinery/atmospherics/binary/pump{ dir = 8 }, /turf/simulated/floor/tiled, /area/outpost/research/isolation_monitoring) -"zv" = ( +"zD" = ( /obj/machinery/atmospherics/pipe/manifold4w/visible/yellow, /turf/simulated/floor/tiled, /area/outpost/research/isolation_monitoring) -"zw" = ( +"zE" = ( /obj/machinery/atmospherics/binary/pump{ dir = 4 }, @@ -14162,17 +14242,17 @@ }, /turf/simulated/floor/tiled, /area/outpost/research/isolation_monitoring) -"zx" = ( +"zF" = ( /obj/machinery/atmospherics/pipe/manifold/visible/scrubbers, /turf/simulated/floor/tiled, /area/outpost/research/isolation_monitoring) -"zy" = ( +"zG" = ( /obj/machinery/atmospherics/unary/vent_scrubber/on{ dir = 8 }, /turf/simulated/floor/tiled, /area/outpost/research/isolation_monitoring) -"zz" = ( +"zH" = ( /obj/machinery/atmospherics/omni/filter{ tag_east = 1; tag_south = 2; @@ -14180,13 +14260,13 @@ }, /turf/simulated/floor/tiled, /area/outpost/research/isolation_monitoring) -"zA" = ( +"zI" = ( /obj/machinery/atmospherics/portables_connector{ dir = 8 }, /turf/simulated/floor/tiled, /area/outpost/research/isolation_monitoring) -"zB" = ( +"zJ" = ( /obj/machinery/alarm{ dir = 8; icon_state = "alarm0"; @@ -14199,7 +14279,7 @@ /obj/machinery/atmospherics/pipe/simple/visible/yellow, /turf/simulated/floor/tiled, /area/outpost/research/isolation_monitoring) -"zC" = ( +"zK" = ( /obj/structure/table/standard, /obj/item/weapon/reagent_containers/spray/cleaner, /obj/item/device/antibody_scanner, @@ -14209,21 +14289,21 @@ }, /turf/simulated/floor/tiled/white, /area/medical/virology) -"zD" = ( +"zL" = ( /obj/structure/disposalpipe/junction{ dir = 1; icon_state = "pipe-j1" }, /turf/simulated/floor/tiled/white, /area/medical/virology) -"zE" = ( +"zM" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/tiled/white, /area/medical/virology) -"zF" = ( +"zN" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, @@ -14237,7 +14317,7 @@ }, /turf/simulated/floor/tiled/white, /area/medical/virology) -"zG" = ( +"zO" = ( /obj/structure/grille, /obj/structure/window/reinforced, /obj/structure/window/reinforced{ @@ -14263,7 +14343,7 @@ /obj/machinery/door/firedoor, /turf/simulated/floor/plating, /area/medical/virology) -"zH" = ( +"zP" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, @@ -14281,14 +14361,14 @@ }, /turf/simulated/floor/tiled/white, /area/medical/virology) -"zI" = ( +"zQ" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, /obj/machinery/atmospherics/unary/vent_pump/on, /turf/simulated/floor/tiled/white, /area/medical/virology) -"zJ" = ( +"zR" = ( /obj/machinery/atmospherics/pipe/manifold/hidden/supply{ dir = 8 }, @@ -14301,7 +14381,7 @@ }, /turf/simulated/floor/tiled/white, /area/medical/virology) -"zK" = ( +"zS" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, @@ -14313,7 +14393,7 @@ }, /turf/simulated/floor/tiled/white, /area/medical/virology) -"zL" = ( +"zT" = ( /obj/machinery/door/airlock/medical{ autoclose = 0; frequency = 1379; @@ -14332,7 +14412,7 @@ /obj/machinery/door/firedoor, /turf/simulated/floor/tiled/white, /area/medical/virology) -"zM" = ( +"zU" = ( /obj/machinery/access_button{ command = "cycle_interior"; frequency = 1379; @@ -14348,7 +14428,7 @@ /obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, /turf/simulated/floor/tiled/white, /area/medical/virology) -"zN" = ( +"zV" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, @@ -14362,7 +14442,7 @@ }, /turf/simulated/floor/tiled/white, /area/medical/virology) -"zO" = ( +"zW" = ( /obj/machinery/atmospherics/pipe/manifold/hidden/supply{ dir = 1 }, @@ -14376,7 +14456,7 @@ }, /turf/simulated/floor/tiled/white, /area/medical/virology) -"zP" = ( +"zX" = ( /obj/machinery/door/airlock/medical{ autoclose = 0; frequency = 1379; @@ -14409,7 +14489,7 @@ /obj/machinery/door/firedoor, /turf/simulated/floor/tiled/white, /area/medical/virology) -"zQ" = ( +"zY" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, @@ -14428,7 +14508,7 @@ /obj/effect/floor_decal/sign/v, /turf/simulated/floor/tiled/white, /area/medical/virology) -"zR" = ( +"zZ" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 }, @@ -14442,7 +14522,7 @@ }, /turf/simulated/floor/tiled/white, /area/medical/virology) -"zS" = ( +"Aa" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, @@ -14454,7 +14534,7 @@ /obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, /turf/simulated/floor/tiled/white, /area/medical/virology) -"zT" = ( +"Ab" = ( /obj/structure/cable/green{ d1 = 2; d2 = 8; @@ -14468,7 +14548,7 @@ }, /turf/simulated/floor/tiled/white, /area/medical/virology) -"zU" = ( +"Ac" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/structure/cable/green{ @@ -14482,73 +14562,58 @@ }, /turf/simulated/floor/plating, /area/maintenance/sublevel) -"zV" = ( +"Ad" = ( +/obj/structure/grille, +/obj/structure/window/reinforced{ + icon_state = "rwindow"; + dir = 4 + }, +/obj/structure/window/reinforced, /obj/structure/window/reinforced{ dir = 8 }, -/obj/machinery/mech_recharger, -/obj/effect/floor_decal/industrial/warning/dust{ - icon_state = "warning_dust"; - dir = 9 - }, -/turf/simulated/floor/tiled/airless{ - icon_state = "asteroidfloor" - }, -/area/outpost/research/eva) -"zW" = ( -/obj/effect/floor_decal/industrial/warning/dust{ - icon_state = "warning_dust"; +/obj/structure/window/reinforced{ + icon_state = "rwindow"; dir = 1 }, -/turf/simulated/floor/tiled/airless{ - icon_state = "asteroidfloor" +/obj/machinery/door/firedoor{ + dir = 2 }, +/turf/simulated/floor/plating, /area/outpost/research/eva) -"zX" = ( -/obj/machinery/mech_recharger, -/obj/effect/floor_decal/industrial/warning/dust{ - icon_state = "warning_dust"; - dir = 5 +"Ae" = ( +/obj/machinery/door/firedoor{ + dir = 2 }, -/turf/simulated/floor/tiled/airless{ - icon_state = "asteroidfloor" - }, -/area/outpost/research/eva) -"zY" = ( -/obj/machinery/airlock_sensor{ +/obj/machinery/door/airlock/external{ frequency = 1379; - id_tag = "research_sensor"; - master_tag = "research_airlock"; - pixel_x = -25; - pixel_y = 0 + icon_state = "door_locked"; + id_tag = "research_inner"; + locked = 1; + name = "Research Outpost External Access" }, -/obj/machinery/atmospherics/unary/vent_pump/high_volume{ - dir = 4; - frequency = 1379; - id_tag = "research_pump" - }, -/obj/effect/floor_decal/industrial/warning, +/obj/machinery/atmospherics/pipe/simple/hidden, +/obj/machinery/atmospherics/pipe/simple/hidden, /turf/simulated/floor/tiled, /area/outpost/research/eva) -"zZ" = ( -/obj/machinery/atmospherics/pipe/manifold4w/hidden, -/obj/effect/floor_decal/industrial/warning, -/turf/simulated/floor/tiled, -/area/outpost/research/eva) -"Aa" = ( -/obj/structure/ore_box, -/obj/machinery/atmospherics/unary/vent_pump/high_volume{ - dir = 8; - frequency = 1379; - id_tag = "research_pump" +"Af" = ( +/obj/structure/window/reinforced{ + dir = 4 }, -/obj/structure/sign/vacuum{ - pixel_x = 32 +/obj/structure/window/reinforced{ + dir = 1 }, -/obj/effect/floor_decal/industrial/warning, -/turf/simulated/floor/tiled, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/window/reinforced, +/obj/structure/grille, +/obj/machinery/door/firedoor{ + dir = 2 + }, +/turf/simulated/floor/plating, /area/outpost/research/eva) -"Ab" = ( +"Ag" = ( /obj/effect/floor_decal/corner/paleblue{ icon_state = "corner_white"; dir = 9 @@ -14561,26 +14626,26 @@ }, /turf/simulated/floor/tiled/white, /area/outpost/research/hallway) -"Ac" = ( +"Ah" = ( /obj/machinery/atmospherics/unary/heater{ dir = 4 }, /turf/simulated/floor/tiled, /area/outpost/research/isolation_monitoring) -"Ad" = ( +"Ai" = ( /obj/machinery/atmospherics/pipe/simple/visible/yellow{ dir = 4 }, /turf/simulated/floor/tiled, /area/outpost/research/isolation_monitoring) -"Ae" = ( +"Aj" = ( /obj/machinery/atmospherics/pipe/manifold/visible/yellow{ icon_state = "map"; dir = 4 }, /turf/simulated/floor/tiled, /area/outpost/research/isolation_monitoring) -"Af" = ( +"Ak" = ( /obj/structure/cable/blue{ d1 = 4; d2 = 8; @@ -14588,7 +14653,7 @@ }, /turf/simulated/floor/tiled, /area/outpost/research/isolation_monitoring) -"Ag" = ( +"Al" = ( /obj/machinery/power/emitter{ anchored = 1; state = 2 @@ -14604,13 +14669,13 @@ }, /turf/simulated/floor/tiled, /area/outpost/research/isolation_monitoring) -"Ah" = ( +"Am" = ( /obj/machinery/atmospherics/portables_connector{ dir = 1 }, /turf/simulated/floor/tiled, /area/outpost/research/isolation_monitoring) -"Ai" = ( +"An" = ( /obj/machinery/atmospherics/pipe/simple/visible/yellow, /obj/machinery/newscaster{ pixel_x = 32; @@ -14618,7 +14683,7 @@ }, /turf/simulated/floor/tiled, /area/outpost/research/isolation_monitoring) -"Aj" = ( +"Ao" = ( /obj/structure/table/standard, /obj/item/weapon/storage/box/gloves, /obj/item/weapon/storage/box/masks, @@ -14626,7 +14691,7 @@ /obj/effect/floor_decal/corner/lime/full, /turf/simulated/floor/tiled/white, /area/medical/virology) -"Ak" = ( +"Ap" = ( /obj/structure/disposalpipe/segment, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 6 @@ -14640,7 +14705,7 @@ }, /turf/simulated/floor/tiled/white, /area/medical/virology) -"Al" = ( +"Aq" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, @@ -14651,7 +14716,7 @@ }, /turf/simulated/floor/tiled/white, /area/medical/virology) -"Am" = ( +"Ar" = ( /obj/machinery/atmospherics/pipe/manifold/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 @@ -14661,7 +14726,7 @@ }, /turf/simulated/floor/tiled/white, /area/medical/virology) -"An" = ( +"As" = ( /obj/machinery/door/blast/regular{ density = 0; dir = 1; @@ -14690,7 +14755,7 @@ /obj/machinery/door/firedoor, /turf/simulated/floor/tiled/white, /area/medical/virology) -"Ao" = ( +"At" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, @@ -14700,7 +14765,7 @@ /obj/effect/floor_decal/corner/lime/full, /turf/simulated/floor/tiled/white, /area/medical/virology) -"Ap" = ( +"Au" = ( /obj/machinery/atmospherics/pipe/manifold/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 @@ -14711,7 +14776,7 @@ }, /turf/simulated/floor/tiled/white, /area/medical/virology) -"Aq" = ( +"Av" = ( /obj/structure/disposalpipe/segment, /obj/machinery/atmospherics/pipe/manifold/hidden/supply{ dir = 4 @@ -14725,7 +14790,7 @@ }, /turf/simulated/floor/tiled/white, /area/medical/virology) -"Ar" = ( +"Aw" = ( /obj/structure/closet/l3closet/virology, /obj/item/clothing/mask/gas, /obj/effect/floor_decal/corner/lime/full{ @@ -14742,7 +14807,7 @@ }, /turf/simulated/floor/tiled/white, /area/medical/virology) -"As" = ( +"Ax" = ( /obj/machinery/shower{ dir = 1 }, @@ -14759,7 +14824,7 @@ }, /turf/simulated/floor/tiled/white, /area/medical/virology) -"At" = ( +"Ay" = ( /obj/machinery/shower{ dir = 1 }, @@ -14771,7 +14836,7 @@ }, /turf/simulated/floor/tiled/white, /area/medical/virology) -"Au" = ( +"Az" = ( /obj/machinery/shower{ dir = 1 }, @@ -14783,7 +14848,7 @@ }, /turf/simulated/floor/tiled/white, /area/medical/virology) -"Av" = ( +"AA" = ( /obj/machinery/button/remote/blast_door{ desc = "A remote control-switch for shutters."; id = "virologyquar"; @@ -14800,7 +14865,7 @@ }, /turf/simulated/floor/tiled/white, /area/medical/virology) -"Aw" = ( +"AB" = ( /obj/effect/floor_decal/corner/lime{ icon_state = "corner_white"; dir = 10 @@ -14810,13 +14875,13 @@ }, /turf/simulated/floor/tiled/white, /area/medical/virology) -"Ax" = ( +"AC" = ( /obj/effect/floor_decal/corner/lime{ dir = 10 }, /turf/simulated/floor/tiled/white, /area/medical/virology) -"Ay" = ( +"AD" = ( /obj/structure/cable/green{ d1 = 1; d2 = 2; @@ -14826,42 +14891,56 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/tiled/white, /area/medical/virology) -"Az" = ( +"AE" = ( /obj/machinery/light/small, /turf/simulated/floor/tiled, /area/turbolift/medical_sub) -"AA" = ( -/obj/machinery/door/firedoor{ - dir = 2 - }, -/obj/machinery/door/airlock/external{ - frequency = 1379; - icon_state = "door_locked"; - id_tag = "research_inner"; - locked = 1; - name = "Research Outpost External Access" - }, -/obj/machinery/atmospherics/pipe/simple/hidden, +"AF" = ( +/obj/machinery/suspension_gen, +/obj/effect/floor_decal/industrial/outline/yellow, /turf/simulated/floor/tiled, /area/outpost/research/eva) -"AB" = ( -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced{ +"AG" = ( +/turf/simulated/floor/tiled, +/area/outpost/research/eva) +"AH" = ( +/obj/effect/floor_decal/industrial/warning{ dir = 1 }, -/obj/structure/window/reinforced{ - dir = 8 +/obj/machinery/firealarm/west, +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 6 }, -/obj/structure/window/reinforced, -/obj/structure/grille, -/obj/machinery/door/firedoor{ - dir = 2 - }, -/turf/simulated/floor/plating, +/obj/machinery/recharge_station, +/turf/simulated/floor/tiled, /area/outpost/research/eva) -"AC" = ( +"AI" = ( +/obj/machinery/access_button{ + command = "cycle_interior"; + frequency = 1379; + master_tag = "research_airlock"; + name = "interior access button"; + pixel_x = 25; + pixel_y = 25; + req_one_access = list(13,65) + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 9; + icon_state = "intact" + }, +/turf/simulated/floor/tiled, +/area/outpost/research/eva) +"AJ" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/obj/machinery/portable_atmospherics/canister/oxygen, +/turf/simulated/floor/tiled, +/area/outpost/research/eva) +"AK" = ( /obj/effect/floor_decal/corner/mauve{ icon_state = "corner_white"; dir = 6 @@ -14869,18 +14948,18 @@ /obj/machinery/firealarm/east, /turf/simulated/floor/tiled/white, /area/outpost/research/hallway) -"AD" = ( +"AL" = ( /obj/machinery/atmospherics/unary/freezer{ dir = 4; icon_state = "freezer" }, /turf/simulated/floor/tiled, /area/outpost/research/isolation_monitoring) -"AE" = ( +"AM" = ( /obj/machinery/atmospherics/pipe/manifold/visible/yellow, /turf/simulated/floor/tiled, /area/outpost/research/isolation_monitoring) -"AF" = ( +"AN" = ( /obj/machinery/atmospherics/pipe/simple/visible/yellow{ dir = 4 }, @@ -14891,7 +14970,7 @@ }, /turf/simulated/floor/tiled, /area/outpost/research/isolation_monitoring) -"AG" = ( +"AO" = ( /obj/machinery/atmospherics/pipe/manifold/visible/yellow{ icon_state = "map"; dir = 1 @@ -14905,13 +14984,13 @@ }, /turf/simulated/floor/tiled, /area/outpost/research/isolation_monitoring) -"AH" = ( +"AP" = ( /obj/machinery/atmospherics/pipe/simple/visible/yellow{ dir = 9 }, /turf/simulated/floor/tiled, /area/outpost/research/isolation_monitoring) -"AI" = ( +"AQ" = ( /obj/structure/cable/green{ d2 = 2; icon_state = "0-2" @@ -14927,7 +15006,7 @@ }, /turf/simulated/floor/plating, /area/maintenance/sublevel) -"AJ" = ( +"AR" = ( /obj/machinery/power/smes/buildable{ RCon_tag = "Substation - \[F.4] Research" }, @@ -14941,13 +15020,13 @@ }, /turf/simulated/floor/plating, /area/maintenance/sublevel) -"AK" = ( +"AS" = ( /obj/machinery/power/breakerbox/activated{ RCon_tag = "\[F.4] Research Substation Bypass" }, /turf/simulated/floor/plating, /area/maintenance/sublevel) -"AL" = ( +"AT" = ( /obj/structure/grille, /obj/structure/window/reinforced, /obj/structure/window/reinforced{ @@ -14970,7 +15049,7 @@ }, /turf/simulated/floor/plating, /area/medical/virology) -"AM" = ( +"AU" = ( /obj/machinery/door/firedoor, /obj/structure/disposalpipe/segment, /obj/machinery/atmospherics/pipe/simple/hidden/supply, @@ -14992,7 +15071,7 @@ }, /turf/simulated/floor/tiled/white, /area/medical/virology) -"AN" = ( +"AV" = ( /obj/machinery/door/firedoor, /obj/effect/floor_decal/corner/lime{ icon_state = "corner_white"; @@ -15011,7 +15090,7 @@ }, /turf/simulated/floor/tiled/white, /area/medical/virology) -"AO" = ( +"AW" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/structure/disposalpipe/segment, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, @@ -15035,7 +15114,7 @@ }, /turf/simulated/floor/tiled/white, /area/medical/virology) -"AP" = ( +"AX" = ( /obj/machinery/door/firedoor, /obj/structure/grille, /obj/structure/window/reinforced{ @@ -15049,14 +15128,14 @@ }, /turf/simulated/floor/plating, /area/medical/virology) -"AQ" = ( +"AY" = ( /obj/effect/floor_decal/corner/lime{ dir = 6 }, /obj/machinery/door/firedoor, /turf/simulated/floor/tiled/white, /area/medical/virology) -"AR" = ( +"AZ" = ( /obj/structure/cable/green{ d1 = 1; d2 = 2; @@ -15067,7 +15146,7 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/tiled/white, /area/medical/virology) -"AS" = ( +"Ba" = ( /obj/effect/floor_decal/corner/lime{ icon_state = "corner_white"; dir = 9 @@ -15075,35 +15154,33 @@ /obj/machinery/door/firedoor, /turf/simulated/floor/tiled/white, /area/medical/virology) -"AT" = ( +"Bb" = ( /obj/turbolift_map_holder/aurora/medical, /turf/simulated/floor/tiled, /area/turbolift/medical_sub) -"AU" = ( +"Bc" = ( /obj/structure/closet/excavation, /obj/effect/floor_decal/industrial/outline/yellow, /turf/simulated/floor/tiled, /area/outpost/research/eva) -"AV" = ( +"Bd" = ( /obj/machinery/light/small{ dir = 1 }, -/obj/structure/sign/nosmoking_1{ - pixel_y = 32 - }, /obj/machinery/atmospherics/unary/vent_scrubber/on, /turf/simulated/floor/tiled, /area/outpost/research/eva) -"AW" = ( +"Be" = ( /obj/structure/table/rack, /obj/item/clothing/mask/breath, /obj/item/clothing/shoes/magboots, /obj/item/clothing/suit/space/anomaly, /obj/item/clothing/head/helmet/space/anomaly, /obj/item/weapon/storage/belt/archaeology, +/obj/effect/floor_decal/industrial/outline/yellow, /turf/simulated/floor/tiled, /area/outpost/research/eva) -"AX" = ( +"Bf" = ( /obj/structure/grille, /obj/structure/window/reinforced{ dir = 4 @@ -15120,49 +15197,56 @@ }, /turf/simulated/floor/plating, /area/outpost/research/eva) -"AY" = ( -/obj/machinery/atmospherics/pipe/simple/hidden, -/obj/machinery/access_button{ - command = "cycle_interior"; - frequency = 1379; - master_tag = "research_airlock"; - name = "interior access button"; - pixel_x = 25; - pixel_y = 25; - req_one_access = list(13,65) - }, -/obj/effect/floor_decal/industrial/warning{ - dir = 1 +"Bg" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden{ + dir = 8; + icon_state = "map" }, /turf/simulated/floor/tiled, /area/outpost/research/eva) -"AZ" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - icon_state = "intact-supply"; - dir = 6 - }, -/obj/effect/floor_decal/industrial/warning{ - dir = 1 +"Bh" = ( +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 4 }, +/obj/machinery/meter, /turf/simulated/floor/tiled, /area/outpost/research/eva) -"Ba" = ( -/obj/item/device/radio/intercom{ - name = "Station Intercom (General)"; - pixel_y = 22 +"Bi" = ( +/obj/effect/floor_decal/industrial/warning/cee{ + icon_state = "warningcee"; + dir = 8 }, +/obj/machinery/atmospherics/binary/pump/on{ + dir = 8; + name = "Distro to Canisters"; + target_pressure = 150 + }, +/turf/simulated/floor/plating, +/area/outpost/research/eva) +"Bj" = ( /obj/machinery/camera/network/research_outpost{ c_tag = "Research Sublevel - Expedition Preparation" }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ +/obj/machinery/atmospherics/pipe/simple/hidden/universal{ dir = 4 }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ +/obj/effect/floor_decal/industrial/warning/cee{ + icon_state = "warningcee"; dir = 4 }, +/turf/simulated/floor/plating, +/area/outpost/research/eva) +"Bk" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, +/obj/item/device/radio/intercom{ + name = "Station Intercom (General)"; + pixel_y = 22 + }, /obj/structure/cable/green{ d1 = 2; d2 = 4; @@ -15170,21 +15254,7 @@ }, /turf/simulated/floor/tiled, /area/outpost/research/eva) -"Bb" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled, -/area/outpost/research/eva) -"Bc" = ( +"Bl" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 }, @@ -15206,7 +15276,7 @@ }, /turf/simulated/floor/tiled, /area/outpost/research/eva) -"Bd" = ( +"Bm" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 }, @@ -15224,7 +15294,7 @@ }, /turf/simulated/floor/tiled/white, /area/outpost/research/hallway) -"Be" = ( +"Bn" = ( /obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ dir = 4 }, @@ -15243,7 +15313,7 @@ }, /turf/simulated/floor/tiled/white, /area/outpost/research/hallway) -"Bf" = ( +"Bo" = ( /obj/machinery/button/remote/airlock{ id = "riso1"; name = "Door Bolt Control"; @@ -15258,7 +15328,7 @@ }, /turf/simulated/floor/tiled, /area/outpost/research/isolation_monitoring) -"Bg" = ( +"Bp" = ( /obj/machinery/atmospherics/valve/digital/open, /obj/structure/cable/blue{ d1 = 4; @@ -15267,7 +15337,7 @@ }, /turf/simulated/floor/tiled, /area/outpost/research/isolation_monitoring) -"Bh" = ( +"Bq" = ( /obj/machinery/button/remote/airlock{ id = "riso2"; name = "Door Bolt Control"; @@ -15288,7 +15358,7 @@ /obj/machinery/light, /turf/simulated/floor/tiled, /area/outpost/research/isolation_monitoring) -"Bi" = ( +"Br" = ( /obj/structure/cable/blue{ d1 = 2; d2 = 8; @@ -15301,7 +15371,7 @@ }, /turf/simulated/floor/tiled, /area/outpost/research/isolation_monitoring) -"Bj" = ( +"Bs" = ( /obj/machinery/atmospherics/valve/digital/open, /obj/structure/cable/blue{ d1 = 4; @@ -15312,7 +15382,7 @@ /obj/effect/floor_decal/industrial/warning/cee, /turf/simulated/floor/tiled, /area/outpost/research/isolation_monitoring) -"Bk" = ( +"Bt" = ( /obj/machinery/button/remote/airlock{ id = "riso3"; name = "Door Bolt Control"; @@ -15328,7 +15398,7 @@ /obj/machinery/light, /turf/simulated/floor/tiled, /area/outpost/research/isolation_monitoring) -"Bl" = ( +"Bu" = ( /obj/structure/cable/blue{ d1 = 2; d2 = 8; @@ -15336,15 +15406,15 @@ }, /turf/simulated/floor/tiled, /area/outpost/research/isolation_monitoring) -"Bm" = ( +"Bv" = ( /obj/machinery/atmospherics/valve/digital/open, /turf/simulated/floor/tiled, /area/outpost/research/isolation_monitoring) -"Bn" = ( +"Bw" = ( /obj/structure/closet/emcloset, /turf/simulated/floor/tiled, /area/outpost/research/isolation_monitoring) -"Bo" = ( +"Bx" = ( /obj/machinery/power/terminal{ icon_state = "term"; dir = 1 @@ -15356,7 +15426,7 @@ /obj/machinery/light/small/emergency, /turf/simulated/floor/plating, /area/maintenance/sublevel) -"Bp" = ( +"By" = ( /obj/structure/cable{ d1 = 2; d2 = 8; @@ -15369,7 +15439,7 @@ }, /turf/simulated/floor/plating, /area/maintenance/sublevel) -"Bq" = ( +"Bz" = ( /obj/item/weapon/storage/lockbox/vials, /obj/item/weapon/reagent_containers/syringe/antiviral, /obj/item/weapon/reagent_containers/syringe/antiviral, @@ -15402,7 +15472,7 @@ }, /turf/simulated/floor/tiled/white, /area/medical/virology) -"Br" = ( +"BA" = ( /obj/machinery/atmospherics/unary/vent_pump/on{ dir = 4 }, @@ -15416,7 +15486,7 @@ /obj/machinery/disease2/diseaseanalyser, /turf/simulated/floor/tiled/white, /area/medical/virology) -"Bs" = ( +"BB" = ( /obj/structure/disposalpipe/segment, /obj/machinery/atmospherics/pipe/manifold/hidden/supply{ dir = 4 @@ -15424,13 +15494,13 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/tiled/white, /area/medical/virology) -"Bt" = ( +"BC" = ( /obj/effect/floor_decal/corner/lime{ dir = 6 }, /turf/simulated/floor/tiled/white, /area/medical/virology) -"Bu" = ( +"BD" = ( /obj/structure/table/standard, /obj/machinery/camera/network/medbay{ c_tag = "Medical - Virology North" @@ -15449,7 +15519,7 @@ }, /turf/simulated/floor/tiled/white, /area/medical/virology) -"Bv" = ( +"BE" = ( /obj/effect/floor_decal/corner/lime{ dir = 6 }, @@ -15461,7 +15531,7 @@ /obj/machinery/computer/med_data/laptop, /turf/simulated/floor/tiled/white, /area/medical/virology) -"Bw" = ( +"BF" = ( /obj/structure/grille, /obj/structure/window/reinforced{ dir = 8 @@ -15484,7 +15554,7 @@ /obj/machinery/door/firedoor, /turf/simulated/floor/plating, /area/medical/virology) -"Bx" = ( +"BG" = ( /obj/machinery/atmospherics/unary/vent_pump/on{ dir = 4 }, @@ -15494,7 +15564,7 @@ }, /turf/simulated/floor/tiled/white, /area/medical/virology) -"By" = ( +"BH" = ( /obj/machinery/light{ dir = 1 }, @@ -15512,7 +15582,7 @@ }, /turf/simulated/floor/tiled/white, /area/medical/virology) -"Bz" = ( +"BI" = ( /obj/machinery/door/firedoor, /obj/structure/grille, /obj/structure/window/reinforced{ @@ -15523,7 +15593,7 @@ }, /turf/simulated/floor/plating, /area/medical/patient_wing) -"BA" = ( +"BJ" = ( /obj/effect/floor_decal/corner/lime{ dir = 6 }, @@ -15532,7 +15602,7 @@ }, /turf/simulated/floor/tiled/white, /area/medical/patient_wing) -"BB" = ( +"BK" = ( /obj/structure/cable/green{ d1 = 1; d2 = 2; @@ -15542,7 +15612,7 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/tiled/white, /area/medical/patient_wing) -"BC" = ( +"BL" = ( /obj/effect/floor_decal/corner/lime{ icon_state = "corner_white"; dir = 9 @@ -15554,20 +15624,20 @@ /obj/machinery/atmospherics/unary/vent_scrubber/on, /turf/simulated/floor/tiled/white, /area/medical/patient_wing) -"BD" = ( +"BM" = ( /turf/simulated/wall/r_wall, /area/medical/patient_wing) -"BE" = ( +"BN" = ( /obj/structure/closet/excavation, /obj/machinery/firealarm/west, /obj/effect/floor_decal/industrial/outline/yellow, /turf/simulated/floor/tiled, /area/outpost/research/eva) -"BF" = ( +"BO" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/tiled, /area/outpost/research/eva) -"BG" = ( +"BP" = ( /obj/structure/grille, /obj/structure/window/reinforced, /obj/structure/window/reinforced{ @@ -15581,41 +15651,44 @@ }, /turf/simulated/floor/plating, /area/outpost/research/eva) -"BH" = ( +"BQ" = ( /obj/machinery/atmospherics/pipe/simple/hidden, /turf/simulated/floor/tiled, /area/outpost/research/eva) -"BI" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - icon_state = "map-scrubbers"; - dir = 8 - }, +"BR" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on, /turf/simulated/floor/tiled, /area/outpost/research/eva) -"BJ" = ( +"BS" = ( /obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 8 + d1 = 2; + d2 = 4; + icon_state = "2-4" }, /turf/simulated/floor/tiled, /area/outpost/research/eva) -"BK" = ( +"BT" = ( /obj/machinery/alarm{ dir = 8; pixel_x = 25; pixel_y = 0 }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + icon_state = "intact-scrubbers"; + dir = 1 + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, /turf/simulated/floor/tiled, /area/outpost/research/eva) -"BL" = ( +"BU" = ( /turf/simulated/wall, /area/outpost/research/eva) -"BM" = ( +"BV" = ( /obj/machinery/light{ dir = 4; icon_state = "tube1" @@ -15630,10 +15703,10 @@ }, /turf/simulated/floor/tiled/white, /area/outpost/research/hallway) -"BN" = ( +"BW" = ( /turf/simulated/wall/r_wall, /area/outpost/research/isolation_a) -"BO" = ( +"BX" = ( /obj/machinery/door/airlock/external{ id_tag = "riso1"; name = "Access Airlock"; @@ -15647,7 +15720,7 @@ /obj/machinery/door/firedoor, /turf/simulated/floor/tiled, /area/outpost/research/isolation_a) -"BP" = ( +"BY" = ( /obj/structure/window/reinforced, /obj/structure/window/reinforced{ dir = 1 @@ -15660,7 +15733,7 @@ /obj/machinery/door/firedoor, /turf/simulated/floor/plating, /area/outpost/research/isolation_a) -"BQ" = ( +"BZ" = ( /obj/structure/window/reinforced, /obj/structure/window/reinforced{ dir = 4 @@ -15672,7 +15745,7 @@ /obj/machinery/door/firedoor, /turf/simulated/floor/plating, /area/outpost/research/isolation_a) -"BR" = ( +"Ca" = ( /obj/machinery/door/airlock/external{ id_tag = "riso2"; name = "Access Airlock"; @@ -15686,7 +15759,7 @@ /obj/machinery/door/firedoor, /turf/simulated/floor/tiled, /area/outpost/research/isolation_b) -"BS" = ( +"Cb" = ( /obj/structure/window/reinforced, /obj/structure/window/reinforced{ dir = 1 @@ -15699,7 +15772,7 @@ /obj/machinery/door/firedoor, /turf/simulated/floor/plating, /area/outpost/research/isolation_b) -"BT" = ( +"Cc" = ( /obj/structure/window/reinforced, /obj/structure/window/reinforced{ dir = 4 @@ -15711,10 +15784,10 @@ /obj/machinery/door/firedoor, /turf/simulated/floor/plating, /area/outpost/research/isolation_b) -"BU" = ( +"Cd" = ( /turf/simulated/wall/r_wall, /area/outpost/research/isolation_b) -"BV" = ( +"Ce" = ( /obj/machinery/door/airlock/external{ id_tag = "riso3"; name = "Access Airlock"; @@ -15728,7 +15801,7 @@ /obj/machinery/door/firedoor, /turf/simulated/floor/tiled, /area/outpost/research/isolation_c) -"BW" = ( +"Cf" = ( /obj/structure/window/reinforced, /obj/structure/window/reinforced{ dir = 1 @@ -15741,7 +15814,7 @@ /obj/machinery/door/firedoor, /turf/simulated/floor/plating, /area/outpost/research/isolation_c) -"BX" = ( +"Cg" = ( /obj/structure/window/reinforced, /obj/structure/window/reinforced{ dir = 4 @@ -15753,7 +15826,7 @@ /obj/machinery/door/firedoor, /turf/simulated/floor/plating, /area/outpost/research/isolation_c) -"BY" = ( +"Ch" = ( /obj/machinery/door/airlock/engineering{ name = "Science Substation"; req_one_access = list(11,24) @@ -15766,7 +15839,7 @@ /obj/machinery/door/firedoor, /turf/simulated/floor/plating, /area/maintenance/sublevel) -"BZ" = ( +"Ci" = ( /obj/structure/cable{ d1 = 1; d2 = 2; @@ -15779,12 +15852,12 @@ /obj/machinery/door/firedoor, /turf/simulated/floor/plating, /area/maintenance/sublevel) -"Ca" = ( +"Cj" = ( /obj/machinery/portable_atmospherics/canister/air/airlock, /obj/machinery/atmospherics/portables_connector, /turf/simulated/floor/plating, /area/maintenance/sublevel) -"Cb" = ( +"Ck" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/machinery/access_button{ @@ -15804,7 +15877,7 @@ icon_state = "asteroidplating" }, /area/mine/unexplored) -"Cc" = ( +"Cl" = ( /obj/structure/table/standard, /obj/item/weapon/storage/fancy/vials, /obj/machinery/button/remote/blast_door{ @@ -15821,17 +15894,17 @@ }, /turf/simulated/floor/tiled/white, /area/medical/virology) -"Cd" = ( +"Cm" = ( /obj/machinery/hologram/holopad, /turf/simulated/floor/tiled/white, /area/medical/virology) -"Ce" = ( +"Cn" = ( /obj/structure/disposalpipe/segment, /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/tiled/white, /area/medical/virology) -"Cf" = ( +"Co" = ( /obj/effect/floor_decal/corner/lime{ dir = 6 }, @@ -15841,7 +15914,7 @@ }, /turf/simulated/floor/tiled/white, /area/medical/virology) -"Cg" = ( +"Cp" = ( /obj/machinery/computer/diseasesplicer, /obj/effect/floor_decal/corner/lime{ dir = 6 @@ -15852,7 +15925,7 @@ }, /turf/simulated/floor/tiled/white, /area/medical/virology) -"Ch" = ( +"Cq" = ( /obj/structure/grille, /obj/structure/window/reinforced{ dir = 8 @@ -15872,7 +15945,7 @@ /obj/machinery/door/firedoor, /turf/simulated/floor/plating, /area/medical/virology) -"Ci" = ( +"Cr" = ( /obj/machinery/camera/network/medbay{ c_tag = "Medical - Virology Quarantine Airlock"; dir = 4; @@ -15883,13 +15956,13 @@ }, /turf/simulated/floor/tiled/white, /area/medical/virology) -"Cj" = ( +"Cs" = ( /obj/effect/floor_decal/industrial/warning{ dir = 4 }, /turf/simulated/floor/tiled/white, /area/medical/virology) -"Ck" = ( +"Ct" = ( /obj/effect/floor_decal/corner/lime{ dir = 6 }, @@ -15901,7 +15974,7 @@ }, /turf/simulated/floor/tiled/white, /area/medical/patient_wing) -"Cl" = ( +"Cu" = ( /obj/effect/floor_decal/corner/lime{ dir = 10 }, @@ -15912,13 +15985,13 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/tiled/white, /area/medical/patient_wing) -"Cm" = ( +"Cv" = ( /obj/effect/floor_decal/corner/lime{ dir = 10 }, /turf/simulated/floor/tiled/white, /area/medical/patient_wing) -"Cn" = ( +"Cw" = ( /obj/effect/floor_decal/corner/lime{ dir = 10 }, @@ -15928,7 +16001,7 @@ }, /turf/simulated/floor/tiled/white, /area/medical/patient_wing) -"Co" = ( +"Cx" = ( /obj/machinery/light{ dir = 1 }, @@ -15943,7 +16016,7 @@ }, /turf/simulated/floor/tiled/white, /area/medical/patient_wing) -"Cp" = ( +"Cy" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 6 }, @@ -15963,7 +16036,7 @@ }, /turf/simulated/floor/tiled/white, /area/medical/patient_wing) -"Cq" = ( +"Cz" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, @@ -15988,7 +16061,7 @@ }, /turf/simulated/floor/tiled/white, /area/medical/patient_wing) -"Cr" = ( +"CA" = ( /obj/machinery/door/firedoor, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 @@ -16006,7 +16079,7 @@ }, /turf/simulated/floor/plating, /area/maintenance/sublevel) -"Cs" = ( +"CB" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, @@ -16020,7 +16093,7 @@ }, /turf/simulated/floor/plating, /area/maintenance/sublevel) -"Ct" = ( +"CC" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ icon_state = "intact-supply"; dir = 9 @@ -16035,7 +16108,7 @@ }, /turf/simulated/floor/plating, /area/maintenance/sublevel) -"Cu" = ( +"CD" = ( /obj/structure/closet/excavation, /obj/machinery/light{ dir = 8 @@ -16047,23 +16120,26 @@ /obj/effect/floor_decal/industrial/outline/yellow, /turf/simulated/floor/tiled, /area/outpost/research/eva) -"Cv" = ( +"CE" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 5 }, -/turf/simulated/floor/tiled, -/area/outpost/research/eva) -"Cw" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ icon_state = "intact-supply"; dir = 6 }, /turf/simulated/floor/tiled, /area/outpost/research/eva) -"Cx" = ( +"CF" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/outpost/research/eva) +"CG" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, @@ -16080,53 +16156,72 @@ name = "EVA Storage"; req_access = list(7) }, +/obj/machinery/door/firedoor{ + dir = 4; + name = "Firelock" + }, /turf/simulated/floor/tiled, /area/outpost/research/eva) -"Cy" = ( -/obj/machinery/atmospherics/pipe/simple/hidden{ - dir = 5; - icon_state = "intact" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, +"CH" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, -/turf/simulated/floor/tiled, -/area/outpost/research/eva) -"Cz" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - icon_state = "intact-scrubbers"; - dir = 9 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ dir = 4 }, -/obj/machinery/atmospherics/pipe/simple/hidden{ - dir = 10; - icon_state = "intact" - }, -/obj/machinery/hologram/holopad, +/obj/machinery/atmospherics/pipe/simple/hidden, /turf/simulated/floor/tiled, /area/outpost/research/eva) -"CA" = ( +"CI" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/outpost/research/eva) +"CJ" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, +/turf/simulated/floor/tiled, +/area/outpost/research/eva) +"CK" = ( /obj/structure/cable/green{ d1 = 1; d2 = 2; icon_state = "1-2" }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, /turf/simulated/floor/tiled, /area/outpost/research/eva) -"CB" = ( -/obj/machinery/recharge_station, +"CL" = ( /obj/machinery/light{ dir = 4; icon_state = "tube1" }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + icon_state = "intact-supply"; + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + icon_state = "intact-scrubbers"; + dir = 9 + }, +/obj/structure/table/steel, +/obj/machinery/cell_charger{ + pixel_y = 5 + }, /turf/simulated/floor/tiled, /area/outpost/research/eva) -"CC" = ( +"CM" = ( /obj/machinery/door/firedoor{ dir = 2 }, @@ -16143,7 +16238,7 @@ /obj/structure/grille, /turf/simulated/floor/plating, /area/outpost/research/eva) -"CD" = ( +"CN" = ( /obj/machinery/atmospherics/unary/vent_pump{ dir = 4; use_power = 0 @@ -16157,12 +16252,12 @@ /obj/effect/floor_decal/industrial/warning, /turf/simulated/floor/tiled, /area/outpost/research/isolation_a) -"CE" = ( +"CO" = ( /obj/machinery/atmospherics/pipe/manifold/visible/yellow, /obj/effect/floor_decal/industrial/warning, /turf/simulated/floor/tiled, /area/outpost/research/isolation_a) -"CF" = ( +"CP" = ( /obj/machinery/alarm/monitor/isolation{ alarm_id = "isolation_one"; dir = 8; @@ -16175,7 +16270,7 @@ /obj/effect/floor_decal/industrial/warning, /turf/simulated/floor/tiled, /area/outpost/research/isolation_a) -"CG" = ( +"CQ" = ( /obj/machinery/atmospherics/unary/vent_pump{ dir = 4; use_power = 0 @@ -16189,12 +16284,12 @@ /obj/effect/floor_decal/industrial/warning, /turf/simulated/floor/tiled, /area/outpost/research/isolation_b) -"CH" = ( +"CR" = ( /obj/machinery/atmospherics/pipe/manifold/visible/yellow, /obj/effect/floor_decal/industrial/warning, /turf/simulated/floor/tiled, /area/outpost/research/isolation_b) -"CI" = ( +"CS" = ( /obj/machinery/alarm/monitor/isolation{ alarm_id = "isolation_two"; dir = 8; @@ -16207,7 +16302,7 @@ /obj/effect/floor_decal/industrial/warning, /turf/simulated/floor/tiled, /area/outpost/research/isolation_b) -"CJ" = ( +"CT" = ( /obj/machinery/atmospherics/unary/vent_pump{ dir = 4; use_power = 0 @@ -16221,12 +16316,12 @@ /obj/effect/floor_decal/industrial/warning, /turf/simulated/floor/tiled, /area/outpost/research/isolation_c) -"CK" = ( +"CU" = ( /obj/machinery/atmospherics/pipe/manifold/visible/yellow, /obj/effect/floor_decal/industrial/warning, /turf/simulated/floor/tiled, /area/outpost/research/isolation_c) -"CL" = ( +"CV" = ( /obj/machinery/alarm/monitor/isolation{ alarm_id = "isolation_three"; dir = 8; @@ -16239,7 +16334,7 @@ /obj/effect/floor_decal/industrial/warning, /turf/simulated/floor/tiled, /area/outpost/research/isolation_c) -"CM" = ( +"CW" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 6 }, @@ -16253,7 +16348,7 @@ }, /turf/simulated/floor/plating, /area/maintenance/sublevel) -"CN" = ( +"CX" = ( /obj/structure/cable/green{ d1 = 4; d2 = 8; @@ -16267,7 +16362,7 @@ }, /turf/simulated/floor/plating, /area/maintenance/sublevel) -"CO" = ( +"CY" = ( /obj/structure/cable/green{ d1 = 1; d2 = 8; @@ -16281,7 +16376,7 @@ }, /turf/simulated/floor/plating, /area/maintenance/sublevel) -"CP" = ( +"CZ" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 }, @@ -16290,7 +16385,7 @@ }, /turf/simulated/floor/plating, /area/maintenance/sublevel) -"CQ" = ( +"Da" = ( /obj/structure/cable{ d1 = 1; d2 = 4; @@ -16304,7 +16399,7 @@ }, /turf/simulated/floor/plating, /area/maintenance/sublevel) -"CR" = ( +"Db" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 }, @@ -16323,7 +16418,7 @@ }, /turf/simulated/floor/plating, /area/maintenance/sublevel) -"CS" = ( +"Dc" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 }, @@ -16346,7 +16441,7 @@ }, /turf/simulated/floor/plating, /area/maintenance/sublevel) -"CT" = ( +"Dd" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 }, @@ -16371,7 +16466,7 @@ }, /turf/simulated/floor/plating, /area/maintenance/sublevel) -"CU" = ( +"De" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 }, @@ -16399,7 +16494,7 @@ }, /turf/simulated/floor/plating, /area/maintenance/sublevel) -"CV" = ( +"Df" = ( /obj/machinery/light/small/emergency{ dir = 1 }, @@ -16417,7 +16512,7 @@ }, /turf/simulated/floor/plating, /area/maintenance/sublevel) -"CW" = ( +"Dg" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 }, @@ -16439,7 +16534,7 @@ }, /turf/simulated/floor/plating, /area/maintenance/sublevel) -"CX" = ( +"Dh" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ icon_state = "intact-supply"; dir = 9 @@ -16457,7 +16552,7 @@ icon_state = "asteroidplating" }, /area/mine/unexplored) -"CY" = ( +"Di" = ( /obj/structure/bed/padded, /obj/effect/floor_decal/corner/pink{ icon_state = "corner_white"; @@ -16468,18 +16563,18 @@ }, /turf/simulated/floor/tiled/white, /area/medical/virology) -"CZ" = ( +"Dj" = ( /obj/machinery/light/small{ dir = 1 }, /turf/simulated/floor/tiled/white, /area/medical/virology) -"Da" = ( +"Dk" = ( /obj/item/roller, /obj/machinery/atmospherics/unary/vent_pump/on, /turf/simulated/floor/tiled/white, /area/medical/virology) -"Db" = ( +"Dl" = ( /obj/structure/grille, /obj/structure/window/reinforced, /obj/structure/window/reinforced{ @@ -16494,7 +16589,7 @@ /obj/machinery/door/firedoor, /turf/simulated/floor/plating, /area/medical/virology) -"Dc" = ( +"Dm" = ( /obj/machinery/disposal, /obj/effect/decal/warning_stripes, /obj/structure/disposalpipe/trunk{ @@ -16502,14 +16597,14 @@ }, /turf/simulated/floor/tiled/white, /area/medical/virology) -"Dd" = ( +"Dn" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, /obj/effect/decal/cleanable/blood/drip, /turf/simulated/floor/tiled/white, /area/medical/virology) -"De" = ( +"Do" = ( /obj/structure/disposalpipe/segment{ dir = 8; icon_state = "pipe-c" @@ -16518,7 +16613,7 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/tiled/white, /area/medical/virology) -"Df" = ( +"Dp" = ( /obj/structure/bed/chair/office/dark{ dir = 4 }, @@ -16531,7 +16626,7 @@ }, /turf/simulated/floor/tiled/white, /area/medical/virology) -"Dg" = ( +"Dq" = ( /obj/machinery/disease2/isolator, /obj/machinery/light{ dir = 4; @@ -16546,7 +16641,7 @@ }, /turf/simulated/floor/tiled/white, /area/medical/virology) -"Dh" = ( +"Dr" = ( /obj/structure/grille, /obj/structure/window/reinforced, /obj/structure/window/reinforced{ @@ -16567,7 +16662,7 @@ /obj/machinery/door/firedoor, /turf/simulated/floor/plating, /area/medical/virology) -"Di" = ( +"Ds" = ( /obj/machinery/atmospherics/unary/vent_scrubber/on{ dir = 4 }, @@ -16577,7 +16672,7 @@ }, /turf/simulated/floor/tiled/white, /area/medical/virology) -"Dj" = ( +"Dt" = ( /obj/structure/disposalpipe/segment, /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ @@ -16585,13 +16680,13 @@ }, /turf/simulated/floor/tiled/white, /area/medical/virology) -"Dk" = ( +"Du" = ( /obj/effect/floor_decal/industrial/warning{ dir = 6 }, /turf/simulated/floor/tiled/white, /area/medical/virology) -"Dl" = ( +"Dv" = ( /obj/structure/cable/green{ d1 = 1; d2 = 4; @@ -16606,7 +16701,7 @@ }, /turf/simulated/floor/tiled/white, /area/medical/patient_wing) -"Dm" = ( +"Dw" = ( /obj/structure/cable/green{ d1 = 4; d2 = 8; @@ -16618,7 +16713,7 @@ }, /turf/simulated/floor/tiled/white, /area/medical/patient_wing) -"Dn" = ( +"Dx" = ( /obj/structure/cable/green{ d1 = 4; d2 = 8; @@ -16632,7 +16727,7 @@ }, /turf/simulated/floor/tiled/white, /area/medical/patient_wing) -"Do" = ( +"Dy" = ( /obj/structure/cable/green{ d1 = 4; d2 = 8; @@ -16647,7 +16742,7 @@ }, /turf/simulated/floor/tiled/white, /area/medical/patient_wing) -"Dp" = ( +"Dz" = ( /obj/structure/cable/green{ d1 = 1; d2 = 2; @@ -16666,7 +16761,7 @@ }, /turf/simulated/floor/tiled/white, /area/medical/patient_wing) -"Dq" = ( +"DA" = ( /obj/effect/floor_decal/corner/lime{ icon_state = "corner_white"; dir = 9 @@ -16683,7 +16778,7 @@ }, /turf/simulated/floor/tiled/white, /area/medical/patient_wing) -"Dr" = ( +"DB" = ( /obj/machinery/door/firedoor, /obj/structure/grille, /obj/structure/window/reinforced{ @@ -16695,7 +16790,7 @@ /obj/structure/window/reinforced, /turf/simulated/floor/plating, /area/maintenance/sublevel) -"Ds" = ( +"DC" = ( /obj/machinery/door/firedoor, /obj/structure/grille, /obj/structure/window/reinforced{ @@ -16707,36 +16802,37 @@ /obj/structure/window/reinforced, /turf/simulated/floor/plating, /area/maintenance/sublevel) -"Dt" = ( +"DD" = ( /turf/simulated/wall/r_wall, /area/medical/patient_a) -"Du" = ( +"DE" = ( /turf/simulated/wall/r_wall, /area/medical/patient_b) -"Dv" = ( +"DF" = ( /turf/simulated/wall/r_wall, /area/medical/patient_c) -"Dw" = ( +"DG" = ( /obj/machinery/alarm{ dir = 4; icon_state = "alarm0"; pixel_x = -22; pixel_y = 0 }, -/obj/structure/dispenser/oxygen, +/obj/effect/floor_decal/industrial/hatch/yellow, /turf/simulated/floor/tiled, /area/outpost/research/eva) -"Dx" = ( -/turf/simulated/floor/tiled, -/area/outpost/research/eva) -"Dy" = ( -/obj/machinery/floodlight, +"DH" = ( /obj/machinery/atmospherics/unary/vent_pump/on{ dir = 1 }, /turf/simulated/floor/tiled, /area/outpost/research/eva) -"Dz" = ( +"DI" = ( +/obj/machinery/floodlight, +/obj/effect/floor_decal/industrial/outline/yellow, +/turf/simulated/floor/tiled, +/area/outpost/research/eva) +"DJ" = ( /obj/structure/grille, /obj/structure/window/reinforced{ dir = 4 @@ -16752,43 +16848,35 @@ }, /turf/simulated/floor/plating, /area/outpost/research/eva) -"DA" = ( -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/machinery/atmospherics/portables_connector{ - dir = 4 - }, -/obj/machinery/door/window{ - dir = 4; - name = "Air Tank Access"; - req_one_access = list(47,10,24) - }, -/obj/machinery/portable_atmospherics/canister/air/airlock, -/turf/simulated/floor/tiled, -/area/outpost/research/eva) -"DB" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 5 - }, +"DK" = ( +/obj/structure/window/reinforced, /obj/machinery/atmospherics/pipe/manifold/hidden{ - dir = 4; + dir = 8; icon_state = "map" }, /turf/simulated/floor/tiled, /area/outpost/research/eva) -"DC" = ( +"DL" = ( +/obj/structure/window/reinforced, +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 10; + icon_state = "intact" + }, +/turf/simulated/floor/tiled, +/area/outpost/research/eva) +"DM" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/tiled, +/area/outpost/research/eva) +"DN" = ( /obj/structure/cable/green{ d1 = 1; d2 = 2; icon_state = "1-2" }, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 8 - }, /turf/simulated/floor/tiled, /area/outpost/research/eva) -"DD" = ( +"DO" = ( /obj/item/weapon/storage/box/excavation, /obj/item/weapon/pickaxe, /obj/item/weapon/wrench, @@ -16797,7 +16885,7 @@ /obj/structure/table/steel, /turf/simulated/floor/tiled, /area/outpost/research/eva) -"DE" = ( +"DP" = ( /obj/machinery/door/firedoor{ dir = 2 }, @@ -16811,7 +16899,7 @@ /obj/structure/grille, /turf/simulated/floor/plating, /area/outpost/research/eva) -"DF" = ( +"DQ" = ( /obj/machinery/atmospherics/unary/vent_pump/on{ dir = 4 }, @@ -16821,7 +16909,7 @@ }, /turf/simulated/floor/tiled/white, /area/outpost/research/hallway) -"DG" = ( +"DR" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/machinery/atmospherics/pipe/manifold/hidden/supply{ dir = 4 @@ -16833,7 +16921,7 @@ }, /turf/simulated/floor/tiled/white, /area/outpost/research/hallway) -"DH" = ( +"DS" = ( /obj/item/device/radio/intercom{ frequency = 1459; name = "Station Intercom (General)"; @@ -16841,17 +16929,17 @@ }, /turf/simulated/floor/tiled/dark, /area/outpost/research/isolation_a) -"DI" = ( +"DT" = ( /turf/simulated/floor/tiled/dark, /area/outpost/research/isolation_a) -"DJ" = ( +"DU" = ( /obj/machinery/camera/network/research_outpost{ c_tag = "Research Sublevel - Isolation Cell A"; dir = 8 }, /turf/simulated/floor/tiled/dark, /area/outpost/research/isolation_a) -"DK" = ( +"DV" = ( /obj/item/device/radio/intercom{ frequency = 1459; name = "Station Intercom (General)"; @@ -16859,20 +16947,20 @@ }, /turf/simulated/floor/tiled/dark, /area/outpost/research/isolation_b) -"DL" = ( +"DW" = ( /obj/effect/landmark{ name = "bluespacerift" }, /turf/simulated/floor/tiled/dark, /area/outpost/research/isolation_b) -"DM" = ( +"DX" = ( /obj/machinery/camera/network/research_outpost{ c_tag = "Research Sublevel - Isolation Cell B"; dir = 8 }, /turf/simulated/floor/tiled/dark, /area/outpost/research/isolation_b) -"DN" = ( +"DY" = ( /obj/item/device/radio/intercom{ frequency = 1459; name = "Station Intercom (General)"; @@ -16880,17 +16968,17 @@ }, /turf/simulated/floor/tiled/dark, /area/outpost/research/isolation_c) -"DO" = ( +"DZ" = ( /turf/simulated/floor/tiled/dark, /area/outpost/research/isolation_c) -"DP" = ( +"Ea" = ( /obj/machinery/camera/network/research_outpost{ c_tag = "Research Sublevel - Isolation Cell C"; dir = 8 }, /turf/simulated/floor/tiled/dark, /area/outpost/research/isolation_c) -"DQ" = ( +"Eb" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/structure/cable/green{ d1 = 1; @@ -16900,7 +16988,7 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/plating, /area/maintenance/sublevel) -"DR" = ( +"Ec" = ( /obj/machinery/airlock_sensor{ id_tag = "sl2s"; pixel_y = -26 @@ -16912,7 +17000,7 @@ }, /turf/simulated/floor/plating, /area/maintenance/sublevel) -"DS" = ( +"Ed" = ( /obj/machinery/camera/network/engineering_outpost{ c_tag = "Research Sublevel - Cavern Entrance"; dir = 4; @@ -16920,7 +17008,7 @@ }, /turf/simulated/floor/asteroid/ash/rocky, /area/maintenance/sublevel) -"DT" = ( +"Ee" = ( /obj/machinery/camera/network/medbay{ c_tag = "Medical - Virology Cell A"; dir = 4; @@ -16935,7 +17023,7 @@ }, /turf/simulated/floor/tiled/white, /area/medical/virology) -"DU" = ( +"Ef" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 6 }, @@ -16944,7 +17032,7 @@ }, /turf/simulated/floor/tiled/white, /area/medical/virology) -"DV" = ( +"Eg" = ( /obj/machinery/door/window/westleft{ name = "Virology Isolation Cell Alpha"; req_access = list(39) @@ -16962,7 +17050,7 @@ /obj/machinery/door/firedoor, /turf/simulated/floor/tiled/white, /area/medical/virology) -"DW" = ( +"Eh" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 }, @@ -16971,14 +17059,14 @@ }, /turf/simulated/floor/tiled/white, /area/medical/virology) -"DX" = ( +"Ei" = ( /obj/machinery/atmospherics/pipe/manifold/hidden/supply{ dir = 4 }, /obj/machinery/atmospherics/pipe/manifold4w/hidden/scrubbers, /turf/simulated/floor/tiled/white, /area/medical/virology) -"DY" = ( +"Ej" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 }, @@ -16987,7 +17075,7 @@ }, /turf/simulated/floor/tiled/white, /area/medical/virology) -"DZ" = ( +"Ek" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 }, @@ -17000,7 +17088,7 @@ }, /turf/simulated/floor/tiled/white, /area/medical/virology) -"Ea" = ( +"El" = ( /obj/machinery/computer/centrifuge, /obj/item/weapon/storage/secure/safe{ pixel_x = 32 @@ -17017,7 +17105,7 @@ }, /turf/simulated/floor/tiled/white, /area/medical/virology) -"Eb" = ( +"Em" = ( /obj/machinery/door/airlock/medical{ autoclose = 0; frequency = 1379; @@ -17042,7 +17130,7 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/tiled/white, /area/medical/virology) -"Ec" = ( +"En" = ( /obj/structure/grille, /obj/structure/window/reinforced, /obj/structure/window/reinforced{ @@ -17056,7 +17144,7 @@ }, /turf/simulated/floor/plating, /area/medical/virology) -"Ed" = ( +"Eo" = ( /obj/machinery/door/firedoor, /obj/structure/grille, /obj/structure/window/reinforced{ @@ -17068,7 +17156,7 @@ /obj/structure/window/reinforced, /turf/simulated/floor/plating, /area/medical/patient_wing) -"Ee" = ( +"Ep" = ( /obj/effect/floor_decal/corner/lime{ icon_state = "corner_white"; dir = 4 @@ -17077,7 +17165,7 @@ /obj/structure/flora/pottedplant/random, /turf/simulated/floor/tiled/white, /area/medical/patient_wing) -"Ef" = ( +"Eq" = ( /obj/effect/floor_decal/corner/lime{ icon_state = "corner_white"; dir = 5 @@ -17091,14 +17179,14 @@ }, /turf/simulated/floor/tiled/white, /area/medical/patient_wing) -"Eg" = ( +"Er" = ( /obj/effect/floor_decal/corner/lime{ icon_state = "corner_white"; dir = 5 }, /turf/simulated/floor/tiled/white, /area/medical/patient_wing) -"Eh" = ( +"Es" = ( /obj/effect/floor_decal/corner/lime{ icon_state = "corner_white"; dir = 5 @@ -17106,7 +17194,7 @@ /obj/machinery/door/firedoor, /turf/simulated/floor/tiled/white, /area/medical/patient_wing) -"Ei" = ( +"Et" = ( /obj/effect/floor_decal/corner/lime{ icon_state = "corner_white"; dir = 5 @@ -17114,14 +17202,14 @@ /obj/effect/floor_decal/corner/lime, /turf/simulated/floor/tiled/white, /area/medical/patient_wing) -"Ej" = ( +"Eu" = ( /obj/effect/floor_decal/corner/lime{ icon_state = "corner_white"; dir = 9 }, /turf/simulated/floor/tiled/white, /area/medical/patient_wing) -"Ek" = ( +"Ev" = ( /obj/machinery/door/firedoor, /obj/structure/grille, /obj/structure/window/reinforced{ @@ -17135,7 +17223,7 @@ }, /turf/simulated/floor/plating, /area/medical/patient_wing) -"El" = ( +"Ew" = ( /obj/structure/closet/secure_closet/personal/patient, /obj/effect/floor_decal/corner/pink/full{ icon_state = "corner_white_full"; @@ -17144,7 +17232,7 @@ /obj/machinery/firealarm/north, /turf/simulated/floor/tiled/white, /area/medical/patient_a) -"Em" = ( +"Ex" = ( /obj/machinery/newscaster{ pixel_y = 32 }, @@ -17161,7 +17249,7 @@ }, /turf/simulated/floor/tiled/white, /area/medical/patient_a) -"En" = ( +"Ey" = ( /obj/machinery/alarm{ dir = 8; icon_state = "alarm0"; @@ -17190,10 +17278,10 @@ }, /turf/simulated/floor/tiled/white, /area/medical/patient_a) -"Eo" = ( +"Ez" = ( /turf/simulated/wall, /area/medical/patient_a) -"Ep" = ( +"EA" = ( /obj/structure/closet/secure_closet/personal/patient, /obj/effect/floor_decal/corner/pink/full{ icon_state = "corner_white_full"; @@ -17202,7 +17290,7 @@ /obj/machinery/firealarm/north, /turf/simulated/floor/tiled/white, /area/medical/patient_b) -"Eq" = ( +"EB" = ( /obj/machinery/newscaster{ pixel_y = 32 }, @@ -17219,7 +17307,7 @@ }, /turf/simulated/floor/tiled/white, /area/medical/patient_b) -"Er" = ( +"EC" = ( /obj/machinery/alarm{ dir = 8; icon_state = "alarm0"; @@ -17248,7 +17336,7 @@ }, /turf/simulated/floor/tiled/white, /area/medical/patient_b) -"Es" = ( +"ED" = ( /obj/effect/floor_decal/corner/pink{ icon_state = "corner_white"; dir = 9 @@ -17256,7 +17344,7 @@ /obj/structure/closet/secure_closet/personal/patient, /turf/simulated/floor/tiled/white, /area/medical/patient_c) -"Et" = ( +"EE" = ( /obj/structure/sign/nosmoking_1{ pixel_y = 32 }, @@ -17265,7 +17353,7 @@ }, /turf/simulated/floor/tiled/white, /area/medical/patient_c) -"Eu" = ( +"EF" = ( /obj/effect/floor_decal/corner/pink{ icon_state = "corner_white"; dir = 6 @@ -17277,11 +17365,11 @@ /obj/item/weapon/clipboard, /turf/simulated/floor/tiled/white, /area/medical/patient_c) -"Ev" = ( +"EG" = ( /obj/structure/curtain, /turf/simulated/floor/tiled/white, /area/medical/patient_c) -"Ew" = ( +"EH" = ( /obj/effect/floor_decal/corner/pink{ icon_state = "corner_white"; dir = 9 @@ -17290,19 +17378,12 @@ /obj/machinery/firealarm/north, /turf/simulated/floor/tiled/white, /area/medical/patient_c) -"Ex" = ( -/obj/machinery/portable_atmospherics/canister/oxygen, +"EI" = ( +/obj/structure/dispenser/oxygen, +/obj/effect/floor_decal/industrial/outline/yellow, /turf/simulated/floor/tiled, /area/outpost/research/eva) -"Ey" = ( -/obj/machinery/suspension_gen, -/turf/simulated/floor/tiled, -/area/outpost/research/eva) -"Ez" = ( -/obj/machinery/floodlight, -/turf/simulated/floor/tiled, -/area/outpost/research/eva) -"EA" = ( +"EJ" = ( /obj/structure/grille, /obj/structure/window/reinforced{ dir = 4 @@ -17316,26 +17397,29 @@ /obj/structure/window/reinforced, /turf/simulated/floor/plating, /area/outpost/research/eva) -"EB" = ( -/obj/machinery/door/window{ +"EK" = ( +/obj/machinery/portable_atmospherics/canister/air/airlock, +/obj/machinery/atmospherics/portables_connector{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/outpost/research/eva) +"EL" = ( +/obj/structure/sign/nosmoking_1{ + pixel_y = -32 + }, +/obj/machinery/door/window/westleft{ dir = 4; - name = "Air Tank Access"; - req_one_access = list(47,10,24) + name = "Air Storage"; + req_access = list(47) }, /obj/machinery/atmospherics/portables_connector{ - dir = 4 + dir = 1 }, /obj/machinery/portable_atmospherics/canister/air/airlock, /turf/simulated/floor/tiled, /area/outpost/research/eva) -"EC" = ( -/obj/machinery/atmospherics/pipe/simple/hidden{ - dir = 9; - icon_state = "intact" - }, -/turf/simulated/floor/tiled, -/area/outpost/research/eva) -"ED" = ( +"EM" = ( /obj/structure/cable/green, /obj/machinery/power/apc{ dir = 2; @@ -17344,7 +17428,7 @@ }, /turf/simulated/floor/tiled, /area/outpost/research/eva) -"EE" = ( +"EN" = ( /obj/item/weapon/storage/box/excavation, /obj/item/weapon/pickaxe, /obj/item/weapon/wrench, @@ -17358,11 +17442,11 @@ }, /turf/simulated/floor/tiled, /area/outpost/research/eva) -"EF" = ( +"EO" = ( /obj/effect/floor_decal/corner/paleblue/full, /turf/simulated/floor/tiled/white, /area/outpost/research/hallway) -"EG" = ( +"EP" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/structure/cable/green{ @@ -17376,61 +17460,61 @@ }, /turf/simulated/floor/tiled/white, /area/outpost/research/hallway) -"EH" = ( +"EQ" = ( /obj/effect/floor_decal/corner/paleblue/full{ icon_state = "corner_white_full"; dir = 4 }, /turf/simulated/floor/tiled/white, /area/outpost/research/hallway) -"EI" = ( +"ER" = ( /obj/structure/table/standard, /obj/item/device/flashlight/lamp, /turf/simulated/floor/tiled/dark, /area/outpost/research/isolation_a) -"EJ" = ( +"ES" = ( /obj/machinery/artifact_scanpad, /turf/simulated/floor/bluegrid, /area/outpost/research/isolation_a) -"EK" = ( +"ET" = ( /obj/machinery/artifact_analyser, /turf/simulated/floor/bluegrid, /area/outpost/research/isolation_a) -"EL" = ( +"EU" = ( /obj/structure/table/standard, /obj/item/device/flashlight/lamp, /turf/simulated/floor/tiled/dark, /area/outpost/research/isolation_b) -"EM" = ( +"EV" = ( /obj/machinery/artifact_scanpad, /turf/simulated/floor/bluegrid, /area/outpost/research/isolation_b) -"EN" = ( +"EW" = ( /obj/machinery/artifact_analyser, /turf/simulated/floor/bluegrid, /area/outpost/research/isolation_b) -"EO" = ( +"EX" = ( /obj/structure/bed/chair{ dir = 1 }, /turf/simulated/floor/tiled/dark, /area/outpost/research/isolation_c) -"EP" = ( +"EY" = ( /obj/structure/table/standard, /obj/item/device/flashlight/lamp, /turf/simulated/floor/tiled/dark, /area/outpost/research/isolation_c) -"EQ" = ( +"EZ" = ( /obj/structure/bed, /turf/simulated/floor/tiled/dark, /area/outpost/research/isolation_c) -"ER" = ( +"Fa" = ( /obj/structure/crematorium{ id = "slimemurder" }, /turf/simulated/floor/tiled/dark, /area/rnd/xenobiology) -"ES" = ( +"Fb" = ( /obj/machinery/button/crematorium{ id = "slimemurder"; pixel_x = -4; @@ -17446,31 +17530,31 @@ }, /turf/simulated/floor/tiled/dark, /area/rnd/xenobiology) -"ET" = ( +"Fc" = ( /turf/simulated/wall/r_wall, /area/rnd/xenobiology) -"EU" = ( +"Fd" = ( /obj/effect/floor_decal/corner/pink{ icon_state = "corner_white"; dir = 9 }, /turf/simulated/floor/tiled/white, /area/medical/virology) -"EV" = ( +"Fe" = ( /obj/machinery/alarm{ dir = 1; pixel_y = -22 }, /turf/simulated/floor/tiled/white, /area/medical/virology) -"EW" = ( +"Ff" = ( /obj/structure/closet/secure_closet/personal/patient, /obj/machinery/atmospherics/unary/vent_scrubber/on{ dir = 1 }, /turf/simulated/floor/tiled/white, /area/medical/virology) -"EX" = ( +"Fg" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 6 }, @@ -17479,7 +17563,7 @@ }, /turf/simulated/floor/tiled/white, /area/medical/virology) -"EY" = ( +"Fh" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 9 }, @@ -17488,7 +17572,7 @@ }, /turf/simulated/floor/tiled/white, /area/medical/virology) -"EZ" = ( +"Fi" = ( /obj/structure/closet/crate/freezer, /obj/item/weapon/virusdish/random, /obj/item/weapon/virusdish/random, @@ -17499,7 +17583,7 @@ }, /turf/simulated/floor/tiled/white, /area/medical/virology) -"Fa" = ( +"Fj" = ( /obj/machinery/smartfridge/secure/virology{ density = 0; pixel_y = -32 @@ -17513,7 +17597,7 @@ }, /turf/simulated/floor/tiled/white, /area/medical/virology) -"Fb" = ( +"Fk" = ( /obj/machinery/disease2/incubator, /obj/effect/floor_decal/corner/lime{ dir = 6 @@ -17524,7 +17608,7 @@ }, /turf/simulated/floor/tiled/white, /area/medical/virology) -"Fc" = ( +"Fl" = ( /obj/structure/closet/secure_closet/personal/patient, /obj/item/clothing/under/color/white, /obj/item/clothing/under/color/white, @@ -17546,7 +17630,7 @@ }, /turf/simulated/floor/tiled/white, /area/medical/virology) -"Fd" = ( +"Fm" = ( /obj/structure/disposalpipe/segment{ dir = 1; icon_state = "pipe-c" @@ -17556,7 +17640,7 @@ /obj/effect/floor_decal/industrial/warning, /turf/simulated/floor/tiled/white, /area/medical/virology) -"Fe" = ( +"Fn" = ( /obj/structure/disposalpipe/segment{ dir = 2; icon_state = "pipe-c" @@ -17566,10 +17650,10 @@ }, /turf/simulated/floor/tiled/white, /area/medical/virology) -"Ff" = ( +"Fo" = ( /turf/simulated/wall, /area/medical/morgue) -"Fg" = ( +"Fp" = ( /obj/machinery/door/firedoor, /obj/structure/plasticflaps/airtight, /obj/machinery/door/airlock/medical{ @@ -17581,7 +17665,7 @@ temperature = 278 }, /area/medical/morgue) -"Fh" = ( +"Fq" = ( /obj/effect/floor_decal/corner/lime{ dir = 6 }, @@ -17592,7 +17676,7 @@ }, /turf/simulated/floor/tiled/white, /area/medical/patient_wing) -"Fi" = ( +"Fr" = ( /obj/structure/cable/green{ d1 = 1; d2 = 2; @@ -17604,7 +17688,7 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/tiled/white, /area/medical/patient_wing) -"Fj" = ( +"Fs" = ( /obj/machinery/atmospherics/unary/vent_pump/on{ dir = 8 }, @@ -17614,7 +17698,7 @@ }, /turf/simulated/floor/tiled/white, /area/medical/patient_wing) -"Fk" = ( +"Ft" = ( /obj/machinery/door/firedoor, /obj/structure/grille, /obj/structure/window/reinforced, @@ -17626,7 +17710,7 @@ }, /turf/simulated/floor/plating, /area/medical/patient_wing) -"Fl" = ( +"Fu" = ( /obj/item/device/radio/intercom{ dir = 0; name = "Station Intercom (General)"; @@ -17639,11 +17723,11 @@ }, /turf/simulated/floor/tiled/white, /area/medical/patient_a) -"Fm" = ( +"Fv" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/tiled/white, /area/medical/patient_a) -"Fn" = ( +"Fw" = ( /obj/structure/bed/padded, /obj/item/weapon/bedsheet/medical, /obj/machinery/vending/wallmed1{ @@ -17658,7 +17742,7 @@ /obj/effect/floor_decal/industrial/outline/grey, /turf/simulated/floor/tiled/white, /area/medical/patient_a) -"Fo" = ( +"Fx" = ( /obj/item/device/radio/intercom{ dir = 0; name = "Station Intercom (General)"; @@ -17671,11 +17755,11 @@ }, /turf/simulated/floor/tiled/white, /area/medical/patient_b) -"Fp" = ( +"Fy" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/tiled/white, /area/medical/patient_b) -"Fq" = ( +"Fz" = ( /obj/structure/bed/padded, /obj/item/weapon/bedsheet/medical, /obj/machinery/vending/wallmed1{ @@ -17690,7 +17774,7 @@ /obj/effect/floor_decal/industrial/outline/grey, /turf/simulated/floor/tiled/white, /area/medical/patient_b) -"Fr" = ( +"FA" = ( /obj/effect/floor_decal/corner/pink{ icon_state = "corner_white"; dir = 9 @@ -17699,10 +17783,10 @@ /obj/effect/floor_decal/industrial/outline/red, /turf/simulated/floor/tiled/white, /area/medical/patient_c) -"Fs" = ( +"FB" = ( /turf/simulated/floor/tiled/white, /area/medical/patient_c) -"Ft" = ( +"FC" = ( /obj/effect/floor_decal/corner/pink{ icon_state = "corner_white"; dir = 6 @@ -17712,7 +17796,7 @@ /obj/effect/floor_decal/industrial/outline/grey, /turf/simulated/floor/tiled/white, /area/medical/patient_c) -"Fu" = ( +"FD" = ( /obj/effect/floor_decal/corner/pink{ icon_state = "corner_white"; dir = 6 @@ -17727,10 +17811,10 @@ /obj/effect/floor_decal/industrial/outline/grey, /turf/simulated/floor/tiled/white, /area/medical/patient_c) -"Fv" = ( +"FE" = ( /turf/simulated/wall/r_wall, /area/rnd/test_range) -"Fw" = ( +"FF" = ( /obj/structure/window/reinforced, /obj/structure/window/reinforced{ icon_state = "rwindow"; @@ -17745,7 +17829,7 @@ /obj/structure/grille, /turf/simulated/floor/plating, /area/outpost/research/eva) -"Fx" = ( +"FG" = ( /obj/structure/window/reinforced, /obj/structure/window/reinforced{ icon_state = "rwindow"; @@ -17755,28 +17839,16 @@ dir = 2 }, /obj/structure/grille, -/turf/simulated/floor/plating, -/area/outpost/research/eva) -"Fy" = ( -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - icon_state = "rwindow"; - dir = 1 - }, /obj/structure/window/reinforced{ icon_state = "rwindow"; dir = 4 }, -/obj/machinery/door/firedoor{ - dir = 2 - }, -/obj/structure/grille, /turf/simulated/floor/plating, /area/outpost/research/eva) -"Fz" = ( +"FH" = ( /turf/simulated/wall, /area/outpost/research/hallway) -"FA" = ( +"FI" = ( /obj/structure/grille, /obj/structure/window/reinforced{ dir = 4 @@ -17792,7 +17864,7 @@ /obj/machinery/door/firedoor, /turf/simulated/floor/plating, /area/outpost/research/hallway) -"FB" = ( +"FJ" = ( /obj/machinery/door/airlock/glass_research{ name = "Xenoarchaeology Department"; req_access = list(65) @@ -17807,20 +17879,20 @@ /obj/machinery/door/firedoor, /turf/simulated/floor/tiled/white, /area/outpost/research/hallway) -"FC" = ( +"FK" = ( /obj/machinery/light/small{ dir = 8 }, /turf/simulated/floor/tiled/dark, /area/rnd/xenobiology) -"FD" = ( +"FL" = ( /turf/simulated/floor/tiled/dark, /area/rnd/xenobiology) -"FE" = ( +"FM" = ( /obj/machinery/firealarm/east, /turf/simulated/floor/tiled/dark, /area/rnd/xenobiology) -"FF" = ( +"FN" = ( /obj/machinery/light{ dir = 8 }, @@ -17829,12 +17901,12 @@ }, /turf/simulated/floor/tiled/white, /area/medical/virology) -"FG" = ( +"FO" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/tiled/white, /area/medical/virology) -"FH" = ( +"FP" = ( /obj/structure/window/reinforced{ dir = 1 }, @@ -17857,7 +17929,7 @@ }, /turf/simulated/floor/plating, /area/medical/virology) -"FI" = ( +"FQ" = ( /obj/structure/grille, /obj/structure/window/reinforced, /obj/structure/window/reinforced{ @@ -17877,7 +17949,7 @@ }, /turf/simulated/floor/plating, /area/medical/virology) -"FJ" = ( +"FR" = ( /obj/structure/grille, /obj/structure/window/reinforced, /obj/structure/window/reinforced{ @@ -17894,7 +17966,7 @@ /obj/machinery/door/firedoor, /turf/simulated/floor/plating, /area/medical/virology) -"FK" = ( +"FS" = ( /obj/structure/window/reinforced{ dir = 1 }, @@ -17907,7 +17979,7 @@ }, /turf/simulated/floor/tiled/white, /area/medical/virology) -"FL" = ( +"FT" = ( /obj/structure/window/reinforced{ icon_state = "rwindow"; dir = 4 @@ -17925,31 +17997,31 @@ }, /turf/simulated/floor/tiled/white, /area/medical/virology) -"FM" = ( +"FU" = ( /obj/structure/disposalpipe/segment, /turf/simulated/floor/tiled/ramp, /area/medical/virology) -"FN" = ( +"FV" = ( /obj/structure/morgue, /turf/simulated/floor/tiled/dark{ name = "cooled dark floor"; temperature = 278 }, /area/medical/morgue) -"FO" = ( +"FW" = ( /obj/machinery/firealarm/north, /turf/simulated/floor/tiled/dark{ name = "cooled dark floor"; temperature = 278 }, /area/medical/morgue) -"FP" = ( +"FX" = ( /turf/simulated/floor/tiled/dark{ name = "cooled dark floor"; temperature = 278 }, /area/medical/morgue) -"FQ" = ( +"FY" = ( /obj/structure/morgue{ icon_state = "morgue1"; dir = 8 @@ -17959,7 +18031,7 @@ temperature = 278 }, /area/medical/morgue) -"FR" = ( +"FZ" = ( /obj/machinery/light_switch{ pixel_y = 27 }, @@ -17968,7 +18040,7 @@ temperature = 278 }, /area/medical/morgue) -"FS" = ( +"Ga" = ( /obj/machinery/power/apc{ dir = 1; name = "north bump"; @@ -17984,7 +18056,7 @@ temperature = 278 }, /area/medical/morgue) -"FT" = ( +"Gb" = ( /obj/structure/bed/chair{ dir = 4 }, @@ -17998,7 +18070,7 @@ }, /turf/simulated/floor/tiled/white, /area/medical/patient_wing) -"FU" = ( +"Gc" = ( /obj/structure/cable/green{ d1 = 1; d2 = 2; @@ -18014,7 +18086,7 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/tiled/white, /area/medical/patient_wing) -"FV" = ( +"Gd" = ( /obj/machinery/power/apc{ dir = 4; name = "east bump"; @@ -18030,7 +18102,7 @@ }, /turf/simulated/floor/tiled/white, /area/medical/patient_wing) -"FW" = ( +"Ge" = ( /obj/structure/table/standard, /obj/machinery/computer/med_data/laptop, /obj/machinery/atmospherics/unary/vent_pump/on{ @@ -18039,7 +18111,7 @@ /obj/effect/floor_decal/corner/pink/full, /turf/simulated/floor/tiled/white, /area/medical/patient_a) -"FX" = ( +"Gf" = ( /obj/structure/cable/green{ d1 = 2; d2 = 4; @@ -18055,7 +18127,7 @@ }, /turf/simulated/floor/tiled/white, /area/medical/patient_a) -"FY" = ( +"Gg" = ( /obj/machinery/iv_drip, /obj/machinery/power/apc{ dir = 4; @@ -18073,7 +18145,7 @@ /obj/effect/floor_decal/industrial/outline/red, /turf/simulated/floor/tiled/white, /area/medical/patient_a) -"FZ" = ( +"Gh" = ( /obj/structure/table/standard, /obj/machinery/computer/med_data/laptop, /obj/machinery/atmospherics/unary/vent_pump/on{ @@ -18082,7 +18154,7 @@ /obj/effect/floor_decal/corner/pink/full, /turf/simulated/floor/tiled/white, /area/medical/patient_b) -"Ga" = ( +"Gi" = ( /obj/structure/cable/green{ d1 = 2; d2 = 4; @@ -18098,7 +18170,7 @@ }, /turf/simulated/floor/tiled/white, /area/medical/patient_b) -"Gb" = ( +"Gj" = ( /obj/machinery/iv_drip, /obj/machinery/power/apc{ dir = 4; @@ -18116,7 +18188,7 @@ /obj/effect/floor_decal/industrial/outline/red, /turf/simulated/floor/tiled/white, /area/medical/patient_b) -"Gc" = ( +"Gk" = ( /obj/effect/floor_decal/corner/pink{ icon_state = "corner_white"; dir = 9 @@ -18125,7 +18197,7 @@ /obj/machinery/computer/med_data/laptop, /turf/simulated/floor/tiled/white, /area/medical/patient_c) -"Gd" = ( +"Gl" = ( /obj/machinery/hologram/holopad, /obj/machinery/vending/wallmed1{ name = "NanoMed Wall"; @@ -18134,7 +18206,7 @@ }, /turf/simulated/floor/tiled/white, /area/medical/patient_c) -"Ge" = ( +"Gm" = ( /obj/effect/floor_decal/corner/pink{ icon_state = "corner_white"; dir = 6 @@ -18146,7 +18218,7 @@ }, /turf/simulated/floor/tiled/white, /area/medical/patient_c) -"Gf" = ( +"Gn" = ( /obj/effect/floor_decal/corner/mauve{ icon_state = "corner_white"; dir = 5 @@ -18161,7 +18233,7 @@ }, /turf/simulated/floor/tiled/white, /area/rnd/test_range) -"Gg" = ( +"Go" = ( /obj/effect/floor_decal/corner/mauve{ icon_state = "corner_white"; dir = 5 @@ -18172,7 +18244,7 @@ }, /turf/simulated/floor/tiled/white, /area/rnd/test_range) -"Gh" = ( +"Gp" = ( /obj/effect/floor_decal/corner/mauve{ icon_state = "corner_white"; dir = 5 @@ -18187,7 +18259,7 @@ }, /turf/simulated/floor/tiled/white, /area/rnd/test_range) -"Gi" = ( +"Gq" = ( /obj/effect/floor_decal/corner/mauve{ icon_state = "corner_white"; dir = 5 @@ -18201,7 +18273,7 @@ /obj/item/weapon/pen, /turf/simulated/floor/tiled/white, /area/rnd/test_range) -"Gj" = ( +"Gr" = ( /obj/structure/grille, /obj/structure/window/reinforced{ dir = 8 @@ -18216,7 +18288,7 @@ /obj/machinery/door/firedoor, /turf/simulated/floor/plating, /area/rnd/test_range) -"Gk" = ( +"Gs" = ( /obj/effect/floor_decal/corner/mauve/full{ icon_state = "corner_white_full"; dir = 8 @@ -18225,7 +18297,7 @@ /obj/effect/floor_decal/industrial/hatch/yellow, /turf/simulated/floor/tiled/white, /area/outpost/research/hallway) -"Gl" = ( +"Gt" = ( /obj/machinery/atmospherics/unary/vent_pump/on, /obj/effect/floor_decal/corner/mauve{ icon_state = "corner_white"; @@ -18236,7 +18308,7 @@ }, /turf/simulated/floor/tiled/white, /area/outpost/research/hallway) -"Gm" = ( +"Gu" = ( /obj/machinery/alarm{ pixel_y = 22 }, @@ -18246,7 +18318,7 @@ }, /turf/simulated/floor/tiled/white, /area/outpost/research/hallway) -"Gn" = ( +"Gv" = ( /obj/effect/floor_decal/corner/mauve{ icon_state = "corner_white"; dir = 5 @@ -18256,7 +18328,7 @@ }, /turf/simulated/floor/tiled/white, /area/outpost/research/hallway) -"Go" = ( +"Gw" = ( /obj/structure/cable/green{ d2 = 2; icon_state = "0-2" @@ -18273,7 +18345,7 @@ }, /turf/simulated/floor/tiled/white, /area/outpost/research/hallway) -"Gp" = ( +"Gx" = ( /obj/machinery/light{ dir = 1 }, @@ -18286,7 +18358,7 @@ }, /turf/simulated/floor/tiled/white, /area/outpost/research/hallway) -"Gq" = ( +"Gy" = ( /obj/effect/floor_decal/corner/mauve/full{ icon_state = "corner_white_full"; dir = 1 @@ -18295,15 +18367,15 @@ /obj/structure/reagent_dispensers/fueltank, /turf/simulated/floor/tiled/white, /area/outpost/research/hallway) -"Gr" = ( +"Gz" = ( /obj/structure/reagent_dispensers/watertank, /turf/simulated/floor/plating, /area/maintenance/sublevel) -"Gs" = ( +"GA" = ( /obj/structure/closet/firecloset, /turf/simulated/floor/plating, /area/maintenance/sublevel) -"Gt" = ( +"GB" = ( /obj/structure/table/rack, /obj/item/weapon/storage/toolbox/emergency{ pixel_x = 0; @@ -18311,7 +18383,7 @@ }, /turf/simulated/floor/plating, /area/maintenance/sublevel) -"Gu" = ( +"GC" = ( /obj/structure/cable/green{ d1 = 4; d2 = 8; @@ -18326,7 +18398,7 @@ /obj/machinery/door/firedoor, /turf/simulated/floor/plating, /area/maintenance/sublevel) -"Gv" = ( +"GD" = ( /obj/structure/cable/green{ d1 = 4; d2 = 8; @@ -18343,7 +18415,7 @@ }, /turf/simulated/floor/plating, /area/maintenance/sublevel) -"Gw" = ( +"GE" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 9; pixel_y = 0 @@ -18358,7 +18430,7 @@ }, /turf/simulated/floor/plating, /area/maintenance/sublevel) -"Gx" = ( +"GF" = ( /obj/machinery/disposal, /obj/structure/disposalpipe/trunk{ dir = 4 @@ -18369,7 +18441,7 @@ }, /turf/simulated/floor/tiled/white, /area/medical/virology) -"Gy" = ( +"GG" = ( /obj/structure/grille, /obj/structure/window/reinforced{ dir = 8 @@ -18392,7 +18464,7 @@ /obj/machinery/door/firedoor, /turf/simulated/floor/plating, /area/medical/virology) -"Gz" = ( +"GH" = ( /obj/structure/disposaloutlet{ dir = 4 }, @@ -18403,13 +18475,13 @@ /obj/effect/floor_decal/industrial/hatch/yellow, /turf/simulated/floor/tiled/white, /area/medical/virology) -"GA" = ( +"GI" = ( /obj/machinery/door/window/eastleft, /obj/structure/window/reinforced, /obj/effect/floor_decal/industrial/outline/yellow, /turf/simulated/floor/tiled/white, /area/medical/virology) -"GB" = ( +"GJ" = ( /obj/machinery/camera/network/medbay{ c_tag = "Medical - Virology Quarantine" }, @@ -18418,7 +18490,7 @@ }, /turf/simulated/floor/tiled/white, /area/medical/virology) -"GC" = ( +"GK" = ( /obj/structure/disposalpipe/segment{ dir = 4; icon_state = "pipe-c" @@ -18427,20 +18499,20 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/tiled/white, /area/medical/virology) -"GD" = ( +"GL" = ( /obj/structure/disposalpipe/segment{ dir = 8; icon_state = "pipe-c" }, /turf/simulated/floor/tiled/white, /area/medical/virology) -"GE" = ( +"GM" = ( /obj/machinery/alarm{ pixel_y = 22 }, /turf/simulated/floor/tiled/white, /area/medical/virology) -"GF" = ( +"GN" = ( /obj/structure/bed/padded, /obj/item/clothing/under/color/white, /obj/item/clothing/shoes/white, @@ -18453,7 +18525,7 @@ }, /turf/simulated/floor/tiled/white, /area/medical/virology) -"GG" = ( +"GO" = ( /obj/structure/morgue, /obj/machinery/light{ dir = 8 @@ -18463,7 +18535,7 @@ temperature = 278 }, /area/medical/morgue) -"GH" = ( +"GP" = ( /obj/structure/cable/green{ d1 = 1; d2 = 2; @@ -18478,7 +18550,7 @@ temperature = 278 }, /area/medical/morgue) -"GI" = ( +"GQ" = ( /obj/structure/bed/chair{ dir = 4 }, @@ -18488,7 +18560,7 @@ /obj/machinery/firealarm/west, /turf/simulated/floor/tiled/white, /area/medical/patient_wing) -"GJ" = ( +"GR" = ( /obj/machinery/newscaster{ pixel_x = 30; pixel_y = 0 @@ -18503,7 +18575,7 @@ }, /turf/simulated/floor/tiled/white, /area/medical/patient_wing) -"GK" = ( +"GS" = ( /obj/machinery/door/firedoor, /obj/structure/grille, /obj/structure/window/reinforced, @@ -18515,7 +18587,7 @@ }, /turf/simulated/floor/plating, /area/medical/patient_wing) -"GL" = ( +"GT" = ( /obj/machinery/door/firedoor, /obj/structure/grille, /obj/structure/window/reinforced, @@ -18524,7 +18596,7 @@ }, /turf/simulated/floor/plating, /area/medical/patient_wing) -"GM" = ( +"GU" = ( /obj/machinery/door/firedoor, /obj/structure/grille, /obj/structure/window/reinforced, @@ -18536,7 +18608,7 @@ }, /turf/simulated/floor/plating, /area/medical/patient_wing) -"GN" = ( +"GV" = ( /obj/structure/grille, /obj/structure/window/reinforced/polarized{ id = "isoA_window_tint" @@ -18556,7 +18628,7 @@ /obj/machinery/door/firedoor, /turf/simulated/floor/plating, /area/medical/patient_a) -"GO" = ( +"GW" = ( /obj/machinery/door/firedoor, /obj/machinery/door/airlock/medical{ name = "Sub-Acute A"; @@ -18571,7 +18643,7 @@ /obj/machinery/atmospherics/pipe/simple/hidden/supply, /turf/simulated/floor/tiled/white, /area/medical/patient_a) -"GP" = ( +"GX" = ( /obj/structure/grille, /obj/structure/window/reinforced/polarized{ dir = 4; @@ -18591,7 +18663,7 @@ /obj/machinery/door/firedoor, /turf/simulated/floor/plating, /area/medical/patient_a) -"GQ" = ( +"GY" = ( /obj/structure/grille, /obj/structure/window/reinforced/polarized{ id = "isoB_window_tint" @@ -18611,7 +18683,7 @@ /obj/machinery/door/firedoor, /turf/simulated/floor/plating, /area/medical/patient_b) -"GR" = ( +"GZ" = ( /obj/machinery/door/firedoor, /obj/machinery/door/airlock/medical{ name = "Sub-Acute B"; @@ -18626,7 +18698,7 @@ /obj/machinery/atmospherics/pipe/simple/hidden/supply, /turf/simulated/floor/tiled/white, /area/medical/patient_b) -"GS" = ( +"Ha" = ( /obj/machinery/door/firedoor, /obj/structure/grille, /obj/structure/window/reinforced{ @@ -18639,7 +18711,7 @@ }, /turf/simulated/floor/plating, /area/medical/patient_c) -"GT" = ( +"Hb" = ( /obj/machinery/door/firedoor, /obj/structure/grille, /obj/structure/window/reinforced{ @@ -18648,7 +18720,7 @@ /obj/structure/window/reinforced, /turf/simulated/floor/plating, /area/medical/patient_c) -"GU" = ( +"Hc" = ( /obj/machinery/door/firedoor, /obj/structure/grille, /obj/structure/window/reinforced{ @@ -18660,7 +18732,7 @@ }, /turf/simulated/floor/plating, /area/medical/patient_c) -"GV" = ( +"Hd" = ( /obj/machinery/door/firedoor, /obj/structure/grille, /obj/structure/window/reinforced{ @@ -18676,14 +18748,14 @@ }, /turf/simulated/floor/plating, /area/medical/patient_c) -"GW" = ( +"He" = ( /obj/machinery/door/airlock/medical{ name = "Isolation Ward Access"; req_access = list(66) }, /turf/simulated/floor/tiled/white, /area/medical/patient_c) -"GX" = ( +"Hf" = ( /obj/effect/floor_decal/corner/mauve{ icon_state = "corner_white"; dir = 9 @@ -18695,10 +18767,10 @@ }, /turf/simulated/floor/tiled/white, /area/rnd/test_range) -"GY" = ( +"Hg" = ( /turf/simulated/floor/tiled/white, /area/rnd/test_range) -"GZ" = ( +"Hh" = ( /obj/effect/floor_decal/corner/mauve{ icon_state = "corner_white"; dir = 6 @@ -18707,7 +18779,7 @@ /obj/item/weapon/folder/purple, /turf/simulated/floor/tiled/white, /area/rnd/test_range) -"Ha" = ( +"Hi" = ( /obj/structure/grille, /obj/structure/window/reinforced{ dir = 8 @@ -18720,7 +18792,7 @@ /obj/structure/window/reinforced, /turf/simulated/floor/plating, /area/rnd/test_range) -"Hb" = ( +"Hj" = ( /obj/effect/floor_decal/corner/mauve{ icon_state = "corner_white"; dir = 9 @@ -18730,7 +18802,7 @@ /obj/structure/window/reinforced, /turf/simulated/floor/tiled/white, /area/outpost/research/hallway) -"Hc" = ( +"Hk" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 6 }, @@ -18744,7 +18816,7 @@ }, /turf/simulated/floor/tiled/white, /area/outpost/research/hallway) -"Hd" = ( +"Hl" = ( /obj/structure/cable/green{ d1 = 4; d2 = 8; @@ -18758,7 +18830,7 @@ }, /turf/simulated/floor/tiled/white, /area/outpost/research/hallway) -"He" = ( +"Hm" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, @@ -18772,7 +18844,7 @@ }, /turf/simulated/floor/tiled/white, /area/outpost/research/hallway) -"Hf" = ( +"Hn" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, @@ -18791,7 +18863,7 @@ }, /turf/simulated/floor/tiled/white, /area/outpost/research/hallway) -"Hg" = ( +"Ho" = ( /obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, /obj/machinery/atmospherics/pipe/manifold/hidden/supply, /obj/structure/cable/green{ @@ -18806,7 +18878,7 @@ }, /turf/simulated/floor/tiled/white, /area/outpost/research/hallway) -"Hh" = ( +"Hp" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 10 }, @@ -18820,7 +18892,7 @@ }, /turf/simulated/floor/tiled/white, /area/outpost/research/hallway) -"Hi" = ( +"Hq" = ( /obj/effect/floor_decal/corner/mauve{ icon_state = "corner_white"; dir = 6 @@ -18830,7 +18902,7 @@ /obj/structure/reagent_dispensers/watertank, /turf/simulated/floor/tiled/white, /area/outpost/research/hallway) -"Hj" = ( +"Hr" = ( /obj/machinery/power/apc{ dir = 4; name = "east bump"; @@ -18842,7 +18914,7 @@ }, /turf/simulated/floor/plating, /area/maintenance/sublevel) -"Hk" = ( +"Hs" = ( /obj/machinery/door/airlock/research{ name = "Secure Disposals"; req_access = list(55) @@ -18850,10 +18922,10 @@ /obj/machinery/door/firedoor, /turf/simulated/floor/tiled/dark, /area/rnd/xenobiology) -"Hl" = ( +"Ht" = ( /turf/simulated/wall, /area/rnd/xenobiology) -"Hm" = ( +"Hu" = ( /obj/machinery/camera/network/medbay{ c_tag = "Medical - Virology Cell B"; dir = 4; @@ -18868,7 +18940,7 @@ }, /turf/simulated/floor/tiled/white, /area/medical/virology) -"Hn" = ( +"Hv" = ( /obj/machinery/door/window/westleft{ name = "Virology Isolation Cell Beta"; req_access = list(39) @@ -18886,7 +18958,7 @@ /obj/machinery/door/firedoor, /turf/simulated/floor/tiled/white, /area/medical/virology) -"Ho" = ( +"Hw" = ( /obj/machinery/atmospherics/pipe/manifold/hidden/supply{ dir = 4 }, @@ -18895,7 +18967,7 @@ }, /turf/simulated/floor/tiled/white, /area/medical/virology) -"Hp" = ( +"Hx" = ( /obj/item/weapon/folder/white, /obj/structure/table/standard, /obj/item/weapon/paper_bin, @@ -18911,18 +18983,18 @@ }, /turf/simulated/floor/tiled/white, /area/medical/virology) -"Hq" = ( +"Hy" = ( /obj/machinery/vending/snack, /obj/machinery/light{ dir = 8 }, /turf/simulated/floor/tiled/white, /area/medical/virology) -"Hr" = ( +"Hz" = ( /obj/item/weapon/stool/padded, /turf/simulated/floor/tiled/white, /area/medical/virology) -"Hs" = ( +"HA" = ( /obj/structure/table/standard, /obj/effect/floor_decal/corner/lime/full{ icon_state = "corner_white_full"; @@ -18930,7 +19002,7 @@ }, /turf/simulated/floor/tiled/white, /area/medical/virology) -"Ht" = ( +"HB" = ( /obj/structure/table/standard, /obj/structure/disposalpipe/segment, /obj/machinery/atmospherics/pipe/simple/hidden/supply, @@ -18943,14 +19015,14 @@ }, /turf/simulated/floor/tiled/white, /area/medical/virology) -"Hu" = ( +"HC" = ( /obj/item/weapon/stool/padded, /obj/machinery/atmospherics/unary/vent_scrubber/on{ dir = 8 }, /turf/simulated/floor/tiled/white, /area/medical/virology) -"Hv" = ( +"HD" = ( /obj/structure/bed/padded, /obj/item/clothing/under/color/white, /obj/item/clothing/shoes/white, @@ -18960,7 +19032,7 @@ }, /turf/simulated/floor/tiled/white, /area/medical/virology) -"Hw" = ( +"HE" = ( /obj/machinery/atmospherics/unary/vent_scrubber/on, /obj/structure/flora/pottedplant/random, /turf/simulated/floor/tiled/dark{ @@ -18968,7 +19040,7 @@ temperature = 278 }, /area/medical/morgue) -"Hx" = ( +"HF" = ( /obj/structure/table/standard, /obj/item/weapon/storage/box/bodybags, /obj/item/weapon/storage/box/bodybags, @@ -18977,7 +19049,7 @@ temperature = 278 }, /area/medical/morgue) -"Hy" = ( +"HG" = ( /obj/machinery/alarm{ dir = 8; icon_state = "alarm0"; @@ -18998,58 +19070,58 @@ temperature = 278 }, /area/medical/morgue) -"Hz" = ( +"HH" = ( /obj/structure/table/standard, /obj/effect/floor_decal/corner/lime{ dir = 6 }, /turf/simulated/floor/tiled/white, /area/medical/patient_wing) -"HA" = ( +"HI" = ( /obj/machinery/door/firedoor, /turf/simulated/floor/tiled/white, /area/medical/patient_wing) -"HB" = ( +"HJ" = ( /obj/structure/sign/nosmoking_2{ pixel_y = 32 }, /turf/simulated/floor/tiled/white, /area/medical/patient_wing) -"HC" = ( +"HK" = ( /obj/item/device/radio/intercom{ name = "Station Intercom (General)"; pixel_y = 22 }, /turf/simulated/floor/tiled/white, /area/medical/patient_wing) -"HD" = ( +"HL" = ( /turf/simulated/floor/tiled/white, /area/medical/patient_wing) -"HE" = ( +"HM" = ( /obj/structure/bed/roller, /obj/effect/floor_decal/industrial/outline/grey, /turf/simulated/floor/tiled/white, /area/medical/patient_wing) -"HF" = ( +"HN" = ( /obj/machinery/iv_drip, /obj/effect/floor_decal/industrial/outline/red, /turf/simulated/floor/tiled/white, /area/medical/patient_wing) -"HG" = ( +"HO" = ( /obj/machinery/atmospherics/unary/vent_pump/on, /obj/machinery/status_display{ pixel_y = 32 }, /turf/simulated/floor/tiled/white, /area/medical/patient_wing) -"HH" = ( +"HP" = ( /obj/effect/floor_decal/corner/pink{ icon_state = "corner_white"; dir = 5 }, /turf/simulated/floor/tiled/white, /area/medical/patient_wing) -"HI" = ( +"HQ" = ( /obj/structure/cable/green{ d1 = 1; d2 = 2; @@ -19064,7 +19136,7 @@ /obj/effect/floor_decal/sign/a, /turf/simulated/floor/tiled/white, /area/medical/patient_wing) -"HJ" = ( +"HR" = ( /obj/machinery/camera/network/medbay{ c_tag = "Medical - Patient Wing Hallway East" }, @@ -19074,13 +19146,13 @@ }, /turf/simulated/floor/tiled/white, /area/medical/patient_wing) -"HK" = ( +"HS" = ( /obj/machinery/alarm{ pixel_y = 22 }, /turf/simulated/floor/tiled/white, /area/medical/patient_wing) -"HL" = ( +"HT" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/effect/floor_decal/corner/pink{ @@ -19100,7 +19172,7 @@ }, /turf/simulated/floor/tiled/white, /area/medical/patient_wing) -"HM" = ( +"HU" = ( /obj/effect/floor_decal/corner/pink{ icon_state = "corner_white"; dir = 5 @@ -19112,7 +19184,7 @@ }, /turf/simulated/floor/tiled/white, /area/medical/patient_wing) -"HN" = ( +"HV" = ( /obj/machinery/door/airlock/medical{ name = "Isolation Wing"; req_access = list(5) @@ -19124,7 +19196,7 @@ }, /turf/simulated/floor/tiled/white, /area/medical/patient_wing) -"HO" = ( +"HW" = ( /obj/effect/floor_decal/corner/pink{ icon_state = "corner_white"; dir = 5 @@ -19136,7 +19208,7 @@ }, /turf/simulated/floor/tiled/white, /area/medical/patient_c) -"HP" = ( +"HX" = ( /obj/machinery/door/airlock/medical{ name = "Isolation Ward Access"; req_access = list(66) @@ -19148,7 +19220,7 @@ }, /turf/simulated/floor/tiled/white, /area/medical/patient_c) -"HQ" = ( +"HY" = ( /obj/effect/floor_decal/industrial/warning{ icon_state = "warning"; dir = 9 @@ -19160,7 +19232,7 @@ }, /turf/simulated/floor/tiled/white, /area/medical/patient_c) -"HR" = ( +"HZ" = ( /obj/effect/floor_decal/industrial/warning{ dir = 1 }, @@ -19171,7 +19243,7 @@ }, /turf/simulated/floor/tiled/white, /area/medical/patient_c) -"HS" = ( +"Ia" = ( /obj/effect/floor_decal/industrial/warning{ icon_state = "warning"; dir = 5 @@ -19190,7 +19262,7 @@ }, /turf/simulated/floor/tiled/white, /area/medical/patient_c) -"HT" = ( +"Ib" = ( /obj/effect/floor_decal/corner/mauve{ icon_state = "corner_white"; dir = 9 @@ -19213,7 +19285,7 @@ }, /turf/simulated/floor/tiled/white, /area/rnd/test_range) -"HU" = ( +"Ic" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, @@ -19224,7 +19296,7 @@ }, /turf/simulated/floor/tiled/white, /area/rnd/test_range) -"HV" = ( +"Id" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 6 }, @@ -19238,7 +19310,7 @@ }, /turf/simulated/floor/tiled/white, /area/rnd/test_range) -"HW" = ( +"Ie" = ( /obj/machinery/door/airlock/glass_research{ name = "Test Range" }, @@ -19256,7 +19328,7 @@ /obj/machinery/door/firedoor, /turf/simulated/floor/tiled/white, /area/rnd/test_range) -"HX" = ( +"If" = ( /obj/structure/cable/green{ d1 = 1; d2 = 2; @@ -19277,7 +19349,7 @@ }, /turf/simulated/floor/tiled/white, /area/outpost/research/hallway) -"HY" = ( +"Ig" = ( /obj/machinery/light, /obj/effect/floor_decal/corner/mauve{ icon_state = "corner_white"; @@ -19285,7 +19357,7 @@ }, /turf/simulated/floor/tiled/white, /area/outpost/research/hallway) -"HZ" = ( +"Ih" = ( /obj/effect/floor_decal/corner/mauve{ icon_state = "corner_white"; dir = 10 @@ -19293,14 +19365,14 @@ /obj/machinery/firealarm/south, /turf/simulated/floor/tiled/white, /area/outpost/research/hallway) -"Ia" = ( +"Ii" = ( /obj/effect/floor_decal/corner/mauve{ icon_state = "corner_white"; dir = 8 }, /turf/simulated/floor/tiled/white, /area/outpost/research/hallway) -"Ib" = ( +"Ij" = ( /obj/structure/cable/green{ d1 = 1; d2 = 4; @@ -19319,7 +19391,7 @@ }, /turf/simulated/floor/tiled/white, /area/outpost/research/hallway) -"Ic" = ( +"Ik" = ( /obj/structure/cable/green{ d1 = 4; d2 = 8; @@ -19337,7 +19409,7 @@ }, /turf/simulated/floor/tiled/white, /area/outpost/research/hallway) -"Id" = ( +"Il" = ( /obj/structure/cable/green{ d1 = 4; d2 = 8; @@ -19356,7 +19428,7 @@ /obj/machinery/door/firedoor, /turf/simulated/floor/plating, /area/maintenance/sublevel) -"Ie" = ( +"Im" = ( /obj/structure/cable/green{ d1 = 4; d2 = 8; @@ -19374,7 +19446,7 @@ }, /turf/simulated/floor/plating, /area/maintenance/sublevel) -"If" = ( +"In" = ( /obj/structure/cable/green{ d1 = 4; d2 = 8; @@ -19389,7 +19461,7 @@ /obj/machinery/light/small/emergency, /turf/simulated/floor/plating, /area/maintenance/sublevel) -"Ig" = ( +"Io" = ( /obj/structure/cable/green{ d1 = 4; d2 = 8; @@ -19408,7 +19480,7 @@ }, /turf/simulated/floor/plating, /area/maintenance/sublevel) -"Ih" = ( +"Ip" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 }, @@ -19434,7 +19506,7 @@ }, /turf/simulated/floor/plating, /area/maintenance/sublevel) -"Ii" = ( +"Iq" = ( /obj/machinery/computer/operating{ name = "Xenobiology Operating Computer" }, @@ -19447,7 +19519,7 @@ dir = 5 }, /area/rnd/xenobiology) -"Ij" = ( +"Ir" = ( /obj/structure/sign/nosmoking_1{ pixel_y = 32 }, @@ -19463,7 +19535,7 @@ dir = 5 }, /area/rnd/xenobiology) -"Ik" = ( +"Is" = ( /obj/structure/sink{ dir = 4; icon_state = "sink"; @@ -19480,7 +19552,7 @@ dir = 5 }, /area/rnd/xenobiology) -"Il" = ( +"It" = ( /obj/effect/floor_decal/corner/mauve/full{ icon_state = "corner_white_full"; dir = 8 @@ -19488,7 +19560,7 @@ /obj/structure/closet/emcloset, /turf/simulated/floor/tiled/white, /area/rnd/xenobiology) -"Im" = ( +"Iu" = ( /obj/effect/floor_decal/corner/mauve{ icon_state = "corner_white"; dir = 5 @@ -19496,14 +19568,14 @@ /obj/structure/closet/crate/bin, /turf/simulated/floor/tiled/white, /area/rnd/xenobiology) -"In" = ( +"Iv" = ( /obj/effect/floor_decal/corner/mauve/full{ icon_state = "corner_white_full"; dir = 1 }, /turf/simulated/floor/tiled/white, /area/rnd/xenobiology) -"Io" = ( +"Iw" = ( /obj/structure/window/reinforced, /obj/structure/table/reinforced, /obj/machinery/button/remote/blast_door{ @@ -19522,7 +19594,7 @@ dir = 5 }, /area/rnd/xenobiology) -"Ip" = ( +"Ix" = ( /obj/structure/grille, /obj/structure/window/reinforced{ dir = 1 @@ -19545,17 +19617,17 @@ /obj/machinery/door/firedoor, /turf/simulated/floor/plating, /area/rnd/xenobiology) -"Iq" = ( +"Iy" = ( /turf/simulated/floor/reinforced, /area/rnd/xenobiology) -"Ir" = ( +"Iz" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/machinery/atmospherics/pipe/manifold/hidden/supply{ dir = 8 }, /turf/simulated/floor/tiled/white, /area/medical/virology) -"Is" = ( +"IA" = ( /obj/structure/table/standard, /obj/item/weapon/storage/box/monkeycubes, /obj/item/weapon/storage/box/monkeycubes, @@ -19567,11 +19639,11 @@ /obj/effect/floor_decal/corner/lime/full, /turf/simulated/floor/tiled/white, /area/medical/virology) -"It" = ( +"IB" = ( /obj/structure/reagent_dispensers/water_cooler, /turf/simulated/floor/tiled/white, /area/medical/virology) -"Iu" = ( +"IC" = ( /obj/structure/table/standard, /obj/machinery/atmospherics/unary/vent_pump/on{ dir = 4 @@ -19579,7 +19651,7 @@ /obj/effect/floor_decal/corner/lime/full, /turf/simulated/floor/tiled/white, /area/medical/virology) -"Iv" = ( +"ID" = ( /obj/structure/table/standard, /obj/structure/disposalpipe/segment, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ @@ -19590,7 +19662,7 @@ }, /turf/simulated/floor/tiled/white, /area/medical/virology) -"Iw" = ( +"IE" = ( /obj/structure/bed/padded, /obj/item/clothing/under/color/white, /obj/item/clothing/shoes/white, @@ -19600,7 +19672,7 @@ }, /turf/simulated/floor/tiled/white, /area/medical/virology) -"Ix" = ( +"IF" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ icon_state = "intact-supply"; dir = 6 @@ -19613,7 +19685,7 @@ temperature = 278 }, /area/medical/morgue) -"Iy" = ( +"IG" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, @@ -19625,7 +19697,7 @@ temperature = 278 }, /area/medical/morgue) -"Iz" = ( +"IH" = ( /obj/structure/cable/green{ d1 = 1; d2 = 4; @@ -19642,7 +19714,7 @@ temperature = 278 }, /area/medical/morgue) -"IA" = ( +"II" = ( /obj/machinery/door/airlock/medical{ name = "Morgue"; req_access = list(6) @@ -19662,7 +19734,7 @@ /obj/structure/plasticflaps/airtight, /turf/simulated/floor/tiled/dark, /area/medical/morgue) -"IB" = ( +"IJ" = ( /obj/structure/cable/green{ d1 = 4; d2 = 8; @@ -19683,7 +19755,7 @@ }, /turf/simulated/floor/tiled/white, /area/medical/patient_wing) -"IC" = ( +"IK" = ( /obj/structure/disposalpipe/segment{ dir = 4; icon_state = "pipe-c" @@ -19707,7 +19779,7 @@ /obj/machinery/atmospherics/pipe/manifold4w/hidden/scrubbers, /turf/simulated/floor/tiled/white, /area/medical/patient_wing) -"ID" = ( +"IL" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, @@ -19728,7 +19800,7 @@ }, /turf/simulated/floor/tiled/white, /area/medical/patient_wing) -"IE" = ( +"IM" = ( /obj/machinery/door/airlock/multi_tile/glass{ autoclose = 1; dir = 2; @@ -19753,7 +19825,7 @@ /obj/machinery/door/firedoor, /turf/simulated/floor/tiled/white, /area/medical/patient_wing) -"IF" = ( +"IN" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, @@ -19772,7 +19844,7 @@ /obj/machinery/light, /turf/simulated/floor/tiled/white, /area/medical/patient_wing) -"IG" = ( +"IO" = ( /obj/structure/disposalpipe/junction{ icon_state = "pipe-j1"; dir = 4 @@ -19798,7 +19870,7 @@ }, /turf/simulated/floor/tiled/white, /area/medical/patient_wing) -"IH" = ( +"IP" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, @@ -19818,7 +19890,7 @@ }, /turf/simulated/floor/tiled/white, /area/medical/patient_wing) -"II" = ( +"IQ" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, @@ -19839,7 +19911,7 @@ }, /turf/simulated/floor/tiled/white, /area/medical/patient_wing) -"IJ" = ( +"IR" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, @@ -19860,7 +19932,7 @@ }, /turf/simulated/floor/tiled/white, /area/medical/patient_wing) -"IK" = ( +"IS" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, @@ -19879,7 +19951,7 @@ }, /turf/simulated/floor/tiled/white, /area/medical/patient_wing) -"IL" = ( +"IT" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, @@ -19897,7 +19969,7 @@ /obj/machinery/light, /turf/simulated/floor/tiled/white, /area/medical/patient_wing) -"IM" = ( +"IU" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, @@ -19915,7 +19987,7 @@ /obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, /turf/simulated/floor/tiled/white, /area/medical/patient_wing) -"IN" = ( +"IV" = ( /obj/structure/disposalpipe/segment{ dir = 2; icon_state = "pipe-c" @@ -19933,7 +20005,7 @@ }, /turf/simulated/floor/tiled/white, /area/medical/patient_wing) -"IO" = ( +"IW" = ( /obj/structure/cable/green{ d1 = 4; d2 = 8; @@ -19947,7 +20019,7 @@ }, /turf/simulated/floor/tiled/white, /area/medical/patient_wing) -"IP" = ( +"IX" = ( /obj/structure/cable/green{ d1 = 1; d2 = 8; @@ -19960,7 +20032,7 @@ /obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, /turf/simulated/floor/tiled/white, /area/medical/patient_wing) -"IQ" = ( +"IY" = ( /obj/machinery/atmospherics/unary/vent_scrubber/on{ dir = 8 }, @@ -19973,7 +20045,7 @@ /obj/item/weapon/reagent_containers/blood/OMinus, /turf/simulated/floor/tiled/white, /area/medical/patient_wing) -"IR" = ( +"IZ" = ( /obj/structure/bed/chair/comfy/teal{ icon_state = "comfychair_preview"; dir = 1 @@ -19983,12 +20055,12 @@ }, /turf/simulated/floor/tiled/white, /area/medical/patient_c) -"IS" = ( +"Ja" = ( /obj/structure/table/glass, /obj/machinery/light, /turf/simulated/floor/tiled/white, /area/medical/patient_c) -"IT" = ( +"Jb" = ( /obj/structure/bed/chair/comfy/teal{ icon_state = "comfychair_preview"; dir = 1 @@ -20000,13 +20072,13 @@ }, /turf/simulated/floor/tiled/white, /area/medical/patient_c) -"IU" = ( +"Jc" = ( /obj/effect/floor_decal/industrial/warning{ dir = 8 }, /turf/simulated/floor/tiled/white, /area/medical/patient_c) -"IV" = ( +"Jd" = ( /obj/effect/floor_decal/industrial/warning{ icon_state = "warning"; dir = 4 @@ -20018,7 +20090,7 @@ }, /turf/simulated/floor/tiled/white, /area/medical/patient_c) -"IW" = ( +"Je" = ( /obj/effect/floor_decal/corner/mauve{ icon_state = "corner_white"; dir = 9 @@ -20027,13 +20099,17 @@ /obj/machinery/atmospherics/unary/vent_pump/on{ dir = 1 }, +/obj/machinery/camera/network/research_outpost{ + c_tag = "Research Sublevel - Firing Range"; + dir = 4 + }, /turf/simulated/floor/tiled/white, /area/rnd/test_range) -"IX" = ( +"Jf" = ( /obj/effect/floor_decal/industrial/warning, /turf/simulated/floor/tiled/white, /area/rnd/test_range) -"IY" = ( +"Jg" = ( /obj/effect/floor_decal/corner/mauve{ icon_state = "corner_white"; dir = 6 @@ -20044,7 +20120,7 @@ }, /turf/simulated/floor/tiled/white, /area/rnd/test_range) -"IZ" = ( +"Jh" = ( /obj/structure/grille, /obj/structure/window/reinforced{ dir = 8 @@ -20061,11 +20137,11 @@ }, /turf/simulated/floor/plating, /area/rnd/test_range) -"Ja" = ( +"Ji" = ( /obj/machinery/door/firedoor, /turf/simulated/floor/tiled/white, /area/outpost/research/hallway) -"Jb" = ( +"Jj" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/structure/cable/green{ d1 = 1; @@ -20080,7 +20156,7 @@ /obj/machinery/door/firedoor, /turf/simulated/floor/tiled/white, /area/outpost/research/hallway) -"Jc" = ( +"Jk" = ( /obj/machinery/optable{ name = "Xenobiology Operating Table" }, @@ -20095,13 +20171,13 @@ dir = 5 }, /area/rnd/xenobiology) -"Jd" = ( +"Jl" = ( /turf/simulated/floor/tiled{ icon_state = "vault"; dir = 5 }, /area/rnd/xenobiology) -"Je" = ( +"Jm" = ( /obj/structure/table/standard, /obj/item/weapon/circular_saw, /obj/item/weapon/scalpel{ @@ -20121,7 +20197,7 @@ dir = 5 }, /area/rnd/xenobiology) -"Jf" = ( +"Jn" = ( /obj/effect/floor_decal/corner/mauve{ icon_state = "corner_white"; dir = 9 @@ -20134,17 +20210,17 @@ }, /turf/simulated/floor/tiled/white, /area/rnd/xenobiology) -"Jg" = ( +"Jo" = ( /turf/simulated/floor/tiled/white, /area/rnd/xenobiology) -"Jh" = ( +"Jp" = ( /obj/effect/floor_decal/corner/mauve{ icon_state = "corner_white"; dir = 6 }, /turf/simulated/floor/tiled/white, /area/rnd/xenobiology) -"Ji" = ( +"Jq" = ( /obj/machinery/door/window/westright{ name = "Containment Pen"; req_access = list(47) @@ -20157,7 +20233,7 @@ dir = 5 }, /area/rnd/xenobiology) -"Jj" = ( +"Jr" = ( /obj/machinery/door/blast/regular{ density = 0; dir = 1; @@ -20173,14 +20249,14 @@ /obj/machinery/door/firedoor, /turf/simulated/floor/reinforced, /area/rnd/xenobiology) -"Jk" = ( +"Js" = ( /obj/machinery/camera/network/research_outpost{ c_tag = "Research Sublevel - Xenobiology Cell 6"; dir = 8 }, /turf/simulated/floor/reinforced, /area/rnd/xenobiology) -"Jl" = ( +"Jt" = ( /obj/machinery/light{ dir = 8 }, @@ -20190,12 +20266,12 @@ }, /turf/simulated/floor/tiled/white, /area/medical/virology) -"Jm" = ( +"Ju" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/machinery/atmospherics/pipe/simple/hidden/supply, /turf/simulated/floor/tiled/white, /area/medical/virology) -"Jn" = ( +"Jv" = ( /obj/structure/table/standard, /obj/item/weapon/storage/box/cups, /obj/machinery/newscaster{ @@ -20203,20 +20279,20 @@ }, /turf/simulated/floor/tiled/white, /area/medical/virology) -"Jo" = ( +"Jw" = ( /obj/structure/disposalpipe/segment{ dir = 1; icon_state = "pipe-c" }, /turf/simulated/floor/tiled/white, /area/medical/virology) -"Jp" = ( +"Jx" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, /turf/simulated/floor/tiled/white, /area/medical/virology) -"Jq" = ( +"Jy" = ( /obj/machinery/disposal, /obj/effect/decal/warning_stripes, /obj/structure/disposalpipe/trunk{ @@ -20228,7 +20304,7 @@ /obj/machinery/firealarm/south, /turf/simulated/floor/tiled/white, /area/medical/virology) -"Jr" = ( +"Jz" = ( /obj/machinery/atmospherics/unary/vent_pump/on{ dir = 1 }, @@ -20241,7 +20317,7 @@ temperature = 278 }, /area/medical/morgue) -"Js" = ( +"JA" = ( /obj/machinery/door/firedoor, /obj/structure/grille, /obj/structure/window/reinforced{ @@ -20257,7 +20333,7 @@ }, /turf/simulated/floor/plating, /area/medical/morgue) -"Jt" = ( +"JB" = ( /obj/effect/floor_decal/corner/paleblue/diagonal, /obj/machinery/door/airlock/medical{ name = "Autopsy Laboratory"; @@ -20266,7 +20342,7 @@ /obj/structure/plasticflaps/airtight, /turf/simulated/floor/tiled/white, /area/medical/morgue) -"Ju" = ( +"JC" = ( /obj/machinery/door/firedoor, /obj/structure/grille, /obj/structure/window/reinforced{ @@ -20283,10 +20359,10 @@ }, /turf/simulated/floor/plating, /area/medical/morgue) -"Jv" = ( +"JD" = ( /turf/simulated/wall, /area/medical/medbay4) -"Jw" = ( +"JE" = ( /obj/structure/disposalpipe/segment, /obj/machinery/door/airlock/medical{ name = "Staff Wing"; @@ -20302,10 +20378,10 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/tiled/dark, /area/medical/medbay4) -"Jx" = ( +"JF" = ( /turf/simulated/wall, /area/medical/ward) -"Jy" = ( +"JG" = ( /obj/machinery/door/airlock/multi_tile/glass{ name = "Patient Ward"; req_access = list(5) @@ -20320,12 +20396,12 @@ /obj/machinery/door/firedoor, /turf/simulated/floor/tiled/white, /area/medical/ward) -"Jz" = ( +"JH" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/machinery/door/firedoor, /turf/simulated/floor/tiled/white, /area/medical/ward) -"JA" = ( +"JI" = ( /obj/structure/window/reinforced, /obj/structure/window/reinforced{ dir = 1 @@ -20337,7 +20413,7 @@ /obj/structure/flora/ausbushes/leafybush, /turf/simulated/floor/grass, /area/medical/patient_wing) -"JB" = ( +"JJ" = ( /obj/structure/window/reinforced, /obj/structure/window/reinforced{ dir = 1 @@ -20348,22 +20424,22 @@ /obj/structure/flora/ausbushes/sunnybush, /turf/simulated/floor/grass, /area/medical/patient_wing) -"JC" = ( +"JK" = ( /obj/structure/disposalpipe/segment, /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/effect/floor_decal/corner/grey/diagonal, /turf/simulated/floor/tiled/white, /area/medical/patient_wing) -"JD" = ( +"JL" = ( /obj/effect/floor_decal/corner/grey/diagonal, /turf/simulated/floor/tiled/white, /area/medical/patient_wing) -"JE" = ( +"JM" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/effect/floor_decal/corner/grey/diagonal, /turf/simulated/floor/tiled/white, /area/medical/patient_wing) -"JF" = ( +"JN" = ( /obj/structure/window/reinforced, /obj/structure/window/reinforced{ dir = 1 @@ -20375,7 +20451,7 @@ /obj/structure/flora/ausbushes/sunnybush, /turf/simulated/floor/grass, /area/medical/patient_wing) -"JG" = ( +"JO" = ( /obj/structure/window/reinforced, /obj/structure/window/reinforced{ dir = 1 @@ -20386,7 +20462,7 @@ /obj/structure/flora/ausbushes/leafybush, /turf/simulated/floor/grass, /area/medical/patient_wing) -"JH" = ( +"JP" = ( /obj/structure/closet/l3closet/virology, /obj/item/clothing/mask/gas, /obj/effect/floor_decal/industrial/warning{ @@ -20398,14 +20474,14 @@ }, /turf/simulated/floor/tiled/white, /area/medical/patient_c) -"JI" = ( +"JQ" = ( /obj/structure/closet/l3closet/virology, /obj/item/clothing/mask/gas, /obj/effect/floor_decal/industrial/warning, /obj/machinery/light, /turf/simulated/floor/tiled/white, /area/medical/patient_c) -"JJ" = ( +"JR" = ( /obj/machinery/shower{ dir = 1 }, @@ -20421,14 +20497,14 @@ }, /turf/simulated/floor/tiled/white, /area/medical/patient_c) -"JK" = ( +"JS" = ( /obj/machinery/door/window/southright{ name = "Range Access" }, /obj/machinery/door/firedoor, /turf/simulated/floor/tiled/dark, /area/rnd/test_range) -"JL" = ( +"JT" = ( /obj/structure/table/reinforced, /obj/structure/window/reinforced{ icon_state = "rwindow"; @@ -20439,7 +20515,7 @@ /obj/machinery/door/firedoor, /turf/simulated/floor/tiled/dark, /area/rnd/test_range) -"JM" = ( +"JU" = ( /obj/structure/table/reinforced, /obj/effect/floor_decal/industrial/warning{ dir = 8 @@ -20450,7 +20526,7 @@ /obj/machinery/door/firedoor, /turf/simulated/floor/tiled/dark, /area/rnd/test_range) -"JN" = ( +"JV" = ( /obj/structure/table/reinforced, /obj/item/target, /obj/item/target, @@ -20463,7 +20539,7 @@ /obj/machinery/door/firedoor, /turf/simulated/floor/tiled/dark, /area/rnd/test_range) -"JO" = ( +"JW" = ( /obj/structure/grille, /obj/structure/window/reinforced{ dir = 8 @@ -20475,7 +20551,7 @@ /obj/machinery/door/firedoor, /turf/simulated/floor/plating, /area/rnd/test_range) -"JP" = ( +"JX" = ( /obj/effect/floor_decal/corner/mauve{ icon_state = "corner_white"; dir = 9 @@ -20485,7 +20561,7 @@ }, /turf/simulated/floor/tiled/white, /area/outpost/research/hallway) -"JQ" = ( +"JY" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 6 }, @@ -20499,7 +20575,7 @@ }, /turf/simulated/floor/tiled/white, /area/outpost/research/hallway) -"JR" = ( +"JZ" = ( /obj/effect/floor_decal/corner/mauve{ icon_state = "corner_white"; dir = 6 @@ -20523,12 +20599,12 @@ /obj/machinery/firealarm/east, /turf/simulated/floor/tiled/white, /area/outpost/research/hallway) -"JS" = ( +"Ka" = ( /turf/simulated/floor{ icon_state = "plating" }, /area/turbolift/research_maintenance) -"JT" = ( +"Kb" = ( /obj/machinery/camera/network/research_outpost{ c_tag = "Research Sublevel - Camera Corridor 1"; dir = 4 @@ -20539,11 +20615,11 @@ }, /turf/simulated/floor/tiled/white, /area/outpost/research/hallway) -"JU" = ( +"Kc" = ( /obj/item/toy/plushie/spider, /turf/simulated/floor/plating, /area/rnd/xenobiology) -"JV" = ( +"Kd" = ( /obj/machinery/smartfridge/secure/extract, /obj/effect/floor_decal/corner/white/full, /turf/simulated/floor/tiled{ @@ -20551,7 +20627,7 @@ dir = 5 }, /area/rnd/xenobiology) -"JW" = ( +"Ke" = ( /obj/effect/floor_decal/corner/white{ icon_state = "corner_white"; dir = 10 @@ -20561,7 +20637,7 @@ dir = 5 }, /area/rnd/xenobiology) -"JX" = ( +"Kf" = ( /obj/machinery/vending/wallmed1{ name = "Emergency NanoMed"; pixel_x = 26; @@ -20577,14 +20653,14 @@ dir = 5 }, /area/rnd/xenobiology) -"JY" = ( +"Kg" = ( /obj/effect/floor_decal/corner/mauve{ icon_state = "corner_white"; dir = 9 }, /turf/simulated/floor/tiled/white, /area/rnd/xenobiology) -"JZ" = ( +"Kh" = ( /obj/structure/window/reinforced{ dir = 1 }, @@ -20605,7 +20681,7 @@ dir = 5 }, /area/rnd/xenobiology) -"Ka" = ( +"Ki" = ( /obj/structure/grille, /obj/structure/window/reinforced{ dir = 1 @@ -20631,20 +20707,20 @@ /obj/machinery/door/firedoor, /turf/simulated/floor/plating, /area/rnd/xenobiology) -"Kb" = ( +"Kj" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, /turf/simulated/floor/reinforced, /area/rnd/xenobiology) -"Kc" = ( +"Kk" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, /obj/machinery/light/small, /turf/simulated/floor/reinforced, /area/rnd/xenobiology) -"Kd" = ( +"Kl" = ( /obj/structure/disposaloutlet{ dir = 1 }, @@ -20653,13 +20729,13 @@ }, /turf/simulated/floor/reinforced, /area/rnd/xenobiology) -"Ke" = ( +"Km" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/effect/floor_decal/corner/lime, /turf/simulated/floor/tiled/white, /area/medical/virology) -"Kf" = ( +"Kn" = ( /obj/structure/window/reinforced, /obj/effect/floor_decal/corner/lime{ dir = 10 @@ -20667,7 +20743,7 @@ /obj/machinery/firealarm/east, /turf/simulated/floor/tiled/white, /area/medical/virology) -"Kg" = ( +"Ko" = ( /obj/structure/window/reinforced, /obj/structure/window/reinforced{ dir = 1 @@ -20679,7 +20755,7 @@ /obj/machinery/door/firedoor, /turf/simulated/floor/plating, /area/medical/virology) -"Kh" = ( +"Kp" = ( /obj/structure/window/reinforced, /obj/structure/window/reinforced{ dir = 4 @@ -20691,11 +20767,11 @@ /obj/machinery/door/firedoor, /turf/simulated/floor/plating, /area/medical/virology) -"Ki" = ( +"Kq" = ( /obj/machinery/door/firedoor, /turf/simulated/floor/tiled/white, /area/medical/virology) -"Kj" = ( +"Kr" = ( /obj/machinery/camera/network/medbay{ c_tag = "Medical - Virology Starboard"; dir = 8 @@ -20703,7 +20779,7 @@ /obj/machinery/door/firedoor, /turf/simulated/floor/tiled/white, /area/medical/virology) -"Kk" = ( +"Ks" = ( /obj/machinery/door/firedoor, /obj/structure/grille, /obj/structure/window/reinforced{ @@ -20718,16 +20794,16 @@ }, /turf/simulated/floor/plating, /area/medical/morgue) -"Kl" = ( +"Kt" = ( /obj/effect/floor_decal/corner/paleblue/diagonal, /obj/machinery/optable, /turf/simulated/floor/tiled/white, /area/medical/morgue) -"Km" = ( +"Ku" = ( /obj/effect/floor_decal/corner/paleblue/diagonal, /turf/simulated/floor/tiled/white, /area/medical/morgue) -"Kn" = ( +"Kv" = ( /obj/effect/floor_decal/corner/paleblue/diagonal, /obj/structure/morgue{ icon_state = "morgue1"; @@ -20735,14 +20811,14 @@ }, /turf/simulated/floor/tiled/white, /area/medical/morgue) -"Ko" = ( +"Kw" = ( /obj/structure/flora/pottedplant/random, /obj/machinery/light{ dir = 1 }, /turf/simulated/floor/tiled, /area/medical/medbay4) -"Kp" = ( +"Kx" = ( /obj/structure/disposalpipe/segment, /obj/structure/cable/green{ d1 = 1; @@ -20757,7 +20833,7 @@ }, /turf/simulated/floor/tiled, /area/medical/medbay4) -"Kq" = ( +"Ky" = ( /obj/structure/closet/secure_closet/personal/patient, /obj/effect/floor_decal/corner/lime{ icon_state = "corner_white"; @@ -20765,7 +20841,7 @@ }, /turf/simulated/floor/tiled/white, /area/medical/ward) -"Kr" = ( +"Kz" = ( /obj/machinery/alarm{ pixel_y = 22 }, @@ -20775,7 +20851,7 @@ }, /turf/simulated/floor/tiled/white, /area/medical/ward) -"Ks" = ( +"KA" = ( /obj/structure/disposalpipe/segment, /obj/structure/cable/green{ d1 = 1; @@ -20789,7 +20865,7 @@ }, /turf/simulated/floor/tiled/white, /area/medical/ward) -"Kt" = ( +"KB" = ( /obj/structure/cable/green{ d1 = 4; d2 = 8; @@ -20801,7 +20877,7 @@ }, /turf/simulated/floor/tiled/white, /area/medical/ward) -"Ku" = ( +"KC" = ( /obj/machinery/power/apc{ dir = 1; name = "north bump"; @@ -20818,12 +20894,12 @@ }, /turf/simulated/floor/tiled/white, /area/medical/ward) -"Kv" = ( +"KD" = ( /obj/structure/bed/chair/comfy/teal, /obj/effect/floor_decal/corner/grey/diagonal, /turf/simulated/floor/tiled/white, /area/medical/patient_wing) -"Kw" = ( +"KE" = ( /obj/structure/disposalpipe/segment{ dir = 4; icon_state = "pipe-c" @@ -20835,7 +20911,7 @@ /obj/effect/floor_decal/corner/grey/diagonal, /turf/simulated/floor/tiled/white, /area/medical/patient_wing) -"Kx" = ( +"KF" = ( /obj/structure/disposalpipe/segment{ dir = 8; icon_state = "pipe-c" @@ -20847,12 +20923,12 @@ /obj/effect/floor_decal/corner/grey/diagonal, /turf/simulated/floor/tiled/white, /area/medical/patient_wing) -"Ky" = ( +"KG" = ( /obj/machinery/hologram/holopad, /obj/effect/floor_decal/corner/grey/diagonal, /turf/simulated/floor/tiled/white, /area/medical/patient_wing) -"Kz" = ( +"KH" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ icon_state = "intact-scrubbers"; dir = 5 @@ -20860,14 +20936,14 @@ /obj/effect/floor_decal/corner/grey/diagonal, /turf/simulated/floor/tiled/white, /area/medical/patient_wing) -"KA" = ( +"KI" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 10 }, /obj/effect/floor_decal/corner/grey/diagonal, /turf/simulated/floor/tiled/white, /area/medical/patient_wing) -"KB" = ( +"KJ" = ( /obj/structure/bed/chair/comfy/teal{ dir = 8; icon_state = "comfychair_preview" @@ -20875,7 +20951,7 @@ /obj/effect/floor_decal/corner/grey/diagonal, /turf/simulated/floor/tiled/white, /area/medical/patient_wing) -"KC" = ( +"KK" = ( /obj/machinery/door/firedoor, /obj/structure/grille, /obj/structure/window/reinforced{ @@ -20889,10 +20965,10 @@ }, /turf/simulated/floor/plating, /area/medical/patient_wing) -"KD" = ( +"KL" = ( /turf/simulated/floor/tiled/dark, /area/rnd/test_range) -"KE" = ( +"KM" = ( /obj/effect/floor_decal/industrial/warning{ dir = 8 }, @@ -20901,7 +20977,7 @@ }, /turf/simulated/floor/tiled/dark, /area/rnd/test_range) -"KF" = ( +"KN" = ( /obj/structure/grille, /obj/structure/window/reinforced, /obj/structure/window/reinforced{ @@ -20914,7 +20990,7 @@ /obj/machinery/door/firedoor, /turf/simulated/floor/plating, /area/rnd/test_range) -"KG" = ( +"KO" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/structure/cable/green{ @@ -20924,7 +21000,7 @@ }, /turf/simulated/floor/tiled/white, /area/outpost/research/hallway) -"KH" = ( +"KP" = ( /obj/effect/floor_decal/corner/mauve{ icon_state = "corner_white"; dir = 6 @@ -20936,7 +21012,7 @@ }, /turf/simulated/floor/tiled/white, /area/outpost/research/hallway) -"KI" = ( +"KQ" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/machinery/atmospherics/pipe/manifold/hidden/supply{ dir = 8 @@ -20948,7 +21024,7 @@ }, /turf/simulated/floor/tiled/white, /area/outpost/research/hallway) -"KJ" = ( +"KR" = ( /obj/machinery/atmospherics/unary/vent_pump/on{ dir = 8 }, @@ -20963,7 +21039,7 @@ }, /turf/simulated/floor/tiled/white, /area/outpost/research/hallway) -"KK" = ( +"KS" = ( /obj/machinery/requests_console{ department = "Science"; departmentType = 2; @@ -20983,7 +21059,7 @@ /obj/structure/table/standard, /turf/simulated/floor/tiled/white, /area/rnd/xenobiology) -"KL" = ( +"KT" = ( /obj/item/device/radio/intercom{ frequency = 1459; name = "Station Intercom (General)"; @@ -20999,7 +21075,7 @@ }, /turf/simulated/floor/tiled/white, /area/rnd/xenobiology) -"KM" = ( +"KU" = ( /obj/structure/extinguisher_cabinet{ pixel_y = 32 }, @@ -21009,14 +21085,14 @@ }, /turf/simulated/floor/tiled/white, /area/rnd/xenobiology) -"KN" = ( +"KV" = ( /obj/effect/floor_decal/corner/mauve{ icon_state = "corner_white"; dir = 5 }, /turf/simulated/floor/tiled/white, /area/rnd/xenobiology) -"KO" = ( +"KW" = ( /obj/machinery/camera/network/research_outpost{ c_tag = "Research Sublevel - Xenobiology Fore" }, @@ -21026,18 +21102,18 @@ }, /turf/simulated/floor/tiled/white, /area/rnd/xenobiology) -"KP" = ( +"KX" = ( /obj/effect/floor_decal/corner/mauve{ icon_state = "corner_white"; dir = 1 }, /turf/simulated/floor/tiled/white, /area/rnd/xenobiology) -"KQ" = ( +"KY" = ( /obj/structure/reagent_dispensers/watertank, /turf/simulated/floor/tiled/white, /area/rnd/xenobiology) -"KR" = ( +"KZ" = ( /obj/machinery/camera/network/medbay{ c_tag = "Medical - Virology Cell C"; dir = 4; @@ -21052,7 +21128,7 @@ }, /turf/simulated/floor/tiled/white, /area/medical/virology) -"KS" = ( +"La" = ( /obj/machinery/door/window/westleft{ name = "Virology Isolation Cell Ceta"; req_access = list(39) @@ -21070,7 +21146,7 @@ /obj/machinery/door/firedoor, /turf/simulated/floor/tiled/white, /area/medical/virology) -"KT" = ( +"Lb" = ( /obj/structure/window/reinforced{ dir = 4 }, @@ -21086,7 +21162,7 @@ }, /turf/simulated/floor/tiled/white, /area/medical/virology) -"KU" = ( +"Lc" = ( /obj/structure/bed/chair, /obj/effect/floor_decal/industrial/warning{ icon_state = "warning"; @@ -21094,7 +21170,7 @@ }, /turf/simulated/floor/plating, /area/medical/virology) -"KV" = ( +"Ld" = ( /obj/structure/sink{ pixel_y = 16 }, @@ -21103,14 +21179,14 @@ }, /turf/simulated/floor/plating, /area/medical/virology) -"KW" = ( +"Le" = ( /obj/structure/cryofeed{ icon_state = "cryo_rear"; dir = 4 }, /turf/simulated/floor/tiled/white, /area/medical/virology) -"KX" = ( +"Lf" = ( /obj/effect/landmark{ name = "blobstart" }, @@ -21120,14 +21196,14 @@ }, /turf/simulated/floor/tiled/white, /area/medical/virology) -"KY" = ( +"Lg" = ( /obj/effect/floor_decal/industrial/warning{ icon_state = "warning"; dir = 9 }, /turf/simulated/floor/tiled/white, /area/medical/virology) -"KZ" = ( +"Lh" = ( /obj/effect/floor_decal/industrial/warning{ dir = 5 }, @@ -21136,7 +21212,7 @@ }, /turf/simulated/floor/tiled/white, /area/medical/virology) -"La" = ( +"Li" = ( /obj/machinery/door/firedoor, /obj/structure/grille, /obj/structure/window/reinforced{ @@ -21148,7 +21224,7 @@ }, /turf/simulated/floor/plating, /area/medical/morgue) -"Lb" = ( +"Lj" = ( /obj/machinery/light{ dir = 4; icon_state = "tube1" @@ -21162,7 +21238,7 @@ }, /turf/simulated/floor/tiled/white, /area/medical/morgue) -"Lc" = ( +"Lk" = ( /obj/structure/bed/chair/wheelchair{ icon_state = "wheelchair"; dir = 4 @@ -21170,7 +21246,7 @@ /obj/effect/floor_decal/industrial/outline/yellow, /turf/simulated/floor/tiled, /area/medical/medbay4) -"Ld" = ( +"Ll" = ( /obj/structure/disposalpipe/segment, /obj/structure/cable/green{ d1 = 1; @@ -21181,7 +21257,7 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/tiled, /area/medical/medbay4) -"Le" = ( +"Lm" = ( /obj/structure/bed, /obj/item/weapon/bedsheet/medical, /obj/machinery/vending/wallmed1{ @@ -21192,10 +21268,10 @@ /obj/effect/floor_decal/industrial/outline/grey, /turf/simulated/floor/tiled/white, /area/medical/ward) -"Lf" = ( +"Ln" = ( /turf/simulated/floor/tiled/white, /area/medical/ward) -"Lg" = ( +"Lo" = ( /obj/structure/disposalpipe/segment, /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/effect/floor_decal/corner/lime{ @@ -21204,14 +21280,14 @@ }, /turf/simulated/floor/tiled/white, /area/medical/ward) -"Lh" = ( +"Lp" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/effect/floor_decal/corner/lime{ dir = 6 }, /turf/simulated/floor/tiled/white, /area/medical/ward) -"Li" = ( +"Lq" = ( /obj/structure/bed, /obj/item/weapon/bedsheet/medical, /obj/machinery/vending/wallmed1{ @@ -21222,12 +21298,12 @@ /obj/effect/floor_decal/industrial/outline/grey, /turf/simulated/floor/tiled/white, /area/medical/ward) -"Lj" = ( +"Lr" = ( /obj/structure/table/glass, /obj/effect/floor_decal/corner/grey/diagonal, /turf/simulated/floor/tiled/white, /area/medical/patient_wing) -"Lk" = ( +"Ls" = ( /obj/structure/disposalpipe/segment, /obj/machinery/atmospherics/unary/vent_pump/on{ dir = 1 @@ -21235,7 +21311,7 @@ /obj/effect/floor_decal/corner/grey/diagonal, /turf/simulated/floor/tiled/white, /area/medical/patient_wing) -"Ll" = ( +"Lt" = ( /obj/structure/window/reinforced{ icon_state = "rwindow"; dir = 8 @@ -21248,7 +21324,7 @@ /obj/structure/flora/ausbushes/ywflowers, /turf/simulated/floor/grass, /area/medical/patient_wing) -"Lm" = ( +"Lu" = ( /obj/structure/window/reinforced{ dir = 1 }, @@ -21257,7 +21333,7 @@ /obj/structure/flora/ausbushes/ywflowers, /turf/simulated/floor/grass, /area/medical/patient_wing) -"Ln" = ( +"Lv" = ( /obj/structure/window/reinforced{ dir = 4 }, @@ -21269,19 +21345,19 @@ /obj/structure/flora/ausbushes/ywflowers, /turf/simulated/floor/grass, /area/medical/patient_wing) -"Lo" = ( +"Lw" = ( /obj/machinery/atmospherics/unary/vent_scrubber/on{ dir = 1 }, /obj/effect/floor_decal/corner/grey/diagonal, /turf/simulated/floor/tiled/white, /area/medical/patient_wing) -"Lp" = ( +"Lx" = ( /obj/structure/reagent_dispensers/water_cooler, /obj/effect/floor_decal/corner/grey/diagonal, /turf/simulated/floor/tiled/white, /area/medical/patient_wing) -"Lq" = ( +"Ly" = ( /obj/machinery/door/firedoor, /obj/structure/grille, /obj/structure/window/reinforced{ @@ -21292,14 +21368,14 @@ }, /turf/simulated/floor/plating, /area/medical/patient_wing) -"Lr" = ( +"Lz" = ( /obj/machinery/light{ dir = 4; status = 2 }, /turf/simulated/floor/tiled/dark, /area/rnd/test_range) -"Ls" = ( +"LA" = ( /obj/structure/grille, /obj/structure/window/phoronreinforced{ icon_state = "phoronrwindow"; @@ -21317,7 +21393,7 @@ /obj/machinery/door/firedoor, /turf/simulated/floor/plating, /area/outpost/research/hallway) -"Lt" = ( +"LB" = ( /obj/machinery/door/airlock/research{ frequency = 1379; icon_state = "door_locked"; @@ -21345,7 +21421,7 @@ }, /turf/simulated/floor/tiled/dark, /area/outpost/research/hallway) -"Lu" = ( +"LC" = ( /obj/machinery/light/small{ dir = 8 }, @@ -21353,7 +21429,7 @@ icon_state = "plating" }, /area/turbolift/research_maintenance) -"Lv" = ( +"LD" = ( /obj/machinery/light/small{ dir = 4 }, @@ -21361,7 +21437,7 @@ icon_state = "plating" }, /area/turbolift/research_maintenance) -"Lw" = ( +"LE" = ( /obj/structure/closet/emcloset, /obj/effect/floor_decal/industrial/warning{ icon_state = "warning"; @@ -21369,7 +21445,7 @@ }, /turf/simulated/floor/tiled/white, /area/rnd/xenobiology) -"Lx" = ( +"LF" = ( /obj/structure/closet/l3closet/scientist, /obj/structure/sign/nosmoking_1{ pixel_y = 32 @@ -21385,14 +21461,14 @@ }, /turf/simulated/floor/tiled/white, /area/rnd/xenobiology) -"Ly" = ( +"LG" = ( /obj/structure/closet/l3closet/scientist, /obj/effect/floor_decal/industrial/warning{ dir = 5 }, /turf/simulated/floor/tiled/white, /area/rnd/xenobiology) -"Lz" = ( +"LH" = ( /obj/machinery/newscaster{ pixel_x = -32 }, @@ -21409,7 +21485,7 @@ /obj/item/weapon/pen, /turf/simulated/floor/tiled/white, /area/rnd/xenobiology) -"LA" = ( +"LI" = ( /obj/machinery/atmospherics/unary/vent_scrubber/on, /obj/effect/floor_decal/corner/mauve{ icon_state = "corner_white"; @@ -21417,7 +21493,7 @@ }, /turf/simulated/floor/tiled/white, /area/rnd/xenobiology) -"LB" = ( +"LJ" = ( /obj/structure/window/reinforced, /obj/structure/table/reinforced, /obj/machinery/button/remote/blast_door{ @@ -21440,7 +21516,7 @@ dir = 5 }, /area/rnd/xenobiology) -"LC" = ( +"LK" = ( /obj/structure/grille, /obj/structure/window/reinforced{ dir = 1 @@ -21463,7 +21539,7 @@ /obj/machinery/door/firedoor, /turf/simulated/floor/plating, /area/rnd/xenobiology) -"LD" = ( +"LL" = ( /obj/machinery/door/window/eastleft{ name = "Simian Storage"; req_access = list(39) @@ -21473,19 +21549,19 @@ }, /turf/simulated/floor/tiled/white, /area/medical/virology) -"LE" = ( +"LM" = ( /obj/effect/floor_decal/industrial/warning{ dir = 8 }, /turf/simulated/floor/plating, /area/medical/virology) -"LF" = ( +"LN" = ( /obj/machinery/light/small{ dir = 4 }, /turf/simulated/floor/plating, /area/medical/virology) -"LG" = ( +"LO" = ( /obj/structure/cryofeed{ icon_state = "cryo_rear"; dir = 4 @@ -21495,14 +21571,14 @@ }, /turf/simulated/floor/tiled/white, /area/medical/virology) -"LH" = ( +"LP" = ( /obj/machinery/cryopod{ icon_state = "body_scanner_0"; dir = 4 }, /turf/simulated/floor/tiled/white, /area/medical/virology) -"LI" = ( +"LQ" = ( /obj/machinery/washing_machine, /obj/effect/floor_decal/industrial/warning{ icon_state = "warning"; @@ -21510,7 +21586,7 @@ }, /turf/simulated/floor/tiled/white, /area/medical/virology) -"LJ" = ( +"LR" = ( /obj/structure/table/standard, /obj/structure/bedsheetbin, /obj/effect/floor_decal/industrial/warning{ @@ -21522,7 +21598,7 @@ }, /turf/simulated/floor/tiled/white, /area/medical/virology) -"LK" = ( +"LS" = ( /obj/machinery/door/firedoor, /obj/structure/grille, /obj/structure/window/reinforced{ @@ -21535,7 +21611,7 @@ /obj/structure/window/reinforced, /turf/simulated/floor/plating, /area/medical/morgue) -"LL" = ( +"LT" = ( /obj/effect/floor_decal/corner/paleblue/diagonal, /obj/structure/table/standard, /obj/item/weapon/scalpel, @@ -21543,7 +21619,7 @@ /obj/machinery/firealarm/south, /turf/simulated/floor/tiled/white, /area/medical/morgue) -"LM" = ( +"LU" = ( /obj/effect/floor_decal/corner/paleblue/diagonal, /obj/structure/table/standard, /obj/item/device/mass_spectrometer, @@ -21554,7 +21630,7 @@ }, /turf/simulated/floor/tiled/white, /area/medical/morgue) -"LN" = ( +"LV" = ( /obj/effect/floor_decal/corner/paleblue/diagonal, /obj/machinery/requests_console{ department = "Medical Bay"; @@ -21567,7 +21643,7 @@ /obj/item/weapon/pen, /turf/simulated/floor/tiled/white, /area/medical/morgue) -"LO" = ( +"LW" = ( /obj/structure/bed/chair/wheelchair{ icon_state = "wheelchair"; dir = 4 @@ -21583,7 +21659,7 @@ /obj/effect/floor_decal/industrial/outline/yellow, /turf/simulated/floor/tiled, /area/medical/medbay4) -"LP" = ( +"LX" = ( /obj/structure/disposalpipe/segment, /obj/structure/cable/green{ d1 = 1; @@ -21601,7 +21677,7 @@ }, /turf/simulated/floor/tiled, /area/medical/medbay4) -"LQ" = ( +"LY" = ( /obj/structure/bed/chair/comfy/blue{ icon_state = "comfychair_preview"; dir = 4 @@ -21621,13 +21697,13 @@ }, /turf/simulated/floor/tiled/white, /area/medical/ward) -"LR" = ( +"LZ" = ( /obj/effect/floor_decal/corner/lime{ dir = 10 }, /turf/simulated/floor/tiled/white, /area/medical/ward) -"LS" = ( +"Ma" = ( /obj/structure/bed/chair/comfy/blue{ icon_state = "comfychair_preview"; dir = 8 @@ -21644,7 +21720,7 @@ }, /turf/simulated/floor/tiled/white, /area/medical/ward) -"LT" = ( +"Mb" = ( /obj/structure/bed/chair/comfy/teal{ icon_state = "comfychair_preview"; dir = 1 @@ -21652,12 +21728,12 @@ /obj/effect/floor_decal/corner/grey/diagonal, /turf/simulated/floor/tiled/white, /area/medical/patient_wing) -"LU" = ( +"Mc" = ( /obj/structure/disposalpipe/segment, /obj/effect/floor_decal/corner/grey/diagonal, /turf/simulated/floor/tiled/white, /area/medical/patient_wing) -"LV" = ( +"Md" = ( /obj/machinery/vending/coffee, /obj/structure/window/reinforced{ icon_state = "rwindow"; @@ -21668,7 +21744,7 @@ dir = 5 }, /area/medical/patient_wing) -"LW" = ( +"Me" = ( /obj/machinery/disposal, /obj/structure/disposalpipe/trunk, /turf/simulated/floor/tiled{ @@ -21676,7 +21752,7 @@ dir = 5 }, /area/medical/patient_wing) -"LX" = ( +"Mf" = ( /obj/machinery/vending/snack, /obj/structure/window/reinforced{ dir = 4 @@ -21686,13 +21762,13 @@ dir = 5 }, /area/medical/patient_wing) -"LY" = ( +"Mg" = ( /obj/structure/table/glass, /obj/item/weapon/storage/box/cups, /obj/effect/floor_decal/corner/grey/diagonal, /turf/simulated/floor/tiled/white, /area/medical/patient_wing) -"LZ" = ( +"Mh" = ( /obj/effect/floor_decal/corner/mauve{ icon_state = "corner_white"; dir = 9 @@ -21707,7 +21783,7 @@ }, /turf/simulated/floor/tiled/dark, /area/outpost/research/hallway) -"Ma" = ( +"Mi" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/machinery/atmospherics/pipe/manifold/hidden/supply{ dir = 4 @@ -21719,7 +21795,7 @@ }, /turf/simulated/floor/tiled/dark, /area/outpost/research/hallway) -"Mb" = ( +"Mj" = ( /obj/effect/floor_decal/corner/mauve{ icon_state = "corner_white"; dir = 6 @@ -21730,7 +21806,7 @@ }, /turf/simulated/floor/tiled/dark, /area/outpost/research/hallway) -"Mc" = ( +"Mk" = ( /obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ dir = 8 }, @@ -21744,7 +21820,7 @@ }, /turf/simulated/floor/tiled/white, /area/outpost/research/hallway) -"Md" = ( +"Ml" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 }, @@ -21762,7 +21838,7 @@ }, /turf/simulated/floor/tiled/white, /area/outpost/research/hallway) -"Me" = ( +"Mm" = ( /obj/machinery/door/airlock/research{ autoclose = 0; frequency = 1379; @@ -21795,7 +21871,7 @@ /obj/machinery/door/firedoor, /turf/simulated/floor/tiled/white, /area/rnd/xenobiology) -"Mf" = ( +"Mn" = ( /obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ dir = 1 }, @@ -21809,7 +21885,7 @@ }, /turf/simulated/floor/tiled/white, /area/rnd/xenobiology) -"Mg" = ( +"Mo" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 }, @@ -21823,7 +21899,7 @@ }, /turf/simulated/floor/tiled/white, /area/rnd/xenobiology) -"Mh" = ( +"Mp" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 }, @@ -21837,7 +21913,7 @@ }, /turf/simulated/floor/tiled/white, /area/rnd/xenobiology) -"Mi" = ( +"Mq" = ( /obj/machinery/door/airlock/research{ autoclose = 0; frequency = 1379; @@ -21861,7 +21937,7 @@ /obj/machinery/door/firedoor, /turf/simulated/floor/tiled/white, /area/rnd/xenobiology) -"Mj" = ( +"Mr" = ( /obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ dir = 1 }, @@ -21877,7 +21953,7 @@ }, /turf/simulated/floor/tiled/white, /area/rnd/xenobiology) -"Mk" = ( +"Ms" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 }, @@ -21886,7 +21962,7 @@ }, /turf/simulated/floor/tiled/white, /area/rnd/xenobiology) -"Ml" = ( +"Mt" = ( /obj/structure/bed/chair{ dir = 4 }, @@ -21898,7 +21974,7 @@ }, /turf/simulated/floor/tiled/white, /area/rnd/xenobiology) -"Mm" = ( +"Mu" = ( /obj/structure/table/standard, /obj/item/weapon/storage/box/beakers{ pixel_x = 2; @@ -21919,7 +21995,7 @@ /obj/item/weapon/storage/bag/slimes, /turf/simulated/floor/tiled/white, /area/rnd/xenobiology) -"Mn" = ( +"Mv" = ( /obj/structure/table/standard, /obj/item/weapon/storage/box/syringes, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ @@ -21934,7 +22010,7 @@ }, /turf/simulated/floor/tiled/white, /area/rnd/xenobiology) -"Mo" = ( +"Mw" = ( /obj/structure/bed/chair{ dir = 8 }, @@ -21946,7 +22022,7 @@ }, /turf/simulated/floor/tiled/white, /area/rnd/xenobiology) -"Mp" = ( +"Mx" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 }, @@ -21955,13 +22031,13 @@ }, /turf/simulated/floor/tiled/white, /area/rnd/xenobiology) -"Mq" = ( +"My" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 }, /turf/simulated/floor/tiled/white, /area/rnd/xenobiology) -"Mr" = ( +"Mz" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ icon_state = "intact-scrubbers"; dir = 9 @@ -21972,7 +22048,7 @@ }, /turf/simulated/floor/tiled/white, /area/rnd/xenobiology) -"Ms" = ( +"MA" = ( /obj/machinery/door/blast/regular{ density = 0; dir = 1; @@ -21988,18 +22064,18 @@ /obj/machinery/door/firedoor, /turf/simulated/floor/reinforced, /area/rnd/xenobiology) -"Mt" = ( +"MB" = ( /mob/living/carbon/slime, /turf/simulated/floor/reinforced, /area/rnd/xenobiology) -"Mu" = ( +"MC" = ( /obj/machinery/camera/network/research_outpost{ c_tag = "Research Sublevel - Xenobiology Cell 5"; dir = 8 }, /turf/simulated/floor/reinforced, /area/rnd/xenobiology) -"Mv" = ( +"MD" = ( /obj/structure/window/reinforced{ dir = 4 }, @@ -22008,10 +22084,10 @@ }, /turf/simulated/floor/tiled/white, /area/medical/virology) -"Mw" = ( +"ME" = ( /turf/simulated/floor/plating, /area/medical/virology) -"Mx" = ( +"MF" = ( /obj/structure/window/reinforced, /obj/structure/window/reinforced{ dir = 1 @@ -22031,7 +22107,7 @@ }, /turf/simulated/floor/plating, /area/medical/virology) -"My" = ( +"MG" = ( /obj/structure/grille, /obj/structure/window/reinforced, /obj/structure/window/reinforced{ @@ -22048,7 +22124,7 @@ }, /turf/simulated/floor/plating, /area/medical/virology) -"Mz" = ( +"MH" = ( /obj/structure/grille, /obj/structure/window/reinforced, /obj/structure/window/reinforced{ @@ -22068,7 +22144,7 @@ }, /turf/simulated/floor/plating, /area/medical/virology) -"MA" = ( +"MI" = ( /obj/structure/disposalpipe/segment, /obj/structure/cable/green{ d1 = 1; @@ -22084,11 +22160,11 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/tiled, /area/medical/medbay4) -"MB" = ( +"MJ" = ( /obj/structure/curtain, /turf/simulated/floor/tiled/white, /area/medical/ward) -"MC" = ( +"MK" = ( /obj/structure/disposalpipe/segment, /obj/machinery/atmospherics/unary/vent_pump/on{ dir = 1 @@ -22099,7 +22175,7 @@ }, /turf/simulated/floor/tiled/white, /area/medical/ward) -"MD" = ( +"ML" = ( /obj/machinery/hologram/holopad, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/effect/floor_decal/corner/lime{ @@ -22107,12 +22183,12 @@ }, /turf/simulated/floor/tiled/white, /area/medical/ward) -"ME" = ( +"MM" = ( /obj/structure/flora/pottedplant/random, /obj/effect/floor_decal/corner/grey/diagonal, /turf/simulated/floor/tiled/white, /area/medical/patient_wing) -"MF" = ( +"MN" = ( /obj/structure/disposalpipe/segment{ dir = 1; icon_state = "pipe-c" @@ -22124,7 +22200,7 @@ /obj/effect/floor_decal/corner/grey/diagonal, /turf/simulated/floor/tiled/white, /area/medical/patient_wing) -"MG" = ( +"MO" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, @@ -22133,7 +22209,7 @@ dir = 5 }, /area/medical/patient_wing) -"MH" = ( +"MP" = ( /obj/structure/disposalpipe/junction, /obj/machinery/light, /obj/structure/sign/nosmoking_1{ @@ -22148,20 +22224,20 @@ dir = 5 }, /area/medical/patient_wing) -"MI" = ( +"MQ" = ( /turf/simulated/floor/tiled{ icon_state = "vault"; dir = 5 }, /area/medical/patient_wing) -"MJ" = ( +"MR" = ( /obj/effect/floor_decal/corner/grey/diagonal, /obj/machinery/newscaster{ pixel_y = -32 }, /turf/simulated/floor/tiled/white, /area/medical/patient_wing) -"MK" = ( +"MS" = ( /obj/machinery/door/firedoor, /obj/structure/grille, /obj/structure/window/reinforced{ @@ -22173,13 +22249,13 @@ /obj/structure/window/reinforced, /turf/simulated/floor/plating, /area/medical/patient_wing) -"ML" = ( +"MT" = ( /obj/machinery/light{ dir = 8 }, /turf/simulated/floor/tiled/dark, /area/rnd/test_range) -"MM" = ( +"MU" = ( /obj/effect/floor_decal/corner/mauve{ icon_state = "corner_white"; dir = 9 @@ -22197,7 +22273,7 @@ }, /turf/simulated/floor/tiled/dark, /area/outpost/research/hallway) -"MN" = ( +"MV" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/structure/cable/green{ @@ -22207,7 +22283,7 @@ }, /turf/simulated/floor/tiled/dark, /area/outpost/research/hallway) -"MO" = ( +"MW" = ( /obj/effect/floor_decal/corner/mauve{ icon_state = "corner_white"; dir = 6 @@ -22223,13 +22299,13 @@ }, /turf/simulated/floor/tiled/dark, /area/outpost/research/hallway) -"MP" = ( +"MX" = ( /obj/turbolift_map_holder/aurora/research, /turf/simulated/floor{ icon_state = "plating" }, /area/turbolift/research_maintenance) -"MQ" = ( +"MY" = ( /obj/machinery/atmospherics/unary/vent_scrubber/on{ dir = 4 }, @@ -22239,7 +22315,7 @@ /obj/item/weapon/hand_labeler, /turf/simulated/floor/tiled/white, /area/outpost/research/hallway) -"MR" = ( +"MZ" = ( /obj/effect/floor_decal/corner/mauve{ icon_state = "corner_white"; dir = 10 @@ -22251,14 +22327,14 @@ }, /turf/simulated/floor/tiled/white, /area/outpost/research/hallway) -"MS" = ( +"Na" = ( /obj/effect/floor_decal/corner/mauve/full{ icon_state = "corner_white_full"; dir = 4 }, /turf/simulated/floor/tiled/white, /area/outpost/research/hallway) -"MT" = ( +"Nb" = ( /obj/structure/sink{ icon_state = "sink"; dir = 8; @@ -22277,7 +22353,7 @@ }, /turf/simulated/floor/tiled/white, /area/rnd/xenobiology) -"MU" = ( +"Nc" = ( /obj/machinery/shower{ dir = 1 }, @@ -22287,7 +22363,7 @@ /obj/effect/floor_decal/industrial/warning, /turf/simulated/floor/tiled/white, /area/rnd/xenobiology) -"MV" = ( +"Nd" = ( /obj/structure/sink{ dir = 4; icon_state = "sink"; @@ -22314,7 +22390,7 @@ }, /turf/simulated/floor/tiled/white, /area/rnd/xenobiology) -"MW" = ( +"Ne" = ( /obj/machinery/embedded_controller/radio/airlock/access_controller{ id_tag = "xeno_airlock_control"; name = "Xenobiology Access Console"; @@ -22339,13 +22415,13 @@ }, /turf/simulated/floor/tiled/white, /area/rnd/xenobiology) -"MX" = ( +"Nf" = ( /obj/structure/bed/chair{ dir = 4 }, /turf/simulated/floor/tiled/white, /area/rnd/xenobiology) -"MY" = ( +"Ng" = ( /obj/structure/table/standard, /obj/item/weapon/reagent_containers/food/snacks/monkeycube/wrapped, /obj/item/weapon/reagent_containers/spray/cleaner, @@ -22359,7 +22435,7 @@ }, /turf/simulated/floor/tiled/white, /area/rnd/xenobiology) -"MZ" = ( +"Nh" = ( /obj/structure/table/standard, /obj/machinery/reagentgrinder, /obj/effect/floor_decal/corner/red{ @@ -22368,17 +22444,17 @@ }, /turf/simulated/floor/tiled/white, /area/rnd/xenobiology) -"Na" = ( +"Ni" = ( /obj/structure/bed/chair{ dir = 8 }, /turf/simulated/floor/tiled/white, /area/rnd/xenobiology) -"Nb" = ( +"Nj" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /turf/simulated/floor/tiled/white, /area/rnd/xenobiology) -"Nc" = ( +"Nk" = ( /obj/structure/grille, /obj/structure/window/reinforced{ dir = 1 @@ -22404,40 +22480,40 @@ /obj/machinery/door/firedoor, /turf/simulated/floor/plating, /area/rnd/xenobiology) -"Nd" = ( +"Nl" = ( /turf/simulated/wall, /area/crew_quarters/medbreak) -"Ne" = ( +"Nm" = ( /obj/machinery/vending/snack, /turf/simulated/floor/tiled{ icon_state = "vault"; dir = 5 }, /area/crew_quarters/medbreak) -"Nf" = ( +"Nn" = ( /obj/machinery/vending/cola, /turf/simulated/floor/tiled{ icon_state = "vault"; dir = 5 }, /area/crew_quarters/medbreak) -"Ng" = ( +"No" = ( /obj/machinery/vending/coffee, /turf/simulated/floor/tiled{ icon_state = "vault"; dir = 5 }, /area/crew_quarters/medbreak) -"Nh" = ( +"Np" = ( /turf/unsimulated/chasm_mask, /area/crew_quarters/medbreak) -"Ni" = ( +"Nq" = ( /obj/structure/table/standard, /obj/item/weapon/cane, /obj/item/weapon/storage/box/rxglasses, /turf/simulated/floor/tiled, /area/medical/medbay4) -"Nj" = ( +"Nr" = ( /obj/structure/bed/chair/comfy/blue{ icon_state = "comfychair_preview"; dir = 4 @@ -22454,14 +22530,14 @@ /obj/machinery/firealarm/west, /turf/simulated/floor/tiled/white, /area/medical/ward) -"Nk" = ( +"Ns" = ( /obj/effect/floor_decal/corner/lime{ icon_state = "corner_white"; dir = 5 }, /turf/simulated/floor/tiled/white, /area/medical/ward) -"Nl" = ( +"Nt" = ( /obj/structure/disposalpipe/segment, /obj/effect/floor_decal/corner/lime{ icon_state = "corner_white"; @@ -22469,7 +22545,7 @@ }, /turf/simulated/floor/tiled/white, /area/medical/ward) -"Nm" = ( +"Nu" = ( /obj/structure/bed/chair/comfy/blue{ icon_state = "comfychair_preview"; dir = 8 @@ -22489,18 +22565,18 @@ }, /turf/simulated/floor/tiled/white, /area/medical/ward) -"Nn" = ( +"Nv" = ( /turf/simulated/wall/r_wall, /area/medical/ward) -"No" = ( +"Nw" = ( /obj/structure/disposalpipe/segment, /turf/simulated/wall/r_wall, /area/medical/patient_wing) -"Np" = ( +"Nx" = ( /obj/effect/decal/cleanable/blood, /turf/simulated/floor/tiled/dark, /area/rnd/test_range) -"Nq" = ( +"Ny" = ( /obj/structure/target_stake, /obj/effect/floor_decal/industrial/warning{ dir = 8 @@ -22510,7 +22586,7 @@ }, /turf/simulated/floor/tiled/dark, /area/rnd/test_range) -"Nr" = ( +"Nz" = ( /obj/effect/floor_decal/corner/mauve{ icon_state = "corner_white"; dir = 9 @@ -22526,7 +22602,7 @@ }, /turf/simulated/floor/tiled/dark, /area/outpost/research/hallway) -"Ns" = ( +"NA" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ icon_state = "map-scrubbers"; @@ -22539,7 +22615,7 @@ }, /turf/simulated/floor/tiled/dark, /area/outpost/research/hallway) -"Nt" = ( +"NB" = ( /obj/machinery/door/window{ base_state = "left"; dir = 8; @@ -22558,7 +22634,7 @@ }, /turf/simulated/floor/tiled/freezer, /area/outpost/research/hallway) -"Nu" = ( +"NC" = ( /obj/machinery/door/airlock/glass_research{ name = "Data Compilation Office"; req_access = list(47) @@ -22568,7 +22644,7 @@ /obj/machinery/door/firedoor, /turf/simulated/floor/tiled/white, /area/outpost/research/hallway) -"Nv" = ( +"ND" = ( /obj/structure/extinguisher_cabinet{ pixel_x = -32 }, @@ -22584,7 +22660,7 @@ }, /turf/simulated/floor/tiled/white, /area/rnd/xenobiology) -"Nw" = ( +"NE" = ( /obj/structure/table/standard, /obj/item/weapon/storage/box/monkeycubes, /obj/item/weapon/storage/box/monkeycubes, @@ -22593,7 +22669,7 @@ /obj/effect/floor_decal/corner/mauve/full, /turf/simulated/floor/tiled/white, /area/rnd/xenobiology) -"Nx" = ( +"NF" = ( /obj/structure/table/standard, /obj/item/stack/material/phoron{ amount = 5 @@ -22604,7 +22680,7 @@ }, /turf/simulated/floor/tiled/white, /area/rnd/xenobiology) -"Ny" = ( +"NG" = ( /obj/structure/sink{ dir = 4; icon_state = "sink"; @@ -22613,27 +22689,27 @@ }, /turf/simulated/floor/tiled/white, /area/rnd/xenobiology) -"Nz" = ( +"NH" = ( /obj/machinery/firealarm/west, /turf/simulated/floor/tiled{ icon_state = "vault"; dir = 5 }, /area/crew_quarters/medbreak) -"NA" = ( +"NI" = ( /obj/machinery/atmospherics/unary/vent_scrubber/on, /turf/simulated/floor/tiled{ icon_state = "vault"; dir = 5 }, /area/crew_quarters/medbreak) -"NB" = ( +"NJ" = ( /turf/simulated/floor/tiled{ icon_state = "vault"; dir = 5 }, /area/crew_quarters/medbreak) -"NC" = ( +"NK" = ( /obj/machinery/disposal, /obj/structure/disposalpipe/trunk, /obj/item/device/radio/intercom{ @@ -22645,11 +22721,11 @@ dir = 5 }, /area/crew_quarters/medbreak) -"ND" = ( +"NL" = ( /obj/structure/closet/emcloset, /turf/simulated/floor/tiled, /area/medical/medbay4) -"NE" = ( +"NM" = ( /obj/structure/disposalpipe/segment, /obj/structure/cable/green{ d1 = 1; @@ -22661,7 +22737,7 @@ /obj/machinery/firealarm/east, /turf/simulated/floor/tiled, /area/medical/medbay4) -"NF" = ( +"NN" = ( /obj/machinery/atmospherics/unary/vent_scrubber/on{ dir = 1 }, @@ -22670,17 +22746,17 @@ }, /turf/simulated/floor/tiled/white, /area/medical/ward) -"NG" = ( +"NO" = ( /obj/structure/disposalpipe/segment, /turf/simulated/floor/asteroid/ash/rocky, /area/mine/unexplored) -"NH" = ( +"NP" = ( /turf/simulated/wall/r_wall, /area/rnd/mixing) -"NI" = ( +"NQ" = ( /turf/simulated/wall/r_wall, /area/rnd/storage) -"NJ" = ( +"NR" = ( /obj/machinery/door/airlock/research{ frequency = 1379; icon_state = "door_locked"; @@ -22708,7 +22784,7 @@ }, /turf/simulated/floor/tiled/dark, /area/rnd/storage) -"NK" = ( +"NS" = ( /obj/structure/table/standard, /obj/item/weapon/clipboard, /obj/item/weapon/clipboard, @@ -22722,16 +22798,16 @@ }, /turf/simulated/floor/tiled/white, /area/outpost/research/hallway) -"NL" = ( +"NT" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/machinery/atmospherics/pipe/simple/hidden/supply, /turf/simulated/floor/tiled/white, /area/outpost/research/hallway) -"NM" = ( +"NU" = ( /obj/structure/filingcabinet/filingcabinet, /turf/simulated/floor/tiled/white, /area/outpost/research/hallway) -"NN" = ( +"NV" = ( /obj/structure/table/standard, /obj/effect/floor_decal/corner/mauve{ icon_state = "corner_white"; @@ -22748,7 +22824,7 @@ /obj/item/device/flashlight/lamp, /turf/simulated/floor/tiled/dark, /area/outpost/research/hallway) -"NO" = ( +"NW" = ( /obj/structure/table/standard, /obj/effect/floor_decal/corner/mauve{ icon_state = "corner_white"; @@ -22757,7 +22833,7 @@ /obj/item/weapon/folder/purple, /turf/simulated/floor/tiled/dark, /area/outpost/research/hallway) -"NP" = ( +"NX" = ( /obj/structure/sink{ pixel_y = 26 }, @@ -22776,7 +22852,7 @@ }, /turf/simulated/floor/tiled/white, /area/rnd/xenobiology) -"NQ" = ( +"NY" = ( /obj/machinery/atmospherics/unary/vent_scrubber/on{ dir = 4 }, @@ -22791,7 +22867,7 @@ }, /turf/simulated/floor/tiled/white, /area/rnd/xenobiology) -"NR" = ( +"NZ" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ icon_state = "intact-scrubbers"; dir = 9 @@ -22807,17 +22883,17 @@ }, /turf/simulated/floor/tiled/white, /area/rnd/xenobiology) -"NS" = ( +"Oa" = ( /obj/machinery/hologram/holopad, /turf/simulated/floor/tiled/white, /area/rnd/xenobiology) -"NT" = ( +"Ob" = ( /obj/machinery/atmospherics/unary/vent_pump/on{ dir = 1 }, /turf/simulated/floor/tiled/white, /area/rnd/xenobiology) -"NU" = ( +"Oc" = ( /obj/structure/window/reinforced, /obj/structure/table/reinforced, /obj/machinery/button/remote/blast_door{ @@ -22836,7 +22912,7 @@ dir = 5 }, /area/rnd/xenobiology) -"NV" = ( +"Od" = ( /obj/structure/grille, /obj/structure/window/reinforced{ dir = 1 @@ -22859,7 +22935,7 @@ /obj/machinery/door/firedoor, /turf/simulated/floor/plating, /area/rnd/xenobiology) -"NW" = ( +"Oe" = ( /obj/machinery/door/firedoor, /obj/structure/grille, /obj/structure/window/reinforced{ @@ -22873,26 +22949,26 @@ }, /turf/simulated/floor/plating, /area/crew_quarters/medbreak) -"NX" = ( +"Of" = ( /obj/effect/floor_decal/corner/white/diagonal, /turf/simulated/floor/tiled, /area/crew_quarters/medbreak) -"NY" = ( +"Og" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/effect/floor_decal/corner/white/diagonal, /turf/simulated/floor/tiled, /area/crew_quarters/medbreak) -"NZ" = ( +"Oh" = ( /obj/item/weapon/stool/padded, /obj/effect/floor_decal/corner/white/diagonal, /turf/simulated/floor/tiled, /area/crew_quarters/medbreak) -"Oa" = ( +"Oi" = ( /obj/structure/disposalpipe/segment, /obj/effect/floor_decal/corner/white/diagonal, /turf/simulated/floor/tiled, /area/crew_quarters/medbreak) -"Ob" = ( +"Oj" = ( /obj/machinery/power/apc{ dir = 1; name = "north bump"; @@ -22906,14 +22982,14 @@ /obj/effect/floor_decal/corner/white/diagonal, /turf/simulated/floor/tiled, /area/crew_quarters/medbreak) -"Oc" = ( +"Ok" = ( /obj/machinery/newscaster{ pixel_y = 32 }, /obj/effect/floor_decal/corner/white/diagonal, /turf/simulated/floor/tiled, /area/crew_quarters/medbreak) -"Od" = ( +"Ol" = ( /obj/machinery/door/firedoor, /obj/structure/window/reinforced{ dir = 4 @@ -22928,13 +23004,13 @@ /obj/structure/grille, /turf/simulated/floor/plating, /area/crew_quarters/medbreak) -"Oe" = ( +"Om" = ( /obj/machinery/light{ dir = 8 }, /turf/simulated/floor/tiled, /area/medical/medbay4) -"Of" = ( +"On" = ( /obj/structure/disposalpipe/segment, /obj/machinery/power/apc{ dir = 4; @@ -22951,14 +23027,14 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/tiled, /area/medical/medbay4) -"Og" = ( +"Oo" = ( /obj/structure/closet/secure_closet/personal/patient, /obj/effect/floor_decal/corner/lime{ dir = 10 }, /turf/simulated/floor/tiled/white, /area/medical/ward) -"Oh" = ( +"Op" = ( /obj/structure/closet/secure_closet/medical_wall{ name = "Pill Cabinet"; pixel_y = -32 @@ -22971,7 +23047,7 @@ }, /turf/simulated/floor/tiled/white, /area/medical/ward) -"Oi" = ( +"Oq" = ( /obj/machinery/disposal, /obj/structure/disposalpipe/trunk{ dir = 1 @@ -22991,7 +23067,7 @@ }, /turf/simulated/floor/tiled/white, /area/medical/ward) -"Oj" = ( +"Or" = ( /obj/machinery/vending/snack, /obj/structure/window/reinforced{ icon_state = "rwindow"; @@ -23002,21 +23078,21 @@ }, /turf/simulated/floor/tiled/white, /area/medical/ward) -"Ok" = ( +"Os" = ( /obj/structure/disposaloutlet, /obj/structure/disposalpipe/trunk{ dir = 1 }, /turf/simulated/floor/asteroid/ash/rocky, /area/mine/unexplored) -"Ol" = ( +"Ot" = ( /obj/machinery/atmospherics/portables_connector{ dir = 4 }, /obj/effect/floor_decal/industrial/outline/yellow, /turf/simulated/floor/tiled/dark, /area/rnd/mixing) -"Om" = ( +"Ou" = ( /obj/machinery/atmospherics/pipe/simple/visible{ dir = 10; icon_state = "intact" @@ -23027,7 +23103,7 @@ }, /turf/simulated/floor/tiled/dark, /area/rnd/mixing) -"On" = ( +"Ov" = ( /obj/machinery/camera/network/research_outpost{ c_tag = "Research Sublevel - Toxins Mixing Fore" }, @@ -23037,17 +23113,17 @@ }, /turf/simulated/floor/tiled/dark, /area/rnd/mixing) -"Oo" = ( +"Ow" = ( /obj/structure/closet/emcloset, /turf/simulated/floor/tiled/dark, /area/rnd/mixing) -"Op" = ( +"Ox" = ( /obj/machinery/atmospherics/pipe/simple/heat_exchanging{ dir = 6 }, /turf/simulated/floor/tiled/dark, /area/rnd/mixing) -"Oq" = ( +"Oy" = ( /obj/machinery/atmospherics/pipe/simple/heat_exchanging{ dir = 4 }, @@ -23058,19 +23134,19 @@ }, /turf/simulated/floor/tiled/dark, /area/rnd/mixing) -"Or" = ( +"Oz" = ( /obj/machinery/atmospherics/pipe/simple/heat_exchanging{ icon_state = "intact"; dir = 10 }, /turf/simulated/floor/tiled/dark, /area/rnd/mixing) -"Os" = ( +"OA" = ( /obj/machinery/portable_atmospherics/canister/empty, /obj/effect/floor_decal/industrial/hatch/yellow, /turf/simulated/floor/tiled, /area/rnd/storage) -"Ot" = ( +"OB" = ( /obj/effect/floor_decal/industrial/warning{ dir = 8 }, @@ -23079,7 +23155,7 @@ }, /turf/simulated/floor/tiled, /area/rnd/storage) -"Ou" = ( +"OC" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/structure/cable/green{ @@ -23089,13 +23165,13 @@ }, /turf/simulated/floor/tiled, /area/rnd/storage) -"Ov" = ( +"OD" = ( /obj/effect/floor_decal/industrial/warning{ dir = 4 }, /turf/simulated/floor/tiled, /area/rnd/storage) -"Ow" = ( +"OE" = ( /obj/machinery/portable_atmospherics/canister/oxygen, /obj/effect/floor_decal/industrial/hatch/yellow, /obj/structure/sign/nosmoking_1{ @@ -23103,12 +23179,12 @@ }, /turf/simulated/floor/tiled, /area/rnd/storage) -"Ox" = ( +"OF" = ( /obj/machinery/portable_atmospherics/canister/oxygen, /obj/effect/floor_decal/industrial/hatch/yellow, /turf/simulated/floor/tiled, /area/rnd/storage) -"Oy" = ( +"OG" = ( /obj/structure/table/standard, /obj/machinery/newscaster{ pixel_x = -32 @@ -23119,9 +23195,13 @@ }, /obj/item/weapon/paper_bin, /obj/item/weapon/pen, +/obj/machinery/camera/network/research_outpost{ + c_tag = "Research Sublevel - Data Office"; + dir = 4 + }, /turf/simulated/floor/tiled/white, /area/outpost/research/hallway) -"Oz" = ( +"OH" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ icon_state = "intact-scrubbers"; dir = 5 @@ -23129,47 +23209,47 @@ /obj/machinery/atmospherics/pipe/simple/hidden/supply, /turf/simulated/floor/tiled/white, /area/outpost/research/hallway) -"OA" = ( +"OI" = ( /obj/machinery/atmospherics/unary/vent_scrubber/on{ dir = 8 }, /turf/simulated/floor/tiled/white, /area/outpost/research/hallway) -"OB" = ( +"OJ" = ( /obj/effect/floor_decal/corner/mauve{ icon_state = "corner_white"; dir = 9 }, /turf/simulated/floor/tiled/dark, /area/outpost/research/hallway) -"OC" = ( +"OK" = ( /obj/structure/bed/chair/office/light{ dir = 1 }, /turf/simulated/floor/tiled/dark, /area/outpost/research/hallway) -"OD" = ( +"OL" = ( /obj/machinery/light{ dir = 8 }, /obj/effect/floor_decal/corner/mauve/full, /turf/simulated/floor/tiled/white, /area/rnd/xenobiology) -"OE" = ( +"OM" = ( /obj/effect/floor_decal/corner/mauve{ icon_state = "corner_white"; dir = 10 }, /turf/simulated/floor/tiled/white, /area/rnd/xenobiology) -"OF" = ( +"ON" = ( /obj/effect/floor_decal/corner/mauve/full{ icon_state = "corner_white_full"; dir = 4 }, /turf/simulated/floor/tiled/white, /area/rnd/xenobiology) -"OG" = ( +"OO" = ( /obj/machinery/door/blast/regular{ density = 0; dir = 1; @@ -23185,14 +23265,14 @@ /obj/machinery/door/firedoor, /turf/simulated/floor/reinforced, /area/rnd/xenobiology) -"OH" = ( +"OP" = ( /obj/machinery/camera/network/research_outpost{ c_tag = "Research Sublevel - Xenobiology Cell 4"; dir = 8 }, /turf/simulated/floor/reinforced, /area/rnd/xenobiology) -"OI" = ( +"OQ" = ( /obj/machinery/door/firedoor, /obj/structure/grille, /obj/structure/window/reinforced, @@ -23204,7 +23284,7 @@ }, /turf/simulated/floor/plating, /area/crew_quarters/medbreak) -"OJ" = ( +"OR" = ( /obj/structure/table/standard, /obj/machinery/recharger, /obj/machinery/atmospherics/unary/vent_pump/on{ @@ -23213,7 +23293,7 @@ /obj/effect/floor_decal/corner/white/diagonal, /turf/simulated/floor/tiled, /area/crew_quarters/medbreak) -"OK" = ( +"OS" = ( /obj/machinery/atmospherics/pipe/manifold/hidden/supply{ dir = 1 }, @@ -23223,7 +23303,7 @@ /obj/effect/floor_decal/corner/white/diagonal, /turf/simulated/floor/tiled, /area/crew_quarters/medbreak) -"OL" = ( +"OT" = ( /obj/structure/table/glass, /obj/item/weapon/folder/white, /obj/item/weapon/pen, @@ -23236,7 +23316,7 @@ /obj/effect/floor_decal/corner/white/diagonal, /turf/simulated/floor/tiled, /area/crew_quarters/medbreak) -"OM" = ( +"OU" = ( /obj/structure/table/glass, /obj/item/weapon/storage/box/donut, /obj/structure/disposalpipe/junction/yjunction{ @@ -23256,7 +23336,7 @@ /obj/effect/floor_decal/corner/white/diagonal, /turf/simulated/floor/tiled, /area/crew_quarters/medbreak) -"ON" = ( +"OV" = ( /obj/item/weapon/stool/padded, /obj/structure/disposalpipe/segment{ dir = 4 @@ -23280,7 +23360,7 @@ /obj/effect/floor_decal/corner/white/diagonal, /turf/simulated/floor/tiled, /area/crew_quarters/medbreak) -"OO" = ( +"OW" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, @@ -23298,7 +23378,7 @@ /obj/effect/floor_decal/corner/white/diagonal, /turf/simulated/floor/tiled, /area/crew_quarters/medbreak) -"OP" = ( +"OX" = ( /obj/machinery/door/airlock/glass_medical{ name = "Staff Break Room"; req_access = list(66) @@ -23321,7 +23401,7 @@ /obj/effect/floor_decal/corner/white/diagonal, /turf/simulated/floor/tiled, /area/crew_quarters/medbreak) -"OQ" = ( +"OY" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, @@ -23338,7 +23418,7 @@ }, /turf/simulated/floor/tiled, /area/medical/medbay4) -"OR" = ( +"OZ" = ( /obj/structure/disposalpipe/segment{ dir = 8; icon_state = "pipe-c" @@ -23360,7 +23440,7 @@ }, /turf/simulated/floor/tiled, /area/medical/medbay4) -"OS" = ( +"Pa" = ( /obj/effect/floor_decal/industrial/hatch/yellow, /obj/machinery/atmospherics/unary/freezer{ icon_state = "freezer_0"; @@ -23368,39 +23448,39 @@ }, /turf/simulated/floor/tiled/dark, /area/rnd/mixing) -"OT" = ( +"Pb" = ( /obj/machinery/meter, /obj/machinery/atmospherics/pipe/manifold4w/visible, /turf/simulated/floor/tiled/dark, /area/rnd/mixing) -"OU" = ( +"Pc" = ( /obj/machinery/atmospherics/pipe/manifold/visible{ dir = 1 }, /obj/machinery/atmospherics/pipe/simple/hidden/supply, /turf/simulated/floor/tiled/dark, /area/rnd/mixing) -"OV" = ( +"Pd" = ( /obj/machinery/atmospherics/binary/pump{ dir = 4 }, /turf/simulated/floor/tiled/dark, /area/rnd/mixing) -"OW" = ( +"Pe" = ( /obj/machinery/meter, /obj/machinery/atmospherics/pipe/simple/visible{ dir = 4 }, /turf/simulated/wall/r_wall, /area/rnd/mixing) -"OX" = ( +"Pf" = ( /obj/machinery/atmospherics/pipe/simple/visible{ dir = 4 }, /obj/machinery/atmospherics/pipe/simple/heat_exchanging, /turf/simulated/floor/tiled/dark, /area/rnd/mixing) -"OY" = ( +"Pg" = ( /obj/machinery/atmospherics/unary/outlet_injector{ dir = 8; frequency = 1441; @@ -23411,11 +23491,11 @@ }, /turf/simulated/floor/tiled/dark, /area/rnd/mixing) -"OZ" = ( +"Ph" = ( /obj/machinery/atmospherics/pipe/simple/heat_exchanging, /turf/simulated/floor/tiled/dark, /area/rnd/mixing) -"Pa" = ( +"Pi" = ( /obj/machinery/portable_atmospherics/canister/empty, /obj/machinery/atmospherics/unary/vent_scrubber/on{ dir = 4 @@ -23423,7 +23503,7 @@ /obj/effect/floor_decal/industrial/hatch/yellow, /turf/simulated/floor/tiled, /area/rnd/storage) -"Pb" = ( +"Pj" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 }, @@ -23432,7 +23512,7 @@ }, /turf/simulated/floor/tiled, /area/rnd/storage) -"Pc" = ( +"Pk" = ( /obj/structure/cable/green{ d1 = 1; d2 = 2; @@ -23445,7 +23525,7 @@ /obj/machinery/atmospherics/pipe/simple/hidden/supply, /turf/simulated/floor/tiled, /area/rnd/storage) -"Pd" = ( +"Pl" = ( /obj/machinery/portable_atmospherics/canister/oxygen, /obj/machinery/light{ dir = 4; @@ -23454,7 +23534,7 @@ /obj/effect/floor_decal/industrial/hatch/yellow, /turf/simulated/floor/tiled, /area/rnd/storage) -"Pe" = ( +"Pm" = ( /obj/machinery/photocopier, /obj/effect/floor_decal/corner/mauve{ icon_state = "corner_white"; @@ -23471,11 +23551,11 @@ }, /turf/simulated/floor/tiled/white, /area/outpost/research/hallway) -"Pf" = ( +"Pn" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /turf/simulated/floor/tiled/white, /area/outpost/research/hallway) -"Pg" = ( +"Po" = ( /obj/structure/table/standard, /obj/effect/floor_decal/corner/mauve{ icon_state = "corner_white"; @@ -23495,7 +23575,7 @@ /obj/machinery/recharger, /turf/simulated/floor/tiled/dark, /area/outpost/research/hallway) -"Ph" = ( +"Pp" = ( /obj/structure/table/standard, /obj/effect/floor_decal/corner/mauve{ icon_state = "corner_white"; @@ -23507,7 +23587,7 @@ /obj/item/weapon/folder/purple, /turf/simulated/floor/tiled/dark, /area/outpost/research/hallway) -"Pi" = ( +"Pq" = ( /obj/structure/window/reinforced{ dir = 4 }, @@ -23522,7 +23602,7 @@ dir = 5 }, /area/rnd/xenobiology) -"Pj" = ( +"Pr" = ( /obj/machinery/door/window/northright{ name = "Containment Pen"; req_access = list(47) @@ -23535,7 +23615,7 @@ dir = 5 }, /area/rnd/xenobiology) -"Pk" = ( +"Ps" = ( /obj/structure/window/reinforced{ dir = 8 }, @@ -23555,7 +23635,7 @@ dir = 5 }, /area/rnd/xenobiology) -"Pl" = ( +"Pt" = ( /obj/structure/window/reinforced{ dir = 4 }, @@ -23571,7 +23651,7 @@ dir = 5 }, /area/rnd/xenobiology) -"Pm" = ( +"Pu" = ( /obj/structure/window/reinforced{ dir = 8 }, @@ -23591,7 +23671,7 @@ dir = 5 }, /area/rnd/xenobiology) -"Pn" = ( +"Pv" = ( /obj/structure/closet/l3closet/scientist, /obj/machinery/camera/network/research_outpost{ c_tag = "Research Sublevel - Xenobiology Aft"; @@ -23599,7 +23679,7 @@ }, /turf/simulated/floor/tiled/white, /area/rnd/xenobiology) -"Po" = ( +"Pw" = ( /obj/structure/window/reinforced{ dir = 8 }, @@ -23619,7 +23699,7 @@ dir = 5 }, /area/rnd/xenobiology) -"Pp" = ( +"Px" = ( /obj/structure/window/reinforced{ dir = 1 }, @@ -23636,7 +23716,7 @@ dir = 5 }, /area/rnd/xenobiology) -"Pq" = ( +"Py" = ( /obj/structure/grille, /obj/structure/window/reinforced{ dir = 1 @@ -23662,7 +23742,7 @@ /obj/machinery/door/firedoor, /turf/simulated/floor/plating, /area/rnd/xenobiology) -"Pr" = ( +"Pz" = ( /obj/machinery/door/firedoor, /obj/structure/grille, /obj/structure/window/reinforced{ @@ -23673,7 +23753,7 @@ }, /turf/simulated/floor/plating, /area/crew_quarters/medbreak) -"Ps" = ( +"PA" = ( /obj/machinery/door/firedoor, /obj/structure/grille, /obj/structure/window/reinforced{ @@ -23682,7 +23762,7 @@ /obj/structure/window/reinforced, /turf/simulated/floor/plating, /area/crew_quarters/medbreak) -"Pt" = ( +"PB" = ( /obj/machinery/door/firedoor, /obj/structure/grille, /obj/structure/window/reinforced{ @@ -23694,7 +23774,7 @@ }, /turf/simulated/floor/plating, /area/crew_quarters/medbreak) -"Pu" = ( +"PC" = ( /obj/structure/table/standard, /obj/machinery/recharger, /obj/machinery/light{ @@ -23709,13 +23789,13 @@ }, /turf/simulated/floor/tiled, /area/crew_quarters/medbreak) -"Pv" = ( +"PD" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/effect/floor_decal/corner/white/diagonal, /turf/simulated/floor/tiled, /area/crew_quarters/medbreak) -"Pw" = ( +"PE" = ( /obj/structure/table/glass, /obj/item/device/radio{ anchored = 1; @@ -23730,7 +23810,7 @@ /obj/effect/floor_decal/corner/white/diagonal, /turf/simulated/floor/tiled, /area/crew_quarters/medbreak) -"Px" = ( +"PF" = ( /obj/structure/table/glass, /obj/item/weapon/reagent_containers/spray/cleaner, /obj/structure/disposalpipe/segment, @@ -23742,7 +23822,7 @@ /obj/effect/floor_decal/corner/white/diagonal, /turf/simulated/floor/tiled, /area/crew_quarters/medbreak) -"Py" = ( +"PG" = ( /obj/machinery/light{ dir = 4; icon_state = "tube1" @@ -23750,7 +23830,7 @@ /obj/effect/floor_decal/corner/white/diagonal, /turf/simulated/floor/tiled, /area/crew_quarters/medbreak) -"Pz" = ( +"PH" = ( /obj/machinery/door/firedoor, /obj/structure/window/reinforced{ dir = 4 @@ -23764,16 +23844,16 @@ /obj/structure/grille, /turf/simulated/floor/plating, /area/crew_quarters/medbreak) -"PA" = ( +"PI" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /turf/simulated/floor/tiled, /area/medical/medbay4) -"PB" = ( +"PJ" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/tiled, /area/medical/medbay4) -"PC" = ( +"PK" = ( /obj/machinery/door/firedoor, /obj/structure/window/reinforced{ dir = 4 @@ -23788,20 +23868,20 @@ /obj/structure/grille, /turf/simulated/floor/plating, /area/medical/medbay4) -"PD" = ( +"PL" = ( /obj/structure/table/rack, /obj/item/device/flashlight, /obj/item/device/flashlight, /obj/item/device/flashlight, /turf/simulated/floor/tiled, /area/medical/medbay4) -"PE" = ( +"PM" = ( /obj/item/clothing/suit/radiation, /obj/item/clothing/head/radiation, /obj/structure/table/rack, /turf/simulated/floor/tiled, /area/medical/medbay4) -"PF" = ( +"PN" = ( /obj/structure/table/rack, /obj/item/clothing/glasses/hud/health, /obj/item/clothing/glasses/hud/health, @@ -23822,7 +23902,7 @@ }, /turf/simulated/floor/tiled, /area/medical/medbay4) -"PG" = ( +"PO" = ( /obj/structure/table/rack, /obj/item/weapon/storage/belt/medical, /obj/item/weapon/storage/belt/medical, @@ -23836,21 +23916,21 @@ /obj/item/clothing/accessory/stethoscope, /turf/simulated/floor/tiled, /area/medical/medbay4) -"PH" = ( +"PP" = ( /obj/structure/closet/hydrant{ pixel_y = 32 }, /obj/item/weapon/storage/toolbox/emergency, /turf/simulated/floor/tiled/dark, /area/medical/medbay4) -"PI" = ( +"PQ" = ( /obj/structure/closet/secure_closet/medical3, /turf/simulated/floor/tiled, /area/medical/medbay4) -"PJ" = ( +"PR" = ( /turf/simulated/wall/r_wall, /area/medical/medbay4) -"PK" = ( +"PS" = ( /obj/machinery/atmospherics/portables_connector{ dir = 4 }, @@ -23860,14 +23940,14 @@ /obj/effect/floor_decal/industrial/outline/yellow, /turf/simulated/floor/tiled/dark, /area/rnd/mixing) -"PL" = ( +"PT" = ( /obj/machinery/atmospherics/pipe/simple/visible{ icon_state = "intact"; dir = 9 }, /turf/simulated/floor/tiled/dark, /area/rnd/mixing) -"PM" = ( +"PU" = ( /obj/machinery/atmospherics/pipe/simple/visible{ icon_state = "intact"; dir = 5 @@ -23875,13 +23955,13 @@ /obj/machinery/atmospherics/pipe/simple/hidden/supply, /turf/simulated/floor/tiled/dark, /area/rnd/mixing) -"PN" = ( +"PV" = ( /obj/machinery/atmospherics/binary/pump{ dir = 8 }, /turf/simulated/floor/tiled/dark, /area/rnd/mixing) -"PO" = ( +"PW" = ( /obj/machinery/atmospherics/unary/vent_pump{ icon_state = "map_vent_in"; dir = 8; @@ -23897,7 +23977,7 @@ }, /turf/simulated/floor/tiled/dark, /area/rnd/mixing) -"PP" = ( +"PX" = ( /obj/machinery/portable_atmospherics/canister/empty, /obj/machinery/alarm{ dir = 4; @@ -23907,14 +23987,14 @@ /obj/effect/floor_decal/industrial/hatch/yellow, /turf/simulated/floor/tiled, /area/rnd/storage) -"PQ" = ( +"PY" = ( /obj/effect/floor_decal/industrial/warning{ dir = 8 }, /mob/living/simple_animal/mouse, /turf/simulated/floor/tiled, /area/rnd/storage) -"PR" = ( +"PZ" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/structure/cable/green{ d1 = 1; @@ -23926,7 +24006,7 @@ }, /turf/simulated/floor/tiled, /area/rnd/storage) -"PS" = ( +"Qa" = ( /obj/effect/floor_decal/industrial/warning{ dir = 4 }, @@ -23935,7 +24015,7 @@ }, /turf/simulated/floor/tiled, /area/rnd/storage) -"PT" = ( +"Qb" = ( /obj/machinery/portable_atmospherics/canister/nitrogen, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 @@ -23943,7 +24023,7 @@ /obj/effect/floor_decal/industrial/hatch/yellow, /turf/simulated/floor/tiled, /area/rnd/storage) -"PU" = ( +"Qc" = ( /obj/machinery/portable_atmospherics/canister/nitrogen, /obj/machinery/atmospherics/unary/vent_pump/on{ dir = 8 @@ -23951,7 +24031,7 @@ /obj/effect/floor_decal/industrial/hatch/yellow, /turf/simulated/floor/tiled, /area/rnd/storage) -"PV" = ( +"Qd" = ( /obj/machinery/papershredder, /obj/effect/floor_decal/corner/mauve{ icon_state = "corner_white"; @@ -23959,14 +24039,14 @@ }, /turf/simulated/floor/tiled/white, /area/outpost/research/hallway) -"PW" = ( +"Qe" = ( /obj/machinery/firealarm/south, /obj/machinery/atmospherics/unary/vent_pump/on{ dir = 1 }, /turf/simulated/floor/tiled/white, /area/outpost/research/hallway) -"PX" = ( +"Qf" = ( /obj/machinery/requests_console{ department = "Science"; departmentType = 2; @@ -23976,172 +24056,6 @@ }, /turf/simulated/floor/tiled/white, /area/outpost/research/hallway) -"PY" = ( -/obj/structure/grille, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/machinery/door/blast/regular{ - density = 0; - dir = 4; - icon_state = "pdoor0"; - id = "xenobio3"; - name = "Containment Blast Doors"; - opacity = 0 - }, -/obj/structure/disposalpipe/segment, -/obj/machinery/door/firedoor, -/turf/simulated/floor/plating, -/area/rnd/xenobiology) -"PZ" = ( -/obj/machinery/door/window/southright{ - name = "Containment Pen"; - req_access = list(47) - }, -/obj/machinery/door/blast/regular{ - density = 0; - dir = 4; - icon_state = "pdoor0"; - id = "xenobio3"; - name = "Containment Blast Doors"; - opacity = 0 - }, -/obj/machinery/door/firedoor, -/turf/simulated/floor/reinforced, -/area/rnd/xenobiology) -"Qa" = ( -/obj/structure/grille, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/machinery/door/blast/regular{ - density = 0; - dir = 4; - icon_state = "pdoor0"; - id = "xenobio3"; - name = "Containment Blast Doors"; - opacity = 0 - }, -/obj/machinery/door/firedoor, -/turf/simulated/floor/plating, -/area/rnd/xenobiology) -"Qb" = ( -/obj/structure/grille, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/machinery/door/blast/regular{ - density = 0; - dir = 4; - icon_state = "pdoor0"; - id = "xenobio2"; - name = "Containment Blast Doors"; - opacity = 0 - }, -/obj/structure/disposalpipe/segment, -/obj/machinery/door/firedoor, -/turf/simulated/floor/plating, -/area/rnd/xenobiology) -"Qc" = ( -/obj/machinery/door/window/southright{ - name = "Containment Pen"; - req_access = list(47) - }, -/obj/machinery/door/blast/regular{ - density = 0; - dir = 4; - icon_state = "pdoor0"; - id = "xenobio2"; - name = "Containment Blast Doors"; - opacity = 0 - }, -/obj/machinery/door/firedoor, -/turf/simulated/floor/reinforced, -/area/rnd/xenobiology) -"Qd" = ( -/obj/structure/grille, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/machinery/door/blast/regular{ - density = 0; - dir = 4; - icon_state = "pdoor0"; - id = "xenobio2"; - name = "Containment Blast Doors"; - opacity = 0 - }, -/obj/machinery/door/firedoor, -/turf/simulated/floor/plating, -/area/rnd/xenobiology) -"Qe" = ( -/obj/structure/grille, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/machinery/door/blast/regular{ - density = 0; - dir = 4; - icon_state = "pdoor0"; - id = "xenobio1"; - name = "Containment Blast Doors"; - opacity = 0 - }, -/obj/structure/disposalpipe/segment, -/obj/machinery/door/firedoor, -/turf/simulated/floor/plating, -/area/rnd/xenobiology) -"Qf" = ( -/obj/machinery/door/window/southright{ - name = "Containment Pen"; - req_access = list(47) - }, -/obj/machinery/door/blast/regular{ - density = 0; - dir = 4; - icon_state = "pdoor0"; - id = "xenobio1"; - name = "Containment Blast Doors"; - opacity = 0 - }, -/obj/machinery/door/firedoor, -/turf/simulated/floor/reinforced, -/area/rnd/xenobiology) "Qg" = ( /obj/structure/grille, /obj/structure/window/reinforced{ @@ -24151,6 +24065,172 @@ dir = 4 }, /obj/structure/window/reinforced, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/machinery/door/blast/regular{ + density = 0; + dir = 4; + icon_state = "pdoor0"; + id = "xenobio3"; + name = "Containment Blast Doors"; + opacity = 0 + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/door/firedoor, +/turf/simulated/floor/plating, +/area/rnd/xenobiology) +"Qh" = ( +/obj/machinery/door/window/southright{ + name = "Containment Pen"; + req_access = list(47) + }, +/obj/machinery/door/blast/regular{ + density = 0; + dir = 4; + icon_state = "pdoor0"; + id = "xenobio3"; + name = "Containment Blast Doors"; + opacity = 0 + }, +/obj/machinery/door/firedoor, +/turf/simulated/floor/reinforced, +/area/rnd/xenobiology) +"Qi" = ( +/obj/structure/grille, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/window/reinforced, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/machinery/door/blast/regular{ + density = 0; + dir = 4; + icon_state = "pdoor0"; + id = "xenobio3"; + name = "Containment Blast Doors"; + opacity = 0 + }, +/obj/machinery/door/firedoor, +/turf/simulated/floor/plating, +/area/rnd/xenobiology) +"Qj" = ( +/obj/structure/grille, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/window/reinforced, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/machinery/door/blast/regular{ + density = 0; + dir = 4; + icon_state = "pdoor0"; + id = "xenobio2"; + name = "Containment Blast Doors"; + opacity = 0 + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/door/firedoor, +/turf/simulated/floor/plating, +/area/rnd/xenobiology) +"Qk" = ( +/obj/machinery/door/window/southright{ + name = "Containment Pen"; + req_access = list(47) + }, +/obj/machinery/door/blast/regular{ + density = 0; + dir = 4; + icon_state = "pdoor0"; + id = "xenobio2"; + name = "Containment Blast Doors"; + opacity = 0 + }, +/obj/machinery/door/firedoor, +/turf/simulated/floor/reinforced, +/area/rnd/xenobiology) +"Ql" = ( +/obj/structure/grille, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/window/reinforced, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/machinery/door/blast/regular{ + density = 0; + dir = 4; + icon_state = "pdoor0"; + id = "xenobio2"; + name = "Containment Blast Doors"; + opacity = 0 + }, +/obj/machinery/door/firedoor, +/turf/simulated/floor/plating, +/area/rnd/xenobiology) +"Qm" = ( +/obj/structure/grille, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/window/reinforced, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/machinery/door/blast/regular{ + density = 0; + dir = 4; + icon_state = "pdoor0"; + id = "xenobio1"; + name = "Containment Blast Doors"; + opacity = 0 + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/door/firedoor, +/turf/simulated/floor/plating, +/area/rnd/xenobiology) +"Qn" = ( +/obj/machinery/door/window/southright{ + name = "Containment Pen"; + req_access = list(47) + }, +/obj/machinery/door/blast/regular{ + density = 0; + dir = 4; + icon_state = "pdoor0"; + id = "xenobio1"; + name = "Containment Blast Doors"; + opacity = 0 + }, +/obj/machinery/door/firedoor, +/turf/simulated/floor/reinforced, +/area/rnd/xenobiology) +"Qo" = ( +/obj/structure/grille, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/window/reinforced, /obj/structure/window/reinforced{ dir = 8 }, @@ -24165,7 +24245,7 @@ /obj/machinery/door/firedoor, /turf/simulated/floor/plating, /area/rnd/xenobiology) -"Qh" = ( +"Qp" = ( /obj/machinery/door/firedoor, /obj/structure/grille, /obj/structure/window/reinforced{ @@ -24176,11 +24256,11 @@ }, /turf/simulated/floor/plating, /area/crew_quarters/medbreak) -"Qi" = ( +"Qq" = ( /obj/structure/flora/pottedplant/random, /turf/simulated/floor/tiled/dark, /area/crew_quarters/medbreak) -"Qj" = ( +"Qr" = ( /obj/machinery/disposal, /obj/structure/disposalpipe/trunk, /obj/machinery/light{ @@ -24188,14 +24268,14 @@ }, /turf/simulated/floor/tiled/dark, /area/crew_quarters/medbreak) -"Qk" = ( +"Qs" = ( /obj/machinery/vending/cigarette, /obj/machinery/camera/network/medbay{ c_tag = "Medical - Staff Smoking Lounge" }, /turf/simulated/floor/tiled/dark, /area/crew_quarters/medbreak) -"Ql" = ( +"Qt" = ( /obj/machinery/recharge_station, /obj/machinery/alarm{ dir = 4; @@ -24210,7 +24290,7 @@ /obj/effect/floor_decal/corner/white/diagonal, /turf/simulated/floor/tiled, /area/crew_quarters/medbreak) -"Qm" = ( +"Qu" = ( /obj/structure/disposalpipe/segment, /obj/structure/cable/green{ d1 = 1; @@ -24220,12 +24300,12 @@ /obj/effect/floor_decal/corner/white/diagonal, /turf/simulated/floor/tiled, /area/crew_quarters/medbreak) -"Qn" = ( +"Qv" = ( /obj/machinery/hologram/holopad, /obj/effect/floor_decal/corner/white/diagonal, /turf/simulated/floor/tiled, /area/crew_quarters/medbreak) -"Qo" = ( +"Qw" = ( /obj/machinery/door/firedoor, /obj/structure/window/reinforced{ dir = 4 @@ -24236,7 +24316,7 @@ /obj/structure/grille, /turf/simulated/floor/plating, /area/crew_quarters/medbreak) -"Qp" = ( +"Qx" = ( /obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ dir = 8 }, @@ -24245,7 +24325,7 @@ }, /turf/simulated/floor/tiled, /area/medical/medbay4) -"Qq" = ( +"Qy" = ( /obj/machinery/door/airlock/glass_medical{ name = "Auxiliary Storage"; req_access = list(66) @@ -24259,7 +24339,7 @@ }, /turf/simulated/floor/tiled/dark, /area/medical/medbay4) -"Qr" = ( +"Qz" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, @@ -24268,7 +24348,7 @@ }, /turf/simulated/floor/tiled/dark, /area/medical/medbay4) -"Qs" = ( +"QA" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 10 }, @@ -24277,29 +24357,29 @@ }, /turf/simulated/floor/tiled/dark, /area/medical/medbay4) -"Qt" = ( +"QB" = ( /obj/machinery/atmospherics/unary/vent_scrubber/on{ dir = 8 }, /turf/simulated/floor/tiled/dark, /area/medical/medbay4) -"Qu" = ( +"QC" = ( /turf/simulated/floor/tiled/dark, /area/medical/medbay4) -"Qv" = ( +"QD" = ( /obj/machinery/atmospherics/pipe/simple/visible{ icon_state = "intact"; dir = 6 }, /turf/simulated/mineral, /area/mine/unexplored) -"Qw" = ( +"QE" = ( /obj/machinery/atmospherics/pipe/simple/visible{ dir = 4 }, /turf/simulated/wall/r_wall, /area/rnd/mixing) -"Qx" = ( +"QF" = ( /obj/machinery/atmospherics/pipe/simple/visible{ dir = 4 }, @@ -24310,13 +24390,13 @@ }, /turf/simulated/floor/tiled/dark, /area/rnd/mixing) -"Qy" = ( +"QG" = ( /obj/machinery/atmospherics/pipe/simple/visible{ dir = 4 }, /turf/simulated/floor/tiled/dark, /area/rnd/mixing) -"Qz" = ( +"QH" = ( /obj/machinery/atmospherics/binary/pump{ dir = 8; name = "To Space" @@ -24324,7 +24404,7 @@ /obj/machinery/atmospherics/pipe/simple/hidden/supply, /turf/simulated/floor/tiled/dark, /area/rnd/mixing) -"QA" = ( +"QI" = ( /obj/machinery/atmospherics/pipe/simple/visible{ dir = 10; icon_state = "intact" @@ -24340,14 +24420,14 @@ }, /turf/simulated/floor/tiled/dark, /area/rnd/mixing) -"QB" = ( +"QJ" = ( /obj/machinery/atmospherics/pipe/simple/heat_exchanging/junction{ icon_state = "intact"; dir = 1 }, /turf/simulated/wall/r_wall, /area/rnd/mixing) -"QC" = ( +"QK" = ( /obj/structure/grille, /obj/structure/window/reinforced, /obj/structure/window/reinforced{ @@ -24361,7 +24441,7 @@ }, /turf/simulated/floor/plating, /area/rnd/mixing) -"QD" = ( +"QL" = ( /obj/machinery/portable_atmospherics/canister/empty, /obj/machinery/light{ dir = 8 @@ -24369,29 +24449,29 @@ /obj/effect/floor_decal/industrial/hatch/yellow, /turf/simulated/floor/tiled, /area/rnd/storage) -"QE" = ( +"QM" = ( /obj/effect/floor_decal/industrial/warning{ dir = 8 }, /turf/simulated/floor/tiled, /area/rnd/storage) -"QF" = ( +"QN" = ( /obj/machinery/portable_atmospherics/canister/sleeping_agent, /obj/effect/floor_decal/industrial/hatch/yellow, /turf/simulated/floor/tiled, /area/rnd/storage) -"QG" = ( +"QO" = ( /obj/structure/disposalpipe/segment, /turf/simulated/floor/reinforced, /area/rnd/xenobiology) -"QH" = ( +"QP" = ( /obj/structure/bed/chair/comfy/beige, /obj/machinery/atmospherics/unary/vent_pump/on{ dir = 4 }, /turf/simulated/floor/tiled/dark, /area/crew_quarters/medbreak) -"QI" = ( +"QQ" = ( /obj/structure/disposalpipe/segment{ dir = 1; icon_state = "pipe-c" @@ -24401,7 +24481,7 @@ }, /turf/simulated/floor/tiled/dark, /area/crew_quarters/medbreak) -"QJ" = ( +"QR" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, @@ -24413,7 +24493,7 @@ }, /turf/simulated/floor/tiled/dark, /area/crew_quarters/medbreak) -"QK" = ( +"QS" = ( /obj/machinery/door/airlock/glass_medical{ name = "Staff Smoking Lounge"; req_access = list(66) @@ -24430,7 +24510,7 @@ }, /turf/simulated/floor/tiled/dark, /area/crew_quarters/medbreak) -"QL" = ( +"QT" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, @@ -24448,7 +24528,7 @@ /obj/effect/floor_decal/corner/white/diagonal, /turf/simulated/floor/tiled, /area/crew_quarters/medbreak) -"QM" = ( +"QU" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, @@ -24465,7 +24545,7 @@ }, /turf/simulated/floor/tiled, /area/crew_quarters/medbreak) -"QN" = ( +"QV" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, @@ -24486,7 +24566,7 @@ }, /turf/simulated/floor/tiled, /area/crew_quarters/medbreak) -"QO" = ( +"QW" = ( /obj/structure/disposalpipe/segment{ dir = 8; icon_state = "pipe-c" @@ -24505,13 +24585,13 @@ /obj/effect/floor_decal/corner/white/diagonal, /turf/simulated/floor/tiled, /area/crew_quarters/medbreak) -"QP" = ( +"QX" = ( /obj/structure/table/standard, /obj/item/weapon/storage/box/cups, /obj/effect/floor_decal/corner/white/diagonal, /turf/simulated/floor/tiled, /area/crew_quarters/medbreak) -"QQ" = ( +"QY" = ( /obj/structure/table/standard, /obj/effect/floor_decal/corner/white/diagonal, /obj/item/weapon/tape_roll, @@ -24520,7 +24600,7 @@ }, /turf/simulated/floor/tiled, /area/crew_quarters/medbreak) -"QR" = ( +"QZ" = ( /obj/machinery/door/firedoor, /obj/structure/window/reinforced, /obj/structure/window/reinforced{ @@ -24532,13 +24612,13 @@ /obj/structure/grille, /turf/simulated/floor/plating, /area/crew_quarters/medbreak) -"QS" = ( +"Ra" = ( /obj/machinery/atmospherics/unary/vent_pump/on{ dir = 1 }, /turf/simulated/floor/tiled, /area/medical/medbay4) -"QT" = ( +"Rb" = ( /obj/structure/closet/crate{ icon_state = "crateopen"; name = "Grenade Crate"; @@ -24560,25 +24640,25 @@ /obj/machinery/firealarm/south, /turf/simulated/floor/tiled, /area/medical/medbay4) -"QU" = ( +"Rc" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 5 }, /turf/simulated/floor/tiled, /area/medical/medbay4) -"QV" = ( +"Rd" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, /turf/simulated/floor/tiled/dark, /area/medical/medbay4) -"QW" = ( +"Re" = ( /obj/machinery/atmospherics/unary/vent_pump/on{ dir = 8 }, /turf/simulated/floor/tiled/dark, /area/medical/medbay4) -"QX" = ( +"Rf" = ( /obj/structure/closet/secure_closet/medical3, /obj/machinery/light{ dir = 4; @@ -24586,11 +24666,11 @@ }, /turf/simulated/floor/tiled, /area/medical/medbay4) -"QY" = ( +"Rg" = ( /obj/machinery/atmospherics/pipe/simple/visible, /turf/simulated/mineral, /area/mine/unexplored) -"QZ" = ( +"Rh" = ( /obj/machinery/atmospherics/portables_connector, /obj/machinery/light{ dir = 8 @@ -24598,7 +24678,7 @@ /obj/effect/floor_decal/industrial/outline/yellow, /turf/simulated/floor/tiled/dark, /area/rnd/mixing) -"Ra" = ( +"Ri" = ( /obj/machinery/meter, /obj/machinery/atmospherics/pipe/manifold/visible{ dir = 1 @@ -24606,7 +24686,7 @@ /obj/machinery/atmospherics/pipe/simple/hidden/supply, /turf/simulated/floor/tiled/dark, /area/rnd/mixing) -"Rb" = ( +"Rj" = ( /obj/machinery/atmospherics/pipe/manifold/visible{ dir = 4 }, @@ -24617,21 +24697,21 @@ }, /turf/simulated/floor/tiled/dark, /area/rnd/mixing) -"Rc" = ( +"Rk" = ( /obj/machinery/atmospherics/unary/vent_scrubber/on, /turf/simulated/floor/tiled/dark, /area/rnd/mixing) -"Rd" = ( +"Rl" = ( /obj/machinery/atmospherics/binary/pump, /turf/simulated/floor/tiled/dark, /area/rnd/mixing) -"Re" = ( +"Rm" = ( /obj/machinery/light{ dir = 1 }, /turf/simulated/floor/tiled/dark, /area/rnd/mixing) -"Rf" = ( +"Rn" = ( /obj/machinery/atmospherics/binary/pump{ dir = 1; name = "CO2 to Connector" @@ -24641,7 +24721,7 @@ }, /turf/simulated/floor/tiled/dark, /area/rnd/mixing) -"Rg" = ( +"Ro" = ( /obj/structure/cable/green{ d2 = 4; icon_state = "0-4" @@ -24656,7 +24736,7 @@ }, /turf/simulated/floor/tiled, /area/rnd/storage) -"Rh" = ( +"Rp" = ( /obj/structure/cable/green{ d1 = 2; d2 = 8; @@ -24667,14 +24747,14 @@ }, /turf/simulated/floor/tiled, /area/rnd/storage) -"Ri" = ( +"Rq" = ( /obj/effect/floor_decal/industrial/warning/corner{ icon_state = "warningcorner"; dir = 1 }, /turf/simulated/floor/tiled, /area/rnd/storage) -"Rj" = ( +"Rr" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/structure/cable/green{ d1 = 1; @@ -24686,7 +24766,7 @@ }, /turf/simulated/floor/tiled, /area/rnd/storage) -"Rk" = ( +"Rs" = ( /obj/effect/floor_decal/industrial/warning{ dir = 4 }, @@ -24695,7 +24775,7 @@ }, /turf/simulated/floor/tiled, /area/rnd/storage) -"Rl" = ( +"Rt" = ( /obj/machinery/portable_atmospherics/canister/carbon_dioxide, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 @@ -24703,7 +24783,7 @@ /obj/effect/floor_decal/industrial/hatch/yellow, /turf/simulated/floor/tiled, /area/rnd/storage) -"Rm" = ( +"Ru" = ( /obj/machinery/portable_atmospherics/canister/carbon_dioxide, /obj/machinery/atmospherics/unary/vent_scrubber/on{ dir = 8 @@ -24711,14 +24791,14 @@ /obj/effect/floor_decal/industrial/hatch/yellow, /turf/simulated/floor/tiled, /area/rnd/storage) -"Rn" = ( +"Rv" = ( /obj/structure/disposalpipe/segment, /obj/machinery/light/small{ dir = 8 }, /turf/simulated/floor/reinforced, /area/rnd/xenobiology) -"Ro" = ( +"Rw" = ( /obj/machinery/door/firedoor, /obj/structure/grille, /obj/structure/window/reinforced{ @@ -24730,7 +24810,7 @@ /obj/structure/window/reinforced, /turf/simulated/floor/plating, /area/crew_quarters/medbreak) -"Rp" = ( +"Rx" = ( /obj/structure/table/glass, /obj/item/weapon/material/ashtray/bronze, /obj/item/device/radio{ @@ -24746,13 +24826,13 @@ /obj/machinery/firealarm/south, /turf/simulated/floor/tiled/dark, /area/crew_quarters/medbreak) -"Rq" = ( +"Ry" = ( /obj/structure/bed/chair/comfy/beige{ dir = 8 }, /turf/simulated/floor/tiled/dark, /area/crew_quarters/medbreak) -"Rr" = ( +"Rz" = ( /obj/structure/sink{ dir = 4; icon_state = "sink"; @@ -24773,10 +24853,10 @@ }, /turf/simulated/floor/tiled/dark, /area/crew_quarters/medbreak) -"Rs" = ( +"RA" = ( /turf/simulated/wall, /area/crew_quarters/sleep/medical) -"Rt" = ( +"RB" = ( /obj/machinery/door/airlock/medical{ name = "Staff Dormitories"; req_access = list(66) @@ -24791,7 +24871,7 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/tiled/white, /area/crew_quarters/sleep/medical) -"Ru" = ( +"RC" = ( /obj/machinery/door/airlock/medical{ name = "Staff Hygiene Facilities"; req_access = list(66) @@ -24801,14 +24881,14 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/tiled/freezer, /area/crew_quarters/medbreak) -"Rv" = ( +"RD" = ( /obj/structure/extinguisher_cabinet{ pixel_x = -25; pixel_y = 0 }, /turf/simulated/floor/tiled, /area/medical/medbay4) -"Rw" = ( +"RE" = ( /obj/item/device/radio/intercom{ dir = 0; name = "Station Intercom (General)"; @@ -24823,7 +24903,7 @@ }, /turf/simulated/floor/tiled, /area/medical/medbay4) -"Rx" = ( +"RF" = ( /obj/structure/table/standard, /obj/item/device/radio{ frequency = 1487; @@ -24856,13 +24936,13 @@ }, /turf/simulated/floor/tiled, /area/medical/medbay4) -"Ry" = ( +"RG" = ( /obj/structure/table/standard, /obj/item/weapon/storage/box/syringegun, /obj/item/weapon/gun/launcher/syringe, /turf/simulated/floor/tiled, /area/medical/medbay4) -"Rz" = ( +"RH" = ( /obj/structure/closet/l3closet/general, /obj/item/clothing/mask/gas, /obj/item/clothing/suit/bio_suit/general, @@ -24870,14 +24950,14 @@ /obj/item/clothing/head/bio_hood/general, /turf/simulated/floor/tiled, /area/medical/medbay4) -"RA" = ( +"RI" = ( /obj/machinery/atmospherics/pipe/simple/visible, /turf/simulated/wall/r_wall, /area/mine/unexplored) -"RB" = ( +"RJ" = ( /turf/simulated/floor/tiled/dark, /area/rnd/mixing) -"RC" = ( +"RK" = ( /obj/machinery/atmospherics/binary/pump{ dir = 1 }, @@ -24886,7 +24966,7 @@ }, /turf/simulated/floor/tiled/dark, /area/rnd/mixing) -"RD" = ( +"RL" = ( /obj/machinery/atmospherics/pipe/simple/visible{ icon_state = "intact"; dir = 5 @@ -24901,7 +24981,7 @@ }, /turf/simulated/floor/tiled/dark, /area/rnd/mixing) -"RE" = ( +"RM" = ( /obj/machinery/atmospherics/binary/pump{ dir = 4; icon_state = "map_off"; @@ -24921,28 +25001,28 @@ }, /turf/simulated/floor/tiled/dark, /area/rnd/mixing) -"RF" = ( +"RN" = ( /obj/machinery/atmospherics/pipe/manifold/visible, /turf/simulated/floor/tiled/dark, /area/rnd/mixing) -"RG" = ( +"RO" = ( /obj/machinery/atmospherics/portables_connector{ dir = 8 }, /obj/effect/floor_decal/industrial/outline/yellow, /turf/simulated/floor/tiled/dark, /area/rnd/mixing) -"RH" = ( +"RP" = ( /obj/machinery/atmospherics/portables_connector{ dir = 1 }, /obj/effect/floor_decal/industrial/outline/yellow, /turf/simulated/floor/tiled/dark, /area/rnd/mixing) -"RI" = ( +"RQ" = ( /turf/simulated/floor/tiled, /area/rnd/storage) -"RJ" = ( +"RR" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 6 }, @@ -24961,7 +25041,7 @@ }, /turf/simulated/floor/tiled, /area/rnd/storage) -"RK" = ( +"RS" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 }, @@ -24975,7 +25055,7 @@ }, /turf/simulated/floor/tiled, /area/rnd/storage) -"RL" = ( +"RT" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 9 }, @@ -24990,12 +25070,12 @@ }, /turf/simulated/floor/tiled, /area/rnd/storage) -"RM" = ( +"RU" = ( /obj/machinery/portable_atmospherics/canister/phoron, /obj/effect/floor_decal/industrial/hatch/yellow, /turf/simulated/floor/tiled, /area/rnd/storage) -"RN" = ( +"RV" = ( /obj/machinery/portable_atmospherics/canister/phoron, /obj/machinery/light{ dir = 4; @@ -25004,7 +25084,7 @@ /obj/effect/floor_decal/industrial/hatch/yellow, /turf/simulated/floor/tiled, /area/rnd/storage) -"RO" = ( +"RW" = ( /obj/structure/disposaloutlet{ dir = 4 }, @@ -25013,28 +25093,28 @@ }, /turf/simulated/floor/reinforced, /area/rnd/xenobiology) -"RP" = ( +"RX" = ( /obj/machinery/camera/network/research_outpost{ c_tag = "Research Sublevel - Xenobiology Cell 1"; dir = 1 }, /turf/simulated/floor/reinforced, /area/rnd/xenobiology) -"RQ" = ( +"RY" = ( /obj/machinery/camera/network/research_outpost{ c_tag = "Research Sublevel - Xenobiology Cell 2"; dir = 1 }, /turf/simulated/floor/reinforced, /area/rnd/xenobiology) -"RR" = ( +"RZ" = ( /obj/machinery/camera/network/research_outpost{ c_tag = "Research Sublevel - Xenobiology Cell 3"; dir = 1 }, /turf/simulated/floor/reinforced, /area/rnd/xenobiology) -"RS" = ( +"Sa" = ( /obj/structure/cable/green{ d1 = 1; d2 = 2; @@ -25048,7 +25128,7 @@ }, /turf/simulated/floor/tiled/white, /area/crew_quarters/sleep/medical) -"RT" = ( +"Sb" = ( /obj/structure/table/standard, /obj/structure/bedsheetbin, /obj/machinery/light{ @@ -25060,7 +25140,7 @@ }, /turf/simulated/floor/tiled/white, /area/crew_quarters/sleep/medical) -"RU" = ( +"Sc" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 5 @@ -25068,7 +25148,7 @@ /obj/machinery/firealarm/west, /turf/simulated/floor/tiled/freezer, /area/crew_quarters/medbreak) -"RV" = ( +"Sd" = ( /obj/structure/sink{ pixel_y = 16 }, @@ -25080,11 +25160,11 @@ }, /turf/simulated/floor/tiled/freezer, /area/crew_quarters/medbreak) -"RW" = ( +"Se" = ( /obj/machinery/washing_machine, /turf/simulated/floor/tiled/freezer, /area/crew_quarters/medbreak) -"RX" = ( +"Sf" = ( /obj/machinery/requests_console{ department = "Medical Bay"; departmentType = 1; @@ -25093,12 +25173,12 @@ }, /turf/simulated/floor/tiled, /area/medical/medbay4) -"RY" = ( +"Sg" = ( /obj/machinery/washing_machine, /obj/effect/floor_decal/industrial/outline/yellow, /turf/simulated/floor/tiled, /area/medical/medbay4) -"RZ" = ( +"Sh" = ( /obj/machinery/door/firedoor, /obj/structure/grille, /obj/structure/window/reinforced{ @@ -25113,11 +25193,11 @@ }, /turf/simulated/floor/plating, /area/medical/medbay4) -"Sa" = ( +"Si" = ( /obj/structure/lattice/catwalk, /turf/simulated/open, /area/mine/unexplored) -"Sb" = ( +"Sj" = ( /obj/machinery/atmospherics/unary/outlet_injector{ dir = 1; frequency = 1441; @@ -25129,7 +25209,7 @@ /obj/structure/lattice/catwalk, /turf/simulated/open, /area/mine/unexplored) -"Sc" = ( +"Sk" = ( /obj/structure/grille, /obj/structure/window/phoronreinforced, /obj/structure/window/phoronreinforced{ @@ -25150,7 +25230,7 @@ }, /turf/simulated/floor/plating, /area/rnd/mixing) -"Sd" = ( +"Sl" = ( /obj/structure/grille, /obj/structure/window/phoronreinforced, /obj/structure/window/phoronreinforced{ @@ -25169,7 +25249,7 @@ }, /turf/simulated/floor/plating, /area/rnd/mixing) -"Se" = ( +"Sm" = ( /obj/structure/grille, /obj/structure/window/phoronreinforced, /obj/structure/window/phoronreinforced{ @@ -25186,7 +25266,7 @@ }, /turf/simulated/floor/plating, /area/rnd/mixing) -"Sf" = ( +"Sn" = ( /obj/structure/grille, /obj/structure/window/phoronreinforced{ icon_state = "phoronrwindow"; @@ -25206,7 +25286,7 @@ }, /turf/simulated/floor/plating, /area/rnd/mixing) -"Sg" = ( +"So" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 5 }, @@ -25224,7 +25304,7 @@ }, /turf/simulated/floor/tiled/dark, /area/rnd/mixing) -"Sh" = ( +"Sp" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 }, @@ -25238,7 +25318,7 @@ }, /turf/simulated/floor/tiled/dark, /area/rnd/mixing) -"Si" = ( +"Sq" = ( /obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ dir = 1 }, @@ -25257,7 +25337,7 @@ }, /turf/simulated/floor/tiled/dark, /area/rnd/mixing) -"Sj" = ( +"Sr" = ( /obj/machinery/button/remote/blast_door{ id = "mixvent"; name = "Mixing Room Vent Control"; @@ -25283,7 +25363,7 @@ }, /turf/simulated/floor/tiled/dark, /area/rnd/mixing) -"Sk" = ( +"Ss" = ( /obj/machinery/door/airlock/glass_research{ name = "Toxins Lab"; req_access = list(7) @@ -25302,7 +25382,7 @@ /obj/machinery/door/firedoor, /turf/simulated/floor/tiled/dark, /area/rnd/mixing) -"Sl" = ( +"St" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 }, @@ -25317,7 +25397,7 @@ /obj/machinery/firealarm/south, /turf/simulated/floor/tiled, /area/rnd/storage) -"Sm" = ( +"Su" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 9 }, @@ -25335,7 +25415,7 @@ }, /turf/simulated/floor/tiled, /area/rnd/storage) -"Sn" = ( +"Sv" = ( /obj/machinery/portable_atmospherics/powered/scrubber/huge, /obj/machinery/atmospherics/unary/vent_pump/on{ dir = 1 @@ -25343,12 +25423,12 @@ /obj/effect/floor_decal/industrial/outline/yellow, /turf/simulated/floor/tiled, /area/rnd/storage) -"So" = ( +"Sw" = ( /obj/machinery/portable_atmospherics/powered/scrubber/huge, /obj/effect/floor_decal/industrial/outline/yellow, /turf/simulated/floor/tiled, /area/rnd/storage) -"Sp" = ( +"Sx" = ( /obj/machinery/computer/area_atmos, /obj/effect/floor_decal/industrial/outline/yellow, /obj/effect/floor_decal/industrial/warning{ @@ -25356,14 +25436,14 @@ }, /turf/simulated/floor/tiled, /area/rnd/storage) -"Sq" = ( +"Sy" = ( /obj/effect/floor_decal/corner/lime{ icon_state = "corner_white"; dir = 5 }, /turf/simulated/floor/tiled/white, /area/crew_quarters/sleep/medical) -"Sr" = ( +"Sz" = ( /obj/machinery/alarm{ pixel_y = 22 }, @@ -25373,7 +25453,7 @@ }, /turf/simulated/floor/tiled/white, /area/crew_quarters/sleep/medical) -"Ss" = ( +"SA" = ( /obj/item/device/radio/intercom{ name = "Station Intercom (General)"; pixel_y = 22 @@ -25384,7 +25464,7 @@ }, /turf/simulated/floor/tiled/white, /area/crew_quarters/sleep/medical) -"St" = ( +"SB" = ( /obj/effect/floor_decal/corner/lime{ icon_state = "corner_white"; dir = 5 @@ -25392,7 +25472,7 @@ /obj/machinery/firealarm/north, /turf/simulated/floor/tiled/white, /area/crew_quarters/sleep/medical) -"Su" = ( +"SC" = ( /obj/structure/cable/green{ d1 = 1; d2 = 4; @@ -25404,7 +25484,7 @@ }, /turf/simulated/floor/tiled/white, /area/crew_quarters/sleep/medical) -"Sv" = ( +"SD" = ( /obj/machinery/power/apc{ dir = 4; name = "east bump"; @@ -25423,7 +25503,7 @@ }, /turf/simulated/floor/tiled/white, /area/crew_quarters/sleep/medical) -"Sw" = ( +"SE" = ( /obj/machinery/atmospherics/unary/vent_pump/on{ dir = 1 }, @@ -25434,13 +25514,13 @@ }, /turf/simulated/floor/tiled/freezer, /area/crew_quarters/medbreak) -"Sx" = ( +"SF" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 5 }, /turf/simulated/floor/tiled/freezer, /area/crew_quarters/medbreak) -"Sy" = ( +"SG" = ( /obj/machinery/atmospherics/unary/vent_scrubber/on{ dir = 8 }, @@ -25449,7 +25529,7 @@ }, /turf/simulated/floor/tiled/freezer, /area/crew_quarters/medbreak) -"Sz" = ( +"SH" = ( /obj/machinery/light{ dir = 8 }, @@ -25462,24 +25542,24 @@ }, /turf/simulated/floor/tiled, /area/medical/medbay4) -"SA" = ( +"SI" = ( /obj/structure/table/standard, /obj/structure/bedsheetbin, /obj/effect/floor_decal/corner/green, /turf/simulated/floor/tiled, /area/medical/medbay4) -"SB" = ( +"SJ" = ( /obj/item/device/radio/intercom{ name = "Station Intercom (General)"; pixel_y = 22 }, /turf/simulated/floor/tiled/white, /area/medical/medbay4) -"SC" = ( +"SK" = ( /obj/effect/floor_decal/corner/green/diagonal, /turf/simulated/floor/tiled/white, /area/medical/medbay4) -"SD" = ( +"SL" = ( /obj/structure/noticeboard{ pixel_y = 32 }, @@ -25490,7 +25570,7 @@ }, /turf/simulated/floor/tiled/white, /area/medical/medbay4) -"SE" = ( +"SM" = ( /obj/effect/floor_decal/corner/green/diagonal, /obj/structure/bed/chair/office/light, /obj/effect/landmark/start{ @@ -25498,13 +25578,13 @@ }, /turf/simulated/floor/tiled/white, /area/medical/medbay4) -"SF" = ( +"SN" = ( /obj/structure/sign/greencross{ pixel_y = 32 }, /turf/simulated/floor/tiled/white, /area/medical/medbay4) -"SG" = ( +"SO" = ( /obj/machinery/door/blast/regular{ dir = 1; id = "mixvent"; @@ -25512,18 +25592,18 @@ }, /turf/simulated/floor/reinforced/airless, /area/rnd/mixing) -"SH" = ( +"SP" = ( /obj/machinery/atmospherics/pipe/simple/heat_exchanging, /turf/simulated/floor/reinforced/airless, /area/rnd/mixing) -"SI" = ( +"SQ" = ( /obj/machinery/air_sensor{ id_tag = "HT"; name = "Gas Sensor - High-Temp Chamber" }, /turf/simulated/floor/reinforced/airless, /area/rnd/mixing) -"SJ" = ( +"SR" = ( /obj/machinery/atmospherics/pipe/simple/heat_exchanging, /obj/machinery/sparker{ dir = 2; @@ -25532,7 +25612,7 @@ }, /turf/simulated/floor/reinforced/airless, /area/rnd/mixing) -"SK" = ( +"SS" = ( /obj/structure/grille, /obj/structure/window/phoronreinforced{ icon_state = "phoronrwindow"; @@ -25552,20 +25632,20 @@ }, /turf/simulated/floor/plating, /area/rnd/mixing) -"SL" = ( +"ST" = ( /obj/machinery/portable_atmospherics/powered/scrubber, /obj/machinery/atmospherics/unary/vent_scrubber/on{ dir = 1 }, /turf/simulated/floor/tiled/dark, /area/rnd/mixing) -"SM" = ( +"SU" = ( /obj/machinery/atmospherics/unary/vent_pump/on{ dir = 1 }, /turf/simulated/floor/tiled/dark, /area/rnd/mixing) -"SN" = ( +"SV" = ( /obj/machinery/atmospherics/pipe/simple/visible{ icon_state = "intact"; dir = 6 @@ -25579,14 +25659,14 @@ }, /turf/simulated/floor/tiled/dark, /area/rnd/mixing) -"SO" = ( +"SW" = ( /obj/structure/closet/secure_closet/personal, /obj/effect/floor_decal/corner/lime{ dir = 10 }, /turf/simulated/floor/tiled/white, /area/crew_quarters/sleep/medical) -"SP" = ( +"SX" = ( /obj/structure/bed, /obj/structure/window/reinforced/tinted{ dir = 4; @@ -25599,7 +25679,7 @@ }, /turf/simulated/floor/tiled/white, /area/crew_quarters/sleep/medical) -"SQ" = ( +"SY" = ( /obj/structure/closet/secure_closet/personal, /obj/machinery/atmospherics/unary/vent_pump/on{ dir = 1 @@ -25609,7 +25689,7 @@ }, /turf/simulated/floor/tiled/white, /area/crew_quarters/sleep/medical) -"SR" = ( +"SZ" = ( /obj/structure/bed, /obj/item/weapon/bedsheet/green, /obj/machinery/light/small, @@ -25618,7 +25698,7 @@ }, /turf/simulated/floor/tiled/white, /area/crew_quarters/sleep/medical) -"SS" = ( +"Ta" = ( /obj/machinery/alarm{ dir = 4; icon_state = "alarm0"; @@ -25626,13 +25706,13 @@ }, /turf/simulated/floor/tiled/freezer, /area/crew_quarters/medbreak) -"ST" = ( +"Tb" = ( /turf/simulated/floor/tiled/freezer, /area/crew_quarters/medbreak) -"SU" = ( +"Tc" = ( /turf/simulated/floor/tiled, /area/medical/medbay4) -"SV" = ( +"Td" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 5 }, @@ -25641,7 +25721,7 @@ }, /turf/simulated/floor/tiled, /area/medical/medbay4) -"SW" = ( +"Te" = ( /obj/effect/floor_decal/corner/green{ icon_state = "corner_white"; dir = 6 @@ -25654,7 +25734,7 @@ }, /turf/simulated/floor/tiled, /area/medical/medbay4) -"SX" = ( +"Tf" = ( /obj/machinery/door/firedoor, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 @@ -25668,7 +25748,7 @@ }, /turf/simulated/floor/tiled, /area/medical/medbay4) -"SY" = ( +"Tg" = ( /obj/effect/floor_decal/corner/green/diagonal, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 @@ -25678,7 +25758,7 @@ }, /turf/simulated/floor/tiled/white, /area/medical/medbay4) -"SZ" = ( +"Th" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 }, @@ -25687,7 +25767,7 @@ }, /turf/simulated/floor/tiled/white, /area/medical/medbay4) -"Ta" = ( +"Ti" = ( /obj/effect/floor_decal/corner/green/diagonal, /obj/structure/table/glass, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ @@ -25695,7 +25775,7 @@ }, /turf/simulated/floor/tiled/white, /area/medical/medbay4) -"Tb" = ( +"Tj" = ( /obj/structure/table/glass, /obj/item/weapon/folder/white, /obj/item/weapon/pen, @@ -25704,13 +25784,13 @@ }, /turf/simulated/floor/tiled/white, /area/medical/medbay4) -"Tc" = ( +"Tk" = ( /obj/effect/floor_decal/corner/green/diagonal, /obj/structure/table/glass, /obj/item/weapon/paper_bin, /turf/simulated/floor/tiled/white, /area/medical/medbay4) -"Td" = ( +"Tl" = ( /obj/machinery/light/small/emergency{ dir = 8 }, @@ -25719,7 +25799,7 @@ }, /turf/simulated/open, /area/mine/unexplored) -"Te" = ( +"Tm" = ( /obj/machinery/atmospherics/unary/outlet_injector{ dir = 4; frequency = 1441; @@ -25729,14 +25809,14 @@ }, /turf/simulated/floor/reinforced/airless, /area/rnd/mixing) -"Tf" = ( +"Tn" = ( /obj/machinery/atmospherics/pipe/simple/heat_exchanging, /obj/machinery/atmospherics/pipe/simple/visible{ dir = 4 }, /turf/simulated/floor/reinforced/airless, /area/rnd/mixing) -"Tg" = ( +"To" = ( /obj/structure/grille, /obj/structure/window/phoronreinforced{ icon_state = "phoronrwindow"; @@ -25759,14 +25839,14 @@ }, /turf/simulated/floor/plating, /area/rnd/mixing) -"Th" = ( +"Tp" = ( /obj/machinery/atmospherics/pipe/simple/visible{ dir = 4 }, /obj/machinery/portable_atmospherics/powered/pump/filled, /turf/simulated/floor/tiled/dark, /area/rnd/mixing) -"Ti" = ( +"Tq" = ( /obj/machinery/meter, /obj/machinery/atmospherics/pipe/manifold4w/visible, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, @@ -25778,7 +25858,7 @@ }, /turf/simulated/floor/tiled/dark, /area/rnd/mixing) -"Tj" = ( +"Tr" = ( /obj/machinery/atmospherics/portables_connector{ dir = 8 }, @@ -25797,7 +25877,7 @@ /obj/effect/floor_decal/industrial/outline/yellow, /turf/simulated/floor/tiled/dark, /area/rnd/mixing) -"Tk" = ( +"Ts" = ( /obj/machinery/door/airlock/medical{ autoclose = 0; icon_state = "door_open"; @@ -25805,7 +25885,7 @@ }, /turf/simulated/floor/tiled/freezer, /area/crew_quarters/medbreak) -"Tl" = ( +"Tt" = ( /obj/machinery/door/airlock/medical{ autoclose = 0; icon_state = "door_open"; @@ -25813,15 +25893,15 @@ }, /turf/simulated/floor/tiled/freezer, /area/crew_quarters/medbreak) -"Tm" = ( +"Tu" = ( /turf/simulated/floor/tiled/white, /area/medical/medbay4) -"Tn" = ( +"Tv" = ( /obj/effect/floor_decal/corner/green/diagonal, /obj/machinery/atmospherics/pipe/simple/hidden/supply, /turf/simulated/floor/tiled/white, /area/medical/medbay4) -"To" = ( +"Tw" = ( /obj/effect/floor_decal/corner/green/diagonal, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ icon_state = "intact-scrubbers"; @@ -25829,19 +25909,19 @@ }, /turf/simulated/floor/tiled/white, /area/medical/medbay4) -"Tp" = ( +"Tx" = ( /obj/machinery/atmospherics/pipe/simple/heat_exchanging{ dir = 5 }, /turf/simulated/floor/reinforced/airless, /area/rnd/mixing) -"Tq" = ( +"Ty" = ( /obj/machinery/atmospherics/pipe/simple/heat_exchanging{ dir = 4 }, /turf/simulated/floor/reinforced/airless, /area/rnd/mixing) -"Tr" = ( +"Tz" = ( /obj/machinery/atmospherics/pipe/simple/heat_exchanging{ icon_state = "intact"; dir = 9 @@ -25853,11 +25933,11 @@ }, /turf/simulated/floor/reinforced/airless, /area/rnd/mixing) -"Ts" = ( +"TA" = ( /obj/structure/dispenser, /turf/simulated/floor/tiled/dark, /area/rnd/mixing) -"Tt" = ( +"TB" = ( /obj/machinery/requests_console{ department = "Science"; departmentType = 2; @@ -25867,7 +25947,7 @@ }, /turf/simulated/floor/tiled/dark, /area/rnd/mixing) -"Tu" = ( +"TC" = ( /obj/machinery/atmospherics/pipe/simple/visible{ icon_state = "intact"; dir = 5 @@ -25881,7 +25961,7 @@ }, /turf/simulated/floor/tiled/dark, /area/rnd/mixing) -"Tv" = ( +"TD" = ( /obj/machinery/atmospherics/portables_connector{ dir = 8 }, @@ -25889,7 +25969,7 @@ /obj/machinery/firealarm/east, /turf/simulated/floor/tiled/dark, /area/rnd/mixing) -"Tw" = ( +"TE" = ( /obj/structure/toilet{ icon_state = "toilet00"; dir = 1 @@ -25899,7 +25979,7 @@ }, /turf/simulated/floor/tiled/freezer, /area/crew_quarters/medbreak) -"Tx" = ( +"TF" = ( /obj/effect/floor_decal/corner/green/diagonal, /obj/structure/bed/chair{ dir = 1 @@ -25909,7 +25989,7 @@ }, /turf/simulated/floor/tiled/white, /area/medical/medbay4) -"Ty" = ( +"TG" = ( /obj/structure/bed/chair{ dir = 1 }, @@ -25919,7 +25999,7 @@ /obj/machinery/atmospherics/pipe/simple/hidden/supply, /turf/simulated/floor/tiled/white, /area/medical/medbay4) -"Tz" = ( +"TH" = ( /obj/structure/bed/chair{ dir = 1 }, @@ -25932,7 +26012,7 @@ }, /turf/simulated/floor/tiled/white, /area/medical/medbay4) -"TA" = ( +"TI" = ( /obj/effect/floor_decal/corner/green/diagonal, /obj/structure/bed/chair{ dir = 1 @@ -25942,7 +26022,7 @@ }, /turf/simulated/floor/tiled/white, /area/medical/medbay4) -"TB" = ( +"TJ" = ( /obj/structure/grille, /obj/structure/window/phoronreinforced, /obj/structure/window/phoronreinforced{ @@ -25963,7 +26043,7 @@ }, /turf/simulated/floor/plating, /area/rnd/mixing) -"TC" = ( +"TK" = ( /obj/structure/grille, /obj/structure/window/phoronreinforced{ icon_state = "phoronrwindow"; @@ -25980,7 +26060,7 @@ }, /turf/simulated/floor/plating, /area/rnd/mixing) -"TD" = ( +"TL" = ( /obj/machinery/door/airlock/research{ name = "Toxins Launch Room Access"; req_access = list(7) @@ -25995,7 +26075,7 @@ /obj/machinery/door/firedoor, /turf/simulated/floor/tiled/dark, /area/rnd/mixing) -"TE" = ( +"TM" = ( /obj/structure/table/standard, /obj/item/device/assembly/prox_sensor, /obj/item/device/assembly/prox_sensor, @@ -26007,7 +26087,7 @@ }, /turf/simulated/floor/tiled, /area/rnd/mixing) -"TF" = ( +"TN" = ( /obj/structure/table/standard, /obj/item/device/assembly/signaler, /obj/item/device/assembly/signaler, @@ -26018,7 +26098,7 @@ }, /turf/simulated/floor/tiled, /area/rnd/mixing) -"TG" = ( +"TO" = ( /obj/structure/table/standard, /obj/item/device/assembly/timer, /obj/item/device/assembly/timer, @@ -26031,7 +26111,7 @@ }, /turf/simulated/floor/tiled, /area/rnd/mixing) -"TH" = ( +"TP" = ( /obj/structure/table/standard, /obj/item/device/transfer_valve, /obj/item/device/transfer_valve, @@ -26048,14 +26128,14 @@ }, /turf/simulated/floor/tiled, /area/rnd/mixing) -"TI" = ( +"TQ" = ( /obj/machinery/vending/phoronresearch, /obj/effect/floor_decal/corner/red{ dir = 5 }, /turf/simulated/floor/tiled, /area/rnd/mixing) -"TJ" = ( +"TR" = ( /obj/machinery/camera/network/research_outpost{ c_tag = "Research Sublevel - Toxins Testing Observation" }, @@ -26065,7 +26145,7 @@ /obj/structure/closet/emcloset, /turf/simulated/floor/tiled, /area/rnd/mixing) -"TK" = ( +"TS" = ( /obj/structure/sign/nosmoking_1{ pixel_y = 32 }, @@ -26075,7 +26155,7 @@ /obj/structure/closet/crate/bin, /turf/simulated/floor/tiled, /area/rnd/mixing) -"TL" = ( +"TT" = ( /obj/effect/floor_decal/corner/red/full{ icon_state = "corner_white_full"; dir = 1 @@ -26085,25 +26165,25 @@ }, /turf/simulated/floor/tiled, /area/rnd/mixing) -"TM" = ( +"TU" = ( /obj/machinery/firealarm/west, /turf/simulated/floor/tiled/white, /area/medical/medbay4) -"TN" = ( +"TV" = ( /obj/effect/floor_decal/corner/green/diagonal, /obj/machinery/atmospherics/unary/vent_pump/on{ dir = 1 }, /turf/simulated/floor/tiled/white, /area/medical/medbay4) -"TO" = ( +"TW" = ( /obj/effect/floor_decal/corner/green/diagonal, /obj/machinery/atmospherics/unary/vent_scrubber/on{ dir = 1 }, /turf/simulated/floor/tiled/white, /area/medical/medbay4) -"TP" = ( +"TX" = ( /obj/machinery/alarm{ dir = 8; icon_state = "alarm0"; @@ -26111,7 +26191,7 @@ }, /turf/simulated/floor/tiled/white, /area/medical/medbay4) -"TQ" = ( +"TY" = ( /obj/effect/floor_decal/industrial/warning{ icon_state = "warning"; dir = 9 @@ -26120,7 +26200,7 @@ /obj/machinery/portable_atmospherics/canister/air/airlock, /turf/simulated/floor/tiled, /area/rnd/mixing) -"TR" = ( +"TZ" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/effect/floor_decal/industrial/warning{ @@ -26133,7 +26213,7 @@ }, /turf/simulated/floor/tiled, /area/rnd/mixing) -"TS" = ( +"Ua" = ( /obj/item/target, /obj/item/target, /obj/item/target/alien, @@ -26149,7 +26229,7 @@ }, /turf/simulated/floor/tiled, /area/rnd/mixing) -"TT" = ( +"Ub" = ( /obj/machinery/light{ dir = 8 }, @@ -26163,21 +26243,21 @@ }, /turf/simulated/floor/tiled, /area/rnd/mixing) -"TU" = ( +"Uc" = ( /turf/simulated/floor/tiled, /area/rnd/mixing) -"TV" = ( +"Ud" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/tiled, /area/rnd/mixing) -"TW" = ( +"Ue" = ( /obj/effect/floor_decal/corner/red{ icon_state = "corner_white"; dir = 6 }, /turf/simulated/floor/tiled, /area/rnd/mixing) -"TX" = ( +"Uf" = ( /obj/machinery/door/window/southright{ dir = 8; name = "Toxins Launcher"; @@ -26192,14 +26272,14 @@ }, /turf/simulated/floor/plating, /area/rnd/mixing) -"TY" = ( +"Ug" = ( /obj/structure/disposalpipe/segment{ dir = 2; icon_state = "pipe-c" }, /turf/simulated/wall/r_wall, /area/rnd/mixing) -"TZ" = ( +"Uh" = ( /obj/effect/floor_decal/corner/green/diagonal, /obj/structure/bed/chair{ dir = 1 @@ -26209,7 +26289,7 @@ }, /turf/simulated/floor/tiled/white, /area/medical/medbay4) -"Ua" = ( +"Ui" = ( /obj/structure/bed/chair{ dir = 1 }, @@ -26218,7 +26298,7 @@ }, /turf/simulated/floor/tiled/white, /area/medical/medbay4) -"Ub" = ( +"Uj" = ( /obj/machinery/atmospherics/pipe/simple/visible, /obj/machinery/camera/network/research_outpost{ c_tag = "Research Sublevel - Toxins Testing Storage"; @@ -26229,7 +26309,7 @@ }, /turf/simulated/floor/tiled, /area/rnd/mixing) -"Uc" = ( +"Uk" = ( /obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ dir = 8 }, @@ -26243,7 +26323,7 @@ }, /turf/simulated/floor/tiled, /area/rnd/mixing) -"Ud" = ( +"Ul" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 }, @@ -26253,7 +26333,7 @@ }, /turf/simulated/floor/tiled, /area/rnd/mixing) -"Ue" = ( +"Um" = ( /obj/machinery/door/airlock/research{ name = "Toxins Launch Room"; req_access = list(7) @@ -26267,7 +26347,7 @@ /obj/machinery/door/firedoor, /turf/simulated/floor/tiled, /area/rnd/mixing) -"Uf" = ( +"Un" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 }, @@ -26280,7 +26360,7 @@ }, /turf/simulated/floor/tiled, /area/rnd/mixing) -"Ug" = ( +"Uo" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 }, @@ -26289,24 +26369,24 @@ }, /turf/simulated/floor/tiled, /area/rnd/mixing) -"Uh" = ( +"Up" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 }, /turf/simulated/floor/tiled, /area/rnd/mixing) -"Ui" = ( +"Uq" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ icon_state = "intact-scrubbers"; dir = 9 }, /turf/simulated/floor/tiled, /area/rnd/mixing) -"Uj" = ( +"Ur" = ( /obj/machinery/hologram/holopad, /turf/simulated/floor/tiled, /area/rnd/mixing) -"Uk" = ( +"Us" = ( /obj/machinery/light{ dir = 4; icon_state = "tube1" @@ -26317,11 +26397,11 @@ }, /turf/simulated/floor/tiled, /area/rnd/mixing) -"Ul" = ( +"Ut" = ( /obj/structure/disposalpipe/segment, /turf/simulated/wall/r_wall, /area/rnd/mixing) -"Um" = ( +"Uu" = ( /obj/machinery/requests_console{ department = "Medical Bay"; departmentType = 1; @@ -26330,14 +26410,14 @@ }, /turf/simulated/floor/tiled/white, /area/medical/medbay4) -"Un" = ( +"Uv" = ( /obj/structure/sign/nosmoking_1{ pixel_x = 32; pixel_y = 0 }, /turf/simulated/floor/tiled/white, /area/medical/medbay4) -"Uo" = ( +"Uw" = ( /obj/structure/cable/green{ d1 = 2; d2 = 4; @@ -26345,7 +26425,7 @@ }, /turf/simulated/floor/asteroid/ash/rocky, /area/mine/unexplored) -"Up" = ( +"Ux" = ( /obj/machinery/access_button{ command = "cycle_exterior"; frequency = 1379; @@ -26362,7 +26442,7 @@ }, /turf/simulated/floor/asteroid/ash/rocky, /area/mine/unexplored) -"Uq" = ( +"Uy" = ( /obj/structure/cable/green{ d1 = 4; d2 = 8; @@ -26386,7 +26466,7 @@ }, /turf/simulated/floor/plating, /area/rnd/mixing) -"Ur" = ( +"Uz" = ( /obj/machinery/atmospherics/unary/vent_pump/high_volume{ dir = 4; frequency = 1379; @@ -26415,7 +26495,7 @@ }, /turf/simulated/floor/plating, /area/rnd/mixing) -"Us" = ( +"UA" = ( /obj/machinery/door/airlock/external{ frequency = 1379; icon_state = "door_locked"; @@ -26433,7 +26513,7 @@ }, /turf/simulated/floor/plating, /area/rnd/mixing) -"Ut" = ( +"UB" = ( /obj/effect/floor_decal/industrial/warning{ icon_state = "warning"; dir = 10 @@ -26458,7 +26538,7 @@ }, /turf/simulated/floor/tiled, /area/rnd/mixing) -"Uu" = ( +"UC" = ( /obj/machinery/light/small, /obj/machinery/atmospherics/unary/vent_scrubber/on{ dir = 1 @@ -26475,19 +26555,19 @@ }, /turf/simulated/floor/tiled, /area/rnd/mixing) -"Uv" = ( +"UD" = ( /obj/machinery/suit_storage_unit/standard_unit, /obj/effect/floor_decal/industrial/warning{ dir = 6 }, /turf/simulated/floor/tiled, /area/rnd/mixing) -"Uw" = ( +"UE" = ( /obj/effect/floor_decal/corner/red/full, /obj/structure/closet/secure_closet/scientist, /turf/simulated/floor/tiled, /area/rnd/mixing) -"Ux" = ( +"UF" = ( /obj/machinery/atmospherics/unary/vent_pump/on{ dir = 1 }, @@ -26498,7 +26578,7 @@ /obj/structure/closet/secure_closet/scientist, /turf/simulated/floor/tiled, /area/rnd/mixing) -"Uy" = ( +"UG" = ( /obj/structure/table/standard, /obj/item/weapon/wrench, /obj/item/weapon/screwdriver, @@ -26508,7 +26588,7 @@ }, /turf/simulated/floor/tiled, /area/rnd/mixing) -"Uz" = ( +"UH" = ( /obj/effect/floor_decal/corner/red{ icon_state = "corner_white"; dir = 10 @@ -26522,7 +26602,7 @@ }, /turf/simulated/floor/tiled, /area/rnd/mixing) -"UA" = ( +"UI" = ( /obj/effect/floor_decal/corner/red{ icon_state = "corner_white"; dir = 10 @@ -26530,7 +26610,7 @@ /obj/machinery/firealarm/south, /turf/simulated/floor/tiled, /area/rnd/mixing) -"UB" = ( +"UJ" = ( /obj/structure/bed/chair, /obj/machinery/computer/security/telescreen{ desc = "Used for watching the test chamber."; @@ -26546,7 +26626,7 @@ }, /turf/simulated/floor/tiled, /area/rnd/mixing) -"UC" = ( +"UK" = ( /obj/structure/bed/chair, /obj/machinery/computer/security/telescreen{ desc = "Used for watching the test chamber."; @@ -26568,11 +26648,11 @@ }, /turf/simulated/floor/tiled, /area/rnd/mixing) -"UD" = ( +"UL" = ( /obj/structure/disposalpipe/segment, /turf/simulated/mineral, /area/mine/unexplored) -"UE" = ( +"UM" = ( /obj/effect/floor_decal/corner/green/diagonal, /obj/structure/bed/chair{ dir = 1 @@ -26582,7 +26662,7 @@ }, /turf/simulated/floor/tiled/white, /area/medical/medbay4) -"UF" = ( +"UN" = ( /obj/structure/bed/chair{ dir = 1 }, @@ -26591,12 +26671,12 @@ }, /turf/simulated/floor/tiled/white, /area/medical/medbay4) -"UG" = ( +"UO" = ( /obj/effect/floor_decal/corner/green/diagonal, /obj/machinery/light, /turf/simulated/floor/tiled/white, /area/medical/medbay4) -"UH" = ( +"UP" = ( /obj/structure/bed/chair{ dir = 1 }, @@ -26605,7 +26685,7 @@ }, /turf/simulated/floor/tiled/white, /area/medical/medbay4) -"UI" = ( +"UQ" = ( /obj/effect/floor_decal/corner/green/diagonal, /obj/structure/bed/chair{ dir = 1 @@ -26615,13 +26695,13 @@ }, /turf/simulated/floor/tiled/white, /area/medical/medbay4) -"UJ" = ( +"UR" = ( /obj/machinery/light/small{ dir = 8 }, /turf/simulated/floor/asteroid/ash/rocky, /area/rnd/mixing) -"UK" = ( +"US" = ( /obj/structure/cable/green{ d1 = 1; d2 = 2; @@ -26629,7 +26709,7 @@ }, /turf/simulated/floor/asteroid/ash/rocky, /area/mine/unexplored) -"UL" = ( +"UT" = ( /obj/structure/grille, /obj/machinery/door/firedoor, /obj/machinery/door/blast/regular{ @@ -26651,7 +26731,7 @@ /obj/structure/window/phoronreinforced, /turf/simulated/floor/plating, /area/rnd/mixing) -"UM" = ( +"UU" = ( /obj/structure/grille, /obj/machinery/door/firedoor, /obj/machinery/door/blast/regular{ @@ -26669,7 +26749,7 @@ /obj/structure/window/phoronreinforced, /turf/simulated/floor/plating, /area/rnd/mixing) -"UN" = ( +"UV" = ( /obj/structure/grille, /obj/machinery/door/firedoor, /obj/machinery/door/blast/regular{ @@ -26691,13 +26771,13 @@ }, /turf/simulated/floor/plating, /area/rnd/mixing) -"UO" = ( +"UW" = ( /obj/structure/sign/securearea{ name = "\improper CAUTION: BOMB RANGE" }, /turf/simulated/wall/r_wall, /area/rnd/mixing) -"UP" = ( +"UX" = ( /obj/structure/disposaloutlet, /obj/structure/disposalpipe/trunk{ dir = 4 @@ -26710,7 +26790,7 @@ icon_state = "asteroidfloor" }, /area/rnd/mixing) -"UQ" = ( +"UY" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, @@ -26718,20 +26798,20 @@ icon_state = "asteroidfloor" }, /area/rnd/mixing) -"UR" = ( +"UZ" = ( /obj/structure/disposalpipe/segment{ dir = 8; icon_state = "pipe-c" }, /turf/simulated/mineral, /area/mine/unexplored) -"US" = ( +"Va" = ( /obj/machinery/light/small{ dir = 1 }, /turf/simulated/floor/asteroid/ash/rocky, /area/rnd/mixing) -"UT" = ( +"Vb" = ( /obj/effect/floor_decal/industrial/warning{ icon_state = "warning"; dir = 4 @@ -26744,7 +26824,7 @@ icon_state = "asteroidfloor" }, /area/rnd/mixing) -"UU" = ( +"Vc" = ( /obj/structure/window/reinforced{ dir = 8 }, @@ -26753,7 +26833,7 @@ }, /turf/simulated/floor/asteroid/ash/rocky, /area/mine/unexplored) -"UV" = ( +"Vd" = ( /obj/structure/cable/green{ d1 = 1; d2 = 4; @@ -26761,7 +26841,7 @@ }, /turf/simulated/floor/asteroid/ash/rocky, /area/mine/unexplored) -"UW" = ( +"Ve" = ( /obj/structure/cable/green{ d1 = 4; d2 = 8; @@ -26769,7 +26849,7 @@ }, /turf/simulated/floor/asteroid/ash/rocky, /area/mine/unexplored) -"UX" = ( +"Vf" = ( /obj/structure/window/reinforced{ dir = 4 }, @@ -26780,7 +26860,7 @@ }, /turf/simulated/floor/asteroid/ash/rocky, /area/mine/unexplored) -"UY" = ( +"Vg" = ( /obj/structure/cable/green{ d1 = 2; d2 = 8; @@ -26798,11 +26878,11 @@ icon_state = "asteroidfloor" }, /area/rnd/mixing) -"UZ" = ( +"Vh" = ( /obj/machinery/light/small, /turf/simulated/floor/asteroid/ash/rocky, /area/rnd/mixing) -"Va" = ( +"Vi" = ( /obj/structure/cable/green{ d1 = 1; d2 = 2; @@ -26816,14 +26896,14 @@ icon_state = "asteroidfloor" }, /area/rnd/mixing) -"Vb" = ( +"Vj" = ( /obj/structure/window/reinforced{ icon_state = "rwindow"; dir = 8 }, /turf/simulated/floor/asteroid/ash/rocky, /area/mine/unexplored) -"Vc" = ( +"Vk" = ( /obj/structure/sign/securearea{ desc = "A warning sign which reads 'BOMB RANGE"; name = "BOMB RANGE"; @@ -26832,13 +26912,13 @@ }, /turf/simulated/floor/asteroid/ash/rocky, /area/mine/unexplored) -"Vd" = ( +"Vl" = ( /obj/structure/sign/securearea{ name = "\improper CAUTION: BOMB RANGE" }, /turf/simulated/wall/r_wall, /area/mine/unexplored) -"Ve" = ( +"Vm" = ( /obj/structure/cable/green{ d1 = 1; d2 = 2; @@ -26848,7 +26928,7 @@ icon_state = "asteroidplating" }, /area/mine/unexplored) -"Vf" = ( +"Vn" = ( /obj/structure/cable/green{ d1 = 1; d2 = 2; @@ -26866,40 +26946,40 @@ icon_state = "asteroidplating" }, /area/mine/unexplored) -"Vg" = ( +"Vo" = ( /turf/simulated/wall/r_wall, /area/maintenance/disposal) -"Vh" = ( +"Vp" = ( /turf/simulated/floor/plating, /area/maintenance/disposal) -"Vi" = ( +"Vq" = ( /obj/machinery/alarm{ dir = 1; pixel_y = -25 }, /turf/simulated/floor/plating, /area/maintenance/disposal) -"Vj" = ( +"Vr" = ( /obj/machinery/light/small/emergency{ dir = 1 }, /turf/simulated/floor/plating, /area/maintenance/disposal) -"Vk" = ( +"Vs" = ( /obj/machinery/door/airlock/engineering{ name = "Machinery Maintenance"; req_access = list(11) }, /turf/simulated/floor/plating, /area/maintenance/disposal) -"Vl" = ( +"Vt" = ( /turf/simulated/wall, /area/maintenance/disposal) -"Vm" = ( +"Vu" = ( /obj/machinery/crusher_base, /turf/simulated/floor/reinforced, /area/maintenance/disposal) -"Vn" = ( +"Vv" = ( /obj/structure/sign/securearea{ desc = "A warning sign which reads 'BOMB RANGE"; name = "KEEP CLEAR: MEDICAL EXOSUIT PARKING"; @@ -26907,7 +26987,7 @@ }, /turf/simulated/floor/asteroid/ash/rocky, /area/mine/unexplored) -"Vo" = ( +"Vw" = ( /obj/structure/ladder/up, /obj/item/device/radio/intercom{ dir = 0; @@ -26916,7 +26996,7 @@ }, /turf/simulated/floor/plating, /area/maintenance/disposal) -"Vp" = ( +"Vx" = ( /obj/machinery/door/firedoor, /obj/structure/grille, /obj/structure/window/reinforced{ @@ -26931,21 +27011,21 @@ }, /turf/simulated/floor/plating, /area/maintenance/disposal) -"Vq" = ( +"Vy" = ( /obj/random/junk, /turf/simulated/floor/reinforced{ roof_type = null }, /area/maintenance/disposal) -"Vr" = ( +"Vz" = ( /turf/simulated/floor/reinforced{ roof_type = null }, /area/maintenance/disposal) -"Vs" = ( +"VA" = ( /turf/simulated/wall/r_wall, /area/rnd/test_area) -"Vt" = ( +"VB" = ( /obj/machinery/power/apc{ dir = 8; name = "west bump"; @@ -26956,7 +27036,7 @@ icon_state = "asteroidfloor" }, /area/rnd/test_area) -"Vu" = ( +"VC" = ( /obj/item/modular_computer/telescreen/preset/trashcompactor{ pixel_x = -32 }, @@ -26971,14 +27051,14 @@ }, /turf/simulated/floor/plating, /area/maintenance/disposal) -"Vv" = ( +"VD" = ( /obj/machinery/light/small/emergency{ icon_state = "bulb1"; dir = 4 }, /turf/simulated/floor/plating, /area/maintenance/disposal) -"Vw" = ( +"VE" = ( /obj/machinery/door/firedoor, /obj/structure/grille, /obj/structure/window/reinforced, @@ -26990,12 +27070,12 @@ }, /turf/simulated/floor/plating, /area/maintenance/disposal) -"Vx" = ( +"VF" = ( /turf/simulated/floor/tiled/airless{ icon_state = "asteroidfloor" }, /area/rnd/test_area) -"Vy" = ( +"VG" = ( /obj/machinery/door/airlock/maintenance_hatch{ id_tag = "crusher"; name = "Compactor Access"; @@ -27003,24 +27083,24 @@ }, /turf/simulated/floor/plating, /area/maintenance/disposal) -"Vz" = ( +"VH" = ( /turf/simulated/floor/tiled/airless, /area/rnd/test_area) -"VA" = ( +"VI" = ( /obj/structure/sign/securearea{ name = "\improper CAUTION: TRASH COMPACTOR"; pixel_x = 0 }, /turf/simulated/wall/r_wall, /area/maintenance/disposal) -"VB" = ( +"VJ" = ( /obj/structure/window/reinforced{ dir = 5; health = 1e+007 }, /turf/simulated/floor/tiled/airless, /area/rnd/test_area) -"VC" = ( +"VK" = ( /obj/machinery/light/spot{ icon_state = "tube1"; dir = 8 @@ -27032,11 +27112,11 @@ }, /turf/simulated/floor/tiled/airless, /area/rnd/test_area) -"VD" = ( +"VL" = ( /obj/effect/floor_decal/industrial/warning/full, /turf/simulated/floor/tiled/airless, /area/rnd/test_area) -"VE" = ( +"VM" = ( /obj/machinery/light/spot{ icon_state = "tube1"; dir = 4 @@ -27048,7 +27128,7 @@ }, /turf/simulated/floor/tiled/airless, /area/rnd/test_area) -"VF" = ( +"VN" = ( /obj/machinery/light/spot, /obj/machinery/camera/network/research_outpost{ c_tag = "Research Sublevel - Toxins Testing Aft"; @@ -27057,6 +27137,31 @@ }, /turf/simulated/floor/tiled/airless, /area/rnd/test_area) +"VO" = ( +/obj/effect/floor_decal/industrial/warning/dust{ + icon_state = "warning_dust"; + dir = 8 + }, +/turf/simulated/floor/tiled/airless{ + icon_state = "asteroidfloor" + }, +/area/mine/unexplored) +"VP" = ( +/turf/simulated/floor/airless{ + icon_state = "asteroidplating" + }, +/area/mine/unexplored) +"VQ" = ( +/turf/simulated/floor/tiled/airless{ + icon_state = "asteroidfloor" + }, +/area/mine/unexplored) +"VR" = ( +/obj/structure/ladder/up, +/turf/simulated/floor/tiled/airless{ + icon_state = "asteroidfloor" + }, +/area/mine/unexplored) (1,1,1) = {" aa @@ -41620,7 +41725,7 @@ aa jL lq lh -Td +Tl lh lq jL @@ -42132,11 +42237,11 @@ aa aa aa jL -Sa +Si lh lh lh -Sa +Si jL ac ac @@ -42386,14 +42491,14 @@ aa aa aa aa -Qv -QY -RA -Sb -Sa -Sa -Sa -Sa +QD +Rg +RI +Sj +Si +Si +Si +Si jL ac ac @@ -42639,22 +42744,22 @@ ac ac ac ac -NH -NH -NH -NH -Qw -NH -NH -Sc -SG -SG -SG -TB +NP +NP +NP +NP +QE +NP +NP +Sk +SO +SO +SO +TJ jL ac ac -UJ +UR ac ac ac @@ -42896,25 +43001,25 @@ ac ac ac ac -NH -Ol -OS -PK -Qx -QZ -Rd -Sd -SH -SH -Tp -Se +NP +Ot +Pa +PS +QF +Rh +Rl +Sl +SP +SP +Tx +Sm ac ac -Uo -UK -UK -UK -UV +Uw +US +US +US +Vd mm ac ac @@ -43153,25 +43258,25 @@ aa ac ac ac -NH -Om -OT -PL -Qy -Ol -RB -Se -SI -Te -Tq -Se +NP +Ou +Pb +PT +QG +Ot +RJ +Sm +SQ +Tm +Ty +Sm ac ac -Up +Ux ac ac ac -UW +Ve ac ac ac @@ -43410,25 +43515,25 @@ aa ac ac aa -NH -On -OU -PM -Qz -Ra -RC -Sd -SJ -Tf -Tr -Se +NP +Ov +Pc +PU +QH +Ri +RK +Sl +SR +Tn +Tz +Sm ac -NH -Uq -NH +NP +Uy +NP aa ac -UW +Ve ac ac ac @@ -43636,12 +43741,12 @@ sk sw sw aa -tx -tx +ty +ty ac ac -tx -tx +ty +ty aa aa aa @@ -43667,27 +43772,27 @@ ac ac ac aa -NH -Oo -OV -PN -QA -Rb -RD -Sf -SK -Tg -SK -TC +NP +Ow +Pd +PV +QI +Rj +RL +Sn +SS +To +SS +TK ac -NH -Ur -NH +NP +Uz +NP aa ac -UW +Ve ac -Vc +Vk ac aa aa @@ -43893,13 +43998,13 @@ ac ac ac ac -ty +tz ac ac ac -ty +tz ac -ws +wt aa aa aa @@ -43924,27 +44029,27 @@ ac ac ac aa -NH -NH -OW -OW -NH -Rc -RE -Sg -SL -Th -Ts -NH -NH -NH -Us -NH -NH -US -UW -UZ -Vd +NP +NP +Pe +Pe +NP +Rk +RM +So +ST +Tp +TA +NP +NP +NP +UA +NP +NP +Va +Ve +Vh +Vl ac aa aa @@ -44156,7 +44261,7 @@ ac ac ac ac -wt +wu aa aa aa @@ -44170,36 +44275,36 @@ aa aa aa aa -Fv -Fv -Fv -Fv -Fv -Fv -Fv -Fv +FE +FE +FE +FE +FE +FE +FE +FE ac mm aa -NH -Op -OX -OX -QB -Rd -RF -Sh -SM -PN -Tt -NH -TQ -Ub -Ut -NH +NP +Ox +Pf +Pf +QJ +Rl +RN +Sp +SU +PV +TB +NP +TY +Uj +UB +NP ac ac -UW +Ve ac aa aa @@ -44407,13 +44512,13 @@ ac ac ac ac -tz +tA ac ac ac ac ac -wu +wv sk aa aa @@ -44427,36 +44532,36 @@ aa aa aa aa -Fv -Gf -GX -HT -IW -JK -KD -Fv -Fv -Fv -Fv -NH -Oq -OY -PO -QC -Re -RG -Si -SN -Ti -Tu -TD -TR -Uc -Uu -NH +FE +Gn +Hf +Ib +Je +JS +KL +FE +FE +FE +FE +NP +Oy +Pg +PW +QK +Rm +RO +Sq +SV +Tq +TC +TL +TZ +Uk +UC +NP ac ac -UW +Ve ac aa aa @@ -44663,10 +44768,10 @@ ac ac ac ac -sX -tx -tx -uK +sY +ty +ty +uL ac ac ac @@ -44684,36 +44789,36 @@ aa aa aa aa -Fv -Gg -GY -HU -IX -JL -KD -KD -KD -ML -Np -NH -Or -OZ -OZ -QB -Rf -RH -Sj -RG -Tj -Tv -NH -TS -Ud -Uv -NH +FE +Go +Hg +Ic +Jf +JT +KL +KL +KL +MT +Nx +NP +Oz +Ph +Ph +QJ +Rn +RP +Sr +RO +Tr +TD +NP +Ua +Ul +UD +NP ac ac -UW +Ve ac ac aa @@ -44921,9 +45026,16 @@ ac ac ac ac -tA -uf -uL +tB +ug +uM +ac +ac +ac +ac +ac +aa +aa ac ac ac @@ -44934,44 +45046,37 @@ aa aa aa aa -ac -ac -aa -aa -aa -aa -aa -Fv -Gh -GY -HU -IX -JM -KE -KE -KE -KE -Nq -NH -NH -NH -NH -NH -NH -NH -Sk -NH -NH -NH -NH -NH -Ue -NH -NH -NH -US -UW -UZ +FE +Gp +Hg +Ic +Jf +JU +KM +KM +KM +KM +Ny +NP +NP +NP +NP +NP +NP +NP +Ss +NP +NP +NP +NP +NP +Um +NP +NP +NP +Va +Ve +Vh jL aa aa @@ -44990,11 +45095,11 @@ aa aa aa aa -Vs -Vs -Vs -Vs -Vs +VA +VA +VA +VA +VA aa aa aa @@ -45188,46 +45293,46 @@ ac ac aa aa -aa -ac -ac -ac ac ac +zs +ym +ym +ym +ym +ym +ym +ym +FE +Gq +Hh +Id +Jg +JV +KL +Lz +KL +KL +KL +NQ +OA +OA +PX +QL +Ro +RQ +St +NQ aa -aa -aa -aa -Fv -Gi -GZ -HV -IY -JN -KD -Lr -KD -KD -KD -NI -Os -Os -PP -QD -Rg -RI -Sl -NI -aa -NH -TE -TT -Uf -Uw -NH +NP +TM +Ub +Un +UE +NP aa ac -UW +Ve ac aa aa @@ -45246,13 +45351,13 @@ aa aa aa aa -Vs -Vs -Vz -VB -Vz -Vs -Vs +VA +VA +VH +VJ +VH +VA +VA aa aa aa @@ -45444,47 +45549,47 @@ ac ac sw aa -aa -aa ac ac -zV -yE -yE -yE -yE -yE -yE -Fv -Gj -Ha -HW -IZ -JO -KF -Fv -Fv -Fv -Fv -NI -Os -Pa -Os -Os -Rh -RJ -Sm -NI +ac +zt +ym +AF +Bc +BN +CD +DG +EI +FE +Gr +Hi +Ie +Jh +JW +KN +FE +FE +FE +FE +NQ +OA +Pi +OA +OA +Rp +RR +Su +NQ aa -NH -TF -TU -Ug -Ux -NH +NP +TN +Uc +Uo +UF +NP aa ac -UW +Ve ac ac aa @@ -45502,15 +45607,15 @@ aa aa aa aa -Vs -Vs -Vz -Vz -VC -Vz -Vz -Vs -Vs +VA +VA +VH +VH +VK +VH +VH +VA +VA aa aa aa @@ -45704,44 +45809,44 @@ aa ac ac ac -ac -zW -yE -AU -BE -Cu -Dw -Ex -Fw -Gk -Hb -wy -xq -JP -yl -Ls -LZ -MM -Nr -NI -Ot -Pb -PQ -QE -Ri -RK -Sn -NI +zt +ym +AG +Bd +BO +CE +DH +AG +FF +Gs +Hj +wz +xr +JX +yq +LA +Mh +MU +Nz +NQ +OB +Pj +PY +QM +Rq +RS +Sv +NQ aa -NH -TG -TU -Uh -Uy -NH +NP +TO +Uc +Up +UG +NP ac ac -UW +Ve ac ac aa @@ -45758,17 +45863,17 @@ aa aa aa aa -Vs -Vs -Vz -Vz -Vz -Vz -Vz -Vz -Vz -Vs -Vs +VA +VA +VH +VH +VH +VH +VH +VH +VH +VA +VA aa aa aa @@ -45961,46 +46066,46 @@ ac ac ac ac -ac -zX -yE -AV -BF -Cv -Dx -Ey -Fx -wd -vB -wy -Ja -JQ -KG -Lt -Ma -MN -Ns -NJ -Ou -Pc -PR -Ou -Rj -RL -So -NI +zu +ym +AF +Be +Be +CF +DI +DI +FG +we +vC +wz +Ji +JY +KO +LB +Mi +MV +NA +NR +OC +Pk +PZ +OC +Rr +RT +Sw +NQ aa -NH -TH -TV -Ui -Uz -NH -UO -US +NP +TP +Ud +Uq +UH +NP UW -UZ -Vd +Va +Ve +Vh +Vl aa aa aa @@ -46014,19 +46119,19 @@ aa aa aa aa -Vs -Vs -Vz -Vz -Vz -Vz -Vz -Vz -Vz -Vz -Vz -Vs -Vs +VA +VA +VH +VH +VH +VH +VH +VH +VH +VH +VH +VA +VA aa aa aa @@ -46215,47 +46320,47 @@ ac ac ac ac -ac -ac -yE -yE -yE -yE -AW -AW -Cw -Dy -Ez -Fy -wd -Hc -HX -Jb -JR -KH -Ls -Mb -MO -Nt -NI -Ov -Ov -PS -Ov -Rk -Ov -Sp -NI +xP +ym +ym +ym +ym +ym +Bf +BP +CG +DJ +EJ +BU +we +Hk +If +Jj +JZ +KP +LA +Mj +MW +NB +NQ +OD +OD +Qa +OD +Rs +OD +Sx +NQ aa -NH -TI -TU -TU -UA -NH +NP +TQ +Uc +Uc +UI +NP ac ac -UW +Ve ac aa ac @@ -46270,21 +46375,21 @@ aa aa aa aa -Vs -Vs -Vz -Vz -Vz -Vz -Vz -Vz -Vz -Vz -Vz -Vz -Vz -Vs -Vs +VA +VA +VH +VH +VH +VH +VH +VH +VH +VH +VH +VH +VH +VA +VA aa aa aa @@ -46472,47 +46577,47 @@ ac ac ac ac -ac -yh -yF -zn -zY -yE -AX -BG -Cx -Dz -EA -BL -wd -wD -xc -yH -yH -yH -yH -yH -yH -yH -NI -Ow -Ox -PT -QF -Rl -RM -RM -NI +xQ +yn +yJ +zv +Ad +AH +Bg +BQ +CH +DK +EK +BU +we +wE +xd +yM +yM +yM +yM +yM +yM +yM +NQ +OE +OF +Qb +QN +Rt +RU +RU +NQ aa -NH -TJ -TU -TU -UB -UL +NP +TR +Uc +Uc +UJ +UT ac ac -UW +Ve ac ac ac @@ -46526,23 +46631,23 @@ ac ac ac aa -Vs -Vs -Vx -Vz -Vz -Vz -Vz -Vz -Vz -Vz -Vz -Vz -Vz -Vz -Vz -Vs -Vs +VA +VA +VF +VH +VH +VH +VH +VH +VH +VH +VH +VH +VH +VH +VH +VA +VA aa aa aa @@ -46729,47 +46834,47 @@ ac ac ac ac -ac -yi -yG -zo -zZ -AA -AY -BH -Cy -DA -EB -BL -Gl -wA -HY -yH -JS -JS -JS -JS -MP -yH -NI -Ox -Pd -PU -QF -Rm -RN -RM -NI +xR +yo +yK +zw +Ae +AI +Bh +AG +CI +DL +EL +BU +Gt +wB +Ig +yM +Ka +Ka +Ka +Ka +MX +yM +NQ +OF +Pl +Qc +QN +Ru +RV +RU +NQ aa -NH -TK -TU -Uj -UB -UM +NP +TS +Uc +Ur +UJ +UU rB rB -UX +Vf rB ac ac @@ -46783,23 +46888,23 @@ ac ac ac ac -Vs -Vx -Vz -Vz -Vz -Vz -Vz -Vz -Vz -Vz -Vz -Vz -Vz -Vz -Vz -Vz -Vs +VA +VF +VH +VH +VH +VH +VH +VH +VH +VH +VH +VH +VH +VH +VH +VH +VA aa aa aa @@ -46986,77 +47091,77 @@ ac ac ac ac -ac -yj -yF -zp -Aa -AB -AZ -BI -Cz -DB -EC -BL -Gm -wy -wY -yH -JS -JS -Lu -JS -JS -yH -NI -NI -NI -NI -NI -NI -NI -NI -NI +xS +yn +yL +zx +Af +AJ +Bi +BR +CJ +DM +DH +BU +Gu +wz +wZ +yM +Ka +Ka +LC +Ka +Ka +yM +NQ +NQ +NQ +NQ +NQ +NQ +NQ +NQ +NQ aa -NH -TL -TW -Uk -UC -UN -UP -UT -UY -Va -Ve -Vf -Vf -Vf -Vf -Vf -Vf -Vf -Vf -Vf -Vf -Ve -Vt -Vx -Vz -Vz -Vz -Vz -Vz -Vz -VD +NP +TT +Ue +Us +UK +UV +UX +Vb +Vg +Vi +Vm +Vn +Vn +Vn +Vn +Vn +Vn +Vn +Vn +Vn +Vn +Vm VB -Vz -Vz -Vz -Vz VF -VB -Vs +VH +VH +VH +VH +VH +VH +VL +VJ +VH +VH +VH +VH +VN +VJ +VA aa aa aa @@ -47232,39 +47337,39 @@ aa aa aa aa +sF ac ac ac ac ac +sF ac ac ac ac -ac -ac -ac -ac -yE -yE -yE -yE -Ba -BJ -CA -DC -ED -BL -wd -Hd -wY -yH -JS -JS -JS -JS -JS -yH +xP +ym +ym +ym +ym +ym +Bj +BS +CK +DN +EM +BU +we +Hl +wZ +yM +Ka +Ka +Ka +Ka +Ka +yM aa aa aa @@ -47275,16 +47380,16 @@ aa aa aa aa -NH -NH -TX -NH -NH -NH -UQ -UU +NP +NP +Uf +NP +NP +NP +UY +Vc rS -Vb +Vj ac ac ac @@ -47296,24 +47401,24 @@ ac ac ac ac -Vn -Vs -Vx -Vz -Vz -Vz -Vz -Vz -Vz -Vz -Vz -Vz -Vz -Vz -Vz -Vz -Vz -Vs +Vv +VA +VF +VH +VH +VH +VH +VH +VH +VH +VH +VH +VH +VH +VH +VH +VH +VA aa aa aa @@ -47488,14 +47593,14 @@ aa aa aa aa -ac -sF -sY -tB -tB -tB -vp -sF +aa +sG +sZ +tC +tC +tC +vq +sG ac ac ac @@ -47505,23 +47610,23 @@ ac ac ac ac -yE -Bb -BK -CB -DD -EE -BL -Gn -He -wY -yH -JS -JS -Lv -JS -JS -yH +ym +Bk +BT +CL +DO +EN +BU +Gv +Hm +wZ +yM +Ka +Ka +LD +Ka +Ka +yM aa aa aa @@ -47533,12 +47638,12 @@ aa aa aa aa -NH -TY -Ul -UD -UD -UR +NP +Ug +Ut +UL +UL +UZ aa aa ac @@ -47554,23 +47659,23 @@ ac ac aa aa -Vs -Vs -Vz -Vz -Vz -Vz -Vz -Vz -Vz -Vz -Vz -Vz -Vz -Vz -Vz -Vs -Vs +VA +VA +VH +VH +VH +VH +VH +VH +VH +VH +VH +VH +VH +VH +VH +VA +VA aa aa aa @@ -47744,41 +47849,41 @@ aa aa aa aa -ac -ac -sF -sZ -tC -ug -uM -vq -sF -vX -wv -wv -wv -wv -yk -yH -yH -yH -yE -Bc -BL -CC -DE -BL -Fz -Go -Hf -wY -yH -JS -JS -JS -JS -JS -yH +aa +aa +sG +ta +tD +uh +uN +vr +sG +vY +ww +ww +ww +ww +yp +yM +yM +yM +ym +Bl +BU +CM +DP +BU +FH +Gw +Hn +wZ +yM +Ka +Ka +Ka +Ka +Ka +yM aa aa aa @@ -47808,25 +47913,25 @@ ac ac ac ac +ac +ac aa aa -aa -aa -Vs -Vs -Vz -Vz -Vz -Vz -Vz -Vz -Vz -Vz -Vz -Vz -Vz -Vs -Vs +VA +VA +VH +VH +VH +VH +VH +VH +VH +VH +VH +VH +VH +VA +VA aa aa aa @@ -48001,88 +48106,88 @@ aa aa aa aa +aa +aa +sG +tb +tE +tE +uO +vr +sG +vZ +wx +wU +xr +wU +yq +wU +zy +Ag +yq +Bm +yq +wU +DQ +EO +FI +Gx +Hm +Ih +yM +yM +yM +yM +yM +yM +yM +yM +yM +yM +yM +yM +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ac +ac ac ac -sF -ta -tD -tD -uN -vq -sF -vY -ww -wT -xq -wT -yl -wT -zq -Ab -yl -Bd -yl -wT -DF -EF -FA -Gp -He -HZ -yH -yH -yH -yH -yH -yH -yH -yH -yH -yH -yH -yH aa aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -Vs -Vs -Vz -Vz -Vz -Vz -Vz -Vz -Vz -Vz -Vz -Vs -Vs +VA +VA +VH +VH +VH +VH +VH +VH +VH +VH +VH +VA +VA aa aa aa @@ -48258,46 +48363,46 @@ aa aa aa aa -ac -ac -sF -tb -tE -uh -uO -vr -sF -vZ -wx -wU +aa +aa +sG +tc +tF +ui +uP +vs +sG +wa +wy +wV +xs +wV +wV +wV +zz +wV +wV +Bn +wV +wV +DR +EP +FJ +wc +Ho +Ii xr -wU -wU -wU -zr -wU -wU -Be -wU -wU -DG -EG -FB -wb -Hg -Ia -xq -JT -yl -yl -yl -MQ -FA -NK -Oy -Pe -PV -yH +Kb +yq +yq +yq +MY +FI +NS +OG +Pm +Qd +yM aa aa aa @@ -48322,23 +48427,23 @@ aa aa aa aa +ac +ac +ac +ac +ac aa -aa -aa -aa -aa -aa -Vs -Vs -Vz -Vz -Vz -Vz -Vz -Vz -Vz -Vs -Vs +VA +VA +VH +VH +VH +VH +VH +VH +VH +VA +VA aa aa aa @@ -48516,45 +48621,45 @@ aa aa aa aa -ac -sF -tc -tc -tc -uP -tc -sF -wa -wy -wV +aa +sG +td +td +td +uQ +td +sG +wb +wz +wW +xt +vD +yr +yN +zA +vD +AK +vD +BV +vD +yr +EQ +FI +we +Hp +Ij xs -vC -ym -yI -zs -vC -AC -vC -BM -vC -ym -EH -FA -wd -Hh -Ib -xr -wU -KI -wU -Mc -MR -Nu -NL -Oz -Pf -PW -yH +wV +KQ +wV +Mk +MZ +NC +NT +OH +Pn +Qe +yM aa aa aa @@ -48580,21 +48685,21 @@ aa aa aa aa +ac +ac +ac +ac aa aa -aa -aa -aa -aa -Vs -Vs -Vz -Vz -VE -Vz -Vz -Vs -Vs +VA +VA +VH +VH +VM +VH +VH +VA +VA aa aa aa @@ -48774,44 +48879,44 @@ aa aa aa aa -sF -td -tF -ui -uQ -vs -vN -wb -wz -wW +sG +te +tG +uj +uR +vt +vO +wc +wA +wX +xu +xu +xu +xu +xu +xu +xu +xu +BW +BW +BW +BW +yM +Gy +Hq +Ik xt -xt -xt -xt -xt -xt -xt -xt -BN -BN -BN -BN -yH -Gq -Hi -Ic -xs -vS -KJ -AC -Md -MS -FA -NM -OA -vB -PX -yH +vT +KR +AK +Ml +Na +FI +NU +OI +vC +Qf +yM aa aa aa @@ -48838,26 +48943,26 @@ aa aa aa aa +ac +ac +ac +ac +ac +aa +VA +VA +VH +VJ +VH +VA +VA aa aa aa aa -aa -aa -Vs -Vs -Vz -VB -Vz -Vs -Vs -aa -aa -aa -aa -aa -aa -aa +ac +ac +ac aa aa aa @@ -49031,44 +49136,44 @@ aa aa aa aa -sF -te -tG -uj -uR -vt -sF -wc -wy -wX -xu -xO -yn -yJ -zt -Ac -AD -Bf -BO -CD -DH -EI +sG +tf +tH +uk +uS +vu +sG +wd +wz +wY +xv +xT +ys +yO +zB +Ah +AL +Bo +BX +CN +DS +ER jB qH qH -Id +Il jB jB -ET -ET -Me -ET -ET -NN -OB -Pg -OB -yH +Fc +Fc +Mm +Fc +Fc +NV +OJ +Po +OJ +yM aa aa aa @@ -49095,27 +49200,27 @@ aa aa aa aa +ac +ac +ac +ac +ac +ac +aa +VA +VA +VA +VA +VA aa aa aa -aa -aa -aa -aa -Vs -Vs -Vs -Vs -Vs -aa -aa -aa -aa -aa -aa -aa -aa -aa +ac +ac +ac +ac +ac +ac aa aa aa @@ -49288,61 +49393,44 @@ aa aa aa aa -sF -tf -tH -uk -uS -vu -sF -wd -wy -wY -xv -xP -yo -yK -zu -Ad -yL -Bg -BP -CE -DI -EJ +sG +tg +tI +ul +uT +vv +sG +we +wz +wZ +xw +xU +yt +yP +zC +Ai +yQ +Bp +BY +CO +DT +ES jB -Gr +Gz kz -Ie +Im jB jB -ET -Lw -Mf -MT -ET -NO -OC -Ph -OC -yH -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa +Fc +LE +Mn +Nb +Fc +NW +OK +Pp +OK +yM aa aa aa @@ -49374,6 +49462,23 @@ aa aa aa aa +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac aa aa aa @@ -49545,64 +49650,47 @@ aa aa aa aa -sF -tg -tI -ul -uT -vv -sF -we -wA -wZ -xt -xQ -yp -yL -zv -Ae -AE -Af -BQ -CF -DJ -EK +sG +th +tJ +um +uU +vw +sG +wf +wB +xa +xu +xV +yu +yQ +zD +Aj +AM +Ak +BZ +CP +DU +ET jB -Gs +GA kz -If +In qH -JU -ET -Lx -Mg -MU -ET -ET -ET -ET -ET -ET -ET -ET -ET -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa +Kc +Fc +LF +Mo +Nc +Fc +Fc +Fc +Fc +Fc +Fc +Fc +Fc +Fc aa aa aa @@ -49632,6 +49720,23 @@ aa aa aa aa +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac aa aa aa @@ -49802,59 +49907,47 @@ aa aa aa aa -sF -th -tJ -um -uU -vw -sF -wf -wB -xa -xw -xR -yq -yM -zw -xR -AF -Bh -BN -BN -BN -BN +sG +ti +tK +un +uV +vx +sG +wg +wC +xb +xx +xW +yv +yR +zE +xW +AN +Bq +BW +BW +BW +BW jB -Gt -Hj -Ig +GB +Hr +Io qH -Hl -ET -Ly -Mh -MV -ET -NP -OD -Pi -PY -QG -Rn -RO -ET -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa +Ht +Fc +LG +Mp +Nd +Fc +NX +OL +Pq +Qg +QO +Rv +RW +Fc aa aa aa @@ -49890,6 +49983,18 @@ aa aa aa aa +ac +ac +ac +ac +jL +VO +VP +VO +VP +jL +ac +ac aa aa aa @@ -50059,59 +50164,47 @@ aa aa aa aa -sF -ti -tK -un -uV -vx -vO -wc -wy -wX -xt -xS -xV -yN -yN -Af -Ad -Bi -BR -CG -DK -EL +sG +tj +tL +uo +uW +vy +vP +wd +wz +wY +xu +xX +ya +yS +yS +Ak +Ai +Br +Ca +CQ +DV +EU jB qH qH -Ih +Ip qH -Hl -ET -ET -Mi -ET -ET -NQ -OE -Pj -PZ -Iq -Iq -RP -ET -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa +Ht +Fc +Fc +Mq +Fc +Fc +NY +OM +Pr +Qh +Iy +Iy +RX +Fc aa aa aa @@ -50148,6 +50241,18 @@ aa aa aa aa +ac +ac +ac +jL +VP +VQ +VP +VQ +jL +ac +ac +ac aa aa aa @@ -50316,58 +50421,47 @@ aa rZ rZ rZ -sF -sF -sF -sF -uW -sF -sF -wg -wC -xb -xx -xT -xT -yO -zx -Ag -AG -Bj -BS -CH -DL -EM +sG +sG +sG +sG +uX +sG +sG +wh +wD +xc +xy +xY +xY +yT +zF +Al +AO +Bs +Cb +CR +DW +EV jB -CM -DQ -Gw +CW +Eb +GE qH -Hl -KK -Lz -Mj -MW -Nv -NR -OE -Pk -Qa -Iq -Iq -Iq -ET -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa +Ht +KS +LH +Mr +Ne +ND +NZ +OM +Ps +Qi +Iy +Iy +Iy +Fc aa aa aa @@ -50405,6 +50499,17 @@ aa aa aa aa +ac +ac +jL +VP +VQ +VP +VR +jL +ac +ac +ac aa aa aa @@ -50575,55 +50680,45 @@ sl sx sx sx -tL -uo -uX -vy -vP -wc -wy -wX -xy -xU -yr -yP -zy -xV -Ad -Af -BT -CI -DM -EN +tM +up +uY +vz +vQ +wd +wz +wY +xz +xZ +yw +yU +zG +ya +Ai +Ak +Cc +CS +DX +EW jB -CN +CX qH qH qH -Hl -KL -Jg -Mk -Jg -Jg -Jg -OE -KQ -ET -ET -ET -ET -ET -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa +Ht +KT +Jo +Ms +Jo +Jo +Jo +OM +KY +Fc +Fc +Fc +Fc +Fc aa aa aa @@ -50662,6 +50757,16 @@ aa aa aa aa +ac +jL +jL +VP +VQ +VQ +jL +ac +ac +ac aa aa aa @@ -50830,56 +50935,47 @@ rZ sa sm sy -sG -tj -tL -up -uY -vz -vQ -wd -wD -xc -xy -xV -ys -yQ -yJ -xV -Ad -Bk -BU -BU -BU -BU +sH +tk +tM +uq +uZ +vA +vR +we +wE +xd +xz +ya +yx +yV +yO +ya +Ai +Bt +Cd +Cd +Cd +Cd jB -CN +CX qH -Hl -Hl -Hl -KM -Jg -Mk -Jg -Jg -Jg -OE -Pl -Qb -QG -Rn -RO -ET -aa -aa -aa -aa -aa -aa -aa -aa -aa +Ht +Ht +Ht +KU +Jo +Ms +Jo +Jo +Jo +OM +Pt +Qj +QO +Rv +RW +Fc aa aa aa @@ -50918,6 +51014,15 @@ aa aa aa aa +ac +ac +jL +jL +jL +jL +jL +ac +ac aa aa aa @@ -51087,54 +51192,47 @@ rZ sb sn sz -sH -tk -tM -uq -uZ -vA -vR -wh -wE -wX -xy -xV -yt -yR -zz -Ah -Ad -Bl -BV -CJ -DN -EO +sI +tl +tN +ur +va +vB +vS +wi +wF +wY +xz +ya +yy +yW +zH +Am +Ai +Bu +Ce +CT +DY +EX jB -Gu +GC qH -Ii -Jc -JV -KN -Jg -Ml -MX -MX -Jg -OE -Pj -Qc Iq +Jk +Kd +KV +Jo Mt -RQ -ET -aa -aa -aa -aa -aa -aa -aa +Nf +Nf +Jo +OM +Pr +Qk +Iy +MB +RY +Fc aa aa aa @@ -51174,6 +51272,13 @@ aa aa aa aa +ac +ac +ac +ac +ac +ac +ac aa aa aa @@ -51347,49 +51452,44 @@ rZ rZ rZ rZ -ur -va -vB -vB -wi -va -wY -xy -xW -xV -yS -zA -xV -yL -Bm -BW -CK -DO -EP +us +vb +vC +vC +wj +vb +wZ +xz +yb +ya +yX +zI +ya +yQ +Bv +Cf +CU +DZ +EY jB -CN +CX qH -Ij -Jd -JW -KN -Jg -Mm -MY -Nw -NS -OE -Pm -Qd -Iq -Iq -Iq -ET -aa -aa -aa -aa -aa +Ir +Jl +Ke +KV +Jo +Mu +Ng +NE +Oa +OM +Pu +Ql +Iy +Iy +Iy +Fc aa aa aa @@ -51430,6 +51530,11 @@ aa aa aa aa +ac +ac +ac +ac +ac aa aa aa @@ -51603,48 +51708,45 @@ aa aa aa aa -tN -us -vb -vC -vS -vC -wF -xd -xz -xX -yu -yT -zB -Ai -AH -Bn -BX -CL -DP -EQ +tO +ut +vc +vD +vT +vD +wG +xe +xA +yc +yz +yY +zJ +An +AP +Bw +Cg +CV +Ea +EZ jB -Gv +GD qH -Ik -Je -JX -KN -Jg -Mn -MZ -Nx -Jg -OE -Pn -ET -ET -ET -ET -ET -aa -aa -aa +Is +Jm +Kf +KV +Jo +Mv +Nh +NF +Jo +OM +Pv +Fc +Fc +Fc +Fc +Fc aa aa aa @@ -51686,6 +51788,9 @@ aa aa aa aa +ac +ac +ac aa aa aa @@ -51860,45 +51965,45 @@ aa aa aa aa -tN -ut -vc -ut -vT -vT -wG -vT -xt -xt -xt -xt -xt -xt -xt -xt +tO +uu +vd +uu +vU +vU +wH +vU +xu +xu +xu +xu +xu +xu +xu +xu jB jB jB jB jB -CN +CX qH -Hl -Hl -Hl -KO -Jg -Mo -Na -Na -Jg -OE -Pl -Qe -QG -Rn -RO -ET +Ht +Ht +Ht +KW +Jo +Mw +Ni +Ni +Jo +OM +Pt +Qm +QO +Rv +RW +Fc aa aa aa @@ -52117,16 +52222,16 @@ aa aa aa aa -tN -uu -vd -vD -vT -wj -wH -xe -xA -vT +tO +uv +ve +vE +vU +wk +wI +xf +xB +vU aa aa aa @@ -52134,28 +52239,28 @@ aa aa aa jB -CM -DQ -DQ -DQ -Gw +CW +Eb +Eb +Eb +GE qH -Il -Jf -JY -KP -Jg -Mp -Nb -Nb -NT -OE -Pj -Qf -Iq -Iq -RR -ET +It +Jn +Kg +KX +Jo +Mx +Nj +Nj +Ob +OM +Pr +Qn +Iy +Iy +RZ +Fc aa aa aa @@ -52374,16 +52479,16 @@ aa aa aa aa -tN -uv -ve -ve -vT -wk -wI -xf -xB -vT +tO +uw +vf +vf +vU +wl +wJ +xg +xC +vU aa aa aa @@ -52391,28 +52496,28 @@ aa aa aa jB -CN +CX jB jB jB jB qH -Im -Jg -Jg -Jg -Jg -Mq -Jg -Jg -Jg -OE -Po -Qg -Iq -Iq -Iq -ET +Iu +Jo +Jo +Jo +Jo +My +Jo +Jo +Jo +OM +Pw +Qo +Iy +Iy +Iy +Fc aa aa aa @@ -52631,16 +52736,16 @@ aa aa aa aa -tN -uw -vf -vE -vT -wl -wJ -wJ -xC -vT +tO +ux +vg +vF +vU +wm +wK +wK +xD +vU aa aa aa @@ -52648,28 +52753,28 @@ jB jB jB jB -CN +CX jB -ER -FC -FD -Hk -In -Jh -Jh -Jh -LA -Mr -Jh -Jh -Jh -OF -Jg -ET -ET -ET -ET -ET +Fa +FK +FL +Hs +Iv +Jp +Jp +Jp +LI +Mz +Jp +Jp +Jp +ON +Jo +Fc +Fc +Fc +Fc +Fc aa aa aa @@ -52888,41 +52993,41 @@ aa aa aa aa -tN -tN -tN -tN -vT -wm -wK -xg -wm -vT +tO +tO +tO +tO +vU +wn +wL +xh +wn +vU aa aa aa jB -AI -wS -BY -CO +AQ +wT +Ch +CY jB -ES -FD -FD -Hl -Io -Ji -JZ -KQ -LB -Ji -JZ -Ny -NU -Ji -Pp -ET +Fb +FL +FL +Ht +Iw +Jq +Kh +KY +LJ +Jq +Kh +NG +Oc +Jq +Px +Fc aa aa aa @@ -53149,37 +53254,37 @@ aa aa aa aa -vT -vT -vT -vT -vT -vT +vU +vU +vU +vU +vU +vU aa aa aa jB -AJ -Bo +AR +Bx qH -CP +CZ jB -ER -FE -FD -Hl -Ip -Jj -Ka -ET -LC -Ms -Nc -ET -NV -OG -Pq -ET +Fa +FM +FL +Ht +Ix +Jr +Ki +Fc +LK +MA +Nk +Fc +Od +OO +Py +Fc aa aa aa @@ -53416,27 +53521,27 @@ aa aa aa jB -AK -Bp -BZ -CQ +AS +By +Ci +Da jB -ET -ET -ET -ET -Iq -Iq -Kb -ET -Iq -Iq -Kb -ET -Iq -Iq -Kb -ET +Fc +Fc +Fc +Fc +Iy +Iy +Kj +Fc +Iy +Iy +Kj +Fc +Iy +Iy +Kj +Fc aa aa aa @@ -53681,19 +53786,19 @@ jB aa aa aa -ET -Iq -Iq -Kc -ET -Iq -Mt -Kc -ET -Iq -Iq -Kc -ET +Fc +Iy +Iy +Kk +Fc +Iy +MB +Kk +Fc +Iy +Iy +Kk +Fc aa aa aa @@ -53932,25 +54037,25 @@ aa aa aa jB -Ca -CR +Cj +Db jB aa aa aa -ET -Iq -Jk -Kd -ET -Iq -Mu -Kd -ET -Iq -OH -Kd -ET +Fc +Iy +Js +Kl +Fc +Iy +MC +Kl +Fc +Iy +OP +Kl +Fc aa aa aa @@ -54189,25 +54294,25 @@ aa aa aa jB -Ca -CS +Cj +Dc jB aa aa aa -ET -ET -ET -ET -ET -ET -ET -ET -ET -ET -ET -ET -ET +Fc +Fc +Fc +Fc +Fc +Fc +Fc +Fc +Fc +Fc +Fc +Fc +Fc aa aa aa @@ -54447,7 +54552,7 @@ aa aa jB jB -CT +Dd jB jB aa @@ -54704,7 +54809,7 @@ aa aa aa jB -CU +De qI jB aa @@ -54961,8 +55066,8 @@ ac ac ac jB -CV -DR +Df +Ec jB aa aa @@ -55201,7 +55306,7 @@ ac ac ac pD -tO +tP qM ac ac @@ -55218,7 +55323,7 @@ ac ac ac jB -CW +Dg jB jB aa @@ -55457,8 +55562,8 @@ rk rk rk rk -tl -tP +tm +tQ qN rk rk @@ -55474,9 +55579,9 @@ rk rk rk rk -Cb -CX -DS +Ck +Dh +Ed aa aa aa @@ -55776,10 +55881,10 @@ aa aa aa aa -Vg -Vg -Vg -Vg +Vo +Vo +Vo +Vo aa aa aa @@ -56031,13 +56136,13 @@ aa aa aa aa -Vg -Vg -Vg Vo -Vu -Vg -Vg +Vo +Vo +Vw +VC +Vo +Vo aa aa aa @@ -56288,13 +56393,13 @@ aa aa aa aa -Vg -Vh -Vk -Vh -Vv -Vh -Vg +Vo +Vp +Vs +Vp +VD +Vp +Vo aa aa aa @@ -56545,13 +56650,13 @@ aa aa aa aa -Vg -Vi -Vl -Vp -Vw -Vy -Vg +Vo +Vq +Vt +Vx +VE +VG +Vo aa aa aa @@ -56802,13 +56907,13 @@ aa aa aa aa -Vg -Vj -Vm -Vq +Vo Vr -Vq -VA +Vu +Vy +Vz +Vy +VI aa aa aa @@ -57059,13 +57164,13 @@ aa aa aa aa -Vg -Vh -Vm -Vr -Vq -Vr -Vg +Vo +Vp +Vu +Vz +Vy +Vz +Vo aa aa aa @@ -57316,13 +57421,13 @@ aa aa aa aa -Vg -Vh -Vm -Vq -Vr -Vr -VA +Vo +Vp +Vu +Vy +Vz +Vz +VI aa aa aa @@ -57573,13 +57678,13 @@ aa aa aa aa -Vg -Vg -Vg -Vg -Vg -Vg -Vg +Vo +Vo +Vo +Vo +Vo +Vo +Vo aa aa aa @@ -59329,19 +59434,19 @@ aa aa aa aa -vU -Bw -Ch -Dh -yw -Bw -Ch -Dh -yw -Bw -Ch -Dh -vU +vV +BF +Cq +Dr +yB +BF +Cq +Dr +yB +BF +Cq +Dr +vV ac aa aa @@ -59586,19 +59691,19 @@ aa aa aa aa -vU -CY -DT -EU -yw -CY -Hm -EU -yw -CY -KR -EU -vU +vV +Di +Ee +Fd +yB +Di +Hu +Fd +yB +Di +KZ +Fd +vV ac ac aa @@ -59843,19 +59948,19 @@ aa aa aa aa -vU -CZ -zh -EV -yw -CZ -zh -EV -yw -CZ -zh -EV -vU +vV +Dj +zm +Fe +yB +Dj +zm +Fe +yB +Dj +zm +Fe +vV ac ac aa @@ -60100,19 +60205,19 @@ aa aa aa aa -vU -Da -DU -EW -yw -Da -DU -EW -yw -Da -DU -EW -vU +vV +Dk +Ef +Ff +yB +Dk +Ef +Ff +yB +Dk +Ef +Ff +vV ac ac ac @@ -60355,22 +60460,22 @@ aa aa aa aa -vU -vU -vU -Db -DV -Db -yw -Db -Hn -Db -yw -Db -KS -Db -vU -vU +vV +vV +vV +Dl +Eg +Dl +yB +Dl +Hv +Dl +yB +Dl +La +Dl +vV +vV ac ac aa @@ -60608,26 +60713,26 @@ kj jL kj kj -vU -vU -vU -vU -vU -Bq -Cc -Dc -DW -zh -FF -zh -DW -zh -Jl -zh -DW -zh -zh -Mx +vV +vV +vV +vV +vV +Bz +Cl +Dm +Eh +zm +FN +zm +Eh +zm +Jt +zm +Eh +zm +zm +MF ac ac ac @@ -60862,29 +60967,29 @@ aa kj kj af -xh +xi af jL -vU -yU -zC -Aj -AL -Br -Cd -Dd -DW -EX -FG -FG -Ho -Ir -Jm -Ke -KT -LD -Mv -My +vV +yZ +zK +Ao +AT +BA +Cm +Dn +Eh +Fg +FO +FO +Hw +Iz +Ju +Km +Lb +LL +MD +MG ac ac ac @@ -61120,28 +61225,28 @@ kj jL af af -xD -xY -yv -yV -zD -Ak -AM -Bs -Ce -De -DX -EY -Bt -Gx -Hp -Is -zh -Kf -KU -LE -LE -My +xE +yd +yA +za +zL +Ap +AU +BB +Cn +Do +Ei +Fh +BC +GF +Hx +IA +zm +Kn +Lc +LM +LM +MG ac ac ac @@ -61376,29 +61481,29 @@ aa kj kj ac -xi +xj af jL -vU -yW -zE -Al -AN -Bt -Bt -Bt -DY -EZ -FH -Gy -Ch -Ch -Dh -vU -KV -LF -Mw -Mz +vV +zb +zM +Aq +AV +BC +BC +BC +Ej +Fi +FP +GG +Cq +Cq +Dr +vV +Ld +LN +ME +MH ac ac ac @@ -61636,26 +61741,26 @@ kj jL kj kj -vU -yX -zF -Am -AL -Bu -Cf -Df -DZ -Fa -vU -Gz -Hq -It -Jn -vU -Bw -Dh -vU -vU +vV +zc +zN +Ar +AT +BD +Co +Dp +Ek +Fj +vV +GH +Hy +IB +Jv +vV +BF +Dr +vV +vV ac ac ac @@ -61887,31 +61992,31 @@ qi ac aa aa -vU -vU -vU -vU -vU -vU -vU -yY -zG -An -yw -Bv -Cg -Dg -Ea -Fb -FI -GA -zh -zh -zh -Kg -KW -LG -vU +vV +vV +vV +vV +vV +vV +vV +zd +zO +As +yB +BE +Cp +Dq +El +Fk +FQ +GI +zm +zm +zm +Ko +Le +LO +vV ac ac ac @@ -62144,31 +62249,31 @@ qi ac aa aa -vU -wn -wL -xj -xE -xZ -yw -yZ -zH -Ao -yw -Bw -Ch -Dh -yw -Bw -FJ -GB -Hr -Hr -zh -Kh -KX -LH -Mx +vV +wo +wM +xk +xF +ye +yB +ze +zP +At +yB +BF +Cq +Dr +yB +BF +FR +GJ +Hz +Hz +zm +Kp +Lf +LP +MF ac ac ac @@ -62401,31 +62506,31 @@ qi ac aa aa -vU -wo -wL -wL -wL -ya -yw -za -zI -Ap -AL -Bx -Ci -Di -yw -Fc -FK -Cd -Hs -Iu -zh -Ki -zh -zh -My +vV +wp +wM +wM +wM +yf +yB +zf +zQ +Au +AT +BG +Cr +Ds +yB +Fl +FS +Cm +HA +IC +zm +Kq +zm +zm +MG ac ac ac @@ -62658,31 +62763,31 @@ qi ac aa aa -vU -wn -wL -xk -xF -yb -yx -zb -zJ -Aq -AO -Bs -Ce -Dj -Eb -Fd -FL -GC -Ht -Iv -Jo -Kj -zh -zh -My +vV +wo +wM +xl +xG +yg +yC +zg +zR +Av +AW +BB +Cn +Dt +Em +Fm +FT +GK +HB +ID +Jw +Kr +zm +zm +MG ac ac ac @@ -62915,31 +63020,31 @@ qi ac ac aa -vU -vU -vU -xl -xG -wL -yw -zc -zK -Ar -vU -By -Cj -Dk -Ec -Fe -FM -GD -Hu -Hr -Jp -Kg -KY -LI -Mz +vV +vV +vV +xm +xH +wM +yB +zh +zS +Aw +vV +BH +Cs +Du +En +Fn +FU +GL +HC +Hz +Jx +Ko +Lg +LQ +MH ac ac ac @@ -63174,41 +63279,41 @@ ac aa aa aa -vU -xm -xH -xm -vU -vU -zL -vU -vU -Bw -Ch -Dh -vU -vU -vU -GE -zh -zh -Jp -Kh -KZ -LJ -vU +vV +xn +xI +xn +vV +vV +zT +vV +vV +BF +Cq +Dr +vV +vV +vV +GM +zm +zm +Jx +Kp +Lh +LR +vV ac aa aa ac -Pr -Qh -Qh -Ro -Rs -Rs -Rs -Rs +Pz +Qp +Qp +Rw +RA +RA +RA +RA aa aa aa @@ -63431,41 +63536,41 @@ ac aa aa aa -vU -vU -vU -vU -vU -zd -zM -As -vU +vV +vV +vV +vV +vV +zi +zU +Ax +vV ac ac ac aa aa -vU -GF -Hv -Iw -Jq -vU -vU -vU -vU +vV +GN +HD +IE +Jy +vV +vV +vV +vV aa aa aa ac -Ps -Qi -QH -Rp -Rs -Sq -SO -Rs +PA +Qq +QP +Rx +RA +Sy +SW +RA aa aa aa @@ -63692,37 +63797,37 @@ aa aa aa aa -vU -ze -zN -At -vU +vV +zj +zV +Ay +vV ac ac ac ac sk -vU -vU -vU -vU -vU -vU -Ff -Ff -Ff +vV +vV +vV +vV +vV +vV +Fo +Fo +Fo aa aa aa ac -Ps -Qj -QI -Rq -Rs -Sr -SP -Rs +PA +Qr +QQ +Ry +RA +Sz +SX +RA aa aa aa @@ -63949,37 +64054,37 @@ aa aa aa aa -vU -zf -zO -Au -vU +vV +zk +zW +Az +vV aa ac ac ac -Ff -FN -GG -FN -FN -FN -FN -GG -FN -Ff +Fo +FV +GO +FV +FV +FV +FV +GO +FV +Fo aa aa ac ac -Pt -Qk -QJ -Rr -Rs -Ss -SO -Rs +PB +Qs +QR +Rz +RA +SA +SW +RA aa aa aa @@ -64205,38 +64310,38 @@ aa aa aa aa -vU -vU -vU -zP -vU -vU +vV +vV +vV +zX +vV +vV ac ac ac ac -Ff -FO -FP -FP -FP -FP -FP -FP -FP -Ff -Nd -Nd -NW -OI -Nd -Nd -QK -Rs -Rs -St -SP -Rs +Fo +FW +FX +FX +FX +FX +FX +FX +FX +Fo +Nl +Nl +Oe +OQ +Nl +Nl +QS +RA +RA +SB +SX +RA aa aa aa @@ -64462,38 +64567,38 @@ aa aa aa ac -yc -yy -zg -zQ -Av -vU +yh +yD +zl +zY +AA +vV ac ac ac ac -Ff -FP -FP -FP -FP -FP -FP -FP -FP -Ff -Ne -Nz -NX -OJ -Pu -Ql -QL -Rt -RS -Su -SQ -Rs +Fo +FX +FX +FX +FX +FX +FX +FX +FX +Fo +Nm +NH +Of +OR +PC +Qt +QT +RB +Sa +SC +SY +RA aa aa aa @@ -64719,38 +64824,38 @@ aa aa ac ac -yd -yz -zh -zR -Aw -AP -Bz -Bz -Bz -Ed -Ff -FQ -FQ -Hw -Ix -Jr -FQ -FQ -FQ -Ff -Nf -NA -NY -OK -Pv -Pv -QM -Rs -RT -Sv -SR -Rs +yi +yE +zm +zZ +AB +AX +BI +BI +BI +Eo +Fo +FY +FY +HE +IF +Jz +FY +FY +FY +Fo +Nn +NI +Og +OS +PD +PD +QU +RA +Sb +SD +SZ +RA aa aa aa @@ -64976,40 +65081,40 @@ ac pD qM ac -yd -yA -zi -zS -Ax -AQ -BA -Ck -BA -Ee -Ff -FN -FN -Hx -Iy -Ff -Kk -La -LK -Ff -Ng -NB -NZ -OL -Pw -NZ -QN -Nd -Nd -Nd -Nd -Nd -Nd -Nd +yi +yF +zn +Aa +AC +AY +BJ +Ct +BJ +Ep +Fo +FV +FV +HF +IG +Fo +Ks +Li +LS +Fo +No +NJ +Oh +OT +PE +Oh +QV +Nl +Nl +Nl +Nl +Nl +Nl +Nl aa aa aa @@ -65222,51 +65327,51 @@ rE rE rE rE -sI -tm -tQ -ux -vg -vg -vg -vg -wM -xn +sJ +tn +tR +uy +vh +vh +vh +vh +wN +xo ac -yd -yB -zh -zT -Ay -AR -BB -BB -Dl -Ef -Ff -FR -FP -FP -Iy -Js -Kl -Km -LL -Ff -Nd -NC -Oa -OM -Px -Qm -QO -Ru -RU -Sw -SS -Tk -Tw -Nd +yi +yG +zm +Ab +AD +AZ +BK +BK +Dv +Eq +Fo +FZ +FX +FX +IG +JA +Kt +Ku +LT +Fo +Nl +NK +Oi +OU +PF +Qu +QW +RC +Sc +SE +Ta +Ts +TE +Nl aa aa aa @@ -65480,50 +65585,50 @@ kj kj kj ac -tn -tR +to +tS qL ac ac ac ac -wN +wO qL ac -ye -yC -zh -zh -Ax -AS -BC -Cl -Dm -Eg -Fg -FP -FP -FP -Iy -Jt -Km -Km -LM -Ff -Nd -Nd -Ob -ON -NZ -Qn -QP -Nd -RV -Sx -ST -Nd -Nd -Nd +yj +yH +zm +zm +AC +Ba +BL +Cu +Dw +Er +Fp +FX +FX +FX +IG +JB +Ku +Ku +LU +Fo +Nl +Nl +Oj +OV +Oh +Qv +QX +Nl +Sd +SF +Tb +Nl +Nl +Nl aa aa aa @@ -65738,49 +65843,49 @@ kj kj kj jB -tS -uy +tT +uz jB ac ac ac -wO +wP ac ac -vU -vU -vU -vU -vU -vU -BD -Cm -Dn -Eg -Ff -FS -GH -Hy -Iz -Ju -Kn -Lb -LN -Ff -Nh -Nd -Oc -OO -Py -NX -QQ -Nd -RW -Sy -ST -Tl -Tw -Nd +vV +vV +vV +vV +vV +vV +BM +Cv +Dx +Er +Fo +Ga +GP +HG +IH +JC +Kv +Lj +LV +Fo +Np +Nl +Ok +OW +PG +Of +QY +Nl +Se +SG +Tb +Tt +TE +Nl aa aa aa @@ -65995,49 +66100,49 @@ kj kj kj jB -tT -uz +tU +uA jB aa jB jB -wP +wQ jB ac -vU -yD -yD -yD -yD -AT -BD -Cn -Do -Eh -Ff -Ff -Ff -Ff -IA -Ff -Ff -Ff -Ff -Ff -Nd -Nd -Od -OP -Pz -Qo -QR -Nd -Nd -Nd -Nd -Nd -Nd -Nd +vV +yI +yI +yI +yI +Bb +BM +Cw +Dy +Es +Fo +Fo +Fo +Fo +II +Fo +Fo +Fo +Fo +Fo +Nl +Nl +Ol +OX +PH +Qw +QZ +Nl +Nl +Nl +Nl +Nl +Nl +Nl aa aa aa @@ -66252,47 +66357,47 @@ kj kj kj jB -tU -uA +tV +uB jB aa jB -wp -wQ +wq +wR jB -xI -vU -yD -yD -yD -yD -yD -BD -Co -Dn -Ei -Fh -FT -GI -Hz -IB -Jv -Ko -Lc -LO -Lc -Ni -ND -Oe -OQ -PA -PA -QS -Rv -RX -Sz -SU -PJ +xJ +vV +yI +yI +yI +yI +yI +BM +Cx +Dx +Et +Fq +Gb +GQ +HH +IJ +JD +Kw +Lk +LW +Lk +Nq +NL +Om +OY +PI +PI +Ra +RD +Sf +SH +Tc +PR aa aa aa @@ -66509,47 +66614,47 @@ kj kj kj jB -tV -uB +tW +uC jB jB jB -wq -wR +wr +wS jB -xJ +xK jB -yD -zj -yD -Az -yD -BD -Cp -Dp -BB -Fi -FU -BB -BB -IC -Jw -Kp -Ld -LP -MA -Ld -NE -Of -OR -PB -Qp -PB -Rw -PB -PB -SV +yI +zo +yI +AE +yI +BM +Cy +Dz +BK +Fr +Gc +BK +BK +IK +JE +Kx +Ll +LX +MI +Ll +NM +On +OZ PJ +Qx +PJ +RE +PJ +PJ +Td +PR aa aa aa @@ -66766,47 +66871,47 @@ kj kj kj jB -tW -uC -vh -vF -vV -wr -wS -xo -xK +tX +uD +vi +vG +vW +ws +wT +xp +xL jB -yD -yD -yD -yD -yD -BD -Cq -Dq -Ej -Fj -FV -GJ -Ej -ID -Jx -Jx -Jx -Jx -Jx -Jx -Jx -Jx -Jx -PC -Qq -PC -Jv -RY -SA -SW -PJ +yI +yI +yI +yI +yI +BM +Cz +DA +Eu +Fs +Gd +GR +Eu +IL +JF +JF +JF +JF +JF +JF +JF +JF +JF +PK +Qy +PK +JD +Sg +SI +Te +PR aa aa aa @@ -67023,53 +67128,53 @@ kj kj kj jB -tX -tX -vi +tY +tY +vj kz qH qH qH qH -xL +xM jB -yD -yD -yD -yD -yD +yI +yI +yI +yI +yI jB -Cr +CA jB -Ek -Fk -BD -BD -HA -IE -Jx -Kq -Le -LQ -MB -Nj -Le -Og -Jx -PD -Qr -QT -Jv -Jv -RZ -SX -PJ -PJ -PJ -PJ -PJ -PJ -PJ +Ev +Ft +BM +BM +HI +IM +JF +Ky +Lm +LY +MJ +Nr +Lm +Oo +JF +PL +Qz +Rb +JD +JD +Sh +Tf +PR +PR +PR +PR +PR +PR +PR aa aa aa @@ -67282,13 +67387,13 @@ kj jB jB jB -vj -vG -vW -vG -vG -vG -xM +vk +vH +vX +vH +vH +vH +xN jB jB jB @@ -67296,37 +67401,37 @@ jB jB jB jB -Cs -Dr +CB +DB ac ac aa -BD -HB -IF -Jx -Kr -Lf -LR -MB -Nk -Lf -Oh -Jx -PE -Qs -QU -Rx -Jv -SB -SY -Tm -Tx -TM -TZ -Um -UE -PJ +BM +HJ +IN +JF +Kz +Ln +LZ +MJ +Ns +Ln +Op +JF +PM +QA +Rc +RF +JD +SJ +Tg +Tu +TF +TU +Uh +Uu +UM +PR aa aa aa @@ -67539,51 +67644,51 @@ kj kj aa jB -vk +vl jB jB jB jB jB -xN -yf -yf -yf -zU -yf -yf -yf -Ct -Ds +xO +yk +yk +yk +Ac +yk +yk +yk +CC +DC ac ac aa -BD -HC -IG -Jy -Ks -Lg -Lg -MC -Nl -Nl -Oi -Jx -PF -Qt -QV -Ry -RZ -SC -SZ -Tn -Ty -TN -Ua -SC -UF -PJ +BM +HK +IO +JG +KA +Lo +Lo +MK +Nt +Nt +Oq +JF +PN +QB +Rd +RG +Sh +SK +Th +Tv +TG +TV +Ui +SK +UN +PR aa aa aa @@ -67796,51 +67901,51 @@ aa aa aa jB -vi +vj jB aa aa aa jB jB -yg +yl jB -yg +yl jB -yg +yl jB -yg +yl jB jB ac ac ac -GK -HD -IH -Jz -Kt -Lh -Lh -MD -Lh -NF -Oj -Jx -PG -Qu -QW -Rz -Jv -SD -Ta -Tm -SC -Tm -SC -Tm -UG -PJ +GS +HL +IP +JH +KB +Lp +Lp +ML +Lp +NN +Or +JF +PO +QC +Re +RH +JD +SL +Ti +Tu +SK +Tu +SK +Tu +UO +PR aa aa aa @@ -68053,7 +68158,7 @@ aa aa aa jB -vi +vj jB aa aa @@ -68072,32 +68177,32 @@ ac ac ac ac -GL -HE -II -Jx -Ku -Lf -LR -MB -Nk -Lf -LR -Jx -PH -Qu -Qu -Rz -RZ -SE -Tb -To -Tz -TO -Ua -SC -UH -PJ +GT +HM +IQ +JF +KC +Ln +LZ +MJ +Ns +Ln +LZ +JF +PP +QC +QC +RH +Sh +SM +Tj +Tw +TH +TW +Ui +SK +UP +PR aa aa aa @@ -68310,7 +68415,7 @@ aa aa aa jB -vi +vj jB aa aa @@ -68329,32 +68434,32 @@ ac ac ac ac -GM -HF -IJ -Jx -Kq -Li -LS -MB -Nm -Li -Og -Jx -PI -PI -QX -Jv -Jv -SF -Tc -Tm -TA -TP -TZ -Un -UI -PJ +GU +HN +IR +JF +Ky +Lq +Ma +MJ +Nu +Lq +Oo +JF +PQ +PQ +Rf +JD +JD +SN +Tk +Tu +TI +TX +Uh +Uv +UQ +PR aa aa aa @@ -68567,7 +68672,7 @@ aa aa aa jB -vi +vj jB aa aa @@ -68582,36 +68687,36 @@ ac ac ac ac -Dt -Dt -Dt -Dt -Dt -HG -IK -Jx -Jx -Jx -Jx -Jx -Nn -Nn -Nn -Nn -PJ -PJ -PJ -PJ -PJ -PJ -PJ -PJ -PJ -PJ -PJ -PJ -PJ -PJ +DD +DD +DD +DD +DD +HO +IS +JF +JF +JF +JF +JF +Nv +Nv +Nv +Nv +PR +PR +PR +PR +PR +PR +PR +PR +PR +PR +PR +PR +PR +PR aa aa aa @@ -68824,7 +68929,7 @@ aa aa aa jB -vi +vj jB aa aa @@ -68839,19 +68944,19 @@ aa ac ac ac -Dt -El -Fl -FW -GN -HH -IL -JA -Kv -Lj -LT -ME -BD +DD +Ew +Fu +Ge +GV +HP +IT +JI +KD +Lr +Mb +MM +BM aa aa ac @@ -69081,7 +69186,7 @@ aa aa aa jB -vi +vj jB jB jB @@ -69096,19 +69201,19 @@ aa ac ac ac -Dt -Em -Fm -FX -GO -HI -IM -JB -Kw -Lk -LU -MF -BD +DD +Ex +Fv +Gf +GW +HQ +IU +JJ +KE +Ls +Mc +MN +BM aa jL ac @@ -69338,34 +69443,34 @@ aa aa aa jB -vl -vH -vH -vH -vH -vH -vH -vH -vH -zk +vm +vI +vI +vI +vI +vI +vI +vI +vI +zp jB aa aa ac ac -Dt -En -Fn -FY -GP -HJ -IN -JC -Kx -Ll -LV -MG -BD +DD +Ey +Fw +Gg +GX +HR +IV +JK +KF +Lt +Md +MO +BM aa af ac @@ -69604,27 +69709,27 @@ jB jB jB jB -zl +zq jB aa aa ac ac -Dt -Eo -Eo -Eo -Eo -HK -Dn -JD -Ky -Lm -LW -MH -No -NG -Ok +DD +Ez +Ez +Ez +Ez +HS +Dx +JL +KG +Lu +Me +MP +Nw +NO +Os ac ac af @@ -69867,19 +69972,19 @@ aa aa aa ac -Du -Ep -Fo -FZ -GQ -HH -IO -JE -Kz -Ln -LX -MI -BD +DE +EA +Fx +Gh +GY +HP +IW +JM +KH +Lv +Mf +MQ +BM aa af ac @@ -70124,19 +70229,19 @@ aa aa aa ac -Du -Eq -Fp -Ga -GR -HL -IP -JF -KA -Lo -JD -MJ -BD +DE +EB +Fy +Gi +GZ +HT +IX +JN +KI +Lw +JL +MR +BM aa jL ac @@ -70381,19 +70486,19 @@ aa aa aa aa -Du -Er -Fq -Gb -GQ -HM -IQ -JG -KB -Lp -LY -KB -BD +DE +EC +Fz +Gj +GY +HU +IY +JO +KJ +Lx +Mg +KJ +BM aa aa aa @@ -70638,19 +70743,19 @@ aa aa aa aa -Du -Du -Du -Du -Du -HN -BD -BD -KC -Lq -Lq -MK -BD +DE +DE +DE +DE +DE +HV +BM +BM +KK +Ly +Ly +MS +BM aa aa aa @@ -70895,14 +71000,14 @@ aa aa aa aa -Dv -Es -Fr -Gc -GS -HO -IR -GS +DF +ED +FA +Gk +Ha +HW +IZ +Ha ac ac ac @@ -71152,14 +71257,14 @@ aa aa aa aa -Dv -Et -Fs -Fs -GT -HO -IS -GT +DF +EE +FB +FB +Hb +HW +Ja +Hb ac aa aa @@ -71409,14 +71514,14 @@ aa aa aa aa -Dv -Eu -Ft -Fs -GU -HO -IT -GU +DF +EF +FC +FB +Hc +HW +Jb +Hc ac aa aa @@ -71666,15 +71771,15 @@ aa aa aa aa -Dv -Ev -Ev -Gd -Dv -HP -Dv -Dv -Dv +DF +EG +EG +Gl +DF +HX +DF +DF +DF aa aa aa @@ -71923,15 +72028,15 @@ aa aa aa aa -Dv -Ew -Fr -Fs -GV -HQ -IU -JH -GS +DF +EH +FA +FB +Hd +HY +Jc +JP +Ha aa aa aa @@ -72180,15 +72285,15 @@ aa aa aa aa -Dv -Et -Fs -Fs -GW -HR -Fs -JI -GT +DF +EE +FB +FB +He +HZ +FB +JQ +Hb aa aa aa @@ -72437,15 +72542,15 @@ aa aa aa aa -Dv -Eu -Fu -Ge -Dv -HS -IV -JJ -GU +DF +EF +FD +Gm +DF +Ia +Jd +JR +Hc aa aa aa @@ -72694,15 +72799,15 @@ aa aa aa aa -Dv -Dv -Dv -Dv -Dv -Dv -Dv -Dv -Dv +DF +DF +DF +DF +DF +DF +DF +DF +DF aa aa aa @@ -73704,7 +73809,7 @@ ac ac ac ac -to +tp jL kj kj @@ -74474,7 +74579,7 @@ rV rV rV sA -sJ +sK ac kj kj @@ -74487,7 +74592,7 @@ jL aa aa jB -zl +zq jB aa aa @@ -74988,7 +75093,7 @@ rV rV rV rV -sJ +sK ac ac kj @@ -75502,7 +75607,7 @@ rV rV rV rV -sJ +sK ac mm ac @@ -76017,8 +76122,8 @@ rU rU rU rU -tp -tY +tq +tZ kj kj kj @@ -76274,7 +76379,7 @@ rS rS rS rK -tq +tr jL kj kj @@ -76531,7 +76636,7 @@ ac ac rX rX -tr +ts rX rX rX @@ -76787,10 +76892,10 @@ kj ac ac rX -sK -ts -tZ -tZ +sL +tt +ua +ua rX kj kj @@ -77044,10 +77149,10 @@ kj kj kj rX -sL -ts +sM +tt su -uD +uE rX jB jB @@ -77301,20 +77406,20 @@ kj kj kj rX -sM -tt -ua -uE -vm +sN +tu +ub +uF +vn +vJ +vJ +vJ +vJ +xq vI vI vI -vI -xp -vH -vH -vH -zm +zr jB aa aa @@ -77561,7 +77666,7 @@ rX rX rX rX -uF +uG rX jB jB @@ -77815,10 +77920,10 @@ rX rX rX rX -sN -tu -ub -uG +sO +tv +uc +uH rX jB jB @@ -78072,7 +78177,7 @@ rX rX rX rX -sO +sP rX rX rX @@ -78329,12 +78434,12 @@ rX sc sp sf -sP -tv -uc -uH -vn -vJ +sQ +tw +ud +uI +vo +vK rX rX kj @@ -78586,12 +78691,12 @@ rY sd sq sf -sQ +sR st st st su -vK +vL rX rX kj @@ -78843,12 +78948,12 @@ rX se sr sB -sR -tw -ud -uI -vo -vL +sS +tx +ue +uJ +vp +vM rX rX kj @@ -79100,12 +79205,12 @@ rX sf sf sf -sS +sT sf -ue -uJ +uf +uK sf -vM +vN rX rX kj @@ -79357,7 +79462,7 @@ rX sg ss sC -sT +sU rX rX rX @@ -79614,7 +79719,7 @@ rX sh st sD -sU +sV rX rX rX @@ -79871,7 +79976,7 @@ rX si su st -sV +sW rX rX kj @@ -80128,7 +80233,7 @@ rX sj sv sE -sW +sX rX rX kj diff --git a/maps/aurora/aurora-4_mainlevel.dmm b/maps/aurora/aurora-4_mainlevel.dmm index b99229849cc..ace8859ff0e 100644 --- a/maps/aurora/aurora-4_mainlevel.dmm +++ b/maps/aurora/aurora-4_mainlevel.dmm @@ -732,13 +732,9 @@ /turf/simulated/floor/tiled, /area/security/vacantoffice2) "abw" = ( -/obj/structure/bed/chair/office/dark, /obj/effect/floor_decal/corner/blue{ dir = 10 }, -/obj/effect/landmark/start{ - name = "Internal Affairs Agent" - }, /turf/simulated/floor/tiled, /area/security/vacantoffice2) "abx" = ( @@ -1552,19 +1548,13 @@ /turf/simulated/floor/tiled, /area/security/vacantoffice2) "acY" = ( -/obj/effect/floor_decal/corner/blue{ - dir = 10 - }, -/turf/simulated/floor/tiled, -/area/security/vacantoffice2) -"acZ" = ( /obj/effect/floor_decal/corner/blue{ dir = 10 }, /obj/machinery/firealarm/south, /turf/simulated/floor/tiled, /area/security/vacantoffice2) -"ada" = ( +"acZ" = ( /obj/machinery/disposal, /obj/machinery/light{ dir = 4; @@ -1579,7 +1569,7 @@ }, /turf/simulated/floor/tiled, /area/security/vacantoffice2) -"adb" = ( +"ada" = ( /obj/structure/grille, /obj/structure/window/reinforced, /obj/structure/window/reinforced{ @@ -1597,7 +1587,7 @@ /obj/machinery/door/firedoor, /turf/simulated/floor/plating, /area/security/vacantoffice2) -"adc" = ( +"adb" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/structure/cable/green{ @@ -1615,15 +1605,15 @@ }, /turf/simulated/floor/tiled, /area/security/brig) -"add" = ( +"adc" = ( /obj/structure/barricade, /turf/simulated/floor/tiled, /area/maintenance/security_starboard) -"ade" = ( +"add" = ( /obj/structure/morgue, /turf/simulated/floor/tiled, /area/maintenance/security_starboard) -"adf" = ( +"ade" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/cable/green{ d1 = 1; @@ -1632,16 +1622,16 @@ }, /turf/simulated/floor/plating, /area/maintenance/security_starboard) -"adg" = ( +"adf" = ( /obj/item/bodybag, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/tiled, /area/maintenance/security_starboard) -"adh" = ( +"adg" = ( /obj/effect/decal/cleanable/generic, /turf/simulated/floor/plating, /area/maintenance/security_starboard) -"adi" = ( +"adh" = ( /obj/structure/cable{ d1 = 1; d2 = 2; @@ -1653,7 +1643,7 @@ /obj/random/junk, /turf/simulated/floor/plating, /area/maintenance/security_starboard) -"adj" = ( +"adi" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/closet/hydrant{ pixel_x = 0; @@ -1661,63 +1651,63 @@ }, /turf/simulated/floor/plating, /area/maintenance/security_starboard) -"adk" = ( +"adj" = ( /obj/item/device/t_scanner, /obj/structure/table/steel, /turf/simulated/floor/plating, /area/maintenance/security_starboard) -"adl" = ( +"adk" = ( /obj/effect/decal/cleanable/dirt, /turf/simulated/floor/tiled, /area/maintenance/civ) -"adm" = ( +"adl" = ( /obj/random/junk, /turf/simulated/floor/tiled, /area/maintenance/civ) -"adn" = ( +"adm" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/dirt, /turf/simulated/floor/tiled, /area/maintenance/civ) -"ado" = ( +"adn" = ( /obj/machinery/constructable_frame/machine_frame, /obj/effect/decal/cleanable/dirt, /turf/simulated/floor/plating, /area/maintenance/civ) -"adp" = ( +"ado" = ( /obj/machinery/constructable_frame/machine_frame, /turf/simulated/floor/plating, /area/maintenance/civ) -"adq" = ( +"adp" = ( /obj/structure/closet/secure_closet/freezer/fridge, /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/dirt, /turf/simulated/floor/plating, /area/maintenance/civ) -"adr" = ( +"adq" = ( /obj/structure/closet/secure_closet/freezer/fridge, /obj/effect/decal/cleanable/cobweb2, /obj/effect/decal/remains/mouse, /turf/simulated/floor/plating, /area/maintenance/civ) -"ads" = ( +"adr" = ( /obj/structure/grille/broken, /obj/structure/lattice, /obj/item/weapon/material/shard, /turf/simulated/floor/airless, /area/mine/unexplored) -"adt" = ( +"ads" = ( /obj/effect/decal/cleanable/dirt, /turf/simulated/floor/airless, /area/mine/unexplored) -"adu" = ( +"adt" = ( /obj/machinery/door/airlock/maintenance{ name = "Security Maintenance"; req_access = list(1) }, /turf/simulated/floor/plating, /area/security/vacantoffice2) -"adv" = ( +"adu" = ( /obj/structure/table/standard, /obj/item/weapon/storage/box/cups, /obj/effect/floor_decal/corner/blue/diagonal, @@ -1727,7 +1717,7 @@ }, /turf/simulated/floor/tiled, /area/security/vacantoffice2) -"adw" = ( +"adv" = ( /obj/item/device/radio/intercom/locked{ pixel_y = -32 }, @@ -1739,7 +1729,7 @@ /obj/machinery/papershredder, /turf/simulated/floor/tiled, /area/security/vacantoffice2) -"adx" = ( +"adw" = ( /obj/structure/reagent_dispensers/water_cooler, /obj/effect/floor_decal/corner/blue/diagonal, /obj/machinery/alarm{ @@ -1749,7 +1739,7 @@ }, /turf/simulated/floor/tiled, /area/security/vacantoffice2) -"ady" = ( +"adx" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/structure/cable/green{ @@ -1767,7 +1757,7 @@ }, /turf/simulated/floor/tiled, /area/security/brig) -"adz" = ( +"ady" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/machinery/door/airlock/maintenance{ @@ -1777,7 +1767,7 @@ /obj/machinery/door/firedoor, /turf/simulated/floor/plating, /area/security/brig) -"adA" = ( +"adz" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/dirt, /obj/structure/cable/green{ @@ -1787,13 +1777,13 @@ }, /turf/simulated/floor/plating, /area/maintenance/security_starboard) -"adB" = ( +"adA" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/dirt, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/plating, /area/maintenance/security_starboard) -"adC" = ( +"adB" = ( /obj/structure/cable{ d1 = 1; d2 = 2; @@ -1805,45 +1795,45 @@ /obj/machinery/door/firedoor, /turf/simulated/floor/plating, /area/maintenance/security_starboard) -"adD" = ( +"adC" = ( /mob/living/simple_animal/mouse/gray, /turf/simulated/floor/tiled, /area/maintenance/civ) -"adE" = ( +"adD" = ( /obj/item/stack/tile/floor, /turf/simulated/floor/plating, /area/maintenance/civ) -"adF" = ( +"adE" = ( /obj/effect/decal/remains/mouse, /turf/simulated/floor/plating, /area/maintenance/civ) -"adG" = ( +"adF" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/dirt, /turf/simulated/floor/plating, /area/maintenance/civ) -"adH" = ( +"adG" = ( /mob/living/simple_animal/mouse/gray, /turf/simulated/floor/plating, /area/maintenance/civ) -"adI" = ( +"adH" = ( /turf/simulated/floor/plating, /area/maintenance/civ) -"adJ" = ( +"adI" = ( /obj/effect/decal/cleanable/generic, /obj/effect/decal/cleanable/dirt, /turf/simulated/floor/plating, /area/maintenance/civ) -"adK" = ( +"adJ" = ( /obj/structure/grille, /turf/simulated/floor/airless, /area/mine/unexplored) -"adL" = ( +"adK" = ( /obj/structure/grille/broken, /obj/structure/lattice, /turf/simulated/floor/airless, /area/mine/unexplored) -"adM" = ( +"adL" = ( /obj/structure/cable{ d1 = 1; d2 = 4; @@ -1857,7 +1847,7 @@ }, /turf/simulated/floor/plating, /area/maintenance/security_starboard) -"adN" = ( +"adM" = ( /obj/structure/cable{ d1 = 4; d2 = 8; @@ -1872,7 +1862,7 @@ /obj/machinery/door/firedoor, /turf/simulated/floor/plating, /area/maintenance/security_starboard) -"adO" = ( +"adN" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 6 }, @@ -1897,7 +1887,7 @@ }, /turf/simulated/floor/tiled, /area/security/brig) -"adP" = ( +"adO" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, @@ -1914,7 +1904,7 @@ }, /turf/simulated/floor/tiled, /area/security/brig) -"adQ" = ( +"adP" = ( /obj/machinery/atmospherics/pipe/manifold/hidden/supply, /obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, /obj/structure/cable/green{ @@ -1933,7 +1923,7 @@ }, /turf/simulated/floor/tiled, /area/security/brig) -"adR" = ( +"adQ" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, @@ -1951,7 +1941,7 @@ }, /turf/simulated/floor/tiled, /area/security/brig) -"adS" = ( +"adR" = ( /obj/machinery/door/firedoor, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 @@ -1969,7 +1959,7 @@ }, /turf/simulated/floor/tiled, /area/security/brig) -"adT" = ( +"adS" = ( /obj/machinery/atmospherics/pipe/manifold/hidden/supply, /obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, /obj/structure/cable/green{ @@ -1982,7 +1972,7 @@ }, /turf/simulated/floor/tiled, /area/security/brig) -"adU" = ( +"adT" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 }, @@ -2002,7 +1992,7 @@ }, /turf/simulated/floor/tiled, /area/security/brig) -"adV" = ( +"adU" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, @@ -2016,7 +2006,7 @@ }, /turf/simulated/floor/tiled, /area/security/brig) -"adW" = ( +"adV" = ( /obj/structure/cable/green{ d1 = 4; d2 = 8; @@ -2033,7 +2023,7 @@ dir = 4 }, /area/security/brig) -"adX" = ( +"adW" = ( /obj/structure/cable/green{ d1 = 4; d2 = 8; @@ -2050,7 +2040,7 @@ }, /turf/simulated/floor/tiled, /area/security/brig) -"adY" = ( +"adX" = ( /obj/structure/cable/green{ d1 = 4; d2 = 8; @@ -2064,7 +2054,7 @@ }, /turf/simulated/floor/tiled, /area/security/brig) -"adZ" = ( +"adY" = ( /obj/structure/cable/green{ d1 = 2; d2 = 8; @@ -2078,13 +2068,13 @@ }, /turf/simulated/floor/tiled, /area/security/brig) -"aea" = ( +"adZ" = ( /obj/machinery/newscaster{ pixel_y = 32 }, /turf/simulated/floor/tiled, /area/security/brig) -"aeb" = ( +"aea" = ( /obj/machinery/light{ dir = 4; icon_state = "tube1"; @@ -2092,11 +2082,11 @@ }, /turf/simulated/floor/tiled, /area/security/brig) -"aec" = ( +"aeb" = ( /obj/item/bodybag, /turf/simulated/floor/tiled, /area/maintenance/security_starboard) -"aed" = ( +"aec" = ( /obj/item/stack/tile/floor, /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/dirt, @@ -2107,7 +2097,7 @@ }, /turf/simulated/floor/plating, /area/maintenance/security_starboard) -"aee" = ( +"aed" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/dirt, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, @@ -2117,14 +2107,14 @@ }, /turf/simulated/floor/plating, /area/maintenance/security_starboard) -"aef" = ( +"aee" = ( /obj/item/stack/tile/floor, /obj/structure/disposalpipe/segment{ dir = 4 }, /turf/simulated/floor/plating, /area/maintenance/security_starboard) -"aeg" = ( +"aef" = ( /obj/machinery/door/airlock/maintenance{ name = "Security Maintenance"; req_access = list(1) @@ -2135,7 +2125,7 @@ }, /turf/simulated/floor/plating, /area/maintenance/security_starboard) -"aeh" = ( +"aeg" = ( /obj/structure/cable{ d1 = 1; d2 = 4; @@ -2153,7 +2143,7 @@ }, /turf/simulated/floor/plating, /area/maintenance/security_starboard) -"aei" = ( +"aeh" = ( /obj/structure/cable{ d1 = 1; d2 = 8; @@ -2167,39 +2157,39 @@ }, /turf/simulated/floor/plating, /area/maintenance/security_starboard) -"aej" = ( +"aei" = ( /obj/machinery/door/firedoor, /turf/simulated/floor/plating, /area/maintenance/security_starboard) -"aek" = ( +"aej" = ( /obj/effect/decal/cleanable/dirt, /mob/living/simple_animal/mouse/gray, /turf/simulated/floor/tiled, /area/maintenance/civ) -"ael" = ( +"aek" = ( /turf/simulated/floor/tiled, /area/maintenance/civ) -"aem" = ( +"ael" = ( /obj/item/stack/tile/floor, /obj/effect/decal/cleanable/dirt, /turf/simulated/floor/plating, /area/maintenance/civ) -"aen" = ( +"aem" = ( /obj/effect/decal/cleanable/dirt, /turf/simulated/floor/plating, /area/maintenance/civ) -"aeo" = ( +"aen" = ( /obj/machinery/door/airlock/maintenance, /obj/machinery/door/firedoor, /turf/simulated/floor/plating, /area/maintenance/security_starboard) -"aep" = ( +"aeo" = ( /obj/item/weapon/material/shard{ icon_state = "small" }, /turf/simulated/floor/airless, /area/mine/unexplored) -"aeq" = ( +"aep" = ( /obj/structure/table/standard, /obj/machinery/atmospherics/unary/vent_pump/on{ dir = 4 @@ -2207,7 +2197,7 @@ /obj/item/weapon/folder/sec, /turf/simulated/floor/tiled, /area/security/brig) -"aer" = ( +"aeq" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, @@ -2216,7 +2206,7 @@ }, /turf/simulated/floor/tiled, /area/security/brig) -"aes" = ( +"aer" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, @@ -2225,7 +2215,7 @@ }, /turf/simulated/floor/tiled, /area/security/brig) -"aet" = ( +"aes" = ( /obj/machinery/door/airlock/security{ name = "Interrogation Monitoring"; req_access = list(63) @@ -2239,7 +2229,7 @@ /obj/machinery/door/firedoor, /turf/simulated/floor/tiled, /area/security/brig) -"aeu" = ( +"aet" = ( /obj/machinery/atmospherics/pipe/manifold/hidden/supply{ dir = 4 }, @@ -2253,7 +2243,7 @@ }, /turf/simulated/floor/tiled, /area/security/brig) -"aev" = ( +"aeu" = ( /obj/structure/disposalpipe/segment{ dir = 4; icon_state = "pipe-c" @@ -2261,7 +2251,7 @@ /obj/effect/floor_decal/corner/blue, /turf/simulated/floor/tiled, /area/security/brig) -"aew" = ( +"aev" = ( /obj/structure/disposalpipe/junction{ dir = 8 }, @@ -2271,7 +2261,7 @@ }, /turf/simulated/floor/tiled, /area/security/brig) -"aex" = ( +"aew" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, @@ -2281,7 +2271,7 @@ }, /turf/simulated/floor/tiled, /area/security/brig) -"aey" = ( +"aex" = ( /obj/machinery/door/firedoor, /obj/structure/disposalpipe/segment{ dir = 4 @@ -2292,13 +2282,13 @@ }, /turf/simulated/floor/tiled, /area/security/brig) -"aez" = ( +"aey" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, /turf/simulated/floor/tiled, /area/security/brig) -"aeA" = ( +"aez" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, @@ -2309,7 +2299,7 @@ }, /turf/simulated/floor/tiled, /area/security/brig) -"aeB" = ( +"aeA" = ( /obj/machinery/atmospherics/unary/vent_scrubber/on{ dir = 1 }, @@ -2318,7 +2308,7 @@ }, /turf/simulated/floor/tiled, /area/security/brig) -"aeC" = ( +"aeB" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, @@ -2327,7 +2317,7 @@ dir = 4 }, /area/security/brig) -"aeD" = ( +"aeC" = ( /obj/machinery/atmospherics/unary/vent_pump/on{ dir = 1 }, @@ -2340,7 +2330,7 @@ }, /turf/simulated/floor/tiled, /area/security/brig) -"aeE" = ( +"aeD" = ( /obj/structure/cable/green{ d1 = 1; d2 = 4; @@ -2358,7 +2348,7 @@ }, /turf/simulated/floor/tiled, /area/security/brig) -"aeF" = ( +"aeE" = ( /obj/structure/cable/green{ d1 = 4; d2 = 8; @@ -2375,7 +2365,7 @@ }, /turf/simulated/floor/tiled, /area/security/brig) -"aeG" = ( +"aeF" = ( /obj/machinery/door/airlock/maintenance{ name = "Security Maintenance"; req_access = list(1) @@ -2397,7 +2387,7 @@ }, /turf/simulated/floor/tiled, /area/security/brig) -"aeH" = ( +"aeG" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, @@ -2414,7 +2404,7 @@ }, /turf/simulated/floor/tiled, /area/maintenance/security_starboard) -"aeI" = ( +"aeH" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, @@ -2431,7 +2421,7 @@ }, /turf/simulated/floor/plating, /area/maintenance/security_starboard) -"aeJ" = ( +"aeI" = ( /obj/item/weapon/reagent_containers/food/snacks/donkpocket, /obj/effect/decal/cleanable/generic, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ @@ -2450,7 +2440,7 @@ }, /turf/simulated/floor/plating, /area/maintenance/security_starboard) -"aeK" = ( +"aeJ" = ( /obj/effect/decal/cleanable/dirt, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 9 @@ -2461,7 +2451,7 @@ }, /turf/simulated/floor/tiled, /area/maintenance/security_starboard) -"aeL" = ( +"aeK" = ( /obj/structure/morgue{ icon_state = "morgue1"; dir = 8 @@ -2473,7 +2463,7 @@ /obj/effect/decal/cleanable/dirt, /turf/simulated/floor/tiled, /area/maintenance/security_starboard) -"aeM" = ( +"aeL" = ( /obj/machinery/power/apc{ dir = 8; name = "west bump"; @@ -2486,7 +2476,7 @@ /obj/structure/disposalpipe/segment, /turf/simulated/floor/plating, /area/maintenance/security_starboard) -"aeN" = ( +"aeM" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/cable{ d1 = 1; @@ -2505,48 +2495,48 @@ /obj/random/loot, /turf/simulated/floor/plating, /area/maintenance/security_starboard) -"aeO" = ( +"aeN" = ( /turf/simulated/wall, /area/maintenance/civ) -"aeP" = ( +"aeO" = ( /obj/machinery/door/airlock/maintenance, /obj/machinery/door/firedoor, /turf/simulated/floor/tiled, /area/maintenance/civ) -"aeQ" = ( +"aeP" = ( /obj/structure/table/reinforced, /obj/structure/window/reinforced, /obj/machinery/door/firedoor, /turf/simulated/floor/tiled, /area/maintenance/civ) -"aeR" = ( +"aeQ" = ( /obj/structure/table/reinforced, /obj/item/trash/tray, /obj/machinery/door/window/southleft, /obj/machinery/door/firedoor, /turf/simulated/floor/plating, /area/maintenance/civ) -"aeS" = ( +"aeR" = ( /obj/structure/table/reinforced, /obj/structure/window/reinforced, /obj/machinery/door/firedoor, /turf/simulated/floor/plating, /area/maintenance/civ) -"aeT" = ( +"aeS" = ( /obj/structure/table/reinforced, /obj/structure/window/reinforced, /obj/random/loot, /obj/machinery/door/firedoor, /turf/simulated/floor/plating, /area/maintenance/civ) -"aeU" = ( +"aeT" = ( /obj/structure/table/reinforced, /obj/item/trash/tray, /obj/machinery/door/window/southright, /obj/machinery/door/firedoor, /turf/simulated/floor/plating, /area/maintenance/civ) -"aeV" = ( +"aeU" = ( /obj/effect/landmark{ name = "carpspawn" }, @@ -2555,18 +2545,18 @@ }, /turf/simulated/floor/asteroid/ash/rocky, /area/mine/unexplored) -"aeW" = ( +"aeV" = ( /obj/structure/grille/broken, /obj/effect/decal/cleanable/dirt, /obj/random/loot, /turf/simulated/floor/airless, /area/mine/unexplored) -"aeX" = ( +"aeW" = ( /obj/structure/closet, /obj/item/clothing/head/ushanka, /turf/simulated/floor/plating, /area/maintenance/security_starboard) -"aeY" = ( +"aeX" = ( /obj/structure/table/standard, /obj/item/weapon/paper_bin{ pixel_x = 2; @@ -2579,7 +2569,7 @@ }, /turf/simulated/floor/tiled, /area/security/brig) -"aeZ" = ( +"aeY" = ( /obj/machinery/computer/security/telescreen{ layer = 4; name = "Observation Screen"; @@ -2590,7 +2580,7 @@ /obj/structure/bed/chair, /turf/simulated/floor/tiled, /area/security/brig) -"afa" = ( +"aeZ" = ( /obj/structure/bed/chair, /obj/item/device/radio/intercom{ frequency = 1449; @@ -2602,7 +2592,7 @@ }, /turf/simulated/floor/tiled, /area/security/brig) -"afb" = ( +"afa" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/structure/cable/green{ @@ -2616,7 +2606,7 @@ }, /turf/simulated/floor/tiled, /area/security/brig) -"afc" = ( +"afb" = ( /obj/structure/disposalpipe/segment, /obj/effect/floor_decal/corner/blue{ icon_state = "corner_white"; @@ -2631,7 +2621,7 @@ }, /turf/simulated/floor/tiled, /area/security/brig) -"afd" = ( +"afc" = ( /obj/structure/grille, /obj/structure/window/reinforced, /obj/structure/window/reinforced{ @@ -2646,10 +2636,10 @@ /obj/machinery/door/firedoor, /turf/simulated/floor/plating, /area/security/brig) -"afe" = ( +"afd" = ( /turf/simulated/wall/r_wall, /area/security/investigations) -"aff" = ( +"afe" = ( /obj/machinery/door/airlock/security{ name = "Evidence Storage"; req_access = list(1) @@ -2660,32 +2650,32 @@ temperature = 278 }, /area/security/investigations) -"afg" = ( +"aff" = ( /obj/random/toolbox, /turf/simulated/floor/plating, /area/maintenance/security_starboard) -"afh" = ( +"afg" = ( /obj/machinery/atmospherics/unary/vent_pump/on{ dir = 1 }, /turf/simulated/floor/plating, /area/maintenance/security_starboard) -"afi" = ( +"afh" = ( /obj/effect/decal/cleanable/dirt, /turf/simulated/floor/tiled, /area/maintenance/security_starboard) -"afj" = ( +"afi" = ( /obj/structure/morgue{ icon_state = "morgue1"; dir = 8 }, /turf/simulated/floor/tiled, /area/maintenance/security_starboard) -"afk" = ( +"afj" = ( /obj/structure/disposalpipe/segment, /turf/simulated/floor/plating, /area/maintenance/security_starboard) -"afl" = ( +"afk" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/cable{ d1 = 1; @@ -2699,39 +2689,39 @@ /obj/random/loot, /turf/simulated/floor/plating, /area/maintenance/security_starboard) -"afm" = ( +"afl" = ( /obj/effect/decal/cleanable/cobweb2{ icon_state = "cobweb1" }, /turf/simulated/floor/tiled, /area/maintenance/civ) -"afn" = ( +"afm" = ( /obj/effect/decal/remains/mouse, /turf/simulated/floor/tiled, /area/maintenance/civ) -"afo" = ( +"afn" = ( /obj/item/stack/tile/floor, /obj/effect/decal/cleanable/generic, /turf/simulated/floor/plating, /area/maintenance/civ) -"afp" = ( +"afo" = ( /obj/effect/decal/cleanable/vomit, /turf/simulated/floor/plating, /area/maintenance/civ) -"afq" = ( +"afp" = ( /obj/effect/decal/cleanable/dirt, /mob/living/simple_animal/mouse/gray, /turf/simulated/floor/plating, /area/maintenance/civ) -"afr" = ( +"afq" = ( /turf/simulated/wall, /area/maintenance/engineering) -"afs" = ( +"afr" = ( /obj/machinery/door/airlock/external, /obj/machinery/door/firedoor, /turf/simulated/floor/airless, /area/maintenance/engineering) -"aft" = ( +"afs" = ( /obj/structure/grille, /obj/structure/window/reinforced/tinted, /obj/structure/window/reinforced/tinted{ @@ -2744,7 +2734,7 @@ /obj/machinery/door/firedoor, /turf/simulated/floor/plating, /area/security/brig) -"afu" = ( +"aft" = ( /obj/structure/grille, /obj/structure/window/reinforced/tinted, /obj/structure/window/reinforced/tinted{ @@ -2753,7 +2743,7 @@ /obj/machinery/door/firedoor, /turf/simulated/floor/plating, /area/security/brig) -"afv" = ( +"afu" = ( /obj/structure/grille, /obj/structure/window/reinforced/tinted, /obj/structure/window/reinforced/tinted{ @@ -2766,7 +2756,7 @@ /obj/machinery/door/firedoor, /turf/simulated/floor/plating, /area/security/brig) -"afw" = ( +"afv" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/structure/cable/green{ @@ -2784,7 +2774,7 @@ }, /turf/simulated/floor/tiled, /area/security/brig) -"afx" = ( +"afw" = ( /obj/structure/disposalpipe/segment, /obj/effect/floor_decal/corner/blue{ icon_state = "corner_white"; @@ -2792,7 +2782,7 @@ }, /turf/simulated/floor/tiled, /area/security/brig) -"afy" = ( +"afx" = ( /obj/structure/cable/green{ d2 = 2; icon_state = "0-2" @@ -2801,21 +2791,21 @@ /obj/effect/decal/cleanable/dirt, /turf/simulated/floor/tiled, /area/security/brig) -"afz" = ( +"afy" = ( /obj/effect/decal/cleanable/dirt, /turf/simulated/floor/tiled, /area/security/brig) -"afA" = ( +"afz" = ( /obj/machinery/atmospherics/unary/vent_pump/on, /obj/effect/decal/cleanable/dirt, /turf/simulated/floor/tiled, /area/security/brig) -"afB" = ( +"afA" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/cobweb2, /turf/simulated/floor/tiled, /area/security/brig) -"afC" = ( +"afB" = ( /obj/structure/closet{ name = "Evidence Closet" }, @@ -2825,13 +2815,13 @@ temperature = 278 }, /area/security/investigations) -"afD" = ( +"afC" = ( /turf/simulated/floor/tiled/dark{ name = "cooled dark floor"; temperature = 278 }, /area/security/investigations) -"afE" = ( +"afD" = ( /obj/structure/table/standard, /obj/machinery/firealarm/north, /obj/item/weapon/storage/box/bodybags, @@ -2841,7 +2831,7 @@ temperature = 278 }, /area/security/investigations) -"afF" = ( +"afE" = ( /obj/structure/cable{ d1 = 1; d2 = 2; @@ -2853,45 +2843,45 @@ /obj/structure/closet/crate, /turf/simulated/floor/plating, /area/maintenance/security_starboard) -"afG" = ( +"afF" = ( /obj/item/weapon/stool/padded, /turf/simulated/floor/tiled, /area/maintenance/civ) -"afH" = ( +"afG" = ( /obj/item/weapon/stool/padded, /mob/living/simple_animal/mouse/gray, /turf/simulated/floor/tiled, /area/maintenance/civ) -"afI" = ( +"afH" = ( /obj/item/weapon/stool/padded, /obj/effect/decal/cleanable/dirt, /turf/simulated/floor/plating, /area/maintenance/civ) -"afJ" = ( +"afI" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/dirt, /turf/simulated/floor/plating, /area/maintenance/civ) -"afK" = ( +"afJ" = ( /obj/structure/barricade, /obj/structure/grille, /turf/simulated/floor/plating, /area/maintenance/engineering) -"afL" = ( +"afK" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 6 }, /turf/simulated/floor/tiled, /area/security/brig) -"afM" = ( +"afL" = ( /obj/structure/bed/chair, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 }, /turf/simulated/floor/tiled, /area/security/brig) -"afN" = ( +"afM" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ icon_state = "intact-supply"; dir = 6 @@ -2901,7 +2891,7 @@ }, /turf/simulated/floor/tiled, /area/security/brig) -"afO" = ( +"afN" = ( /obj/machinery/door/airlock/security{ name = "Interrogation"; req_access = list(63) @@ -2915,7 +2905,7 @@ /obj/machinery/door/firedoor, /turf/simulated/floor/tiled, /area/security/brig) -"afP" = ( +"afO" = ( /obj/structure/cable/green{ d1 = 1; d2 = 2; @@ -2930,7 +2920,7 @@ /obj/machinery/atmospherics/pipe/manifold4w/hidden/supply, /turf/simulated/floor/tiled, /area/security/brig) -"afQ" = ( +"afP" = ( /obj/structure/disposalpipe/segment, /obj/effect/floor_decal/corner/blue{ icon_state = "corner_white"; @@ -2949,7 +2939,7 @@ }, /turf/simulated/floor/tiled, /area/security/brig) -"afR" = ( +"afQ" = ( /obj/machinery/door/airlock/glass_security{ icon_state = "door_locked"; locked = 1; @@ -2977,7 +2967,7 @@ }, /turf/simulated/floor/tiled, /area/security/brig) -"afS" = ( +"afR" = ( /obj/structure/cable/green{ d1 = 1; d2 = 8; @@ -2992,14 +2982,14 @@ /obj/effect/decal/cleanable/dirt, /turf/simulated/floor/tiled, /area/security/brig) -"afT" = ( +"afS" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, /obj/effect/decal/cleanable/dirt, /turf/simulated/floor/tiled, /area/security/brig) -"afU" = ( +"afT" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ icon_state = "intact-supply"; dir = 9 @@ -3008,7 +2998,7 @@ /obj/effect/decal/cleanable/dirt, /turf/simulated/floor/tiled, /area/security/brig) -"afV" = ( +"afU" = ( /obj/effect/floor_decal/industrial/warning, /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/cobweb2{ @@ -3017,19 +3007,19 @@ }, /turf/simulated/floor/tiled, /area/security/brig) -"afW" = ( +"afV" = ( /obj/effect/floor_decal/industrial/warning, /obj/effect/decal/cleanable/dirt, /turf/simulated/floor/tiled, /area/security/brig) -"afX" = ( +"afW" = ( /obj/machinery/atmospherics/unary/vent_scrubber/on, /turf/simulated/floor/tiled/dark{ name = "cooled dark floor"; temperature = 278 }, /area/security/investigations) -"afY" = ( +"afX" = ( /obj/structure/closet{ name = "Evidence Closet" }, @@ -3043,7 +3033,7 @@ temperature = 278 }, /area/security/investigations) -"afZ" = ( +"afY" = ( /obj/structure/closet{ name = "Evidence Closet" }, @@ -3058,7 +3048,7 @@ temperature = 278 }, /area/security/investigations) -"aga" = ( +"afZ" = ( /obj/structure/disposalpipe/segment{ dir = 4; icon_state = "pipe-c" @@ -3076,7 +3066,7 @@ }, /turf/simulated/floor/plating, /area/maintenance/security_starboard) -"agb" = ( +"aga" = ( /obj/structure/cable{ d1 = 4; d2 = 8; @@ -3094,7 +3084,7 @@ }, /turf/simulated/floor/plating, /area/maintenance/security_starboard) -"agc" = ( +"agb" = ( /obj/structure/cable{ d1 = 1; d2 = 8; @@ -3108,16 +3098,16 @@ }, /turf/simulated/floor/plating, /area/maintenance/security_starboard) -"agd" = ( +"agc" = ( /obj/effect/decal/cleanable/generic, /turf/simulated/floor/tiled, /area/maintenance/civ) -"age" = ( +"agd" = ( /obj/structure/table/standard, /obj/item/stack/tile/floor, /turf/simulated/floor/tiled, /area/maintenance/civ) -"agf" = ( +"age" = ( /obj/structure/table/standard, /obj/effect/decal/cleanable/cobweb2{ icon_state = "spiderling"; @@ -3125,34 +3115,34 @@ }, /turf/simulated/floor/tiled, /area/maintenance/civ) -"agg" = ( +"agf" = ( /obj/structure/table/standard, /obj/item/trash/tray, /turf/simulated/floor/tiled, /area/maintenance/civ) -"agh" = ( +"agg" = ( /obj/structure/table/standard, /obj/random/loot, /turf/simulated/floor/tiled, /area/maintenance/civ) -"agi" = ( +"agh" = ( /obj/structure/table/standard, /obj/effect/decal/remains/mouse, /turf/simulated/floor/tiled, /area/maintenance/civ) -"agj" = ( +"agi" = ( /obj/structure/table/standard, /turf/simulated/floor/plating, /area/maintenance/civ) -"agk" = ( +"agj" = ( /obj/structure/grille, /turf/simulated/floor/plating, /area/maintenance/engineering) -"agl" = ( +"agk" = ( /obj/structure/girder/displaced, /turf/simulated/floor/plating, /area/maintenance/engineering) -"agm" = ( +"agl" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/dirt, /obj/machinery/alarm{ @@ -3160,7 +3150,7 @@ }, /turf/simulated/floor/plating, /area/maintenance/security_starboard) -"agn" = ( +"agm" = ( /obj/effect/decal/cleanable/generic, /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/dirt, @@ -3174,7 +3164,7 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/plating, /area/maintenance/security_starboard) -"ago" = ( +"agn" = ( /obj/machinery/atmospherics/unary/vent_scrubber/on{ dir = 1 }, @@ -3185,13 +3175,13 @@ }, /turf/simulated/floor/tiled, /area/security/brig) -"agp" = ( +"ago" = ( /obj/structure/table/standard, /obj/item/device/flashlight/lamp, /obj/item/device/taperecorder, /turf/simulated/floor/tiled, /area/security/brig) -"agq" = ( +"agp" = ( /obj/item/device/radio/intercom{ broadcasting = 1; frequency = 1449; @@ -3204,7 +3194,7 @@ }, /turf/simulated/floor/tiled, /area/security/brig) -"agr" = ( +"agq" = ( /obj/structure/grille, /obj/structure/window/reinforced{ dir = 8 @@ -3218,27 +3208,27 @@ /obj/machinery/door/firedoor, /turf/simulated/floor/plating, /area/security/brig) -"ags" = ( +"agr" = ( /obj/machinery/atmospherics/unary/vent_scrubber/on{ dir = 1 }, /obj/effect/decal/cleanable/dirt, /turf/simulated/floor/tiled, /area/security/brig) -"agt" = ( +"ags" = ( /obj/structure/girder, /turf/simulated/floor/plating, /area/security/brig) -"agu" = ( +"agt" = ( /obj/effect/decal/cleanable/dirt, /obj/machinery/door/firedoor, /turf/simulated/floor/plating, /area/security/brig) -"agv" = ( +"agu" = ( /obj/effect/decal/cleanable/dirt, /turf/simulated/floor/plating, /area/security/brig) -"agw" = ( +"agv" = ( /obj/effect/floor_decal/industrial/outline/grey, /obj/structure/closet{ name = "Evidence Closet" @@ -3253,14 +3243,14 @@ temperature = 278 }, /area/security/investigations) -"agx" = ( +"agw" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/tiled/dark{ name = "cooled dark floor"; temperature = 278 }, /area/security/investigations) -"agy" = ( +"agx" = ( /obj/machinery/camera/network/security{ c_tag = "Security - Evidence Storage Starboard"; dir = 8 @@ -3270,14 +3260,14 @@ temperature = 278 }, /area/security/investigations) -"agz" = ( +"agy" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/dirt, /obj/structure/table/rack, /obj/random/loot, /turf/simulated/floor/plating, /area/maintenance/security_starboard) -"agA" = ( +"agz" = ( /obj/structure/disposalpipe/segment, /obj/structure/cable{ d1 = 1; @@ -3289,7 +3279,7 @@ /obj/machinery/atmospherics/pipe/simple/hidden/supply, /turf/simulated/floor/plating, /area/maintenance/security_starboard) -"agB" = ( +"agA" = ( /obj/machinery/door/firedoor, /obj/machinery/door/airlock/maintenance{ name = "Maintenance Access"; @@ -3297,20 +3287,20 @@ }, /turf/simulated/floor/plating, /area/maintenance/security_starboard) -"agC" = ( +"agB" = ( /obj/item/weapon/stool/padded, /obj/item/weapon/material/shard, /turf/simulated/floor/tiled, /area/maintenance/civ) -"agD" = ( +"agC" = ( /obj/item/weapon/stool/padded, /obj/item/stack/tile/floor, /turf/simulated/floor/tiled, /area/maintenance/civ) -"agE" = ( +"agD" = ( /turf/simulated/wall/r_wall, /area/engineering/atmos) -"agF" = ( +"agE" = ( /obj/machinery/door/firedoor, /obj/structure/grille, /obj/structure/window/reinforced, @@ -3324,7 +3314,7 @@ }, /turf/simulated/floor/plating, /area/engineering/atmos) -"agG" = ( +"agF" = ( /obj/machinery/door/firedoor, /obj/structure/grille, /obj/structure/window/reinforced, @@ -3334,7 +3324,7 @@ }, /turf/simulated/floor/plating, /area/engineering/atmos) -"agH" = ( +"agG" = ( /obj/machinery/door/firedoor, /obj/structure/grille, /obj/structure/window/reinforced, @@ -3347,24 +3337,24 @@ }, /turf/simulated/floor/plating, /area/engineering/atmos) -"agI" = ( +"agH" = ( /obj/structure/sign/vacuum{ pixel_y = 32 }, /obj/effect/decal/cleanable/cobweb, /turf/simulated/floor/plating, /area/maintenance/engineering) -"agJ" = ( +"agI" = ( /obj/random/junk, /turf/simulated/floor/plating, /area/maintenance/engineering) -"agK" = ( +"agJ" = ( /obj/item/stack/cable_coil, /obj/effect/decal/cleanable/generic, /obj/effect/decal/cleanable/dirt, /turf/simulated/floor/plating, /area/maintenance/engineering) -"agL" = ( +"agK" = ( /obj/structure/grille, /obj/structure/window/reinforced, /obj/structure/window/reinforced{ @@ -3376,18 +3366,18 @@ /obj/machinery/door/firedoor, /turf/simulated/floor/plating, /area/maintenance/engineering) +"agL" = ( +/obj/structure/grille, +/obj/structure/window/reinforced, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/machinery/door/firedoor, +/turf/simulated/floor/plating, +/area/maintenance/engineering) "agM" = ( /obj/structure/grille, /obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/machinery/door/firedoor, -/turf/simulated/floor/plating, -/area/maintenance/engineering) -"agN" = ( -/obj/structure/grille, -/obj/structure/window/reinforced, /obj/structure/window/reinforced{ dir = 1 }, @@ -3397,7 +3387,7 @@ /obj/machinery/door/firedoor, /turf/simulated/floor/plating, /area/maintenance/engineering) -"agO" = ( +"agN" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/cable{ d1 = 1; @@ -3412,13 +3402,13 @@ }, /turf/simulated/floor/plating, /area/maintenance/security_starboard) -"agP" = ( +"agO" = ( /obj/structure/bed/chair{ dir = 1 }, /turf/simulated/floor/tiled, /area/security/brig) -"agQ" = ( +"agP" = ( /obj/machinery/atmospherics/pipe/manifold/hidden/supply{ dir = 8 }, @@ -3435,7 +3425,7 @@ /obj/structure/closet/walllocker/emerglocker/west, /turf/simulated/floor/tiled, /area/security/brig) -"agR" = ( +"agQ" = ( /obj/machinery/atmospherics/unary/vent_pump/on{ dir = 8 }, @@ -3446,7 +3436,7 @@ }, /turf/simulated/floor/tiled, /area/security/brig) -"agS" = ( +"agR" = ( /obj/structure/grille, /obj/structure/window/reinforced, /obj/structure/window/reinforced{ @@ -3458,12 +3448,12 @@ /obj/machinery/door/firedoor, /turf/simulated/floor/plating, /area/security/brig) -"agT" = ( +"agS" = ( /obj/effect/floor_decal/industrial/loading, /obj/effect/decal/cleanable/dirt, /turf/simulated/floor/tiled, /area/security/brig) -"agU" = ( +"agT" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ icon_state = "intact-scrubbers"; dir = 5 @@ -3473,7 +3463,7 @@ temperature = 278 }, /area/security/investigations) -"agV" = ( +"agU" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 10 }, @@ -3482,37 +3472,37 @@ temperature = 278 }, /area/security/investigations) -"agW" = ( +"agV" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/dirt, /obj/structure/closet, /obj/random/loot, /turf/simulated/floor/plating, /area/maintenance/security_starboard) -"agX" = ( +"agW" = ( /obj/machinery/computer/arcade, /turf/simulated/floor/wood, /area/maintenance/civ) -"agY" = ( +"agX" = ( /obj/machinery/constructable_frame/machine_frame, /turf/simulated/floor/wood, /area/maintenance/civ) -"agZ" = ( +"agY" = ( /obj/item/stack/tile/floor, /turf/simulated/floor/tiled, /area/maintenance/civ) -"aha" = ( +"agZ" = ( /obj/item/stack/rods, /obj/item/weapon/material/shard, /turf/simulated/floor/tiled, /area/maintenance/civ) -"ahb" = ( +"aha" = ( /turf/simulated/wall/r_wall, /area/engineering/engine_waste) -"ahc" = ( +"ahb" = ( /turf/simulated/wall/r_wall, /area/engineering/drone_fabrication) -"ahd" = ( +"ahc" = ( /obj/machinery/door/firedoor, /obj/structure/grille, /obj/structure/window/reinforced{ @@ -3528,12 +3518,12 @@ }, /turf/simulated/floor/plating, /area/engineering/atmos) -"ahe" = ( +"ahd" = ( /obj/machinery/atmospherics/portables_connector, /obj/effect/floor_decal/industrial/hatch/yellow, /turf/simulated/floor/tiled, /area/engineering/atmos) -"ahf" = ( +"ahe" = ( /obj/machinery/atmospherics/portables_connector, /obj/effect/floor_decal/industrial/hatch/yellow, /obj/structure/window/reinforced{ @@ -3541,7 +3531,7 @@ }, /turf/simulated/floor/tiled, /area/engineering/atmos) -"ahg" = ( +"ahf" = ( /obj/machinery/atmospherics/portables_connector, /obj/effect/floor_decal/industrial/hatch/yellow, /obj/structure/window/reinforced{ @@ -3550,7 +3540,7 @@ }, /turf/simulated/floor/tiled, /area/engineering/atmos) -"ahh" = ( +"ahg" = ( /obj/effect/floor_decal/industrial/hatch/yellow, /obj/machinery/atmospherics/portables_connector, /obj/structure/window/reinforced{ @@ -3561,7 +3551,7 @@ }, /turf/simulated/floor/tiled, /area/engineering/atmos) -"ahi" = ( +"ahh" = ( /obj/effect/floor_decal/industrial/hatch/yellow, /obj/machinery/atmospherics/portables_connector{ dir = 4 @@ -3572,7 +3562,7 @@ }, /turf/simulated/floor/tiled, /area/engineering/atmos) -"ahj" = ( +"ahi" = ( /obj/machinery/atmospherics/pipe/manifold/visible/cyan{ icon_state = "map"; dir = 1 @@ -3586,7 +3576,7 @@ }, /turf/simulated/floor/tiled, /area/engineering/atmos) -"ahk" = ( +"ahj" = ( /obj/machinery/atmospherics/pipe/zpipe/down/cyan{ icon_state = "down"; dir = 8 @@ -3595,7 +3585,7 @@ /obj/machinery/firealarm/east, /turf/simulated/open, /area/engineering/atmos) -"ahl" = ( +"ahk" = ( /obj/effect/decal/cleanable/dirt, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 6 @@ -3610,7 +3600,7 @@ }, /turf/simulated/floor/plating, /area/maintenance/engineering) -"ahm" = ( +"ahl" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, @@ -3624,7 +3614,7 @@ }, /turf/simulated/floor/plating, /area/maintenance/engineering) -"ahn" = ( +"ahm" = ( /obj/effect/decal/cleanable/dirt, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 @@ -3642,7 +3632,7 @@ }, /turf/simulated/floor/plating, /area/maintenance/engineering) -"aho" = ( +"ahn" = ( /obj/effect/decal/cleanable/dirt, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 @@ -3657,7 +3647,7 @@ }, /turf/simulated/floor/plating, /area/maintenance/engineering) -"ahp" = ( +"aho" = ( /obj/effect/decal/cleanable/dirt, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 @@ -3673,7 +3663,7 @@ /obj/machinery/door/firedoor, /turf/simulated/floor/plating, /area/maintenance/engineering) -"ahq" = ( +"ahp" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/dirt, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ @@ -3689,21 +3679,21 @@ }, /turf/simulated/floor/plating, /area/maintenance/engineering) +"ahq" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/maintenance/engineering) "ahr" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/maintenance/engineering) -"ahs" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, @@ -3722,10 +3712,10 @@ }, /turf/simulated/floor/plating, /area/maintenance/security_starboard) -"aht" = ( +"ahs" = ( /turf/simulated/wall/r_wall, /area/security/brig) -"ahu" = ( +"aht" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/structure/cable/green{ @@ -3744,7 +3734,7 @@ }, /turf/simulated/floor/tiled, /area/security/brig) -"ahv" = ( +"ahu" = ( /obj/effect/floor_decal/corner/blue/full{ dir = 1 }, @@ -3761,22 +3751,22 @@ }, /turf/simulated/floor/tiled, /area/security/brig) -"ahw" = ( +"ahv" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/spiderling_remains, /turf/simulated/floor/tiled, /area/security/brig) -"ahx" = ( +"ahw" = ( /obj/machinery/door/firedoor, /obj/effect/decal/cleanable/dirt, /turf/simulated/floor/tiled, /area/security/brig) -"ahy" = ( +"ahx" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/decal/remains/mouse, /turf/simulated/floor/tiled, /area/security/brig) -"ahz" = ( +"ahy" = ( /obj/structure/filingcabinet/filingcabinet{ desc = "A large cabinet with drawers. There seems to be a layer of dust covering it." }, @@ -3792,7 +3782,7 @@ temperature = 278 }, /area/security/investigations) -"ahA" = ( +"ahz" = ( /obj/item/weapon/stool/padded{ desc = "Apply butt. This particular stool looks tattered and old. Perhaps there have been budget cuts?"; name = "Tattered Stool" @@ -3802,7 +3792,7 @@ temperature = 278 }, /area/security/investigations) -"ahB" = ( +"ahA" = ( /obj/machinery/alarm/cold{ dir = 8; icon_state = "alarm0"; @@ -3815,7 +3805,7 @@ temperature = 278 }, /area/security/investigations) -"ahC" = ( +"ahB" = ( /obj/structure/disposalpipe/segment, /obj/structure/cable{ d1 = 1; @@ -3828,10 +3818,10 @@ /obj/machinery/door/firedoor, /turf/simulated/floor/plating, /area/maintenance/security_starboard) -"ahD" = ( +"ahC" = ( /turf/simulated/floor/wood, /area/maintenance/civ) -"ahE" = ( +"ahD" = ( /obj/structure/grille, /obj/structure/window/reinforced{ dir = 1 @@ -3840,14 +3830,14 @@ /obj/machinery/door/firedoor, /turf/simulated/floor/plating, /area/maintenance/civ) -"ahF" = ( +"ahE" = ( /obj/structure/grille, /obj/item/weapon/material/shard, /obj/structure/window/reinforced, /obj/machinery/door/firedoor, /turf/simulated/floor/plating, /area/maintenance/civ) -"ahG" = ( +"ahF" = ( /obj/structure/grille/broken, /obj/item/weapon/material/shard{ icon_state = "medium" @@ -3858,7 +3848,7 @@ /obj/machinery/door/firedoor, /turf/simulated/floor/plating, /area/maintenance/civ) -"ahH" = ( +"ahG" = ( /obj/structure/grille, /obj/structure/window/reinforced{ dir = 1 @@ -3869,12 +3859,12 @@ /obj/machinery/door/firedoor, /turf/simulated/floor/plating, /area/maintenance/civ) -"ahI" = ( +"ahH" = ( /obj/machinery/door/airlock/maintenance, /obj/machinery/door/firedoor, /turf/simulated/floor/plating, /area/maintenance/civ) -"ahJ" = ( +"ahI" = ( /obj/structure/grille, /obj/item/weapon/material/shard{ icon_state = "small" @@ -3888,7 +3878,7 @@ /obj/machinery/door/firedoor, /turf/simulated/floor/plating, /area/maintenance/civ) -"ahK" = ( +"ahJ" = ( /obj/item/stack/rods, /obj/item/weapon/material/shard{ icon_state = "small" @@ -3897,7 +3887,7 @@ /obj/random/junk, /turf/simulated/floor/plating, /area/maintenance/civ) -"ahL" = ( +"ahK" = ( /obj/structure/grille/broken, /obj/item/weapon/material/shard{ icon_state = "medium" @@ -3905,7 +3895,7 @@ /obj/machinery/door/firedoor, /turf/simulated/floor/plating, /area/maintenance/civ) -"ahM" = ( +"ahL" = ( /obj/structure/grille, /obj/structure/window/reinforced{ dir = 1 @@ -3917,7 +3907,7 @@ /obj/machinery/door/firedoor, /turf/simulated/floor/plating, /area/maintenance/civ) -"ahN" = ( +"ahM" = ( /obj/machinery/door/firedoor, /obj/machinery/door/airlock/maintenance{ name = "Maintenance Access"; @@ -3925,21 +3915,21 @@ }, /turf/simulated/floor/plating, /area/maintenance/civ) -"ahO" = ( +"ahN" = ( /obj/effect/floor_decal/industrial/warning{ icon_state = "warning"; dir = 4 }, /turf/simulated/floor/plating, /area/engineering/engine_waste) -"ahP" = ( +"ahO" = ( /obj/machinery/atmospherics/unary/freezer{ dir = 2; icon_state = "freezer" }, /turf/simulated/floor/plating, /area/engineering/engine_waste) -"ahQ" = ( +"ahP" = ( /obj/machinery/light{ dir = 1 }, @@ -3955,29 +3945,29 @@ }, /turf/simulated/floor/plating, /area/engineering/engine_waste) -"ahR" = ( +"ahQ" = ( /obj/effect/floor_decal/industrial/warning{ icon_state = "warning"; dir = 8 }, /turf/simulated/floor/plating, /area/engineering/engine_waste) -"ahS" = ( +"ahR" = ( /obj/machinery/computer/cryopod/robot{ pixel_y = 30 }, /turf/simulated/floor/plating, /area/engineering/drone_fabrication) -"ahT" = ( +"ahS" = ( /obj/machinery/drone_fabricator, /obj/effect/floor_decal/industrial/hatch/yellow, /turf/simulated/floor/plating, /area/engineering/drone_fabrication) -"ahU" = ( +"ahT" = ( /obj/effect/floor_decal/industrial/hatch/yellow, /turf/simulated/floor/plating, /area/engineering/drone_fabrication) -"ahV" = ( +"ahU" = ( /obj/machinery/alarm{ pixel_y = 22 }, @@ -3986,12 +3976,12 @@ }, /turf/simulated/floor/plating, /area/engineering/drone_fabrication) -"ahW" = ( +"ahV" = ( /obj/machinery/cryopod/robot, /obj/effect/floor_decal/industrial/hatch/yellow, /turf/simulated/floor/plating, /area/engineering/drone_fabrication) -"ahX" = ( +"ahW" = ( /obj/machinery/door/firedoor, /obj/structure/grille, /obj/structure/window/reinforced, @@ -4004,7 +3994,7 @@ }, /turf/simulated/floor/plating, /area/engineering/atmos) -"ahY" = ( +"ahX" = ( /obj/machinery/atmospherics/pipe/simple/visible/yellow{ icon_state = "intact"; dir = 5 @@ -4018,7 +4008,7 @@ }, /turf/simulated/floor/tiled, /area/engineering/atmos) -"ahZ" = ( +"ahY" = ( /obj/machinery/atmospherics/pipe/manifold/visible/yellow, /obj/effect/floor_decal/corner/yellow{ icon_state = "corner_white"; @@ -4029,7 +4019,7 @@ }, /turf/simulated/floor/tiled, /area/engineering/atmos) -"aia" = ( +"ahZ" = ( /obj/machinery/atmospherics/pipe/manifold/visible/yellow, /obj/effect/floor_decal/corner/yellow{ icon_state = "corner_white"; @@ -4040,7 +4030,7 @@ }, /turf/simulated/floor/tiled, /area/engineering/atmos) -"aib" = ( +"aia" = ( /obj/machinery/atmospherics/pipe/simple/visible/yellow{ dir = 4 }, @@ -4051,7 +4041,7 @@ }, /turf/simulated/floor/tiled, /area/engineering/atmos) -"aic" = ( +"aib" = ( /obj/machinery/atmospherics/pipe/simple/visible/yellow{ dir = 4 }, @@ -4064,7 +4054,7 @@ }, /turf/simulated/floor/tiled, /area/engineering/atmos) -"aid" = ( +"aic" = ( /obj/machinery/atmospherics/pipe/simple/visible/yellow{ dir = 4 }, @@ -4075,7 +4065,7 @@ }, /turf/simulated/floor/tiled, /area/engineering/atmos) -"aie" = ( +"aid" = ( /obj/machinery/atmospherics/pipe/zpipe/down/yellow{ dir = 8; pixel_x = 0 @@ -4087,7 +4077,7 @@ /obj/structure/lattice/catwalk, /turf/simulated/open, /area/engineering/atmos) -"aif" = ( +"aie" = ( /obj/effect/decal/cleanable/generic, /obj/effect/decal/cleanable/dirt, /obj/machinery/atmospherics/pipe/simple/hidden/supply, @@ -4099,21 +4089,21 @@ }, /turf/simulated/floor/plating, /area/maintenance/engineering) -"aig" = ( +"aif" = ( /obj/structure/bed, /obj/structure/sign/nosmoking_1{ pixel_y = 32 }, /turf/simulated/floor/plating, /area/security/brig) -"aih" = ( +"aig" = ( /obj/machinery/atmospherics/unary/vent_pump/on, /obj/machinery/newscaster{ pixel_x = 27 }, /turf/simulated/floor/plating, /area/security/brig) -"aii" = ( +"aih" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/structure/cable/green{ @@ -4132,11 +4122,11 @@ }, /turf/simulated/floor/tiled, /area/security/brig) -"aij" = ( +"aii" = ( /obj/structure/disposalpipe/segment, /turf/simulated/floor/tiled, /area/security/brig) -"aik" = ( +"aij" = ( /obj/machinery/light_switch{ pixel_x = 0; pixel_y = -24 @@ -4144,7 +4134,7 @@ /obj/effect/decal/cleanable/dirt, /turf/simulated/floor/tiled, /area/security/brig) -"ail" = ( +"aik" = ( /obj/structure/grille, /obj/structure/window/reinforced, /obj/structure/window/reinforced{ @@ -4153,12 +4143,12 @@ /obj/machinery/door/firedoor, /turf/simulated/floor/plating, /area/security/brig) -"aim" = ( +"ail" = ( /obj/effect/floor_decal/industrial/hatch/yellow, /obj/effect/decal/cleanable/dirt, /turf/simulated/floor/tiled, /area/security/brig) -"ain" = ( +"aim" = ( /obj/structure/table/standard, /obj/item/weapon/paper_bin, /obj/item/weapon/pen, @@ -4167,7 +4157,7 @@ temperature = 278 }, /area/security/investigations) -"aio" = ( +"ain" = ( /obj/structure/table/standard, /obj/item/weapon/folder/sec, /turf/simulated/floor/tiled/dark{ @@ -4175,7 +4165,7 @@ temperature = 278 }, /area/security/investigations) -"aip" = ( +"aio" = ( /obj/structure/plasticflaps/airtight, /obj/machinery/door/airlock/security{ name = "Evidence Storage"; @@ -4187,7 +4177,7 @@ temperature = 278 }, /area/security/investigations) -"aiq" = ( +"aip" = ( /obj/effect/floor_decal/corner/blue{ icon_state = "corner_white"; dir = 9 @@ -4198,7 +4188,7 @@ /obj/machinery/atmospherics/unary/vent_scrubber/on, /turf/simulated/floor/tiled, /area/security/investigations) -"air" = ( +"aiq" = ( /obj/machinery/firealarm/north, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ icon_state = "intact-supply"; @@ -4218,7 +4208,7 @@ }, /turf/simulated/floor/tiled, /area/security/investigations) -"ais" = ( +"air" = ( /obj/structure/window/reinforced, /obj/machinery/atmospherics/pipe/zpipe/up/scrubbers{ icon_state = "up-scrubbers"; @@ -4241,10 +4231,10 @@ }, /turf/simulated/floor/plating, /area/security/investigations) -"ait" = ( +"ais" = ( /turf/simulated/wall, /area/security/investigations) -"aiu" = ( +"ait" = ( /obj/item/stack/tile/wood, /obj/effect/decal/cleanable/cobweb2{ icon_state = "cobweb1" @@ -4252,24 +4242,24 @@ /obj/effect/decal/cleanable/dirt, /turf/simulated/floor/plating, /area/maintenance/civ) -"aiv" = ( +"aiu" = ( /obj/item/weapon/storage/toolbox, /turf/simulated/floor/plating, /area/maintenance/civ) -"aiw" = ( +"aiv" = ( /obj/machinery/door/airlock/maintenance, /obj/machinery/door/firedoor, /turf/simulated/floor/wood, /area/maintenance/civ) -"aix" = ( +"aiw" = ( /obj/random/junk, /turf/simulated/floor/plating, /area/maintenance/civ) -"aiy" = ( +"aix" = ( /obj/item/weapon/material/shard, /turf/simulated/floor/tiled, /area/maintenance/civ) -"aiz" = ( +"aiy" = ( /obj/structure/grille, /obj/structure/window/reinforced, /obj/structure/window/reinforced{ @@ -4284,24 +4274,24 @@ /obj/machinery/door/firedoor, /turf/simulated/floor/plating, /area/maintenance/civ) -"aiA" = ( +"aiz" = ( /obj/machinery/portable_atmospherics/hydroponics, /turf/simulated/floor/tiled, /area/maintenance/civ) -"aiB" = ( +"aiA" = ( /obj/effect/decal/cleanable/cobweb2, /obj/effect/decal/cleanable/dirt, /obj/machinery/portable_atmospherics/hydroponics, /turf/simulated/floor/tiled, /area/maintenance/civ) -"aiC" = ( +"aiB" = ( /obj/effect/floor_decal/industrial/warning/corner{ icon_state = "warningcorner"; dir = 4 }, /turf/simulated/floor/plating, /area/engineering/engine_waste) -"aiD" = ( +"aiC" = ( /obj/machinery/atmospherics/pipe/simple/visible/black{ dir = 5 }, @@ -4311,7 +4301,7 @@ }, /turf/simulated/floor/plating, /area/engineering/engine_waste) -"aiE" = ( +"aiD" = ( /obj/machinery/atmospherics/pipe/manifold4w/visible/black, /obj/machinery/meter, /obj/effect/floor_decal/industrial/warning{ @@ -4320,7 +4310,7 @@ }, /turf/simulated/floor/plating, /area/engineering/engine_waste) -"aiF" = ( +"aiE" = ( /obj/machinery/atmospherics/pipe/simple/visible/black{ dir = 9 }, @@ -4330,7 +4320,7 @@ }, /turf/simulated/floor/plating, /area/engineering/engine_waste) -"aiG" = ( +"aiF" = ( /obj/machinery/atmospherics/unary/vent_pump/on, /obj/effect/floor_decal/industrial/warning/corner{ icon_state = "warningcorner"; @@ -4338,7 +4328,7 @@ }, /turf/simulated/floor/plating, /area/engineering/engine_waste) -"aiH" = ( +"aiG" = ( /obj/structure/sign/securearea{ desc = "A warning sign which reads 'RADIOACTIVE AREA'"; icon_state = "radiation"; @@ -4348,28 +4338,28 @@ }, /turf/simulated/wall/r_wall, /area/engineering/drone_fabrication) -"aiI" = ( +"aiH" = ( /turf/simulated/floor/plating, /area/engineering/drone_fabrication) -"aiJ" = ( +"aiI" = ( /obj/machinery/computer/drone_control, /turf/simulated/floor/plating, /area/engineering/drone_fabrication) -"aiK" = ( +"aiJ" = ( /obj/structure/bed/chair{ dir = 8 }, /turf/simulated/floor/plating, /area/engineering/drone_fabrication) -"aiL" = ( +"aiK" = ( /obj/machinery/recharge_station, /obj/effect/floor_decal/industrial/hatch/yellow, /turf/simulated/floor/plating, /area/engineering/drone_fabrication) -"aiM" = ( +"aiL" = ( /turf/simulated/wall/r_wall, /area/maintenance/atmos_control) -"aiN" = ( +"aiM" = ( /obj/structure/sign/securearea{ desc = "A warning sign which reads 'HIGH VOLTAGE'"; icon_state = "shock"; @@ -4378,7 +4368,7 @@ }, /turf/simulated/wall/r_wall, /area/maintenance/atmos_control) -"aiO" = ( +"aiN" = ( /obj/machinery/atmospherics/unary/vent_scrubber/on{ dir = 1 }, @@ -4398,7 +4388,7 @@ }, /turf/simulated/floor/tiled, /area/engineering/atmos) -"aiP" = ( +"aiO" = ( /obj/machinery/alarm{ dir = 1; pixel_y = -22 @@ -4413,7 +4403,7 @@ }, /turf/simulated/floor/tiled, /area/engineering/atmos) -"aiQ" = ( +"aiP" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, @@ -4427,7 +4417,7 @@ }, /turf/simulated/floor/tiled, /area/engineering/atmos) -"aiR" = ( +"aiQ" = ( /obj/machinery/atmospherics/pipe/simple/visible/red{ icon_state = "intact"; dir = 5 @@ -4446,7 +4436,7 @@ }, /turf/simulated/floor/tiled, /area/engineering/atmos) -"aiS" = ( +"aiR" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 10 }, @@ -4461,7 +4451,7 @@ /obj/machinery/atmospherics/pipe/manifold4w/visible/red, /turf/simulated/floor/tiled, /area/engineering/atmos) -"aiT" = ( +"aiS" = ( /obj/machinery/atmospherics/pipe/simple/visible/red{ dir = 4 }, @@ -4470,7 +4460,7 @@ }, /turf/simulated/floor/tiled, /area/engineering/atmos) -"aiU" = ( +"aiT" = ( /obj/machinery/atmospherics/pipe/simple/visible/red{ dir = 4 }, @@ -4481,7 +4471,7 @@ }, /turf/simulated/floor/tiled, /area/engineering/atmos) -"aiV" = ( +"aiU" = ( /obj/machinery/atmospherics/pipe/zpipe/down/red{ icon_state = "down"; dir = 8 @@ -4489,7 +4479,7 @@ /obj/structure/lattice/catwalk, /turf/simulated/open, /area/engineering/atmos) -"aiW" = ( +"aiV" = ( /obj/effect/decal/cleanable/dirt, /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, @@ -4500,10 +4490,10 @@ }, /turf/simulated/floor/plating, /area/maintenance/engineering) -"aiX" = ( +"aiW" = ( /turf/simulated/wall/r_wall, /area/maintenance/security_starboard) -"aiY" = ( +"aiX" = ( /obj/machinery/light/small{ dir = 8 }, @@ -4514,7 +4504,7 @@ }, /turf/simulated/floor/plating, /area/security/brig) -"aiZ" = ( +"aiY" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 5 }, @@ -4526,7 +4516,7 @@ }, /turf/simulated/floor/plating, /area/security/brig) -"aja" = ( +"aiZ" = ( /obj/machinery/door/airlock/glass_security{ name = "Solitary Confinement 2"; req_access = list(2) @@ -4540,7 +4530,7 @@ /obj/machinery/door/firedoor, /turf/simulated/floor/plating, /area/security/brig) -"ajb" = ( +"aja" = ( /obj/structure/disposalpipe/segment, /obj/effect/floor_decal/corner/blue{ icon_state = "corner_white"; @@ -4553,13 +4543,13 @@ }, /turf/simulated/floor/tiled, /area/security/brig) -"ajc" = ( +"ajb" = ( /turf/simulated/wall, /area/security/main) -"ajd" = ( +"ajc" = ( /turf/simulated/wall/r_wall, /area/security/main) -"aje" = ( +"ajd" = ( /obj/structure/window/reinforced{ icon_state = "rwindow"; dir = 1 @@ -4572,7 +4562,7 @@ temperature = 278 }, /area/security/investigations) -"ajf" = ( +"aje" = ( /obj/structure/window/reinforced{ icon_state = "rwindow"; dir = 1 @@ -4585,7 +4575,7 @@ temperature = 278 }, /area/security/investigations) -"ajg" = ( +"ajf" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 10 }, @@ -4595,7 +4585,7 @@ temperature = 278 }, /area/security/investigations) -"ajh" = ( +"ajg" = ( /obj/effect/floor_decal/corner/blue{ icon_state = "corner_white"; dir = 9 @@ -4616,7 +4606,7 @@ }, /turf/simulated/floor/tiled, /area/security/investigations) -"aji" = ( +"ajh" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ icon_state = "intact-scrubbers"; @@ -4630,7 +4620,7 @@ /obj/structure/disposalpipe/segment, /turf/simulated/floor/tiled, /area/security/investigations) -"ajj" = ( +"aji" = ( /obj/structure/closet/crate{ name = "Case Folders Crate" }, @@ -4646,21 +4636,21 @@ /obj/effect/decal/cleanable/dirt, /turf/simulated/floor/tiled, /area/security/investigations) -"ajk" = ( +"ajj" = ( /obj/structure/table/wood, /turf/simulated/floor/wood, /area/maintenance/civ) -"ajl" = ( +"ajk" = ( /obj/item/stack/material/wood, /obj/random/loot, /turf/simulated/floor/wood, /area/maintenance/civ) -"ajm" = ( +"ajl" = ( /obj/effect/decal/cleanable/generic, /obj/effect/decal/cleanable/dirt, /turf/simulated/floor/wood, /area/maintenance/civ) -"ajn" = ( +"ajm" = ( /obj/structure/grille/broken, /obj/item/stack/rods, /obj/item/weapon/material/shard{ @@ -4672,24 +4662,24 @@ /obj/machinery/door/firedoor, /turf/simulated/floor/plating, /area/maintenance/civ) -"ajo" = ( +"ajn" = ( /obj/effect/decal/cleanable/dirt, /obj/item/stack/rods, /obj/random/junk, /turf/simulated/floor/plating, /area/maintenance/civ) -"ajp" = ( +"ajo" = ( /turf/simulated/floor/plating, /area/engineering/engine_waste) -"ajq" = ( +"ajp" = ( /obj/machinery/atmospherics/pipe/simple/visible/black, /turf/simulated/floor/plating, /area/engineering/engine_waste) -"ajr" = ( +"ajq" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /turf/simulated/floor/plating, /area/engineering/engine_waste) -"ajs" = ( +"ajr" = ( /obj/machinery/power/apc{ dir = 8; name = "west bump"; @@ -4705,7 +4695,7 @@ }, /turf/simulated/floor/plating, /area/engineering/drone_fabrication) -"ajt" = ( +"ajs" = ( /obj/structure/cable{ d1 = 4; d2 = 8; @@ -4722,7 +4712,7 @@ }, /turf/simulated/floor/plating, /area/engineering/drone_fabrication) -"aju" = ( +"ajt" = ( /obj/structure/cable{ d1 = 4; d2 = 8; @@ -4734,7 +4724,7 @@ }, /turf/simulated/floor/plating, /area/engineering/drone_fabrication) -"ajv" = ( +"aju" = ( /obj/structure/cable{ d1 = 2; d2 = 8; @@ -4742,7 +4732,7 @@ }, /turf/simulated/floor/plating, /area/engineering/drone_fabrication) -"ajw" = ( +"ajv" = ( /obj/machinery/atmospherics/unary/vent_pump/on, /obj/machinery/light{ dir = 4; @@ -4755,16 +4745,16 @@ }, /turf/simulated/floor/plating, /area/engineering/drone_fabrication) -"ajx" = ( +"ajw" = ( /turf/simulated/floor/plating, /area/maintenance/atmos_control) -"ajy" = ( +"ajx" = ( /obj/machinery/alarm{ pixel_y = 22 }, /turf/simulated/floor/plating, /area/maintenance/atmos_control) -"ajz" = ( +"ajy" = ( /obj/machinery/light{ dir = 1 }, @@ -4773,7 +4763,7 @@ }, /turf/simulated/floor/plating, /area/maintenance/atmos_control) -"ajA" = ( +"ajz" = ( /obj/machinery/light{ dir = 1; icon_state = "tube1"; @@ -4781,7 +4771,7 @@ }, /turf/simulated/floor/plating, /area/maintenance/atmos_control) -"ajB" = ( +"ajA" = ( /obj/machinery/door/airlock/maintenance{ name = "Atmospherics Maintenance Access"; req_access = list(24) @@ -4794,7 +4784,7 @@ }, /turf/simulated/floor/plating, /area/maintenance/atmos_control) -"ajC" = ( +"ajB" = ( /obj/machinery/door/airlock/glass_atmos{ name = "Port Station"; req_access = list(24) @@ -4810,7 +4800,7 @@ }, /turf/simulated/floor/tiled, /area/engineering/atmos) -"ajD" = ( +"ajC" = ( /obj/machinery/door/firedoor, /obj/structure/grille, /obj/structure/window/reinforced, @@ -4828,7 +4818,7 @@ }, /turf/simulated/floor/plating, /area/engineering/atmos) -"ajE" = ( +"ajD" = ( /obj/machinery/door/firedoor, /obj/structure/grille, /obj/structure/window/reinforced, @@ -4842,26 +4832,26 @@ }, /turf/simulated/floor/plating, /area/engineering/atmos) -"ajF" = ( +"ajE" = ( /turf/simulated/wall/r_wall, /area/engineering/atmos/storage) -"ajG" = ( +"ajF" = ( /turf/simulated/wall/r_wall, /area/security/armoury) -"ajH" = ( +"ajG" = ( /obj/structure/table/standard, /obj/item/weapon/paper, /obj/item/weapon/pen, /turf/simulated/floor/plating, /area/security/brig) -"ajI" = ( +"ajH" = ( /obj/item/weapon/stool, /obj/machinery/atmospherics/unary/vent_scrubber/on{ dir = 1 }, /turf/simulated/floor/plating, /area/security/brig) -"ajJ" = ( +"ajI" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/structure/cable/green{ @@ -4876,7 +4866,7 @@ /obj/machinery/firealarm/west, /turf/simulated/floor/tiled, /area/security/brig) -"ajK" = ( +"ajJ" = ( /obj/machinery/door/firedoor, /obj/structure/grille, /obj/structure/window/reinforced, @@ -4897,7 +4887,7 @@ }, /turf/simulated/floor/plating, /area/security/main) -"ajL" = ( +"ajK" = ( /obj/structure/table/standard, /obj/machinery/recharger/wallcharger{ pixel_y = 24 @@ -4916,7 +4906,7 @@ }, /turf/simulated/floor/tiled, /area/security/main) -"ajM" = ( +"ajL" = ( /obj/structure/table/standard, /obj/machinery/recharger/wallcharger{ pixel_y = 24 @@ -4931,7 +4921,7 @@ }, /turf/simulated/floor/tiled, /area/security/main) -"ajN" = ( +"ajM" = ( /obj/structure/table/standard, /obj/item/device/flashlight/maglight, /obj/item/device/flashlight/maglight, @@ -4951,12 +4941,12 @@ }, /turf/simulated/floor/tiled, /area/security/main) -"ajO" = ( +"ajN" = ( /obj/machinery/vending/security, /obj/effect/floor_decal/industrial/hatch/yellow, /turf/simulated/floor/tiled, /area/security/main) -"ajP" = ( +"ajO" = ( /obj/structure/closet/secure_closet/security, /obj/structure/window/reinforced{ icon_state = "rwindow"; @@ -4965,7 +4955,7 @@ /obj/effect/floor_decal/industrial/outline/yellow, /turf/simulated/floor/tiled/dark, /area/security/main) -"ajQ" = ( +"ajP" = ( /obj/structure/closet/secure_closet/security, /obj/effect/floor_decal/industrial/outline/yellow, /obj/machinery/status_display{ @@ -4974,19 +4964,19 @@ }, /turf/simulated/floor/tiled/dark, /area/security/main) -"ajR" = ( +"ajQ" = ( /obj/structure/closet/secure_closet/security, /obj/effect/floor_decal/industrial/outline/yellow, /turf/simulated/floor/tiled/dark, /area/security/main) -"ajS" = ( +"ajR" = ( /obj/effect/floor_decal/industrial/outline/grey, /turf/simulated/floor/tiled/dark{ name = "cooled dark floor"; temperature = 278 }, /area/security/investigations) -"ajT" = ( +"ajS" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/machinery/light{ @@ -4999,7 +4989,7 @@ temperature = 278 }, /area/security/investigations) -"ajU" = ( +"ajT" = ( /obj/effect/floor_decal/corner/blue{ icon_state = "corner_white"; dir = 9 @@ -5029,7 +5019,7 @@ }, /turf/simulated/floor/tiled, /area/security/investigations) -"ajV" = ( +"ajU" = ( /obj/machinery/atmospherics/pipe/manifold/hidden/supply, /obj/structure/cable/green{ d1 = 1; @@ -5042,7 +5032,7 @@ }, /turf/simulated/floor/tiled, /area/security/investigations) -"ajW" = ( +"ajV" = ( /obj/effect/floor_decal/corner/blue{ icon_state = "corner_white"; dir = 6 @@ -5061,15 +5051,15 @@ }, /turf/simulated/floor/tiled, /area/security/investigations) -"ajX" = ( +"ajW" = ( /obj/structure/table/wood, /turf/simulated/floor/plating, /area/maintenance/civ) -"ajY" = ( +"ajX" = ( /obj/item/stack/tile/wood, /turf/simulated/floor/plating, /area/maintenance/civ) -"ajZ" = ( +"ajY" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/dirt, @@ -5078,32 +5068,32 @@ }, /turf/simulated/floor/wood, /area/maintenance/civ) -"aka" = ( +"ajZ" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/dirt, /obj/structure/table/rack, /obj/random/loot, /turf/simulated/floor/plating, /area/maintenance/civ) +"aka" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/table/rack, +/obj/random/loot, +/turf/simulated/floor/plating, +/area/maintenance/civ) "akb" = ( /obj/effect/decal/cleanable/dirt, -/obj/structure/table/rack, -/obj/random/loot, -/turf/simulated/floor/plating, -/area/maintenance/civ) -"akc" = ( -/obj/effect/decal/cleanable/dirt, /obj/structure/closet/crate, /obj/random/loot, /turf/simulated/floor/tiled, /area/maintenance/civ) -"akd" = ( +"akc" = ( /obj/item/stack/tile/floor, /obj/structure/reagent_dispensers/watertank, /obj/effect/decal/cleanable/dirt, /turf/simulated/floor/tiled, /area/maintenance/civ) -"ake" = ( +"akd" = ( /obj/machinery/alarm{ dir = 4; icon_state = "alarm0"; @@ -5112,25 +5102,25 @@ }, /turf/simulated/floor/plating, /area/engineering/engine_waste) -"akf" = ( +"ake" = ( /obj/machinery/atmospherics/pipe/simple/visible/black{ dir = 6 }, /turf/simulated/floor/plating, /area/engineering/engine_waste) -"akg" = ( +"akf" = ( /obj/machinery/atmospherics/pipe/manifold/visible/black{ dir = 4 }, /turf/simulated/floor/plating, /area/engineering/engine_waste) -"akh" = ( +"akg" = ( /obj/machinery/atmospherics/unary/vent_scrubber/on{ dir = 4 }, /turf/simulated/floor/plating, /area/engineering/engine_waste) -"aki" = ( +"akh" = ( /obj/structure/cable{ d1 = 2; d2 = 4; @@ -5144,7 +5134,7 @@ }, /turf/simulated/floor/plating, /area/engineering/engine_waste) -"akj" = ( +"aki" = ( /obj/machinery/door/airlock/maintenance{ name = "Drone Fabrication/Engine Waste Handling"; req_one_access = list(11,24) @@ -5167,7 +5157,7 @@ }, /turf/simulated/floor/plating, /area/engineering/drone_fabrication) -"akk" = ( +"akj" = ( /obj/structure/cable{ d1 = 4; d2 = 8; @@ -5182,7 +5172,7 @@ }, /turf/simulated/floor/plating, /area/engineering/drone_fabrication) -"akl" = ( +"akk" = ( /obj/structure/cable{ d1 = 1; d2 = 8; @@ -5196,14 +5186,14 @@ }, /turf/simulated/floor/plating, /area/engineering/drone_fabrication) -"akm" = ( +"akl" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, /obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, /turf/simulated/floor/plating, /area/engineering/drone_fabrication) -"akn" = ( +"akm" = ( /obj/structure/cable{ d1 = 1; d2 = 2; @@ -5223,7 +5213,7 @@ }, /turf/simulated/floor/plating, /area/engineering/drone_fabrication) -"ako" = ( +"akn" = ( /obj/structure/cable{ d1 = 4; d2 = 8; @@ -5236,7 +5226,7 @@ }, /turf/simulated/floor/plating, /area/engineering/drone_fabrication) -"akp" = ( +"ako" = ( /obj/machinery/door/airlock/maintenance{ name = "Drone Fabrication"; req_one_access = list(11,24) @@ -5259,7 +5249,7 @@ }, /turf/simulated/floor/plating, /area/engineering/drone_fabrication) -"akq" = ( +"akp" = ( /obj/structure/cable{ d1 = 4; d2 = 8; @@ -5274,6 +5264,21 @@ }, /turf/simulated/floor/plating, /area/maintenance/atmos_control) +"akq" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 + }, +/turf/simulated/floor/plating, +/area/maintenance/atmos_control) "akr" = ( /obj/structure/cable{ d1 = 4; @@ -5281,24 +5286,9 @@ icon_state = "4-8"; pixel_x = 0 }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 10 - }, /turf/simulated/floor/plating, /area/maintenance/atmos_control) "aks" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 - }, -/turf/simulated/floor/plating, -/area/maintenance/atmos_control) -"akt" = ( /obj/machinery/door/airlock/maintenance{ name = "Atmospherics Maintenance Access"; req_access = null; @@ -5313,7 +5303,7 @@ }, /turf/simulated/floor/plating, /area/maintenance/atmos_control) -"aku" = ( +"akt" = ( /obj/structure/cable{ d1 = 1; d2 = 8; @@ -5321,7 +5311,7 @@ }, /turf/simulated/floor/plating, /area/maintenance/atmos_control) -"akv" = ( +"aku" = ( /obj/structure/cable/green{ d2 = 4; icon_state = "0-4" @@ -5334,7 +5324,7 @@ }, /turf/simulated/floor/plating, /area/maintenance/atmos_control) -"akw" = ( +"akv" = ( /obj/machinery/power/sensor{ name = "Powernet Sensor - Atmospherics Subgrid"; name_tag = "Atmospherics Subgrid" @@ -5350,7 +5340,7 @@ /obj/structure/cable/green, /turf/simulated/floor/plating, /area/maintenance/atmos_control) -"akx" = ( +"akw" = ( /obj/effect/floor_decal/corner/yellow{ icon_state = "corner_white"; dir = 4 @@ -5360,7 +5350,7 @@ /obj/item/device/suit_cooling_unit, /turf/simulated/floor/tiled, /area/engineering/atmos/storage) -"aky" = ( +"akx" = ( /obj/effect/floor_decal/corner/yellow{ icon_state = "corner_white"; dir = 5 @@ -5373,7 +5363,7 @@ /obj/item/weapon/storage/briefcase/inflatable, /turf/simulated/floor/tiled, /area/engineering/atmos/storage) -"akz" = ( +"aky" = ( /obj/effect/floor_decal/corner/yellow{ icon_state = "corner_white"; dir = 5 @@ -5392,7 +5382,7 @@ }, /turf/simulated/floor/tiled, /area/engineering/atmos/storage) -"akA" = ( +"akz" = ( /obj/effect/floor_decal/corner/yellow{ icon_state = "corner_white"; dir = 5 @@ -5411,7 +5401,7 @@ }, /turf/simulated/floor/tiled, /area/engineering/atmos/storage) -"akB" = ( +"akA" = ( /obj/structure/window/reinforced{ icon_state = "rwindow"; dir = 8 @@ -5419,11 +5409,11 @@ /obj/structure/window/reinforced, /turf/simulated/open, /area/engineering/atmos/storage) -"akC" = ( +"akB" = ( /obj/structure/window/reinforced, /turf/simulated/open, /area/engineering/atmos/storage) -"akD" = ( +"akC" = ( /obj/machinery/atmospherics/unary/vent_scrubber/on, /obj/machinery/light{ icon_state = "tube1"; @@ -5438,7 +5428,7 @@ }, /turf/simulated/floor/tiled, /area/engineering/atmos/storage) -"akE" = ( +"akD" = ( /obj/machinery/newscaster{ pixel_x = 27 }, @@ -5448,7 +5438,7 @@ }, /turf/simulated/floor/tiled, /area/engineering/atmos/storage) -"akF" = ( +"akE" = ( /obj/structure/cable{ d1 = 1; d2 = 2; @@ -5459,7 +5449,7 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/plating, /area/maintenance/engineering) -"akG" = ( +"akF" = ( /obj/structure/disposalpipe/sortjunction/flipped{ dir = 2; name = "Security"; @@ -5467,7 +5457,7 @@ }, /turf/simulated/floor/tiled, /area/security/brig) -"akH" = ( +"akG" = ( /obj/machinery/door/firedoor, /obj/structure/cable/green{ d1 = 2; @@ -5488,7 +5478,7 @@ }, /turf/simulated/floor/tiled, /area/security/main) -"akI" = ( +"akH" = ( /obj/effect/floor_decal/corner/blue{ icon_state = "corner_white"; dir = 9 @@ -5503,7 +5493,7 @@ }, /turf/simulated/floor/tiled, /area/security/main) -"akJ" = ( +"akI" = ( /obj/structure/cable/green{ d1 = 4; d2 = 8; @@ -5514,7 +5504,7 @@ }, /turf/simulated/floor/tiled, /area/security/main) -"akK" = ( +"akJ" = ( /obj/structure/cable/green{ d1 = 2; d2 = 8; @@ -5530,13 +5520,13 @@ }, /turf/simulated/floor/tiled, /area/security/main) -"akL" = ( +"akK" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, /turf/simulated/floor/tiled, /area/security/main) -"akM" = ( +"akL" = ( /obj/effect/floor_decal/corner/blue{ icon_state = "corner_white"; dir = 9 @@ -5549,13 +5539,13 @@ }, /turf/simulated/floor/tiled/dark, /area/security/main) -"akN" = ( +"akM" = ( /obj/effect/floor_decal/corner/blue{ dir = 5 }, /turf/simulated/floor/tiled/dark, /area/security/main) -"akO" = ( +"akN" = ( /obj/effect/floor_decal/corner/blue{ dir = 5 }, @@ -5569,7 +5559,7 @@ }, /turf/simulated/floor/tiled/dark, /area/security/main) -"akP" = ( +"akO" = ( /obj/structure/morgue{ icon_state = "morgue1"; dir = 1 @@ -5579,7 +5569,7 @@ temperature = 278 }, /area/security/investigations) -"akQ" = ( +"akP" = ( /obj/structure/morgue{ icon_state = "morgue1"; dir = 1 @@ -5593,7 +5583,7 @@ temperature = 278 }, /area/security/investigations) -"akR" = ( +"akQ" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/tiled/dark{ @@ -5601,7 +5591,7 @@ temperature = 278 }, /area/security/investigations) -"akS" = ( +"akR" = ( /obj/effect/floor_decal/corner/blue{ icon_state = "corner_white"; dir = 9 @@ -5616,14 +5606,14 @@ /obj/structure/disposalpipe/segment, /turf/simulated/floor/tiled, /area/security/investigations) -"akT" = ( +"akS" = ( /obj/structure/window/reinforced{ icon_state = "rwindow"; dir = 1 }, /turf/simulated/floor/tiled, /area/security/investigations) -"akU" = ( +"akT" = ( /obj/structure/stairs/east, /obj/structure/window/reinforced{ icon_state = "rwindow"; @@ -5631,12 +5621,12 @@ }, /turf/simulated/floor/tiled, /area/security/investigations) -"akV" = ( +"akU" = ( /obj/item/stack/tile/wood, /obj/effect/decal/cleanable/generic, /turf/simulated/floor/plating, /area/maintenance/civ) -"akW" = ( +"akV" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/dirt, /obj/structure/sign/flag/hegemony{ @@ -5645,7 +5635,7 @@ }, /turf/simulated/floor/wood, /area/maintenance/civ) -"akX" = ( +"akW" = ( /obj/structure/grille, /obj/structure/window/reinforced{ dir = 8 @@ -5659,26 +5649,26 @@ /obj/machinery/door/firedoor, /turf/simulated/floor/plating, /area/maintenance/civ) -"akY" = ( +"akX" = ( /obj/effect/decal/cleanable/dirt, /obj/random/junk, /turf/simulated/floor/plating, /area/maintenance/civ) -"akZ" = ( +"akY" = ( /obj/effect/decal/cleanable/generic, /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/dirt, /turf/simulated/floor/tiled, /area/maintenance/civ) -"ala" = ( +"akZ" = ( /obj/machinery/portable_atmospherics/hydroponics, /obj/random/junk, /turf/simulated/floor/tiled, /area/maintenance/civ) -"alb" = ( +"ala" = ( /turf/simulated/wall/r_wall, /area/engineering/engine_room) -"alc" = ( +"alb" = ( /obj/machinery/atmospherics/binary/pump{ dir = 1; name = "Waste Pump" @@ -5695,7 +5685,7 @@ }, /turf/simulated/floor/plating, /area/engineering/engine_waste) -"ald" = ( +"alc" = ( /obj/machinery/atmospherics/pipe/simple/visible/black{ dir = 5 }, @@ -5709,7 +5699,7 @@ }, /turf/simulated/floor/plating, /area/engineering/engine_waste) -"ale" = ( +"ald" = ( /obj/machinery/atmospherics/portables_connector{ dir = 8 }, @@ -5726,7 +5716,7 @@ }, /turf/simulated/floor/plating, /area/engineering/engine_waste) -"alf" = ( +"ale" = ( /obj/machinery/power/apc{ dir = 4; name = "east bump"; @@ -5735,7 +5725,7 @@ /obj/structure/cable, /turf/simulated/floor/plating, /area/engineering/engine_waste) -"alg" = ( +"alf" = ( /obj/structure/cable{ d1 = 1; d2 = 2; @@ -5744,7 +5734,7 @@ }, /turf/simulated/floor/plating, /area/engineering/drone_fabrication) -"alh" = ( +"alg" = ( /obj/machinery/door/airlock/maintenance{ req_access = list(11); req_one_access = null @@ -5754,7 +5744,7 @@ /obj/machinery/door/firedoor, /turf/simulated/floor/tiled, /area/maintenance/atmos_control) -"ali" = ( +"alh" = ( /obj/structure/cable{ d1 = 1; d2 = 4; @@ -5762,7 +5752,7 @@ }, /turf/simulated/floor/plating, /area/maintenance/atmos_control) -"alj" = ( +"ali" = ( /obj/machinery/power/terminal{ dir = 4 }, @@ -5772,7 +5762,7 @@ }, /turf/simulated/floor/plating, /area/maintenance/atmos_control) -"alk" = ( +"alj" = ( /obj/machinery/power/smes/buildable{ charge = 2e+006; input_attempt = 1; @@ -5782,7 +5772,7 @@ /obj/structure/cable/green, /turf/simulated/floor/plating, /area/maintenance/atmos_control) -"all" = ( +"alk" = ( /obj/structure/table/standard, /obj/item/device/multitool, /obj/structure/fireaxecabinet{ @@ -5790,20 +5780,20 @@ }, /turf/simulated/floor/tiled, /area/engineering/atmos/storage) -"alm" = ( +"all" = ( /obj/machinery/atmospherics/unary/vent_pump/on{ dir = 4 }, /turf/simulated/floor/tiled, /area/engineering/atmos/storage) -"aln" = ( +"alm" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, /obj/machinery/atmospherics/pipe/simple/hidden/red, /turf/simulated/floor/tiled, /area/engineering/atmos/storage) -"alo" = ( +"aln" = ( /obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ icon_state = "map-scrubbers"; dir = 8 @@ -5819,7 +5809,7 @@ /obj/machinery/atmospherics/pipe/simple/hidden/cyan, /turf/simulated/floor/tiled, /area/engineering/atmos/storage) -"alp" = ( +"alo" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 }, @@ -5827,7 +5817,7 @@ /obj/machinery/pipedispenser, /turf/simulated/floor/tiled, /area/engineering/atmos/storage) -"alq" = ( +"alp" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 }, @@ -5835,14 +5825,14 @@ /obj/machinery/pipedispenser/disposal, /turf/simulated/floor/tiled, /area/engineering/atmos/storage) -"alr" = ( +"alq" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ icon_state = "intact-scrubbers"; dir = 9 }, /turf/simulated/floor/tiled, /area/engineering/atmos/storage) -"als" = ( +"alr" = ( /obj/machinery/alarm{ dir = 8; icon_state = "alarm0"; @@ -5850,7 +5840,7 @@ }, /turf/simulated/floor/tiled, /area/engineering/atmos/storage) -"alt" = ( +"als" = ( /obj/effect/decal/cleanable/generic, /obj/effect/decal/cleanable/dirt, /obj/structure/cable{ @@ -5863,15 +5853,15 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/plating, /area/maintenance/engineering) -"alu" = ( +"alt" = ( /obj/structure/closet/bombclosetsecurity, /turf/simulated/floor/tiled/dark, /area/security/armoury) -"alv" = ( +"alu" = ( /obj/structure/closet/l3closet/general, /turf/simulated/floor/tiled/dark, /area/security/armoury) -"alw" = ( +"alv" = ( /obj/machinery/light{ dir = 1 }, @@ -5891,7 +5881,7 @@ }, /turf/simulated/floor/tiled/dark, /area/security/armoury) -"alx" = ( +"alw" = ( /obj/structure/table/rack, /obj/item/device/magnetic_lock/security{ pixel_x = -3; @@ -5907,7 +5897,7 @@ }, /turf/simulated/floor/tiled/dark, /area/security/armoury) -"aly" = ( +"alx" = ( /obj/structure/table/rack, /obj/item/clothing/suit/armor/riot, /obj/item/clothing/head/helmet/riot, @@ -5928,14 +5918,14 @@ }, /turf/simulated/floor/tiled/dark, /area/security/armoury) -"alz" = ( +"aly" = ( /obj/machinery/recharger/wallcharger{ pixel_x = 5; pixel_y = 22 }, /turf/simulated/floor/tiled/dark, /area/security/armoury) -"alA" = ( +"alz" = ( /obj/machinery/recharger/wallcharger{ pixel_x = 5; pixel_y = 22 @@ -5949,7 +5939,7 @@ }, /turf/simulated/floor/tiled/dark, /area/security/armoury) -"alB" = ( +"alA" = ( /obj/structure/closet/secure_closet/guncabinet{ name = "Weaponry (Laser Rifle)"; req_access = list(3) @@ -5958,7 +5948,7 @@ /obj/item/weapon/gun/energy/rifle/laser, /turf/simulated/floor/tiled/dark, /area/security/armoury) -"alC" = ( +"alB" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/structure/cable/green{ @@ -5968,7 +5958,7 @@ }, /turf/simulated/floor/tiled, /area/security/brig) -"alD" = ( +"alC" = ( /obj/structure/disposalpipe/segment, /obj/machinery/camera/network/security{ c_tag = "Security - Corridor Camera 9"; @@ -5981,7 +5971,7 @@ }, /turf/simulated/floor/tiled, /area/security/brig) -"alE" = ( +"alD" = ( /obj/machinery/door/firedoor, /obj/structure/grille, /obj/structure/window/reinforced, @@ -5999,17 +5989,17 @@ /obj/structure/cable/green, /turf/simulated/floor/plating, /area/security/main) -"alF" = ( +"alE" = ( /obj/effect/floor_decal/corner/blue{ icon_state = "corner_white"; dir = 9 }, /turf/simulated/floor/tiled, /area/security/main) -"alG" = ( +"alF" = ( /turf/simulated/floor/tiled, /area/security/main) -"alH" = ( +"alG" = ( /obj/structure/cable/green{ d1 = 1; d2 = 2; @@ -6019,7 +6009,7 @@ /obj/machinery/atmospherics/pipe/simple/hidden/supply, /turf/simulated/floor/tiled, /area/security/main) -"alI" = ( +"alH" = ( /obj/effect/floor_decal/corner/blue{ icon_state = "corner_white"; dir = 9 @@ -6029,13 +6019,13 @@ }, /turf/simulated/floor/tiled/dark, /area/security/main) -"alJ" = ( +"alI" = ( /obj/effect/floor_decal/corner/blue{ dir = 10 }, /turf/simulated/floor/tiled/dark, /area/security/main) -"alK" = ( +"alJ" = ( /obj/effect/floor_decal/corner/blue{ dir = 10 }, @@ -6046,7 +6036,7 @@ /obj/machinery/firealarm/east, /turf/simulated/floor/tiled/dark, /area/security/main) -"alL" = ( +"alK" = ( /obj/machinery/door/airlock/security{ name = "Evidence Storage"; req_access = list(1) @@ -6059,7 +6049,7 @@ temperature = 278 }, /area/security/investigations) -"alM" = ( +"alL" = ( /obj/machinery/door/firedoor, /obj/machinery/door/airlock/glass_security{ name = "Investigations Division"; @@ -6075,7 +6065,7 @@ /obj/structure/disposalpipe/segment, /turf/simulated/floor/tiled, /area/security/investigations) -"alN" = ( +"alM" = ( /obj/machinery/door/firedoor, /obj/structure/grille, /obj/structure/window/reinforced, @@ -6089,29 +6079,29 @@ }, /turf/simulated/floor/plating, /area/security/investigations) +"alN" = ( +/obj/machinery/door/firedoor, +/obj/structure/grille, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/window/reinforced, +/obj/structure/window/reinforced{ + icon_state = "rwindow"; + dir = 1 + }, +/turf/simulated/floor/plating, +/area/security/investigations) "alO" = ( -/obj/machinery/door/firedoor, -/obj/structure/grille, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - icon_state = "rwindow"; - dir = 1 - }, -/turf/simulated/floor/plating, -/area/security/investigations) -"alP" = ( /obj/item/weapon/stool/padded, /turf/simulated/floor/plating, /area/maintenance/civ) -"alQ" = ( +"alP" = ( /obj/item/weapon/stool/padded, /obj/item/weapon/material/shard, /turf/simulated/floor/plating, /area/maintenance/civ) -"alR" = ( +"alQ" = ( /obj/structure/grille, /obj/structure/window/reinforced{ dir = 8 @@ -6122,7 +6112,7 @@ /obj/machinery/door/firedoor, /turf/simulated/floor/plating, /area/maintenance/civ) -"alS" = ( +"alR" = ( /obj/structure/cable{ d1 = 2; d2 = 4; @@ -6130,7 +6120,7 @@ }, /turf/simulated/floor/tiled, /area/maintenance/civ) -"alT" = ( +"alS" = ( /obj/machinery/power/apc{ dir = 4; name = "east bump"; @@ -6142,12 +6132,12 @@ }, /turf/simulated/floor/tiled, /area/maintenance/civ) -"alU" = ( +"alT" = ( /obj/effect/decal/cleanable/generic, /obj/random/junk, /turf/simulated/floor/plating, /area/maintenance/civ) -"alV" = ( +"alU" = ( /obj/machinery/button/remote/blast_door{ desc = "A remote control-switch for engine core."; id = "EngineVent"; @@ -6159,7 +6149,7 @@ /obj/structure/window/basic, /turf/simulated/floor/plating, /area/engineering/engine_room) -"alW" = ( +"alV" = ( /obj/machinery/atmospherics/pipe/simple/visible/black, /obj/machinery/door/blast/regular{ dir = 4; @@ -6170,7 +6160,7 @@ }, /turf/simulated/floor/plating, /area/engineering/engine_waste) -"alX" = ( +"alW" = ( /obj/machinery/door/blast/regular{ dir = 4; icon_state = "pdoor1"; @@ -6180,7 +6170,7 @@ }, /turf/simulated/floor/plating, /area/engineering/engine_waste) -"alY" = ( +"alX" = ( /obj/structure/cable{ d1 = 1; d2 = 2; @@ -6195,40 +6185,40 @@ }, /turf/simulated/floor/plating, /area/engineering/drone_fabrication) -"alZ" = ( +"alY" = ( /obj/structure/extinguisher_cabinet{ pixel_x = 0; pixel_y = 30 }, /turf/simulated/floor/tiled, /area/engineering/engine_monitoring) -"ama" = ( +"alZ" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/tiled, /area/engineering/engine_monitoring) -"amb" = ( +"ama" = ( /turf/simulated/wall/r_wall, /area/engineering/storage) -"amc" = ( +"amb" = ( /obj/machinery/power/emitter, /turf/simulated/floor/plating, /area/engineering/storage) -"amd" = ( +"amc" = ( /obj/structure/closet/crate, /obj/item/stack/material/phoron{ amount = 25 }, /turf/simulated/floor/plating, /area/engineering/storage) -"ame" = ( +"amd" = ( /obj/machinery/alarm{ pixel_y = 22 }, /obj/structure/closet/crate/solar, /turf/simulated/floor/plating, /area/engineering/storage) -"amf" = ( +"ame" = ( /obj/machinery/light{ dir = 1 }, @@ -6241,15 +6231,15 @@ /obj/machinery/power/port_gen/pacman, /turf/simulated/floor/plating, /area/engineering/storage) -"amg" = ( +"amf" = ( /obj/machinery/shield_capacitor, /turf/simulated/floor/plating, /area/engineering/storage) -"amh" = ( +"amg" = ( /obj/machinery/shield_gen, /turf/simulated/floor/plating, /area/engineering/storage) -"ami" = ( +"amh" = ( /obj/structure/table/standard, /obj/machinery/cell_charger, /obj/structure/sign/nosmoking_2{ @@ -6257,14 +6247,14 @@ }, /turf/simulated/floor/tiled, /area/engineering/atmos/storage) -"amj" = ( +"ami" = ( /turf/simulated/floor/tiled, /area/engineering/atmos/storage) -"amk" = ( +"amj" = ( /obj/machinery/atmospherics/pipe/simple/hidden/red, /turf/simulated/floor/tiled, /area/engineering/atmos/storage) -"aml" = ( +"amk" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/structure/cable/green{ @@ -6280,7 +6270,7 @@ /obj/machinery/atmospherics/pipe/simple/hidden/cyan, /turf/simulated/floor/tiled, /area/engineering/atmos/storage) -"amm" = ( +"aml" = ( /obj/structure/cable/green{ d1 = 4; d2 = 8; @@ -6288,7 +6278,7 @@ }, /turf/simulated/floor/tiled, /area/engineering/atmos/storage) -"amn" = ( +"amm" = ( /obj/structure/disposalpipe/segment{ dir = 4; icon_state = "pipe-c" @@ -6300,7 +6290,7 @@ }, /turf/simulated/floor/tiled, /area/engineering/atmos/storage) -"amo" = ( +"amn" = ( /obj/structure/cable/green{ d1 = 4; d2 = 8; @@ -6311,7 +6301,7 @@ }, /turf/simulated/floor/tiled, /area/engineering/atmos/storage) -"amp" = ( +"amo" = ( /obj/machinery/door/airlock/atmos{ name = "Atmospherics Maintenance"; req_access = list(12,24) @@ -6327,7 +6317,7 @@ /obj/machinery/door/firedoor, /turf/simulated/floor/plating, /area/engineering/atmos/storage) -"amq" = ( +"amp" = ( /obj/structure/cable/green{ d1 = 4; d2 = 8; @@ -6338,7 +6328,7 @@ }, /turf/simulated/floor/plating, /area/maintenance/engineering) -"amr" = ( +"amq" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/cable/green{ d1 = 4; @@ -6351,7 +6341,7 @@ /obj/random/junk, /turf/simulated/floor/plating, /area/maintenance/engineering) -"ams" = ( +"amr" = ( /obj/structure/cable/green{ d2 = 8; icon_state = "0-8" @@ -6367,7 +6357,14 @@ }, /turf/simulated/floor/plating, /area/maintenance/engineering) +"ams" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/maintenance/engineering) "amt" = ( +/obj/effect/decal/cleanable/dirt, /obj/structure/disposalpipe/segment{ dir = 4 }, @@ -6375,20 +6372,13 @@ /area/maintenance/engineering) "amu" = ( /obj/effect/decal/cleanable/dirt, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/maintenance/engineering) -"amv" = ( -/obj/effect/decal/cleanable/dirt, /obj/structure/disposalpipe/segment{ dir = 4 }, /obj/machinery/door/firedoor, /turf/simulated/floor/plating, /area/maintenance/engineering) -"amw" = ( +"amv" = ( /obj/structure/cable{ d1 = 1; d2 = 2; @@ -6402,7 +6392,7 @@ }, /turf/simulated/floor/plating, /area/maintenance/engineering) -"amx" = ( +"amw" = ( /obj/structure/disposalpipe/segment{ dir = 2; icon_state = "pipe-c" @@ -6411,10 +6401,10 @@ /obj/random/loot, /turf/simulated/floor/plating, /area/maintenance/engineering) -"amy" = ( +"amx" = ( /turf/simulated/floor/tiled/dark, /area/security/armoury) -"amz" = ( +"amy" = ( /obj/structure/table/rack, /obj/item/clothing/suit/armor/riot, /obj/item/clothing/head/helmet/riot, @@ -6434,7 +6424,7 @@ }, /turf/simulated/floor/tiled/dark, /area/security/armoury) -"amA" = ( +"amz" = ( /obj/structure/closet/secure_closet/guncabinet{ name = "Weaponry (Ion Rifle)"; req_access = list(3) @@ -6442,11 +6432,11 @@ /obj/item/weapon/gun/energy/ionrifle, /turf/simulated/floor/tiled/dark, /area/security/armoury) -"amB" = ( +"amA" = ( /obj/effect/decal/cleanable/dirt, /turf/simulated/wall/r_wall, /area/maintenance/security_starboard) -"amC" = ( +"amB" = ( /obj/structure/table/standard, /obj/structure/window/reinforced{ icon_state = "rwindow"; @@ -6463,11 +6453,11 @@ }, /turf/simulated/floor/tiled, /area/security/main) -"amD" = ( +"amC" = ( /obj/machinery/hologram/holopad, /turf/simulated/floor/tiled, /area/security/main) -"amE" = ( +"amD" = ( /obj/structure/window/reinforced{ icon_state = "rwindow"; dir = 8 @@ -6479,19 +6469,19 @@ /obj/item/clothing/accessory/holster/waist, /turf/simulated/floor/tiled/dark, /area/security/main) -"amF" = ( +"amE" = ( /obj/structure/window/reinforced, /obj/structure/table/standard, /obj/item/weapon/hand_labeler, /turf/simulated/floor/tiled/dark, /area/security/main) -"amG" = ( +"amF" = ( /obj/structure/window/reinforced, /obj/structure/closet/secure_closet/security_cadet, /obj/effect/floor_decal/industrial/outline/yellow, /turf/simulated/floor/tiled/dark, /area/security/main) -"amH" = ( +"amG" = ( /obj/structure/window/reinforced, /obj/structure/closet/secure_closet/security_cadet, /obj/effect/floor_decal/industrial/outline/yellow, @@ -6501,18 +6491,18 @@ }, /turf/simulated/floor/tiled/dark, /area/security/main) -"amI" = ( +"amH" = ( /obj/structure/stairs/north, /turf/simulated/floor/tiled, /area/security/brig) -"amJ" = ( +"amI" = ( /obj/structure/stairs/north, /obj/structure/window/reinforced{ dir = 4 }, /turf/simulated/floor/tiled, /area/security/brig) -"amK" = ( +"amJ" = ( /obj/effect/floor_decal/corner/blue{ dir = 5 }, @@ -6520,7 +6510,7 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/tiled, /area/security/brig) -"amL" = ( +"amK" = ( /obj/structure/noticeboard{ pixel_x = 0; pixel_y = 32 @@ -6534,7 +6524,7 @@ }, /turf/simulated/floor/tiled, /area/security/brig) -"amM" = ( +"amL" = ( /obj/effect/floor_decal/corner/blue{ dir = 5 }, @@ -6548,7 +6538,7 @@ /obj/structure/disposalpipe/segment, /turf/simulated/floor/tiled, /area/security/brig) -"amN" = ( +"amM" = ( /obj/effect/floor_decal/corner/blue{ dir = 5 }, @@ -6560,7 +6550,7 @@ /obj/effect/floor_decal/industrial/outline/grey, /turf/simulated/floor/tiled, /area/security/brig) -"amO" = ( +"amN" = ( /obj/effect/floor_decal/corner/blue{ dir = 5 }, @@ -6576,13 +6566,13 @@ }, /turf/simulated/floor/tiled, /area/security/brig) -"amP" = ( +"amO" = ( /obj/structure/table/wood, /obj/item/stack/material/wood, /obj/effect/decal/cleanable/dirt, /turf/simulated/floor/wood, /area/maintenance/civ) -"amQ" = ( +"amP" = ( /obj/structure/grille, /obj/structure/window/reinforced{ icon_state = "rwindow"; @@ -6594,11 +6584,11 @@ /obj/machinery/door/firedoor, /turf/simulated/floor/plating, /area/maintenance/civ) -"amR" = ( +"amQ" = ( /obj/item/stack/rods, /turf/simulated/floor/plating, /area/maintenance/civ) -"amS" = ( +"amR" = ( /obj/effect/decal/cleanable/generic, /obj/effect/decal/cleanable/dirt, /obj/structure/cable{ @@ -6608,52 +6598,52 @@ }, /turf/simulated/floor/tiled, /area/maintenance/civ) -"amT" = ( +"amS" = ( /obj/structure/closet/crate, /obj/random/loot, /turf/simulated/floor/plating, /area/maintenance/civ) -"amU" = ( +"amT" = ( /obj/machinery/light/spot, /obj/machinery/light/spot, /turf/simulated/floor/asteroid/ash/rocky, /area/bridge) -"amV" = ( +"amU" = ( /obj/machinery/portable_atmospherics/canister/nitrogen, /obj/effect/floor_decal/industrial/outline/yellow, /turf/simulated/floor/plating, /area/engineering/engine_room) -"amW" = ( +"amV" = ( /turf/simulated/floor/plating, /area/engineering/engine_room) -"amX" = ( +"amW" = ( /obj/structure/extinguisher_cabinet{ pixel_x = 0; pixel_y = 30 }, /turf/simulated/floor/plating, /area/engineering/engine_room) -"amY" = ( +"amX" = ( /obj/machinery/atmospherics/pipe/manifold/visible/black{ icon_state = "map"; dir = 8 }, /turf/simulated/floor/plating, /area/engineering/engine_room) -"amZ" = ( +"amY" = ( /obj/machinery/atmospherics/pipe/simple/visible/black{ dir = 4 }, /obj/machinery/meter, /turf/simulated/floor/plating, /area/engineering/engine_room) -"ana" = ( +"amZ" = ( /obj/machinery/atmospherics/pipe/simple/visible/black{ dir = 10 }, /turf/simulated/floor/plating, /area/engineering/engine_room) -"anb" = ( +"ana" = ( /obj/machinery/atmospherics/portables_connector, /obj/machinery/button/remote/blast_door{ desc = "A remote control-switch for the engine control room blast doors."; @@ -6666,10 +6656,10 @@ /obj/effect/floor_decal/industrial/outline/yellow, /turf/simulated/floor/plating, /area/engineering/engine_room) -"anc" = ( +"anb" = ( /turf/simulated/wall/r_wall, /area/engineering/engine_smes) -"and" = ( +"anc" = ( /obj/structure/cable{ d1 = 1; d2 = 2; @@ -6678,10 +6668,10 @@ }, /turf/simulated/wall/r_wall, /area/engineering/engine_smes) -"ane" = ( +"and" = ( /turf/simulated/floor/tiled, /area/engineering/engine_monitoring) -"anf" = ( +"ane" = ( /obj/structure/closet/crate, /obj/item/weapon/circuitboard/smes, /obj/item/weapon/circuitboard/smes, @@ -6693,20 +6683,20 @@ /obj/item/weapon/smes_coil/super_io, /turf/simulated/floor/plating, /area/engineering/storage) -"ang" = ( +"anf" = ( /turf/simulated/floor/plating, /area/engineering/storage) -"anh" = ( +"ang" = ( /obj/machinery/shieldgen, /turf/simulated/floor/plating, /area/engineering/storage) -"ani" = ( +"anh" = ( /turf/simulated/wall/r_wall, /area/engineering/engine_monitoring) -"anj" = ( +"ani" = ( /turf/simulated/open, /area/turbolift/engineering_station) -"ank" = ( +"anj" = ( /obj/structure/dispenser/oxygen{ phorontanks = 10 }, @@ -6717,7 +6707,7 @@ }, /turf/simulated/floor/tiled, /area/engineering/atmos/storage) -"anl" = ( +"ank" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/structure/cable/green{ @@ -6730,17 +6720,17 @@ /obj/machinery/space_heater, /turf/simulated/floor/tiled, /area/engineering/atmos/storage) -"anm" = ( +"anl" = ( /obj/structure/table/standard, /obj/machinery/cell_charger, /turf/simulated/floor/tiled, /area/engineering/atmos/storage) -"ann" = ( +"anm" = ( /obj/effect/floor_decal/industrial/outline/yellow, /obj/machinery/portable_atmospherics/powered/pump/filled, /turf/simulated/floor/tiled, /area/engineering/atmos/storage) -"ano" = ( +"ann" = ( /obj/structure/disposalpipe/sortjunction/flipped{ dir = 2; name = "Atmospherics"; @@ -6748,7 +6738,7 @@ }, /turf/simulated/floor/tiled, /area/engineering/atmos/storage) -"anp" = ( +"ano" = ( /obj/machinery/disposal, /obj/structure/disposalpipe/trunk{ dir = 8 @@ -6756,7 +6746,7 @@ /obj/machinery/firealarm/east, /turf/simulated/floor/tiled, /area/engineering/atmos/storage) -"anq" = ( +"anp" = ( /obj/machinery/door/airlock/maintenance{ name = "Firefighting equipment"; req_access = list(12) @@ -6764,13 +6754,13 @@ /obj/machinery/door/firedoor, /turf/simulated/floor/plating, /area/maintenance/engineering) -"anr" = ( +"anq" = ( /obj/structure/disposalpipe/segment, /obj/structure/table/rack, /obj/random/loot, /turf/simulated/floor/plating, /area/maintenance/engineering) -"ans" = ( +"anr" = ( /obj/structure/table/rack, /obj/item/clothing/suit/storage/vest/heavy/officer, /obj/item/clothing/suit/storage/vest/heavy/officer, @@ -6778,14 +6768,14 @@ /obj/item/clothing/suit/storage/vest/heavy/officer, /turf/simulated/floor/tiled/dark, /area/security/armoury) +"ans" = ( +/obj/structure/table/rack, +/obj/item/weapon/reagent_containers/spray/pepper, +/obj/item/weapon/reagent_containers/spray/pepper, +/obj/item/weapon/reagent_containers/spray/pepper, +/turf/simulated/floor/tiled/dark, +/area/security/armoury) "ant" = ( -/obj/structure/table/rack, -/obj/item/weapon/reagent_containers/spray/pepper, -/obj/item/weapon/reagent_containers/spray/pepper, -/obj/item/weapon/reagent_containers/spray/pepper, -/turf/simulated/floor/tiled/dark, -/area/security/armoury) -"anu" = ( /obj/machinery/alarm{ dir = 8; pixel_x = 25; @@ -6793,7 +6783,7 @@ }, /turf/simulated/floor/tiled/dark, /area/security/armoury) -"anv" = ( +"anu" = ( /obj/structure/table/rack, /obj/item/clothing/suit/armor/riot, /obj/item/clothing/head/helmet/riot, @@ -6816,11 +6806,11 @@ }, /turf/simulated/floor/tiled/dark, /area/security/armoury) -"anw" = ( +"anv" = ( /obj/machinery/atmospherics/unary/vent_scrubber/on, /turf/simulated/floor/tiled/dark, /area/security/armoury) -"anx" = ( +"anw" = ( /obj/machinery/light/small/emergency{ icon_state = "bulb1"; dir = 4 @@ -6833,7 +6823,7 @@ /obj/item/weapon/gun/energy/gun, /turf/simulated/floor/tiled/dark, /area/security/armoury) -"any" = ( +"anx" = ( /obj/machinery/door/firedoor, /obj/structure/grille, /obj/structure/window/reinforced{ @@ -6858,7 +6848,7 @@ }, /turf/simulated/floor/plating, /area/security/main) -"anz" = ( +"any" = ( /obj/structure/table/standard, /obj/structure/window/reinforced, /obj/effect/floor_decal/corner/blue{ @@ -6877,7 +6867,7 @@ /obj/item/weapon/folder/sec, /turf/simulated/floor/tiled, /area/security/main) -"anA" = ( +"anz" = ( /obj/structure/bed/chair/office/dark{ dir = 8 }, @@ -6888,7 +6878,7 @@ }, /turf/simulated/floor/tiled, /area/security/main) -"anB" = ( +"anA" = ( /obj/structure/cable/green{ d1 = 1; d2 = 2; @@ -6903,19 +6893,19 @@ }, /turf/simulated/floor/tiled, /area/security/main) -"anC" = ( +"anB" = ( /obj/machinery/disposal, /obj/effect/floor_decal/industrial/hatch/yellow, /obj/structure/disposalpipe/trunk, /turf/simulated/floor/tiled, /area/security/main) -"anD" = ( +"anC" = ( /obj/structure/bed/chair{ dir = 4 }, /turf/simulated/floor/tiled, /area/security/main) -"anE" = ( +"anD" = ( /obj/structure/table/standard, /obj/machinery/newscaster{ pixel_x = 28; @@ -6923,13 +6913,13 @@ }, /turf/simulated/floor/tiled, /area/security/main) -"anF" = ( +"anE" = ( /obj/structure/window/reinforced{ dir = 4 }, /turf/simulated/floor/tiled, /area/security/brig) -"anG" = ( +"anF" = ( /obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ icon_state = "map-scrubbers"; dir = 8 @@ -6952,7 +6942,7 @@ }, /turf/simulated/floor/tiled, /area/security/brig) -"anH" = ( +"anG" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, @@ -6969,7 +6959,7 @@ }, /turf/simulated/floor/tiled, /area/security/brig) -"anI" = ( +"anH" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ icon_state = "intact-supply"; dir = 9 @@ -6989,7 +6979,7 @@ }, /turf/simulated/floor/tiled, /area/security/brig) -"anJ" = ( +"anI" = ( /obj/machinery/alarm{ dir = 8; pixel_x = 25; @@ -7001,13 +6991,13 @@ }, /turf/simulated/floor/tiled, /area/security/brig) -"anK" = ( +"anJ" = ( /obj/structure/grille/broken, /obj/item/weapon/material/shard, /obj/machinery/door/firedoor, /turf/simulated/floor/plating, /area/maintenance/civ) -"anL" = ( +"anK" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/cable{ d1 = 1; @@ -7016,15 +7006,15 @@ }, /turf/simulated/floor/plating, /area/maintenance/civ) -"anM" = ( +"anL" = ( /obj/effect/decal/cleanable/dirt, /obj/random/loot, /turf/simulated/floor/plating, /area/maintenance/civ) -"anN" = ( +"anM" = ( /turf/simulated/wall/r_wall, /area/bridge) -"anO" = ( +"anN" = ( /obj/structure/grille, /obj/structure/window/reinforced, /obj/structure/window/reinforced{ @@ -7053,7 +7043,7 @@ }, /turf/simulated/floor/plating, /area/bridge) -"anP" = ( +"anO" = ( /obj/structure/grille, /obj/structure/window/reinforced, /obj/structure/window/reinforced{ @@ -7079,7 +7069,7 @@ }, /turf/simulated/floor/plating, /area/bridge) -"anQ" = ( +"anP" = ( /obj/structure/grille, /obj/structure/window/reinforced, /obj/structure/window/reinforced{ @@ -7103,7 +7093,7 @@ }, /turf/simulated/floor/plating, /area/bridge) -"anR" = ( +"anQ" = ( /obj/structure/grille, /obj/structure/window/reinforced, /obj/structure/window/reinforced{ @@ -7127,7 +7117,7 @@ }, /turf/simulated/floor/plating, /area/bridge) -"anS" = ( +"anR" = ( /obj/structure/grille, /obj/structure/window/reinforced, /obj/structure/window/reinforced{ @@ -7153,7 +7143,7 @@ }, /turf/simulated/floor/plating, /area/bridge) -"anT" = ( +"anS" = ( /obj/structure/grille, /obj/structure/window/reinforced, /obj/structure/window/reinforced{ @@ -7182,10 +7172,10 @@ }, /turf/simulated/floor/plating, /area/bridge) -"anU" = ( +"anT" = ( /turf/simulated/mineral, /area/mine/unexplored) -"anV" = ( +"anU" = ( /obj/machinery/atmospherics/omni/filter{ tag_east = 4; tag_north = 2; @@ -7196,14 +7186,14 @@ /obj/effect/floor_decal/industrial/hatch/yellow, /turf/simulated/floor/plating, /area/engineering/engine_room) -"anW" = ( +"anV" = ( /obj/machinery/atmospherics/pipe/manifold/visible/cyan{ icon_state = "map"; dir = 1 }, /turf/simulated/floor/plating, /area/engineering/engine_room) -"anX" = ( +"anW" = ( /obj/machinery/atmospherics/omni/filter{ tag_east = 0; tag_north = 2; @@ -7214,7 +7204,7 @@ /obj/effect/floor_decal/industrial/hatch/yellow, /turf/simulated/floor/plating, /area/engineering/engine_room) -"anY" = ( +"anX" = ( /obj/machinery/atmospherics/binary/pump{ dir = 1 }, @@ -7225,7 +7215,7 @@ }, /turf/simulated/floor/plating, /area/engineering/engine_room) -"anZ" = ( +"anY" = ( /obj/machinery/power/smes/buildable{ charge = 1e+007; cur_coils = 4; @@ -7241,7 +7231,7 @@ }, /turf/simulated/floor/plating, /area/engineering/engine_smes) -"aoa" = ( +"anZ" = ( /obj/structure/cable{ d1 = 4; d2 = 8; @@ -7253,7 +7243,7 @@ }, /turf/simulated/floor/tiled, /area/engineering/engine_smes) -"aob" = ( +"aoa" = ( /obj/structure/table/reinforced, /obj/item/weapon/storage/box/lights/mixed, /obj/item/device/radio/intercom{ @@ -7268,7 +7258,7 @@ }, /turf/simulated/floor/tiled, /area/engineering/engine_smes) -"aoc" = ( +"aob" = ( /obj/structure/table/reinforced, /obj/structure/cable{ d1 = 1; @@ -7289,7 +7279,7 @@ }, /turf/simulated/floor/tiled, /area/engineering/engine_smes) -"aod" = ( +"aoc" = ( /obj/structure/table/reinforced, /obj/item/stack/cable_coil{ pixel_x = 3; @@ -7305,7 +7295,7 @@ }, /turf/simulated/floor/tiled, /area/engineering/engine_smes) -"aoe" = ( +"aod" = ( /obj/structure/sign/securearea{ desc = "A warning sign which reads 'HIGH VOLTAGE'"; icon_state = "shock"; @@ -7314,7 +7304,7 @@ }, /turf/simulated/wall/r_wall, /area/engineering/engine_smes) -"aof" = ( +"aoe" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/machinery/newscaster{ @@ -7322,34 +7312,34 @@ }, /turf/simulated/floor/tiled, /area/engineering/engine_monitoring) -"aog" = ( +"aof" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 6 }, /turf/simulated/floor/plating, /area/engineering/storage) -"aoh" = ( +"aog" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 }, /turf/simulated/floor/plating, /area/engineering/storage) -"aoi" = ( +"aoh" = ( /obj/machinery/atmospherics/unary/vent_scrubber/on{ dir = 8 }, /turf/simulated/floor/plating, /area/engineering/storage) -"aoj" = ( +"aoi" = ( /obj/machinery/shieldwallgen, /turf/simulated/floor/plating, /area/engineering/storage) -"aok" = ( +"aoj" = ( /obj/machinery/suit_cycler/engineering, /obj/effect/floor_decal/industrial/hatch/yellow, /turf/simulated/floor/tiled, /area/engineering/atmos/storage) -"aol" = ( +"aok" = ( /obj/structure/disposalpipe/segment{ dir = 4; icon_state = "pipe-c" @@ -7365,7 +7355,7 @@ }, /turf/simulated/floor/tiled, /area/engineering/atmos/storage) -"aom" = ( +"aol" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, @@ -7373,21 +7363,21 @@ /obj/machinery/portable_atmospherics/powered/pump/filled, /turf/simulated/floor/tiled, /area/engineering/atmos/storage) -"aon" = ( +"aom" = ( /obj/structure/disposalpipe/segment{ dir = 8; icon_state = "pipe-c" }, /turf/simulated/floor/tiled, /area/engineering/atmos/storage) -"aoo" = ( +"aon" = ( /obj/structure/table/standard, /obj/item/device/pipe_painter, /obj/item/weapon/pipewrench, /obj/item/weapon/pipewrench, /turf/simulated/floor/tiled, /area/engineering/atmos/storage) -"aop" = ( +"aoo" = ( /obj/structure/grille, /obj/structure/window/reinforced{ dir = 8 @@ -7404,7 +7394,7 @@ }, /turf/simulated/floor/plating, /area/engineering/atmos/storage) -"aoq" = ( +"aop" = ( /obj/machinery/requests_console{ department = "Atmospherics"; departmentType = 4; @@ -7422,7 +7412,7 @@ /obj/structure/closet/wardrobe/atmospherics_yellow, /turf/simulated/floor/tiled, /area/engineering/atmos/storage) -"aor" = ( +"aoq" = ( /obj/effect/floor_decal/corner/yellow{ icon_state = "corner_white"; dir = 5 @@ -7437,7 +7427,7 @@ /obj/item/device/flashlight/heavy, /turf/simulated/floor/tiled, /area/engineering/atmos/storage) -"aos" = ( +"aor" = ( /obj/structure/table/standard, /obj/effect/floor_decal/corner/yellow{ icon_state = "corner_white"; @@ -7449,7 +7439,7 @@ /obj/machinery/firealarm/north, /turf/simulated/floor/tiled, /area/engineering/atmos/storage) -"aot" = ( +"aos" = ( /obj/structure/table/standard, /obj/effect/floor_decal/corner/yellow{ icon_state = "corner_white"; @@ -7460,20 +7450,20 @@ /obj/item/device/radio/off, /turf/simulated/floor/tiled, /area/engineering/atmos/storage) -"aou" = ( +"aot" = ( /obj/structure/closet/hydrant{ pixel_x = -32 }, /turf/simulated/floor/plating, /area/maintenance/engineering) -"aov" = ( +"aou" = ( /turf/simulated/floor/plating, /area/maintenance/engineering) -"aow" = ( +"aov" = ( /obj/machinery/space_heater, /turf/simulated/floor/plating, /area/maintenance/engineering) -"aox" = ( +"aow" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/cable{ d1 = 1; @@ -7488,7 +7478,7 @@ }, /turf/simulated/floor/plating, /area/maintenance/engineering) -"aoy" = ( +"aox" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/dirt, /obj/structure/cable{ @@ -7507,7 +7497,7 @@ /obj/random/loot, /turf/simulated/floor/plating, /area/maintenance/engineering) -"aoz" = ( +"aoy" = ( /obj/structure/table/rack, /obj/item/clothing/mask/gas{ pixel_x = -3; @@ -7529,7 +7519,7 @@ }, /turf/simulated/floor/tiled/dark, /area/security/armoury) -"aoA" = ( +"aoz" = ( /obj/structure/table/rack, /obj/item/weapon/storage/box/seccarts{ pixel_x = -3; @@ -7542,7 +7532,7 @@ }, /turf/simulated/floor/tiled/dark, /area/security/armoury) -"aoB" = ( +"aoA" = ( /obj/machinery/atmospherics/unary/vent_scrubber/on, /obj/structure/cable/green{ d1 = 2; @@ -7551,7 +7541,7 @@ }, /turf/simulated/floor/tiled/dark, /area/security/armoury) -"aoC" = ( +"aoB" = ( /obj/machinery/door/airlock/highsecurity{ name = "Secure Armoury Section"; req_access = list(3) @@ -7564,7 +7554,7 @@ /obj/machinery/door/firedoor, /turf/simulated/floor/tiled/dark, /area/security/armoury) -"aoD" = ( +"aoC" = ( /obj/structure/cable/green{ d1 = 2; d2 = 8; @@ -7572,11 +7562,11 @@ }, /turf/simulated/floor/tiled/dark, /area/security/armoury) -"aoE" = ( +"aoD" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/tiled/dark, /area/security/armoury) -"aoF" = ( +"aoE" = ( /obj/structure/closet/secure_closet/guncabinet{ name = "Weaponry (Shotgun)"; req_access = list(3) @@ -7585,7 +7575,7 @@ /obj/item/weapon/gun/projectile/shotgun/pump, /turf/simulated/floor/tiled/dark, /area/security/armoury) -"aoG" = ( +"aoF" = ( /obj/machinery/light/small{ dir = 8 }, @@ -7596,7 +7586,7 @@ }, /turf/simulated/floor/plating, /area/security/brig) -"aoH" = ( +"aoG" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 5 }, @@ -7605,7 +7595,7 @@ }, /turf/simulated/floor/plating, /area/security/brig) -"aoI" = ( +"aoH" = ( /obj/machinery/door/airlock/glass_security{ name = "Solitary Confinement 1"; req_access = list(2) @@ -7619,7 +7609,7 @@ /obj/machinery/door/firedoor, /turf/simulated/floor/plating, /area/security/brig) -"aoJ" = ( +"aoI" = ( /obj/machinery/atmospherics/pipe/manifold/hidden/supply{ dir = 4 }, @@ -7631,7 +7621,7 @@ }, /turf/simulated/floor/tiled, /area/security/brig) -"aoK" = ( +"aoJ" = ( /obj/machinery/atmospherics/unary/vent_scrubber/on{ dir = 8 }, @@ -7642,7 +7632,7 @@ }, /turf/simulated/floor/tiled, /area/security/brig) -"aoL" = ( +"aoK" = ( /obj/machinery/door/firedoor, /obj/structure/grille, /obj/structure/window/reinforced{ @@ -7659,7 +7649,7 @@ }, /turf/simulated/floor/plating, /area/security/main) -"aoM" = ( +"aoL" = ( /obj/structure/table/standard, /obj/structure/window/reinforced{ icon_state = "rwindow"; @@ -7672,7 +7662,7 @@ /obj/item/weapon/reagent_containers/spray/cleaner, /turf/simulated/floor/tiled, /area/security/main) -"aoN" = ( +"aoM" = ( /obj/structure/cable/green{ d1 = 2; d2 = 4; @@ -7692,7 +7682,7 @@ }, /turf/simulated/floor/tiled, /area/security/main) -"aoO" = ( +"aoN" = ( /obj/structure/cable/green{ d1 = 4; d2 = 8; @@ -7706,7 +7696,7 @@ }, /turf/simulated/floor/tiled, /area/security/main) -"aoP" = ( +"aoO" = ( /obj/structure/cable/green{ d1 = 4; d2 = 8; @@ -7721,7 +7711,7 @@ }, /turf/simulated/floor/tiled, /area/security/main) -"aoQ" = ( +"aoP" = ( /obj/structure/cable/green{ d1 = 2; d2 = 8; @@ -7735,7 +7725,7 @@ /obj/machinery/atmospherics/unary/vent_scrubber/on, /turf/simulated/floor/tiled, /area/security/main) -"aoR" = ( +"aoQ" = ( /obj/structure/bed/chair{ dir = 1 }, @@ -7746,7 +7736,7 @@ }, /turf/simulated/floor/tiled, /area/security/main) -"aoS" = ( +"aoR" = ( /obj/machinery/door/firedoor, /obj/structure/grille, /obj/structure/window/reinforced{ @@ -7771,7 +7761,7 @@ }, /turf/simulated/floor/plating, /area/security/main) -"aoT" = ( +"aoS" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ icon_state = "map-scrubbers"; @@ -7785,19 +7775,19 @@ /obj/structure/disposalpipe/segment, /turf/simulated/floor/tiled, /area/security/brig) -"aoU" = ( +"aoT" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 }, /turf/simulated/floor/tiled, /area/security/brig) -"aoV" = ( +"aoU" = ( /obj/machinery/atmospherics/unary/vent_scrubber/on{ dir = 8 }, /turf/simulated/floor/tiled, /area/security/brig) -"aoW" = ( +"aoV" = ( /obj/structure/extinguisher_cabinet{ pixel_x = 30; pixel_y = 0 @@ -7813,15 +7803,15 @@ }, /turf/simulated/floor/tiled, /area/security/brig) -"aoX" = ( +"aoW" = ( /obj/effect/decal/cleanable/dirt, /turf/simulated/floor/wood, /area/maintenance/civ) -"aoY" = ( +"aoX" = ( /obj/machinery/vending/boozeomat, /turf/simulated/floor/plating, /area/maintenance/civ) -"aoZ" = ( +"aoY" = ( /obj/structure/cable{ d1 = 1; d2 = 2; @@ -7834,17 +7824,17 @@ }, /turf/simulated/floor/plating, /area/maintenance/security_starboard) -"apa" = ( +"aoZ" = ( /obj/structure/largecrate/animal/cow, /turf/simulated/floor/plating, /area/maintenance/civ) -"apb" = ( +"apa" = ( /obj/effect/decal/cleanable/generic, /obj/effect/decal/cleanable/dirt, /obj/random/junk, /turf/simulated/floor/plating, /area/maintenance/civ) -"apc" = ( +"apb" = ( /obj/item/device/radio/intercom{ dir = 8; name = "Station Intercom (General)"; @@ -7864,7 +7854,7 @@ /obj/machinery/papershredder, /turf/simulated/floor/tiled, /area/bridge) -"apd" = ( +"apc" = ( /obj/effect/floor_decal/corner/paleblue/full{ icon_state = "corner_white_full"; dir = 8 @@ -7876,7 +7866,7 @@ }, /turf/simulated/floor/tiled, /area/bridge) -"ape" = ( +"apd" = ( /obj/effect/floor_decal/corner/paleblue{ icon_state = "corner_white"; dir = 5 @@ -7884,7 +7874,7 @@ /obj/structure/bed/chair/comfy/blue, /turf/simulated/floor/tiled, /area/bridge) -"apf" = ( +"ape" = ( /obj/effect/floor_decal/corner/paleblue{ icon_state = "corner_white"; dir = 5 @@ -7894,7 +7884,7 @@ /obj/item/device/multitool, /turf/simulated/floor/tiled, /area/bridge) -"apg" = ( +"apf" = ( /obj/machinery/camera/network/command{ c_tag = "Bridge - Command Deck Fore" }, @@ -7913,7 +7903,7 @@ /obj/structure/table/reinforced, /turf/simulated/floor/tiled, /area/bridge) -"aph" = ( +"apg" = ( /obj/effect/floor_decal/corner/paleblue{ icon_state = "corner_white"; dir = 5 @@ -7922,7 +7912,7 @@ /obj/item/weapon/storage/firstaid/regular, /turf/simulated/floor/tiled, /area/bridge) -"api" = ( +"aph" = ( /obj/effect/floor_decal/corner/paleblue/full{ icon_state = "corner_white_full"; dir = 1 @@ -7934,7 +7924,7 @@ }, /turf/simulated/floor/tiled, /area/bridge) -"apj" = ( +"api" = ( /obj/item/device/radio/intercom{ dir = 4; name = "Station Intercom (General)"; @@ -7955,29 +7945,29 @@ /obj/machinery/photocopier, /turf/simulated/floor/tiled, /area/bridge) -"apk" = ( +"apj" = ( /obj/machinery/atmospherics/pipe/manifold/visible/cyan{ dir = 8 }, /turf/simulated/floor/plating, /area/engineering/engine_room) -"apl" = ( +"apk" = ( /obj/machinery/atmospherics/pipe/manifold/visible/cyan, /obj/machinery/meter, /turf/simulated/floor/plating, /area/engineering/engine_room) -"apm" = ( +"apl" = ( /obj/machinery/atmospherics/pipe/manifold/visible/cyan, /turf/simulated/floor/plating, /area/engineering/engine_room) -"apn" = ( +"apm" = ( /obj/machinery/atmospherics/pipe/simple/visible/cyan{ icon_state = "intact"; dir = 9 }, /turf/simulated/floor/plating, /area/engineering/engine_room) -"apo" = ( +"apn" = ( /obj/machinery/power/terminal{ icon_state = "term"; dir = 1 @@ -7996,10 +7986,10 @@ }, /turf/simulated/floor/tiled, /area/engineering/engine_smes) -"app" = ( +"apo" = ( /turf/simulated/floor/tiled, /area/engineering/engine_smes) -"apq" = ( +"app" = ( /obj/structure/cable{ d1 = 1; d2 = 2; @@ -8008,12 +7998,12 @@ }, /turf/simulated/floor/tiled, /area/engineering/engine_smes) -"apr" = ( +"apq" = ( /obj/machinery/atmospherics/unary/vent_scrubber/on, /obj/machinery/firealarm/east, /turf/simulated/floor/tiled, /area/engineering/engine_smes) -"aps" = ( +"apr" = ( /obj/machinery/light{ dir = 8; icon_state = "tube1"; @@ -8028,7 +8018,7 @@ }, /turf/simulated/floor/tiled, /area/engineering/engine_monitoring) -"apt" = ( +"aps" = ( /obj/structure/cable/green{ d2 = 4; icon_state = "0-4" @@ -8040,7 +8030,7 @@ }, /turf/simulated/floor/plating, /area/engineering/storage) -"apu" = ( +"apt" = ( /obj/structure/cable/green{ d1 = 2; d2 = 8; @@ -8049,11 +8039,11 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/plating, /area/engineering/storage) -"apv" = ( +"apu" = ( /obj/machinery/shield_gen/external, /turf/simulated/floor/plating, /area/engineering/storage) -"apw" = ( +"apv" = ( /obj/structure/table/rack, /obj/item/clothing/suit/space/void/atmos, /obj/item/clothing/head/helmet/space/void/atmos, @@ -8088,20 +8078,20 @@ }, /turf/simulated/floor/tiled, /area/engineering/atmos/storage) -"apx" = ( +"apw" = ( /obj/machinery/atmospherics/unary/vent_scrubber/on{ dir = 4 }, /turf/simulated/floor/tiled, /area/engineering/atmos/storage) -"apy" = ( +"apx" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 }, /obj/machinery/atmospherics/pipe/simple/hidden/red, /turf/simulated/floor/tiled, /area/engineering/atmos/storage) -"apz" = ( +"apy" = ( /obj/machinery/atmospherics/pipe/manifold/hidden/supply{ dir = 8 }, @@ -8114,7 +8104,7 @@ /obj/machinery/atmospherics/pipe/simple/hidden/cyan, /turf/simulated/floor/tiled, /area/engineering/atmos/storage) -"apA" = ( +"apz" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, @@ -8124,7 +8114,7 @@ }, /turf/simulated/floor/tiled, /area/engineering/atmos/storage) -"apB" = ( +"apA" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, @@ -8133,7 +8123,7 @@ }, /turf/simulated/floor/tiled, /area/engineering/atmos/storage) -"apC" = ( +"apB" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 }, @@ -8142,7 +8132,7 @@ }, /turf/simulated/floor/tiled, /area/engineering/atmos/storage) -"apD" = ( +"apC" = ( /obj/machinery/door/airlock/atmos{ name = "Atmospherics Locker Room"; req_access = list(24) @@ -8156,7 +8146,7 @@ }, /turf/simulated/floor/tiled, /area/engineering/atmos/storage) -"apE" = ( +"apD" = ( /obj/effect/floor_decal/corner/yellow{ icon_state = "corner_white"; dir = 9 @@ -8169,7 +8159,7 @@ }, /turf/simulated/floor/tiled, /area/engineering/atmos/storage) -"apF" = ( +"apE" = ( /obj/machinery/camera/network/engineering{ c_tag = "Engineering - Atmospherics Locker Room"; dir = 8 @@ -8184,7 +8174,7 @@ /obj/item/weapon/reagent_containers/pill/antitox, /turf/simulated/floor/tiled, /area/engineering/atmos/storage) -"apG" = ( +"apF" = ( /obj/structure/table/rack{ dir = 1 }, @@ -8196,18 +8186,18 @@ /obj/item/clothing/glasses/meson, /turf/simulated/floor/plating, /area/maintenance/engineering) -"apH" = ( +"apG" = ( /obj/structure/closet, /obj/item/clothing/head/ushanka, /obj/machinery/light/small, /turf/simulated/floor/plating, /area/maintenance/engineering) -"apI" = ( +"apH" = ( /obj/item/device/t_scanner, /obj/structure/table/steel, /turf/simulated/floor/plating, /area/maintenance/engineering) -"apJ" = ( +"apI" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/cable{ d1 = 1; @@ -8221,20 +8211,20 @@ /obj/structure/reagent_dispensers/fueltank, /turf/simulated/floor/plating, /area/maintenance/engineering) -"apK" = ( +"apJ" = ( /obj/machinery/atmospherics/unary/vent_pump/on{ dir = 4 }, /obj/machinery/firealarm/west, /turf/simulated/floor/tiled/dark, /area/security/armoury) -"apL" = ( +"apK" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, /turf/simulated/floor/tiled/dark, /area/security/armoury) -"apM" = ( +"apL" = ( /obj/machinery/atmospherics/pipe/manifold/hidden/supply{ dir = 1 }, @@ -8248,7 +8238,7 @@ }, /turf/simulated/floor/tiled/dark, /area/security/armoury) -"apN" = ( +"apM" = ( /obj/machinery/door/airlock/highsecurity{ name = "Secure Armoury Section"; req_access = list(3) @@ -8262,7 +8252,7 @@ /obj/machinery/door/firedoor, /turf/simulated/floor/tiled/dark, /area/security/armoury) -"apO" = ( +"apN" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, @@ -8276,7 +8266,7 @@ }, /turf/simulated/floor/tiled/dark, /area/security/armoury) -"apP" = ( +"apO" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, @@ -8285,13 +8275,13 @@ }, /turf/simulated/floor/tiled/dark, /area/security/armoury) -"apQ" = ( +"apP" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 10 }, /turf/simulated/floor/tiled/dark, /area/security/armoury) -"apR" = ( +"apQ" = ( /obj/machinery/door/firedoor, /obj/structure/grille, /obj/structure/window/reinforced, @@ -8305,7 +8295,7 @@ /obj/structure/cable/green, /turf/simulated/floor/plating, /area/security/main) -"apS" = ( +"apR" = ( /obj/structure/table/standard, /obj/effect/floor_decal/corner/blue{ icon_state = "corner_white"; @@ -8315,7 +8305,7 @@ /obj/item/weapon/pen, /turf/simulated/floor/tiled, /area/security/main) -"apT" = ( +"apS" = ( /obj/machinery/alarm{ dir = 1; pixel_y = -22 @@ -8325,7 +8315,7 @@ }, /turf/simulated/floor/tiled, /area/security/main) -"apU" = ( +"apT" = ( /obj/machinery/power/apc{ dir = 2; name = "south bump"; @@ -8334,17 +8324,17 @@ /obj/structure/cable/green, /turf/simulated/floor/tiled, /area/security/main) -"apV" = ( +"apU" = ( /obj/effect/floor_decal/industrial/hatch/yellow, /obj/machinery/vending/coffee, /turf/simulated/floor/tiled, /area/security/main) -"apW" = ( +"apV" = ( /obj/structure/table/standard, /obj/item/weapon/storage/box/donut, /turf/simulated/floor/tiled, /area/security/main) -"apX" = ( +"apW" = ( /obj/structure/bed/chair{ dir = 8 }, @@ -8358,7 +8348,7 @@ /obj/machinery/light, /turf/simulated/floor/tiled, /area/security/main) -"apY" = ( +"apX" = ( /obj/effect/floor_decal/corner/blue{ icon_state = "corner_white"; dir = 10 @@ -8374,7 +8364,7 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/tiled, /area/security/main) -"apZ" = ( +"apY" = ( /obj/structure/flora/pottedplant/random, /obj/effect/floor_decal/corner/blue{ icon_state = "corner_white"; @@ -8382,7 +8372,7 @@ }, /turf/simulated/floor/tiled, /area/security/main) -"aqa" = ( +"apZ" = ( /obj/machinery/door/firedoor, /obj/structure/grille, /obj/structure/window/reinforced, @@ -8396,7 +8386,7 @@ /obj/structure/cable/green, /turf/simulated/floor/plating, /area/security/main) -"aqb" = ( +"aqa" = ( /obj/effect/floor_decal/corner/blue{ icon_state = "corner_white"; dir = 9 @@ -8406,13 +8396,13 @@ }, /turf/simulated/floor/tiled, /area/security/brig) -"aqc" = ( +"aqb" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, /turf/simulated/floor/tiled, /area/security/brig) -"aqd" = ( +"aqc" = ( /obj/effect/floor_decal/corner/blue, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/machinery/atmospherics/pipe/manifold/hidden/supply{ @@ -8426,7 +8416,7 @@ /obj/structure/disposalpipe/segment, /turf/simulated/floor/tiled, /area/security/brig) -"aqe" = ( +"aqd" = ( /obj/structure/flora/pottedplant/random, /obj/effect/floor_decal/corner/blue{ icon_state = "corner_white"; @@ -8437,7 +8427,7 @@ }, /turf/simulated/floor/tiled, /area/security/brig) -"aqf" = ( +"aqe" = ( /obj/effect/floor_decal/corner/blue{ icon_state = "corner_white"; dir = 10 @@ -8446,7 +8436,7 @@ /obj/item/roller, /turf/simulated/floor/tiled, /area/security/brig) -"aqg" = ( +"aqf" = ( /obj/effect/floor_decal/corner/blue{ icon_state = "corner_white"; dir = 10 @@ -8455,7 +8445,7 @@ /obj/item/bodybag/cryobag, /turf/simulated/floor/tiled, /area/security/brig) -"aqh" = ( +"aqg" = ( /obj/effect/floor_decal/corner/blue{ icon_state = "corner_white"; dir = 10 @@ -8473,7 +8463,7 @@ /obj/machinery/firealarm/east, /turf/simulated/floor/tiled, /area/security/brig) -"aqi" = ( +"aqh" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/cable{ d1 = 1; @@ -8482,14 +8472,14 @@ }, /turf/simulated/floor/plating, /area/maintenance/security_starboard) -"aqj" = ( +"aqi" = ( /obj/machinery/door/airlock/maintenance{ name = "Firefighting equipment"; req_access = list(12) }, /turf/simulated/floor/plating, /area/maintenance/security_starboard) -"aqk" = ( +"aqj" = ( /obj/structure/grille, /obj/structure/window/reinforced{ dir = 8 @@ -8515,7 +8505,7 @@ }, /turf/simulated/floor/plating, /area/bridge) -"aql" = ( +"aqk" = ( /obj/effect/floor_decal/corner/yellow{ icon_state = "corner_white"; dir = 9 @@ -8527,14 +8517,14 @@ /obj/item/modular_computer/console/preset/engineering, /turf/simulated/floor/tiled, /area/bridge) -"aqm" = ( +"aql" = ( /obj/effect/floor_decal/corner/yellow/full{ icon_state = "corner_white_full"; dir = 8 }, /turf/simulated/floor/tiled, /area/bridge) -"aqn" = ( +"aqm" = ( /obj/structure/cable/green{ d1 = 1; d2 = 2; @@ -8542,21 +8532,21 @@ }, /turf/simulated/floor/tiled, /area/bridge) -"aqo" = ( +"aqn" = ( /turf/simulated/floor/tiled, /area/bridge) -"aqp" = ( +"aqo" = ( /obj/item/device/radio/beacon, /turf/simulated/floor/tiled, /area/bridge) -"aqq" = ( +"aqp" = ( /obj/effect/floor_decal/corner/lime/full{ icon_state = "corner_white_full"; dir = 1 }, /turf/simulated/floor/tiled, /area/bridge) -"aqr" = ( +"aqq" = ( /obj/structure/table/reinforced, /obj/effect/floor_decal/corner/lime{ dir = 6 @@ -8568,7 +8558,7 @@ /obj/machinery/computer/med_data/laptop, /turf/simulated/floor/tiled, /area/bridge) -"aqs" = ( +"aqr" = ( /obj/structure/grille, /obj/structure/window/reinforced{ dir = 8 @@ -8590,7 +8580,7 @@ }, /turf/simulated/floor/plating, /area/bridge) -"aqt" = ( +"aqs" = ( /obj/machinery/light{ dir = 8; icon_state = "tube1"; @@ -8602,11 +8592,11 @@ }, /turf/simulated/floor/plating, /area/engineering/engine_room) -"aqu" = ( +"aqt" = ( /obj/machinery/atmospherics/pipe/simple/visible/cyan, /turf/simulated/floor/plating, /area/engineering/engine_room) -"aqv" = ( +"aqu" = ( /obj/structure/cable/yellow{ d1 = 2; d2 = 4; @@ -8614,7 +8604,7 @@ }, /turf/simulated/floor/plating, /area/engineering/engine_room) -"aqw" = ( +"aqv" = ( /obj/structure/cable/yellow{ d1 = 4; d2 = 8; @@ -8622,7 +8612,7 @@ }, /turf/simulated/floor/plating, /area/engineering/engine_room) -"aqx" = ( +"aqw" = ( /obj/machinery/door/airlock/hatch{ icon_state = "door_locked"; id_tag = "engine_electrical_maintenance"; @@ -8637,7 +8627,7 @@ }, /turf/simulated/floor/plating, /area/engineering/engine_smes) -"aqy" = ( +"aqx" = ( /obj/structure/cable/yellow{ d1 = 1; d2 = 8; @@ -8645,7 +8635,7 @@ }, /turf/simulated/floor/tiled, /area/engineering/engine_smes) -"aqz" = ( +"aqy" = ( /obj/machinery/power/apc{ dir = 2; name = "south bump"; @@ -8657,7 +8647,7 @@ }, /turf/simulated/floor/tiled, /area/engineering/engine_smes) -"aqA" = ( +"aqz" = ( /obj/machinery/atmospherics/unary/vent_pump/on{ dir = 4 }, @@ -8673,7 +8663,7 @@ }, /turf/simulated/floor/tiled, /area/engineering/engine_smes) -"aqB" = ( +"aqA" = ( /obj/structure/cable{ d1 = 1; d2 = 4; @@ -8689,7 +8679,7 @@ }, /turf/simulated/floor/tiled, /area/engineering/engine_smes) -"aqC" = ( +"aqB" = ( /obj/structure/cable{ d1 = 4; d2 = 8; @@ -8703,7 +8693,7 @@ }, /turf/simulated/floor/tiled, /area/engineering/engine_smes) -"aqD" = ( +"aqC" = ( /obj/machinery/door/airlock/maintenance_hatch{ name = "SMES Access"; req_access = list(11) @@ -8725,7 +8715,7 @@ }, /turf/simulated/floor/tiled, /area/engineering/engine_smes) -"aqE" = ( +"aqD" = ( /obj/structure/cable{ d1 = 2; d2 = 8; @@ -8743,7 +8733,7 @@ }, /turf/simulated/floor/tiled, /area/engineering/engine_monitoring) -"aqF" = ( +"aqE" = ( /obj/machinery/atmospherics/pipe/manifold/hidden/supply{ dir = 4 }, @@ -8752,7 +8742,7 @@ }, /turf/simulated/floor/tiled, /area/engineering/engine_monitoring) -"aqG" = ( +"aqF" = ( /obj/item/device/radio/intercom{ dir = 8; name = "Station Intercom (General)"; @@ -8765,7 +8755,7 @@ /obj/item/weapon/storage/bag/circuits/basic, /turf/simulated/floor/plating, /area/engineering/storage) -"aqH" = ( +"aqG" = ( /obj/structure/cable/green{ d1 = 1; d2 = 2; @@ -8777,16 +8767,16 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/plating, /area/engineering/storage) -"aqI" = ( +"aqH" = ( /obj/machinery/portable_atmospherics/canister/phoron, /obj/machinery/firealarm/south, /turf/simulated/floor/plating, /area/engineering/storage) -"aqJ" = ( +"aqI" = ( /obj/machinery/portable_atmospherics/canister/nitrogen, /turf/simulated/floor/plating, /area/engineering/storage) -"aqK" = ( +"aqJ" = ( /obj/structure/table/rack, /obj/item/clothing/suit/space/void/atmos, /obj/item/clothing/head/helmet/space/void/atmos, @@ -8813,12 +8803,12 @@ }, /turf/simulated/floor/tiled, /area/engineering/atmos/storage) -"aqL" = ( +"aqK" = ( /obj/machinery/light, /obj/machinery/atmospherics/pipe/simple/hidden/red, /turf/simulated/floor/tiled, /area/engineering/atmos/storage) -"aqM" = ( +"aqL" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/structure/cable/green{ @@ -8833,7 +8823,7 @@ /obj/machinery/atmospherics/pipe/simple/hidden/cyan, /turf/simulated/floor/tiled, /area/engineering/atmos/storage) -"aqN" = ( +"aqM" = ( /obj/structure/disposalpipe/segment, /obj/structure/cable/green{ d1 = 4; @@ -8845,7 +8835,7 @@ }, /turf/simulated/floor/tiled, /area/engineering/atmos/storage) -"aqO" = ( +"aqN" = ( /obj/structure/cable/green{ d1 = 4; d2 = 8; @@ -8857,7 +8847,7 @@ }, /turf/simulated/floor/tiled, /area/engineering/atmos/storage) -"aqP" = ( +"aqO" = ( /obj/structure/cable/green{ d1 = 4; d2 = 8; @@ -8870,7 +8860,7 @@ /obj/machinery/firealarm/south, /turf/simulated/floor/tiled, /area/engineering/atmos/storage) -"aqQ" = ( +"aqP" = ( /obj/machinery/power/apc/super{ name = "south bump"; pixel_y = -24 @@ -8881,7 +8871,7 @@ }, /turf/simulated/floor/tiled, /area/engineering/atmos/storage) -"aqR" = ( +"aqQ" = ( /obj/structure/closet/secure_closet/atmos_personal, /obj/item/device/flashlight, /obj/effect/floor_decal/industrial/outline/yellow, @@ -8893,7 +8883,7 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/tiled, /area/engineering/atmos/storage) -"aqS" = ( +"aqR" = ( /obj/structure/closet/secure_closet/atmos_personal, /obj/item/device/flashlight, /obj/effect/floor_decal/industrial/outline/yellow, @@ -8905,7 +8895,7 @@ /obj/machinery/light, /turf/simulated/floor/tiled, /area/engineering/atmos/storage) -"aqT" = ( +"aqS" = ( /obj/structure/closet/secure_closet/atmos_personal, /obj/item/device/flashlight, /obj/effect/floor_decal/industrial/outline/yellow, @@ -8913,19 +8903,19 @@ /obj/item/weapon/storage/belt/utility, /turf/simulated/floor/tiled, /area/engineering/atmos/storage) -"aqU" = ( +"aqT" = ( /obj/structure/dispenser/oxygen{ phorontanks = 10 }, /obj/effect/floor_decal/industrial/hatch/yellow, /turf/simulated/floor/tiled, /area/engineering/atmos/storage) -"aqV" = ( +"aqU" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/dirt, /turf/simulated/floor/plating, /area/maintenance/engineering) -"aqW" = ( +"aqV" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/cable{ d1 = 1; @@ -8939,12 +8929,12 @@ /obj/structure/closet/crate, /turf/simulated/floor/plating, /area/maintenance/engineering) -"aqX" = ( +"aqW" = ( /obj/machinery/deployable/barrier, /obj/effect/floor_decal/industrial/outline/blue, /turf/simulated/floor/tiled/dark, /area/security/armoury) -"aqY" = ( +"aqX" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/structure/cable/green{ @@ -8958,7 +8948,7 @@ }, /turf/simulated/floor/tiled/dark, /area/security/armoury) -"aqZ" = ( +"aqY" = ( /obj/structure/cable/green{ d1 = 1; d2 = 2; @@ -8966,7 +8956,7 @@ }, /turf/simulated/floor/tiled/dark, /area/security/armoury) -"ara" = ( +"aqZ" = ( /obj/structure/closet/secure_closet/guncabinet{ name = "Ammunition (.45 lethal)" }, @@ -8979,7 +8969,7 @@ /obj/item/ammo_magazine/c45m, /turf/simulated/floor/tiled/dark, /area/security/armoury) -"arb" = ( +"ara" = ( /obj/structure/closet/secure_closet/guncabinet{ name = "Ammunition (45. less-than-lethal)" }, @@ -8991,7 +8981,7 @@ /obj/item/ammo_magazine/c45m/rubber, /turf/simulated/floor/tiled/dark, /area/security/armoury) -"arc" = ( +"arb" = ( /obj/structure/closet/secure_closet/guncabinet{ name = "Ammunition (shotgun less-than-lethal)" }, @@ -9012,14 +9002,14 @@ }, /turf/simulated/floor/tiled/dark, /area/security/armoury) -"ard" = ( +"arc" = ( /obj/structure/sign/securearea{ pixel_x = 32; pixel_y = 0 }, /turf/simulated/floor/tiled/dark, /area/security/armoury) -"are" = ( +"ard" = ( /obj/machinery/computer/sentencing/courtroom{ pixel_y = 28 }, @@ -9028,7 +9018,7 @@ /obj/machinery/firealarm/west, /turf/simulated/floor/tiled, /area/security/brig) -"arf" = ( +"are" = ( /obj/effect/floor_decal/corner/blue{ icon_state = "corner_white"; dir = 6 @@ -9044,7 +9034,7 @@ }, /turf/simulated/floor/tiled, /area/security/brig) -"arg" = ( +"arf" = ( /obj/machinery/door/firedoor, /obj/structure/grille, /obj/structure/window/reinforced{ @@ -9059,7 +9049,7 @@ }, /turf/simulated/floor/plating, /area/security/brig) -"arh" = ( +"arg" = ( /obj/structure/table/standard, /obj/effect/floor_decal/corner/blue{ icon_state = "corner_white"; @@ -9074,7 +9064,7 @@ }, /turf/simulated/floor/tiled/dark, /area/security/brig) -"ari" = ( +"arh" = ( /obj/effect/floor_decal/corner/blue{ icon_state = "corner_white"; dir = 5 @@ -9086,7 +9076,7 @@ /obj/item/device/flashlight/lamp, /turf/simulated/floor/tiled/dark, /area/security/brig) -"arj" = ( +"ari" = ( /obj/machinery/door/firedoor, /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, @@ -9101,7 +9091,7 @@ }, /turf/simulated/floor/tiled, /area/security/brig) -"ark" = ( +"arj" = ( /obj/machinery/door/firedoor, /obj/structure/disposalpipe/segment, /obj/effect/floor_decal/corner/blue{ @@ -9110,7 +9100,7 @@ }, /turf/simulated/floor/tiled, /area/security/brig) -"arl" = ( +"ark" = ( /obj/machinery/door/firedoor, /obj/structure/grille, /obj/structure/window/reinforced, @@ -9131,7 +9121,7 @@ }, /turf/simulated/floor/plating, /area/security/main) -"arm" = ( +"arl" = ( /obj/machinery/door/firedoor, /obj/structure/cable/green{ d1 = 1; @@ -9156,7 +9146,7 @@ }, /turf/simulated/floor/tiled, /area/security/main) -"arn" = ( +"arm" = ( /obj/machinery/door/firedoor, /obj/structure/grille, /obj/structure/window/reinforced, @@ -9177,7 +9167,7 @@ }, /turf/simulated/floor/plating, /area/security/main) -"aro" = ( +"arn" = ( /obj/machinery/door/firedoor, /obj/effect/floor_decal/corner/blue{ icon_state = "corner_white"; @@ -9189,7 +9179,7 @@ }, /turf/simulated/floor/tiled, /area/security/brig) -"arp" = ( +"aro" = ( /obj/machinery/door/firedoor, /obj/structure/grille, /obj/structure/window/reinforced, @@ -9205,7 +9195,7 @@ }, /turf/simulated/floor/plating, /area/security/brig) -"arq" = ( +"arp" = ( /obj/machinery/door/firedoor, /obj/effect/floor_decal/corner/blue{ icon_state = "corner_white"; @@ -9225,7 +9215,7 @@ }, /turf/simulated/floor/tiled, /area/security/brig) -"arr" = ( +"arq" = ( /obj/machinery/door/firedoor, /obj/structure/grille, /obj/structure/window/reinforced{ @@ -9239,7 +9229,7 @@ }, /turf/simulated/floor/plating, /area/security/brig) -"ars" = ( +"arr" = ( /obj/machinery/door/firedoor, /obj/structure/grille, /obj/structure/window/reinforced{ @@ -9249,7 +9239,7 @@ /obj/structure/window/reinforced, /turf/simulated/floor/plating, /area/security/brig) -"art" = ( +"ars" = ( /obj/machinery/door/firedoor, /obj/structure/grille, /obj/structure/window/reinforced{ @@ -9263,7 +9253,7 @@ }, /turf/simulated/floor/plating, /area/security/brig) -"aru" = ( +"art" = ( /obj/structure/cable{ d1 = 1; d2 = 4; @@ -9281,7 +9271,25 @@ }, /turf/simulated/floor/plating, /area/maintenance/security_starboard) +"aru" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/maintenance/security_starboard) "arv" = ( +/obj/effect/decal/cleanable/dirt, /obj/structure/cable{ d1 = 4; d2 = 8; @@ -9300,24 +9308,6 @@ /area/maintenance/security_starboard) "arw" = ( /obj/effect/decal/cleanable/dirt, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/maintenance/security_starboard) -"arx" = ( -/obj/effect/decal/cleanable/dirt, /obj/structure/cable{ d1 = 4; d2 = 8; @@ -9335,7 +9325,7 @@ /obj/machinery/door/firedoor, /turf/simulated/floor/plating, /area/maintenance/security_starboard) -"ary" = ( +"arx" = ( /obj/structure/cable{ d1 = 2; d2 = 8; @@ -9358,7 +9348,7 @@ }, /turf/simulated/floor/plating, /area/maintenance/security_starboard) -"arz" = ( +"ary" = ( /obj/structure/cable{ d1 = 1; d2 = 8; @@ -9366,12 +9356,12 @@ }, /turf/simulated/floor/plating, /area/maintenance/security_starboard) -"arA" = ( +"arz" = ( /obj/effect/decal/cleanable/generic, /obj/effect/decal/cleanable/dirt, /turf/simulated/floor/plating, /area/maintenance/security_starboard) -"arB" = ( +"arA" = ( /obj/machinery/door/blast/regular{ density = 0; dir = 4; @@ -9386,13 +9376,13 @@ }, /turf/simulated/floor/plating, /area/maintenance/security_starboard) -"arC" = ( +"arB" = ( /obj/structure/sign/securearea{ pixel_y = 32 }, /turf/simulated/floor/plating, /area/maintenance/security_starboard) -"arD" = ( +"arC" = ( /obj/structure/grille, /obj/structure/window/reinforced{ dir = 8 @@ -9420,7 +9410,7 @@ }, /turf/simulated/floor/plating, /area/bridge) -"arE" = ( +"arD" = ( /obj/machinery/computer/security/engineering, /obj/effect/floor_decal/corner/yellow{ icon_state = "corner_white"; @@ -9432,7 +9422,7 @@ }, /turf/simulated/floor/tiled, /area/bridge) -"arF" = ( +"arE" = ( /obj/effect/floor_decal/corner/yellow{ icon_state = "corner_white"; dir = 9 @@ -9443,13 +9433,13 @@ }, /turf/simulated/floor/tiled, /area/bridge) -"arG" = ( +"arF" = ( /obj/machinery/atmospherics/unary/vent_pump/on{ dir = 4 }, /turf/simulated/floor/tiled, /area/bridge) -"arH" = ( +"arG" = ( /obj/structure/window/reinforced, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 @@ -9458,7 +9448,7 @@ /obj/structure/filingcabinet/chestdrawer, /turf/simulated/floor/tiled, /area/bridge) -"arI" = ( +"arH" = ( /obj/structure/window/reinforced, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 10 @@ -9468,7 +9458,7 @@ /obj/effect/floor_decal/industrial/warning, /turf/simulated/floor/tiled, /area/bridge) -"arJ" = ( +"arI" = ( /obj/structure/window/reinforced, /obj/effect/floor_decal/industrial/warning, /obj/structure/table/reinforced, @@ -9477,7 +9467,7 @@ }, /turf/simulated/floor/tiled, /area/bridge) -"arK" = ( +"arJ" = ( /obj/effect/floor_decal/corner/lime{ dir = 6 }, @@ -9487,7 +9477,7 @@ }, /turf/simulated/floor/tiled, /area/bridge) -"arL" = ( +"arK" = ( /obj/machinery/computer/med_data, /obj/effect/floor_decal/corner/lime{ dir = 6 @@ -9498,7 +9488,7 @@ }, /turf/simulated/floor/tiled, /area/bridge) -"arM" = ( +"arL" = ( /obj/structure/grille, /obj/structure/window/reinforced{ dir = 8 @@ -9517,20 +9507,20 @@ }, /turf/simulated/floor/plating, /area/bridge) -"arN" = ( +"arM" = ( /turf/simulated/wall/r_wall, /area/mine/unexplored) -"arO" = ( +"arN" = ( /obj/effect/floor_decal/industrial/warning, /turf/simulated/floor/plating, /area/engineering/engine_room) -"arP" = ( +"arO" = ( /obj/effect/floor_decal/industrial/warning/corner{ dir = 8 }, /turf/simulated/floor/plating, /area/engineering/engine_room) -"arQ" = ( +"arP" = ( /obj/machinery/power/terminal{ dir = 4 }, @@ -9541,7 +9531,7 @@ /obj/structure/cable/yellow, /turf/simulated/floor/plating, /area/engineering/engine_room) -"arR" = ( +"arQ" = ( /obj/machinery/power/smes/buildable{ charge = 2e+006; input_attempt = 1; @@ -9556,7 +9546,7 @@ /obj/effect/floor_decal/industrial/hatch/yellow, /turf/simulated/floor/plating, /area/engineering/engine_room) -"arS" = ( +"arR" = ( /obj/machinery/door/airlock/maintenance_hatch{ name = "SMES Access"; req_access = list(11) @@ -9568,7 +9558,7 @@ }, /turf/simulated/floor/tiled, /area/engineering/engine_monitoring) -"arT" = ( +"arS" = ( /obj/structure/sign/securearea{ desc = "A warning sign which reads 'RADIOACTIVE AREA'"; icon_state = "radiation"; @@ -9578,7 +9568,7 @@ }, /turf/simulated/wall/r_wall, /area/engineering/engine_monitoring) -"arU" = ( +"arT" = ( /obj/structure/cable{ d1 = 1; d2 = 2; @@ -9594,13 +9584,13 @@ }, /turf/simulated/floor/tiled, /area/engineering/engine_monitoring) -"arV" = ( +"arU" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/machinery/firealarm/east, /turf/simulated/floor/tiled, /area/engineering/engine_monitoring) -"arW" = ( +"arV" = ( /obj/machinery/door/airlock/engineering{ name = "Engineering Hard Storage"; req_access = list(11) @@ -9615,7 +9605,7 @@ /obj/machinery/door/firedoor, /turf/simulated/floor/plating, /area/engineering/storage) -"arX" = ( +"arW" = ( /obj/machinery/door/airlock/engineering{ name = "Engineering Hard Storage"; req_access = list(11) @@ -9623,7 +9613,7 @@ /obj/machinery/door/firedoor, /turf/simulated/floor/plating, /area/engineering/storage) -"arY" = ( +"arX" = ( /obj/structure/window/reinforced, /obj/structure/window/reinforced{ icon_state = "rwindow"; @@ -9636,7 +9626,7 @@ /obj/machinery/door/firedoor, /turf/simulated/floor/plating, /area/engineering/atmos/storage) -"arZ" = ( +"arY" = ( /obj/structure/window/reinforced, /obj/structure/window/reinforced{ icon_state = "rwindow"; @@ -9649,12 +9639,12 @@ /obj/machinery/door/firedoor, /turf/simulated/floor/plating, /area/engineering/atmos/storage) -"asa" = ( +"arZ" = ( /obj/machinery/atmospherics/pipe/simple/hidden/red, /obj/machinery/atmospherics/pipe/simple/hidden/red, /turf/simulated/wall/r_wall, /area/engineering/atmos/storage) -"asb" = ( +"asa" = ( /obj/machinery/door/firedoor, /obj/machinery/door/airlock/glass_atmos{ name = "Atmospherics Storage"; @@ -9665,11 +9655,11 @@ /obj/machinery/atmospherics/pipe/simple/hidden/cyan, /turf/simulated/floor/tiled, /area/engineering/atmos/storage) -"asc" = ( +"asb" = ( /obj/structure/disposalpipe/segment, /turf/simulated/wall/r_wall, /area/engineering/atmos/storage) -"asd" = ( +"asc" = ( /obj/machinery/door/firedoor, /obj/machinery/door/airlock/glass_atmos{ name = "Atmospherics Storage"; @@ -9677,7 +9667,7 @@ }, /turf/simulated/floor/tiled, /area/engineering/atmos/storage) -"ase" = ( +"asd" = ( /obj/structure/grille, /obj/structure/window/reinforced{ dir = 8 @@ -9696,10 +9686,10 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/plating, /area/engineering/locker_room) -"asf" = ( +"ase" = ( /turf/simulated/wall/r_wall, /area/engineering/locker_room) -"asg" = ( +"asf" = ( /obj/structure/cable{ d1 = 2; d2 = 4; @@ -9713,7 +9703,7 @@ }, /turf/simulated/floor/plating, /area/maintenance/engineering) -"ash" = ( +"asg" = ( /obj/structure/cable{ d1 = 4; d2 = 8; @@ -9728,7 +9718,7 @@ /obj/machinery/door/firedoor, /turf/simulated/floor/plating, /area/maintenance/engineering) -"asi" = ( +"ash" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/dirt, /obj/structure/cable{ @@ -9744,7 +9734,7 @@ }, /turf/simulated/floor/plating, /area/maintenance/engineering) -"asj" = ( +"asi" = ( /obj/structure/cable{ d1 = 2; d2 = 8; @@ -9764,7 +9754,7 @@ /obj/structure/disposalpipe/segment, /turf/simulated/floor/plating, /area/maintenance/engineering) -"ask" = ( +"asj" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/structure/extinguisher_cabinet{ @@ -9777,7 +9767,7 @@ }, /turf/simulated/floor/tiled/dark, /area/security/armoury) -"asl" = ( +"ask" = ( /obj/structure/cable/green{ d1 = 1; d2 = 4; @@ -9785,7 +9775,7 @@ }, /turf/simulated/floor/tiled/dark, /area/security/armoury) -"asm" = ( +"asl" = ( /obj/structure/cable/green{ d1 = 4; d2 = 8; @@ -9793,7 +9783,7 @@ }, /turf/simulated/floor/tiled/dark, /area/security/armoury) -"asn" = ( +"asm" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/structure/cable/green{ d1 = 4; @@ -9802,7 +9792,7 @@ }, /turf/simulated/floor/tiled/dark, /area/security/armoury) -"aso" = ( +"asn" = ( /obj/machinery/power/apc{ dir = 4; name = "east bump"; @@ -9814,14 +9804,14 @@ }, /turf/simulated/floor/tiled/dark, /area/security/armoury) -"asp" = ( +"aso" = ( /obj/machinery/newscaster{ pixel_x = -30; pixel_y = 0 }, /turf/simulated/floor/tiled, /area/security/brig) -"asq" = ( +"asp" = ( /obj/machinery/door/firedoor, /obj/structure/grille, /obj/structure/window/reinforced{ @@ -9834,18 +9824,18 @@ /obj/structure/window/reinforced, /turf/simulated/floor/plating, /area/security/brig) -"asr" = ( +"asq" = ( /obj/machinery/atmospherics/unary/vent_scrubber/on, /turf/simulated/floor/tiled/dark, /area/security/brig) -"ass" = ( +"asr" = ( /obj/effect/floor_decal/industrial/outline/yellow, /obj/structure/bed/chair{ dir = 8 }, /turf/simulated/floor/tiled/dark, /area/security/brig) -"ast" = ( +"ass" = ( /obj/machinery/door/firedoor, /obj/structure/grille, /obj/structure/window/reinforced{ @@ -9861,7 +9851,7 @@ }, /turf/simulated/floor/plating, /area/security/brig) -"asu" = ( +"ast" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 6 }, @@ -9880,7 +9870,7 @@ }, /turf/simulated/floor/tiled, /area/security/brig) -"asv" = ( +"asu" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, @@ -9898,7 +9888,7 @@ /obj/structure/closet, /turf/simulated/floor/tiled, /area/security/brig) -"asw" = ( +"asv" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, @@ -9922,7 +9912,7 @@ /obj/structure/closet, /turf/simulated/floor/tiled, /area/security/brig) -"asx" = ( +"asw" = ( /obj/machinery/atmospherics/pipe/manifold/hidden/supply, /obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, /obj/structure/cable/green{ @@ -9940,7 +9930,7 @@ }, /turf/simulated/floor/tiled, /area/security/brig) -"asy" = ( +"asx" = ( /obj/structure/cable/green{ d1 = 4; d2 = 8; @@ -9962,7 +9952,7 @@ }, /turf/simulated/floor/tiled, /area/security/brig) -"asz" = ( +"asy" = ( /obj/structure/cable/green{ d1 = 4; d2 = 8; @@ -9989,7 +9979,7 @@ }, /turf/simulated/floor/tiled, /area/security/brig) -"asA" = ( +"asz" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, @@ -10013,7 +10003,7 @@ }, /turf/simulated/floor/tiled, /area/security/brig) -"asB" = ( +"asA" = ( /obj/machinery/door/firedoor, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 @@ -10034,7 +10024,7 @@ }, /turf/simulated/floor/tiled, /area/security/brig) -"asC" = ( +"asB" = ( /obj/machinery/atmospherics/pipe/manifold/hidden/supply{ dir = 1 }, @@ -10059,24 +10049,24 @@ }, /turf/simulated/floor/tiled, /area/security/brig) +"asC" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/security/brig) "asD" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/security/brig) -"asE" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, @@ -10098,7 +10088,7 @@ }, /turf/simulated/floor/tiled, /area/security/brig) -"asF" = ( +"asE" = ( /obj/machinery/atmospherics/pipe/manifold/hidden/supply{ dir = 1 }, @@ -10118,7 +10108,7 @@ }, /turf/simulated/floor/tiled, /area/security/brig) -"asG" = ( +"asF" = ( /obj/structure/cable/green{ d1 = 4; d2 = 8; @@ -10144,7 +10134,7 @@ }, /turf/simulated/floor/tiled, /area/security/brig) -"asH" = ( +"asG" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, @@ -10164,7 +10154,7 @@ }, /turf/simulated/floor/tiled, /area/security/brig) -"asI" = ( +"asH" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, @@ -10192,7 +10182,7 @@ }, /turf/simulated/floor/tiled, /area/security/brig) -"asJ" = ( +"asI" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, @@ -10217,7 +10207,7 @@ }, /turf/simulated/floor/tiled, /area/security/brig) -"asK" = ( +"asJ" = ( /obj/structure/cable/green{ d1 = 4; d2 = 8; @@ -10239,7 +10229,7 @@ }, /turf/simulated/floor/tiled, /area/security/brig) -"asL" = ( +"asK" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, @@ -10262,7 +10252,7 @@ }, /turf/simulated/floor/tiled, /area/security/brig) -"asM" = ( +"asL" = ( /obj/machinery/atmospherics/pipe/manifold/hidden/supply{ dir = 1 }, @@ -10279,7 +10269,7 @@ }, /turf/simulated/floor/tiled, /area/security/brig) -"asN" = ( +"asM" = ( /obj/machinery/atmospherics/unary/vent_pump/on{ dir = 8 }, @@ -10289,10 +10279,10 @@ /obj/structure/closet/walllocker/emerglocker/east, /turf/simulated/floor/tiled, /area/security/brig) -"asO" = ( +"asN" = ( /turf/simulated/wall, /area/lawoffice) -"asP" = ( +"asO" = ( /obj/structure/cable{ d1 = 1; d2 = 2; @@ -10304,12 +10294,12 @@ /obj/structure/disposalpipe/segment, /turf/simulated/floor/plating, /area/maintenance/security_starboard) -"asQ" = ( +"asP" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/table/rack, /turf/simulated/floor/plating, /area/maintenance/security_starboard) -"asR" = ( +"asQ" = ( /obj/structure/grille, /obj/structure/window/reinforced{ dir = 8 @@ -10323,7 +10313,7 @@ }, /turf/simulated/floor/plating, /area/maintenance/security_starboard) -"asS" = ( +"asR" = ( /obj/machinery/door/firedoor, /obj/structure/grille, /obj/structure/window/reinforced, @@ -10332,7 +10322,7 @@ }, /turf/simulated/floor/plating, /area/maintenance/security_starboard) -"asT" = ( +"asS" = ( /obj/structure/grille, /obj/structure/window/reinforced{ dir = 1 @@ -10346,7 +10336,7 @@ }, /turf/simulated/floor/plating, /area/maintenance/security_starboard) -"asU" = ( +"asT" = ( /obj/structure/grille, /obj/structure/window/reinforced{ dir = 8 @@ -10375,7 +10365,7 @@ }, /turf/simulated/floor/plating, /area/bridge) -"asV" = ( +"asU" = ( /obj/machinery/computer/power_monitor, /obj/effect/floor_decal/corner/yellow{ icon_state = "corner_white"; @@ -10392,7 +10382,7 @@ }, /turf/simulated/floor/tiled, /area/bridge) -"asW" = ( +"asV" = ( /obj/effect/floor_decal/corner/yellow/full, /obj/structure/cable/green{ d1 = 4; @@ -10401,7 +10391,7 @@ }, /turf/simulated/floor/tiled, /area/bridge) -"asX" = ( +"asW" = ( /obj/structure/cable/green{ d1 = 1; d2 = 2; @@ -10414,7 +10404,7 @@ }, /turf/simulated/floor/tiled, /area/bridge) -"asY" = ( +"asX" = ( /obj/structure/window/reinforced{ dir = 4 }, @@ -10424,7 +10414,7 @@ }, /turf/simulated/floor/tiled, /area/bridge) -"asZ" = ( +"asY" = ( /obj/machinery/computer/message_monitor, /obj/effect/floor_decal/corner/paleblue/full{ icon_state = "corner_white_full"; @@ -10432,7 +10422,7 @@ }, /turf/simulated/floor/tiled, /area/bridge) -"ata" = ( +"asZ" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/structure/disposalpipe/segment, /obj/item/modular_computer/console/preset/command, @@ -10442,7 +10432,7 @@ }, /turf/simulated/floor/tiled, /area/bridge) -"atb" = ( +"ata" = ( /obj/effect/floor_decal/corner/paleblue/full{ icon_state = "corner_white_full"; dir = 1 @@ -10450,7 +10440,7 @@ /obj/item/modular_computer/console/preset/command, /turf/simulated/floor/tiled, /area/bridge) -"atc" = ( +"atb" = ( /obj/structure/window/reinforced{ dir = 8 }, @@ -10459,7 +10449,7 @@ }, /turf/simulated/floor/tiled, /area/bridge) -"atd" = ( +"atc" = ( /obj/structure/cable/green{ d1 = 1; d2 = 2; @@ -10472,7 +10462,7 @@ }, /turf/simulated/floor/tiled, /area/bridge) -"ate" = ( +"atd" = ( /obj/effect/floor_decal/corner/lime/full{ dir = 4 }, @@ -10483,7 +10473,7 @@ }, /turf/simulated/floor/tiled, /area/bridge) -"atf" = ( +"ate" = ( /obj/effect/floor_decal/corner/lime{ dir = 6 }, @@ -10499,7 +10489,7 @@ }, /turf/simulated/floor/tiled, /area/bridge) -"atg" = ( +"atf" = ( /obj/structure/grille, /obj/structure/window/reinforced{ dir = 8 @@ -10528,13 +10518,13 @@ }, /turf/simulated/floor/plating, /area/bridge) -"ath" = ( +"atg" = ( /obj/structure/sign/securearea{ name = "\improper DANGER: REACTOR VENT SHAFT" }, /turf/simulated/wall/r_wall, /area/engineering/engine_waste) -"ati" = ( +"ath" = ( /obj/structure/window/phoronreinforced, /obj/structure/window/phoronreinforced{ icon_state = "phoronrwindow"; @@ -10556,7 +10546,7 @@ }, /turf/simulated/floor/plating, /area/engineering/engine_room) -"atj" = ( +"ati" = ( /obj/structure/window/phoronreinforced, /obj/structure/window/phoronreinforced{ icon_state = "phoronrwindow"; @@ -10574,7 +10564,7 @@ }, /turf/simulated/floor/plating, /area/engineering/engine_room) -"atk" = ( +"atj" = ( /obj/structure/window/phoronreinforced, /obj/structure/window/phoronreinforced{ icon_state = "phoronrwindow"; @@ -10596,11 +10586,11 @@ }, /turf/simulated/floor/plating, /area/engineering/engine_room) -"atl" = ( +"atk" = ( /obj/structure/sign/nosmoking_2, /turf/simulated/wall/r_wall, /area/engineering/engine_room) -"atm" = ( +"atl" = ( /obj/machinery/light{ dir = 8; icon_state = "tube1"; @@ -10612,7 +10602,7 @@ }, /turf/simulated/floor/plating, /area/engineering/engine_room) -"atn" = ( +"atm" = ( /obj/structure/cable/yellow{ d1 = 1; d2 = 2; @@ -10620,13 +10610,13 @@ }, /turf/simulated/floor/plating, /area/engineering/engine_room) -"ato" = ( +"atn" = ( /obj/structure/cable/orange{ icon_state = "1-2" }, /turf/simulated/floor/plating, /area/engineering/engine_room) -"atp" = ( +"ato" = ( /obj/structure/window/reinforced{ dir = 8 }, @@ -10647,7 +10637,7 @@ }, /turf/simulated/floor/plating, /area/engineering/engine_monitoring) -"atq" = ( +"atp" = ( /obj/machinery/computer/general_air_control/supermatter_core{ frequency = 1438; input_tag = "cooling_in"; @@ -10662,7 +10652,7 @@ /obj/effect/floor_decal/industrial/hatch/yellow, /turf/simulated/floor/tiled, /area/engineering/engine_monitoring) -"atr" = ( +"atq" = ( /obj/machinery/power/apc{ dir = 1; name = "north bump"; @@ -10679,7 +10669,7 @@ }, /turf/simulated/floor/tiled, /area/engineering/engine_monitoring) -"ats" = ( +"atr" = ( /obj/machinery/alarm{ pixel_y = 22 }, @@ -10689,7 +10679,7 @@ }, /turf/simulated/floor/tiled, /area/engineering/engine_monitoring) -"att" = ( +"ats" = ( /obj/structure/cable/green{ d1 = 1; d2 = 2; @@ -10697,7 +10687,7 @@ }, /turf/simulated/floor/tiled, /area/engineering/engine_monitoring) -"atu" = ( +"att" = ( /obj/structure/table/reinforced, /obj/machinery/ringer{ department = "Engineering"; @@ -10708,7 +10698,7 @@ }, /turf/simulated/floor/tiled, /area/engineering/engine_monitoring) -"atv" = ( +"atu" = ( /obj/structure/window/reinforced{ dir = 8 }, @@ -10725,7 +10715,7 @@ }, /turf/simulated/floor/plating, /area/engineering/engine_monitoring) -"atw" = ( +"atv" = ( /obj/structure/cable{ d1 = 1; d2 = 2; @@ -10738,7 +10728,7 @@ }, /turf/simulated/floor/tiled, /area/engineering/engine_monitoring) -"atx" = ( +"atw" = ( /obj/machinery/alarm{ pixel_y = 22 }, @@ -10748,7 +10738,7 @@ }, /turf/simulated/floor/tiled, /area/engineering/engine_monitoring) -"aty" = ( +"atx" = ( /obj/structure/cable/green{ d1 = 1; d2 = 2; @@ -10761,20 +10751,20 @@ }, /turf/simulated/floor/tiled, /area/engineering/engine_monitoring) -"atz" = ( +"aty" = ( /obj/effect/floor_decal/industrial/warning{ dir = 1 }, /turf/simulated/floor/tiled, /area/engineering/engine_monitoring) -"atA" = ( +"atz" = ( /obj/effect/floor_decal/industrial/warning/corner{ icon_state = "warningcorner"; dir = 1 }, /turf/simulated/floor/tiled, /area/engineering/engine_monitoring) -"atB" = ( +"atA" = ( /obj/machinery/light{ dir = 1 }, @@ -10786,24 +10776,24 @@ }, /turf/simulated/floor/tiled, /area/engineering/engine_monitoring) -"atC" = ( +"atB" = ( /obj/machinery/mech_recharger, /turf/simulated/floor/tiled, /area/engineering/engine_monitoring) -"atD" = ( +"atC" = ( /turf/simulated/wall/r_wall, /area/engineering/atmos/monitoring) -"atE" = ( +"atD" = ( /obj/machinery/computer/security/engineering, /turf/simulated/floor/tiled, /area/engineering/atmos/monitoring) -"atF" = ( +"atE" = ( /obj/machinery/atmospherics/unary/vent_pump/on{ dir = 4 }, /turf/simulated/floor/tiled, /area/engineering/atmos/monitoring) -"atG" = ( +"atF" = ( /obj/structure/cable/green{ d2 = 2; icon_state = "0-2" @@ -10826,7 +10816,7 @@ /obj/machinery/atmospherics/pipe/simple/hidden/red, /turf/simulated/floor/tiled, /area/engineering/atmos/monitoring) -"atH" = ( +"atG" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/machinery/atmospherics/pipe/manifold/hidden/supply{ dir = 4 @@ -10838,7 +10828,7 @@ /obj/machinery/atmospherics/pipe/simple/hidden/cyan, /turf/simulated/floor/tiled, /area/engineering/atmos/monitoring) -"atI" = ( +"atH" = ( /obj/structure/window/reinforced{ dir = 4 }, @@ -10854,7 +10844,7 @@ /obj/machinery/door/firedoor, /turf/simulated/floor/plating, /area/engineering/locker_room) -"atJ" = ( +"atI" = ( /obj/effect/floor_decal/corner/yellow{ icon_state = "corner_white"; dir = 5 @@ -10862,7 +10852,7 @@ /obj/machinery/atmospherics/unary/vent_scrubber/on, /turf/simulated/floor/tiled, /area/engineering/locker_room) -"atK" = ( +"atJ" = ( /obj/item/device/radio/intercom{ broadcasting = 0; frequency = 1475; @@ -10882,7 +10872,7 @@ /obj/effect/floor_decal/industrial/outline/yellow, /turf/simulated/floor/tiled, /area/engineering/locker_room) -"atL" = ( +"atK" = ( /obj/machinery/portable_atmospherics/powered/pump/filled, /obj/machinery/atmospherics/portables_connector, /obj/effect/floor_decal/industrial/outline/yellow, @@ -10891,7 +10881,7 @@ }, /turf/simulated/floor/tiled, /area/engineering/locker_room) -"atM" = ( +"atL" = ( /obj/structure/grille, /obj/structure/window/reinforced{ dir = 8 @@ -10908,7 +10898,7 @@ }, /turf/simulated/floor/plating, /area/engineering/locker_room) -"atN" = ( +"atM" = ( /obj/effect/floor_decal/industrial/outline/yellow, /obj/structure/closet/secure_closet/engineering_personal, /obj/item/device/flashlight, @@ -10920,7 +10910,7 @@ }, /turf/simulated/floor/tiled, /area/engineering/locker_room) -"atO" = ( +"atN" = ( /obj/effect/floor_decal/industrial/outline/yellow, /obj/structure/closet/secure_closet/engineering_personal, /obj/item/device/flashlight, @@ -10934,7 +10924,7 @@ }, /turf/simulated/floor/tiled, /area/engineering/locker_room) -"atP" = ( +"atO" = ( /obj/effect/floor_decal/industrial/outline/yellow, /obj/structure/closet/secure_closet/engineering_personal, /obj/item/device/flashlight, @@ -10943,7 +10933,7 @@ /obj/machinery/firealarm/north, /turf/simulated/floor/tiled, /area/engineering/locker_room) -"atQ" = ( +"atP" = ( /obj/effect/floor_decal/industrial/outline/yellow, /obj/structure/closet/secure_closet/engineering_personal, /obj/item/device/flashlight, @@ -10961,11 +10951,11 @@ }, /turf/simulated/floor/tiled, /area/engineering/locker_room) -"atR" = ( +"atQ" = ( /obj/effect/decal/cleanable/dirt, /turf/simulated/floor/plating, /area/maintenance/engineering) -"atS" = ( +"atR" = ( /obj/structure/cable{ d1 = 1; d2 = 2; @@ -10975,7 +10965,7 @@ /obj/structure/disposalpipe/segment, /turf/simulated/floor/plating, /area/maintenance/engineering) -"atT" = ( +"atS" = ( /obj/machinery/hologram/holopad, /obj/machinery/light, /obj/machinery/camera/network/security{ @@ -10985,7 +10975,7 @@ }, /turf/simulated/floor/tiled/dark, /area/security/armoury) -"atU" = ( +"atT" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/structure/cable/green{ @@ -10995,27 +10985,27 @@ }, /turf/simulated/floor/tiled/dark, /area/security/armoury) -"atV" = ( +"atU" = ( /obj/structure/reagent_dispensers/peppertank{ pixel_x = -32 }, /turf/simulated/floor/tiled/dark, /area/security/armoury) -"atW" = ( +"atV" = ( /obj/machinery/hologram/holopad, /turf/simulated/floor/tiled/dark, /area/security/armoury) -"atX" = ( +"atW" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /turf/simulated/floor/tiled/dark, /area/security/armoury) -"atY" = ( +"atX" = ( /obj/structure/reagent_dispensers/peppertank{ pixel_x = 32 }, /turf/simulated/floor/tiled/dark, /area/security/armoury) -"atZ" = ( +"atY" = ( /obj/effect/floor_decal/corner/blue{ icon_state = "corner_white"; dir = 5 @@ -11028,14 +11018,14 @@ }, /turf/simulated/floor/tiled, /area/security/brig) -"aua" = ( +"atZ" = ( /obj/effect/floor_decal/corner/blue{ icon_state = "corner_white"; dir = 5 }, /turf/simulated/floor/tiled, /area/security/brig) -"aub" = ( +"aua" = ( /obj/effect/floor_decal/corner/blue{ icon_state = "corner_white"; dir = 5 @@ -11056,7 +11046,7 @@ }, /turf/simulated/floor/tiled, /area/security/brig) -"auc" = ( +"aub" = ( /obj/machinery/door/firedoor, /obj/structure/grille, /obj/structure/window/reinforced{ @@ -11075,11 +11065,11 @@ }, /turf/simulated/floor/plating, /area/security/brig) -"aud" = ( +"auc" = ( /obj/machinery/atmospherics/unary/vent_pump/on, /turf/simulated/floor/tiled, /area/security/brig) -"aue" = ( +"aud" = ( /obj/effect/floor_decal/corner/blue{ icon_state = "corner_white"; dir = 6 @@ -11093,7 +11083,7 @@ }, /turf/simulated/floor/tiled, /area/security/brig) -"auf" = ( +"aue" = ( /obj/effect/floor_decal/corner/blue{ dir = 10 }, @@ -11109,7 +11099,7 @@ }, /turf/simulated/floor/tiled/dark, /area/security/brig) -"aug" = ( +"auf" = ( /obj/effect/floor_decal/corner/blue{ dir = 10 }, @@ -11125,7 +11115,7 @@ }, /turf/simulated/floor/tiled/dark, /area/security/brig) -"auh" = ( +"aug" = ( /obj/effect/floor_decal/corner/blue{ dir = 10 }, @@ -11135,7 +11125,7 @@ /obj/machinery/light, /turf/simulated/floor/tiled/dark, /area/security/brig) -"aui" = ( +"auh" = ( /obj/effect/floor_decal/corner/blue{ dir = 10 }, @@ -11145,7 +11135,7 @@ }, /turf/simulated/floor/tiled/dark, /area/security/brig) -"auj" = ( +"aui" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/effect/floor_decal/corner/blue{ @@ -11154,7 +11144,7 @@ }, /turf/simulated/floor/tiled, /area/security/brig) -"auk" = ( +"auj" = ( /obj/structure/cable/green{ d1 = 1; d2 = 2; @@ -11167,7 +11157,7 @@ /obj/effect/floor_decal/corner/blue, /turf/simulated/floor/tiled, /area/security/brig) -"aul" = ( +"auk" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, @@ -11176,7 +11166,7 @@ }, /turf/simulated/floor/tiled, /area/security/brig) -"aum" = ( +"aul" = ( /obj/structure/disposalpipe/segment{ dir = 8; icon_state = "pipe-c" @@ -11186,20 +11176,20 @@ }, /turf/simulated/floor/tiled, /area/security/brig) -"aun" = ( +"aum" = ( /obj/effect/floor_decal/corner/blue{ dir = 10 }, /turf/simulated/floor/tiled, /area/security/brig) -"auo" = ( +"aun" = ( /obj/machinery/door/firedoor, /obj/effect/floor_decal/corner/blue{ dir = 10 }, /turf/simulated/floor/tiled, /area/security/brig) -"aup" = ( +"auo" = ( /obj/effect/floor_decal/corner/blue{ dir = 10 }, @@ -11208,7 +11198,7 @@ }, /turf/simulated/floor/tiled, /area/security/brig) -"auq" = ( +"aup" = ( /obj/effect/floor_decal/corner/blue{ dir = 10 }, @@ -11219,12 +11209,12 @@ }, /turf/simulated/floor/tiled, /area/security/brig) -"aur" = ( +"auq" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/tiled, /area/security/brig) -"aus" = ( +"aur" = ( /obj/machinery/atmospherics/unary/vent_scrubber/on{ dir = 1 }, @@ -11241,7 +11231,7 @@ }, /turf/simulated/floor/tiled, /area/security/brig) -"aut" = ( +"aus" = ( /obj/effect/floor_decal/corner/blue{ dir = 10 }, @@ -11250,7 +11240,7 @@ }, /turf/simulated/floor/tiled, /area/security/brig) -"auu" = ( +"aut" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/structure/cable/green{ @@ -11264,7 +11254,7 @@ }, /turf/simulated/floor/tiled, /area/security/brig) -"auv" = ( +"auu" = ( /obj/machinery/alarm{ dir = 8; icon_state = "alarm0"; @@ -11276,30 +11266,30 @@ }, /turf/simulated/floor/tiled, /area/security/brig) -"auw" = ( +"auv" = ( /turf/simulated/floor/carpet, /area/lawoffice) -"aux" = ( +"auw" = ( /obj/machinery/status_display{ pixel_x = 0; pixel_y = 32 }, /turf/simulated/floor/carpet, /area/lawoffice) -"auy" = ( +"aux" = ( /obj/machinery/light{ dir = 1 }, /turf/simulated/floor/wood, /area/lawoffice) -"auz" = ( +"auy" = ( /obj/machinery/light_switch{ pixel_x = 0; pixel_y = 24 }, /turf/simulated/floor/wood, /area/lawoffice) -"auA" = ( +"auz" = ( /obj/structure/closet/lawcloset, /obj/item/weapon/storage/briefcase{ pixel_x = 3; @@ -11315,10 +11305,10 @@ /obj/item/device/flash, /turf/simulated/floor/wood, /area/lawoffice) -"auB" = ( +"auA" = ( /turf/simulated/wall, /area/hallway/primary/starboard) -"auC" = ( +"auB" = ( /obj/structure/cable{ d1 = 1; d2 = 2; @@ -11335,7 +11325,7 @@ }, /turf/simulated/floor/plating, /area/hallway/primary/starboard) -"auD" = ( +"auC" = ( /obj/machinery/light{ dir = 4 }, @@ -11344,10 +11334,10 @@ }, /turf/simulated/floor/asteroid/ash/rocky, /area/bridge) -"auE" = ( +"auD" = ( /turf/simulated/wall, /area/bridge) -"auF" = ( +"auE" = ( /obj/structure/table/reinforced, /obj/machinery/alarm{ dir = 4; @@ -11376,7 +11366,7 @@ /obj/item/device/taperecorder, /turf/simulated/floor/tiled, /area/bridge) -"auG" = ( +"auF" = ( /obj/effect/floor_decal/corner/paleblue{ icon_state = "corner_white"; dir = 9 @@ -11385,7 +11375,7 @@ /obj/machinery/case_button/shuttle, /turf/simulated/floor/tiled, /area/bridge) -"auH" = ( +"auG" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/structure/disposalpipe/segment, /obj/structure/bed/chair/office/bridge{ @@ -11394,7 +11384,7 @@ }, /turf/simulated/floor/tiled, /area/bridge) -"auI" = ( +"auH" = ( /obj/structure/table/reinforced, /obj/machinery/button/remote/blast_door{ id = "bridge blast"; @@ -11409,7 +11399,7 @@ }, /turf/simulated/floor/tiled, /area/bridge) -"auJ" = ( +"auI" = ( /obj/structure/table/reinforced, /obj/item/device/radio/intercom{ dir = 4; @@ -11437,7 +11427,7 @@ }, /turf/simulated/floor/tiled, /area/bridge) -"auK" = ( +"auJ" = ( /obj/machinery/light{ dir = 8; icon_state = "tube1"; @@ -11450,10 +11440,10 @@ }, /turf/simulated/floor/asteroid/ash/rocky, /area/bridge) -"auL" = ( +"auK" = ( /turf/simulated/open, /area/engineering/engine_waste) -"auM" = ( +"auL" = ( /obj/machinery/door/blast/regular{ dir = 1; icon_state = "pdoor1"; @@ -11463,12 +11453,12 @@ }, /turf/simulated/floor/airless, /area/engineering/engine_waste) -"auN" = ( +"auM" = ( /turf/simulated/floor/airless{ icon_state = "asteroidplating" }, /area/mine/unexplored) -"auO" = ( +"auN" = ( /obj/machinery/camera/network/engine{ c_tag = "Engine Core West"; dir = 4 @@ -11478,13 +11468,13 @@ icon_state = "plating" }, /area/engineering/engine_room) -"auP" = ( +"auO" = ( /turf/simulated/floor/greengrid/nitrogen{ icon = 'icons/turf/flooring/plating.dmi'; icon_state = "plating" }, /area/engineering/engine_room) -"auQ" = ( +"auP" = ( /obj/machinery/atmospherics/unary/outlet_injector{ dir = 4; frequency = 1438; @@ -11501,7 +11491,7 @@ icon_state = "plating" }, /area/engineering/engine_room) -"auR" = ( +"auQ" = ( /obj/machinery/door/airlock/hatch{ icon_state = "door_locked"; id_tag = "engine_access_hatch"; @@ -11514,7 +11504,7 @@ }, /turf/simulated/floor/plating, /area/engineering/engine_room) -"auS" = ( +"auR" = ( /obj/machinery/atmospherics/pipe/simple/visible/cyan{ dir = 4; icon_state = "intact" @@ -11525,20 +11515,20 @@ }, /turf/simulated/floor/plating, /area/engineering/engine_room) -"auT" = ( +"auS" = ( /obj/machinery/atmospherics/pipe/simple/visible/cyan{ dir = 10 }, /turf/simulated/floor/plating, /area/engineering/engine_room) -"auU" = ( +"auT" = ( /obj/structure/cable/orange{ icon_state = "1-2" }, /obj/machinery/atmospherics/unary/vent_scrubber/on, /turf/simulated/floor/plating, /area/engineering/engine_room) -"auV" = ( +"auU" = ( /obj/structure/window/reinforced{ dir = 8 }, @@ -11556,12 +11546,12 @@ }, /turf/simulated/floor/plating, /area/engineering/engine_monitoring) -"auW" = ( +"auV" = ( /obj/effect/floor_decal/industrial/hatch/yellow, /obj/item/modular_computer/console/preset/engineering, /turf/simulated/floor/tiled, /area/engineering/engine_monitoring) -"auX" = ( +"auW" = ( /obj/structure/bed/chair/office/dark{ dir = 8 }, @@ -11576,15 +11566,15 @@ }, /turf/simulated/floor/tiled, /area/engineering/engine_monitoring) -"auY" = ( +"auX" = ( /obj/machinery/atmospherics/unary/vent_pump/on, /turf/simulated/floor/tiled, /area/engineering/engine_monitoring) -"auZ" = ( +"auY" = ( /obj/structure/table/reinforced, /turf/simulated/floor/tiled, /area/engineering/engine_monitoring) -"ava" = ( +"auZ" = ( /obj/structure/window/reinforced{ dir = 8 }, @@ -11599,7 +11589,7 @@ }, /turf/simulated/floor/plating, /area/engineering/engine_monitoring) -"avb" = ( +"ava" = ( /obj/structure/cable{ d1 = 1; d2 = 4; @@ -11617,7 +11607,7 @@ }, /turf/simulated/floor/tiled, /area/engineering/engine_monitoring) -"avc" = ( +"avb" = ( /obj/structure/cable{ d1 = 4; d2 = 8; @@ -11627,7 +11617,7 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/tiled, /area/engineering/engine_monitoring) -"avd" = ( +"avc" = ( /obj/structure/cable{ d1 = 4; d2 = 8; @@ -11635,7 +11625,7 @@ }, /turf/simulated/floor/tiled, /area/engineering/engine_monitoring) -"ave" = ( +"avd" = ( /obj/structure/cable/green{ d1 = 1; d2 = 2; @@ -11650,7 +11640,7 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/tiled, /area/engineering/engine_monitoring) -"avf" = ( +"ave" = ( /obj/structure/cable{ d1 = 4; d2 = 8; @@ -11662,7 +11652,7 @@ }, /turf/simulated/floor/tiled, /area/engineering/engine_monitoring) -"avg" = ( +"avf" = ( /obj/machinery/door/firedoor{ dir = 1; name = "Engineering Firelock" @@ -11678,7 +11668,7 @@ }, /turf/simulated/floor/tiled, /area/engineering/engine_monitoring) -"avh" = ( +"avg" = ( /obj/structure/cable{ d1 = 4; d2 = 8; @@ -11697,7 +11687,7 @@ }, /turf/simulated/floor/tiled, /area/engineering/engine_monitoring) -"avi" = ( +"avh" = ( /obj/structure/cable{ d1 = 4; d2 = 8; @@ -11708,7 +11698,7 @@ }, /turf/simulated/floor/tiled, /area/engineering/engine_monitoring) -"avj" = ( +"avi" = ( /obj/structure/cable{ d1 = 4; d2 = 8; @@ -11720,7 +11710,7 @@ }, /turf/simulated/floor/tiled, /area/engineering/engine_monitoring) -"avk" = ( +"avj" = ( /obj/structure/table/standard, /obj/structure/cable{ d1 = 2; @@ -11739,7 +11729,7 @@ }, /turf/simulated/floor/tiled, /area/engineering/engine_monitoring) -"avl" = ( +"avk" = ( /obj/machinery/computer/atmos_alert, /obj/machinery/alarm{ dir = 4; @@ -11749,13 +11739,13 @@ }, /turf/simulated/floor/tiled, /area/engineering/atmos/monitoring) -"avm" = ( +"avl" = ( /obj/structure/bed/chair/office/dark{ dir = 8 }, /turf/simulated/floor/tiled, /area/engineering/atmos/monitoring) -"avn" = ( +"avm" = ( /obj/structure/cable/green{ d1 = 1; d2 = 4; @@ -11764,7 +11754,7 @@ /obj/machinery/atmospherics/pipe/simple/hidden/red, /turf/simulated/floor/tiled, /area/engineering/atmos/monitoring) -"avo" = ( +"avn" = ( /obj/structure/cable/green{ d1 = 2; d2 = 8; @@ -11778,7 +11768,7 @@ /obj/machinery/atmospherics/pipe/simple/hidden/supply, /turf/simulated/floor/tiled, /area/engineering/atmos/monitoring) -"avp" = ( +"avo" = ( /obj/structure/window/reinforced{ dir = 4 }, @@ -11794,7 +11784,7 @@ }, /turf/simulated/floor/plating, /area/engineering/locker_room) -"avq" = ( +"avp" = ( /obj/structure/cable/green{ d1 = 2; d2 = 4; @@ -11810,7 +11800,7 @@ }, /turf/simulated/floor/tiled, /area/engineering/locker_room) -"avr" = ( +"avq" = ( /obj/machinery/meter, /obj/structure/cable/green{ d1 = 4; @@ -11823,7 +11813,7 @@ }, /turf/simulated/floor/tiled, /area/engineering/locker_room) -"avs" = ( +"avr" = ( /obj/structure/cable/green{ d1 = 4; d2 = 8; @@ -11838,7 +11828,7 @@ }, /turf/simulated/floor/tiled, /area/engineering/locker_room) -"avt" = ( +"avs" = ( /obj/machinery/door/firedoor{ dir = 1; name = "Engineering Firelock" @@ -11857,7 +11847,7 @@ }, /turf/simulated/floor/tiled, /area/engineering/locker_room) -"avu" = ( +"avt" = ( /obj/structure/cable/green{ d1 = 4; d2 = 8; @@ -11870,7 +11860,7 @@ /obj/machinery/atmospherics/pipe/simple/hidden/supply, /turf/simulated/floor/tiled, /area/engineering/locker_room) -"avv" = ( +"avu" = ( /obj/structure/cable/green{ d1 = 4; d2 = 8; @@ -11878,7 +11868,7 @@ }, /turf/simulated/floor/tiled, /area/engineering/locker_room) -"avw" = ( +"avv" = ( /obj/structure/closet/medical_wall{ pixel_x = 32 }, @@ -11894,7 +11884,7 @@ /obj/item/weapon/reagent_containers/pill/antitox, /turf/simulated/floor/tiled, /area/engineering/locker_room) -"avx" = ( +"avw" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/structure/cable/green{ @@ -11909,7 +11899,7 @@ }, /turf/simulated/floor/tiled/dark, /area/security/armoury) -"avy" = ( +"avx" = ( /obj/structure/table/standard, /obj/machinery/recharger, /obj/structure/sign/nosmoking_2{ @@ -11922,25 +11912,25 @@ }, /turf/simulated/floor/tiled/dark, /area/security/armoury) -"avz" = ( +"avy" = ( /obj/machinery/atmospherics/unary/vent_pump/on{ dir = 1 }, /turf/simulated/floor/tiled/dark, /area/security/armoury) -"avA" = ( +"avz" = ( /obj/machinery/flasher/portable, /obj/effect/floor_decal/industrial/outline/blue, /turf/simulated/floor/tiled/dark, /area/security/armoury) -"avB" = ( +"avA" = ( /obj/structure/window/reinforced, /obj/effect/floor_decal/corner/blue{ dir = 10 }, /turf/simulated/floor/tiled, /area/security/brig) -"avC" = ( +"avB" = ( /obj/effect/floor_decal/corner/blue{ dir = 10 }, @@ -11961,7 +11951,7 @@ }, /turf/simulated/floor/tiled, /area/security/brig) -"avD" = ( +"avC" = ( /obj/structure/window/reinforced, /obj/effect/floor_decal/corner/blue{ dir = 10 @@ -11978,7 +11968,7 @@ }, /turf/simulated/floor/tiled, /area/security/brig) -"avE" = ( +"avD" = ( /obj/machinery/door/firedoor, /obj/structure/grille, /obj/structure/window/reinforced, @@ -11995,11 +11985,11 @@ }, /turf/simulated/floor/plating, /area/security/brig) -"avF" = ( +"avE" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /turf/simulated/floor/tiled, /area/security/brig) -"avG" = ( +"avF" = ( /obj/effect/floor_decal/corner/blue{ icon_state = "corner_white"; dir = 6 @@ -12020,7 +12010,7 @@ }, /turf/simulated/floor/tiled, /area/security/brig) -"avH" = ( +"avG" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/effect/floor_decal/corner/blue{ @@ -12035,7 +12025,7 @@ /obj/machinery/firealarm/west, /turf/simulated/floor/tiled, /area/security/brig) -"avI" = ( +"avH" = ( /obj/structure/cable/green{ d1 = 1; d2 = 2; @@ -12048,18 +12038,18 @@ }, /turf/simulated/floor/tiled, /area/security/brig) -"avJ" = ( +"avI" = ( /obj/effect/floor_decal/corner/blue/diagonal, /turf/simulated/floor/tiled, /area/security/brig) -"avK" = ( +"avJ" = ( /obj/effect/floor_decal/corner/blue/diagonal, /obj/structure/bed/chair{ dir = 8 }, /turf/simulated/floor/tiled, /area/security/brig) -"avL" = ( +"avK" = ( /obj/structure/window/reinforced{ dir = 1 }, @@ -12070,7 +12060,7 @@ /obj/effect/floor_decal/industrial/hatch/yellow, /turf/simulated/floor/tiled, /area/security/brig) -"avM" = ( +"avL" = ( /obj/machinery/door/firedoor, /obj/structure/grille, /obj/structure/window/reinforced{ @@ -12088,10 +12078,10 @@ }, /turf/simulated/floor/plating, /area/security/prison) -"avN" = ( +"avM" = ( /turf/simulated/wall, /area/security/prison) -"avO" = ( +"avN" = ( /obj/machinery/door/firedoor, /obj/machinery/door/airlock/glass_security{ id_tag = "prisonexit"; @@ -12107,7 +12097,7 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/tiled, /area/security/prison) -"avP" = ( +"avO" = ( /obj/machinery/door/firedoor, /obj/structure/grille, /obj/structure/window/reinforced, @@ -12131,7 +12121,7 @@ }, /turf/simulated/floor/plating, /area/security/prison) -"avQ" = ( +"avP" = ( /obj/machinery/door/firedoor, /obj/machinery/door/window/brigdoor/northright{ id = "Cell 1"; @@ -12151,7 +12141,7 @@ }, /turf/simulated/floor/tiled, /area/security/prison) -"avR" = ( +"avQ" = ( /obj/machinery/door/firedoor, /obj/machinery/door/window/brigdoor/northright{ id = "Cell 2"; @@ -12171,10 +12161,10 @@ }, /turf/simulated/floor/tiled, /area/security/prison) -"avS" = ( +"avR" = ( /turf/simulated/floor/tiled/ramp/bottom, /area/security/brig) -"avT" = ( +"avS" = ( /obj/structure/grille, /obj/structure/window/reinforced{ dir = 8 @@ -12187,7 +12177,7 @@ }, /turf/simulated/floor/plating, /area/security/brig) -"avU" = ( +"avT" = ( /obj/structure/cable/green{ d1 = 1; d2 = 2; @@ -12201,7 +12191,7 @@ }, /turf/simulated/floor/tiled, /area/security/brig) -"avV" = ( +"avU" = ( /obj/effect/floor_decal/corner/blue{ icon_state = "corner_white"; dir = 6 @@ -12209,7 +12199,7 @@ /obj/machinery/firealarm/east, /turf/simulated/floor/tiled, /area/security/brig) -"avW" = ( +"avV" = ( /obj/structure/bed/chair/office/dark{ dir = 4 }, @@ -12223,7 +12213,7 @@ }, /turf/simulated/floor/carpet, /area/lawoffice) -"avX" = ( +"avW" = ( /obj/structure/table/wood, /obj/item/weapon/paper_bin, /obj/item/weapon/pen{ @@ -12237,23 +12227,23 @@ /obj/item/weapon/pen/red, /turf/simulated/floor/carpet, /area/lawoffice) -"avY" = ( +"avX" = ( /obj/structure/window/reinforced{ icon_state = "rwindow"; dir = 4 }, /turf/simulated/floor/carpet, /area/lawoffice) -"avZ" = ( +"avY" = ( /turf/simulated/floor/wood, /area/lawoffice) -"awa" = ( +"avZ" = ( /obj/structure/bed/chair/office/dark{ dir = 4 }, /turf/simulated/floor/wood, /area/lawoffice) -"awb" = ( +"awa" = ( /obj/structure/table/wood, /obj/item/weapon/folder/red{ desc = "A red folder. You can make out a small scribble in the top right corner. It reads Top Secret."; @@ -12264,7 +12254,7 @@ }, /turf/simulated/floor/wood, /area/lawoffice) -"awc" = ( +"awb" = ( /obj/machinery/door/firedoor, /obj/structure/grille, /obj/structure/window/reinforced/polarized{ @@ -12281,11 +12271,11 @@ }, /turf/simulated/floor/plating, /area/lawoffice) -"awd" = ( +"awc" = ( /obj/structure/closet/emcloset, /turf/simulated/floor/tiled, /area/hallway/primary/starboard) -"awe" = ( +"awd" = ( /obj/structure/cable{ d1 = 1; d2 = 2; @@ -12297,18 +12287,18 @@ /obj/structure/disposalpipe/segment, /turf/simulated/floor/tiled, /area/hallway/primary/starboard) -"awf" = ( +"awe" = ( /obj/structure/extinguisher_cabinet{ pixel_y = 32 }, /turf/simulated/floor/tiled, /area/hallway/primary/starboard) -"awg" = ( +"awf" = ( /obj/structure/window/reinforced, /obj/structure/window/reinforced, /turf/simulated/floor/asteroid/ash/rocky, /area/mine/unexplored) -"awh" = ( +"awg" = ( /obj/effect/floor_decal/corner/blue{ icon_state = "corner_white"; dir = 9 @@ -12320,14 +12310,14 @@ /obj/item/modular_computer/console/preset/security, /turf/simulated/floor/tiled, /area/bridge) -"awi" = ( +"awh" = ( /obj/effect/floor_decal/corner/blue/full{ icon_state = "corner_white_full"; dir = 8 }, /turf/simulated/floor/tiled, /area/bridge) -"awj" = ( +"awi" = ( /obj/structure/window/reinforced{ dir = 4 }, @@ -12338,14 +12328,14 @@ /obj/structure/banner, /turf/simulated/floor/tiled, /area/bridge) -"awk" = ( +"awj" = ( /obj/effect/floor_decal/corner/paleblue{ icon_state = "corner_white"; dir = 1 }, /turf/simulated/floor/tiled, /area/bridge) -"awl" = ( +"awk" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 6 @@ -12353,7 +12343,7 @@ /obj/structure/disposalpipe/segment, /turf/simulated/floor/tiled, /area/bridge) -"awm" = ( +"awl" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 }, @@ -12363,7 +12353,7 @@ }, /turf/simulated/floor/tiled, /area/bridge) -"awn" = ( +"awm" = ( /obj/structure/window/reinforced{ dir = 8 }, @@ -12378,14 +12368,14 @@ /obj/structure/banner, /turf/simulated/floor/tiled, /area/bridge) -"awo" = ( +"awn" = ( /obj/effect/floor_decal/corner/purple/full{ icon_state = "corner_white_full"; dir = 1 }, /turf/simulated/floor/tiled, /area/bridge) -"awp" = ( +"awo" = ( /obj/machinery/computer/mecha, /obj/effect/floor_decal/corner/purple{ icon_state = "corner_white"; @@ -12397,13 +12387,13 @@ }, /turf/simulated/floor/tiled, /area/bridge) -"awq" = ( +"awp" = ( /obj/machinery/light/small/emergency{ dir = 8 }, /turf/simulated/open, /area/engineering/engine_waste) -"awr" = ( +"awq" = ( /obj/machinery/door/blast/regular{ dir = 4; icon_state = "pdoor1"; @@ -12420,10 +12410,10 @@ }, /turf/simulated/floor/asteroid/ash/rocky, /area/engineering/engine_room) -"aws" = ( +"awr" = ( /turf/simulated/floor/greengrid/nitrogen, /area/engineering/engine_room) -"awt" = ( +"aws" = ( /obj/machinery/mass_driver{ icon_state = "mass_driver"; dir = 8; @@ -12434,7 +12424,7 @@ }, /turf/simulated/floor/greengrid/nitrogen, /area/engineering/engine_room) -"awu" = ( +"awt" = ( /obj/machinery/air_sensor{ frequency = 1438; id_tag = "engine_sensor"; @@ -12445,7 +12435,7 @@ icon_state = "plating" }, /area/engineering/engine_room) -"awv" = ( +"awu" = ( /obj/structure/window/phoronreinforced{ icon_state = "phoronrwindow"; dir = 4 @@ -12471,7 +12461,7 @@ }, /turf/simulated/floor/plating, /area/engineering/engine_room) -"aww" = ( +"awv" = ( /obj/effect/floor_decal/industrial/hatch/yellow, /obj/effect/floor_decal/industrial/warning, /obj/effect/floor_decal/industrial/warning{ @@ -12479,7 +12469,7 @@ }, /turf/simulated/floor/plating, /area/engineering/engine_room) -"awx" = ( +"aww" = ( /obj/machinery/power/emitter{ anchored = 1; dir = 8; @@ -12497,14 +12487,14 @@ }, /turf/simulated/floor/plating, /area/engineering/engine_room) -"awy" = ( +"awx" = ( /obj/machinery/atmospherics/pipe/simple/visible/cyan, /obj/structure/cable/orange{ icon_state = "4-8" }, /turf/simulated/floor/plating, /area/engineering/engine_room) -"awz" = ( +"awy" = ( /obj/structure/cable/orange{ icon_state = "4-8" }, @@ -12515,7 +12505,7 @@ }, /turf/simulated/floor/plating, /area/engineering/engine_room) -"awA" = ( +"awz" = ( /obj/structure/cable/orange{ icon_state = "1-8" }, @@ -12536,7 +12526,7 @@ }, /turf/simulated/floor/plating, /area/engineering/engine_room) -"awB" = ( +"awA" = ( /obj/structure/window/reinforced{ dir = 8 }, @@ -12560,7 +12550,7 @@ }, /turf/simulated/floor/plating, /area/engineering/engine_monitoring) -"awC" = ( +"awB" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, @@ -12575,7 +12565,7 @@ /obj/item/modular_computer/console/preset/engineering, /turf/simulated/floor/tiled, /area/engineering/engine_monitoring) -"awD" = ( +"awC" = ( /obj/structure/table/reinforced, /obj/machinery/button/remote/blast_door{ desc = "A remote control-switch for the engine control room blast doors."; @@ -12618,7 +12608,7 @@ }, /turf/simulated/floor/tiled, /area/engineering/engine_monitoring) -"awE" = ( +"awD" = ( /obj/structure/cable/green{ d1 = 4; d2 = 8; @@ -12630,7 +12620,7 @@ }, /turf/simulated/floor/tiled, /area/engineering/engine_monitoring) -"awF" = ( +"awE" = ( /obj/structure/cable/green{ d1 = 4; d2 = 8; @@ -12649,7 +12639,7 @@ }, /turf/simulated/floor/tiled, /area/engineering/engine_monitoring) -"awG" = ( +"awF" = ( /obj/structure/cable/green{ d1 = 4; d2 = 8; @@ -12663,7 +12653,7 @@ }, /turf/simulated/floor/tiled, /area/engineering/engine_monitoring) -"awH" = ( +"awG" = ( /obj/machinery/door/airlock/glass_engineering{ name = "Engine Monitoring Room"; req_access = list(11) @@ -12685,7 +12675,7 @@ }, /turf/simulated/floor/tiled, /area/engineering/engine_monitoring) -"awI" = ( +"awH" = ( /obj/structure/cable/green{ d1 = 4; d2 = 8; @@ -12709,7 +12699,7 @@ }, /turf/simulated/floor/tiled, /area/engineering/engine_monitoring) -"awJ" = ( +"awI" = ( /obj/structure/cable/green{ d1 = 4; d2 = 8; @@ -12724,7 +12714,7 @@ }, /turf/simulated/floor/tiled, /area/engineering/engine_monitoring) -"awK" = ( +"awJ" = ( /obj/structure/cable/green{ d1 = 4; d2 = 8; @@ -12739,7 +12729,7 @@ /obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, /turf/simulated/floor/tiled, /area/engineering/engine_monitoring) -"awL" = ( +"awK" = ( /obj/structure/cable/green{ d1 = 4; d2 = 8; @@ -12753,7 +12743,7 @@ }, /turf/simulated/floor/tiled, /area/engineering/engine_monitoring) -"awM" = ( +"awL" = ( /obj/structure/cable/green{ d1 = 4; d2 = 8; @@ -12771,7 +12761,7 @@ }, /turf/simulated/floor/tiled, /area/engineering/engine_monitoring) -"awN" = ( +"awM" = ( /obj/structure/cable/green{ d1 = 4; d2 = 8; @@ -12793,7 +12783,7 @@ }, /turf/simulated/floor/tiled, /area/engineering/engine_monitoring) -"awO" = ( +"awN" = ( /obj/structure/cable/green{ d1 = 4; d2 = 8; @@ -12811,7 +12801,7 @@ }, /turf/simulated/floor/tiled, /area/engineering/engine_monitoring) -"awP" = ( +"awO" = ( /obj/structure/cable/green{ d1 = 2; d2 = 8; @@ -12825,7 +12815,7 @@ }, /turf/simulated/floor/tiled, /area/engineering/engine_monitoring) -"awQ" = ( +"awP" = ( /obj/structure/table/rack, /obj/item/weapon/pickaxe{ pixel_x = 8 @@ -12850,18 +12840,18 @@ }, /turf/simulated/floor/tiled, /area/engineering/engine_monitoring) -"awR" = ( +"awQ" = ( /obj/item/modular_computer/console/preset/engineering, /obj/machinery/firealarm/west, /turf/simulated/floor/tiled, /area/engineering/atmos/monitoring) -"awS" = ( +"awR" = ( /obj/machinery/atmospherics/unary/vent_scrubber/on{ dir = 4 }, /turf/simulated/floor/tiled, /area/engineering/atmos/monitoring) -"awT" = ( +"awS" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 }, @@ -12871,7 +12861,7 @@ }, /turf/simulated/floor/tiled, /area/engineering/atmos/monitoring) -"awU" = ( +"awT" = ( /obj/structure/cable/green{ d1 = 1; d2 = 2; @@ -12888,7 +12878,7 @@ }, /turf/simulated/floor/tiled, /area/engineering/atmos/monitoring) -"awV" = ( +"awU" = ( /obj/structure/grille, /obj/structure/window/reinforced{ dir = 8 @@ -12904,7 +12894,7 @@ }, /turf/simulated/floor/plating, /area/engineering/locker_room) -"awW" = ( +"awV" = ( /obj/structure/cable/green{ d1 = 1; d2 = 2; @@ -12920,7 +12910,7 @@ }, /turf/simulated/floor/tiled, /area/engineering/locker_room) -"awX" = ( +"awW" = ( /obj/machinery/meter, /obj/machinery/atmospherics/pipe/manifold/visible{ dir = 1 @@ -12930,7 +12920,7 @@ }, /turf/simulated/floor/tiled, /area/engineering/locker_room) -"awY" = ( +"awX" = ( /obj/machinery/atmospherics/pipe/simple/visible{ icon_state = "intact"; dir = 10 @@ -12940,7 +12930,7 @@ }, /turf/simulated/floor/tiled, /area/engineering/locker_room) -"awZ" = ( +"awY" = ( /obj/structure/grille, /obj/structure/window/reinforced{ dir = 8 @@ -12960,7 +12950,7 @@ }, /turf/simulated/floor/plating, /area/engineering/locker_room) -"axa" = ( +"awZ" = ( /obj/machinery/atmospherics/pipe/manifold/hidden/supply, /obj/machinery/light_switch{ pixel_x = 0; @@ -12968,32 +12958,32 @@ }, /turf/simulated/floor/tiled, /area/engineering/locker_room) -"axb" = ( +"axa" = ( /obj/machinery/light, /obj/machinery/atmospherics/unary/vent_pump/on{ dir = 8 }, /turf/simulated/floor/tiled, /area/engineering/locker_room) -"axc" = ( +"axb" = ( /obj/structure/table/standard, /obj/item/device/floor_painter, /obj/item/clothing/head/hardhat, /obj/item/clothing/head/hardhat, /turf/simulated/floor/tiled, /area/engineering/locker_room) -"axd" = ( +"axc" = ( /obj/structure/closet/radiation, /obj/item/clothing/glasses/meson, /obj/item/clothing/glasses/meson, /obj/effect/floor_decal/industrial/outline/yellow, /turf/simulated/floor/tiled, /area/engineering/locker_room) -"axe" = ( +"axd" = ( /obj/structure/reagent_dispensers/fueltank, /turf/simulated/floor/plating, /area/maintenance/engineering) -"axf" = ( +"axe" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/dirt, /obj/structure/cable{ @@ -13008,7 +12998,7 @@ }, /turf/simulated/floor/plating, /area/maintenance/engineering) -"axg" = ( +"axf" = ( /obj/effect/decal/cleanable/generic, /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/dirt, @@ -13017,7 +13007,7 @@ }, /turf/simulated/floor/plating, /area/maintenance/engineering) -"axh" = ( +"axg" = ( /obj/machinery/alarm{ pixel_y = 23 }, @@ -13027,10 +13017,10 @@ }, /turf/simulated/floor/plating, /area/maintenance/engineering) -"axi" = ( +"axh" = ( /turf/simulated/wall, /area/security/armoury) -"axj" = ( +"axi" = ( /obj/machinery/computer/prisoner, /obj/machinery/requests_console{ department = "Security"; @@ -13039,7 +13029,7 @@ }, /turf/simulated/floor/tiled/dark, /area/security/armoury) -"axk" = ( +"axj" = ( /obj/machinery/atmospherics/unary/vent_pump/on{ dir = 4 }, @@ -13070,7 +13060,7 @@ /obj/structure/table/rack, /turf/simulated/floor/tiled/dark, /area/security/armoury) -"axl" = ( +"axk" = ( /obj/machinery/atmospherics/pipe/manifold/hidden/supply{ dir = 4 }, @@ -13086,7 +13076,7 @@ }, /turf/simulated/floor/tiled/dark, /area/security/armoury) -"axm" = ( +"axl" = ( /obj/structure/table/rack, /obj/item/clothing/suit/armor/laserproof{ pixel_x = -2; @@ -13114,7 +13104,7 @@ /obj/item/clothing/head/helmet/ablative, /turf/simulated/floor/tiled/dark, /area/security/armoury) -"axn" = ( +"axm" = ( /obj/machinery/flasher/portable, /obj/machinery/light/small/emergency{ icon_state = "bulb1"; @@ -13123,7 +13113,7 @@ /obj/effect/floor_decal/industrial/outline/blue, /turf/simulated/floor/tiled/dark, /area/security/armoury) -"axo" = ( +"axn" = ( /obj/machinery/alarm{ dir = 4; icon_state = "alarm0"; @@ -13138,7 +13128,7 @@ }, /turf/simulated/floor/tiled, /area/security/brig) -"axp" = ( +"axo" = ( /obj/machinery/atmospherics/pipe/manifold/hidden/supply{ dir = 1 }, @@ -13152,7 +13142,7 @@ }, /turf/simulated/floor/tiled, /area/security/brig) -"axq" = ( +"axp" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 }, @@ -13171,7 +13161,7 @@ }, /turf/simulated/floor/tiled, /area/security/brig) -"axr" = ( +"axq" = ( /obj/machinery/door/firedoor, /obj/machinery/door/airlock/glass_security{ name = "Security Processing"; @@ -13185,14 +13175,14 @@ }, /turf/simulated/floor/tiled, /area/security/brig) -"axs" = ( +"axr" = ( /obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ dir = 1 }, /obj/machinery/atmospherics/pipe/manifold/hidden/supply, /turf/simulated/floor/tiled, /area/security/brig) -"axt" = ( +"axs" = ( /obj/effect/floor_decal/corner/blue{ icon_state = "corner_white"; dir = 6 @@ -13201,7 +13191,7 @@ /obj/machinery/atmospherics/pipe/manifold/hidden/supply, /turf/simulated/floor/tiled, /area/security/brig) -"axu" = ( +"axt" = ( /obj/effect/floor_decal/corner/blue{ icon_state = "corner_white"; dir = 5 @@ -13218,7 +13208,7 @@ }, /turf/simulated/floor/tiled/dark, /area/security/brig) -"axv" = ( +"axu" = ( /obj/effect/floor_decal/corner/blue{ icon_state = "corner_white"; dir = 5 @@ -13237,7 +13227,7 @@ }, /turf/simulated/floor/tiled/dark, /area/security/brig) -"axw" = ( +"axv" = ( /obj/effect/floor_decal/corner/blue{ icon_state = "corner_white"; dir = 5 @@ -13250,7 +13240,7 @@ }, /turf/simulated/floor/tiled/dark, /area/security/brig) -"axx" = ( +"axw" = ( /obj/effect/floor_decal/corner/blue{ icon_state = "corner_white"; dir = 5 @@ -13261,7 +13251,7 @@ }, /turf/simulated/floor/tiled/dark, /area/security/brig) -"axy" = ( +"axx" = ( /obj/structure/window/reinforced{ dir = 8 }, @@ -13274,7 +13264,7 @@ /obj/effect/floor_decal/industrial/hatch/yellow, /turf/simulated/floor/tiled, /area/security/brig) -"axz" = ( +"axy" = ( /obj/machinery/door/firedoor, /obj/structure/grille, /obj/structure/window/reinforced{ @@ -13294,7 +13284,7 @@ /obj/structure/cable/green, /turf/simulated/floor/plating, /area/security/prison) -"axA" = ( +"axz" = ( /obj/machinery/flasher{ id = "permentryflash"; name = "Floor mounted flash"; @@ -13311,7 +13301,7 @@ /obj/structure/closet/walllocker/emerglocker/north, /turf/simulated/floor/tiled, /area/security/prison) -"axB" = ( +"axA" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/structure/cable/green, @@ -13330,7 +13320,7 @@ }, /turf/simulated/floor/tiled, /area/security/prison) -"axC" = ( +"axB" = ( /obj/structure/sink{ dir = 8; icon_state = "sink"; @@ -13342,7 +13332,7 @@ }, /turf/simulated/floor/tiled, /area/security/prison) -"axD" = ( +"axC" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 5 }, @@ -13351,7 +13341,7 @@ }, /turf/simulated/floor/tiled, /area/security/prison) -"axE" = ( +"axD" = ( /obj/structure/bed, /obj/machinery/atmospherics/unary/vent_pump/on{ dir = 8 @@ -13365,7 +13355,7 @@ }, /turf/simulated/floor/tiled, /area/security/prison) -"axF" = ( +"axE" = ( /obj/structure/bed, /obj/machinery/atmospherics/unary/vent_pump/on{ dir = 8 @@ -13379,7 +13369,7 @@ }, /turf/simulated/floor/tiled, /area/security/prison) -"axG" = ( +"axF" = ( /obj/machinery/light{ dir = 8; icon_state = "tube1"; @@ -13387,10 +13377,10 @@ }, /turf/simulated/floor/plating, /area/security/brig) -"axH" = ( +"axG" = ( /turf/simulated/floor/plating, /area/security/brig) -"axI" = ( +"axH" = ( /obj/structure/grille, /obj/structure/window/reinforced{ dir = 8 @@ -13400,7 +13390,7 @@ }, /turf/simulated/floor/plating, /area/security/brig) -"axJ" = ( +"axI" = ( /obj/structure/filingcabinet/chestdrawer, /obj/machinery/light/small{ dir = 8 @@ -13413,13 +13403,13 @@ /obj/structure/window/reinforced, /turf/simulated/floor/carpet, /area/lawoffice) -"axK" = ( +"axJ" = ( /obj/structure/table/wood, /obj/machinery/computer/skills, /obj/structure/window/reinforced, /turf/simulated/floor/carpet, /area/lawoffice) -"axL" = ( +"axK" = ( /obj/structure/bed/chair/comfy/brown{ dir = 1 }, @@ -13430,23 +13420,23 @@ }, /turf/simulated/floor/carpet, /area/lawoffice) -"axM" = ( +"axL" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 6 }, /turf/simulated/floor/wood, /area/lawoffice) -"axN" = ( +"axM" = ( /obj/machinery/atmospherics/unary/vent_pump/on{ dir = 8 }, /turf/simulated/floor/wood, /area/lawoffice) -"axO" = ( +"axN" = ( /obj/machinery/photocopier, /turf/simulated/floor/wood, /area/lawoffice) -"axP" = ( +"axO" = ( /obj/machinery/door/firedoor, /obj/structure/grille, /obj/structure/window/reinforced/polarized{ @@ -13459,7 +13449,7 @@ }, /turf/simulated/floor/plating, /area/lawoffice) -"axQ" = ( +"axP" = ( /obj/machinery/atmospherics/unary/vent_scrubber/on{ dir = 4 }, @@ -13468,7 +13458,7 @@ }, /turf/simulated/floor/tiled, /area/hallway/primary/starboard) -"axR" = ( +"axQ" = ( /obj/structure/cable{ d1 = 1; d2 = 2; @@ -13482,10 +13472,10 @@ /obj/structure/disposalpipe/segment, /turf/simulated/floor/tiled, /area/hallway/primary/starboard) -"axS" = ( +"axR" = ( /turf/simulated/floor/tiled, /area/hallway/primary/starboard) -"axT" = ( +"axS" = ( /obj/structure/window/reinforced{ icon_state = "rwindow"; dir = 4 @@ -13496,10 +13486,10 @@ }, /turf/simulated/floor/asteroid/ash/rocky, /area/mine/unexplored) -"axU" = ( +"axT" = ( /turf/simulated/open, /area/turbolift/vault_station) -"axV" = ( +"axU" = ( /obj/structure/window/reinforced{ dir = 8 }, @@ -13508,7 +13498,7 @@ }, /turf/simulated/floor/asteroid/ash/rocky, /area/mine/unexplored) -"axW" = ( +"axV" = ( /obj/structure/grille, /obj/structure/window/reinforced{ dir = 8 @@ -13536,7 +13526,7 @@ }, /turf/simulated/floor/plating, /area/bridge) -"axX" = ( +"axW" = ( /obj/machinery/computer/secure_data, /obj/effect/floor_decal/corner/blue{ icon_state = "corner_white"; @@ -13548,7 +13538,7 @@ }, /turf/simulated/floor/tiled, /area/bridge) -"axY" = ( +"axX" = ( /obj/effect/floor_decal/corner/blue{ icon_state = "corner_white"; dir = 9 @@ -13559,26 +13549,26 @@ }, /turf/simulated/floor/tiled, /area/bridge) -"axZ" = ( +"axY" = ( /turf/simulated/floor/tiled/ramp/bottom{ icon_state = "rampbot"; dir = 8 }, /area/bridge) -"aya" = ( +"axZ" = ( /obj/machinery/hologram/holopad, /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/structure/disposalpipe/segment, /turf/simulated/floor/tiled, /area/bridge) -"ayb" = ( +"aya" = ( /turf/simulated/floor/tiled/ramp/bottom{ icon_state = "rampbot"; dir = 4 }, /area/bridge) -"ayc" = ( +"ayb" = ( /obj/effect/floor_decal/corner/purple{ icon_state = "corner_white"; dir = 6 @@ -13589,7 +13579,7 @@ }, /turf/simulated/floor/tiled, /area/bridge) -"ayd" = ( +"ayc" = ( /obj/machinery/computer/robotics, /obj/effect/floor_decal/corner/purple{ icon_state = "corner_white"; @@ -13601,7 +13591,7 @@ }, /turf/simulated/floor/tiled, /area/bridge) -"aye" = ( +"ayd" = ( /obj/machinery/atmospherics/unary/vent_pump/engine{ dir = 4; external_pressure_bound = 100; @@ -13620,7 +13610,7 @@ icon_state = "plating" }, /area/engineering/engine_room) -"ayf" = ( +"aye" = ( /obj/machinery/door/airlock/hatch{ icon_state = "door_locked"; id_tag = "engine_access_hatch"; @@ -13632,7 +13622,7 @@ }, /turf/simulated/floor/plating, /area/engineering/engine_room) -"ayg" = ( +"ayf" = ( /obj/machinery/atmospherics/pipe/simple/visible/yellow{ icon_state = "intact"; dir = 10 @@ -13643,14 +13633,14 @@ }, /turf/simulated/floor/plating, /area/engineering/engine_room) -"ayh" = ( +"ayg" = ( /obj/machinery/atmospherics/pipe/simple/visible/cyan{ icon_state = "intact"; dir = 6 }, /turf/simulated/floor/plating, /area/engineering/engine_room) -"ayi" = ( +"ayh" = ( /obj/structure/cable/yellow{ d1 = 1; d2 = 2; @@ -13666,7 +13656,7 @@ }, /turf/simulated/floor/plating, /area/engineering/engine_room) -"ayj" = ( +"ayi" = ( /obj/structure/cable/orange{ icon_state = "1-2" }, @@ -13678,7 +13668,7 @@ /obj/structure/cable/orange, /turf/simulated/floor/plating, /area/engineering/engine_room) -"ayk" = ( +"ayj" = ( /obj/structure/bed/chair/office/dark{ dir = 8 }, @@ -13688,18 +13678,18 @@ }, /turf/simulated/floor/tiled, /area/engineering/engine_monitoring) -"ayl" = ( +"ayk" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/tiled, /area/engineering/engine_monitoring) -"aym" = ( +"ayl" = ( /obj/machinery/disposal, /obj/structure/disposalpipe/trunk{ dir = 4 }, /turf/simulated/floor/tiled, /area/engineering/engine_monitoring) -"ayn" = ( +"aym" = ( /obj/structure/window/reinforced{ dir = 8 }, @@ -13719,7 +13709,7 @@ }, /turf/simulated/floor/plating, /area/engineering/engine_monitoring) -"ayo" = ( +"ayn" = ( /obj/structure/cable{ d1 = 1; d2 = 2; @@ -13744,7 +13734,7 @@ }, /turf/simulated/floor/tiled, /area/engineering/engine_monitoring) -"ayp" = ( +"ayo" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/structure/disposalpipe/segment{ @@ -13757,13 +13747,13 @@ }, /turf/simulated/floor/tiled, /area/engineering/engine_monitoring) -"ayq" = ( +"ayp" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, /turf/simulated/floor/tiled, /area/engineering/engine_monitoring) -"ayr" = ( +"ayq" = ( /obj/machinery/atmospherics/unary/vent_scrubber/on{ dir = 1 }, @@ -13772,7 +13762,7 @@ }, /turf/simulated/floor/tiled, /area/engineering/engine_monitoring) -"ays" = ( +"ayr" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, @@ -13782,7 +13772,7 @@ }, /turf/simulated/floor/tiled, /area/engineering/engine_monitoring) -"ayt" = ( +"ays" = ( /obj/machinery/door/firedoor{ dir = 1; name = "Engineering Firelock" @@ -13796,14 +13786,14 @@ }, /turf/simulated/floor/tiled, /area/engineering/engine_monitoring) -"ayu" = ( +"ayt" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, /obj/effect/floor_decal/corner/yellow/full, /turf/simulated/floor/tiled, /area/engineering/engine_monitoring) -"ayv" = ( +"ayu" = ( /obj/machinery/atmospherics/unary/vent_scrubber/on{ dir = 4 }, @@ -13812,7 +13802,7 @@ }, /turf/simulated/floor/tiled, /area/engineering/engine_monitoring) -"ayw" = ( +"ayv" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 }, @@ -13822,7 +13812,7 @@ /obj/machinery/firealarm/south, /turf/simulated/floor/tiled, /area/engineering/engine_monitoring) -"ayx" = ( +"ayw" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 }, @@ -13832,7 +13822,7 @@ }, /turf/simulated/floor/tiled, /area/engineering/engine_monitoring) -"ayy" = ( +"ayx" = ( /obj/structure/cable/green{ d1 = 1; d2 = 2; @@ -13848,7 +13838,7 @@ }, /turf/simulated/floor/tiled, /area/engineering/engine_monitoring) -"ayz" = ( +"ayy" = ( /obj/item/weapon/shovel{ pixel_x = 8 }, @@ -13865,7 +13855,7 @@ }, /turf/simulated/floor/tiled, /area/engineering/engine_monitoring) -"ayA" = ( +"ayz" = ( /obj/machinery/computer/general_air_control{ frequency = 1441; name = "Tank Monitor"; @@ -13880,7 +13870,7 @@ }, /turf/simulated/floor/tiled, /area/engineering/atmos/monitoring) -"ayB" = ( +"ayA" = ( /obj/machinery/computer/general_air_control{ frequency = 1441; level = 3; @@ -13889,7 +13879,7 @@ }, /turf/simulated/floor/tiled, /area/engineering/atmos/monitoring) -"ayC" = ( +"ayB" = ( /obj/structure/cable/green{ d1 = 1; d2 = 2; @@ -13903,7 +13893,7 @@ }, /turf/simulated/floor/tiled, /area/engineering/atmos/monitoring) -"ayD" = ( +"ayC" = ( /obj/structure/window/reinforced{ dir = 4 }, @@ -13916,7 +13906,7 @@ /obj/structure/window/reinforced, /turf/simulated/floor/plating, /area/engineering/locker_room) -"ayE" = ( +"ayD" = ( /obj/structure/cable/green{ d1 = 1; d2 = 2; @@ -13931,7 +13921,7 @@ }, /turf/simulated/floor/tiled, /area/engineering/locker_room) -"ayF" = ( +"ayE" = ( /obj/machinery/portable_atmospherics/powered/scrubber, /obj/machinery/atmospherics/portables_connector{ dir = 1 @@ -13939,17 +13929,17 @@ /obj/effect/floor_decal/industrial/outline/yellow, /turf/simulated/floor/tiled, /area/engineering/locker_room) -"ayG" = ( +"ayF" = ( /turf/simulated/wall/r_wall, /area/maintenance/substation/engineering) -"ayH" = ( +"ayG" = ( /turf/simulated/wall, /area/maintenance/substation/engineering) -"ayI" = ( +"ayH" = ( /obj/structure/reagent_dispensers/watertank, /turf/simulated/floor/plating, /area/maintenance/engineering) -"ayJ" = ( +"ayI" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/dirt, /obj/structure/cable{ @@ -13959,7 +13949,7 @@ }, /turf/simulated/floor/plating, /area/maintenance/engineering) -"ayK" = ( +"ayJ" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/cable{ d1 = 4; @@ -13968,7 +13958,7 @@ }, /turf/simulated/floor/plating, /area/maintenance/engineering) -"ayL" = ( +"ayK" = ( /obj/structure/cable{ d1 = 1; d2 = 8; @@ -13977,13 +13967,13 @@ /obj/structure/disposalpipe/segment, /turf/simulated/floor/plating, /area/maintenance/engineering) -"ayM" = ( +"ayL" = ( /obj/machinery/recharger/wallcharger{ pixel_x = -24 }, /turf/simulated/floor/tiled/dark, /area/security/armoury) -"ayN" = ( +"ayM" = ( /obj/machinery/door/window/brigdoor/southright{ dir = 4; icon_state = "rightsecure"; @@ -13992,7 +13982,7 @@ }, /turf/simulated/floor/tiled/dark, /area/security/armoury) -"ayO" = ( +"ayN" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/structure/cable/green{ @@ -14007,7 +13997,7 @@ }, /turf/simulated/floor/tiled/dark, /area/security/armoury) -"ayP" = ( +"ayO" = ( /obj/structure/table/rack, /obj/item/clothing/suit/armor/bulletproof{ pixel_x = -2; @@ -14032,7 +14022,7 @@ /obj/item/clothing/head/helmet/ballistic, /turf/simulated/floor/tiled/dark, /area/security/armoury) -"ayQ" = ( +"ayP" = ( /obj/structure/bed/chair{ dir = 4 }, @@ -14049,7 +14039,7 @@ }, /turf/simulated/floor/tiled, /area/security/brig) -"ayR" = ( +"ayQ" = ( /obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ icon_state = "map-scrubbers"; dir = 4 @@ -14062,7 +14052,7 @@ }, /turf/simulated/floor/tiled, /area/security/brig) -"ayS" = ( +"ayR" = ( /obj/structure/bed/chair{ dir = 8 }, @@ -14086,26 +14076,26 @@ }, /turf/simulated/floor/tiled, /area/security/brig) -"ayT" = ( +"ayS" = ( /obj/machinery/atmospherics/unary/vent_scrubber/on{ dir = 1 }, /turf/simulated/floor/tiled, /area/security/brig) -"ayU" = ( +"ayT" = ( /obj/machinery/atmospherics/unary/vent_scrubber/on{ dir = 1 }, /turf/simulated/floor/tiled/dark, /area/security/brig) -"ayV" = ( +"ayU" = ( /obj/structure/bed/chair{ dir = 8 }, /obj/effect/floor_decal/industrial/outline/yellow, /turf/simulated/floor/tiled/dark, /area/security/brig) -"ayW" = ( +"ayV" = ( /obj/structure/cable/green{ d1 = 1; d2 = 2; @@ -14123,7 +14113,7 @@ }, /turf/simulated/floor/tiled, /area/security/brig) -"ayX" = ( +"ayW" = ( /obj/structure/cable/green{ d1 = 4; d2 = 8; @@ -14132,7 +14122,7 @@ /obj/effect/floor_decal/corner/blue/diagonal, /turf/simulated/floor/tiled, /area/security/brig) -"ayY" = ( +"ayX" = ( /obj/structure/cable/green{ d1 = 2; d2 = 8; @@ -14141,13 +14131,13 @@ /obj/effect/floor_decal/corner/blue/diagonal, /turf/simulated/floor/tiled, /area/security/brig) -"ayZ" = ( +"ayY" = ( /obj/machinery/atmospherics/pipe/simple/hidden, /obj/effect/floor_decal/industrial/outline/yellow, /obj/machinery/meter, /turf/simulated/floor/tiled, /area/security/brig) -"aza" = ( +"ayZ" = ( /obj/machinery/door/firedoor, /obj/structure/grille, /obj/structure/window/reinforced{ @@ -14160,12 +14150,12 @@ /obj/structure/window/reinforced, /turf/simulated/floor/plating, /area/security/prison) -"azb" = ( +"aza" = ( /obj/machinery/disposal, /obj/structure/disposalpipe/trunk, /turf/simulated/floor/tiled, /area/security/prison) -"azc" = ( +"azb" = ( /obj/structure/cable/green{ d1 = 1; d2 = 2; @@ -14175,17 +14165,17 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/tiled, /area/security/prison) -"azd" = ( +"azc" = ( /obj/structure/toilet{ dir = 4; pixel_y = 5 }, /turf/simulated/floor/tiled, /area/security/prison) -"aze" = ( +"azd" = ( /turf/simulated/floor/tiled, /area/security/prison) -"azf" = ( +"aze" = ( /obj/structure/closet/secure_closet/brig{ id = "Cell 1"; name = "Cell 1 Locker" @@ -14195,7 +14185,7 @@ }, /turf/simulated/floor/tiled, /area/security/prison) -"azg" = ( +"azf" = ( /obj/structure/closet/secure_closet/brig{ id = "Cell 2"; name = "Cell 2 Locker" @@ -14205,15 +14195,15 @@ }, /turf/simulated/floor/tiled, /area/security/prison) -"azh" = ( +"azg" = ( /obj/machinery/recharge_station, /turf/simulated/floor/greengrid, /area/security/brig) -"azi" = ( +"azh" = ( /obj/machinery/computer/area_atmos, /turf/simulated/floor/plating, /area/security/brig) -"azj" = ( +"azi" = ( /obj/structure/grille, /obj/structure/window/reinforced{ dir = 8 @@ -14224,7 +14214,7 @@ /obj/structure/window/reinforced, /turf/simulated/floor/plating, /area/security/brig) -"azk" = ( +"azj" = ( /obj/structure/filingcabinet/chestdrawer, /obj/machinery/light/small{ dir = 8 @@ -14239,7 +14229,7 @@ }, /turf/simulated/floor/carpet, /area/lawoffice) -"azl" = ( +"azk" = ( /obj/structure/table/wood, /obj/machinery/computer/skills, /obj/structure/window/reinforced{ @@ -14247,7 +14237,7 @@ }, /turf/simulated/floor/carpet, /area/lawoffice) -"azm" = ( +"azl" = ( /obj/structure/bed/chair/comfy/brown, /obj/structure/window/reinforced{ dir = 1 @@ -14258,12 +14248,12 @@ }, /turf/simulated/floor/carpet, /area/lawoffice) -"azn" = ( +"azm" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/hologram/holopad, /turf/simulated/floor/wood, /area/lawoffice) -"azo" = ( +"azn" = ( /obj/structure/table/wood, /obj/item/device/taperecorder{ pixel_x = 3; @@ -14276,13 +14266,13 @@ }, /turf/simulated/floor/wood, /area/lawoffice) -"azp" = ( +"azo" = ( /obj/structure/bed/chair{ dir = 4 }, /turf/simulated/floor/tiled, /area/hallway/primary/starboard) -"azq" = ( +"azp" = ( /obj/structure/cable{ d1 = 1; d2 = 2; @@ -14294,11 +14284,11 @@ /obj/structure/disposalpipe/segment, /turf/simulated/floor/tiled, /area/hallway/primary/starboard) -"azr" = ( +"azq" = ( /obj/machinery/firealarm/east, /turf/simulated/floor/tiled, /area/hallway/primary/starboard) -"azs" = ( +"azr" = ( /obj/machinery/computer/prisoner, /obj/effect/floor_decal/corner/blue{ icon_state = "corner_white"; @@ -14315,7 +14305,7 @@ }, /turf/simulated/floor/tiled, /area/bridge) -"azt" = ( +"azs" = ( /obj/effect/floor_decal/corner/blue/full, /obj/structure/cable/green{ d1 = 4; @@ -14329,7 +14319,7 @@ }, /turf/simulated/floor/tiled, /area/bridge) -"azu" = ( +"azt" = ( /obj/structure/cable/green{ d1 = 1; d2 = 4; @@ -14347,7 +14337,7 @@ }, /turf/simulated/floor/tiled, /area/bridge) -"azv" = ( +"azu" = ( /obj/machinery/recharger/wallcharger{ pixel_x = 6; pixel_y = -32 @@ -14362,7 +14352,7 @@ dir = 8 }, /area/bridge) -"azw" = ( +"azv" = ( /obj/structure/cable/green{ d1 = 4; d2 = 8; @@ -14371,7 +14361,7 @@ /obj/machinery/firealarm/south, /turf/simulated/floor/tiled, /area/bridge) -"azx" = ( +"azw" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/structure/disposalpipe/segment, @@ -14387,7 +14377,7 @@ }, /turf/simulated/floor/tiled, /area/bridge) -"azy" = ( +"azx" = ( /obj/machinery/requests_console{ announcementConsole = 1; department = "Bridge"; @@ -14402,7 +14392,7 @@ }, /turf/simulated/floor/tiled, /area/bridge) -"azz" = ( +"azy" = ( /obj/structure/cable/green{ d1 = 4; d2 = 8; @@ -14416,7 +14406,7 @@ dir = 4 }, /area/bridge) -"azA" = ( +"azz" = ( /obj/structure/cable/green{ d1 = 1; d2 = 8; @@ -14432,7 +14422,7 @@ }, /turf/simulated/floor/tiled, /area/bridge) -"azB" = ( +"azA" = ( /obj/effect/floor_decal/corner/purple/full{ dir = 4 }, @@ -14443,7 +14433,7 @@ }, /turf/simulated/floor/tiled, /area/bridge) -"azC" = ( +"azB" = ( /obj/effect/floor_decal/corner/purple{ icon_state = "corner_white"; dir = 6 @@ -14460,11 +14450,11 @@ }, /turf/simulated/floor/tiled, /area/bridge) -"azD" = ( +"azC" = ( /obj/structure/sign/vacuum, /turf/simulated/wall/r_wall, /area/engineering/engine_waste) -"azE" = ( +"azD" = ( /obj/machinery/atmospherics/pipe/simple/visible/yellow, /obj/machinery/button/remote/blast_door{ desc = "A remote control-switch for the engine charging port."; @@ -14494,12 +14484,12 @@ /obj/machinery/meter, /turf/simulated/floor/plating, /area/engineering/engine_room) -"azF" = ( +"azE" = ( /obj/machinery/atmospherics/pipe/simple/visible/cyan, /obj/machinery/meter, /turf/simulated/floor/plating, /area/engineering/engine_room) -"azG" = ( +"azF" = ( /obj/structure/cable/orange{ icon_state = "1-2" }, @@ -14508,7 +14498,7 @@ }, /turf/simulated/floor/plating, /area/engineering/engine_room) -"azH" = ( +"azG" = ( /obj/structure/window/reinforced{ dir = 8 }, @@ -14527,12 +14517,12 @@ }, /turf/simulated/floor/plating, /area/engineering/engine_monitoring) -"azI" = ( +"azH" = ( /obj/effect/floor_decal/industrial/hatch/yellow, /obj/machinery/computer/security/engineering, /turf/simulated/floor/tiled, /area/engineering/engine_monitoring) -"azJ" = ( +"azI" = ( /obj/effect/floor_decal/industrial/warning{ icon_state = "warning"; dir = 10 @@ -14540,7 +14530,7 @@ /obj/machinery/firealarm/south, /turf/simulated/floor/tiled, /area/engineering/engine_monitoring) -"azK" = ( +"azJ" = ( /obj/item/device/radio/intercom{ layer = 4; name = "Station Intercom (General)"; @@ -14554,7 +14544,7 @@ }, /turf/simulated/floor/tiled, /area/engineering/engine_monitoring) -"azL" = ( +"azK" = ( /obj/machinery/newscaster{ layer = 3.3; pixel_x = 0; @@ -14562,7 +14552,7 @@ }, /turf/simulated/floor/tiled, /area/engineering/engine_monitoring) -"azM" = ( +"azL" = ( /obj/structure/closet/radiation, /obj/effect/floor_decal/industrial/outline/yellow, /obj/machinery/light_switch{ @@ -14571,7 +14561,7 @@ }, /turf/simulated/floor/tiled, /area/engineering/engine_monitoring) -"azN" = ( +"azM" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/structure/cable/green{ @@ -14584,7 +14574,7 @@ }, /turf/simulated/floor/tiled, /area/engineering/engine_monitoring) -"azO" = ( +"azN" = ( /obj/structure/grille, /obj/structure/window/reinforced{ icon_state = "rwindow"; @@ -14604,7 +14594,7 @@ }, /turf/simulated/floor/plating, /area/engineering/storage) -"azP" = ( +"azO" = ( /obj/machinery/door/airlock/glass_engineering{ name = "Engineering EVA Storage"; req_access = list(11); @@ -14613,7 +14603,7 @@ /obj/machinery/door/firedoor, /turf/simulated/floor/tiled, /area/engineering/storage) -"azQ" = ( +"azP" = ( /obj/structure/grille, /obj/structure/window/reinforced{ dir = 1 @@ -14629,20 +14619,20 @@ }, /turf/simulated/floor/plating, /area/engineering/storage) +"azQ" = ( +/obj/structure/grille, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/window/reinforced, +/obj/machinery/door/firedoor{ + dir = 1; + name = "Engineering Firelock" + }, +/turf/simulated/floor/plating, +/area/engineering/storage) "azR" = ( /obj/structure/grille, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/window/reinforced, -/obj/machinery/door/firedoor{ - dir = 1; - name = "Engineering Firelock" - }, -/turf/simulated/floor/plating, -/area/engineering/storage) -"azS" = ( -/obj/structure/grille, /obj/structure/window/reinforced{ dir = 1 }, @@ -14657,7 +14647,7 @@ }, /turf/simulated/floor/plating, /area/engineering/storage) -"azT" = ( +"azS" = ( /obj/structure/grille, /obj/structure/window/reinforced{ icon_state = "rwindow"; @@ -14674,7 +14664,7 @@ /obj/structure/disposalpipe/segment, /turf/simulated/floor/plating, /area/engineering/engine_monitoring) -"azU" = ( +"azT" = ( /obj/structure/cable/green{ d1 = 1; d2 = 2; @@ -14692,7 +14682,7 @@ }, /turf/simulated/floor/tiled, /area/engineering/engine_monitoring) -"azV" = ( +"azU" = ( /obj/structure/grille, /obj/structure/window/reinforced{ icon_state = "rwindow"; @@ -14714,7 +14704,7 @@ }, /turf/simulated/floor/plating, /area/engineering/engine_monitoring) -"azW" = ( +"azV" = ( /obj/structure/grille, /obj/structure/window/reinforced{ dir = 8 @@ -14726,7 +14716,7 @@ /obj/machinery/door/firedoor, /turf/simulated/floor/plating, /area/engineering/atmos/monitoring) -"azX" = ( +"azW" = ( /obj/structure/grille, /obj/structure/window/reinforced, /obj/structure/window/reinforced{ @@ -14738,7 +14728,7 @@ /obj/machinery/door/firedoor, /turf/simulated/floor/plating, /area/engineering/atmos/monitoring) -"azY" = ( +"azX" = ( /obj/machinery/door/firedoor, /obj/machinery/door/airlock/glass_atmos{ name = "Atmospherics Monitoring Room"; @@ -14753,11 +14743,11 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/tiled, /area/engineering/atmos/monitoring) -"azZ" = ( +"azY" = ( /obj/structure/disposalpipe/segment, /turf/simulated/wall/r_wall, /area/engineering/locker_room) -"aAa" = ( +"azZ" = ( /obj/machinery/door/firedoor, /obj/machinery/door/airlock/glass_engineering{ name = "Engineering Hallway"; @@ -14770,7 +14760,7 @@ }, /turf/simulated/floor/tiled, /area/engineering/locker_room) -"aAb" = ( +"aAa" = ( /obj/structure/grille, /obj/structure/window/reinforced{ dir = 8 @@ -14782,7 +14772,7 @@ /obj/machinery/door/firedoor, /turf/simulated/floor/plating, /area/engineering/locker_room) -"aAc" = ( +"aAb" = ( /obj/structure/grille, /obj/structure/window/reinforced, /obj/structure/window/reinforced{ @@ -14794,10 +14784,10 @@ /obj/machinery/door/firedoor, /turf/simulated/floor/plating, /area/engineering/locker_room) -"aAd" = ( +"aAc" = ( /turf/simulated/floor/plating, /area/maintenance/substation/engineering) -"aAe" = ( +"aAd" = ( /obj/structure/cable/green{ d2 = 4; icon_state = "0-4" @@ -14821,7 +14811,7 @@ }, /turf/simulated/floor/plating, /area/maintenance/substation/engineering) -"aAf" = ( +"aAe" = ( /obj/machinery/power/smes/buildable{ charge = 0; RCon_tag = "Substation - \[F.3] Engineering" @@ -14836,13 +14826,13 @@ }, /turf/simulated/floor/plating, /area/maintenance/substation/engineering) -"aAg" = ( +"aAf" = ( /obj/machinery/power/breakerbox/activated{ RCon_tag = "\[F.3] Engineering Substation Bypass" }, /turf/simulated/floor/plating, /area/maintenance/substation/engineering) -"aAh" = ( +"aAg" = ( /obj/structure/sign/securearea{ desc = "A warning sign which reads 'HIGH VOLTAGE'"; icon_state = "shock"; @@ -14851,11 +14841,11 @@ }, /turf/simulated/wall, /area/maintenance/substation/engineering) -"aAi" = ( +"aAh" = ( /obj/effect/decal/cleanable/dirt, /turf/simulated/wall, /area/maintenance/engineering) -"aAj" = ( +"aAi" = ( /obj/structure/cable{ d1 = 1; d2 = 2; @@ -14866,7 +14856,7 @@ /obj/machinery/door/firedoor, /turf/simulated/floor/plating, /area/maintenance/engineering) -"aAk" = ( +"aAj" = ( /obj/machinery/atmospherics/unary/vent_scrubber/on{ dir = 4 }, @@ -14876,7 +14866,7 @@ }, /turf/simulated/floor/tiled/dark, /area/security/armoury) -"aAl" = ( +"aAk" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 }, @@ -14886,7 +14876,7 @@ }, /turf/simulated/floor/tiled/dark, /area/security/armoury) -"aAm" = ( +"aAl" = ( /obj/structure/cable/green{ d1 = 1; d2 = 2; @@ -14899,7 +14889,7 @@ /obj/machinery/firealarm/east, /turf/simulated/floor/tiled/dark, /area/security/armoury) -"aAn" = ( +"aAm" = ( /obj/structure/table/rack, /obj/item/weapon/storage/box/flashbangs{ pixel_x = 2; @@ -14909,7 +14899,7 @@ /obj/item/weapon/storage/box/firingpins, /turf/simulated/floor/tiled/dark, /area/security/armoury) -"aAo" = ( +"aAn" = ( /obj/structure/bed/chair{ dir = 4 }, @@ -14921,7 +14911,7 @@ /obj/machinery/light, /turf/simulated/floor/tiled, /area/security/brig) -"aAp" = ( +"aAo" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/structure/cable/green{ @@ -14931,7 +14921,7 @@ }, /turf/simulated/floor/tiled, /area/security/brig) -"aAq" = ( +"aAp" = ( /obj/structure/bed/chair{ dir = 8 }, @@ -14947,7 +14937,7 @@ }, /turf/simulated/floor/tiled, /area/security/brig) -"aAr" = ( +"aAq" = ( /obj/structure/table/standard, /obj/item/weapon/storage/box/evidence, /obj/item/weapon/hand_labeler{ @@ -14960,7 +14950,7 @@ }, /turf/simulated/floor/tiled, /area/security/brig) -"aAs" = ( +"aAr" = ( /obj/effect/floor_decal/corner/blue{ icon_state = "corner_white"; dir = 6 @@ -14968,7 +14958,7 @@ /obj/machinery/computer/secure_data, /turf/simulated/floor/tiled, /area/security/brig) -"aAt" = ( +"aAs" = ( /obj/structure/table/standard, /obj/effect/floor_decal/corner/blue{ dir = 10 @@ -14979,7 +14969,7 @@ }, /turf/simulated/floor/tiled/dark, /area/security/brig) -"aAu" = ( +"aAt" = ( /obj/effect/floor_decal/corner/blue{ dir = 10 }, @@ -14991,7 +14981,7 @@ /obj/item/device/flashlight/lamp, /turf/simulated/floor/tiled/dark, /area/security/brig) -"aAv" = ( +"aAu" = ( /obj/structure/cable/green{ d1 = 1; d2 = 2; @@ -15009,10 +14999,10 @@ }, /turf/simulated/floor/tiled, /area/security/brig) -"aAw" = ( +"aAv" = ( /turf/simulated/wall, /area/security/warden) -"aAx" = ( +"aAw" = ( /obj/machinery/door/firedoor, /obj/machinery/door/airlock/glass_security{ name = "Warden's Office"; @@ -15030,7 +15020,7 @@ }, /turf/simulated/floor/tiled/dark, /area/security/warden) -"aAy" = ( +"aAx" = ( /obj/machinery/door/firedoor, /obj/structure/grille, /obj/structure/window/reinforced, @@ -15049,7 +15039,7 @@ }, /turf/simulated/floor/plating, /area/security/warden) -"aAz" = ( +"aAy" = ( /obj/machinery/door/firedoor, /obj/structure/table/reinforced/steel, /obj/item/weapon/paper_bin{ @@ -15066,11 +15056,11 @@ /obj/machinery/atmospherics/pipe/simple/hidden, /turf/simulated/floor/tiled, /area/security/warden) -"aAA" = ( +"aAz" = ( /obj/structure/disposalpipe/segment, /turf/simulated/wall, /area/security/warden) -"aAB" = ( +"aAA" = ( /obj/machinery/door/airlock/glass_security{ id_tag = "prisonentry"; name = "Brig Entry"; @@ -15086,7 +15076,7 @@ /obj/machinery/door/firedoor, /turf/simulated/floor/tiled, /area/security/prison) -"aAC" = ( +"aAB" = ( /obj/structure/grille, /obj/structure/window/reinforced, /obj/structure/window/reinforced{ @@ -15105,7 +15095,7 @@ /obj/machinery/door/firedoor, /turf/simulated/floor/plating, /area/security/prison) -"aAD" = ( +"aAC" = ( /obj/machinery/door/blast/regular{ dir = 1; id = "Cell 1"; @@ -15115,7 +15105,7 @@ /obj/machinery/door/firedoor, /turf/simulated/floor/tiled, /area/security/prison) -"aAE" = ( +"aAD" = ( /obj/machinery/door/blast/regular{ dir = 1; id = "Cell 2"; @@ -15125,7 +15115,7 @@ /obj/machinery/door/firedoor, /turf/simulated/floor/tiled, /area/security/prison) -"aAF" = ( +"aAE" = ( /obj/machinery/door/firedoor, /obj/structure/cable/green{ d1 = 1; @@ -15143,7 +15133,7 @@ }, /turf/simulated/floor/tiled, /area/security/brig) -"aAG" = ( +"aAF" = ( /obj/machinery/door/firedoor, /obj/effect/floor_decal/corner/blue{ icon_state = "corner_white"; @@ -15155,11 +15145,11 @@ }, /turf/simulated/floor/tiled, /area/security/brig) -"aAH" = ( +"aAG" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /turf/simulated/floor/wood, /area/lawoffice) -"aAI" = ( +"aAH" = ( /obj/structure/table/wood, /obj/machinery/photocopier/faxmachine{ anchored = 0; @@ -15167,7 +15157,7 @@ }, /turf/simulated/floor/wood, /area/lawoffice) -"aAJ" = ( +"aAI" = ( /obj/machinery/door/firedoor, /obj/structure/grille, /obj/structure/window/reinforced/polarized{ @@ -15183,7 +15173,7 @@ }, /turf/simulated/floor/plating, /area/lawoffice) -"aAK" = ( +"aAJ" = ( /obj/machinery/light{ dir = 8; icon_state = "tube1"; @@ -15192,7 +15182,7 @@ /obj/structure/flora/pottedplant/random, /turf/simulated/floor/tiled, /area/hallway/primary/starboard) -"aAL" = ( +"aAK" = ( /obj/structure/cable{ d1 = 1; d2 = 2; @@ -15206,23 +15196,23 @@ /obj/structure/disposalpipe/segment, /turf/simulated/floor/tiled, /area/hallway/primary/starboard) -"aAM" = ( +"aAL" = ( /obj/machinery/atmospherics/unary/vent_pump/on{ dir = 8 }, /turf/simulated/floor/tiled, /area/hallway/primary/starboard) -"aAN" = ( +"aAM" = ( /turf/simulated/wall/r_wall, /area/teleporter) -"aAO" = ( +"aAN" = ( /obj/machinery/door/airlock/maintenance{ req_access = list(17) }, /obj/machinery/door/firedoor, /turf/simulated/floor/plating, /area/teleporter) -"aAP" = ( +"aAO" = ( /obj/structure/grille, /obj/structure/window/reinforced, /obj/structure/window/reinforced{ @@ -15235,7 +15225,7 @@ /obj/structure/cable/green, /turf/simulated/floor/plating, /area/bridge) -"aAQ" = ( +"aAP" = ( /obj/structure/grille, /obj/structure/window/reinforced, /obj/structure/window/reinforced{ @@ -15248,7 +15238,7 @@ /obj/structure/cable/green, /turf/simulated/floor/plating, /area/bridge) -"aAR" = ( +"aAQ" = ( /obj/machinery/door/airlock/glass_command{ id_tag = ""; name = "Bridge"; @@ -15265,10 +15255,10 @@ }, /turf/simulated/floor/tiled, /area/bridge) -"aAS" = ( +"aAR" = ( /turf/simulated/wall/r_wall, /area/crew_quarters/captain) -"aAT" = ( +"aAS" = ( /obj/structure/grille, /obj/machinery/door/firedoor, /obj/structure/window/reinforced{ @@ -15293,10 +15283,36 @@ }, /turf/simulated/floor/plating, /area/crew_quarters/captain) +"aAT" = ( +/obj/structure/grille, +/obj/machinery/door/firedoor, +/obj/structure/window/reinforced, +/obj/structure/window/reinforced{ + icon_state = "rwindow"; + dir = 1 + }, +/obj/structure/cable/green{ + d2 = 2; + icon_state = "0-2" + }, +/obj/machinery/door/blast/regular{ + density = 0; + dir = 4; + icon_state = "pdoor0"; + id = "bridge blast"; + name = "Bridge Blast Doors"; + opacity = 0 + }, +/turf/simulated/floor/plating, +/area/crew_quarters/captain) "aAU" = ( /obj/structure/grille, /obj/machinery/door/firedoor, /obj/structure/window/reinforced, +/obj/structure/window/reinforced{ + icon_state = "rwindow"; + dir = 4 + }, /obj/structure/window/reinforced{ icon_state = "rwindow"; dir = 1 @@ -15316,32 +15332,6 @@ /turf/simulated/floor/plating, /area/crew_quarters/captain) "aAV" = ( -/obj/structure/grille, -/obj/machinery/door/firedoor, -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - icon_state = "rwindow"; - dir = 4 - }, -/obj/structure/window/reinforced{ - icon_state = "rwindow"; - dir = 1 - }, -/obj/structure/cable/green{ - d2 = 2; - icon_state = "0-2" - }, -/obj/machinery/door/blast/regular{ - density = 0; - dir = 4; - icon_state = "pdoor0"; - id = "bridge blast"; - name = "Bridge Blast Doors"; - opacity = 0 - }, -/turf/simulated/floor/plating, -/area/crew_quarters/captain) -"aAW" = ( /obj/machinery/atmospherics/pipe/simple/visible/yellow{ dir = 6 }, @@ -15351,7 +15341,7 @@ }, /turf/simulated/floor/plating, /area/engineering/engine_room) -"aAX" = ( +"aAW" = ( /obj/machinery/atmospherics/pipe/simple/visible/yellow{ dir = 4 }, @@ -15361,7 +15351,7 @@ }, /turf/simulated/floor/plating, /area/engineering/engine_room) -"aAY" = ( +"aAX" = ( /obj/machinery/atmospherics/pipe/manifold/visible/yellow{ icon_state = "map"; dir = 1 @@ -15372,7 +15362,7 @@ }, /turf/simulated/floor/plating, /area/engineering/engine_room) -"aAZ" = ( +"aAY" = ( /obj/machinery/atmospherics/pipe/simple/visible/yellow{ dir = 9 }, @@ -15382,7 +15372,7 @@ }, /turf/simulated/floor/plating, /area/engineering/engine_room) -"aBa" = ( +"aAZ" = ( /obj/structure/cable/orange, /obj/machinery/power/apc/super/critical{ dir = 4; @@ -15391,7 +15381,7 @@ }, /turf/simulated/floor/plating, /area/engineering/engine_room) -"aBb" = ( +"aBa" = ( /obj/structure/cable{ d1 = 1; d2 = 2; @@ -15410,7 +15400,7 @@ }, /turf/simulated/floor/tiled, /area/engineering/engine_monitoring) -"aBc" = ( +"aBb" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/machinery/atmospherics/pipe/manifold/hidden/supply{ dir = 4 @@ -15422,7 +15412,7 @@ }, /turf/simulated/floor/tiled, /area/engineering/engine_monitoring) -"aBd" = ( +"aBc" = ( /obj/structure/grille, /obj/structure/window/reinforced{ icon_state = "rwindow"; @@ -15441,7 +15431,7 @@ }, /turf/simulated/floor/plating, /area/engineering/storage) -"aBe" = ( +"aBd" = ( /obj/item/stack/material/steel{ amount = 50 }, @@ -15455,23 +15445,23 @@ /obj/structure/table/rack, /turf/simulated/floor/tiled, /area/engineering/storage) -"aBf" = ( +"aBe" = ( /turf/simulated/floor/tiled, /area/engineering/storage) -"aBg" = ( +"aBf" = ( /obj/effect/floor_decal/industrial/outline/yellow, /obj/structure/closet/secure_closet/engineering_welding, /obj/item/clothing/glasses/welding, /obj/item/clothing/glasses/welding, /turf/simulated/floor/tiled, /area/engineering/storage) -"aBh" = ( +"aBg" = ( /obj/effect/floor_decal/industrial/outline/yellow, /obj/structure/closet/secure_closet/engineering_electrical, /obj/item/device/debugger, /turf/simulated/floor/tiled, /area/engineering/storage) -"aBi" = ( +"aBh" = ( /obj/structure/table/standard, /obj/machinery/cell_charger{ pixel_y = 4 @@ -15482,12 +15472,12 @@ }, /turf/simulated/floor/tiled, /area/engineering/storage) -"aBj" = ( +"aBi" = ( /obj/machinery/vending/engivend, /obj/effect/floor_decal/industrial/hatch/yellow, /turf/simulated/floor/tiled, /area/engineering/storage) -"aBk" = ( +"aBj" = ( /obj/machinery/vending/tool, /obj/effect/floor_decal/industrial/hatch/yellow, /obj/machinery/light{ @@ -15497,7 +15487,7 @@ }, /turf/simulated/floor/tiled, /area/engineering/storage) -"aBl" = ( +"aBk" = ( /obj/structure/disposalpipe/segment, /obj/machinery/light{ dir = 1 @@ -15511,7 +15501,7 @@ }, /turf/simulated/floor/tiled, /area/engineering/foyer) -"aBm" = ( +"aBl" = ( /obj/structure/cable/green{ d1 = 1; d2 = 2; @@ -15525,7 +15515,7 @@ }, /turf/simulated/floor/tiled, /area/engineering/foyer) -"aBn" = ( +"aBm" = ( /obj/structure/cable{ d1 = 1; d2 = 2; @@ -15534,7 +15524,7 @@ }, /turf/simulated/floor/tiled, /area/engineering/foyer) -"aBo" = ( +"aBn" = ( /obj/effect/floor_decal/corner/yellow{ icon_state = "corner_white"; dir = 5 @@ -15545,7 +15535,7 @@ }, /turf/simulated/floor/tiled, /area/engineering/foyer) -"aBp" = ( +"aBo" = ( /obj/effect/floor_decal/corner/yellow{ icon_state = "corner_white"; dir = 5 @@ -15557,7 +15547,7 @@ }, /turf/simulated/floor/tiled, /area/engineering/foyer) -"aBq" = ( +"aBp" = ( /obj/effect/floor_decal/corner/yellow{ icon_state = "corner_white"; dir = 5 @@ -15565,16 +15555,16 @@ /obj/item/modular_computer/console/preset/engineering, /turf/simulated/floor/tiled, /area/engineering/foyer) -"aBr" = ( +"aBq" = ( /obj/machinery/papershredder, /turf/simulated/floor/tiled, /area/engineering/foyer) -"aBs" = ( +"aBr" = ( /obj/machinery/vending/snack, /obj/structure/disposalpipe/segment, /turf/simulated/floor/tiled, /area/engineering/foyer) -"aBt" = ( +"aBs" = ( /obj/structure/cable/green{ d1 = 2; d2 = 4; @@ -15591,7 +15581,7 @@ }, /turf/simulated/floor/tiled, /area/engineering/foyer) -"aBu" = ( +"aBt" = ( /obj/structure/cable/green{ d1 = 4; d2 = 8; @@ -15599,7 +15589,7 @@ }, /turf/simulated/floor/tiled, /area/engineering/foyer) -"aBv" = ( +"aBu" = ( /obj/structure/cable/green{ d1 = 4; d2 = 8; @@ -15610,7 +15600,7 @@ }, /turf/simulated/floor/tiled, /area/engineering/foyer) -"aBw" = ( +"aBv" = ( /obj/machinery/door/airlock/engineering{ name = "Engineering Substation"; req_one_access = list(11,24) @@ -15623,7 +15613,7 @@ /obj/machinery/door/firedoor, /turf/simulated/floor/tiled, /area/maintenance/substation/engineering) -"aBx" = ( +"aBw" = ( /obj/structure/cable/green{ d1 = 4; d2 = 8; @@ -15636,7 +15626,7 @@ }, /turf/simulated/floor/plating, /area/maintenance/substation/engineering) -"aBy" = ( +"aBx" = ( /obj/structure/cable/green, /obj/structure/cable/green{ d1 = 1; @@ -15650,7 +15640,7 @@ }, /turf/simulated/floor/plating, /area/maintenance/substation/engineering) -"aBz" = ( +"aBy" = ( /obj/machinery/power/terminal{ icon_state = "term"; dir = 1 @@ -15661,7 +15651,7 @@ }, /turf/simulated/floor/plating, /area/maintenance/substation/engineering) -"aBA" = ( +"aBz" = ( /obj/structure/cable{ d1 = 4; d2 = 8; @@ -15675,7 +15665,7 @@ }, /turf/simulated/floor/plating, /area/maintenance/substation/engineering) -"aBB" = ( +"aBA" = ( /obj/machinery/door/airlock/engineering{ name = "Engineering Substation"; req_one_access = list(11,24) @@ -15688,7 +15678,7 @@ /obj/machinery/door/firedoor, /turf/simulated/floor/plating, /area/maintenance/substation/engineering) -"aBC" = ( +"aBB" = ( /obj/structure/cable{ d1 = 1; d2 = 8; @@ -15703,7 +15693,7 @@ }, /turf/simulated/floor/plating, /area/maintenance/engineering) -"aBD" = ( +"aBC" = ( /obj/machinery/door/firedoor, /obj/structure/table/reinforced/steel, /obj/machinery/door/window/brigdoor/southright{ @@ -15718,7 +15708,7 @@ }, /turf/simulated/floor/tiled/dark, /area/security/armoury) -"aBE" = ( +"aBD" = ( /obj/machinery/door/firedoor, /obj/structure/window/reinforced{ dir = 4 @@ -15733,7 +15723,7 @@ /obj/structure/grille, /turf/simulated/floor/plating, /area/security/armoury) -"aBF" = ( +"aBE" = ( /obj/machinery/door/firedoor, /obj/structure/cable/green{ d1 = 1; @@ -15748,7 +15738,7 @@ }, /turf/simulated/floor/tiled/dark, /area/security/armoury) -"aBG" = ( +"aBF" = ( /obj/machinery/door/blast/regular{ dir = 4; id = "armoury"; @@ -15758,17 +15748,17 @@ /obj/machinery/door/firedoor, /turf/simulated/floor/tiled/dark, /area/security/armoury) +"aBG" = ( +/obj/effect/floor_decal/industrial/hatch/yellow, +/obj/machinery/door/firedoor, +/obj/machinery/door/blast/regular{ + dir = 4; + id = "armoury"; + name = "Emergency Access" + }, +/turf/simulated/floor/tiled/dark, +/area/security/armoury) "aBH" = ( -/obj/effect/floor_decal/industrial/hatch/yellow, -/obj/machinery/door/firedoor, -/obj/machinery/door/blast/regular{ - dir = 4; - id = "armoury"; - name = "Emergency Access" - }, -/turf/simulated/floor/tiled/dark, -/area/security/armoury) -"aBI" = ( /obj/machinery/door/firedoor, /obj/structure/grille, /obj/structure/window/reinforced{ @@ -15788,7 +15778,7 @@ }, /turf/simulated/floor/plating, /area/security/brig) -"aBJ" = ( +"aBI" = ( /obj/machinery/door/firedoor, /obj/machinery/door/airlock/glass_security{ name = "Holding Cell"; @@ -15813,7 +15803,7 @@ }, /turf/simulated/floor/tiled, /area/security/brig) -"aBK" = ( +"aBJ" = ( /obj/machinery/door/firedoor, /obj/structure/grille, /obj/structure/window/reinforced{ @@ -15833,7 +15823,7 @@ }, /turf/simulated/floor/plating, /area/security/brig) -"aBL" = ( +"aBK" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/effect/floor_decal/corner/blue{ @@ -15843,7 +15833,7 @@ /obj/machinery/door/firedoor, /turf/simulated/floor/tiled, /area/security/brig) -"aBM" = ( +"aBL" = ( /obj/structure/cable/green{ d1 = 1; d2 = 2; @@ -15857,7 +15847,7 @@ /obj/machinery/door/firedoor, /turf/simulated/floor/tiled, /area/security/brig) -"aBN" = ( +"aBM" = ( /obj/structure/cable/green, /obj/structure/cable/green{ d2 = 2; @@ -15870,7 +15860,7 @@ }, /turf/simulated/floor/tiled/dark, /area/security/warden) -"aBO" = ( +"aBN" = ( /obj/structure/window/reinforced{ dir = 8 }, @@ -15882,7 +15872,7 @@ }, /turf/simulated/floor/tiled/dark, /area/security/warden) -"aBP" = ( +"aBO" = ( /obj/structure/bed/chair/office/dark{ dir = 1 }, @@ -15910,7 +15900,7 @@ }, /turf/simulated/floor/tiled/dark, /area/security/warden) -"aBQ" = ( +"aBP" = ( /obj/item/modular_computer/console/preset/security, /obj/machinery/computer/security/telescreen{ name = "Armoury Cameras"; @@ -15920,7 +15910,7 @@ }, /turf/simulated/floor/tiled/dark, /area/security/warden) -"aBR" = ( +"aBQ" = ( /obj/structure/grille, /obj/structure/window/reinforced{ dir = 8 @@ -15939,7 +15929,7 @@ /obj/machinery/door/firedoor, /turf/simulated/floor/plating, /area/security/warden) -"aBS" = ( +"aBR" = ( /obj/structure/cable/green{ d1 = 1; d2 = 4; @@ -15953,7 +15943,7 @@ }, /turf/simulated/floor/tiled, /area/security/prison) -"aBT" = ( +"aBS" = ( /obj/item/device/radio/intercom{ desc = "Talk... listen through this."; name = "Station Intercom (Brig Radio)"; @@ -15974,7 +15964,7 @@ }, /turf/simulated/floor/tiled, /area/security/prison) -"aBU" = ( +"aBT" = ( /obj/structure/cable/green{ d1 = 1; d2 = 2; @@ -15988,7 +15978,7 @@ }, /turf/simulated/floor/tiled, /area/security/prison) -"aBV" = ( +"aBU" = ( /obj/machinery/computer/arcade, /obj/structure/cable/green{ d1 = 1; @@ -15998,7 +15988,7 @@ /obj/effect/floor_decal/industrial/hatch/yellow, /turf/simulated/floor/tiled, /area/security/prison) -"aBW" = ( +"aBV" = ( /obj/machinery/computer/arcade, /obj/machinery/light{ dir = 1 @@ -16006,7 +15996,7 @@ /obj/effect/floor_decal/industrial/hatch/yellow, /turf/simulated/floor/tiled, /area/security/prison) -"aBX" = ( +"aBW" = ( /obj/structure/table/standard, /obj/machinery/librarycomp, /obj/structure/cable/green{ @@ -16017,7 +16007,7 @@ /obj/effect/floor_decal/industrial/hatch/yellow, /turf/simulated/floor/tiled, /area/security/prison) -"aBY" = ( +"aBX" = ( /obj/structure/cable/green{ d1 = 2; d2 = 4; @@ -16025,7 +16015,7 @@ }, /turf/simulated/floor/tiled, /area/security/prison) -"aBZ" = ( +"aBY" = ( /obj/structure/cable/green{ d1 = 4; d2 = 8; @@ -16038,7 +16028,7 @@ }, /turf/simulated/floor/tiled, /area/security/prison) -"aCa" = ( +"aBZ" = ( /obj/structure/grille, /obj/structure/window/reinforced, /obj/structure/window/reinforced{ @@ -16057,20 +16047,20 @@ /obj/machinery/door/firedoor, /turf/simulated/floor/plating, /area/security/prison) -"aCb" = ( +"aCa" = ( /obj/structure/toilet{ pixel_y = 5 }, /turf/simulated/floor/tiled, /area/security/prison) -"aCc" = ( +"aCb" = ( /obj/structure/sink{ pixel_y = 22 }, /obj/machinery/atmospherics/unary/vent_scrubber/on, /turf/simulated/floor/tiled, /area/security/prison) -"aCd" = ( +"aCc" = ( /obj/machinery/door/firedoor, /obj/structure/grille, /obj/structure/window/reinforced, @@ -16097,7 +16087,7 @@ }, /turf/simulated/floor/plating, /area/security/prison) -"aCe" = ( +"aCd" = ( /obj/structure/cable/green{ d1 = 1; d2 = 2; @@ -16116,45 +16106,45 @@ }, /turf/simulated/floor/tiled, /area/security/brig) -"aCf" = ( +"aCe" = ( /obj/structure/sign/nosmoking_2{ pixel_x = -32 }, /obj/structure/window/reinforced, /turf/simulated/floor/carpet, /area/lawoffice) -"aCg" = ( +"aCf" = ( /obj/structure/window/reinforced, /turf/simulated/floor/carpet, /area/lawoffice) -"aCh" = ( +"aCg" = ( /obj/machinery/atmospherics/unary/vent_scrubber/on{ dir = 4 }, /obj/structure/window/reinforced, /turf/simulated/floor/carpet, /area/lawoffice) -"aCi" = ( +"aCh" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 10 }, /obj/machinery/atmospherics/pipe/simple/hidden/supply, /turf/simulated/floor/wood, /area/lawoffice) -"aCj" = ( +"aCi" = ( /obj/structure/disposalpipe/segment{ dir = 4; icon_state = "pipe-c" }, /turf/simulated/floor/wood, /area/lawoffice) -"aCk" = ( +"aCj" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, /turf/simulated/floor/wood, /area/lawoffice) -"aCl" = ( +"aCk" = ( /obj/machinery/door/firedoor, /obj/machinery/door/airlock{ desc = "It opens and closes. Bring your relationship affairs here."; @@ -16166,13 +16156,13 @@ }, /turf/simulated/floor/wood, /area/lawoffice) -"aCm" = ( +"aCl" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, /turf/simulated/floor/tiled, /area/hallway/primary/starboard) -"aCn" = ( +"aCm" = ( /obj/structure/cable{ d1 = 1; d2 = 2; @@ -16187,7 +16177,7 @@ }, /turf/simulated/floor/tiled, /area/hallway/primary/starboard) -"aCo" = ( +"aCn" = ( /obj/machinery/alarm{ dir = 8; pixel_x = 25; @@ -16195,10 +16185,10 @@ }, /turf/simulated/floor/tiled, /area/hallway/primary/starboard) -"aCp" = ( +"aCo" = ( /turf/simulated/floor/tiled, /area/teleporter) -"aCq" = ( +"aCp" = ( /obj/structure/table/standard, /obj/structure/sign/nosmoking_1{ pixel_y = 32 @@ -16209,24 +16199,24 @@ }, /turf/simulated/floor/tiled, /area/teleporter) -"aCr" = ( +"aCq" = ( /obj/machinery/suit_storage_unit/standard_unit, /turf/simulated/floor/tiled, /area/teleporter) -"aCs" = ( +"aCr" = ( /obj/item/device/radio/beacon, /obj/machinery/camera/network/command{ c_tag = "Bridge - Teleporter" }, /turf/simulated/floor/tiled, /area/teleporter) -"aCt" = ( +"aCs" = ( /obj/machinery/alarm{ pixel_y = 23 }, /turf/simulated/floor/tiled, /area/teleporter) -"aCu" = ( +"aCt" = ( /obj/structure/cable/green{ d2 = 2; icon_state = "0-2" @@ -16239,19 +16229,19 @@ }, /turf/simulated/floor/tiled, /area/teleporter) -"aCv" = ( +"aCu" = ( /obj/effect/decal/cleanable/cobweb2, /obj/machinery/atmospherics/unary/vent_scrubber/on, /turf/simulated/floor/tiled, /area/teleporter) -"aCw" = ( +"aCv" = ( /obj/structure/flora/ausbushes/fernybush, /turf/simulated/floor/grass, /area/bridge) -"aCx" = ( +"aCw" = ( /turf/simulated/floor/grass, /area/bridge) -"aCy" = ( +"aCx" = ( /obj/structure/grille, /obj/structure/window/reinforced{ dir = 8 @@ -16269,7 +16259,7 @@ }, /turf/simulated/floor/plating, /area/bridge) -"aCz" = ( +"aCy" = ( /obj/effect/floor_decal/corner/paleblue/full{ icon_state = "corner_white_full"; dir = 4 @@ -16282,7 +16272,7 @@ /obj/structure/closet/emcloset, /turf/simulated/floor/tiled, /area/bridge) -"aCA" = ( +"aCz" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/structure/disposalpipe/segment, @@ -16299,17 +16289,17 @@ }, /turf/simulated/floor/tiled/white, /area/bridge) -"aCB" = ( +"aCA" = ( /obj/effect/floor_decal/corner/paleblue/full, /turf/simulated/floor/tiled, /area/bridge) -"aCC" = ( +"aCB" = ( /obj/structure/toilet{ dir = 4 }, /turf/simulated/floor/tiled/freezer, /area/crew_quarters/captain) -"aCD" = ( +"aCC" = ( /obj/structure/sink{ dir = 4; icon_state = "sink"; @@ -16326,10 +16316,10 @@ }, /turf/simulated/floor/tiled/freezer, /area/crew_quarters/captain) -"aCE" = ( +"aCD" = ( /turf/simulated/wall, /area/crew_quarters/captain) -"aCF" = ( +"aCE" = ( /obj/structure/table/wood, /obj/item/weapon/storage/photo_album{ pixel_y = 0 @@ -16340,7 +16330,7 @@ }, /turf/simulated/floor/carpet, /area/crew_quarters/captain) -"aCG" = ( +"aCF" = ( /obj/structure/table/rack, /obj/item/weapon/tank/jetpack/oxygen, /obj/item/clothing/suit/space/void/captain, @@ -16354,14 +16344,14 @@ }, /turf/simulated/floor/carpet, /area/crew_quarters/captain) -"aCH" = ( +"aCG" = ( /obj/structure/closet/secure_closet/captains, /obj/machinery/light{ dir = 1 }, /turf/simulated/floor/carpet, /area/crew_quarters/captain) -"aCI" = ( +"aCH" = ( /obj/machinery/atm{ pixel_y = 32 }, @@ -16369,7 +16359,7 @@ /mob/living/simple_animal/corgi/fox/Chauncey, /turf/simulated/floor/carpet, /area/crew_quarters/captain) -"aCJ" = ( +"aCI" = ( /obj/structure/ladder/up, /obj/structure/sign/securearea{ desc = "A warning sign which reads 'ACCESS RESTRICTED - ONLY AUTHORIZED PERSONNEL'."; @@ -16378,7 +16368,7 @@ }, /turf/simulated/floor/carpet, /area/crew_quarters/captain) -"aCK" = ( +"aCJ" = ( /obj/structure/table/wood, /obj/machinery/computer/skills{ icon_state = "medlaptop" @@ -16390,7 +16380,7 @@ }, /turf/simulated/floor/carpet, /area/crew_quarters/captain) -"aCL" = ( +"aCK" = ( /obj/structure/table/wood, /obj/item/weapon/paper/monitorkey, /obj/structure/cable/green{ @@ -16410,7 +16400,7 @@ }, /turf/simulated/floor/carpet, /area/crew_quarters/captain) -"aCM" = ( +"aCL" = ( /obj/structure/table/wood, /obj/structure/cable/green{ d1 = 1; @@ -16425,7 +16415,7 @@ /obj/item/weapon/card/id/captains_spare, /turf/simulated/floor/carpet, /area/crew_quarters/captain) -"aCN" = ( +"aCM" = ( /obj/structure/grille, /obj/machinery/door/firedoor, /obj/structure/window/reinforced{ @@ -16453,7 +16443,7 @@ }, /turf/simulated/floor/plating, /area/crew_quarters/captain) -"aCO" = ( +"aCN" = ( /obj/machinery/atmospherics/pipe/simple/visible/yellow, /obj/machinery/light{ dir = 8; @@ -16466,7 +16456,7 @@ }, /turf/simulated/floor/plating, /area/engineering/engine_room) -"aCP" = ( +"aCO" = ( /obj/machinery/atmospherics/pipe/simple/visible/cyan{ dir = 4; icon_state = "intact" @@ -16474,18 +16464,18 @@ /obj/machinery/atmospherics/pipe/simple/visible/yellow, /turf/simulated/floor/plating, /area/engineering/engine_room) -"aCQ" = ( +"aCP" = ( /obj/machinery/atmospherics/pipe/simple/visible/cyan{ dir = 4; icon_state = "intact" }, /turf/simulated/floor/plating, /area/engineering/engine_room) -"aCR" = ( +"aCQ" = ( /obj/machinery/atmospherics/pipe/manifold4w/visible/cyan, /turf/simulated/floor/plating, /area/engineering/engine_room) -"aCS" = ( +"aCR" = ( /obj/machinery/atmospherics/binary/pump{ dir = 8 }, @@ -16496,17 +16486,17 @@ }, /turf/simulated/floor/plating, /area/engineering/engine_room) -"aCT" = ( +"aCS" = ( /obj/machinery/atmospherics/portables_connector{ dir = 8 }, /obj/effect/floor_decal/industrial/outline/yellow, /turf/simulated/floor/plating, /area/engineering/engine_room) -"aCU" = ( +"aCT" = ( /turf/simulated/wall/r_wall, /area/engineering/engine_airlock) -"aCV" = ( +"aCU" = ( /obj/machinery/embedded_controller/radio/airlock/advanced_airlock_controller{ id_tag = "engine_room_airlock"; name = "Engine Room Airlock"; @@ -16526,7 +16516,7 @@ }, /turf/simulated/floor/plating, /area/engineering/engine_airlock) -"aCW" = ( +"aCV" = ( /obj/machinery/atmospherics/pipe/simple/hidden{ dir = 6 }, @@ -16540,7 +16530,7 @@ }, /turf/simulated/floor/plating, /area/engineering/engine_airlock) -"aCX" = ( +"aCW" = ( /obj/machinery/atmospherics/pipe/simple/hidden/universal{ dir = 4 }, @@ -16557,7 +16547,7 @@ }, /turf/simulated/floor/plating, /area/engineering/engine_airlock) -"aCY" = ( +"aCX" = ( /obj/machinery/atmospherics/pipe/manifold/hidden/supply{ dir = 1 }, @@ -16567,7 +16557,7 @@ }, /turf/simulated/floor/tiled, /area/engineering/engine_airlock) -"aCZ" = ( +"aCY" = ( /obj/structure/closet/radiation, /obj/item/clothing/glasses/meson, /obj/item/clothing/glasses/meson, @@ -16576,7 +16566,7 @@ }, /turf/simulated/floor/tiled, /area/engineering/engine_airlock) -"aDa" = ( +"aCZ" = ( /obj/structure/window/reinforced{ dir = 8 }, @@ -16594,7 +16584,7 @@ }, /turf/simulated/floor/plating, /area/engineering/engine_airlock) -"aDb" = ( +"aDa" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/structure/cable/green{ @@ -16604,7 +16594,7 @@ }, /turf/simulated/floor/tiled, /area/engineering/engine_monitoring) -"aDc" = ( +"aDb" = ( /obj/structure/grille, /obj/structure/window/reinforced{ icon_state = "rwindow"; @@ -16620,7 +16610,7 @@ }, /turf/simulated/floor/plating, /area/engineering/storage) -"aDd" = ( +"aDc" = ( /obj/item/stack/material/plasteel{ amount = 10 }, @@ -16642,11 +16632,11 @@ /obj/structure/table/rack, /turf/simulated/floor/tiled, /area/engineering/storage) -"aDe" = ( +"aDd" = ( /obj/machinery/atmospherics/unary/vent_scrubber/on, /turf/simulated/floor/tiled, /area/engineering/storage) -"aDf" = ( +"aDe" = ( /obj/structure/cable/green{ d2 = 2; icon_state = "0-2" @@ -16658,7 +16648,7 @@ }, /turf/simulated/floor/tiled, /area/engineering/storage) -"aDg" = ( +"aDf" = ( /obj/machinery/atmospherics/unary/vent_pump/on{ dir = 4 }, @@ -16666,7 +16656,7 @@ /obj/structure/closet/wardrobe/engineering_yellow, /turf/simulated/floor/tiled, /area/engineering/foyer) -"aDh" = ( +"aDg" = ( /obj/structure/cable/green{ d1 = 1; d2 = 2; @@ -16678,7 +16668,7 @@ }, /turf/simulated/floor/tiled, /area/engineering/foyer) -"aDi" = ( +"aDh" = ( /obj/structure/cable{ d1 = 1; d2 = 2; @@ -16693,7 +16683,7 @@ }, /turf/simulated/floor/tiled, /area/engineering/foyer) -"aDj" = ( +"aDi" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, @@ -16702,7 +16692,7 @@ }, /turf/simulated/floor/tiled, /area/engineering/foyer) -"aDk" = ( +"aDj" = ( /obj/structure/cable/green{ d1 = 1; d2 = 2; @@ -16716,11 +16706,11 @@ }, /turf/simulated/floor/tiled, /area/engineering/foyer) -"aDl" = ( +"aDk" = ( /obj/structure/disposalpipe/segment, /turf/simulated/floor/tiled, /area/engineering/foyer) -"aDm" = ( +"aDl" = ( /obj/structure/cable/green{ d1 = 1; d2 = 2; @@ -16728,10 +16718,10 @@ }, /turf/simulated/floor/tiled, /area/engineering/foyer) -"aDn" = ( +"aDm" = ( /turf/simulated/floor/tiled, /area/engineering/foyer) -"aDo" = ( +"aDn" = ( /obj/structure/table/standard, /obj/effect/floor_decal/corner/yellow{ icon_state = "corner_white"; @@ -16747,10 +16737,10 @@ /obj/item/weapon/storage/box/donkpockets, /turf/simulated/floor/tiled, /area/engineering/foyer) -"aDp" = ( +"aDo" = ( /turf/simulated/wall/r_wall, /area/ai_monitored/storage/eva) -"aDq" = ( +"aDp" = ( /obj/structure/cable/green{ d1 = 1; d2 = 2; @@ -16758,7 +16748,7 @@ }, /turf/simulated/wall/r_wall, /area/ai_monitored/storage/eva) -"aDr" = ( +"aDq" = ( /obj/machinery/door/firedoor, /obj/machinery/door/airlock/maintenance{ name = "E.V.A. Maintenance"; @@ -16768,11 +16758,11 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/plating, /area/ai_monitored/storage/eva) -"aDs" = ( +"aDr" = ( /obj/structure/sign/securearea, /turf/simulated/wall/r_wall, /area/ai_monitored/storage/eva) -"aDt" = ( +"aDs" = ( /obj/machinery/light{ dir = 8; icon_state = "tube1"; @@ -16788,13 +16778,13 @@ }, /turf/simulated/floor/tiled, /area/security/brig) -"aDu" = ( +"aDt" = ( /obj/effect/floor_decal/industrial/warning{ dir = 1 }, /turf/simulated/floor/tiled, /area/security/brig) -"aDv" = ( +"aDu" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/structure/cable/green{ @@ -16807,7 +16797,7 @@ }, /turf/simulated/floor/tiled, /area/security/brig) -"aDw" = ( +"aDv" = ( /obj/effect/floor_decal/corner/blue{ icon_state = "corner_white"; dir = 5 @@ -16817,14 +16807,14 @@ }, /turf/simulated/floor/tiled, /area/security/brig) -"aDx" = ( +"aDw" = ( /obj/machinery/atmospherics/unary/vent_pump/on, /obj/effect/floor_decal/industrial/warning{ dir = 1 }, /turf/simulated/floor/tiled, /area/security/brig) -"aDy" = ( +"aDx" = ( /obj/effect/floor_decal/corner/blue{ icon_state = "corner_white"; dir = 5 @@ -16841,7 +16831,7 @@ }, /turf/simulated/floor/tiled, /area/security/brig) -"aDz" = ( +"aDy" = ( /obj/effect/floor_decal/corner/blue{ icon_state = "corner_white"; dir = 5 @@ -16854,7 +16844,7 @@ }, /turf/simulated/floor/tiled, /area/security/brig) -"aDA" = ( +"aDz" = ( /obj/structure/disposalpipe/segment{ dir = 4; icon_state = "pipe-c" @@ -16872,7 +16862,7 @@ }, /turf/simulated/floor/tiled, /area/security/brig) -"aDB" = ( +"aDA" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, @@ -16895,7 +16885,7 @@ }, /turf/simulated/floor/tiled, /area/security/brig) -"aDC" = ( +"aDB" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, @@ -16905,7 +16895,7 @@ }, /turf/simulated/floor/tiled, /area/security/brig) -"aDD" = ( +"aDC" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, @@ -16916,7 +16906,7 @@ /obj/machinery/firealarm/north, /turf/simulated/floor/tiled, /area/security/brig) -"aDE" = ( +"aDD" = ( /obj/machinery/atmospherics/unary/vent_scrubber/on, /obj/structure/disposalpipe/segment{ dir = 4 @@ -16927,7 +16917,7 @@ }, /turf/simulated/floor/tiled, /area/security/brig) -"aDF" = ( +"aDE" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, @@ -16940,7 +16930,7 @@ }, /turf/simulated/floor/tiled, /area/security/brig) -"aDG" = ( +"aDF" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, @@ -16954,7 +16944,7 @@ }, /turf/simulated/floor/tiled, /area/security/brig) -"aDH" = ( +"aDG" = ( /obj/structure/disposalpipe/junction{ dir = 8; icon_state = "pipe-j2" @@ -16965,7 +16955,7 @@ }, /turf/simulated/floor/tiled, /area/security/brig) -"aDI" = ( +"aDH" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/structure/cable/green{ @@ -16981,7 +16971,7 @@ }, /turf/simulated/floor/tiled, /area/security/brig) -"aDJ" = ( +"aDI" = ( /obj/structure/cable/green{ d1 = 1; d2 = 8; @@ -16997,7 +16987,7 @@ }, /turf/simulated/floor/tiled, /area/security/brig) -"aDK" = ( +"aDJ" = ( /obj/structure/cable/green{ d1 = 1; d2 = 2; @@ -17048,7 +17038,7 @@ }, /turf/simulated/floor/tiled/dark, /area/security/warden) -"aDL" = ( +"aDK" = ( /obj/structure/window/reinforced{ dir = 8 }, @@ -17062,15 +17052,15 @@ }, /turf/simulated/floor/tiled/dark, /area/security/warden) -"aDM" = ( +"aDL" = ( /obj/machinery/atmospherics/pipe/simple/hidden, /turf/simulated/floor/tiled/dark, /area/security/warden) -"aDN" = ( +"aDM" = ( /obj/machinery/computer/secure_data, /turf/simulated/floor/tiled/dark, /area/security/warden) -"aDO" = ( +"aDN" = ( /obj/structure/grille, /obj/structure/window/reinforced{ dir = 8 @@ -17089,7 +17079,7 @@ /obj/machinery/door/firedoor, /turf/simulated/floor/plating, /area/security/warden) -"aDP" = ( +"aDO" = ( /obj/structure/window/reinforced{ dir = 1 }, @@ -17108,7 +17098,7 @@ /obj/effect/floor_decal/industrial/hatch/yellow, /turf/simulated/floor/tiled, /area/security/prison) -"aDQ" = ( +"aDP" = ( /obj/structure/cable/green{ d1 = 1; d2 = 4; @@ -17116,7 +17106,7 @@ }, /turf/simulated/floor/tiled, /area/security/prison) -"aDR" = ( +"aDQ" = ( /obj/structure/cable/green{ d1 = 4; d2 = 8; @@ -17131,7 +17121,7 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/tiled, /area/security/prison) -"aDS" = ( +"aDR" = ( /obj/structure/cable/green{ d1 = 4; d2 = 8; @@ -17139,7 +17129,7 @@ }, /turf/simulated/floor/tiled, /area/security/prison) -"aDT" = ( +"aDS" = ( /obj/structure/cable/green{ d1 = 2; d2 = 8; @@ -17152,7 +17142,7 @@ }, /turf/simulated/floor/tiled, /area/security/prison) -"aDU" = ( +"aDT" = ( /obj/machinery/door/blast/regular{ dir = 4; id = "Cell 3"; @@ -17162,7 +17152,7 @@ /obj/machinery/door/firedoor, /turf/simulated/floor/tiled, /area/security/prison) -"aDV" = ( +"aDU" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ icon_state = "intact-supply"; dir = 6 @@ -17172,7 +17162,7 @@ }, /turf/simulated/floor/tiled, /area/security/prison) -"aDW" = ( +"aDV" = ( /obj/machinery/door/firedoor, /obj/machinery/door/blast/regular{ density = 0; @@ -17196,7 +17186,7 @@ /obj/effect/floor_decal/industrial/hatch/yellow, /turf/simulated/floor/tiled, /area/security/prison) -"aDX" = ( +"aDW" = ( /obj/structure/cable/green{ d1 = 1; d2 = 2; @@ -17210,7 +17200,7 @@ }, /turf/simulated/floor/tiled, /area/security/brig) -"aDY" = ( +"aDX" = ( /obj/machinery/atmospherics/unary/vent_scrubber/on, /obj/effect/floor_decal/corner/blue{ icon_state = "corner_white"; @@ -17222,7 +17212,7 @@ }, /turf/simulated/floor/tiled, /area/security/brig) -"aDZ" = ( +"aDY" = ( /obj/machinery/disposal, /obj/structure/disposalpipe/trunk{ dir = 4 @@ -17234,21 +17224,21 @@ }, /turf/simulated/floor/wood, /area/lawoffice) -"aEa" = ( +"aDZ" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, /obj/structure/banner, /turf/simulated/floor/wood, /area/lawoffice) -"aEb" = ( +"aEa" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, /obj/machinery/papershredder, /turf/simulated/floor/wood, /area/lawoffice) -"aEc" = ( +"aEb" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/structure/disposalpipe/segment{ dir = 4 @@ -17256,14 +17246,14 @@ /obj/machinery/atmospherics/pipe/simple/hidden/supply, /turf/simulated/floor/wood, /area/lawoffice) -"aEd" = ( +"aEc" = ( /obj/structure/disposalpipe/segment{ dir = 8; icon_state = "pipe-c" }, /turf/simulated/floor/wood, /area/lawoffice) -"aEe" = ( +"aEd" = ( /obj/structure/table/wood, /obj/item/weapon/folder{ pixel_x = 5; @@ -17292,7 +17282,7 @@ }, /turf/simulated/floor/wood, /area/lawoffice) -"aEf" = ( +"aEe" = ( /obj/machinery/atm{ pixel_x = -32 }, @@ -17302,39 +17292,39 @@ }, /turf/simulated/floor/tiled, /area/hallway/primary/starboard) -"aEg" = ( +"aEf" = ( /obj/machinery/computer/guestpass{ pixel_x = 32; pixel_y = 0 }, /turf/simulated/floor/tiled, /area/hallway/primary/starboard) -"aEh" = ( +"aEg" = ( /obj/effect/floor_decal/industrial/warning{ icon_state = "warning"; dir = 10 }, /turf/simulated/floor/tiled, /area/teleporter) -"aEi" = ( +"aEh" = ( /obj/effect/floor_decal/industrial/warning, /turf/simulated/floor/tiled, /area/teleporter) -"aEj" = ( +"aEi" = ( /obj/machinery/hologram/holopad, /obj/effect/floor_decal/industrial/warning{ dir = 6 }, /turf/simulated/floor/tiled, /area/teleporter) -"aEk" = ( +"aEj" = ( /obj/machinery/shieldwallgen, /obj/structure/window/reinforced{ dir = 8 }, /turf/simulated/floor/tiled, /area/teleporter) -"aEl" = ( +"aEk" = ( /obj/machinery/shieldwallgen, /obj/structure/cable/green{ d1 = 1; @@ -17343,7 +17333,7 @@ }, /turf/simulated/floor/tiled, /area/teleporter) -"aEm" = ( +"aEl" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/structure/cable/green{ d1 = 2; @@ -17352,7 +17342,7 @@ }, /turf/simulated/floor/tiled, /area/teleporter) -"aEn" = ( +"aEm" = ( /obj/structure/flora/ausbushes/ppflowers, /obj/machinery/light{ dir = 8; @@ -17361,11 +17351,11 @@ }, /turf/simulated/floor/grass, /area/bridge) -"aEo" = ( +"aEn" = ( /obj/structure/flora/ausbushes/brflowers, /turf/simulated/floor/grass, /area/bridge) -"aEp" = ( +"aEo" = ( /obj/structure/grille, /obj/structure/window/reinforced{ dir = 8 @@ -17380,7 +17370,7 @@ }, /turf/simulated/floor/plating, /area/bridge) -"aEq" = ( +"aEp" = ( /obj/effect/floor_decal/corner/paleblue/diagonal, /obj/structure/cable/green{ d1 = 4; @@ -17389,11 +17379,11 @@ }, /turf/simulated/floor/tiled/white, /area/bridge) -"aEr" = ( +"aEq" = ( /obj/effect/floor_decal/corner/paleblue/diagonal, /turf/simulated/floor/tiled/white, /area/bridge) -"aEs" = ( +"aEr" = ( /obj/structure/window/reinforced/tinted{ dir = 4; icon_state = "twindow" @@ -17409,7 +17399,7 @@ /obj/item/weapon/bikehorn/rubberducky, /turf/simulated/floor/tiled/freezer, /area/crew_quarters/captain) -"aEt" = ( +"aEs" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 6 }, @@ -17418,7 +17408,7 @@ }, /turf/simulated/floor/tiled/freezer, /area/crew_quarters/captain) -"aEu" = ( +"aEt" = ( /obj/machinery/door/airlock{ name = "Private Restroom" }, @@ -17430,7 +17420,7 @@ }, /turf/simulated/floor/tiled/freezer, /area/crew_quarters/captain) -"aEv" = ( +"aEu" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 }, @@ -17439,7 +17429,7 @@ }, /turf/simulated/floor/carpet, /area/crew_quarters/captain) -"aEw" = ( +"aEv" = ( /obj/machinery/atmospherics/pipe/manifold/hidden/supply, /obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ icon_state = "map-scrubbers"; @@ -17447,7 +17437,7 @@ }, /turf/simulated/floor/carpet, /area/crew_quarters/captain) -"aEx" = ( +"aEw" = ( /obj/structure/bed/padded, /obj/item/weapon/bedsheet/captain, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ @@ -17458,7 +17448,7 @@ }, /turf/simulated/floor/carpet, /area/crew_quarters/captain) -"aEy" = ( +"aEx" = ( /obj/machinery/papershredder, /obj/item/weapon/storage/secure/safe{ pixel_x = -28; @@ -17466,7 +17456,7 @@ }, /turf/simulated/floor/carpet, /area/crew_quarters/captain) -"aEz" = ( +"aEy" = ( /obj/structure/cable/green{ d1 = 1; d2 = 2; @@ -17485,7 +17475,7 @@ }, /turf/simulated/floor/carpet, /area/crew_quarters/captain) -"aEA" = ( +"aEz" = ( /obj/structure/table/wood, /obj/machinery/recharger, /obj/structure/cable/green{ @@ -17509,7 +17499,7 @@ }, /turf/simulated/floor/carpet, /area/crew_quarters/captain) -"aEB" = ( +"aEA" = ( /obj/structure/grille, /obj/machinery/door/firedoor, /obj/structure/window/reinforced{ @@ -17533,7 +17523,7 @@ }, /turf/simulated/floor/plating, /area/crew_quarters/captain) -"aEC" = ( +"aEB" = ( /obj/machinery/light{ dir = 8 }, @@ -17542,13 +17532,13 @@ }, /turf/simulated/floor/asteroid/ash/rocky, /area/crew_quarters/captain) -"aED" = ( +"aEC" = ( /obj/machinery/atmospherics/pipe/manifold/visible/yellow{ dir = 8 }, /turf/simulated/floor/plating, /area/engineering/engine_room) -"aEE" = ( +"aED" = ( /obj/machinery/atmospherics/binary/circulator{ anchored = 1; dir = 4; @@ -17557,14 +17547,14 @@ /obj/effect/floor_decal/industrial/hatch/yellow, /turf/simulated/floor/plating, /area/engineering/engine_room) -"aEF" = ( +"aEE" = ( /obj/machinery/atmospherics/pipe/simple/visible/yellow{ icon_state = "intact"; dir = 5 }, /turf/simulated/floor/plating, /area/engineering/engine_room) -"aEG" = ( +"aEF" = ( /obj/machinery/atmospherics/valve/digital{ dir = 1; icon_state = "map_valve0"; @@ -17572,7 +17562,7 @@ }, /turf/simulated/floor/plating, /area/engineering/engine_room) -"aEH" = ( +"aEG" = ( /obj/machinery/door/airlock/maintenance_hatch{ frequency = 1379; icon_state = "door_closed"; @@ -17583,14 +17573,14 @@ }, /turf/simulated/floor/plating, /area/engineering/engine_airlock) -"aEI" = ( +"aEH" = ( /obj/effect/floor_decal/industrial/warning{ icon_state = "warning"; dir = 8 }, /turf/simulated/floor/plating, /area/engineering/engine_airlock) -"aEJ" = ( +"aEI" = ( /obj/machinery/atmospherics/binary/dp_vent_pump/high_volume{ dir = 2; frequency = 1379; @@ -17602,7 +17592,7 @@ }, /turf/simulated/floor/plating, /area/engineering/engine_airlock) -"aEK" = ( +"aEJ" = ( /obj/machinery/door/airlock/maintenance_hatch{ frequency = 1379; icon_state = "door_closed"; @@ -17613,7 +17603,7 @@ }, /turf/simulated/floor/plating, /area/engineering/engine_airlock) -"aEL" = ( +"aEK" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 5 }, @@ -17631,7 +17621,7 @@ }, /turf/simulated/floor/tiled, /area/engineering/engine_airlock) -"aEM" = ( +"aEL" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, @@ -17645,7 +17635,7 @@ }, /turf/simulated/floor/tiled, /area/engineering/engine_airlock) -"aEN" = ( +"aEM" = ( /obj/machinery/door/airlock/maintenance_hatch{ icon_state = "door_closed"; locked = 0; @@ -17669,7 +17659,7 @@ }, /turf/simulated/floor/tiled, /area/engineering/engine_airlock) -"aEO" = ( +"aEN" = ( /obj/structure/cable{ d1 = 1; d2 = 2; @@ -17693,7 +17683,7 @@ }, /turf/simulated/floor/tiled, /area/engineering/engine_monitoring) -"aEP" = ( +"aEO" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 9; pixel_y = 0 @@ -17708,7 +17698,7 @@ }, /turf/simulated/floor/tiled, /area/engineering/engine_monitoring) -"aEQ" = ( +"aEP" = ( /obj/item/stack/material/glass{ amount = 50 }, @@ -17725,15 +17715,15 @@ /obj/structure/table/rack, /turf/simulated/floor/tiled, /area/engineering/storage) -"aER" = ( +"aEQ" = ( /obj/machinery/hologram/holopad, /turf/simulated/floor/tiled, /area/engineering/storage) -"aES" = ( +"aER" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/tiled, /area/engineering/storage) -"aET" = ( +"aES" = ( /obj/structure/cable/green{ d1 = 1; d2 = 4; @@ -17745,7 +17735,7 @@ }, /turf/simulated/floor/tiled, /area/engineering/storage) -"aEU" = ( +"aET" = ( /obj/machinery/door/firedoor, /obj/machinery/door/airlock/glass_engineering{ name = "Engineering EVA Storage"; @@ -17758,7 +17748,7 @@ }, /turf/simulated/floor/tiled, /area/engineering/storage) -"aEV" = ( +"aEU" = ( /obj/structure/cable/green{ d1 = 4; d2 = 8; @@ -17774,7 +17764,7 @@ }, /turf/simulated/floor/tiled, /area/engineering/foyer) -"aEW" = ( +"aEV" = ( /obj/structure/cable/green{ d1 = 1; d2 = 4; @@ -17797,7 +17787,7 @@ }, /turf/simulated/floor/tiled, /area/engineering/foyer) -"aEX" = ( +"aEW" = ( /obj/structure/cable/green{ d1 = 4; d2 = 8; @@ -17815,7 +17805,7 @@ /obj/effect/floor_decal/corner/yellow, /turf/simulated/floor/tiled, /area/engineering/foyer) -"aEY" = ( +"aEX" = ( /obj/item/weapon/stool/padded, /obj/structure/cable/green{ d1 = 4; @@ -17834,7 +17824,7 @@ }, /turf/simulated/floor/tiled, /area/engineering/foyer) -"aEZ" = ( +"aEY" = ( /obj/item/weapon/stool/padded, /obj/structure/cable/green{ d1 = 4; @@ -17853,7 +17843,7 @@ }, /turf/simulated/floor/tiled, /area/engineering/foyer) -"aFa" = ( +"aEZ" = ( /obj/item/weapon/stool/padded, /obj/structure/cable/green{ d1 = 4; @@ -17872,7 +17862,7 @@ }, /turf/simulated/floor/tiled, /area/engineering/foyer) -"aFb" = ( +"aFa" = ( /obj/structure/cable/green{ d1 = 4; d2 = 8; @@ -17894,7 +17884,7 @@ }, /turf/simulated/floor/tiled, /area/engineering/foyer) -"aFc" = ( +"aFb" = ( /obj/structure/cable/green{ d1 = 4; d2 = 8; @@ -17908,7 +17898,7 @@ }, /turf/simulated/floor/tiled, /area/engineering/foyer) -"aFd" = ( +"aFc" = ( /obj/structure/cable/green{ d1 = 1; d2 = 8; @@ -17916,7 +17906,7 @@ }, /turf/simulated/floor/tiled, /area/engineering/foyer) -"aFe" = ( +"aFd" = ( /obj/structure/table/standard, /obj/machinery/microwave{ pixel_x = -2; @@ -17931,7 +17921,7 @@ }, /turf/simulated/floor/tiled, /area/engineering/foyer) -"aFf" = ( +"aFe" = ( /obj/machinery/light/small{ dir = 8 }, @@ -17945,7 +17935,7 @@ }, /turf/simulated/floor/tiled/dark, /area/ai_monitored/storage/eva) -"aFg" = ( +"aFf" = ( /obj/structure/cable/green{ d1 = 4; d2 = 8; @@ -17953,7 +17943,7 @@ }, /turf/simulated/floor/tiled/dark, /area/ai_monitored/storage/eva) -"aFh" = ( +"aFg" = ( /obj/machinery/door/airlock/glass_medical{ name = "Medical Voidsuits"; req_one_access = list(5) @@ -17965,7 +17955,7 @@ }, /turf/simulated/floor/tiled/dark, /area/ai_monitored/storage/eva) -"aFi" = ( +"aFh" = ( /obj/structure/cable/green{ d2 = 8; icon_state = "0-8" @@ -17982,7 +17972,7 @@ }, /turf/simulated/floor/tiled/dark, /area/ai_monitored/storage/eva) -"aFj" = ( +"aFi" = ( /obj/machinery/light{ dir = 1 }, @@ -17993,7 +17983,7 @@ /obj/machinery/firealarm/north, /turf/simulated/floor/tiled/dark, /area/ai_monitored/storage/eva) -"aFk" = ( +"aFj" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/effect/floor_decal/corner/blue/full{ @@ -18001,7 +17991,7 @@ }, /turf/simulated/floor/tiled/dark, /area/ai_monitored/storage/eva) -"aFl" = ( +"aFk" = ( /obj/machinery/alarm{ pixel_y = 23 }, @@ -18011,14 +18001,14 @@ }, /turf/simulated/floor/tiled/dark, /area/ai_monitored/storage/eva) -"aFm" = ( +"aFl" = ( /obj/effect/floor_decal/corner/blue{ icon_state = "corner_white"; dir = 6 }, /turf/simulated/floor/tiled/dark, /area/ai_monitored/storage/eva) -"aFn" = ( +"aFm" = ( /obj/machinery/door/firedoor, /obj/machinery/door/airlock/glass_security{ name = "Security Voidsuits"; @@ -18026,10 +18016,10 @@ }, /turf/simulated/floor/tiled/dark, /area/ai_monitored/storage/eva) -"aFo" = ( +"aFn" = ( /turf/simulated/floor/tiled/dark, /area/ai_monitored/storage/eva) -"aFp" = ( +"aFo" = ( /obj/structure/table/rack, /obj/item/clothing/mask/breath, /obj/item/clothing/head/helmet/space/void/security, @@ -18044,11 +18034,11 @@ }, /turf/simulated/floor/tiled/dark, /area/ai_monitored/storage/eva) -"aFq" = ( +"aFp" = ( /obj/effect/floor_decal/corner/blue/full, /turf/simulated/floor/tiled, /area/security/brig) -"aFr" = ( +"aFq" = ( /obj/machinery/atmospherics/unary/vent_scrubber/on{ dir = 4 }, @@ -18057,7 +18047,7 @@ }, /turf/simulated/floor/tiled, /area/security/brig) -"aFs" = ( +"aFr" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 5 }, @@ -18072,7 +18062,7 @@ }, /turf/simulated/floor/tiled, /area/security/brig) -"aFt" = ( +"aFs" = ( /obj/machinery/atmospherics/pipe/manifold/hidden/supply{ dir = 1 }, @@ -18095,7 +18085,7 @@ }, /turf/simulated/floor/tiled, /area/security/brig) -"aFu" = ( +"aFt" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, @@ -18115,7 +18105,7 @@ }, /turf/simulated/floor/tiled, /area/security/brig) -"aFv" = ( +"aFu" = ( /obj/machinery/atmospherics/pipe/manifold/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 @@ -18133,7 +18123,7 @@ }, /turf/simulated/floor/tiled, /area/security/brig) -"aFw" = ( +"aFv" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, @@ -18158,7 +18148,7 @@ }, /turf/simulated/floor/tiled, /area/security/brig) -"aFx" = ( +"aFw" = ( /obj/machinery/atmospherics/pipe/manifold/hidden/supply, /obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, /obj/structure/cable/green{ @@ -18172,7 +18162,7 @@ }, /turf/simulated/floor/tiled, /area/security/brig) -"aFy" = ( +"aFx" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, @@ -18204,7 +18194,7 @@ }, /turf/simulated/floor/tiled, /area/security/brig) -"aFz" = ( +"aFy" = ( /obj/machinery/atmospherics/pipe/manifold/hidden/supply{ dir = 1 }, @@ -18223,7 +18213,7 @@ }, /turf/simulated/floor/tiled, /area/security/brig) -"aFA" = ( +"aFz" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, @@ -18240,7 +18230,7 @@ }, /turf/simulated/floor/tiled, /area/security/brig) -"aFB" = ( +"aFA" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, @@ -18259,7 +18249,7 @@ }, /turf/simulated/floor/tiled, /area/security/brig) -"aFC" = ( +"aFB" = ( /obj/machinery/atmospherics/pipe/manifold/hidden/supply{ dir = 1 }, @@ -18273,7 +18263,7 @@ }, /turf/simulated/floor/tiled, /area/security/brig) -"aFD" = ( +"aFC" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, @@ -18293,7 +18283,7 @@ /obj/structure/disposalpipe/segment, /turf/simulated/floor/tiled, /area/security/brig) -"aFE" = ( +"aFD" = ( /obj/machinery/atmospherics/pipe/manifold/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 9 @@ -18308,7 +18298,7 @@ }, /turf/simulated/floor/tiled, /area/security/brig) -"aFF" = ( +"aFE" = ( /obj/machinery/atmospherics/unary/vent_pump/on{ dir = 8 }, @@ -18318,7 +18308,7 @@ }, /turf/simulated/floor/tiled, /area/security/brig) -"aFG" = ( +"aFF" = ( /obj/structure/cable/green{ d1 = 1; d2 = 4; @@ -18330,7 +18320,7 @@ }, /turf/simulated/floor/tiled/dark, /area/security/warden) -"aFH" = ( +"aFG" = ( /obj/structure/window/reinforced{ dir = 8 }, @@ -18342,7 +18332,7 @@ /obj/machinery/papershredder, /turf/simulated/floor/tiled/dark, /area/security/warden) -"aFI" = ( +"aFH" = ( /obj/structure/cable/green{ d1 = 4; d2 = 8; @@ -18351,7 +18341,7 @@ /obj/machinery/atmospherics/pipe/simple/hidden, /turf/simulated/floor/tiled/dark, /area/security/warden) -"aFJ" = ( +"aFI" = ( /obj/structure/closet/secure_closet/warden, /obj/item/device/megaphone, /obj/item/weapon/crowbar, @@ -18365,7 +18355,7 @@ }, /turf/simulated/floor/tiled/dark, /area/security/warden) -"aFK" = ( +"aFJ" = ( /obj/structure/grille, /obj/structure/window/reinforced, /obj/structure/window/reinforced{ @@ -18387,7 +18377,7 @@ /obj/machinery/door/firedoor, /turf/simulated/floor/plating, /area/security/warden) -"aFL" = ( +"aFK" = ( /obj/structure/window/reinforced{ dir = 4 }, @@ -18398,7 +18388,7 @@ /obj/effect/floor_decal/industrial/hatch/yellow, /turf/simulated/floor/tiled, /area/security/prison) -"aFM" = ( +"aFL" = ( /obj/machinery/flasher{ id = "permflash"; name = "Floor mounted flash"; @@ -18409,18 +18399,18 @@ /obj/effect/floor_decal/industrial/hatch/yellow, /turf/simulated/floor/tiled, /area/security/prison) -"aFN" = ( +"aFM" = ( /obj/item/weapon/stool/padded, /turf/simulated/floor/tiled, /area/security/prison) -"aFO" = ( +"aFN" = ( /obj/structure/table/standard, /obj/machinery/atmospherics/pipe/simple/hidden{ dir = 6 }, /turf/simulated/floor/tiled, /area/security/prison) -"aFP" = ( +"aFO" = ( /obj/structure/table/standard, /obj/item/weapon/newspaper, /obj/machinery/atmospherics/pipe/simple/hidden{ @@ -18428,14 +18418,14 @@ }, /turf/simulated/floor/tiled, /area/security/prison) -"aFQ" = ( +"aFP" = ( /obj/item/weapon/stool/padded, /obj/machinery/atmospherics/pipe/simple/hidden{ dir = 4 }, /turf/simulated/floor/tiled, /area/security/prison) -"aFR" = ( +"aFQ" = ( /obj/structure/cable/green{ d1 = 1; d2 = 2; @@ -18456,7 +18446,7 @@ }, /turf/simulated/floor/tiled, /area/security/prison) -"aFS" = ( +"aFR" = ( /obj/structure/closet/secure_closet/brig{ id = "Cell 3"; name = "Cell 3 Locker" @@ -18467,7 +18457,7 @@ }, /turf/simulated/floor/tiled, /area/security/prison) -"aFT" = ( +"aFS" = ( /obj/structure/bed, /obj/machinery/atmospherics/unary/vent_pump/on{ dir = 1 @@ -18478,7 +18468,7 @@ }, /turf/simulated/floor/tiled, /area/security/prison) -"aFU" = ( +"aFT" = ( /obj/structure/cable/green{ d1 = 1; d2 = 2; @@ -18506,7 +18496,7 @@ }, /turf/simulated/floor/tiled, /area/security/brig) -"aFV" = ( +"aFU" = ( /obj/structure/cable/green{ d1 = 4; d2 = 8; @@ -18518,7 +18508,7 @@ /obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, /turf/simulated/floor/tiled, /area/security/brig) -"aFW" = ( +"aFV" = ( /obj/machinery/door/firedoor, /obj/machinery/door/airlock{ desc = "It opens and closes. Bring your relationship affairs here."; @@ -18538,7 +18528,7 @@ }, /turf/simulated/floor/wood, /area/lawoffice) -"aFX" = ( +"aFW" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, @@ -18552,7 +18542,7 @@ }, /turf/simulated/floor/wood, /area/lawoffice) -"aFY" = ( +"aFX" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, @@ -18567,7 +18557,7 @@ /obj/machinery/firealarm/south, /turf/simulated/floor/wood, /area/lawoffice) -"aFZ" = ( +"aFY" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 9 }, @@ -18585,7 +18575,7 @@ }, /turf/simulated/floor/wood, /area/lawoffice) -"aGa" = ( +"aFZ" = ( /obj/structure/cable/green{ d2 = 8; icon_state = "0-8" @@ -18597,7 +18587,7 @@ }, /turf/simulated/floor/wood, /area/lawoffice) -"aGb" = ( +"aGa" = ( /obj/structure/bed/chair/office/dark{ dir = 4 }, @@ -18611,7 +18601,7 @@ }, /turf/simulated/floor/wood, /area/lawoffice) -"aGc" = ( +"aGb" = ( /obj/structure/table/reinforced, /obj/item/weapon/paper_bin, /obj/item/weapon/pen, @@ -18630,7 +18620,7 @@ }, /turf/simulated/floor/wood, /area/lawoffice) -"aGd" = ( +"aGc" = ( /obj/item/device/radio/intercom{ dir = 8; name = "Station Intercom (General)"; @@ -18638,29 +18628,29 @@ }, /turf/simulated/floor/tiled, /area/hallway/primary/starboard) -"aGe" = ( +"aGd" = ( /turf/simulated/wall/r_wall, /area/hallway/primary/starboard) -"aGf" = ( +"aGe" = ( /obj/machinery/computer/teleporter, /turf/simulated/floor/plating, /area/teleporter) -"aGg" = ( +"aGf" = ( /obj/machinery/teleport/station, /turf/simulated/floor/plating, /area/teleporter) -"aGh" = ( +"aGg" = ( /obj/machinery/teleport/hub, /obj/effect/decal/warning_stripes, /turf/simulated/floor/plating, /area/teleporter) -"aGi" = ( +"aGh" = ( /obj/structure/table/rack, /obj/item/weapon/tank/oxygen, /obj/item/clothing/mask/gas, /turf/simulated/floor/plating, /area/teleporter) -"aGj" = ( +"aGi" = ( /obj/machinery/shieldwallgen, /obj/machinery/atmospherics/unary/vent_pump/on{ dir = 4 @@ -18668,7 +18658,7 @@ /obj/machinery/light, /turf/simulated/floor/tiled, /area/teleporter) -"aGk" = ( +"aGj" = ( /obj/machinery/light_switch{ pixel_x = 24 }, @@ -18683,16 +18673,16 @@ }, /turf/simulated/floor/tiled, /area/teleporter) -"aGl" = ( +"aGk" = ( /obj/structure/flora/ausbushes/brflowers, /obj/structure/flora/ausbushes/ppflowers, /turf/simulated/floor/grass, /area/bridge) -"aGm" = ( +"aGl" = ( /obj/structure/flora/ausbushes/lavendergrass, /turf/simulated/floor/grass, /area/bridge) -"aGn" = ( +"aGm" = ( /obj/structure/grille, /obj/structure/window/reinforced{ dir = 8 @@ -18708,7 +18698,7 @@ }, /turf/simulated/floor/plating, /area/bridge) -"aGo" = ( +"aGn" = ( /obj/effect/floor_decal/corner/paleblue/full{ icon_state = "corner_white_full"; dir = 1 @@ -18720,7 +18710,7 @@ }, /turf/simulated/floor/tiled, /area/bridge) -"aGp" = ( +"aGo" = ( /obj/machinery/camera/network/command{ c_tag = "Bridge - Command Deck Entrance"; dir = 1 @@ -18731,11 +18721,11 @@ }, /turf/simulated/floor/tiled, /area/bridge) -"aGq" = ( +"aGp" = ( /obj/structure/curtain/open/shower, /turf/simulated/floor/tiled/freezer, /area/crew_quarters/captain) -"aGr" = ( +"aGq" = ( /obj/item/device/radio/intercom{ frequency = 1449; pixel_x = 0; @@ -18746,7 +18736,7 @@ }, /turf/simulated/floor/tiled/freezer, /area/crew_quarters/captain) -"aGs" = ( +"aGr" = ( /obj/structure/table/wood, /obj/item/weapon/storage/fancy/cigar, /obj/item/weapon/flame/lighter/zippo, @@ -18757,7 +18747,7 @@ /obj/machinery/firealarm/south, /turf/simulated/floor/carpet, /area/crew_quarters/captain) -"aGt" = ( +"aGs" = ( /obj/structure/table/wood, /obj/item/weapon/pinpointer, /obj/item/weapon/disk/nuclear, @@ -18767,11 +18757,11 @@ }, /turf/simulated/floor/carpet, /area/crew_quarters/captain) -"aGu" = ( +"aGt" = ( /obj/structure/displaycase, /turf/simulated/floor/carpet, /area/crew_quarters/captain) -"aGv" = ( +"aGu" = ( /obj/machinery/light_switch{ pixel_y = -24 }, @@ -18780,7 +18770,7 @@ }, /turf/simulated/floor/carpet, /area/crew_quarters/captain) -"aGw" = ( +"aGv" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ icon_state = "intact-scrubbers"; dir = 5 @@ -18790,7 +18780,7 @@ }, /turf/simulated/floor/carpet, /area/crew_quarters/captain) -"aGx" = ( +"aGw" = ( /obj/machinery/door/airlock/command{ name = "Captain's Quarters"; req_access = list(20) @@ -18803,7 +18793,7 @@ }, /turf/simulated/floor/carpet, /area/crew_quarters/captain) -"aGy" = ( +"aGx" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 10 }, @@ -18812,7 +18802,7 @@ }, /turf/simulated/floor/carpet, /area/crew_quarters/captain) -"aGz" = ( +"aGy" = ( /obj/structure/cable/green{ d1 = 1; d2 = 2; @@ -18820,7 +18810,7 @@ }, /turf/simulated/floor/carpet, /area/crew_quarters/captain) -"aGA" = ( +"aGz" = ( /obj/structure/table/wood, /obj/machinery/photocopier/faxmachine{ department = "Captain's Office" @@ -18832,7 +18822,7 @@ }, /turf/simulated/floor/carpet, /area/crew_quarters/captain) -"aGB" = ( +"aGA" = ( /obj/structure/grille, /obj/machinery/door/firedoor, /obj/structure/window/reinforced, @@ -18857,7 +18847,7 @@ }, /turf/simulated/floor/plating, /area/crew_quarters/captain) -"aGC" = ( +"aGB" = ( /obj/machinery/atmospherics/valve/digital{ name = "Emergency Cooling Valve 2"; icon_state = "map_valve0"; @@ -18865,7 +18855,7 @@ }, /turf/simulated/floor/plating, /area/engineering/engine_room) -"aGD" = ( +"aGC" = ( /obj/machinery/power/generator{ anchored = 1 }, @@ -18876,7 +18866,7 @@ /obj/effect/floor_decal/industrial/hatch/yellow, /turf/simulated/floor/plating, /area/engineering/engine_room) -"aGE" = ( +"aGD" = ( /obj/machinery/power/generator{ anchored = 1 }, @@ -18891,7 +18881,7 @@ /obj/effect/floor_decal/industrial/hatch/yellow, /turf/simulated/floor/plating, /area/engineering/engine_room) -"aGF" = ( +"aGE" = ( /obj/structure/cable/yellow{ d1 = 4; d2 = 8; @@ -18900,7 +18890,7 @@ /obj/machinery/atmospherics/pipe/simple/visible/green, /turf/simulated/floor/plating, /area/engineering/engine_room) -"aGG" = ( +"aGF" = ( /obj/structure/cable/yellow{ d1 = 1; d2 = 8; @@ -18908,7 +18898,7 @@ }, /turf/simulated/floor/plating, /area/engineering/engine_room) -"aGH" = ( +"aGG" = ( /obj/machinery/alarm{ dir = 8; pixel_x = 25; @@ -18916,7 +18906,7 @@ }, /turf/simulated/floor/plating, /area/engineering/engine_room) -"aGI" = ( +"aGH" = ( /obj/machinery/airlock_sensor{ frequency = 1379; id_tag = "eng_al_c_snsr"; @@ -18937,7 +18927,7 @@ }, /turf/simulated/floor/plating, /area/engineering/engine_airlock) -"aGJ" = ( +"aGI" = ( /obj/machinery/atmospherics/pipe/simple/hidden{ dir = 5; icon_state = "intact" @@ -18949,7 +18939,7 @@ }, /turf/simulated/floor/plating, /area/engineering/engine_airlock) -"aGK" = ( +"aGJ" = ( /obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, /obj/machinery/power/apc{ dir = 2; @@ -18963,7 +18953,7 @@ }, /turf/simulated/floor/tiled, /area/engineering/engine_airlock) -"aGL" = ( +"aGK" = ( /obj/machinery/atmospherics/unary/vent_scrubber/on{ dir = 8 }, @@ -18973,12 +18963,12 @@ }, /turf/simulated/floor/tiled, /area/engineering/engine_airlock) -"aGM" = ( +"aGL" = ( /obj/machinery/light, /obj/structure/closet/emcloset, /turf/simulated/floor/tiled, /area/engineering/engine_monitoring) -"aGN" = ( +"aGM" = ( /obj/structure/grille, /obj/structure/window/reinforced{ icon_state = "rwindow"; @@ -18995,7 +18985,7 @@ }, /turf/simulated/floor/plating, /area/engineering/storage) -"aGO" = ( +"aGN" = ( /obj/structure/table/standard, /obj/item/device/radio/off, /obj/item/device/radio/off, @@ -19005,16 +18995,25 @@ /obj/item/device/flashlight/heavy, /turf/simulated/floor/tiled, /area/engineering/storage) -"aGP" = ( +"aGO" = ( /obj/machinery/atmospherics/unary/vent_pump/on{ dir = 4 }, /turf/simulated/floor/tiled, /area/engineering/storage) +"aGP" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/engineering/storage) "aGQ" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, /turf/simulated/floor/tiled, /area/engineering/storage) "aGR" = ( @@ -19022,20 +19021,11 @@ dir = 4 }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 5 + dir = 4 }, /turf/simulated/floor/tiled, /area/engineering/storage) "aGS" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/engineering/storage) -"aGT" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, @@ -19048,7 +19038,7 @@ }, /turf/simulated/floor/tiled, /area/engineering/storage) -"aGU" = ( +"aGT" = ( /obj/machinery/door/firedoor, /obj/machinery/door/airlock/glass_engineering{ name = "Engineering EVA Storage"; @@ -19062,7 +19052,7 @@ }, /turf/simulated/floor/tiled, /area/engineering/storage) -"aGV" = ( +"aGU" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, @@ -19075,7 +19065,7 @@ }, /turf/simulated/floor/tiled, /area/engineering/foyer) -"aGW" = ( +"aGV" = ( /obj/structure/cable/green{ d1 = 1; d2 = 2; @@ -19090,7 +19080,7 @@ }, /turf/simulated/floor/tiled, /area/engineering/foyer) -"aGX" = ( +"aGW" = ( /obj/structure/cable{ d1 = 1; d2 = 2; @@ -19103,21 +19093,21 @@ }, /turf/simulated/floor/tiled, /area/engineering/foyer) -"aGY" = ( +"aGX" = ( /obj/structure/table/wood/gamblingtable, /obj/machinery/recharger, /turf/simulated/floor/tiled, /area/engineering/foyer) -"aGZ" = ( +"aGY" = ( /obj/structure/table/wood/gamblingtable, /turf/simulated/floor/tiled, /area/engineering/foyer) -"aHa" = ( +"aGZ" = ( /obj/structure/table/wood/gamblingtable, /obj/item/weapon/book/manual/supermatter_engine, /turf/simulated/floor/tiled, /area/engineering/foyer) -"aHb" = ( +"aHa" = ( /obj/item/weapon/stool/padded, /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, @@ -19130,11 +19120,11 @@ }, /turf/simulated/floor/tiled, /area/engineering/foyer) -"aHc" = ( +"aHb" = ( /obj/machinery/hologram/holopad, /turf/simulated/floor/tiled, /area/engineering/foyer) -"aHd" = ( +"aHc" = ( /obj/structure/table/standard, /obj/item/weapon/storage/box/drinkingglasses{ pixel_x = 1; @@ -19150,7 +19140,7 @@ }, /turf/simulated/floor/tiled, /area/engineering/foyer) -"aHe" = ( +"aHd" = ( /obj/structure/table/standard, /obj/effect/floor_decal/corner/yellow{ icon_state = "corner_white"; @@ -19163,7 +19153,7 @@ /obj/machinery/chemical_dispenser/bar_soft/full, /turf/simulated/floor/tiled, /area/engineering/foyer) -"aHf" = ( +"aHe" = ( /obj/structure/table/rack{ dir = 8; layer = 2.9 @@ -19175,7 +19165,7 @@ /obj/effect/floor_decal/corner/blue/full, /turf/simulated/floor/tiled/dark, /area/ai_monitored/storage/eva) -"aHg" = ( +"aHf" = ( /obj/structure/table/rack{ dir = 8; layer = 2.9 @@ -19186,7 +19176,7 @@ /obj/item/clothing/suit/space/void/medical, /turf/simulated/floor/tiled/dark, /area/ai_monitored/storage/eva) -"aHh" = ( +"aHg" = ( /obj/structure/grille, /obj/structure/window/reinforced{ dir = 8 @@ -19203,26 +19193,26 @@ }, /turf/simulated/floor/plating, /area/ai_monitored/storage/eva) -"aHi" = ( +"aHh" = ( /obj/structure/table/reinforced, /obj/item/clothing/head/welding, /obj/item/weapon/storage/belt/utility, /turf/simulated/floor/tiled/dark, /area/ai_monitored/storage/eva) -"aHj" = ( +"aHi" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/effect/floor_decal/corner/blue/diagonal, /turf/simulated/floor/tiled/dark, /area/ai_monitored/storage/eva) -"aHk" = ( +"aHj" = ( /obj/effect/floor_decal/corner/blue{ icon_state = "corner_white"; dir = 9 }, /turf/simulated/floor/tiled/dark, /area/ai_monitored/storage/eva) -"aHl" = ( +"aHk" = ( /obj/structure/table/reinforced, /obj/item/stack/material/glass{ amount = 50 @@ -19236,7 +19226,7 @@ /obj/item/weapon/ladder_mobile, /turf/simulated/floor/tiled/dark, /area/ai_monitored/storage/eva) -"aHm" = ( +"aHl" = ( /obj/structure/grille, /obj/structure/window/reinforced{ dir = 8 @@ -19252,7 +19242,7 @@ }, /turf/simulated/floor/plating, /area/ai_monitored/storage/eva) -"aHn" = ( +"aHm" = ( /obj/structure/table/rack, /obj/item/clothing/mask/breath, /obj/item/clothing/head/helmet/space/void/security, @@ -19264,10 +19254,10 @@ }, /turf/simulated/floor/tiled/dark, /area/ai_monitored/storage/eva) -"aHo" = ( +"aHn" = ( /turf/simulated/wall/r_wall, /area/crew_quarters/heads/hos) -"aHp" = ( +"aHo" = ( /obj/machinery/door/firedoor, /obj/structure/grille, /obj/structure/window/reinforced/polarized{ @@ -19287,7 +19277,7 @@ }, /turf/simulated/floor/plating, /area/crew_quarters/heads/hos) -"aHq" = ( +"aHp" = ( /obj/machinery/door/firedoor, /obj/structure/grille, /obj/structure/window/reinforced/polarized{ @@ -19307,7 +19297,7 @@ }, /turf/simulated/floor/plating, /area/crew_quarters/heads/hos) -"aHr" = ( +"aHq" = ( /obj/machinery/door/firedoor, /obj/structure/grille, /obj/structure/window/reinforced/polarized{ @@ -19331,7 +19321,7 @@ }, /turf/simulated/floor/plating, /area/crew_quarters/heads/hos) -"aHs" = ( +"aHr" = ( /obj/machinery/door/airlock/command{ desc = "It opens and closes. It does not look very robust."; id_tag = "HoSdoor"; @@ -19359,7 +19349,7 @@ /obj/structure/disposalpipe/segment, /turf/simulated/floor/tiled, /area/crew_quarters/heads/hos) -"aHt" = ( +"aHs" = ( /obj/machinery/door/firedoor, /obj/structure/grille, /obj/structure/window/reinforced/polarized{ @@ -19383,7 +19373,7 @@ }, /turf/simulated/floor/plating, /area/crew_quarters/heads/hos) -"aHu" = ( +"aHt" = ( /obj/machinery/door/firedoor, /obj/structure/grille, /obj/structure/window/reinforced/polarized{ @@ -19403,7 +19393,7 @@ }, /turf/simulated/floor/plating, /area/crew_quarters/heads/hos) -"aHv" = ( +"aHu" = ( /obj/machinery/door/firedoor, /obj/structure/grille, /obj/structure/window/reinforced/polarized{ @@ -19423,10 +19413,10 @@ }, /turf/simulated/floor/plating, /area/crew_quarters/heads/hos) -"aHw" = ( +"aHv" = ( /turf/simulated/wall/r_wall, /area/security/lobby) -"aHx" = ( +"aHw" = ( /obj/machinery/door/firedoor{ layer = 2.4 }, @@ -19447,7 +19437,7 @@ }, /turf/simulated/floor/tiled, /area/security/lobby) -"aHy" = ( +"aHx" = ( /obj/structure/grille, /obj/structure/window/reinforced, /obj/structure/window/reinforced{ @@ -19471,7 +19461,7 @@ /obj/structure/cable/green, /turf/simulated/floor/plating, /area/security/lobby) -"aHz" = ( +"aHy" = ( /obj/machinery/door/firedoor, /obj/structure/cable/green{ d1 = 1; @@ -19496,7 +19486,7 @@ }, /turf/simulated/floor/tiled, /area/security/lobby) -"aHA" = ( +"aHz" = ( /obj/machinery/door/firedoor, /obj/structure/grille, /obj/structure/window/reinforced, @@ -19515,7 +19505,7 @@ }, /turf/simulated/floor/plating, /area/security/brig) -"aHB" = ( +"aHA" = ( /obj/machinery/door/firedoor, /obj/machinery/door/window/brigdoor/northleft{ name = "Security Office" @@ -19524,7 +19514,7 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/tiled, /area/security/brig) -"aHC" = ( +"aHB" = ( /obj/machinery/door/firedoor, /obj/machinery/door/window/brigdoor/northright{ name = "Security Office" @@ -19542,7 +19532,7 @@ /obj/structure/disposalpipe/segment, /turf/simulated/floor/tiled, /area/security/brig) -"aHD" = ( +"aHC" = ( /obj/machinery/door/firedoor, /obj/structure/grille, /obj/structure/window/reinforced, @@ -19562,27 +19552,27 @@ }, /turf/simulated/floor/plating, /area/security/brig) +"aHD" = ( +/obj/machinery/door/firedoor, +/obj/structure/grille, +/obj/structure/window/reinforced, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/cable/green{ + d2 = 4; + icon_state = "0-4" + }, +/obj/structure/cable/green{ + d2 = 8; + icon_state = "0-8" + }, +/turf/simulated/floor/plating, +/area/security/brig) "aHE" = ( /obj/machinery/door/firedoor, /obj/structure/grille, /obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/cable/green{ - d2 = 4; - icon_state = "0-4" - }, -/obj/structure/cable/green{ - d2 = 8; - icon_state = "0-8" - }, -/turf/simulated/floor/plating, -/area/security/brig) -"aHF" = ( -/obj/machinery/door/firedoor, -/obj/structure/grille, -/obj/structure/window/reinforced, /obj/structure/window/reinforced{ dir = 1 }, @@ -19595,11 +19585,11 @@ }, /turf/simulated/floor/plating, /area/security/brig) -"aHG" = ( +"aHF" = ( /obj/structure/sign/nosmoking_2, /turf/simulated/wall, /area/security/brig) -"aHH" = ( +"aHG" = ( /obj/machinery/recharger/wallcharger{ pixel_x = -32; pixel_y = -6 @@ -19614,13 +19604,13 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/tiled/dark, /area/security/warden) -"aHI" = ( +"aHH" = ( /obj/machinery/atmospherics/unary/vent_pump/on{ dir = 8 }, /turf/simulated/floor/tiled/dark, /area/security/warden) -"aHJ" = ( +"aHI" = ( /obj/machinery/hologram/holopad, /obj/machinery/atmospherics/pipe/simple/hidden{ dir = 5; @@ -19628,7 +19618,7 @@ }, /turf/simulated/floor/tiled/dark, /area/security/warden) -"aHK" = ( +"aHJ" = ( /obj/machinery/button/flasher{ id = "permflash"; name = "Brig flashes"; @@ -19641,7 +19631,7 @@ }, /turf/simulated/floor/tiled/dark, /area/security/warden) -"aHL" = ( +"aHK" = ( /obj/machinery/door/airlock/glass_security{ name = "Warden's Office"; req_access = list(3) @@ -19658,13 +19648,13 @@ /obj/machinery/door/firedoor, /turf/simulated/floor/tiled, /area/security/warden) -"aHM" = ( +"aHL" = ( /obj/machinery/atmospherics/pipe/simple/hidden{ dir = 4 }, /turf/simulated/floor/tiled, /area/security/prison) -"aHN" = ( +"aHM" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/machinery/atmospherics/pipe/simple/hidden{ @@ -19672,7 +19662,7 @@ }, /turf/simulated/floor/tiled, /area/security/prison) -"aHO" = ( +"aHN" = ( /obj/item/weapon/stool/padded, /obj/machinery/atmospherics/pipe/manifold/hidden{ dir = 1; @@ -19680,7 +19670,7 @@ }, /turf/simulated/floor/tiled, /area/security/prison) -"aHP" = ( +"aHO" = ( /obj/structure/table/standard, /obj/item/weapon/book/manual/security_space_law, /obj/machinery/atmospherics/pipe/simple/hidden{ @@ -19689,12 +19679,12 @@ }, /turf/simulated/floor/tiled, /area/security/prison) -"aHQ" = ( +"aHP" = ( /obj/structure/table/standard, /obj/item/toy/blink, /turf/simulated/floor/tiled, /area/security/prison) -"aHR" = ( +"aHQ" = ( /obj/structure/cable/green{ d1 = 1; d2 = 2; @@ -19702,7 +19692,7 @@ }, /turf/simulated/floor/tiled, /area/security/prison) -"aHS" = ( +"aHR" = ( /obj/structure/reagent_dispensers/water_cooler, /obj/structure/sign/nosmoking_2{ pixel_x = 32 @@ -19713,7 +19703,7 @@ }, /turf/simulated/floor/tiled, /area/security/prison) -"aHT" = ( +"aHS" = ( /obj/structure/cable/green{ d1 = 1; d2 = 2; @@ -19739,7 +19729,7 @@ }, /turf/simulated/floor/tiled, /area/security/brig) -"aHU" = ( +"aHT" = ( /obj/effect/floor_decal/corner/blue{ icon_state = "corner_white"; dir = 6 @@ -19749,11 +19739,11 @@ }, /turf/simulated/floor/tiled, /area/security/brig) -"aHV" = ( +"aHU" = ( /obj/machinery/door/firedoor, /turf/simulated/floor/tiled, /area/hallway/primary/starboard) -"aHW" = ( +"aHV" = ( /obj/machinery/door/firedoor, /obj/structure/cable{ d1 = 1; @@ -19766,7 +19756,7 @@ /obj/structure/disposalpipe/segment, /turf/simulated/floor/tiled, /area/hallway/primary/starboard) -"aHX" = ( +"aHW" = ( /obj/effect/floor_decal/industrial/hatch/yellow, /obj/machinery/door/firedoor, /obj/structure/sign/drop{ @@ -19775,17 +19765,17 @@ }, /turf/simulated/floor/tiled, /area/hallway/primary/starboard) -"aHY" = ( +"aHX" = ( /obj/machinery/door/firedoor, /obj/effect/floor_decal/industrial/hatch/yellow, /turf/simulated/floor/tiled, /area/hallway/primary/starboard) +"aHY" = ( +/obj/effect/floor_decal/industrial/hatch/yellow, +/obj/machinery/door/firedoor, +/turf/simulated/floor/tiled, +/area/hallway/primary/starboard) "aHZ" = ( -/obj/effect/floor_decal/industrial/hatch/yellow, -/obj/machinery/door/firedoor, -/turf/simulated/floor/tiled, -/area/hallway/primary/starboard) -"aIa" = ( /obj/machinery/door/firedoor, /obj/machinery/door/airlock/command{ name = "Teleport Access"; @@ -19808,7 +19798,7 @@ }, /turf/simulated/floor/tiled, /area/teleporter) -"aIb" = ( +"aIa" = ( /obj/structure/grille, /obj/structure/window/reinforced, /obj/structure/window/reinforced{ @@ -19825,7 +19815,7 @@ /obj/structure/sign/flag/nanotrasen/left, /turf/simulated/floor/plating, /area/bridge) -"aIc" = ( +"aIb" = ( /obj/structure/grille, /obj/structure/window/reinforced, /obj/structure/window/reinforced{ @@ -19842,7 +19832,7 @@ /obj/structure/sign/flag/nanotrasen/right, /turf/simulated/floor/plating, /area/bridge) -"aId" = ( +"aIc" = ( /obj/structure/grille, /obj/structure/window/reinforced, /obj/structure/window/reinforced{ @@ -19861,7 +19851,7 @@ }, /turf/simulated/floor/plating, /area/bridge) -"aIe" = ( +"aId" = ( /obj/machinery/door/firedoor, /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, @@ -19889,7 +19879,7 @@ }, /turf/simulated/floor/tiled/white, /area/bridge) -"aIf" = ( +"aIe" = ( /obj/structure/grille, /obj/structure/window/reinforced, /obj/structure/window/reinforced{ @@ -19908,16 +19898,16 @@ }, /turf/simulated/floor/plating, /area/bridge) -"aIg" = ( +"aIf" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/machinery/atmospherics/pipe/simple/hidden/supply, /turf/simulated/floor/carpet, /area/crew_quarters/captain) -"aIh" = ( +"aIg" = ( /obj/machinery/account_database, /turf/simulated/floor/carpet, /area/crew_quarters/captain) -"aIi" = ( +"aIh" = ( /obj/machinery/atmospherics/binary/circulator{ anchored = 1; dir = 8; @@ -19926,36 +19916,36 @@ /obj/effect/floor_decal/industrial/hatch/yellow, /turf/simulated/floor/plating, /area/engineering/engine_room) -"aIj" = ( +"aIi" = ( /obj/machinery/atmospherics/pipe/simple/visible/green{ icon_state = "intact"; dir = 10 }, /turf/simulated/floor/plating, /area/engineering/engine_room) -"aIk" = ( +"aIj" = ( /obj/machinery/atmospherics/pipe/simple/visible/black{ dir = 6 }, /turf/simulated/floor/plating, /area/engineering/engine_room) -"aIl" = ( +"aIk" = ( /obj/machinery/atmospherics/pipe/manifold/visible/green{ dir = 1 }, /turf/simulated/floor/plating, /area/engineering/engine_room) -"aIm" = ( +"aIl" = ( /obj/machinery/atmospherics/pipe/manifold/visible/green, /turf/simulated/floor/plating, /area/engineering/engine_room) -"aIn" = ( +"aIm" = ( /obj/machinery/atmospherics/binary/pump{ dir = 8 }, /turf/simulated/floor/plating, /area/engineering/engine_room) -"aIo" = ( +"aIn" = ( /obj/structure/sign/securearea{ desc = "A warning sign which reads 'RADIOACTIVE AREA'"; icon_state = "radiation"; @@ -19965,7 +19955,7 @@ }, /turf/simulated/wall/r_wall, /area/engineering/engine_airlock) -"aIp" = ( +"aIo" = ( /obj/machinery/door/airlock/maintenance{ req_access = list(11) }, @@ -19982,11 +19972,11 @@ }, /turf/simulated/floor/tiled, /area/engineering/engine_monitoring) -"aIq" = ( +"aIp" = ( /obj/structure/sign/securearea, /turf/simulated/wall/r_wall, /area/engineering/engine_monitoring) -"aIr" = ( +"aIq" = ( /obj/structure/table/standard, /obj/item/device/suit_cooling_unit, /obj/item/device/suit_cooling_unit, @@ -20021,11 +20011,11 @@ }, /turf/simulated/floor/tiled, /area/engineering/storage) -"aIs" = ( +"aIr" = ( /obj/machinery/firealarm/south, /turf/simulated/floor/tiled, /area/engineering/storage) -"aIt" = ( +"aIs" = ( /obj/effect/floor_decal/industrial/hatch/yellow, /obj/machinery/portable_atmospherics/canister/oxygen, /obj/structure/sign/nosmoking_2{ @@ -20034,12 +20024,12 @@ }, /turf/simulated/floor/tiled, /area/engineering/storage) -"aIu" = ( +"aIt" = ( /obj/structure/dispenser/oxygen, /obj/effect/floor_decal/industrial/hatch/yellow, /turf/simulated/floor/tiled, /area/engineering/storage) -"aIv" = ( +"aIu" = ( /obj/structure/table/rack, /obj/item/clothing/suit/space/void/engineering, /obj/item/clothing/head/helmet/space/void/engineering, @@ -20056,7 +20046,7 @@ /obj/effect/floor_decal/industrial/outline/yellow, /turf/simulated/floor/tiled, /area/engineering/storage) -"aIw" = ( +"aIv" = ( /obj/structure/table/rack, /obj/item/clothing/suit/space/void/engineering, /obj/item/clothing/head/helmet/space/void/engineering, @@ -20070,7 +20060,7 @@ /obj/effect/floor_decal/industrial/outline/yellow, /turf/simulated/floor/tiled, /area/engineering/storage) -"aIx" = ( +"aIw" = ( /obj/structure/table/rack, /obj/item/clothing/suit/space/void/engineering, /obj/item/clothing/head/helmet/space/void/engineering, @@ -20087,12 +20077,12 @@ /obj/effect/floor_decal/industrial/outline/yellow, /turf/simulated/floor/tiled, /area/engineering/storage) -"aIy" = ( +"aIx" = ( /obj/effect/floor_decal/industrial/outline/yellow, /obj/machinery/suit_cycler/engineering, /turf/simulated/floor/tiled, /area/engineering/storage) -"aIz" = ( +"aIy" = ( /obj/machinery/newscaster{ pixel_x = -27 }, @@ -20101,7 +20091,7 @@ /obj/item/weapon/ladder_mobile, /turf/simulated/floor/tiled, /area/engineering/foyer) -"aIA" = ( +"aIz" = ( /obj/structure/cable/green{ d1 = 1; d2 = 2; @@ -20110,7 +20100,7 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/tiled, /area/engineering/foyer) -"aIB" = ( +"aIA" = ( /obj/item/weapon/stool/padded, /obj/structure/cable{ d1 = 1; @@ -20127,12 +20117,12 @@ }, /turf/simulated/floor/tiled, /area/engineering/foyer) -"aIC" = ( +"aIB" = ( /obj/structure/table/wood/gamblingtable, /obj/item/device/flashlight/lamp/green, /turf/simulated/floor/tiled, /area/engineering/foyer) -"aID" = ( +"aIC" = ( /obj/item/weapon/stool/padded, /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, @@ -20142,11 +20132,11 @@ }, /turf/simulated/floor/tiled, /area/engineering/foyer) -"aIE" = ( +"aID" = ( /obj/machinery/atmospherics/unary/vent_pump/on, /turf/simulated/floor/tiled, /area/engineering/foyer) -"aIF" = ( +"aIE" = ( /obj/structure/bookcase/manuals/engineering, /obj/item/weapon/book/manual/atmospipes, /obj/item/weapon/book/manual/engineering_guide, @@ -20156,7 +20146,7 @@ }, /turf/simulated/floor/tiled, /area/engineering/foyer) -"aIG" = ( +"aIF" = ( /obj/machinery/requests_console{ department = "EVA"; pixel_x = -32; @@ -20174,7 +20164,7 @@ }, /turf/simulated/floor/tiled/dark, /area/ai_monitored/storage/eva) -"aIH" = ( +"aIG" = ( /obj/structure/table/reinforced, /obj/machinery/camera/network/security{ c_tag = "EVA - Starboard Camera"; @@ -20188,7 +20178,7 @@ }, /turf/simulated/floor/tiled/dark, /area/ai_monitored/storage/eva) -"aII" = ( +"aIH" = ( /obj/structure/grille, /obj/structure/window/reinforced{ dir = 8 @@ -20202,7 +20192,7 @@ }, /turf/simulated/floor/plating, /area/ai_monitored/storage/eva) -"aIJ" = ( +"aII" = ( /obj/machinery/suit_cycler/security, /obj/effect/floor_decal/corner/blue/full{ icon_state = "corner_white_full"; @@ -20210,20 +20200,20 @@ }, /turf/simulated/floor/tiled/dark, /area/ai_monitored/storage/eva) -"aIK" = ( +"aIJ" = ( /obj/machinery/disposal, /obj/structure/disposalpipe/trunk{ dir = 4 }, /turf/simulated/floor/tiled/dark, /area/crew_quarters/heads/hos) -"aIL" = ( +"aIK" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, /turf/simulated/floor/tiled/dark, /area/crew_quarters/heads/hos) -"aIM" = ( +"aIL" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/structure/cable/green{ @@ -20237,7 +20227,7 @@ }, /turf/simulated/floor/tiled/dark, /area/crew_quarters/heads/hos) -"aIN" = ( +"aIM" = ( /obj/structure/cable/green{ d1 = 4; d2 = 8; @@ -20246,7 +20236,7 @@ /obj/machinery/papershredder, /turf/simulated/floor/tiled/dark, /area/crew_quarters/heads/hos) -"aIO" = ( +"aIN" = ( /obj/structure/cable/green{ d1 = 4; d2 = 8; @@ -20255,7 +20245,7 @@ /obj/structure/banner, /turf/simulated/floor/tiled/dark, /area/crew_quarters/heads/hos) -"aIP" = ( +"aIO" = ( /obj/structure/cable/green{ d2 = 8; icon_state = "0-8" @@ -20268,7 +20258,7 @@ /obj/structure/flora/pottedplant/random, /turf/simulated/floor/tiled/dark, /area/crew_quarters/heads/hos) -"aIQ" = ( +"aIP" = ( /obj/structure/bookcase/manuals, /obj/item/weapon/book/manual/security_space_law, /obj/item/weapon/book/manual/security_space_law, @@ -20276,7 +20266,7 @@ /obj/item/weapon/book/manual/security_space_law, /turf/simulated/floor/tiled, /area/security/lobby) -"aIR" = ( +"aIQ" = ( /obj/structure/table/standard, /obj/item/weapon/paper_bin{ pixel_x = -3; @@ -20289,7 +20279,7 @@ }, /turf/simulated/floor/tiled, /area/security/lobby) -"aIS" = ( +"aIR" = ( /obj/structure/disposalpipe/segment, /obj/effect/floor_decal/corner/blue{ icon_state = "corner_white"; @@ -20297,7 +20287,7 @@ }, /turf/simulated/floor/tiled, /area/security/lobby) -"aIT" = ( +"aIS" = ( /obj/machinery/light{ dir = 1 }, @@ -20311,7 +20301,7 @@ }, /turf/simulated/floor/tiled, /area/security/lobby) -"aIU" = ( +"aIT" = ( /obj/structure/cable/green{ d1 = 1; d2 = 2; @@ -20325,7 +20315,7 @@ }, /turf/simulated/floor/tiled, /area/security/lobby) -"aIV" = ( +"aIU" = ( /obj/structure/banner, /obj/machinery/status_display{ pixel_x = 0; @@ -20333,7 +20323,7 @@ }, /turf/simulated/floor/tiled, /area/security/lobby) -"aIW" = ( +"aIV" = ( /obj/machinery/door/firedoor, /obj/structure/grille, /obj/structure/window/reinforced, @@ -20360,7 +20350,7 @@ }, /turf/simulated/floor/plating, /area/security/brig) -"aIX" = ( +"aIW" = ( /obj/machinery/computer/secure_data, /obj/structure/cable/green{ d1 = 1; @@ -20377,7 +20367,7 @@ }, /turf/simulated/floor/tiled, /area/security/brig) -"aIY" = ( +"aIX" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 5 }, @@ -20386,7 +20376,7 @@ }, /turf/simulated/floor/tiled, /area/security/brig) -"aIZ" = ( +"aIY" = ( /obj/structure/cable/green{ d1 = 1; d2 = 2; @@ -20401,7 +20391,7 @@ /obj/structure/disposalpipe/segment, /turf/simulated/floor/tiled, /area/security/brig) -"aJa" = ( +"aIZ" = ( /obj/machinery/atmospherics/pipe/manifold/hidden/supply{ dir = 1 }, @@ -20419,7 +20409,7 @@ /obj/item/weapon/hand_labeler, /turf/simulated/floor/tiled, /area/security/brig) -"aJb" = ( +"aJa" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, @@ -20428,7 +20418,7 @@ }, /turf/simulated/floor/tiled, /area/security/brig) -"aJc" = ( +"aJb" = ( /obj/machinery/door/airlock/glass_security{ name = "Warden's Office"; req_access = list(3) @@ -20442,7 +20432,7 @@ /obj/machinery/door/firedoor, /turf/simulated/floor/tiled/dark, /area/security/brig) -"aJd" = ( +"aJc" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, @@ -20455,7 +20445,7 @@ }, /turf/simulated/floor/tiled/dark, /area/security/warden) -"aJe" = ( +"aJd" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ icon_state = "intact-supply"; dir = 9 @@ -20468,7 +20458,7 @@ }, /turf/simulated/floor/tiled/dark, /area/security/warden) -"aJf" = ( +"aJe" = ( /obj/structure/table/standard, /obj/item/weapon/book/manual/security_space_law, /obj/item/device/eftpos{ @@ -20477,7 +20467,7 @@ /obj/machinery/firealarm/south, /turf/simulated/floor/tiled/dark, /area/security/warden) -"aJg" = ( +"aJf" = ( /obj/machinery/light, /obj/machinery/camera/network/security{ c_tag = "Security - Warden's Office"; @@ -20491,7 +20481,7 @@ /obj/structure/filingcabinet/chestdrawer, /turf/simulated/floor/tiled/dark, /area/security/warden) -"aJh" = ( +"aJg" = ( /obj/structure/disposalpipe/trunk{ dir = 4 }, @@ -20509,7 +20499,7 @@ /obj/effect/floor_decal/industrial/outline/yellow, /turf/simulated/floor/tiled/dark, /area/security/warden) -"aJi" = ( +"aJh" = ( /obj/structure/grille, /obj/structure/window/reinforced, /obj/structure/window/reinforced{ @@ -20529,18 +20519,18 @@ /obj/machinery/door/firedoor, /turf/simulated/floor/plating, /area/security/warden) -"aJj" = ( +"aJi" = ( /obj/machinery/portable_atmospherics/powered/scrubber/huge, /turf/simulated/floor/tiled, /area/security/prison) -"aJk" = ( +"aJj" = ( /obj/machinery/atmospherics/pipe/manifold/hidden/supply{ dir = 8 }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/tiled, /area/security/prison) -"aJl" = ( +"aJk" = ( /obj/item/weapon/stool/padded, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 @@ -20548,14 +20538,14 @@ /obj/machinery/atmospherics/pipe/simple/hidden, /turf/simulated/floor/tiled, /area/security/prison) -"aJm" = ( +"aJl" = ( /obj/structure/table/standard, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, /turf/simulated/floor/tiled, /area/security/prison) -"aJn" = ( +"aJm" = ( /obj/structure/table/standard, /obj/item/weapon/dice, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ @@ -20563,14 +20553,14 @@ }, /turf/simulated/floor/tiled, /area/security/prison) -"aJo" = ( +"aJn" = ( /obj/item/weapon/stool/padded, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, /turf/simulated/floor/tiled, /area/security/prison) -"aJp" = ( +"aJo" = ( /obj/structure/cable/green{ d1 = 1; d2 = 2; @@ -20586,7 +20576,7 @@ }, /turf/simulated/floor/tiled, /area/security/prison) -"aJq" = ( +"aJp" = ( /obj/structure/table/standard, /obj/item/weapon/storage/box/cups, /obj/structure/cable/green{ @@ -20596,14 +20586,14 @@ }, /turf/simulated/floor/tiled, /area/security/prison) -"aJr" = ( +"aJq" = ( /obj/structure/toilet{ pixel_x = 0; pixel_y = 5 }, /turf/simulated/floor/tiled, /area/security/prison) -"aJs" = ( +"aJr" = ( /obj/machinery/door/firedoor, /obj/machinery/door/airlock/glass_security{ id_tag = ""; @@ -20621,7 +20611,7 @@ }, /turf/simulated/floor/tiled, /area/security/brig) -"aJt" = ( +"aJs" = ( /obj/effect/floor_decal/corner/blue{ icon_state = "corner_white"; dir = 9 @@ -20632,26 +20622,26 @@ }, /turf/simulated/floor/tiled, /area/hallway/primary/starboard) -"aJu" = ( +"aJt" = ( /obj/machinery/newscaster{ pixel_y = 32 }, /turf/simulated/floor/tiled, /area/hallway/primary/starboard) -"aJv" = ( +"aJu" = ( /obj/machinery/alarm{ pixel_y = 23 }, /turf/simulated/floor/tiled, /area/hallway/primary/starboard) -"aJw" = ( +"aJv" = ( /obj/machinery/atmospherics/unary/vent_pump/on, /obj/machinery/atm{ pixel_y = 32 }, /turf/simulated/floor/tiled, /area/hallway/primary/starboard) -"aJx" = ( +"aJw" = ( /obj/structure/sign/directions/evac{ dir = 8; icon_state = "direction_evac"; @@ -20670,7 +20660,7 @@ }, /turf/simulated/floor/tiled, /area/hallway/primary/starboard) -"aJy" = ( +"aJx" = ( /obj/machinery/light{ dir = 1 }, @@ -20679,7 +20669,7 @@ }, /turf/simulated/floor/tiled, /area/hallway/primary/starboard) -"aJz" = ( +"aJy" = ( /obj/machinery/door/firedoor, /obj/effect/floor_decal/industrial/warning/corner{ icon_state = "warningcorner"; @@ -20687,13 +20677,13 @@ }, /turf/simulated/floor/tiled, /area/hallway/primary/starboard) -"aJA" = ( +"aJz" = ( /obj/effect/floor_decal/industrial/warning{ dir = 1 }, /turf/simulated/floor/tiled, /area/hallway/primary/starboard) -"aJB" = ( +"aJA" = ( /obj/structure/sign/securearea{ pixel_y = 32 }, @@ -20707,7 +20697,7 @@ }, /turf/simulated/floor/tiled, /area/hallway/primary/starboard) -"aJC" = ( +"aJB" = ( /obj/machinery/door/airlock/glass_command{ id_tag = "sbridgedoor"; name = "Bridge"; @@ -20719,7 +20709,7 @@ }, /turf/simulated/floor/tiled, /area/bridge) -"aJD" = ( +"aJC" = ( /obj/effect/floor_decal/industrial/hatch/yellow, /obj/structure/disposalpipe/segment{ dir = 4 @@ -20734,7 +20724,7 @@ }, /turf/simulated/floor/tiled, /area/bridge) -"aJE" = ( +"aJD" = ( /obj/effect/floor_decal/corner/paleblue/full, /obj/structure/disposalpipe/segment{ dir = 4 @@ -20745,7 +20735,7 @@ }, /turf/simulated/floor/tiled, /area/bridge) -"aJF" = ( +"aJE" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, @@ -20763,7 +20753,7 @@ }, /turf/simulated/floor/tiled, /area/bridge) -"aJG" = ( +"aJF" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, @@ -20776,7 +20766,7 @@ }, /turf/simulated/floor/tiled, /area/bridge) -"aJH" = ( +"aJG" = ( /obj/structure/disposalpipe/segment{ dir = 2; icon_state = "pipe-c" @@ -20790,7 +20780,7 @@ }, /turf/simulated/floor/tiled, /area/bridge) -"aJI" = ( +"aJH" = ( /obj/effect/floor_decal/corner/paleblue{ icon_state = "corner_white"; dir = 10 @@ -20801,7 +20791,7 @@ }, /turf/simulated/floor/tiled, /area/bridge) -"aJJ" = ( +"aJI" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/structure/cable/green{ @@ -20815,7 +20805,7 @@ }, /turf/simulated/floor/tiled, /area/bridge) -"aJK" = ( +"aJJ" = ( /obj/effect/floor_decal/corner/paleblue{ icon_state = "corner_white"; dir = 10 @@ -20826,7 +20816,7 @@ }, /turf/simulated/floor/tiled, /area/bridge) -"aJL" = ( +"aJK" = ( /obj/effect/floor_decal/corner/paleblue{ icon_state = "corner_white"; dir = 10 @@ -20838,7 +20828,7 @@ }, /turf/simulated/floor/tiled, /area/bridge) -"aJM" = ( +"aJL" = ( /obj/structure/noticeboard{ pixel_y = 32 }, @@ -20848,14 +20838,14 @@ }, /turf/simulated/floor/tiled, /area/bridge) -"aJN" = ( +"aJM" = ( /obj/effect/floor_decal/corner/paleblue/full{ icon_state = "corner_white_full"; dir = 4 }, /turf/simulated/floor/tiled, /area/bridge) -"aJO" = ( +"aJN" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/structure/disposalpipe/segment, @@ -20867,14 +20857,14 @@ }, /turf/simulated/floor/tiled/white, /area/bridge) -"aJP" = ( +"aJO" = ( /obj/effect/floor_decal/corner/paleblue{ icon_state = "corner_white"; dir = 9 }, /turf/simulated/floor/tiled, /area/bridge) -"aJQ" = ( +"aJP" = ( /obj/structure/bed/chair/comfy/brown{ dir = 8 }, @@ -20884,7 +20874,7 @@ }, /turf/simulated/floor/tiled, /area/bridge) -"aJR" = ( +"aJQ" = ( /obj/machinery/door/firedoor, /obj/structure/grille, /obj/structure/window/reinforced/polarized{ @@ -20905,7 +20895,7 @@ }, /turf/simulated/floor/plating, /area/crew_quarters/captain) -"aJS" = ( +"aJR" = ( /obj/structure/bed/chair/comfy/brown, /obj/structure/cable/green{ d1 = 2; @@ -20914,14 +20904,14 @@ }, /turf/simulated/floor/carpet, /area/crew_quarters/captain) -"aJT" = ( +"aJS" = ( /obj/structure/bed/chair/comfy/brown, /obj/structure/sign/nosmoking_2{ pixel_y = 32 }, /turf/simulated/floor/carpet, /area/crew_quarters/captain) -"aJU" = ( +"aJT" = ( /obj/machinery/power/apc{ dir = 1; name = "north bump"; @@ -20934,7 +20924,7 @@ }, /turf/simulated/floor/wood, /area/crew_quarters/captain) -"aJV" = ( +"aJU" = ( /obj/structure/table/wood, /obj/machinery/camera/network/command{ c_tag = "Bridge - Captain's Office West" @@ -20945,17 +20935,17 @@ }, /turf/simulated/floor/wood, /area/crew_quarters/captain) -"aJW" = ( +"aJV" = ( /obj/machinery/vending/coffee, /turf/simulated/floor/wood, /area/crew_quarters/captain) -"aJX" = ( +"aJW" = ( /obj/structure/bed/chair/comfy/brown{ dir = 4 }, /turf/simulated/floor/wood, /area/crew_quarters/captain) -"aJY" = ( +"aJX" = ( /obj/structure/table/wood, /obj/item/weapon/paper_bin{ pixel_x = -3; @@ -20970,7 +20960,7 @@ }, /turf/simulated/floor/carpet, /area/crew_quarters/captain) -"aJZ" = ( +"aJY" = ( /obj/structure/filingcabinet, /obj/machinery/requests_console{ announcementConsole = 1; @@ -20982,25 +20972,25 @@ }, /turf/simulated/floor/carpet, /area/crew_quarters/captain) -"aKa" = ( +"aJZ" = ( /obj/machinery/suit_cycler/captain, /obj/structure/sign/nosmoking_2{ pixel_x = 32 }, /turf/simulated/floor/carpet, /area/crew_quarters/captain) -"aKb" = ( +"aKa" = ( /obj/machinery/atmospherics/pipe/simple/visible/black, /turf/simulated/floor/plating, /area/engineering/engine_room) -"aKc" = ( +"aKb" = ( /obj/machinery/atmospherics/pipe/simple/visible/green{ icon_state = "intact"; dir = 5 }, /turf/simulated/floor/plating, /area/engineering/engine_room) -"aKd" = ( +"aKc" = ( /obj/machinery/atmospherics/pipe/simple/visible/black, /obj/machinery/atmospherics/pipe/simple/visible/green{ icon_state = "intact"; @@ -21008,14 +20998,14 @@ }, /turf/simulated/floor/plating, /area/engineering/engine_room) +"aKd" = ( +/obj/machinery/atmospherics/pipe/simple/visible/green{ + icon_state = "intact"; + dir = 4 + }, +/turf/simulated/floor/plating, +/area/engineering/engine_room) "aKe" = ( -/obj/machinery/atmospherics/pipe/simple/visible/green{ - icon_state = "intact"; - dir = 4 - }, -/turf/simulated/floor/plating, -/area/engineering/engine_room) -"aKf" = ( /obj/machinery/atmospherics/pipe/manifold/visible/green{ icon_state = "map"; dir = 4 @@ -21023,7 +21013,7 @@ /obj/machinery/meter, /turf/simulated/floor/plating, /area/engineering/engine_room) -"aKg" = ( +"aKf" = ( /obj/machinery/light{ dir = 4; icon_state = "tube1"; @@ -21031,7 +21021,7 @@ }, /turf/simulated/floor/plating, /area/engineering/engine_room) -"aKh" = ( +"aKg" = ( /obj/machinery/atmospherics/pipe/zpipe/up/supply, /obj/machinery/atmospherics/pipe/zpipe/up/scrubbers, /obj/structure/cable{ @@ -21046,7 +21036,7 @@ roof_type = null }, /area/maintenance/research_port) -"aKi" = ( +"aKh" = ( /obj/structure/ladder/up{ pixel_y = 16 }, @@ -21058,7 +21048,7 @@ roof_type = null }, /area/maintenance/research_port) -"aKj" = ( +"aKi" = ( /obj/machinery/atmospherics/pipe/zpipe/down/scrubbers, /obj/machinery/atmospherics/pipe/zpipe/down/supply, /obj/structure/cable{ @@ -21068,22 +21058,22 @@ /obj/structure/lattice/catwalk, /turf/simulated/open, /area/maintenance/research_port) -"aKk" = ( +"aKj" = ( /obj/structure/ladder{ icon_state = "ladder01"; pixel_y = 16 }, /turf/simulated/open, /area/maintenance/research_port) -"aKl" = ( +"aKk" = ( /turf/simulated/wall/r_wall, /area/maintenance/research_port) -"aKm" = ( +"aKl" = ( /obj/structure/table/rack, /obj/random/loot, /turf/simulated/floor/plating, /area/maintenance/research_port) -"aKn" = ( +"aKm" = ( /obj/structure/cable{ d1 = 1; d2 = 2; @@ -21092,10 +21082,10 @@ }, /turf/simulated/floor/plating, /area/maintenance/research_port) -"aKo" = ( +"aKn" = ( /turf/simulated/floor/plating, /area/maintenance/research_port) -"aKp" = ( +"aKo" = ( /obj/machinery/atmospherics/unary/vent_scrubber/on{ dir = 4 }, @@ -21108,7 +21098,7 @@ /obj/machinery/photocopier, /turf/simulated/floor/tiled, /area/engineering/foyer) -"aKq" = ( +"aKp" = ( /obj/structure/cable/green{ d1 = 1; d2 = 2; @@ -21119,7 +21109,7 @@ }, /turf/simulated/floor/tiled, /area/engineering/foyer) -"aKr" = ( +"aKq" = ( /obj/structure/cable{ d1 = 1; d2 = 2; @@ -21132,7 +21122,7 @@ }, /turf/simulated/floor/tiled, /area/engineering/foyer) -"aKs" = ( +"aKr" = ( /obj/item/weapon/stool/padded, /obj/effect/floor_decal/corner/yellow{ icon_state = "corner_white"; @@ -21143,7 +21133,7 @@ }, /turf/simulated/floor/tiled, /area/engineering/foyer) -"aKt" = ( +"aKs" = ( /obj/item/weapon/stool/padded, /obj/effect/floor_decal/corner/yellow{ icon_state = "corner_white"; @@ -21154,7 +21144,7 @@ }, /turf/simulated/floor/tiled, /area/engineering/foyer) -"aKu" = ( +"aKt" = ( /obj/item/weapon/stool/padded, /obj/effect/floor_decal/corner/yellow{ icon_state = "corner_white"; @@ -21165,7 +21155,7 @@ }, /turf/simulated/floor/tiled, /area/engineering/foyer) -"aKv" = ( +"aKu" = ( /obj/machinery/atmospherics/pipe/manifold/hidden/supply{ dir = 8 }, @@ -21178,7 +21168,7 @@ }, /turf/simulated/floor/tiled, /area/engineering/foyer) -"aKw" = ( +"aKv" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, @@ -21188,7 +21178,7 @@ /obj/structure/disposalpipe/segment, /turf/simulated/floor/tiled, /area/engineering/foyer) -"aKx" = ( +"aKw" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, @@ -21197,7 +21187,7 @@ }, /turf/simulated/floor/tiled, /area/engineering/foyer) -"aKy" = ( +"aKx" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 9; pixel_y = 0 @@ -21207,7 +21197,7 @@ }, /turf/simulated/floor/tiled, /area/engineering/foyer) -"aKz" = ( +"aKy" = ( /obj/effect/floor_decal/corner/yellow{ icon_state = "corner_white"; dir = 6 @@ -21224,7 +21214,7 @@ }, /turf/simulated/floor/tiled, /area/engineering/foyer) -"aKA" = ( +"aKz" = ( /obj/structure/table/rack{ dir = 8; layer = 2.9 @@ -21238,7 +21228,7 @@ }, /turf/simulated/floor/tiled/dark, /area/ai_monitored/storage/eva) -"aKB" = ( +"aKA" = ( /obj/structure/table/rack{ dir = 8; layer = 2.9 @@ -21249,14 +21239,14 @@ /obj/item/clothing/head/helmet/space/void/atmos, /turf/simulated/floor/tiled/dark, /area/ai_monitored/storage/eva) -"aKC" = ( +"aKB" = ( /obj/structure/table/reinforced, /obj/item/device/assembly/signaler, /obj/item/device/assembly/signaler, /obj/item/device/flashlight/heavy, /turf/simulated/floor/tiled/dark, /area/ai_monitored/storage/eva) -"aKD" = ( +"aKC" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ dir = 8 @@ -21264,7 +21254,7 @@ /obj/effect/floor_decal/corner/blue/diagonal, /turf/simulated/floor/tiled/dark, /area/ai_monitored/storage/eva) -"aKE" = ( +"aKD" = ( /obj/machinery/atmospherics/unary/vent_scrubber/on{ dir = 8 }, @@ -21274,7 +21264,7 @@ }, /turf/simulated/floor/tiled/dark, /area/ai_monitored/storage/eva) -"aKF" = ( +"aKE" = ( /obj/structure/table/reinforced, /obj/structure/extinguisher_cabinet{ pixel_x = 25; @@ -21294,7 +21284,7 @@ }, /turf/simulated/floor/tiled/dark, /area/ai_monitored/storage/eva) -"aKG" = ( +"aKF" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/cable{ d1 = 1; @@ -21305,7 +21295,7 @@ /obj/structure/disposalpipe/segment, /turf/simulated/floor/plating, /area/maintenance/engineering) -"aKH" = ( +"aKG" = ( /obj/structure/filingcabinet, /obj/machinery/recharger/wallcharger{ pixel_x = -24; @@ -21317,48 +21307,48 @@ }, /turf/simulated/floor/tiled/dark, /area/crew_quarters/heads/hos) -"aKI" = ( +"aKH" = ( /turf/simulated/floor/carpet, /area/crew_quarters/heads/hos) -"aKJ" = ( +"aKI" = ( /obj/structure/table/wood, /turf/simulated/floor/carpet, /area/crew_quarters/heads/hos) -"aKK" = ( +"aKJ" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 5 }, /turf/simulated/floor/carpet, /area/crew_quarters/heads/hos) -"aKL" = ( +"aKK" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 }, /turf/simulated/floor/tiled/dark, /area/crew_quarters/heads/hos) -"aKM" = ( +"aKL" = ( /obj/machinery/atmospherics/unary/vent_scrubber/on{ dir = 8 }, /turf/simulated/floor/tiled/dark, /area/crew_quarters/heads/hos) -"aKN" = ( +"aKM" = ( /obj/structure/table/wood, /obj/item/weapon/reagent_containers/food/drinks/flask/barflask, /obj/item/device/flashlight/heavy, /turf/simulated/floor/tiled/dark, /area/crew_quarters/heads/hos) -"aKO" = ( +"aKN" = ( /obj/machinery/newscaster{ pixel_x = -27 }, /turf/simulated/floor/tiled, /area/security/lobby) -"aKP" = ( +"aKO" = ( /turf/simulated/floor/tiled, /area/security/lobby) -"aKQ" = ( +"aKP" = ( /obj/effect/floor_decal/corner/blue{ icon_state = "corner_white"; dir = 9 @@ -21369,7 +21359,7 @@ }, /turf/simulated/floor/tiled, /area/security/lobby) -"aKR" = ( +"aKQ" = ( /obj/structure/table/reinforced/steel, /obj/machinery/door/firedoor, /obj/effect/floor_decal/industrial/hatch/yellow, @@ -21386,7 +21376,7 @@ }, /turf/simulated/floor/tiled, /area/security/brig) -"aKS" = ( +"aKR" = ( /obj/structure/bed/chair/office/dark{ dir = 8 }, @@ -21413,7 +21403,7 @@ }, /turf/simulated/floor/tiled, /area/security/brig) -"aKT" = ( +"aKS" = ( /obj/structure/cable/green{ d1 = 4; d2 = 8; @@ -21424,7 +21414,7 @@ }, /turf/simulated/floor/tiled, /area/security/brig) -"aKU" = ( +"aKT" = ( /obj/structure/cable/green{ d1 = 1; d2 = 8; @@ -21436,14 +21426,14 @@ }, /turf/simulated/floor/tiled, /area/security/brig) -"aKV" = ( +"aKU" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/structure/disposalpipe/segment{ dir = 4 }, /turf/simulated/floor/tiled, /area/security/brig) -"aKW" = ( +"aKV" = ( /obj/effect/floor_decal/corner/blue{ icon_state = "corner_white"; dir = 6 @@ -21458,7 +21448,7 @@ }, /turf/simulated/floor/tiled, /area/security/brig) -"aKX" = ( +"aKW" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/machinery/computer/cryopod{ @@ -21466,15 +21456,15 @@ }, /turf/simulated/floor/tiled, /area/security/prison) -"aKY" = ( +"aKX" = ( /obj/machinery/atmospherics/pipe/simple/hidden, /turf/simulated/floor/tiled, /area/security/prison) -"aKZ" = ( +"aKY" = ( /obj/machinery/hologram/holopad, /turf/simulated/floor/tiled, /area/security/prison) -"aLa" = ( +"aKZ" = ( /obj/machinery/door/blast/regular{ dir = 4; id = "Cell 4"; @@ -21484,7 +21474,7 @@ /obj/machinery/door/firedoor, /turf/simulated/floor/tiled, /area/security/prison) -"aLb" = ( +"aLa" = ( /obj/machinery/door/firedoor, /obj/machinery/door/blast/regular{ density = 0; @@ -21508,7 +21498,7 @@ /obj/effect/floor_decal/industrial/hatch/yellow, /turf/simulated/floor/tiled, /area/security/prison) -"aLc" = ( +"aLb" = ( /obj/structure/grille, /obj/structure/window/reinforced, /obj/structure/window/reinforced{ @@ -21535,7 +21525,7 @@ }, /turf/simulated/floor/plating, /area/security/brig) -"aLd" = ( +"aLc" = ( /obj/machinery/light{ dir = 8; icon_state = "tube1"; @@ -21543,7 +21533,7 @@ }, /turf/simulated/floor/tiled, /area/hallway/primary/starboard) -"aLe" = ( +"aLd" = ( /obj/structure/cable{ d1 = 2; d2 = 4; @@ -21557,7 +21547,7 @@ }, /turf/simulated/floor/tiled, /area/hallway/primary/starboard) -"aLf" = ( +"aLe" = ( /obj/structure/cable{ d1 = 4; d2 = 8; @@ -21571,21 +21561,21 @@ }, /turf/simulated/floor/tiled, /area/hallway/primary/starboard) +"aLf" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/hallway/primary/starboard) "aLg" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/hallway/primary/starboard) -"aLh" = ( /obj/structure/cable{ d1 = 4; d2 = 8; @@ -21597,7 +21587,7 @@ /obj/machinery/atmospherics/pipe/manifold/hidden/supply, /turf/simulated/floor/tiled, /area/hallway/primary/starboard) -"aLi" = ( +"aLh" = ( /obj/structure/cable{ d1 = 1; d2 = 8; @@ -21616,7 +21606,7 @@ }, /turf/simulated/floor/tiled, /area/hallway/primary/starboard) -"aLj" = ( +"aLi" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, @@ -21628,7 +21618,7 @@ }, /turf/simulated/floor/tiled, /area/hallway/primary/starboard) -"aLk" = ( +"aLj" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, @@ -21640,7 +21630,7 @@ }, /turf/simulated/floor/tiled, /area/hallway/primary/starboard) -"aLl" = ( +"aLk" = ( /obj/machinery/door/firedoor, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 @@ -21653,7 +21643,7 @@ }, /turf/simulated/floor/tiled, /area/hallway/primary/starboard) -"aLm" = ( +"aLl" = ( /obj/structure/cable/green{ d1 = 2; d2 = 4; @@ -21670,7 +21660,7 @@ }, /turf/simulated/floor/tiled, /area/hallway/primary/starboard) -"aLn" = ( +"aLm" = ( /obj/structure/cable/green{ d1 = 4; d2 = 8; @@ -21687,7 +21677,7 @@ }, /turf/simulated/floor/tiled, /area/hallway/primary/starboard) -"aLo" = ( +"aLn" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, @@ -21713,7 +21703,7 @@ }, /turf/simulated/floor/tiled, /area/hallway/primary/starboard) -"aLp" = ( +"aLo" = ( /obj/machinery/hologram/holopad, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 @@ -21731,7 +21721,7 @@ }, /turf/simulated/floor/tiled, /area/hallway/primary/starboard) -"aLq" = ( +"aLp" = ( /obj/structure/disposalpipe/junction/yjunction{ icon_state = "pipe-y"; dir = 8 @@ -21760,7 +21750,7 @@ }, /turf/simulated/floor/tiled, /area/hallway/primary/starboard) -"aLr" = ( +"aLq" = ( /obj/effect/floor_decal/industrial/hatch/yellow, /obj/machinery/door/blast/regular{ density = 0; @@ -21772,7 +21762,7 @@ }, /turf/simulated/floor/tiled, /area/bridge) -"aLs" = ( +"aLr" = ( /obj/machinery/computer/guestpass{ pixel_x = -32 }, @@ -21784,12 +21774,12 @@ /obj/effect/floor_decal/corner/paleblue/diagonal, /turf/simulated/floor/tiled/white, /area/bridge) -"aLt" = ( +"aLs" = ( /obj/effect/floor_decal/corner/paleblue/diagonal, /obj/structure/disposalpipe/segment, /turf/simulated/floor/tiled/white, /area/bridge) -"aLu" = ( +"aLt" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 6 }, @@ -21808,7 +21798,7 @@ /obj/effect/floor_decal/corner/paleblue/diagonal, /turf/simulated/floor/tiled/white, /area/bridge) -"aLv" = ( +"aLu" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 }, @@ -21826,7 +21816,7 @@ /obj/effect/floor_decal/corner/paleblue/diagonal, /turf/simulated/floor/tiled/white, /area/bridge) -"aLw" = ( +"aLv" = ( /obj/machinery/atmospherics/pipe/manifold/hidden/supply, /obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, /obj/structure/cable/green{ @@ -21845,7 +21835,7 @@ /obj/effect/floor_decal/corner/paleblue/diagonal, /turf/simulated/floor/tiled/white, /area/bridge) -"aLx" = ( +"aLw" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, @@ -21863,7 +21853,7 @@ /obj/effect/floor_decal/corner/paleblue/diagonal, /turf/simulated/floor/tiled/white, /area/bridge) -"aLy" = ( +"aLx" = ( /obj/structure/cable/green{ d1 = 4; d2 = 8; @@ -21886,30 +21876,30 @@ }, /turf/simulated/floor/tiled/white, /area/bridge) +"aLy" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/floor_decal/corner/paleblue/diagonal, +/obj/structure/cable/green{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/turf/simulated/floor/tiled/white, +/area/bridge) "aLz" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/floor_decal/corner/paleblue/diagonal, -/obj/structure/cable/green{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/turf/simulated/floor/tiled/white, -/area/bridge) -"aLA" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, @@ -21928,7 +21918,7 @@ /obj/effect/floor_decal/corner/paleblue/diagonal, /turf/simulated/floor/tiled/white, /area/bridge) -"aLB" = ( +"aLA" = ( /obj/machinery/hologram/holopad, /obj/machinery/atmospherics/pipe/manifold/hidden/supply{ dir = 4 @@ -21953,7 +21943,7 @@ /obj/effect/floor_decal/corner/paleblue/diagonal, /turf/simulated/floor/tiled/white, /area/bridge) -"aLC" = ( +"aLB" = ( /obj/machinery/light{ dir = 4; icon_state = "tube1"; @@ -21962,7 +21952,7 @@ /obj/structure/table/wood, /turf/simulated/floor/tiled, /area/bridge) -"aLD" = ( +"aLC" = ( /obj/machinery/door/firedoor, /obj/structure/grille, /obj/structure/window/reinforced/polarized{ @@ -21979,7 +21969,7 @@ }, /turf/simulated/floor/plating, /area/crew_quarters/captain) -"aLE" = ( +"aLD" = ( /obj/structure/table/wood, /obj/structure/cable/green{ d1 = 2; @@ -21996,12 +21986,12 @@ }, /turf/simulated/floor/carpet, /area/crew_quarters/captain) -"aLF" = ( +"aLE" = ( /obj/structure/table/wood, /obj/item/weapon/storage/box/donut, /turf/simulated/floor/carpet, /area/crew_quarters/captain) -"aLG" = ( +"aLF" = ( /obj/structure/cable/green{ d1 = 1; d2 = 2; @@ -22010,16 +22000,16 @@ /obj/machinery/atmospherics/unary/vent_pump/on, /turf/simulated/floor/wood, /area/crew_quarters/captain) -"aLH" = ( +"aLG" = ( /turf/simulated/floor/wood, /area/crew_quarters/captain) -"aLI" = ( +"aLH" = ( /obj/structure/table/wood, /obj/item/weapon/folder/blue, /obj/item/weapon/stamp/captain, /turf/simulated/floor/carpet, /area/crew_quarters/captain) -"aLJ" = ( +"aLI" = ( /obj/structure/bed/chair/office/bridge{ icon_state = "bridge"; dir = 8 @@ -22047,7 +22037,7 @@ }, /turf/simulated/floor/carpet, /area/crew_quarters/captain) -"aLK" = ( +"aLJ" = ( /obj/machinery/photocopier, /obj/machinery/camera/network/command{ c_tag = "Bridge - Captain's Office East"; @@ -22059,48 +22049,48 @@ }, /turf/simulated/floor/carpet, /area/crew_quarters/captain) -"aLL" = ( +"aLK" = ( /obj/machinery/atmospherics/pipe/simple/visible/black{ dir = 5 }, /turf/simulated/floor/plating, /area/engineering/engine_room) -"aLM" = ( +"aLL" = ( /obj/machinery/atmospherics/pipe/simple/visible/black{ dir = 4 }, /turf/simulated/floor/plating, /area/engineering/engine_room) -"aLN" = ( +"aLM" = ( /obj/machinery/atmospherics/pipe/manifold/visible/black, /turf/simulated/floor/plating, /area/engineering/engine_room) -"aLO" = ( +"aLN" = ( /obj/machinery/atmospherics/pipe/simple/visible/black{ dir = 10 }, /obj/machinery/meter, /turf/simulated/floor/plating, /area/engineering/engine_room) -"aLP" = ( +"aLO" = ( /obj/machinery/atmospherics/binary/pump/high_power{ icon_state = "map_off"; dir = 1 }, /turf/simulated/floor/plating, /area/engineering/engine_room) -"aLQ" = ( +"aLP" = ( /obj/structure/closet/walllocker/emerglocker/south, /turf/simulated/floor/plating, /area/engineering/engine_room) -"aLR" = ( +"aLQ" = ( /obj/structure/closet/hydrant{ pixel_x = 0; pixel_y = -32 }, /turf/simulated/floor/plating, /area/engineering/engine_room) -"aLS" = ( +"aLR" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/structure/cable{ @@ -22113,7 +22103,7 @@ }, /turf/simulated/floor/plating, /area/maintenance/research_port) -"aLT" = ( +"aLS" = ( /obj/random/junk, /obj/effect/floor_decal/industrial/warning/corner{ icon_state = "warningcorner"; @@ -22124,7 +22114,7 @@ }, /turf/simulated/floor/plating, /area/maintenance/research_port) -"aLU" = ( +"aLT" = ( /obj/machinery/light/small/emergency{ icon_state = "bulb1"; dir = 4 @@ -22134,7 +22124,7 @@ }, /turf/simulated/floor/plating, /area/maintenance/research_port) -"aLV" = ( +"aLU" = ( /obj/structure/table/rack, /obj/random/loot, /obj/machinery/light/small/emergency{ @@ -22142,14 +22132,14 @@ }, /turf/simulated/floor/plating, /area/maintenance/research_port) -"aLW" = ( +"aLV" = ( /obj/structure/reagent_dispensers/fueltank, /turf/simulated/floor/plating, /area/maintenance/research_port) -"aLX" = ( +"aLW" = ( /turf/simulated/wall/r_wall, /area/crew_quarters/heads/chief) -"aLY" = ( +"aLX" = ( /obj/structure/table/rack, /obj/item/weapon/rig/ce/equipped, /obj/item/clothing/mask/breath, @@ -22163,7 +22153,7 @@ }, /turf/simulated/floor/tiled, /area/crew_quarters/heads/chief) -"aLZ" = ( +"aLY" = ( /obj/structure/table/reinforced, /obj/item/weapon/rcd_ammo, /obj/item/weapon/rcd_ammo, @@ -22182,7 +22172,7 @@ /obj/effect/floor_decal/industrial/hatch/yellow, /turf/simulated/floor/tiled, /area/crew_quarters/heads/chief) -"aMa" = ( +"aLZ" = ( /obj/structure/window/reinforced{ icon_state = "rwindow"; dir = 4 @@ -22194,7 +22184,7 @@ /mob/living/bot/floorbot/floorbob, /turf/simulated/floor/tiled, /area/crew_quarters/heads/chief) -"aMb" = ( +"aMa" = ( /obj/machinery/power/apc/high{ dir = 1; name = "north bump"; @@ -22206,7 +22196,7 @@ }, /turf/simulated/floor/wood, /area/crew_quarters/heads/chief) -"aMc" = ( +"aMb" = ( /obj/machinery/light{ icon_state = "tube1"; dir = 1 @@ -22215,14 +22205,14 @@ /obj/machinery/firealarm/north, /turf/simulated/floor/wood, /area/crew_quarters/heads/chief) -"aMd" = ( +"aMc" = ( /obj/machinery/alarm{ pixel_y = 22 }, /obj/machinery/papershredder, /turf/simulated/floor/wood, /area/crew_quarters/heads/chief) -"aMe" = ( +"aMd" = ( /obj/machinery/disposal, /obj/structure/disposalpipe/trunk, /obj/item/device/radio/intercom{ @@ -22231,7 +22221,7 @@ }, /turf/simulated/floor/wood, /area/crew_quarters/heads/chief) -"aMf" = ( +"aMe" = ( /obj/structure/cable/green{ d2 = 2; icon_state = "0-2" @@ -22252,7 +22242,7 @@ }, /turf/simulated/floor/plating, /area/crew_quarters/heads/chief) -"aMg" = ( +"aMf" = ( /obj/structure/cable{ d1 = 1; d2 = 2; @@ -22268,7 +22258,7 @@ }, /turf/simulated/floor/tiled, /area/engineering/foyer) -"aMh" = ( +"aMg" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 }, @@ -22277,7 +22267,7 @@ }, /turf/simulated/floor/tiled, /area/engineering/foyer) -"aMi" = ( +"aMh" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ icon_state = "intact-supply"; dir = 9 @@ -22288,11 +22278,11 @@ }, /turf/simulated/floor/tiled, /area/engineering/foyer) -"aMj" = ( +"aMi" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/tiled, /area/engineering/foyer) -"aMk" = ( +"aMj" = ( /obj/machinery/light{ dir = 4 }, @@ -22304,28 +22294,28 @@ /obj/item/weapon/pen, /turf/simulated/floor/tiled, /area/engineering/foyer) -"aMl" = ( +"aMk" = ( /obj/machinery/light/small{ dir = 8 }, /obj/effect/floor_decal/corner/blue/full, /turf/simulated/floor/tiled/dark, /area/ai_monitored/storage/eva) -"aMm" = ( +"aMl" = ( /obj/machinery/door/airlock/glass_engineering{ name = "Engineering Voidsuits"; req_one_access = list(11,24) }, /turf/simulated/floor/tiled/dark, /area/ai_monitored/storage/eva) -"aMn" = ( +"aMm" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/effect/floor_decal/corner/blue/diagonal, /obj/machinery/hologram/holopad, /turf/simulated/floor/tiled/dark, /area/ai_monitored/storage/eva) -"aMo" = ( +"aMn" = ( /obj/item/weapon/storage/briefcase/inflatable{ pixel_x = 3; pixel_y = 6 @@ -22339,7 +22329,7 @@ /obj/structure/table/reinforced, /turf/simulated/floor/tiled/dark, /area/ai_monitored/storage/eva) -"aMp" = ( +"aMo" = ( /obj/structure/grille, /obj/structure/window/reinforced{ dir = 8 @@ -22356,7 +22346,7 @@ }, /turf/simulated/floor/tiled/dark, /area/ai_monitored/storage/eva) -"aMq" = ( +"aMp" = ( /obj/structure/table/rack{ dir = 8; layer = 2.9 @@ -22366,7 +22356,7 @@ /obj/item/device/suit_cooling_unit, /turf/simulated/floor/tiled/dark, /area/ai_monitored/storage/eva) -"aMr" = ( +"aMq" = ( /obj/structure/table/rack{ dir = 8; layer = 2.9 @@ -22380,7 +22370,7 @@ /obj/item/device/suit_cooling_unit, /turf/simulated/floor/tiled/dark, /area/ai_monitored/storage/eva) -"aMs" = ( +"aMr" = ( /obj/machinery/computer/secure_data, /obj/structure/sign/goldenplaque{ pixel_x = -32 @@ -22396,7 +22386,7 @@ }, /turf/simulated/floor/tiled/dark, /area/crew_quarters/heads/hos) -"aMt" = ( +"aMs" = ( /obj/structure/bed/chair/comfy/red{ dir = 4 }, @@ -22428,7 +22418,7 @@ }, /turf/simulated/floor/carpet, /area/crew_quarters/heads/hos) -"aMu" = ( +"aMt" = ( /obj/structure/table/wood, /obj/item/weapon/folder/sec, /obj/item/weapon/pen/blue{ @@ -22441,21 +22431,21 @@ }, /turf/simulated/floor/carpet, /area/crew_quarters/heads/hos) -"aMv" = ( +"aMu" = ( /obj/structure/bed/chair/comfy/black{ dir = 8 }, /obj/machinery/atmospherics/pipe/simple/hidden/supply, /turf/simulated/floor/carpet, /area/crew_quarters/heads/hos) -"aMw" = ( +"aMv" = ( /obj/machinery/hologram/holopad, /turf/simulated/floor/tiled/dark, /area/crew_quarters/heads/hos) -"aMx" = ( +"aMw" = ( /turf/simulated/floor/tiled/dark, /area/crew_quarters/heads/hos) -"aMy" = ( +"aMx" = ( /obj/structure/table/wood, /obj/item/device/megaphone, /obj/item/device/radio, @@ -22470,7 +22460,7 @@ }, /turf/simulated/floor/tiled/dark, /area/crew_quarters/heads/hos) -"aMz" = ( +"aMy" = ( /obj/structure/bed/chair{ dir = 4 }, @@ -22480,7 +22470,7 @@ }, /turf/simulated/floor/tiled, /area/security/lobby) -"aMA" = ( +"aMz" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/effect/floor_decal/corner/blue{ @@ -22494,7 +22484,7 @@ }, /turf/simulated/floor/tiled, /area/security/lobby) -"aMB" = ( +"aMA" = ( /obj/structure/table/reinforced/steel, /obj/machinery/door/firedoor, /obj/effect/floor_decal/industrial/hatch/yellow, @@ -22511,7 +22501,7 @@ }, /turf/simulated/floor/tiled, /area/security/brig) -"aMC" = ( +"aMB" = ( /obj/structure/bed/chair/office/dark{ dir = 8 }, @@ -22532,11 +22522,11 @@ }, /turf/simulated/floor/tiled, /area/security/brig) -"aMD" = ( +"aMC" = ( /obj/structure/bed/chair/office/dark, /turf/simulated/floor/tiled, /area/security/brig) -"aME" = ( +"aMD" = ( /obj/effect/floor_decal/corner/blue{ icon_state = "corner_white"; dir = 6 @@ -22548,28 +22538,28 @@ }, /turf/simulated/floor/tiled, /area/security/brig) -"aMF" = ( +"aME" = ( /obj/machinery/light/small{ dir = 1 }, /turf/simulated/floor/tiled/freezer, /area/security/prison) -"aMG" = ( +"aMF" = ( /obj/machinery/door/airlock{ desc = "It opens and closes. A repulsive smell eminates from the door."; name = "Brig Toilet" }, /turf/simulated/floor/tiled/freezer, /area/security/prison) -"aMH" = ( +"aMG" = ( /turf/simulated/floor/tiled/freezer, /area/security/prison) -"aMI" = ( +"aMH" = ( /obj/item/toy/figure/warden, /obj/machinery/atmospherics/unary/vent_scrubber/on, /turf/simulated/floor/tiled/freezer, /area/security/prison) -"aMJ" = ( +"aMI" = ( /obj/machinery/shower{ dir = 8; icon_state = "shower"; @@ -22580,41 +22570,41 @@ /obj/structure/curtain/open/shower, /turf/simulated/floor/tiled/freezer, /area/security/prison) -"aMK" = ( +"aMJ" = ( /obj/structure/cryofeed{ icon_state = "cryo_rear"; dir = 4 }, /turf/simulated/floor/tiled/white, /area/security/prison) -"aML" = ( +"aMK" = ( /obj/machinery/cryopod{ icon_state = "body_scanner_0"; dir = 4 }, /turf/simulated/floor/tiled/white, /area/security/prison) -"aMM" = ( +"aML" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ dir = 8 }, /turf/simulated/floor/tiled, /area/security/prison) -"aMN" = ( +"aMM" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 }, /obj/machinery/atmospherics/pipe/simple/hidden, /turf/simulated/floor/tiled, /area/security/prison) -"aMO" = ( +"aMN" = ( /obj/machinery/atmospherics/unary/vent_scrubber/on{ dir = 8 }, /turf/simulated/floor/tiled, /area/security/prison) -"aMP" = ( +"aMO" = ( /obj/machinery/flasher{ id = "permflash"; name = "Floor mounted flash"; @@ -22633,7 +22623,7 @@ /obj/effect/floor_decal/industrial/hatch/yellow, /turf/simulated/floor/tiled, /area/security/prison) -"aMQ" = ( +"aMP" = ( /obj/structure/closet/secure_closet/brig{ id = "Cell 4"; name = "Cell 4 Locker" @@ -22644,7 +22634,7 @@ }, /turf/simulated/floor/tiled, /area/security/prison) -"aMR" = ( +"aMQ" = ( /obj/structure/bed, /obj/machinery/atmospherics/unary/vent_pump/on{ dir = 1 @@ -22655,7 +22645,7 @@ }, /turf/simulated/floor/tiled, /area/security/prison) -"aMS" = ( +"aMR" = ( /obj/structure/cable/green{ d1 = 1; d2 = 4; @@ -22679,7 +22669,7 @@ }, /turf/simulated/floor/tiled, /area/security/brig) -"aMT" = ( +"aMS" = ( /obj/structure/cable/green{ d1 = 4; d2 = 8; @@ -22687,7 +22677,7 @@ }, /turf/simulated/floor/tiled, /area/security/brig) -"aMU" = ( +"aMT" = ( /obj/machinery/door/firedoor, /obj/machinery/door/airlock/glass_security{ id_tag = ""; @@ -22715,7 +22705,7 @@ }, /turf/simulated/floor/tiled, /area/security/brig) -"aMV" = ( +"aMU" = ( /obj/structure/cable/green{ d1 = 2; d2 = 8; @@ -22727,7 +22717,7 @@ }, /turf/simulated/floor/tiled, /area/hallway/primary/starboard) -"aMW" = ( +"aMV" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/structure/cable{ @@ -22738,20 +22728,20 @@ }, /turf/simulated/floor/tiled, /area/hallway/primary/starboard) -"aMX" = ( +"aMW" = ( /obj/machinery/navbeacon{ codes_txt = "patrol;next_patrol=Com"; location = "S2" }, /turf/simulated/floor/tiled, /area/hallway/primary/starboard) -"aMY" = ( +"aMX" = ( /obj/item/device/radio/intercom{ pixel_y = -27 }, /turf/simulated/floor/tiled, /area/hallway/primary/starboard) -"aMZ" = ( +"aMY" = ( /obj/effect/floor_decal/corner/blue{ dir = 10 }, @@ -22761,15 +22751,15 @@ }, /turf/simulated/floor/tiled, /area/hallway/primary/starboard) -"aNa" = ( +"aMZ" = ( /obj/machinery/light, /turf/simulated/floor/tiled, /area/hallway/primary/starboard) -"aNb" = ( +"aNa" = ( /obj/effect/floor_decal/industrial/warning/corner, /turf/simulated/floor/tiled, /area/hallway/primary/starboard) -"aNc" = ( +"aNb" = ( /obj/structure/disposalpipe/segment, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/machinery/atmospherics/pipe/simple/hidden/supply, @@ -22781,11 +22771,11 @@ }, /turf/simulated/floor/tiled, /area/hallway/primary/starboard) -"aNd" = ( +"aNc" = ( /obj/effect/floor_decal/industrial/warning, /turf/simulated/floor/tiled, /area/hallway/primary/starboard) -"aNe" = ( +"aNd" = ( /obj/machinery/atmospherics/unary/vent_scrubber/on{ dir = 1 }, @@ -22801,18 +22791,18 @@ }, /turf/simulated/floor/tiled, /area/hallway/primary/starboard) -"aNf" = ( +"aNe" = ( /obj/machinery/status_display{ pixel_x = 0; pixel_y = -32 }, /turf/simulated/floor/tiled, /area/hallway/primary/starboard) -"aNg" = ( +"aNf" = ( /obj/machinery/firealarm/south, /turf/simulated/floor/tiled, /area/hallway/primary/starboard) -"aNh" = ( +"aNg" = ( /obj/structure/cable/green{ d1 = 1; d2 = 2; @@ -22822,7 +22812,7 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/tiled, /area/hallway/primary/starboard) -"aNi" = ( +"aNh" = ( /obj/structure/cable/green{ d1 = 1; d2 = 2; @@ -22830,7 +22820,7 @@ }, /turf/simulated/floor/tiled, /area/hallway/primary/starboard) -"aNj" = ( +"aNi" = ( /obj/structure/disposalpipe/segment, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 5 @@ -22845,7 +22835,7 @@ }, /turf/simulated/floor/tiled, /area/hallway/primary/starboard) -"aNk" = ( +"aNj" = ( /obj/machinery/door/airlock/glass_command{ id_tag = "sbridgedoor"; name = "Bridge"; @@ -22865,7 +22855,7 @@ }, /turf/simulated/floor/tiled, /area/bridge) -"aNl" = ( +"aNk" = ( /obj/effect/floor_decal/industrial/hatch/yellow, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 @@ -22888,7 +22878,7 @@ }, /turf/simulated/floor/tiled, /area/bridge) -"aNm" = ( +"aNl" = ( /obj/structure/cable/green{ d1 = 4; d2 = 8; @@ -22906,7 +22896,7 @@ }, /turf/simulated/floor/tiled, /area/bridge) -"aNn" = ( +"aNm" = ( /obj/structure/cable/green{ d1 = 4; d2 = 8; @@ -22925,7 +22915,7 @@ }, /turf/simulated/floor/tiled, /area/bridge) -"aNo" = ( +"aNn" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, @@ -22944,7 +22934,7 @@ /obj/machinery/firealarm/south, /turf/simulated/floor/tiled, /area/bridge) -"aNp" = ( +"aNo" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 9; pixel_y = 0 @@ -22963,7 +22953,7 @@ }, /turf/simulated/floor/tiled, /area/bridge) -"aNq" = ( +"aNp" = ( /obj/machinery/atmospherics/unary/vent_pump/on{ dir = 1 }, @@ -22973,7 +22963,7 @@ }, /turf/simulated/floor/tiled, /area/bridge) -"aNr" = ( +"aNq" = ( /obj/effect/floor_decal/corner/paleblue{ icon_state = "corner_white"; dir = 5 @@ -22981,14 +22971,14 @@ /obj/machinery/light, /turf/simulated/floor/tiled, /area/bridge) -"aNs" = ( +"aNr" = ( /obj/effect/floor_decal/corner/paleblue{ icon_state = "corner_white"; dir = 5 }, /turf/simulated/floor/tiled, /area/bridge) -"aNt" = ( +"aNs" = ( /obj/effect/floor_decal/corner/paleblue{ icon_state = "corner_white"; dir = 5 @@ -23000,7 +22990,7 @@ /obj/item/stack/medical/ointment, /turf/simulated/floor/tiled, /area/bridge) -"aNu" = ( +"aNt" = ( /obj/effect/floor_decal/corner/paleblue/full{ icon_state = "corner_white_full"; dir = 1 @@ -23008,7 +22998,7 @@ /obj/structure/disposalpipe/segment, /turf/simulated/floor/tiled, /area/bridge) -"aNv" = ( +"aNu" = ( /obj/structure/cable/green{ d1 = 1; d2 = 2; @@ -23019,13 +23009,13 @@ /obj/machinery/atmospherics/pipe/simple/hidden/supply, /turf/simulated/floor/tiled/white, /area/bridge) -"aNw" = ( +"aNv" = ( /obj/structure/bed/chair/comfy/brown{ dir = 8 }, /turf/simulated/floor/tiled, /area/bridge) -"aNx" = ( +"aNw" = ( /obj/machinery/door/firedoor, /obj/structure/grille, /obj/structure/window/reinforced/polarized{ @@ -23045,7 +23035,7 @@ }, /turf/simulated/floor/plating, /area/crew_quarters/captain) -"aNy" = ( +"aNx" = ( /obj/structure/bed/chair/comfy/brown{ dir = 1 }, @@ -23061,13 +23051,13 @@ }, /turf/simulated/floor/carpet, /area/crew_quarters/captain) -"aNz" = ( +"aNy" = ( /obj/structure/bed/chair/comfy/brown{ dir = 1 }, /turf/simulated/floor/carpet, /area/crew_quarters/captain) -"aNA" = ( +"aNz" = ( /obj/structure/cable/green{ d1 = 1; d2 = 2; @@ -23076,20 +23066,20 @@ /obj/machinery/atmospherics/pipe/simple/hidden/supply, /turf/simulated/floor/wood, /area/crew_quarters/captain) -"aNB" = ( +"aNA" = ( /obj/machinery/hologram/holopad, /turf/simulated/floor/wood, /area/crew_quarters/captain) -"aNC" = ( +"aNB" = ( /obj/structure/table/wood, /obj/item/weapon/book/manual/security_space_law, /turf/simulated/floor/carpet, /area/crew_quarters/captain) -"aND" = ( +"aNC" = ( /obj/item/modular_computer/console/preset/captain, /turf/simulated/floor/carpet, /area/crew_quarters/captain) -"aNE" = ( +"aND" = ( /obj/structure/table/wood, /obj/item/device/megaphone, /obj/structure/cable/green{ @@ -23099,17 +23089,17 @@ }, /turf/simulated/floor/carpet, /area/crew_quarters/captain) -"aNF" = ( +"aNE" = ( /obj/machinery/atmospherics/pipe/simple/visible/black, /obj/effect/floor_decal/industrial/warning, /turf/simulated/floor/plating, /area/engineering/engine_room) -"aNG" = ( +"aNF" = ( /obj/machinery/atmospherics/pipe/simple/visible/green, /obj/effect/floor_decal/industrial/warning, /turf/simulated/floor/plating, /area/engineering/engine_room) -"aNH" = ( +"aNG" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 5 }, @@ -23123,7 +23113,7 @@ }, /turf/simulated/floor/plating, /area/maintenance/research_port) -"aNI" = ( +"aNH" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 }, @@ -23137,7 +23127,7 @@ }, /turf/simulated/floor/plating, /area/maintenance/research_port) -"aNJ" = ( +"aNI" = ( /obj/machinery/atmospherics/pipe/manifold/hidden/supply, /obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, /obj/structure/cable{ @@ -23152,7 +23142,7 @@ }, /turf/simulated/floor/plating, /area/maintenance/research_port) -"aNK" = ( +"aNJ" = ( /obj/machinery/door/airlock/maintenance_hatch{ req_access = list(12) }, @@ -23170,7 +23160,7 @@ /obj/machinery/door/firedoor, /turf/simulated/floor/plating, /area/maintenance/research_port) -"aNL" = ( +"aNK" = ( /obj/structure/cable{ d1 = 4; d2 = 8; @@ -23184,7 +23174,7 @@ }, /turf/simulated/floor/plating, /area/maintenance/research_port) -"aNM" = ( +"aNL" = ( /obj/structure/cable{ d1 = 1; d2 = 2; @@ -23201,7 +23191,7 @@ }, /turf/simulated/floor/plating, /area/maintenance/research_port) -"aNN" = ( +"aNM" = ( /obj/machinery/requests_console{ announcementConsole = 1; department = "Chief Engineer's Desk"; @@ -23212,10 +23202,10 @@ }, /turf/simulated/floor/wood, /area/crew_quarters/heads/chief) -"aNO" = ( +"aNN" = ( /turf/simulated/floor/wood, /area/crew_quarters/heads/chief) -"aNP" = ( +"aNO" = ( /obj/structure/cable/green{ d1 = 1; d2 = 2; @@ -23223,15 +23213,15 @@ }, /turf/simulated/floor/wood, /area/crew_quarters/heads/chief) -"aNQ" = ( +"aNP" = ( /obj/machinery/atmospherics/unary/vent_scrubber/on, /turf/simulated/floor/wood, /area/crew_quarters/heads/chief) -"aNR" = ( +"aNQ" = ( /obj/structure/disposalpipe/segment, /turf/simulated/floor/wood, /area/crew_quarters/heads/chief) -"aNS" = ( +"aNR" = ( /obj/structure/cable/green{ d1 = 1; d2 = 2; @@ -23253,7 +23243,7 @@ }, /turf/simulated/floor/plating, /area/crew_quarters/heads/chief) -"aNT" = ( +"aNS" = ( /obj/structure/cable{ d1 = 1; d2 = 2; @@ -23264,20 +23254,20 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/tiled, /area/engineering/foyer) -"aNU" = ( +"aNT" = ( /obj/structure/disposalpipe/segment{ dir = 4; icon_state = "pipe-c" }, /turf/simulated/floor/tiled, /area/engineering/foyer) -"aNV" = ( +"aNU" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, /turf/simulated/floor/tiled, /area/engineering/foyer) -"aNW" = ( +"aNV" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, @@ -23288,7 +23278,7 @@ }, /turf/simulated/floor/tiled, /area/engineering/foyer) -"aNX" = ( +"aNW" = ( /obj/structure/disposalpipe/sortjunction/flipped{ dir = 8; name = "Engineering Break Room"; @@ -23296,20 +23286,20 @@ }, /turf/simulated/floor/tiled, /area/engineering/foyer) -"aNY" = ( +"aNX" = ( /obj/structure/disposalpipe/segment{ dir = 8; icon_state = "pipe-c" }, /turf/simulated/floor/tiled, /area/engineering/foyer) -"aNZ" = ( +"aNY" = ( /obj/machinery/atmospherics/unary/vent_scrubber/on{ dir = 1 }, /turf/simulated/floor/tiled, /area/engineering/foyer) -"aOa" = ( +"aNZ" = ( /obj/item/device/radio/intercom{ dir = 0; name = "Station Intercom (General)"; @@ -23317,7 +23307,7 @@ }, /turf/simulated/floor/tiled, /area/engineering/foyer) -"aOb" = ( +"aOa" = ( /obj/item/device/radio/intercom{ frequency = 1459; name = "Station Intercom (General)"; @@ -23333,7 +23323,7 @@ }, /turf/simulated/floor/tiled/dark, /area/ai_monitored/storage/eva) -"aOc" = ( +"aOb" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, @@ -23343,7 +23333,7 @@ }, /turf/simulated/floor/tiled/dark, /area/ai_monitored/storage/eva) -"aOd" = ( +"aOc" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/machinery/atmospherics/pipe/manifold/hidden/supply{ dir = 4 @@ -23351,7 +23341,7 @@ /obj/effect/floor_decal/corner/blue/diagonal, /turf/simulated/floor/tiled/dark, /area/ai_monitored/storage/eva) -"aOe" = ( +"aOd" = ( /obj/machinery/door/firedoor, /obj/machinery/door/airlock/glass_command{ name = "E.V.A."; @@ -23359,23 +23349,23 @@ }, /turf/simulated/floor/tiled/dark, /area/ai_monitored/storage/eva) -"aOf" = ( +"aOe" = ( /obj/machinery/keycard_auth{ pixel_x = -28 }, /obj/item/modular_computer/console/preset/security, /turf/simulated/floor/tiled/dark, /area/crew_quarters/heads/hos) -"aOg" = ( +"aOf" = ( /obj/structure/table/wood, /obj/machinery/computer/skills, /turf/simulated/floor/carpet, /area/crew_quarters/heads/hos) -"aOh" = ( +"aOg" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /turf/simulated/floor/carpet, /area/crew_quarters/heads/hos) -"aOi" = ( +"aOh" = ( /obj/machinery/alarm{ dir = 8; icon_state = "alarm0"; @@ -23387,7 +23377,7 @@ }, /turf/simulated/floor/tiled/dark, /area/crew_quarters/heads/hos) -"aOj" = ( +"aOi" = ( /obj/structure/bed/chair{ dir = 4 }, @@ -23400,13 +23390,13 @@ }, /turf/simulated/floor/tiled, /area/security/lobby) -"aOk" = ( +"aOj" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, /turf/simulated/floor/tiled, /area/security/lobby) -"aOl" = ( +"aOk" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, @@ -23417,7 +23407,7 @@ }, /turf/simulated/floor/tiled, /area/security/lobby) -"aOm" = ( +"aOl" = ( /obj/machinery/hologram/holopad, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 @@ -23432,7 +23422,7 @@ }, /turf/simulated/floor/tiled, /area/security/lobby) -"aOn" = ( +"aOm" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ icon_state = "intact-supply"; dir = 9 @@ -23449,7 +23439,7 @@ }, /turf/simulated/floor/tiled, /area/security/lobby) -"aOo" = ( +"aOn" = ( /obj/machinery/door/firedoor, /obj/structure/grille, /obj/structure/window/reinforced, @@ -23479,7 +23469,7 @@ }, /turf/simulated/floor/plating, /area/security/brig) -"aOp" = ( +"aOo" = ( /obj/structure/cable/green{ d1 = 1; d2 = 8; @@ -23494,19 +23484,19 @@ /obj/item/modular_computer/console/preset/security, /turf/simulated/floor/tiled, /area/security/brig) -"aOq" = ( +"aOp" = ( /obj/machinery/computer/station_alert, /obj/machinery/firealarm/south, /turf/simulated/floor/tiled, /area/security/brig) -"aOr" = ( +"aOq" = ( /obj/machinery/papershredder, /obj/machinery/light_switch{ pixel_y = -23 }, /turf/simulated/floor/tiled, /area/security/brig) -"aOs" = ( +"aOr" = ( /obj/machinery/recharger/wallcharger{ pixel_y = -26 }, @@ -23516,7 +23506,7 @@ /obj/machinery/photocopier, /turf/simulated/floor/tiled, /area/security/brig) -"aOt" = ( +"aOs" = ( /obj/machinery/recharger/wallcharger{ pixel_y = -26 }, @@ -23527,7 +23517,7 @@ /obj/item/weapon/folder/sec, /turf/simulated/floor/tiled, /area/security/brig) -"aOu" = ( +"aOt" = ( /obj/effect/floor_decal/corner/blue/full{ icon_state = "corner_white_full"; dir = 4 @@ -23550,14 +23540,14 @@ /obj/item/weapon/pen, /turf/simulated/floor/tiled, /area/security/brig) -"aOv" = ( +"aOu" = ( /obj/structure/toilet/noose{ icon_state = "toilet00"; dir = 1 }, /turf/simulated/floor/tiled/freezer, /area/security/prison) -"aOw" = ( +"aOv" = ( /obj/structure/sink{ dir = 8; icon_state = "sink"; @@ -23575,11 +23565,11 @@ }, /turf/simulated/floor/tiled/freezer, /area/security/prison) -"aOx" = ( +"aOw" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/tiled/freezer, /area/security/prison) -"aOy" = ( +"aOx" = ( /obj/machinery/light{ dir = 8; icon_state = "tube1"; @@ -23591,12 +23581,12 @@ }, /turf/simulated/floor/tiled/white, /area/security/prison) -"aOz" = ( +"aOy" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/tiled, /area/security/prison) -"aOA" = ( +"aOz" = ( /obj/structure/window/reinforced, /obj/structure/table/standard, /obj/item/weapon/storage/box/donkpockets{ @@ -23606,26 +23596,26 @@ /obj/item/weapon/storage/box/donkpockets, /turf/simulated/floor/tiled, /area/security/prison) -"aOB" = ( +"aOA" = ( /obj/structure/window/reinforced, /obj/structure/table/standard, /obj/machinery/microwave, /turf/simulated/floor/tiled, /area/security/prison) -"aOC" = ( +"aOB" = ( /obj/structure/window/reinforced, /obj/structure/table/standard, /obj/item/weapon/paper_bin, /obj/item/weapon/pen, /turf/simulated/floor/tiled, /area/security/prison) -"aOD" = ( +"aOC" = ( /obj/machinery/newscaster{ pixel_x = 27 }, /turf/simulated/floor/tiled, /area/security/prison) -"aOE" = ( +"aOD" = ( /obj/structure/cable/green{ d1 = 1; d2 = 2; @@ -23644,7 +23634,7 @@ }, /turf/simulated/floor/tiled, /area/security/brig) -"aOF" = ( +"aOE" = ( /obj/machinery/atmospherics/unary/vent_pump/on{ dir = 8 }, @@ -23654,7 +23644,7 @@ }, /turf/simulated/floor/tiled, /area/security/brig) -"aOG" = ( +"aOF" = ( /obj/structure/cable/green{ d1 = 1; d2 = 2; @@ -23663,7 +23653,7 @@ /obj/structure/closet/walllocker/emerglocker/west, /turf/simulated/floor/tiled, /area/hallway/primary/starboard) -"aOH" = ( +"aOG" = ( /obj/structure/cable{ d1 = 1; d2 = 2; @@ -23674,10 +23664,10 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/tiled, /area/hallway/primary/starboard) -"aOI" = ( +"aOH" = ( /turf/simulated/wall, /area/store) -"aOJ" = ( +"aOI" = ( /obj/machinery/door/firedoor, /obj/structure/grille, /obj/structure/window/reinforced{ @@ -23690,7 +23680,7 @@ }, /turf/simulated/floor/plating, /area/store) -"aOK" = ( +"aOJ" = ( /obj/machinery/door/firedoor, /obj/structure/grille, /obj/structure/window/reinforced{ @@ -23702,7 +23692,7 @@ }, /turf/simulated/floor/plating, /area/store) -"aOL" = ( +"aOK" = ( /obj/machinery/door/blast/shutters{ id = "merch_shop"; name = "Merchandise Store" @@ -23719,7 +23709,7 @@ }, /turf/simulated/floor/tiled, /area/store) -"aOM" = ( +"aOL" = ( /obj/machinery/door/blast/shutters{ id = "merch_shop"; name = "Merchandise Store" @@ -23728,7 +23718,7 @@ /obj/effect/floor_decal/industrial/hatch/yellow, /turf/simulated/floor/tiled, /area/store) -"aON" = ( +"aOM" = ( /obj/machinery/door/airlock/maintenance{ req_access = list(12) }, @@ -23742,7 +23732,7 @@ /obj/machinery/door/firedoor, /turf/simulated/floor/plating, /area/hallway/primary/starboard) -"aOO" = ( +"aON" = ( /obj/machinery/disposal, /obj/structure/disposalpipe/trunk{ dir = 1 @@ -23754,10 +23744,10 @@ }, /turf/simulated/floor/tiled, /area/hallway/primary/starboard) -"aOP" = ( +"aOO" = ( /turf/simulated/wall/r_wall, /area/crew_quarters/heads/hop) -"aOQ" = ( +"aOP" = ( /obj/machinery/door/airlock/command{ name = "Head of Personnel"; req_access = list(57) @@ -23767,7 +23757,7 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/wood, /area/crew_quarters/heads/hop) -"aOR" = ( +"aOQ" = ( /obj/machinery/door/firedoor, /obj/structure/grille, /obj/structure/window/reinforced/polarized{ @@ -23783,7 +23773,7 @@ }, /turf/simulated/floor/plating, /area/bridge/meeting_room) -"aOS" = ( +"aOR" = ( /obj/machinery/door/firedoor, /obj/structure/grille, /obj/structure/window/reinforced/polarized{ @@ -23799,10 +23789,10 @@ }, /turf/simulated/floor/plating, /area/bridge/meeting_room) -"aOT" = ( +"aOS" = ( /turf/simulated/wall/r_wall, /area/bridge/meeting_room) -"aOU" = ( +"aOT" = ( /obj/machinery/door/firedoor, /obj/structure/grille, /obj/structure/window/reinforced/polarized{ @@ -23814,7 +23804,7 @@ }, /turf/simulated/floor/plating, /area/bridge/meeting_room) -"aOV" = ( +"aOU" = ( /obj/structure/disposalpipe/segment, /obj/effect/floor_decal/corner/paleblue{ icon_state = "corner_white"; @@ -23826,7 +23816,7 @@ }, /turf/simulated/floor/tiled, /area/bridge) -"aOW" = ( +"aOV" = ( /obj/structure/cable/green{ d1 = 1; d2 = 2; @@ -23849,7 +23839,7 @@ }, /turf/simulated/floor/tiled/white, /area/bridge) -"aOX" = ( +"aOW" = ( /obj/effect/floor_decal/corner/paleblue{ icon_state = "corner_white"; dir = 9 @@ -23870,7 +23860,7 @@ }, /turf/simulated/floor/tiled, /area/bridge) -"aOY" = ( +"aOX" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, @@ -23887,7 +23877,7 @@ }, /turf/simulated/floor/tiled, /area/bridge) -"aOZ" = ( +"aOY" = ( /obj/machinery/door/firedoor, /obj/machinery/door/airlock/command{ id_tag = "captaindoor"; @@ -23910,7 +23900,7 @@ }, /turf/simulated/floor/wood, /area/crew_quarters/captain) -"aPa" = ( +"aOZ" = ( /obj/structure/cable/green{ d1 = 4; d2 = 8; @@ -23937,7 +23927,7 @@ }, /turf/simulated/floor/wood, /area/crew_quarters/captain) -"aPb" = ( +"aPa" = ( /obj/structure/cable/green{ d1 = 4; d2 = 8; @@ -23954,7 +23944,7 @@ }, /turf/simulated/floor/wood, /area/crew_quarters/captain) -"aPc" = ( +"aPb" = ( /obj/structure/cable/green{ d1 = 1; d2 = 8; @@ -23974,7 +23964,7 @@ }, /turf/simulated/floor/wood, /area/crew_quarters/captain) -"aPd" = ( +"aPc" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, @@ -23986,7 +23976,7 @@ }, /turf/simulated/floor/wood, /area/crew_quarters/captain) -"aPe" = ( +"aPd" = ( /obj/structure/disposalpipe/segment{ dir = 2; icon_state = "pipe-c" @@ -23999,12 +23989,12 @@ }, /turf/simulated/floor/wood, /area/crew_quarters/captain) -"aPf" = ( +"aPe" = ( /obj/item/toy/figure/captain, /obj/structure/flora/pottedplant/random, /turf/simulated/floor/wood, /area/crew_quarters/captain) -"aPg" = ( +"aPf" = ( /obj/structure/grille, /obj/structure/window/reinforced{ dir = 8 @@ -24016,7 +24006,7 @@ /obj/structure/window/reinforced, /turf/simulated/floor/plating, /area/crew_quarters/captain) -"aPh" = ( +"aPg" = ( /obj/structure/grille, /obj/structure/window/reinforced{ dir = 4 @@ -24028,14 +24018,14 @@ /obj/structure/window/reinforced, /turf/simulated/floor/plating, /area/crew_quarters/captain) -"aPi" = ( +"aPh" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ dir = 8 }, /turf/simulated/floor/carpet, /area/crew_quarters/captain) -"aPj" = ( +"aPi" = ( /obj/structure/cable/green{ d1 = 1; d2 = 2; @@ -24051,7 +24041,7 @@ }, /turf/simulated/floor/carpet, /area/crew_quarters/captain) -"aPk" = ( +"aPj" = ( /obj/structure/table/wood, /obj/item/weapon/storage/lockbox/medal, /obj/structure/cable/green{ @@ -24075,7 +24065,7 @@ }, /turf/simulated/floor/carpet, /area/crew_quarters/captain) -"aPl" = ( +"aPk" = ( /obj/structure/sign/drop{ pixel_y = -32 }, @@ -24085,19 +24075,19 @@ }, /turf/simulated/open, /area/engineering/engine_room) -"aPm" = ( +"aPl" = ( /obj/structure/lattice/catwalk, /obj/machinery/atmospherics/pipe/zpipe/down/green{ dir = 1 }, /turf/simulated/open, /area/engineering/engine_room) -"aPn" = ( +"aPm" = ( /obj/random/junk, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/plating, /area/maintenance/research_port) -"aPo" = ( +"aPn" = ( /obj/structure/cable{ d1 = 1; d2 = 2; @@ -24107,7 +24097,7 @@ /obj/machinery/atmospherics/pipe/simple/hidden/supply, /turf/simulated/floor/plating, /area/maintenance/research_port) -"aPp" = ( +"aPo" = ( /obj/machinery/button/remote/driver{ id = "enginecore"; name = "Emergency Core Eject"; @@ -24119,10 +24109,10 @@ }, /turf/simulated/floor/tiled, /area/crew_quarters/heads/chief) -"aPq" = ( +"aPp" = ( /turf/simulated/floor/carpet, /area/crew_quarters/heads/chief) -"aPr" = ( +"aPq" = ( /obj/structure/table/standard, /obj/item/weapon/reagent_containers/food/drinks/flask/barflask{ pixel_x = -5; @@ -24132,13 +24122,13 @@ /obj/item/weapon/flame/lighter/zippo, /turf/simulated/floor/carpet, /area/crew_quarters/heads/chief) -"aPs" = ( +"aPr" = ( /obj/structure/table/standard, /obj/item/weapon/paper_bin, /obj/item/weapon/pen, /turf/simulated/floor/carpet, /area/crew_quarters/heads/chief) -"aPt" = ( +"aPs" = ( /obj/structure/table/standard, /obj/structure/cable/green{ d1 = 1; @@ -24148,11 +24138,11 @@ /obj/machinery/computer/skills, /turf/simulated/floor/carpet, /area/crew_quarters/heads/chief) -"aPu" = ( +"aPt" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/wood, /area/crew_quarters/heads/chief) -"aPv" = ( +"aPu" = ( /obj/structure/disposalpipe/segment{ dir = 1; icon_state = "pipe-c" @@ -24168,7 +24158,7 @@ }, /turf/simulated/floor/wood, /area/crew_quarters/heads/chief) -"aPw" = ( +"aPv" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, @@ -24194,7 +24184,7 @@ /obj/structure/window/reinforced/polarized, /turf/simulated/floor/plating, /area/crew_quarters/heads/chief) -"aPx" = ( +"aPw" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, @@ -24204,7 +24194,7 @@ }, /turf/simulated/floor/tiled, /area/engineering/foyer) -"aPy" = ( +"aPx" = ( /obj/structure/cable/green{ d1 = 1; d2 = 2; @@ -24220,7 +24210,7 @@ }, /turf/simulated/floor/tiled, /area/engineering/foyer) -"aPz" = ( +"aPy" = ( /obj/structure/cable/green{ d1 = 4; d2 = 8; @@ -24239,7 +24229,7 @@ }, /turf/simulated/floor/tiled, /area/engineering/foyer) -"aPA" = ( +"aPz" = ( /obj/structure/cable/green{ d1 = 4; d2 = 8; @@ -24251,7 +24241,7 @@ }, /turf/simulated/floor/tiled, /area/engineering/foyer) -"aPB" = ( +"aPA" = ( /obj/structure/table/rack, /obj/machinery/power/apc{ dir = 4; @@ -24269,10 +24259,10 @@ /obj/item/weapon/storage/box/lights/mixed, /turf/simulated/floor/tiled, /area/engineering/foyer) -"aPC" = ( +"aPB" = ( /turf/simulated/wall, /area/engineering/foyer) -"aPD" = ( +"aPC" = ( /obj/structure/disposalpipe/segment, /obj/effect/floor_decal/corner/yellow{ icon_state = "corner_white"; @@ -24280,23 +24270,23 @@ }, /turf/simulated/floor/tiled, /area/engineering/foyer) -"aPE" = ( +"aPD" = ( /obj/structure/table/standard, /obj/machinery/cell_charger, /turf/simulated/floor/tiled, /area/engineering/foyer) -"aPF" = ( +"aPE" = ( /obj/item/modular_computer/console/preset/engineering, /turf/simulated/floor/tiled, /area/engineering/foyer) -"aPG" = ( +"aPF" = ( /obj/effect/floor_decal/corner/yellow{ icon_state = "corner_white"; dir = 6 }, /turf/simulated/floor/tiled, /area/engineering/foyer) -"aPH" = ( +"aPG" = ( /obj/machinery/button/remote/blast_door{ id = "Singuloth"; name = "Engineering delivery Control"; @@ -24304,14 +24294,14 @@ }, /turf/simulated/floor/tiled, /area/engineering/foyer) -"aPI" = ( +"aPH" = ( /obj/machinery/suit_cycler/medical, /obj/effect/floor_decal/corner/blue/full{ dir = 8 }, /turf/simulated/floor/tiled/dark, /area/ai_monitored/storage/eva) -"aPJ" = ( +"aPI" = ( /obj/structure/table/reinforced, /obj/machinery/cell_charger, /obj/item/weapon/cell/high{ @@ -24335,13 +24325,13 @@ /obj/item/device/radio/off, /turf/simulated/floor/tiled/dark, /area/ai_monitored/storage/eva) -"aPK" = ( +"aPJ" = ( /obj/structure/table/reinforced, /obj/item/hoist_kit, /obj/item/weapon/ladder_mobile, /turf/simulated/floor/tiled/dark, /area/ai_monitored/storage/eva) -"aPL" = ( +"aPK" = ( /obj/machinery/door/firedoor{ dir = 2 }, @@ -24357,7 +24347,7 @@ }, /turf/simulated/floor/plating, /area/ai_monitored/storage/eva) -"aPM" = ( +"aPL" = ( /obj/machinery/suit_storage_unit/standard_unit, /obj/effect/floor_decal/corner/blue{ icon_state = "corner_white"; @@ -24365,32 +24355,32 @@ }, /turf/simulated/floor/tiled/dark, /area/ai_monitored/storage/eva) -"aPN" = ( +"aPM" = ( /obj/structure/closet/secure_closet/hos, /obj/item/device/multitool, /obj/item/weapon/reagent_containers/spray/pepper, /turf/simulated/floor/tiled/dark, /area/crew_quarters/heads/hos) -"aPO" = ( +"aPN" = ( /obj/item/device/radio/intercom{ pixel_y = -28 }, /turf/simulated/floor/tiled/dark, /area/crew_quarters/heads/hos) -"aPP" = ( +"aPO" = ( /obj/machinery/newscaster/security_unit{ pixel_y = -30 }, /turf/simulated/floor/tiled/dark, /area/crew_quarters/heads/hos) -"aPQ" = ( +"aPP" = ( /obj/machinery/atmospherics/unary/vent_pump/on{ dir = 1 }, /obj/machinery/firealarm/south, /turf/simulated/floor/tiled/dark, /area/crew_quarters/heads/hos) -"aPR" = ( +"aPQ" = ( /obj/structure/window/reinforced{ icon_state = "rwindow"; dir = 8 @@ -24405,7 +24395,7 @@ /mob/living/simple_animal/hostile/commanded/dog/columbo, /turf/simulated/floor/tiled/dark, /area/crew_quarters/heads/hos) -"aPS" = ( +"aPR" = ( /obj/machinery/photocopier, /obj/machinery/requests_console{ announcementConsole = 1; @@ -24417,7 +24407,7 @@ }, /turf/simulated/floor/tiled/dark, /area/crew_quarters/heads/hos) -"aPT" = ( +"aPS" = ( /obj/structure/table/wood, /obj/item/weapon/paper_bin, /obj/item/weapon/pen, @@ -24431,7 +24421,7 @@ }, /turf/simulated/floor/tiled/dark, /area/crew_quarters/heads/hos) -"aPU" = ( +"aPT" = ( /obj/structure/bed/chair{ dir = 4 }, @@ -24442,7 +24432,7 @@ /obj/machinery/firealarm/west, /turf/simulated/floor/tiled, /area/security/lobby) -"aPV" = ( +"aPU" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/effect/floor_decal/corner/blue{ icon_state = "corner_white"; @@ -24455,7 +24445,7 @@ }, /turf/simulated/floor/tiled, /area/security/lobby) -"aPW" = ( +"aPV" = ( /obj/machinery/ringer_button{ id = "brig_ringer"; pixel_x = 24; @@ -24463,10 +24453,10 @@ }, /turf/simulated/floor/tiled, /area/security/lobby) -"aPX" = ( +"aPW" = ( /turf/simulated/wall/r_wall, /area/security/prison) -"aPY" = ( +"aPX" = ( /obj/machinery/atmospherics/unary/vent_pump/on{ dir = 4 }, @@ -24477,7 +24467,7 @@ }, /turf/simulated/floor/tiled/freezer, /area/security/prison) -"aPZ" = ( +"aPY" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, @@ -24486,7 +24476,7 @@ }, /turf/simulated/floor/tiled/freezer, /area/security/prison) -"aQa" = ( +"aPZ" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, @@ -24495,7 +24485,7 @@ }, /turf/simulated/floor/tiled/freezer, /area/security/prison) -"aQb" = ( +"aQa" = ( /obj/machinery/door/airlock{ name = "Brig Showers" }, @@ -24508,7 +24498,7 @@ /obj/machinery/door/firedoor, /turf/simulated/floor/tiled/freezer, /area/security/prison) -"aQc" = ( +"aQb" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, @@ -24518,7 +24508,7 @@ /obj/effect/floor_decal/corner/red/diagonal, /turf/simulated/floor/tiled/white, /area/security/prison) -"aQd" = ( +"aQc" = ( /obj/machinery/atmospherics/pipe/manifold/hidden/supply{ dir = 4 }, @@ -24527,7 +24517,7 @@ }, /turf/simulated/floor/tiled, /area/security/prison) -"aQe" = ( +"aQd" = ( /obj/machinery/atmospherics/unary/outlet_injector{ dir = 1; id = null; @@ -24535,7 +24525,7 @@ }, /turf/simulated/floor/tiled, /area/security/prison) -"aQf" = ( +"aQe" = ( /obj/structure/window/reinforced{ dir = 1 }, @@ -24543,7 +24533,7 @@ /obj/item/weapon/mop, /turf/simulated/floor/tiled, /area/security/prison) -"aQg" = ( +"aQf" = ( /obj/structure/window/reinforced{ dir = 1 }, @@ -24551,7 +24541,7 @@ /obj/effect/floor_decal/industrial/hatch/yellow, /turf/simulated/floor/tiled, /area/security/prison) -"aQh" = ( +"aQg" = ( /obj/structure/window/reinforced{ dir = 1 }, @@ -24559,7 +24549,7 @@ /obj/effect/floor_decal/industrial/hatch/yellow, /turf/simulated/floor/tiled, /area/security/prison) -"aQi" = ( +"aQh" = ( /obj/structure/cable/green{ d1 = 1; d2 = 2; @@ -24572,7 +24562,7 @@ }, /turf/simulated/floor/tiled, /area/security/prison) -"aQj" = ( +"aQi" = ( /obj/item/toy/prize/deathripley{ desc = "This is Johnny 5. Is he alive?"; name = "Johnny 5" @@ -24584,7 +24574,7 @@ }, /turf/simulated/floor/tiled, /area/security/prison) -"aQk" = ( +"aQj" = ( /obj/structure/cable/green{ d1 = 1; d2 = 8; @@ -24603,7 +24593,7 @@ }, /turf/simulated/floor/tiled, /area/security/brig) -"aQl" = ( +"aQk" = ( /obj/effect/floor_decal/corner/blue{ icon_state = "corner_white"; dir = 6 @@ -24615,7 +24605,7 @@ }, /turf/simulated/floor/tiled, /area/security/brig) -"aQm" = ( +"aQl" = ( /obj/machinery/door/firedoor, /obj/structure/grille, /obj/structure/window/reinforced{ @@ -24636,14 +24626,14 @@ }, /turf/simulated/floor/plating, /area/store) -"aQn" = ( +"aQm" = ( /obj/machinery/light{ dir = 1 }, /obj/structure/table/standard, /turf/simulated/floor/tiled/dark, /area/store) -"aQo" = ( +"aQn" = ( /obj/structure/window/reinforced{ dir = 4 }, @@ -24653,10 +24643,10 @@ }, /turf/simulated/floor/tiled/dark, /area/store) -"aQp" = ( +"aQo" = ( /turf/simulated/floor/tiled, /area/store) -"aQq" = ( +"aQp" = ( /obj/machinery/door/window/northleft{ dir = 4; name = "Store Access"; @@ -24679,7 +24669,7 @@ }, /turf/simulated/floor/tiled, /area/store) -"aQr" = ( +"aQq" = ( /obj/effect/floor_decal/corner/paleblue{ icon_state = "corner_white"; dir = 10 @@ -24699,14 +24689,14 @@ }, /turf/simulated/floor/tiled, /area/store) -"aQs" = ( +"aQr" = ( /obj/effect/floor_decal/corner/paleblue{ icon_state = "corner_white"; dir = 10 }, /turf/simulated/floor/tiled, /area/store) -"aQt" = ( +"aQs" = ( /obj/effect/floor_decal/corner/paleblue{ icon_state = "corner_white"; dir = 10 @@ -24718,20 +24708,20 @@ /obj/effect/floor_decal/industrial/outline/yellow, /turf/simulated/floor/tiled, /area/store) -"aQu" = ( +"aQt" = ( /obj/item/device/t_scanner, /obj/structure/table/steel, /obj/random/junk, /turf/simulated/floor/plating, /area/maintenance/maintcentral) -"aQv" = ( +"aQu" = ( /obj/machinery/space_heater, /turf/simulated/floor/plating, /area/maintenance/maintcentral) -"aQw" = ( +"aQv" = ( /turf/simulated/wall, /area/maintenance/maintcentral) -"aQx" = ( +"aQw" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/cable/green{ d1 = 1; @@ -24742,7 +24732,7 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/plating, /area/maintenance/maintcentral) -"aQy" = ( +"aQx" = ( /obj/structure/cable/green{ d1 = 1; d2 = 2; @@ -24757,11 +24747,11 @@ }, /turf/simulated/floor/tiled, /area/hallway/primary/starboard) -"aQz" = ( +"aQy" = ( /obj/effect/floor_decal/industrial/outline/yellow, /turf/simulated/floor/tiled, /area/hallway/primary/starboard) -"aQA" = ( +"aQz" = ( /obj/structure/table/reinforced, /obj/machinery/door/window/brigdoor{ base_state = "rightsecure"; @@ -24797,7 +24787,7 @@ }, /turf/simulated/floor/wood, /area/crew_quarters/heads/hop) -"aQB" = ( +"aQA" = ( /obj/structure/bed/chair/office/dark{ dir = 8 }, @@ -24811,7 +24801,7 @@ }, /turf/simulated/floor/wood, /area/crew_quarters/heads/hop) -"aQC" = ( +"aQB" = ( /obj/machinery/button/remote/blast_door{ desc = "A remote control-switch for shutters."; id = "hop_office_desk"; @@ -24833,7 +24823,7 @@ }, /turf/simulated/floor/wood, /area/crew_quarters/heads/hop) -"aQD" = ( +"aQC" = ( /obj/machinery/computer/guestpass{ pixel_y = 32 }, @@ -24849,7 +24839,7 @@ }, /turf/simulated/floor/wood, /area/crew_quarters/heads/hop) -"aQE" = ( +"aQD" = ( /obj/machinery/keycard_auth{ pixel_x = 24 }, @@ -24866,11 +24856,11 @@ }, /turf/simulated/floor/wood, /area/crew_quarters/heads/hop) -"aQF" = ( +"aQE" = ( /obj/machinery/hologram/holopad, /turf/simulated/floor/carpet, /area/bridge/meeting_room) -"aQG" = ( +"aQF" = ( /obj/effect/floor_decal/spline/fancy/wood{ icon_state = "spline_fancy"; dir = 4 @@ -24881,7 +24871,7 @@ }, /turf/simulated/floor/carpet, /area/bridge/meeting_room) -"aQH" = ( +"aQG" = ( /obj/effect/floor_decal/corner/blue{ icon_state = "corner_white"; dir = 6 @@ -24893,21 +24883,21 @@ }, /turf/simulated/floor/tiled/dark, /area/bridge/meeting_room) -"aQI" = ( +"aQH" = ( /obj/structure/bed/chair/office/bridge{ icon_state = "bridge"; dir = 8 }, /turf/simulated/floor/tiled/dark, /area/bridge/meeting_room) -"aQJ" = ( +"aQI" = ( /obj/effect/floor_decal/corner/purple{ icon_state = "corner_white"; dir = 6 }, /turf/simulated/floor/tiled/dark, /area/bridge/meeting_room) -"aQK" = ( +"aQJ" = ( /obj/machinery/door/firedoor, /obj/structure/grille, /obj/structure/window/reinforced/polarized{ @@ -24924,7 +24914,7 @@ }, /turf/simulated/floor/plating, /area/bridge/meeting_room) -"aQL" = ( +"aQK" = ( /obj/machinery/camera/network/command{ c_tag = "Bridge - Corridor Camera 2"; dir = 4; @@ -24937,7 +24927,7 @@ }, /turf/simulated/floor/tiled, /area/bridge) -"aQM" = ( +"aQL" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ dir = 8 @@ -24950,7 +24940,7 @@ /obj/effect/floor_decal/corner/paleblue/diagonal, /turf/simulated/floor/tiled/white, /area/bridge) -"aQN" = ( +"aQM" = ( /obj/machinery/atmospherics/unary/vent_scrubber/on{ dir = 8 }, @@ -24960,11 +24950,11 @@ }, /turf/simulated/floor/tiled, /area/bridge) -"aQO" = ( +"aQN" = ( /obj/structure/flora/pottedplant/random, /turf/simulated/floor/tiled, /area/bridge) -"aQP" = ( +"aQO" = ( /obj/machinery/door/firedoor, /obj/structure/grille, /obj/structure/window/reinforced/polarized{ @@ -24988,7 +24978,7 @@ }, /turf/simulated/floor/plating, /area/crew_quarters/captain) -"aQQ" = ( +"aQP" = ( /obj/structure/cable/green{ d1 = 1; d2 = 8; @@ -25009,7 +24999,7 @@ /obj/item/weapon/hand_labeler, /turf/simulated/floor/wood, /area/crew_quarters/captain) -"aQR" = ( +"aQQ" = ( /obj/structure/cable/green{ d1 = 2; d2 = 8; @@ -25018,7 +25008,7 @@ /obj/structure/table/wood, /turf/simulated/floor/wood, /area/crew_quarters/captain) -"aQS" = ( +"aQR" = ( /obj/machinery/light_switch{ pixel_y = -24 }, @@ -25030,7 +25020,7 @@ /obj/structure/banner, /turf/simulated/floor/wood, /area/crew_quarters/captain) -"aQT" = ( +"aQS" = ( /obj/structure/cable/green{ d1 = 4; d2 = 8; @@ -25044,7 +25034,7 @@ /obj/machinery/firealarm/south, /turf/simulated/floor/wood, /area/crew_quarters/captain) -"aQU" = ( +"aQT" = ( /obj/structure/cable/green{ d1 = 4; d2 = 8; @@ -25068,7 +25058,7 @@ }, /turf/simulated/floor/wood, /area/crew_quarters/captain) -"aQV" = ( +"aQU" = ( /obj/structure/cable/green{ d1 = 4; d2 = 8; @@ -25086,7 +25076,7 @@ /obj/machinery/light, /turf/simulated/floor/wood, /area/crew_quarters/captain) -"aQW" = ( +"aQV" = ( /obj/machinery/door/window{ base_state = "left"; dir = 8; @@ -25110,7 +25100,7 @@ }, /turf/simulated/floor/carpet, /area/crew_quarters/captain) -"aQX" = ( +"aQW" = ( /obj/structure/cable/green{ d1 = 4; d2 = 8; @@ -25127,7 +25117,7 @@ }, /turf/simulated/floor/carpet, /area/crew_quarters/captain) -"aQY" = ( +"aQX" = ( /obj/structure/cable/green{ d1 = 4; d2 = 8; @@ -25149,7 +25139,7 @@ }, /turf/simulated/floor/carpet, /area/crew_quarters/captain) -"aQZ" = ( +"aQY" = ( /obj/machinery/keycard_auth{ pixel_x = 0; pixel_y = -24 @@ -25168,7 +25158,7 @@ }, /turf/simulated/floor/carpet, /area/crew_quarters/captain) -"aRa" = ( +"aQZ" = ( /obj/machinery/disposal, /obj/structure/cable/green{ d1 = 1; @@ -25183,7 +25173,7 @@ }, /turf/simulated/floor/carpet, /area/crew_quarters/captain) -"aRb" = ( +"aRa" = ( /obj/structure/grille, /obj/machinery/door/firedoor, /obj/structure/window/reinforced{ @@ -25208,14 +25198,14 @@ }, /turf/simulated/floor/plating, /area/crew_quarters/captain) -"aRc" = ( +"aRb" = ( /obj/machinery/meter{ name = "Scrubbers" }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/plating, /area/maintenance/research_port) -"aRd" = ( +"aRc" = ( /obj/structure/cable{ d1 = 1; d2 = 2; @@ -25228,7 +25218,7 @@ /obj/machinery/atmospherics/pipe/simple/hidden/supply, /turf/simulated/floor/plating, /area/maintenance/research_port) -"aRe" = ( +"aRd" = ( /obj/machinery/keycard_auth{ pixel_x = -24; pixel_y = 0 @@ -25255,13 +25245,13 @@ }, /turf/simulated/floor/carpet, /area/crew_quarters/heads/chief) -"aRf" = ( +"aRe" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, /turf/simulated/floor/carpet, /area/crew_quarters/heads/chief) -"aRg" = ( +"aRf" = ( /obj/structure/bed/chair/office/dark{ dir = 4 }, @@ -25282,7 +25272,7 @@ }, /turf/simulated/floor/carpet, /area/crew_quarters/heads/chief) -"aRh" = ( +"aRg" = ( /obj/structure/table/standard, /obj/structure/cable/green{ d1 = 1; @@ -25296,7 +25286,7 @@ /obj/item/weapon/stamp/ce, /turf/simulated/floor/carpet, /area/crew_quarters/heads/chief) -"aRi" = ( +"aRh" = ( /obj/structure/bed/chair/office/dark{ dir = 8 }, @@ -25315,7 +25305,7 @@ }, /turf/simulated/floor/carpet, /area/crew_quarters/heads/chief) -"aRj" = ( +"aRi" = ( /obj/structure/cable/green{ d1 = 4; d2 = 8; @@ -25330,7 +25320,7 @@ /obj/machinery/hologram/holopad, /turf/simulated/floor/wood, /area/crew_quarters/heads/chief) -"aRk" = ( +"aRj" = ( /obj/structure/cable/green{ d1 = 4; d2 = 8; @@ -25354,7 +25344,7 @@ }, /turf/simulated/floor/wood, /area/crew_quarters/heads/chief) -"aRl" = ( +"aRk" = ( /obj/machinery/door/firedoor, /obj/structure/cable/green{ d1 = 4; @@ -25374,7 +25364,7 @@ }, /turf/simulated/floor/wood, /area/crew_quarters/heads/chief) -"aRm" = ( +"aRl" = ( /obj/structure/cable/green{ d1 = 4; d2 = 8; @@ -25392,7 +25382,7 @@ }, /turf/simulated/floor/tiled, /area/engineering/foyer) -"aRn" = ( +"aRm" = ( /obj/structure/cable/green{ d1 = 1; d2 = 8; @@ -25411,7 +25401,7 @@ }, /turf/simulated/floor/tiled, /area/engineering/foyer) -"aRo" = ( +"aRn" = ( /obj/structure/cable{ d1 = 1; d2 = 2; @@ -25426,7 +25416,7 @@ }, /turf/simulated/floor/tiled, /area/engineering/foyer) -"aRp" = ( +"aRo" = ( /obj/structure/closet/wardrobe/engineering_yellow, /obj/structure/sign/nosmoking_2{ pixel_x = 32 @@ -25437,7 +25427,7 @@ }, /turf/simulated/floor/tiled, /area/engineering/foyer) -"aRq" = ( +"aRp" = ( /obj/machinery/disposal, /obj/structure/disposalpipe/trunk{ dir = 1 @@ -25445,7 +25435,7 @@ /obj/effect/floor_decal/corner/yellow/full, /turf/simulated/floor/tiled, /area/engineering/foyer) -"aRr" = ( +"aRq" = ( /obj/machinery/computer/security/engineering{ name = "Drone Monitoring Cameras" }, @@ -25455,7 +25445,7 @@ }, /turf/simulated/floor/tiled, /area/engineering/foyer) -"aRs" = ( +"aRr" = ( /obj/structure/bed/chair/office/dark, /obj/effect/floor_decal/corner/yellow{ icon_state = "corner_white"; @@ -25463,7 +25453,7 @@ }, /turf/simulated/floor/tiled, /area/engineering/foyer) -"aRt" = ( +"aRs" = ( /obj/effect/floor_decal/corner/yellow{ icon_state = "corner_white"; dir = 10 @@ -25471,7 +25461,7 @@ /obj/machinery/computer/station_alert/engineering, /turf/simulated/floor/tiled, /area/engineering/foyer) -"aRu" = ( +"aRt" = ( /obj/machinery/conveyor_switch/oneway{ id = "Engie Delivery"; name = "Engineering Conveyor" @@ -25482,14 +25472,14 @@ }, /turf/simulated/floor/tiled, /area/engineering/foyer) -"aRv" = ( +"aRu" = ( /obj/machinery/conveyor{ backwards = 1; id = "Engie Delivery" }, /turf/simulated/floor/tiled, /area/engineering/foyer) -"aRw" = ( +"aRv" = ( /obj/machinery/suit_cycler/engineering, /obj/machinery/light/small{ dir = 8 @@ -25500,7 +25490,7 @@ }, /turf/simulated/floor/tiled/dark, /area/ai_monitored/storage/eva) -"aRx" = ( +"aRw" = ( /obj/machinery/door/firedoor, /obj/machinery/door/airlock/glass_command{ name = "E.V.A. Cycler Access"; @@ -25508,7 +25498,7 @@ }, /turf/simulated/floor/tiled/dark, /area/ai_monitored/storage/eva) -"aRy" = ( +"aRx" = ( /obj/machinery/door/firedoor{ dir = 2 }, @@ -25521,7 +25511,7 @@ }, /turf/simulated/floor/plating, /area/ai_monitored/storage/eva) -"aRz" = ( +"aRy" = ( /obj/structure/table/rack{ dir = 8; layer = 2.9 @@ -25558,13 +25548,13 @@ /obj/item/clothing/shoes/magboots, /turf/simulated/floor/tiled/dark, /area/ai_monitored/storage/eva) -"aRA" = ( +"aRz" = ( /obj/item/device/radio/intercom{ pixel_x = -28 }, /turf/simulated/floor/tiled, /area/security/lobby) -"aRB" = ( +"aRA" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 5 }, @@ -25579,13 +25569,13 @@ }, /turf/simulated/floor/tiled, /area/security/lobby) -"aRC" = ( +"aRB" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 }, /turf/simulated/floor/tiled, /area/security/lobby) -"aRD" = ( +"aRC" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 }, @@ -25602,14 +25592,14 @@ }, /turf/simulated/floor/tiled, /area/security/lobby) -"aRE" = ( +"aRD" = ( /obj/machinery/atmospherics/unary/vent_scrubber/on{ dir = 8 }, /obj/structure/closet/emcloset, /turf/simulated/floor/tiled, /area/security/lobby) -"aRF" = ( +"aRE" = ( /obj/structure/grille, /obj/structure/window/reinforced, /obj/structure/window/reinforced{ @@ -25632,13 +25622,13 @@ /obj/machinery/door/firedoor, /turf/simulated/floor/plating, /area/security/lobby) -"aRG" = ( +"aRF" = ( /obj/machinery/alarm{ pixel_y = 23 }, /turf/simulated/floor/tiled, /area/security/lobby) -"aRH" = ( +"aRG" = ( /obj/structure/bed/chair{ dir = 4 }, @@ -25650,7 +25640,7 @@ }, /turf/simulated/floor/tiled, /area/security/lobby) -"aRI" = ( +"aRH" = ( /obj/structure/table/reinforced/steel, /obj/machinery/door/firedoor, /obj/machinery/door/window/brigdoor{ @@ -25669,26 +25659,26 @@ }, /turf/simulated/floor/tiled, /area/security/prison) -"aRJ" = ( +"aRI" = ( /obj/structure/bed/chair{ dir = 8 }, /turf/simulated/floor/tiled, /area/security/prison) -"aRK" = ( +"aRJ" = ( /obj/machinery/atmospherics/unary/vent_scrubber/on, /obj/machinery/alarm{ pixel_y = 23 }, /turf/simulated/floor/tiled, /area/security/prison) -"aRL" = ( +"aRK" = ( /obj/structure/window/reinforced/tinted/frosted, /obj/machinery/washing_machine, /obj/effect/floor_decal/corner/red/diagonal, /turf/simulated/floor/tiled/white, /area/security/prison) -"aRM" = ( +"aRL" = ( /obj/structure/window/reinforced/tinted/frosted, /obj/structure/table/standard, /obj/structure/bedsheetbin, @@ -25696,7 +25686,7 @@ /obj/effect/floor_decal/corner/red/diagonal, /turf/simulated/floor/tiled/white, /area/security/prison) -"aRN" = ( +"aRM" = ( /obj/machinery/door/blast/regular{ dir = 4; id = "Cell 5"; @@ -25706,7 +25696,7 @@ /obj/machinery/door/firedoor, /turf/simulated/floor/tiled, /area/security/prison) -"aRO" = ( +"aRN" = ( /obj/machinery/door/firedoor, /obj/machinery/door/blast/regular{ density = 0; @@ -25730,7 +25720,7 @@ /obj/effect/floor_decal/industrial/hatch/yellow, /turf/simulated/floor/tiled, /area/security/prison) -"aRP" = ( +"aRO" = ( /obj/structure/cable/green{ d1 = 1; d2 = 2; @@ -25745,7 +25735,7 @@ }, /turf/simulated/floor/tiled, /area/security/brig) -"aRQ" = ( +"aRP" = ( /obj/structure/cable/green, /obj/machinery/power/apc{ dir = 8; @@ -25758,7 +25748,7 @@ }, /turf/simulated/floor/tiled, /area/hallway/primary/starboard) -"aRR" = ( +"aRQ" = ( /obj/machinery/door/firedoor, /obj/structure/grille, /obj/structure/window/reinforced{ @@ -25776,11 +25766,11 @@ }, /turf/simulated/floor/plating, /area/store) -"aRS" = ( +"aRR" = ( /obj/structure/table/standard, /turf/simulated/floor/tiled/dark, /area/store) -"aRT" = ( +"aRS" = ( /obj/structure/window/reinforced{ dir = 4 }, @@ -25793,7 +25783,7 @@ }, /turf/simulated/floor/tiled, /area/store) -"aRU" = ( +"aRT" = ( /obj/structure/window/reinforced{ dir = 1 }, @@ -25807,7 +25797,7 @@ }, /turf/simulated/floor/tiled, /area/store) -"aRV" = ( +"aRU" = ( /obj/structure/table/reinforced, /obj/structure/window/reinforced{ dir = 1 @@ -25820,7 +25810,7 @@ /obj/item/weapon/hand_labeler, /turf/simulated/floor/tiled, /area/store) -"aRW" = ( +"aRV" = ( /obj/structure/table/reinforced, /obj/machinery/door/window/northleft{ name = "Store Desk"; @@ -25841,7 +25831,7 @@ }, /turf/simulated/floor/tiled, /area/store) -"aRX" = ( +"aRW" = ( /obj/structure/closet, /obj/item/clothing/head/ushanka, /obj/machinery/light/small{ @@ -25849,17 +25839,17 @@ }, /turf/simulated/floor/plating, /area/maintenance/maintcentral) -"aRY" = ( +"aRX" = ( /turf/simulated/floor/plating, /area/maintenance/maintcentral) -"aRZ" = ( +"aRY" = ( /obj/machinery/door/airlock/maintenance{ req_access = list(12) }, /obj/machinery/door/firedoor, /turf/simulated/floor/plating, /area/maintenance/maintcentral) -"aSa" = ( +"aRZ" = ( /obj/structure/cable/green{ d1 = 1; d2 = 2; @@ -25873,7 +25863,7 @@ }, /turf/simulated/floor/tiled, /area/hallway/primary/starboard) -"aSb" = ( +"aSa" = ( /obj/structure/grille, /obj/structure/window/reinforced{ dir = 8 @@ -25886,7 +25876,7 @@ }, /turf/simulated/floor/plating, /area/hallway/primary/starboard) -"aSc" = ( +"aSb" = ( /obj/effect/floor_decal/industrial/loading{ icon_state = "loadingarea"; dir = 1 @@ -25894,7 +25884,7 @@ /obj/effect/floor_decal/industrial/outline/yellow, /turf/simulated/floor/tiled, /area/hallway/primary/starboard) -"aSd" = ( +"aSc" = ( /obj/structure/window/reinforced/polarized{ dir = 4; id = "hop" @@ -25923,20 +25913,20 @@ }, /turf/simulated/floor/plating, /area/crew_quarters/heads/hop) -"aSe" = ( +"aSd" = ( /obj/item/modular_computer/console/preset/command, /turf/simulated/floor/wood, /area/crew_quarters/heads/hop) -"aSf" = ( +"aSe" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/wood, /area/crew_quarters/heads/hop) -"aSg" = ( +"aSf" = ( /obj/structure/disposalpipe/segment, /obj/machinery/atmospherics/pipe/simple/hidden/supply, /turf/simulated/floor/wood, /area/crew_quarters/heads/hop) -"aSh" = ( +"aSg" = ( /obj/machinery/light{ dir = 4; icon_state = "tube1"; @@ -25948,14 +25938,14 @@ }, /turf/simulated/floor/wood, /area/crew_quarters/heads/hop) -"aSi" = ( +"aSh" = ( /obj/machinery/status_display{ pixel_x = -32; pixel_y = 0 }, /turf/simulated/floor/carpet, /area/bridge/meeting_room) -"aSj" = ( +"aSi" = ( /obj/structure/table/wood, /obj/effect/floor_decal/spline/fancy/wood{ icon_state = "spline_fancy"; @@ -25964,16 +25954,16 @@ /obj/item/weapon/book/manual/security_space_law, /turf/simulated/floor/carpet, /area/bridge/meeting_room) -"aSk" = ( +"aSj" = ( /turf/simulated/floor/tiled/dark, /area/bridge/meeting_room) -"aSl" = ( +"aSk" = ( /obj/structure/table/reinforced, /obj/item/weapon/folder/blue, /obj/item/weapon/pen, /turf/simulated/floor/tiled/dark, /area/bridge/meeting_room) -"aSm" = ( +"aSl" = ( /obj/machinery/door/firedoor, /obj/structure/grille, /obj/structure/window/reinforced/polarized{ @@ -25986,7 +25976,7 @@ }, /turf/simulated/floor/plating, /area/bridge/meeting_room) -"aSn" = ( +"aSm" = ( /obj/structure/disposalpipe/segment, /obj/effect/floor_decal/corner/paleblue{ icon_state = "corner_white"; @@ -25994,7 +25984,7 @@ }, /turf/simulated/floor/tiled, /area/bridge) -"aSo" = ( +"aSn" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/structure/cable/green{ @@ -26005,7 +25995,7 @@ /obj/effect/floor_decal/corner/paleblue/diagonal, /turf/simulated/floor/tiled/white, /area/bridge) -"aSp" = ( +"aSo" = ( /obj/effect/floor_decal/corner/paleblue/full, /obj/machinery/status_display{ density = 0; @@ -26015,7 +26005,7 @@ }, /turf/simulated/floor/tiled, /area/bridge) -"aSq" = ( +"aSp" = ( /obj/machinery/door/firedoor, /obj/structure/grille, /obj/structure/window/reinforced/polarized{ @@ -26032,7 +26022,7 @@ /obj/structure/cable/green, /turf/simulated/floor/plating, /area/crew_quarters/captain) -"aSr" = ( +"aSq" = ( /obj/machinery/door/firedoor, /obj/structure/grille, /obj/structure/window/reinforced/polarized{ @@ -26049,10 +26039,10 @@ /obj/structure/cable/green, /turf/simulated/floor/plating, /area/crew_quarters/captain) -"aSs" = ( +"aSr" = ( /turf/simulated/wall/r_wall, /area/bridge/ailobby) -"aSt" = ( +"aSs" = ( /obj/structure/cable{ d1 = 2; d2 = 4; @@ -26065,7 +26055,7 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/plating, /area/maintenance/research_port) -"aSu" = ( +"aSt" = ( /obj/structure/cable{ d1 = 1; d2 = 8; @@ -26077,21 +26067,21 @@ }, /turf/simulated/floor/plating, /area/maintenance/research_port) -"aSv" = ( +"aSu" = ( /obj/structure/closet/secure_closet/engineering_chief, /obj/item/weapon/tank/emergency_oxygen/engi, /obj/item/device/gps/engineering, /obj/item/weapon/pipewrench, /turf/simulated/floor/carpet, /area/crew_quarters/heads/chief) -"aSw" = ( +"aSv" = ( /obj/item/modular_computer/console/preset/engineering, /obj/machinery/light_switch{ pixel_y = -28 }, /turf/simulated/floor/carpet, /area/crew_quarters/heads/chief) -"aSx" = ( +"aSw" = ( /obj/item/modular_computer/console/preset/engineering, /obj/machinery/newscaster{ layer = 3.3; @@ -26100,7 +26090,7 @@ }, /turf/simulated/floor/carpet, /area/crew_quarters/heads/chief) -"aSy" = ( +"aSx" = ( /obj/structure/table/standard, /obj/item/clothing/glasses/welding/superior{ pixel_x = 2; @@ -26112,7 +26102,7 @@ }, /turf/simulated/floor/carpet, /area/crew_quarters/heads/chief) -"aSz" = ( +"aSy" = ( /obj/machinery/light, /obj/structure/cable/green{ d1 = 1; @@ -26121,7 +26111,7 @@ }, /turf/simulated/floor/carpet, /area/crew_quarters/heads/chief) -"aSA" = ( +"aSz" = ( /obj/structure/cable/green{ d1 = 1; d2 = 4; @@ -26133,7 +26123,7 @@ /obj/structure/table/standard, /turf/simulated/floor/wood, /area/crew_quarters/heads/chief) -"aSB" = ( +"aSA" = ( /obj/structure/cable/green{ d2 = 8; icon_state = "0-8" @@ -26155,12 +26145,12 @@ }, /turf/simulated/floor/plating, /area/crew_quarters/heads/chief) -"aSC" = ( +"aSB" = ( /obj/structure/reagent_dispensers/fueltank, /obj/effect/floor_decal/corner/yellow/full, /turf/simulated/floor/tiled, /area/engineering/foyer) -"aSD" = ( +"aSC" = ( /obj/structure/cable/green{ d1 = 1; d2 = 2; @@ -26177,7 +26167,7 @@ }, /turf/simulated/floor/tiled, /area/engineering/foyer) -"aSE" = ( +"aSD" = ( /obj/structure/cable{ d1 = 1; d2 = 2; @@ -26197,7 +26187,7 @@ }, /turf/simulated/floor/tiled, /area/engineering/foyer) -"aSF" = ( +"aSE" = ( /obj/structure/disposalpipe/segment, /obj/effect/floor_decal/corner/yellow{ icon_state = "corner_white"; @@ -26210,7 +26200,7 @@ }, /turf/simulated/floor/tiled, /area/engineering/foyer) -"aSG" = ( +"aSF" = ( /obj/structure/closet/crate, /obj/effect/floor_decal/corner/yellow/full{ icon_state = "corner_white_full"; @@ -26224,7 +26214,7 @@ /obj/machinery/firealarm/east, /turf/simulated/floor/tiled, /area/engineering/foyer) -"aSH" = ( +"aSG" = ( /obj/structure/grille, /obj/machinery/door/firedoor, /obj/structure/window/reinforced, @@ -26238,7 +26228,7 @@ }, /turf/simulated/floor/plating, /area/engineering/foyer) -"aSI" = ( +"aSH" = ( /obj/structure/grille, /obj/machinery/door/firedoor, /obj/structure/window/reinforced, @@ -26252,7 +26242,7 @@ }, /turf/simulated/floor/plating, /area/engineering/foyer) -"aSJ" = ( +"aSI" = ( /obj/structure/table/reinforced/steel, /obj/machinery/door/window/brigdoor/northleft{ name = "Engineering Desk"; @@ -26269,7 +26259,7 @@ }, /turf/simulated/floor/tiled, /area/engineering/foyer) -"aSK" = ( +"aSJ" = ( /obj/structure/grille, /obj/machinery/door/firedoor, /obj/structure/window/reinforced, @@ -26282,7 +26272,7 @@ }, /turf/simulated/floor/plating, /area/engineering/foyer) -"aSL" = ( +"aSK" = ( /obj/machinery/conveyor{ backwards = 1; id = "Engie Delivery" @@ -26295,16 +26285,16 @@ /obj/machinery/door/firedoor, /turf/simulated/floor/plating, /area/engineering/foyer) -"aSM" = ( +"aSL" = ( /obj/machinery/suit_cycler/mining, /obj/effect/floor_decal/corner/blue/full, /turf/simulated/floor/tiled/dark, /area/ai_monitored/storage/eva) -"aSN" = ( +"aSM" = ( /obj/structure/reagent_dispensers/fueltank, /turf/simulated/floor/tiled/dark, /area/ai_monitored/storage/eva) -"aSO" = ( +"aSN" = ( /obj/structure/reagent_dispensers/watertank, /obj/effect/floor_decal/corner/blue{ icon_state = "corner_white"; @@ -26312,13 +26302,13 @@ }, /turf/simulated/floor/tiled/dark, /area/ai_monitored/storage/eva) -"aSP" = ( +"aSO" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/effect/floor_decal/corner/blue/full, /turf/simulated/floor/tiled/dark, /area/ai_monitored/storage/eva) -"aSQ" = ( +"aSP" = ( /obj/structure/dispenser/oxygen, /obj/machinery/camera/network/security{ c_tag = "EVA - Aft Camera"; @@ -26330,11 +26320,11 @@ }, /turf/simulated/floor/tiled/dark, /area/ai_monitored/storage/eva) -"aSR" = ( +"aSQ" = ( /obj/machinery/portable_atmospherics/canister/oxygen, /turf/simulated/floor/tiled/dark, /area/ai_monitored/storage/eva) -"aSS" = ( +"aSR" = ( /obj/machinery/door/firedoor{ dir = 2 }, @@ -26348,7 +26338,7 @@ }, /turf/simulated/floor/plating, /area/ai_monitored/storage/eva) -"aST" = ( +"aSS" = ( /obj/structure/table/rack{ dir = 8; layer = 2.9 @@ -26361,7 +26351,7 @@ }, /turf/simulated/floor/tiled/dark, /area/ai_monitored/storage/eva) -"aSU" = ( +"aST" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/cable{ d1 = 1; @@ -26374,7 +26364,7 @@ }, /turf/simulated/floor/plating, /area/maintenance/engineering) -"aSV" = ( +"aSU" = ( /obj/structure/cable{ d1 = 4; d2 = 8; @@ -26385,7 +26375,7 @@ }, /turf/simulated/floor/plating, /area/maintenance/engineering) -"aSW" = ( +"aSV" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/disposalpipe/segment{ dir = 4 @@ -26397,7 +26387,7 @@ }, /turf/simulated/floor/plating, /area/maintenance/engineering) -"aSX" = ( +"aSW" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/dirt, /obj/structure/disposalpipe/segment{ @@ -26405,7 +26395,7 @@ }, /turf/simulated/floor/plating, /area/maintenance/engineering) -"aSY" = ( +"aSX" = ( /obj/machinery/door/airlock/maintenance{ name = "Maintenance Access"; req_access = list(12) @@ -26416,13 +26406,13 @@ }, /turf/simulated/floor/plating, /area/security/lobby) -"aSZ" = ( +"aSY" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, /turf/simulated/floor/tiled, /area/security/lobby) -"aTa" = ( +"aSZ" = ( /obj/effect/floor_decal/corner/blue{ icon_state = "corner_white"; dir = 9 @@ -26433,7 +26423,7 @@ }, /turf/simulated/floor/tiled, /area/security/lobby) -"aTb" = ( +"aTa" = ( /obj/machinery/light, /obj/machinery/camera/network/security{ c_tag = "Security - Lobby"; @@ -26454,7 +26444,7 @@ }, /turf/simulated/floor/tiled, /area/security/lobby) -"aTc" = ( +"aTb" = ( /obj/effect/floor_decal/corner/blue{ icon_state = "corner_white"; dir = 6 @@ -26471,7 +26461,7 @@ }, /turf/simulated/floor/tiled, /area/security/lobby) -"aTd" = ( +"aTc" = ( /obj/machinery/alarm{ dir = 1; pixel_y = -25 @@ -26483,7 +26473,7 @@ }, /turf/simulated/floor/tiled, /area/security/lobby) -"aTe" = ( +"aTd" = ( /obj/structure/cable/green{ d1 = 4; d2 = 8; @@ -26496,7 +26486,7 @@ }, /turf/simulated/floor/tiled, /area/security/lobby) -"aTf" = ( +"aTe" = ( /obj/structure/cable/green{ d1 = 4; d2 = 8; @@ -26504,7 +26494,7 @@ }, /turf/simulated/floor/tiled, /area/security/lobby) -"aTg" = ( +"aTf" = ( /obj/machinery/door/airlock{ id_tag = "visitdoor"; name = "Visitation Area"; @@ -26518,7 +26508,7 @@ }, /turf/simulated/floor/tiled, /area/security/lobby) -"aTh" = ( +"aTg" = ( /obj/machinery/light/small{ dir = 4 }, @@ -26533,7 +26523,7 @@ }, /turf/simulated/floor/tiled, /area/security/lobby) -"aTi" = ( +"aTh" = ( /obj/machinery/door/firedoor, /obj/structure/grille, /obj/structure/window/reinforced, @@ -26560,7 +26550,7 @@ }, /turf/simulated/floor/plating, /area/security/prison) -"aTj" = ( +"aTi" = ( /obj/machinery/atmospherics/unary/vent_pump/on{ dir = 4 }, @@ -26573,7 +26563,7 @@ }, /turf/simulated/floor/tiled, /area/security/prison) -"aTk" = ( +"aTj" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 5 }, @@ -26582,7 +26572,7 @@ }, /turf/simulated/floor/tiled, /area/security/prison) -"aTl" = ( +"aTk" = ( /obj/machinery/door/airlock{ name = "Visitation Area" }, @@ -26603,7 +26593,7 @@ }, /turf/simulated/floor/tiled, /area/security/prison) -"aTm" = ( +"aTl" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 }, @@ -26612,7 +26602,7 @@ }, /turf/simulated/floor/tiled, /area/security/prison) -"aTn" = ( +"aTm" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 }, @@ -26624,7 +26614,7 @@ }, /turf/simulated/floor/tiled, /area/security/prison) -"aTo" = ( +"aTn" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 }, @@ -26636,7 +26626,7 @@ }, /turf/simulated/floor/tiled, /area/security/prison) -"aTp" = ( +"aTo" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ icon_state = "intact-supply"; dir = 9 @@ -26647,16 +26637,16 @@ /obj/machinery/firealarm/south, /turf/simulated/floor/tiled, /area/security/prison) -"aTq" = ( +"aTp" = ( /obj/machinery/portable_atmospherics/hydroponics, /turf/simulated/floor/tiled, /area/security/prison) -"aTr" = ( +"aTq" = ( /obj/machinery/portable_atmospherics/hydroponics, /obj/machinery/light, /turf/simulated/floor/tiled, /area/security/prison) -"aTs" = ( +"aTr" = ( /obj/structure/reagent_dispensers/watertank, /obj/item/weapon/reagent_containers/glass/bucket, /obj/machinery/camera/network/prison{ @@ -26665,7 +26655,7 @@ }, /turf/simulated/floor/tiled, /area/security/prison) -"aTt" = ( +"aTs" = ( /obj/structure/closet/crate/trashcart, /obj/item/toy/figure/secofficer{ pixel_x = -3; @@ -26697,7 +26687,7 @@ }, /turf/simulated/floor/tiled, /area/security/prison) -"aTu" = ( +"aTt" = ( /obj/structure/table/standard, /obj/item/weapon/material/minihoe, /obj/item/device/analyzer/plant_analyzer, @@ -26709,7 +26699,7 @@ }, /turf/simulated/floor/tiled, /area/security/prison) -"aTv" = ( +"aTu" = ( /obj/structure/closet/secure_closet/brig{ id = "Cell 5"; name = "Cell 5 Locker" @@ -26720,7 +26710,7 @@ }, /turf/simulated/floor/tiled, /area/security/prison) -"aTw" = ( +"aTv" = ( /obj/structure/bed, /obj/machinery/atmospherics/unary/vent_pump/on{ dir = 1 @@ -26731,7 +26721,7 @@ }, /turf/simulated/floor/tiled, /area/security/prison) -"aTx" = ( +"aTw" = ( /obj/structure/cable/green{ d1 = 1; d2 = 8; @@ -26739,11 +26729,11 @@ }, /turf/simulated/floor/tiled, /area/security/brig) -"aTy" = ( +"aTx" = ( /obj/machinery/firealarm/east, /turf/simulated/floor/tiled, /area/security/brig) -"aTz" = ( +"aTy" = ( /obj/structure/cable{ d1 = 2; d2 = 4; @@ -26751,7 +26741,7 @@ }, /turf/simulated/floor/tiled, /area/store) -"aTA" = ( +"aTz" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 5 @@ -26763,19 +26753,19 @@ }, /turf/simulated/floor/tiled, /area/store) -"aTB" = ( +"aTA" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, /turf/simulated/floor/tiled, /area/store) -"aTC" = ( +"aTB" = ( /obj/machinery/atmospherics/unary/vent_pump/on{ dir = 8 }, /turf/simulated/floor/tiled, /area/store) -"aTD" = ( +"aTC" = ( /obj/structure/bed/chair/office/light{ dir = 1 }, @@ -26785,7 +26775,7 @@ }, /turf/simulated/floor/tiled, /area/store) -"aTE" = ( +"aTD" = ( /obj/structure/table/rack{ dir = 1 }, @@ -26797,14 +26787,14 @@ /obj/item/clothing/glasses/meson, /turf/simulated/floor/plating, /area/maintenance/maintcentral) -"aTF" = ( +"aTE" = ( /obj/random/junk, /obj/structure/closet/hydrant{ pixel_x = 32 }, /turf/simulated/floor/plating, /area/maintenance/maintcentral) -"aTG" = ( +"aTF" = ( /obj/item/device/radio/intercom{ pixel_x = -27 }, @@ -26816,7 +26806,7 @@ /obj/effect/floor_decal/industrial/outline/yellow, /turf/simulated/floor/tiled, /area/hallway/primary/starboard) -"aTH" = ( +"aTG" = ( /obj/structure/grille, /obj/structure/window/reinforced{ dir = 8 @@ -26826,11 +26816,11 @@ }, /turf/simulated/floor/plating, /area/hallway/primary/starboard) -"aTI" = ( +"aTH" = ( /obj/effect/floor_decal/industrial/hatch/yellow, /turf/simulated/floor/tiled, /area/hallway/primary/starboard) -"aTJ" = ( +"aTI" = ( /obj/structure/window/reinforced/polarized{ dir = 4; id = "hop" @@ -26860,25 +26850,25 @@ }, /turf/simulated/floor/plating, /area/crew_quarters/heads/hop) -"aTK" = ( +"aTJ" = ( /obj/machinery/computer/secure_data, /turf/simulated/floor/wood, /area/crew_quarters/heads/hop) -"aTL" = ( +"aTK" = ( /obj/structure/disposalpipe/segment, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 5 }, /turf/simulated/floor/wood, /area/crew_quarters/heads/hop) -"aTM" = ( +"aTL" = ( /obj/machinery/atmospherics/unary/vent_pump/on{ dir = 8 }, /obj/structure/closet/secure_closet/hop2, /turf/simulated/floor/wood, /area/crew_quarters/heads/hop) -"aTN" = ( +"aTM" = ( /obj/structure/bed/chair/office/bridge{ icon_state = "bridge"; dir = 4 @@ -26894,7 +26884,7 @@ }, /turf/simulated/floor/carpet, /area/bridge/meeting_room) -"aTO" = ( +"aTN" = ( /obj/structure/table/wood, /obj/item/weapon/folder/blue, /obj/effect/floor_decal/spline/fancy/wood{ @@ -26903,20 +26893,20 @@ }, /turf/simulated/floor/carpet, /area/bridge/meeting_room) -"aTP" = ( +"aTO" = ( /obj/effect/floor_decal/corner/brown{ icon_state = "corner_white"; dir = 6 }, /turf/simulated/floor/tiled/dark, /area/bridge/meeting_room) -"aTQ" = ( +"aTP" = ( /obj/effect/floor_decal/corner/lime{ dir = 6 }, /turf/simulated/floor/tiled/dark, /area/bridge/meeting_room) -"aTR" = ( +"aTQ" = ( /obj/machinery/door/firedoor, /obj/structure/grille, /obj/structure/window/reinforced/polarized{ @@ -26932,7 +26922,7 @@ }, /turf/simulated/floor/plating, /area/bridge/meeting_room) -"aTS" = ( +"aTR" = ( /obj/machinery/atmospherics/pipe/manifold/hidden/supply{ dir = 8 }, @@ -26952,7 +26942,7 @@ /obj/effect/floor_decal/corner/paleblue/diagonal, /turf/simulated/floor/tiled/white, /area/bridge) -"aTT" = ( +"aTS" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, @@ -26967,7 +26957,7 @@ /obj/effect/floor_decal/corner/paleblue/diagonal, /turf/simulated/floor/tiled/white, /area/bridge) -"aTU" = ( +"aTT" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, @@ -26982,7 +26972,7 @@ /obj/effect/floor_decal/corner/paleblue/full, /turf/simulated/floor/tiled, /area/bridge) -"aTV" = ( +"aTU" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, @@ -27002,7 +26992,7 @@ dir = 4 }, /area/bridge) -"aTW" = ( +"aTV" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, @@ -27021,7 +27011,7 @@ }, /turf/simulated/floor/tiled, /area/bridge) -"aTX" = ( +"aTW" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, @@ -27040,7 +27030,7 @@ }, /turf/simulated/floor/tiled, /area/bridge) -"aTY" = ( +"aTX" = ( /obj/machinery/door/airlock/glass_command{ name = "B Lift Access"; req_access = list(19) @@ -27060,7 +27050,7 @@ /obj/effect/floor_decal/industrial/hatch/yellow, /turf/simulated/floor/tiled/dark, /area/bridge/ailobby) -"aTZ" = ( +"aTY" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, @@ -27074,7 +27064,7 @@ }, /turf/simulated/floor/tiled/dark, /area/bridge/ailobby) -"aUa" = ( +"aTZ" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 10 }, @@ -27086,7 +27076,7 @@ }, /turf/simulated/floor/tiled/dark, /area/bridge/ailobby) -"aUb" = ( +"aUa" = ( /obj/machinery/alarm{ pixel_y = 23 }, @@ -27095,7 +27085,7 @@ }, /turf/simulated/floor/tiled/dark, /area/bridge/ailobby) -"aUc" = ( +"aUb" = ( /obj/machinery/light{ dir = 1 }, @@ -27107,7 +27097,7 @@ }, /turf/simulated/floor/tiled/dark, /area/bridge/ailobby) -"aUd" = ( +"aUc" = ( /obj/machinery/atmospherics/unary/vent_scrubber/on{ dir = 8 }, @@ -27117,10 +27107,10 @@ }, /turf/simulated/floor/tiled/dark, /area/bridge/ailobby) -"aUe" = ( +"aUd" = ( /turf/simulated/floor/tiled/dark, /area/bridge/ailobby) -"aUf" = ( +"aUe" = ( /obj/machinery/door/firedoor, /obj/machinery/door/airlock/command{ name = "Cyborg Station"; @@ -27128,7 +27118,7 @@ }, /turf/simulated/floor/tiled/dark, /area/bridge/ailobby) -"aUg" = ( +"aUf" = ( /obj/structure/window/reinforced{ dir = 4 }, @@ -27137,12 +27127,12 @@ }, /turf/simulated/floor/tiled/dark, /area/bridge/ailobby) -"aUh" = ( +"aUg" = ( /obj/machinery/recharge_station, /obj/effect/floor_decal/industrial/hatch/yellow, /turf/simulated/floor/tiled/dark, /area/bridge/ailobby) -"aUi" = ( +"aUh" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/structure/cable{ @@ -27153,10 +27143,10 @@ }, /turf/simulated/floor/plating, /area/maintenance/research_port) -"aUj" = ( +"aUi" = ( /turf/simulated/wall/r_wall, /area/janitor) -"aUk" = ( +"aUj" = ( /obj/structure/cable/green{ d2 = 4; icon_state = "0-4" @@ -27174,7 +27164,7 @@ }, /turf/simulated/floor/plating, /area/crew_quarters/heads/chief) -"aUl" = ( +"aUk" = ( /obj/structure/cable/green{ d1 = 1; d2 = 8; @@ -27195,7 +27185,7 @@ }, /turf/simulated/floor/plating, /area/crew_quarters/heads/chief) -"aUm" = ( +"aUl" = ( /obj/structure/cable/green{ d1 = 4; d2 = 8; @@ -27214,7 +27204,7 @@ }, /turf/simulated/floor/plating, /area/crew_quarters/heads/chief) -"aUn" = ( +"aUm" = ( /obj/structure/cable/green{ d2 = 8; icon_state = "0-8" @@ -27232,11 +27222,11 @@ }, /turf/simulated/floor/plating, /area/crew_quarters/heads/chief) -"aUo" = ( +"aUn" = ( /obj/structure/sign/securearea, /turf/simulated/wall/r_wall, /area/engineering/foyer) -"aUp" = ( +"aUo" = ( /obj/structure/grille, /obj/structure/window/reinforced{ icon_state = "rwindow"; @@ -27257,7 +27247,7 @@ }, /turf/simulated/floor/plating, /area/engineering/foyer) -"aUq" = ( +"aUp" = ( /obj/machinery/door/firedoor, /obj/machinery/door/airlock/glass_engineering{ name = "Engineering Hallway"; @@ -27273,7 +27263,7 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/tiled, /area/engineering/foyer) -"aUr" = ( +"aUq" = ( /obj/machinery/door/firedoor, /obj/machinery/door/airlock/glass_engineering{ name = "Engineering Hallway"; @@ -27282,7 +27272,7 @@ /obj/structure/disposalpipe/segment, /turf/simulated/floor/tiled, /area/engineering/foyer) -"aUs" = ( +"aUr" = ( /obj/structure/grille, /obj/structure/window/reinforced{ icon_state = "rwindow"; @@ -27299,32 +27289,32 @@ /obj/structure/cable/green, /turf/simulated/floor/plating, /area/engineering/foyer) -"aUt" = ( +"aUs" = ( /obj/structure/sign/securearea, /turf/simulated/wall, /area/engineering/foyer) -"aUu" = ( +"aUt" = ( /obj/effect/floor_decal/corner/yellow/full{ icon_state = "corner_white_full"; dir = 8 }, /turf/simulated/floor/tiled, /area/engineering/foyer) -"aUv" = ( +"aUu" = ( /obj/effect/floor_decal/corner/yellow{ icon_state = "corner_white"; dir = 5 }, /turf/simulated/floor/tiled, /area/engineering/foyer) -"aUw" = ( +"aUv" = ( /obj/effect/floor_decal/corner/yellow/full{ icon_state = "corner_white_full"; dir = 1 }, /turf/simulated/floor/tiled, /area/engineering/foyer) -"aUx" = ( +"aUw" = ( /obj/structure/grille, /obj/structure/window/reinforced{ dir = 8 @@ -27342,7 +27332,7 @@ }, /turf/simulated/floor/plating, /area/ai_monitored/storage/eva) -"aUy" = ( +"aUx" = ( /obj/structure/grille, /obj/structure/window/reinforced{ dir = 1 @@ -27365,7 +27355,7 @@ }, /turf/simulated/floor/plating, /area/ai_monitored/storage/eva) -"aUz" = ( +"aUy" = ( /obj/machinery/door/firedoor, /obj/machinery/door/airlock/glass_command{ name = "E.V.A."; @@ -27385,7 +27375,7 @@ }, /turf/simulated/floor/tiled/dark, /area/ai_monitored/storage/eva) -"aUA" = ( +"aUz" = ( /obj/structure/grille, /obj/structure/window/reinforced{ dir = 1 @@ -27408,7 +27398,7 @@ }, /turf/simulated/floor/plating, /area/ai_monitored/storage/eva) -"aUB" = ( +"aUA" = ( /obj/structure/grille, /obj/structure/window/reinforced{ dir = 1 @@ -27426,10 +27416,10 @@ }, /turf/simulated/floor/plating, /area/ai_monitored/storage/eva) -"aUC" = ( +"aUB" = ( /turf/simulated/wall, /area/hallway/primary/port) -"aUD" = ( +"aUC" = ( /obj/machinery/door/firedoor, /obj/machinery/door/airlock/maintenance{ name = "Maintenance Access"; @@ -27443,10 +27433,10 @@ }, /turf/simulated/floor/plating, /area/hallway/primary/port) -"aUE" = ( +"aUD" = ( /turf/simulated/wall, /area/hallway/primary/central_one) -"aUF" = ( +"aUE" = ( /obj/machinery/door/firedoor, /obj/machinery/door/airlock/glass_security{ desc = "It opens and closes. Hazardous lifeforms ahead. Caution advised!"; @@ -27454,7 +27444,7 @@ }, /turf/simulated/floor/tiled, /area/security/lobby) -"aUG" = ( +"aUF" = ( /obj/structure/grille, /obj/structure/window/reinforced, /obj/structure/window/reinforced{ @@ -27470,7 +27460,7 @@ /obj/structure/cable/green, /turf/simulated/floor/plating, /area/security/lobby) -"aUH" = ( +"aUG" = ( /obj/machinery/door/firedoor, /obj/machinery/door/blast/regular{ density = 0; @@ -27488,14 +27478,14 @@ }, /turf/simulated/floor/tiled, /area/security/brig) -"aUI" = ( +"aUH" = ( /obj/machinery/light{ icon_state = "tube1"; dir = 4 }, /turf/simulated/floor/tiled, /area/hallway/primary/starboard) -"aUJ" = ( +"aUI" = ( /obj/machinery/door/window/northleft{ dir = 4; icon_state = "left"; @@ -27507,7 +27497,7 @@ }, /turf/simulated/floor/tiled/dark, /area/store) -"aUK" = ( +"aUJ" = ( /obj/structure/cable{ d1 = 1; d2 = 2; @@ -27515,13 +27505,13 @@ }, /turf/simulated/floor/tiled, /area/store) -"aUL" = ( +"aUK" = ( /obj/machinery/atmospherics/unary/vent_scrubber/on{ dir = 1 }, /turf/simulated/floor/tiled, /area/store) -"aUM" = ( +"aUL" = ( /obj/machinery/alarm{ dir = 8; pixel_x = 25; @@ -27529,7 +27519,7 @@ }, /turf/simulated/floor/tiled, /area/store) -"aUN" = ( +"aUM" = ( /obj/structure/cable/green{ d1 = 1; d2 = 2; @@ -27538,7 +27528,7 @@ /obj/effect/floor_decal/industrial/outline/yellow, /turf/simulated/floor/tiled, /area/hallway/primary/starboard) -"aUO" = ( +"aUN" = ( /obj/structure/grille, /obj/structure/window/reinforced{ dir = 8 @@ -27549,26 +27539,26 @@ /obj/structure/window/reinforced, /turf/simulated/floor/plating, /area/hallway/primary/starboard) -"aUP" = ( +"aUO" = ( /obj/structure/table/reinforced, /obj/machinery/computer/skills, /turf/simulated/floor/wood, /area/crew_quarters/heads/hop) -"aUQ" = ( +"aUP" = ( /obj/machinery/hologram/holopad, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/wood, /area/crew_quarters/heads/hop) -"aUR" = ( +"aUQ" = ( /obj/structure/disposalpipe/segment, /turf/simulated/floor/wood, /area/crew_quarters/heads/hop) -"aUS" = ( +"aUR" = ( /obj/structure/closet/secure_closet/hop, /obj/item/weapon/book/manual/security_space_law, /turf/simulated/floor/wood, /area/crew_quarters/heads/hop) -"aUT" = ( +"aUS" = ( /obj/machinery/alarm{ dir = 4; icon_state = "alarm0"; @@ -27577,7 +27567,7 @@ }, /turf/simulated/floor/carpet, /area/bridge/meeting_room) -"aUU" = ( +"aUT" = ( /obj/structure/table/wood, /obj/item/weapon/paper_bin{ pixel_x = -3; @@ -27590,7 +27580,7 @@ }, /turf/simulated/floor/carpet, /area/bridge/meeting_room) -"aUV" = ( +"aUU" = ( /obj/structure/table/reinforced, /obj/item/weapon/folder/blue, /obj/item/weapon/folder/blue, @@ -27601,11 +27591,11 @@ /obj/item/weapon/pen, /turf/simulated/floor/tiled/dark, /area/bridge/meeting_room) -"aUW" = ( +"aUV" = ( /obj/machinery/atmospherics/unary/vent_pump/on, /turf/simulated/floor/tiled/dark, /area/bridge/meeting_room) -"aUX" = ( +"aUW" = ( /obj/structure/table/reinforced, /obj/item/weapon/folder/blue, /obj/item/weapon/folder/blue, @@ -27617,7 +27607,7 @@ /obj/machinery/firealarm/east, /turf/simulated/floor/tiled/dark, /area/bridge/meeting_room) -"aUY" = ( +"aUX" = ( /obj/effect/floor_decal/corner/paleblue/full{ icon_state = "corner_white_full"; dir = 8 @@ -27627,7 +27617,7 @@ }, /turf/simulated/floor/tiled, /area/bridge) -"aUZ" = ( +"aUY" = ( /obj/machinery/power/apc{ dir = 2; name = "south bump"; @@ -27636,7 +27626,7 @@ /obj/structure/cable/green, /turf/simulated/floor/tiled, /area/bridge) -"aVa" = ( +"aUZ" = ( /obj/effect/floor_decal/industrial/outline/yellow, /obj/effect/floor_decal/industrial/warning{ icon_state = "warning"; @@ -27644,7 +27634,7 @@ }, /turf/simulated/floor/tiled, /area/bridge) -"aVb" = ( +"aVa" = ( /obj/machinery/door/firedoor, /obj/effect/floor_decal/industrial/hatch/yellow, /obj/machinery/door/airlock/glass_command{ @@ -27653,7 +27643,7 @@ }, /turf/simulated/floor/tiled/dark, /area/bridge/ailobby) -"aVc" = ( +"aVb" = ( /obj/structure/cable/green, /obj/machinery/power/apc{ dir = 2; @@ -27662,15 +27652,15 @@ }, /turf/simulated/floor/tiled/dark, /area/bridge/ailobby) -"aVd" = ( +"aVc" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /turf/simulated/floor/tiled/dark, /area/bridge/ailobby) -"aVe" = ( +"aVd" = ( /obj/machinery/hologram/holopad, /turf/simulated/floor/tiled/dark, /area/bridge/ailobby) -"aVf" = ( +"aVe" = ( /obj/structure/bed/chair{ dir = 8 }, @@ -27682,7 +27672,7 @@ }, /turf/simulated/floor/tiled/dark, /area/bridge/ailobby) -"aVg" = ( +"aVf" = ( /obj/machinery/light{ dir = 4; icon_state = "tube1"; @@ -27693,7 +27683,7 @@ }, /turf/simulated/floor/tiled/dark, /area/bridge/ailobby) -"aVh" = ( +"aVg" = ( /obj/structure/cable{ d1 = 1; d2 = 2; @@ -27705,7 +27695,7 @@ /obj/machinery/door/firedoor, /turf/simulated/floor/plating, /area/maintenance/research_port) -"aVi" = ( +"aVh" = ( /obj/structure/sign/double/map/left{ pixel_y = 32 }, @@ -27725,14 +27715,14 @@ }, /turf/simulated/floor/tiled, /area/janitor) -"aVj" = ( +"aVi" = ( /obj/item/weapon/stool, /obj/structure/sign/double/map/right{ pixel_y = 32 }, /turf/simulated/floor/tiled, /area/janitor) -"aVk" = ( +"aVj" = ( /obj/structure/table/steel, /obj/item/weapon/deck/cards, /obj/item/weapon/key/janicart, @@ -27742,7 +27732,7 @@ }, /turf/simulated/floor/tiled, /area/janitor) -"aVl" = ( +"aVk" = ( /obj/effect/floor_decal/industrial/warning{ dir = 8 }, @@ -27752,11 +27742,11 @@ }, /turf/simulated/floor/tiled/dark, /area/janitor) -"aVm" = ( +"aVl" = ( /obj/vehicle/train/cargo/engine/pussywagon, /turf/simulated/floor/tiled/dark, /area/janitor) -"aVn" = ( +"aVm" = ( /obj/machinery/button/remote/blast_door{ id = "mopinator"; name = "Custodial Garage"; @@ -27765,7 +27755,7 @@ }, /turf/simulated/floor/tiled/dark, /area/janitor) -"aVo" = ( +"aVn" = ( /obj/machinery/door/blast/shutters{ density = 1; dir = 4; @@ -27776,30 +27766,30 @@ }, /turf/simulated/floor/tiled/dark, /area/janitor) -"aVp" = ( +"aVo" = ( /obj/effect/floor_decal/industrial/loading{ icon_state = "loadingarea"; dir = 4 }, /turf/simulated/floor/tiled, /area/engineering/foyer) -"aVq" = ( +"aVp" = ( /obj/machinery/light{ dir = 1 }, /turf/simulated/floor/tiled, /area/engineering/foyer) -"aVr" = ( +"aVq" = ( /obj/machinery/atmospherics/unary/vent_scrubber/on, /turf/simulated/floor/tiled, /area/engineering/foyer) -"aVs" = ( +"aVr" = ( /obj/machinery/alarm{ pixel_y = 23 }, /turf/simulated/floor/tiled, /area/engineering/foyer) -"aVt" = ( +"aVs" = ( /obj/structure/cable/green{ d1 = 1; d2 = 2; @@ -27814,7 +27804,7 @@ }, /turf/simulated/floor/tiled, /area/engineering/foyer) -"aVu" = ( +"aVt" = ( /obj/structure/cable{ d1 = 1; d2 = 2; @@ -27829,7 +27819,7 @@ }, /turf/simulated/floor/tiled, /area/engineering/foyer) -"aVv" = ( +"aVu" = ( /obj/structure/disposalpipe/segment, /obj/effect/floor_decal/corner/yellow{ icon_state = "corner_white"; @@ -27837,14 +27827,14 @@ }, /turf/simulated/floor/tiled, /area/engineering/foyer) -"aVw" = ( +"aVv" = ( /obj/effect/floor_decal/corner/yellow{ icon_state = "corner_white"; dir = 1 }, /turf/simulated/floor/tiled, /area/engineering/foyer) -"aVx" = ( +"aVw" = ( /obj/machinery/door/firedoor, /obj/machinery/door/airlock/glass_engineering{ name = "Engineering Hallway"; @@ -27852,14 +27842,14 @@ }, /turf/simulated/floor/tiled, /area/engineering/foyer) -"aVy" = ( +"aVx" = ( /obj/effect/floor_decal/corner/yellow{ icon_state = "corner_white"; dir = 9 }, /turf/simulated/floor/tiled, /area/hallway/primary/port) -"aVz" = ( +"aVy" = ( /obj/structure/sign/directions/engineering{ dir = 8; icon_state = "direction_eng"; @@ -27880,16 +27870,16 @@ }, /turf/simulated/floor/tiled, /area/hallway/primary/port) -"aVA" = ( +"aVz" = ( /obj/item/device/radio/intercom{ pixel_y = 27 }, /turf/simulated/floor/tiled, /area/hallway/primary/port) -"aVB" = ( +"aVA" = ( /turf/simulated/floor/tiled, /area/hallway/primary/port) -"aVC" = ( +"aVB" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/structure/cable{ @@ -27900,30 +27890,30 @@ }, /turf/simulated/floor/tiled, /area/hallway/primary/port) -"aVD" = ( +"aVC" = ( /obj/machinery/light{ dir = 1 }, /turf/simulated/floor/tiled, /area/hallway/primary/port) -"aVE" = ( +"aVD" = ( /obj/machinery/atmospherics/unary/vent_scrubber/on, /obj/structure/extinguisher_cabinet{ pixel_y = 32 }, /turf/simulated/floor/tiled, /area/hallway/primary/port) -"aVF" = ( +"aVE" = ( /obj/machinery/alarm{ pixel_y = 23 }, /turf/simulated/floor/tiled, /area/hallway/primary/port) -"aVG" = ( +"aVF" = ( /obj/machinery/firealarm/north, /turf/simulated/floor/tiled, /area/hallway/primary/port) -"aVH" = ( +"aVG" = ( /obj/structure/cable{ d1 = 1; d2 = 2; @@ -27932,19 +27922,19 @@ }, /turf/simulated/floor/tiled, /area/hallway/primary/port) -"aVI" = ( +"aVH" = ( /obj/machinery/door/firedoor, /turf/simulated/floor/tiled, /area/hallway/primary/port) -"aVJ" = ( +"aVI" = ( /obj/machinery/door/airlock/glass, /turf/simulated/floor/tiled, /area/hallway/primary/port) -"aVK" = ( +"aVJ" = ( /obj/machinery/door/firedoor, /turf/simulated/floor/tiled, /area/hallway/primary/central_one) -"aVL" = ( +"aVK" = ( /obj/structure/sign/directions/engineering{ dir = 8; icon_state = "direction_eng"; @@ -27959,7 +27949,7 @@ }, /turf/simulated/floor/tiled, /area/hallway/primary/central_one) -"aVM" = ( +"aVL" = ( /obj/structure/sign/directions/cryo{ pixel_y = 28 }, @@ -27971,7 +27961,7 @@ }, /turf/simulated/floor/tiled, /area/hallway/primary/central_one) -"aVN" = ( +"aVM" = ( /obj/structure/sign/directions/security{ dir = 4; icon_state = "direction_sec"; @@ -27990,19 +27980,19 @@ }, /turf/simulated/floor/tiled, /area/hallway/primary/central_one) -"aVO" = ( +"aVN" = ( /obj/structure/sign/double/map/left{ pixel_y = 32 }, /turf/simulated/floor/tiled, /area/hallway/primary/central_one) -"aVP" = ( +"aVO" = ( /obj/structure/sign/double/map/right{ pixel_y = 32 }, /turf/simulated/floor/tiled, /area/hallway/primary/central_one) -"aVQ" = ( +"aVP" = ( /obj/machinery/newscaster{ pixel_y = 32 }, @@ -28011,13 +28001,13 @@ }, /turf/simulated/floor/tiled, /area/hallway/primary/central_one) -"aVR" = ( +"aVQ" = ( /obj/effect/floor_decal/corner/blue{ dir = 5 }, /turf/simulated/floor/tiled, /area/hallway/primary/central_one) -"aVS" = ( +"aVR" = ( /obj/effect/floor_decal/corner/blue{ dir = 5 }, @@ -28041,25 +28031,25 @@ }, /turf/simulated/floor/tiled, /area/hallway/primary/central_one) -"aVT" = ( +"aVS" = ( /obj/effect/floor_decal/corner/blue{ dir = 1 }, /turf/simulated/floor/tiled, /area/hallway/primary/central_one) -"aVU" = ( +"aVT" = ( /obj/structure/extinguisher_cabinet{ pixel_y = 32 }, /turf/simulated/floor/tiled, /area/hallway/primary/central_one) -"aVV" = ( +"aVU" = ( /obj/machinery/station_map{ pixel_y = 32 }, /turf/simulated/floor/tiled, /area/hallway/primary/central_one) -"aVW" = ( +"aVV" = ( /obj/structure/sign/directions/engineering{ dir = 8; icon_state = "direction_eng"; @@ -28079,7 +28069,7 @@ }, /turf/simulated/floor/tiled, /area/hallway/primary/central_one) -"aVX" = ( +"aVW" = ( /obj/structure/sign/directions/evac{ dir = 8; icon_state = "direction_evac"; @@ -28096,7 +28086,7 @@ }, /turf/simulated/floor/tiled, /area/hallway/primary/central_one) -"aVY" = ( +"aVX" = ( /obj/structure/sign/directions/civ{ pixel_y = 24 }, @@ -28113,10 +28103,16 @@ }, /turf/simulated/floor/tiled, /area/hallway/primary/central_one) -"aVZ" = ( +"aVY" = ( /obj/machinery/door/airlock/glass, /turf/simulated/floor/tiled, /area/hallway/primary/starboard) +"aVZ" = ( +/obj/machinery/camera/network/civilian_west{ + c_tag = "Starboard Corridor - Camera 1" + }, +/turf/simulated/floor/tiled, +/area/hallway/primary/starboard) "aWa" = ( /obj/item/device/radio/intercom{ pixel_y = 27 @@ -34487,13 +34483,13 @@ icon_state = "corner_white"; dir = 5 }, -/obj/structure/disposalpipe/segment{ - icon_state = "conpipe-c"; - dir = 4 - }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 }, +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, /turf/simulated/floor/tiled, /area/medical/reception) "bhe" = ( @@ -36683,6 +36679,10 @@ /obj/item/weapon/reagent_containers/blood/BPlus, /obj/item/weapon/reagent_containers/blood/OPlus, /obj/item/weapon/reagent_containers/blood/OPlus, +/obj/machinery/camera/network/medbay{ + c_tag = "Medical - Cold Storage"; + dir = 2 + }, /turf/simulated/floor/tiled/freezer{ name = "cold storage tiles"; temperature = 278 @@ -36916,8 +36916,8 @@ layer = 3 }, /obj/item/weapon/reagent_containers/pill/methylphenidate, -/obj/item/weapon/reagent_containers/pill/citalopram, -/obj/item/weapon/reagent_containers/pill/citalopram, +/obj/item/weapon/reagent_containers/pill/escitalopram, +/obj/item/weapon/reagent_containers/pill/escitalopram, /obj/item/weapon/reagent_containers/syringe, /turf/simulated/floor/carpet, /area/medical/psych) @@ -43433,7 +43433,7 @@ dir = 8; icon_state = "pipe-j1s"; name = "Medical Bay"; - sortType = "Chemistry" + sortType = "Medical Bay" }, /obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, /obj/machinery/atmospherics/pipe/manifold4w/hidden/supply, @@ -45608,12 +45608,23 @@ /turf/simulated/floor/plating, /area/medical/cryo) "byG" = ( +/obj/machinery/atmospherics/unary/freezer{ + dir = 2; + icon_state = "freezer" + }, +/obj/machinery/camera/network/medbay{ + c_tag = "Medical - Cryogenics Control Room"; + dir = 2 + }, +/turf/simulated/floor/plating, +/area/medical/cryo) +"byH" = ( /obj/machinery/atmospherics/pipe/simple/hidden{ dir = 6 }, /turf/simulated/floor/tiled/white, /area/medical/medbay) -"byH" = ( +"byI" = ( /obj/effect/floor_decal/corner/pink{ icon_state = "corner_white"; dir = 6 @@ -45633,7 +45644,7 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/tiled/white, /area/medical/medbay) -"byI" = ( +"byJ" = ( /obj/effect/floor_decal/industrial/hatch/yellow, /obj/machinery/door/firedoor, /obj/machinery/atmospherics/pipe/simple/hidden{ @@ -45650,18 +45661,18 @@ }, /turf/simulated/floor/tiled, /area/medical/icu) -"byJ" = ( +"byK" = ( /obj/machinery/atmospherics/pipe/manifold/hidden, /turf/simulated/floor/tiled/white, /area/medical/icu) -"byK" = ( +"byL" = ( /obj/machinery/atmospherics/pipe/simple/hidden{ icon_state = "intact"; dir = 4 }, /turf/simulated/floor/tiled/white, /area/medical/icu) -"byL" = ( +"byM" = ( /obj/machinery/atmospherics/pipe/simple/hidden{ icon_state = "intact"; dir = 4 @@ -45677,14 +45688,14 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/tiled/white, /area/medical/icu) -"byM" = ( +"byN" = ( /obj/machinery/atmospherics/pipe/simple/hidden{ dir = 9; icon_state = "intact" }, /turf/simulated/floor/tiled/white, /area/medical/icu) -"byN" = ( +"byO" = ( /obj/effect/floor_decal/corner/pink{ icon_state = "corner_white"; dir = 6 @@ -45700,20 +45711,20 @@ }, /turf/simulated/floor/tiled/white, /area/medical/icu) -"byO" = ( +"byP" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 6 }, /turf/simulated/floor/tiled/white, /area/medical/gen_treatment) -"byP" = ( +"byQ" = ( /obj/machinery/atmospherics/unary/vent_scrubber/on{ dir = 8 }, /turf/simulated/floor/tiled/white, /area/medical/gen_treatment) -"byQ" = ( +"byR" = ( /obj/effect/floor_decal/corner/beige{ icon_state = "corner_white"; dir = 6 @@ -45726,7 +45737,7 @@ /obj/effect/floor_decal/industrial/outline/grey, /turf/simulated/floor/tiled/white, /area/medical/gen_treatment) -"byR" = ( +"byS" = ( /obj/effect/floor_decal/corner/beige{ icon_state = "corner_white"; dir = 9 @@ -45740,7 +45751,7 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/tiled/white, /area/medical/medbay2) -"byS" = ( +"byT" = ( /obj/machinery/computer/cloning, /obj/effect/floor_decal/corner/paleblue{ icon_state = "corner_white"; @@ -45751,13 +45762,13 @@ }, /turf/simulated/floor/tiled/white, /area/medical/genetics_cloning) -"byT" = ( +"byU" = ( /obj/structure/bed/chair/office/light{ dir = 8 }, /turf/simulated/floor/tiled/white, /area/medical/genetics_cloning) -"byU" = ( +"byV" = ( /obj/effect/floor_decal/corner/paleblue{ icon_state = "corner_white"; dir = 6 @@ -45765,14 +45776,14 @@ /obj/structure/closet, /turf/simulated/floor/tiled/white, /area/medical/genetics_cloning) -"byV" = ( +"byW" = ( /turf/simulated/wall, /area/medical/genetics_cloning) -"byW" = ( +"byX" = ( /obj/structure/table/rack, /turf/simulated/floor/plating, /area/maintenance/medbay) -"byX" = ( +"byY" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 6 }, @@ -45786,7 +45797,7 @@ }, /turf/simulated/floor/plating, /area/maintenance/medbay) -"byY" = ( +"byZ" = ( /obj/machinery/alarm{ pixel_y = 23 }, @@ -45804,7 +45815,7 @@ }, /turf/simulated/floor/plating, /area/maintenance/medbay) -"byZ" = ( +"bza" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, @@ -45819,7 +45830,7 @@ }, /turf/simulated/floor/plating, /area/maintenance/medbay) -"bza" = ( +"bzb" = ( /obj/structure/cable{ d1 = 1; d2 = 8; @@ -45833,7 +45844,7 @@ }, /turf/simulated/floor/plating, /area/maintenance/medbay) -"bzb" = ( +"bzc" = ( /obj/machinery/camera/network/command{ c_tag = "Bridge - Lift Lobby"; dir = 4 @@ -45847,14 +45858,14 @@ }, /turf/simulated/floor/tiled, /area/bridge) -"bzc" = ( +"bzd" = ( /obj/effect/floor_decal/corner/paleblue/full{ icon_state = "corner_white_full"; dir = 1 }, /turf/simulated/floor/tiled, /area/bridge) -"bzd" = ( +"bze" = ( /obj/effect/floor_decal/corner/paleblue{ icon_state = "corner_white"; dir = 5 @@ -45872,7 +45883,7 @@ }, /turf/simulated/floor/tiled, /area/bridge) -"bze" = ( +"bzf" = ( /obj/effect/floor_decal/corner/paleblue/full{ icon_state = "corner_white_full"; dir = 8 @@ -45890,7 +45901,7 @@ }, /turf/simulated/floor/tiled, /area/bridge) -"bzf" = ( +"bzg" = ( /obj/structure/cable/green{ d1 = 4; d2 = 8; @@ -45904,7 +45915,7 @@ }, /turf/simulated/floor/tiled, /area/bridge) -"bzg" = ( +"bzh" = ( /obj/machinery/door/airlock/maintenance{ req_access = list(19) }, @@ -45922,7 +45933,7 @@ }, /turf/simulated/floor/plating, /area/maintenance/maintcentral) -"bzh" = ( +"bzi" = ( /obj/structure/cable/green{ d1 = 2; d2 = 8; @@ -45936,7 +45947,7 @@ }, /turf/simulated/floor/plating, /area/maintenance/maintcentral) -"bzi" = ( +"bzj" = ( /obj/structure/grille, /obj/structure/window/reinforced{ dir = 1 @@ -45948,13 +45959,13 @@ /obj/machinery/door/firedoor, /turf/simulated/floor/plating, /area/maintenance/research_port) -"bzj" = ( +"bzk" = ( /obj/structure/bed/chair/comfy/black{ dir = 4 }, /turf/simulated/floor/carpet/blue, /area/rnd/rdoffice) -"bzk" = ( +"bzl" = ( /obj/structure/table/standard, /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/item/device/eftpos{ @@ -45962,7 +45973,7 @@ }, /turf/simulated/floor/carpet/blue, /area/rnd/rdoffice) -"bzl" = ( +"bzm" = ( /obj/structure/window/reinforced{ dir = 4 }, @@ -45974,7 +45985,7 @@ /obj/machinery/hologram/holopad, /turf/simulated/floor/carpet/blue, /area/rnd/rdoffice) -"bzm" = ( +"bzn" = ( /obj/effect/floor_decal/corner/purple{ dir = 9 }, @@ -45991,7 +46002,7 @@ }, /turf/simulated/floor/tiled, /area/rnd/rdoffice) -"bzn" = ( +"bzo" = ( /obj/machinery/atmospherics/unary/vent_pump/on{ dir = 1 }, @@ -46013,7 +46024,7 @@ }, /turf/simulated/floor/tiled, /area/rnd/rdoffice) -"bzo" = ( +"bzp" = ( /obj/effect/floor_decal/corner/grey/diagonal, /obj/structure/disposalpipe/segment{ dir = 8; @@ -46021,7 +46032,7 @@ }, /turf/simulated/floor/tiled/white, /area/rnd/rdoffice) -"bzp" = ( +"bzq" = ( /obj/structure/bed/chair/office/dark{ dir = 1 }, @@ -46049,12 +46060,12 @@ }, /turf/simulated/floor/tiled/white, /area/rnd/rdoffice) -"bzq" = ( +"bzr" = ( /obj/item/modular_computer/console/preset/research, /obj/effect/floor_decal/corner/grey/diagonal, /turf/simulated/floor/tiled/white, /area/rnd/rdoffice) -"bzr" = ( +"bzs" = ( /obj/structure/grille, /obj/machinery/door/firedoor, /obj/structure/cable/green{ @@ -46073,10 +46084,10 @@ }, /turf/simulated/floor/plating, /area/rnd/rdoffice) -"bzs" = ( +"bzt" = ( /turf/simulated/floor/tiled/white, /area/rnd/xenobiology/xenoflora) -"bzt" = ( +"bzu" = ( /obj/machinery/vending/hydronutrients{ categories = 3 }, @@ -46084,12 +46095,12 @@ /obj/machinery/atmospherics/pipe/simple/hidden/universal, /turf/simulated/floor/tiled/white, /area/rnd/xenobiology/xenoflora) -"bzu" = ( +"bzv" = ( /obj/machinery/biogenerator, /obj/effect/floor_decal/industrial/hatch/yellow, /turf/simulated/floor/tiled/white, /area/rnd/xenobiology/xenoflora) -"bzv" = ( +"bzw" = ( /obj/structure/closet/crate/hydroponics/prespawned, /obj/effect/floor_decal/corner/green{ icon_state = "corner_white"; @@ -46097,7 +46108,7 @@ }, /turf/simulated/floor/tiled/white, /area/rnd/xenobiology/xenoflora) -"bzw" = ( +"bzx" = ( /obj/structure/table/standard, /obj/item/weapon/stock_parts/capacitor, /obj/item/weapon/stock_parts/manipulator, @@ -46113,7 +46124,7 @@ }, /turf/simulated/floor/tiled/white, /area/rnd/lab) -"bzx" = ( +"bzy" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/structure/cable/green{ d1 = 1; @@ -46124,7 +46135,7 @@ /obj/machinery/atmospherics/pipe/simple/hidden/supply, /turf/simulated/floor/tiled/white, /area/rnd/lab) -"bzy" = ( +"bzz" = ( /obj/structure/table/standard, /obj/item/weapon/stock_parts/capacitor, /obj/item/weapon/stock_parts/capacitor, @@ -46137,11 +46148,11 @@ }, /turf/simulated/floor/tiled/white, /area/rnd/lab) -"bzz" = ( +"bzA" = ( /obj/machinery/hologram/holopad, /turf/simulated/floor/tiled/white, /area/rnd/lab) -"bzA" = ( +"bzB" = ( /obj/structure/table/standard, /obj/effect/floor_decal/corner/mauve{ icon_state = "corner_white"; @@ -46159,7 +46170,7 @@ }, /turf/simulated/floor/tiled/white, /area/rnd/lab) -"bzB" = ( +"bzC" = ( /obj/structure/grille, /obj/structure/window/reinforced{ dir = 4 @@ -46178,7 +46189,7 @@ }, /turf/simulated/floor/plating, /area/rnd/lab) -"bzC" = ( +"bzD" = ( /obj/machinery/door/firedoor, /obj/structure/grille, /obj/structure/window/reinforced{ @@ -46189,7 +46200,7 @@ }, /turf/simulated/floor/plating, /area/hallway/primary/central_one) -"bzD" = ( +"bzE" = ( /obj/structure/sign/securearea{ desc = "A warning sign which reads 'BOMB RANGE"; name = "KEEP CLEAR: MEDICAL EXOSUIT PARKING"; @@ -46204,14 +46215,14 @@ }, /turf/simulated/floor/tiled, /area/hallway/primary/central_one) -"bzE" = ( +"bzF" = ( /obj/machinery/door/airlock/glass_medical{ name = "EMT Garage Access"; req_access = list(67) }, /turf/simulated/floor/tiled/dark, /area/medical/emt) -"bzF" = ( +"bzG" = ( /obj/structure/closet/secure_closet/medical_wall{ name = "Pill Cabinet"; pixel_x = -32; @@ -46222,7 +46233,7 @@ /obj/item/weapon/storage/pill_bottle/spaceacillin, /turf/simulated/floor/tiled/dark, /area/medical/emt) -"bzG" = ( +"bzH" = ( /obj/structure/table/standard, /obj/item/weapon/storage/belt/medical/emt, /obj/item/weapon/storage/belt/medical/emt, @@ -46234,7 +46245,7 @@ }, /turf/simulated/floor/tiled/dark, /area/medical/emt) -"bzH" = ( +"bzI" = ( /obj/effect/floor_decal/corner/pink{ icon_state = "corner_white"; dir = 9 @@ -46253,13 +46264,13 @@ }, /turf/simulated/floor/tiled/white, /area/medical/em_preop) -"bzI" = ( +"bzJ" = ( /obj/machinery/atmospherics/unary/vent_pump/on{ dir = 1 }, /turf/simulated/floor/tiled/white, /area/medical/em_preop) -"bzJ" = ( +"bzK" = ( /obj/effect/floor_decal/corner/pink{ icon_state = "corner_white"; dir = 6 @@ -46275,7 +46286,7 @@ }, /turf/simulated/floor/tiled/white, /area/medical/em_preop) -"bzK" = ( +"bzL" = ( /obj/structure/sink{ icon_state = "sink"; dir = 8; @@ -46289,14 +46300,14 @@ /obj/machinery/atmospherics/pipe/simple/hidden/supply, /turf/simulated/floor/tiled/freezer, /area/medical/medbay) -"bzL" = ( +"bzM" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ icon_state = "intact-scrubbers"; dir = 5 }, /turf/simulated/floor/tiled/freezer, /area/medical/medbay) -"bzM" = ( +"bzN" = ( /obj/machinery/light/small{ dir = 4 }, @@ -46305,7 +46316,7 @@ }, /turf/simulated/floor/tiled/freezer, /area/medical/medbay) -"bzN" = ( +"bzO" = ( /obj/machinery/atmospherics/pipe/simple/visible{ icon_state = "intact"; dir = 5 @@ -46315,7 +46326,7 @@ }, /turf/simulated/floor/plating, /area/medical/cryo) -"bzO" = ( +"bzP" = ( /obj/machinery/atmospherics/pipe/manifold4w/visible, /obj/structure/cable/green{ d1 = 2; @@ -46324,7 +46335,7 @@ }, /turf/simulated/floor/plating, /area/medical/cryo) -"bzP" = ( +"bzQ" = ( /obj/machinery/atmospherics/pipe/simple/visible{ dir = 4 }, @@ -46340,7 +46351,7 @@ }, /turf/simulated/floor/plating, /area/medical/cryo) -"bzQ" = ( +"bzR" = ( /obj/machinery/atmospherics/pipe/simple/hidden{ dir = 9; icon_state = "intact" @@ -46352,7 +46363,7 @@ }, /turf/simulated/floor/tiled/white, /area/medical/medbay) -"bzR" = ( +"bzS" = ( /obj/effect/floor_decal/corner/pink{ icon_state = "corner_white"; dir = 6 @@ -46372,7 +46383,7 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/tiled/white, /area/medical/medbay) -"bzS" = ( +"bzT" = ( /obj/machinery/iv_drip, /obj/structure/window/reinforced{ icon_state = "rwindow"; @@ -46385,10 +46396,10 @@ /obj/effect/floor_decal/industrial/outline/red, /turf/simulated/floor/tiled/white, /area/medical/icu) -"bzT" = ( +"bzU" = ( /turf/simulated/floor/tiled/white, /area/medical/icu) -"bzU" = ( +"bzV" = ( /obj/structure/cable/green{ d1 = 1; d2 = 2; @@ -46401,13 +46412,13 @@ }, /turf/simulated/floor/tiled/white, /area/medical/icu) -"bzV" = ( +"bzW" = ( /obj/machinery/atmospherics/unary/vent_scrubber/on{ dir = 8 }, /turf/simulated/floor/tiled/white, /area/medical/icu) -"bzW" = ( +"bzX" = ( /obj/effect/floor_decal/corner/pink{ icon_state = "corner_white"; dir = 6 @@ -46420,7 +46431,7 @@ }, /turf/simulated/floor/tiled/white, /area/medical/icu) -"bzX" = ( +"bzY" = ( /obj/effect/floor_decal/corner/beige{ icon_state = "corner_white"; dir = 10 @@ -46430,7 +46441,7 @@ /obj/machinery/firealarm/west, /turf/simulated/floor/tiled/white, /area/medical/gen_treatment) -"bzY" = ( +"bzZ" = ( /obj/effect/floor_decal/corner/beige{ icon_state = "corner_white"; dir = 10 @@ -46441,7 +46452,7 @@ }, /turf/simulated/floor/tiled/white, /area/medical/gen_treatment) -"bzZ" = ( +"bAa" = ( /obj/effect/floor_decal/corner/beige{ icon_state = "corner_white"; dir = 6 @@ -46455,7 +46466,7 @@ /obj/item/clothing/accessory/stethoscope, /turf/simulated/floor/tiled/white, /area/medical/gen_treatment) -"bAa" = ( +"bAb" = ( /obj/effect/floor_decal/corner/beige{ icon_state = "corner_white"; dir = 9 @@ -46467,7 +46478,7 @@ }, /turf/simulated/floor/tiled/white, /area/medical/medbay2) -"bAb" = ( +"bAc" = ( /obj/effect/floor_decal/corner/paleblue{ icon_state = "corner_white"; dir = 9 @@ -46475,7 +46486,7 @@ /obj/machinery/clonepod, /turf/simulated/floor/tiled/white, /area/medical/genetics_cloning) -"bAc" = ( +"bAd" = ( /obj/structure/bed/roller, /obj/machinery/power/apc{ dir = 2; @@ -46489,7 +46500,7 @@ /obj/effect/floor_decal/industrial/outline/grey, /turf/simulated/floor/tiled/white, /area/medical/genetics_cloning) -"bAd" = ( +"bAe" = ( /obj/structure/cable/green{ d1 = 1; d2 = 8; @@ -46500,7 +46511,7 @@ }, /turf/simulated/floor/tiled/white, /area/medical/genetics_cloning) -"bAe" = ( +"bAf" = ( /obj/effect/floor_decal/corner/paleblue{ icon_state = "corner_white"; dir = 6 @@ -46511,7 +46522,7 @@ }, /turf/simulated/floor/tiled/white, /area/medical/genetics_cloning) -"bAf" = ( +"bAg" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/structure/cable{ @@ -46521,13 +46532,13 @@ }, /turf/simulated/floor/plating, /area/maintenance/medbay) -"bAg" = ( +"bAh" = ( /obj/machinery/light/small/emergency, /obj/structure/closet, /obj/random/loot, /turf/simulated/floor/plating, /area/maintenance/medbay) -"bAh" = ( +"bAi" = ( /obj/structure/cable/green{ d1 = 1; d2 = 2; @@ -46537,7 +46548,7 @@ /obj/machinery/atmospherics/pipe/simple/hidden/supply, /turf/simulated/floor/plating, /area/maintenance/maintcentral) -"bAi" = ( +"bAj" = ( /obj/effect/decal/cleanable/generic, /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/dirt, @@ -46554,7 +46565,7 @@ }, /turf/simulated/floor/plating, /area/maintenance/research_port) -"bAj" = ( +"bAk" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/cable{ d1 = 1; @@ -46569,7 +46580,7 @@ }, /turf/simulated/floor/plating, /area/maintenance/research_port) -"bAk" = ( +"bAl" = ( /obj/structure/bed/chair/comfy/black{ dir = 4 }, @@ -46588,7 +46599,7 @@ }, /turf/simulated/floor/carpet/blue, /area/rnd/rdoffice) -"bAl" = ( +"bAm" = ( /obj/structure/table/standard, /obj/machinery/atmospherics/unary/vent_pump/on{ dir = 1 @@ -46596,7 +46607,7 @@ /obj/item/weapon/folder/purple, /turf/simulated/floor/carpet/blue, /area/rnd/rdoffice) -"bAm" = ( +"bAn" = ( /obj/structure/bed/chair/office/dark{ dir = 8 }, @@ -46610,7 +46621,7 @@ }, /turf/simulated/floor/carpet/blue, /area/rnd/rdoffice) -"bAn" = ( +"bAo" = ( /obj/effect/floor_decal/corner/purple{ dir = 9 }, @@ -46621,7 +46632,7 @@ /obj/structure/lamarr, /turf/simulated/floor/tiled, /area/rnd/rdoffice) -"bAo" = ( +"bAp" = ( /obj/effect/floor_decal/corner/purple{ dir = 9 }, @@ -46634,11 +46645,11 @@ }, /turf/simulated/floor/tiled, /area/rnd/rdoffice) -"bAp" = ( +"bAq" = ( /obj/effect/floor_decal/corner/grey/diagonal, /turf/simulated/floor/tiled/white, /area/rnd/rdoffice) -"bAq" = ( +"bAr" = ( /obj/machinery/computer/robotics, /obj/machinery/light{ dir = 4; @@ -46648,13 +46659,13 @@ /obj/effect/floor_decal/corner/grey/diagonal, /turf/simulated/floor/tiled/white, /area/rnd/rdoffice) -"bAr" = ( +"bAs" = ( /obj/machinery/atmospherics/unary/vent_pump/on{ dir = 4 }, /turf/simulated/floor/tiled/white, /area/rnd/research) -"bAs" = ( +"bAt" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/machinery/atmospherics/pipe/manifold/hidden/supply{ dir = 4 @@ -46667,7 +46678,7 @@ /obj/structure/disposalpipe/segment, /turf/simulated/floor/tiled/white, /area/rnd/research) -"bAt" = ( +"bAu" = ( /obj/machinery/camera/network/research{ c_tag = "Research - Corridor Camera 2"; dir = 8; @@ -46678,18 +46689,18 @@ }, /turf/simulated/floor/tiled/white, /area/rnd/research) -"bAu" = ( +"bAv" = ( /obj/machinery/seed_storage/xenobotany, /obj/effect/floor_decal/industrial/hatch/yellow, /obj/machinery/atmospherics/pipe/simple/visible/red, /turf/simulated/floor/tiled/white, /area/rnd/xenobiology/xenoflora) -"bAv" = ( +"bAw" = ( /obj/machinery/seed_extractor, /obj/effect/floor_decal/industrial/hatch/yellow, /turf/simulated/floor/tiled/white, /area/rnd/xenobiology/xenoflora) -"bAw" = ( +"bAx" = ( /obj/machinery/smartfridge, /obj/effect/floor_decal/corner/green{ icon_state = "corner_white"; @@ -46697,7 +46708,7 @@ }, /turf/simulated/floor/tiled/white, /area/rnd/xenobiology/xenoflora) -"bAx" = ( +"bAy" = ( /obj/structure/table/standard, /obj/item/weapon/stock_parts/console_screen, /obj/item/weapon/stock_parts/console_screen, @@ -46721,7 +46732,7 @@ }, /turf/simulated/floor/tiled/white, /area/rnd/lab) -"bAy" = ( +"bAz" = ( /obj/machinery/atmospherics/pipe/manifold/hidden/supply{ dir = 8 }, @@ -46734,7 +46745,7 @@ /obj/structure/disposalpipe/segment, /turf/simulated/floor/tiled/white, /area/rnd/lab) -"bAz" = ( +"bAA" = ( /obj/structure/table/standard, /obj/item/weapon/stock_parts/manipulator, /obj/item/weapon/stock_parts/scanning_module, @@ -46747,10 +46758,10 @@ }, /turf/simulated/floor/tiled/white, /area/rnd/lab) -"bAA" = ( +"bAB" = ( /turf/simulated/floor/tiled/white, /area/rnd/lab) -"bAB" = ( +"bAC" = ( /obj/structure/table/standard, /obj/machinery/light{ dir = 4; @@ -46778,13 +46789,13 @@ }, /turf/simulated/floor/tiled/white, /area/rnd/lab) -"bAC" = ( +"bAD" = ( /obj/effect/floor_decal/industrial/warning{ dir = 4 }, /turf/simulated/floor/tiled, /area/hallway/primary/central_one) -"bAD" = ( +"bAE" = ( /obj/machinery/door/firedoor, /obj/machinery/door/blast/shutters{ dir = 8; @@ -46793,16 +46804,16 @@ }, /turf/simulated/floor/plating, /area/medical/emt) -"bAE" = ( +"bAF" = ( /obj/machinery/light/small, /turf/simulated/floor/plating, /area/medical/emt) -"bAF" = ( +"bAG" = ( /obj/machinery/mech_recharger, /obj/effect/floor_decal/industrial/outline/yellow, /turf/simulated/floor/plating, /area/medical/emt) -"bAG" = ( +"bAH" = ( /obj/structure/grille, /obj/structure/window/reinforced{ icon_state = "rwindow"; @@ -46820,7 +46831,7 @@ /obj/machinery/door/firedoor, /turf/simulated/floor/plating, /area/medical/emt) -"bAH" = ( +"bAI" = ( /obj/effect/floor_decal/industrial/outline/grey, /obj/item/roller, /obj/item/roller, @@ -46831,7 +46842,7 @@ }, /turf/simulated/floor/tiled/dark, /area/medical/emt) -"bAI" = ( +"bAJ" = ( /obj/structure/table/standard, /obj/item/weapon/storage/toolbox/emergency, /obj/item/device/gps{ @@ -46842,10 +46853,10 @@ }, /turf/simulated/floor/tiled/dark, /area/medical/emt) -"bAJ" = ( +"bAK" = ( /turf/simulated/floor/tiled/white, /area/medical/em_preop) -"bAK" = ( +"bAL" = ( /obj/effect/floor_decal/corner/pink{ icon_state = "corner_white"; dir = 6 @@ -46858,16 +46869,16 @@ /obj/structure/cable/green, /turf/simulated/floor/tiled/white, /area/medical/em_preop) -"bAL" = ( +"bAM" = ( /obj/machinery/atmospherics/unary/vent_pump/on{ dir = 1 }, /turf/simulated/floor/tiled/freezer, /area/medical/medbay) -"bAM" = ( +"bAN" = ( /turf/simulated/floor/tiled/freezer, /area/medical/medbay) -"bAN" = ( +"bAO" = ( /obj/machinery/atmospherics/portables_connector{ dir = 4 }, @@ -46877,7 +46888,7 @@ }, /turf/simulated/floor/plating, /area/medical/cryo) -"bAO" = ( +"bAP" = ( /obj/machinery/atmospherics/pipe/manifold/visible{ icon_state = "map"; dir = 4 @@ -46891,7 +46902,7 @@ }, /turf/simulated/floor/plating, /area/medical/cryo) -"bAP" = ( +"bAQ" = ( /obj/machinery/camera/network/medbay{ c_tag = "Medical - Main Hallway 2"; dir = 4; @@ -46903,7 +46914,7 @@ }, /turf/simulated/floor/tiled/white, /area/medical/medbay) -"bAQ" = ( +"bAR" = ( /obj/effect/floor_decal/corner/pink{ icon_state = "corner_white"; dir = 6 @@ -46921,7 +46932,7 @@ }, /turf/simulated/floor/tiled/white, /area/medical/medbay) -"bAR" = ( +"bAS" = ( /obj/effect/floor_decal/corner/pink{ icon_state = "corner_white"; dir = 9 @@ -46929,7 +46940,7 @@ /obj/effect/floor_decal/industrial/outline/blue, /turf/simulated/floor/tiled/white, /area/medical/icu) -"bAS" = ( +"bAT" = ( /obj/structure/closet/secure_closet/medical_wall{ name = "Stabilization Kit"; pixel_x = 0; @@ -46944,7 +46955,7 @@ /obj/item/weapon/storage/pill_bottle/tramadol, /turf/simulated/floor/tiled/white, /area/medical/icu) -"bAT" = ( +"bAU" = ( /obj/structure/closet/secure_closet/medical_wall{ name = "Medication Closet"; pixel_x = 0; @@ -46958,7 +46969,7 @@ /obj/item/weapon/reagent_containers/syringe, /turf/simulated/floor/tiled/white, /area/medical/icu) -"bAU" = ( +"bAV" = ( /obj/structure/bed, /obj/effect/floor_decal/corner/pink{ icon_state = "corner_white"; @@ -46972,7 +46983,7 @@ }, /turf/simulated/floor/tiled/white, /area/medical/icu) -"bAV" = ( +"bAW" = ( /obj/machinery/door/firedoor, /obj/machinery/door/airlock/medical{ autoclose = 0; @@ -46985,25 +46996,11 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/tiled, /area/medical/gen_treatment) -"bAW" = ( -/obj/structure/grille, -/obj/structure/window/reinforced{ - icon_state = "rwindow"; - dir = 8 - }, -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - icon_state = "rwindow"; - dir = 1 - }, -/obj/machinery/door/firedoor, -/turf/simulated/floor/plating, -/area/medical/gen_treatment) "bAX" = ( /obj/structure/grille, /obj/structure/window/reinforced{ icon_state = "rwindow"; - dir = 4 + dir = 8 }, /obj/structure/window/reinforced, /obj/structure/window/reinforced{ @@ -47014,6 +47011,20 @@ /turf/simulated/floor/plating, /area/medical/gen_treatment) "bAY" = ( +/obj/structure/grille, +/obj/structure/window/reinforced{ + icon_state = "rwindow"; + dir = 4 + }, +/obj/structure/window/reinforced, +/obj/structure/window/reinforced{ + icon_state = "rwindow"; + dir = 1 + }, +/obj/machinery/door/firedoor, +/turf/simulated/floor/plating, +/area/medical/gen_treatment) +"bAZ" = ( /obj/effect/floor_decal/corner/beige{ icon_state = "corner_white"; dir = 9 @@ -47023,7 +47034,7 @@ /obj/machinery/door/firedoor, /turf/simulated/floor/tiled/white, /area/medical/medbay2) -"bAZ" = ( +"bBa" = ( /obj/structure/cable/green{ d1 = 1; d2 = 2; @@ -47033,29 +47044,6 @@ /obj/machinery/door/firedoor, /turf/simulated/floor/tiled/white, /area/medical/medbay2) -"bBa" = ( -/obj/structure/grille, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/window/reinforced, -/obj/machinery/door/firedoor, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/machinery/door/blast/shutters{ - density = 0; - dir = 2; - icon_state = "shutter0"; - id = "LCKDshutters"; - name = "MedBay Lockdown Shutters"; - opacity = 0 - }, -/turf/simulated/floor/plating, -/area/medical/medbay2) "bBb" = ( /obj/structure/grille, /obj/structure/window/reinforced{ @@ -47066,6 +47054,9 @@ }, /obj/structure/window/reinforced, /obj/machinery/door/firedoor, +/obj/structure/window/reinforced{ + dir = 4 + }, /obj/machinery/door/blast/shutters{ density = 0; dir = 2; @@ -47078,6 +47069,26 @@ /area/medical/medbay2) "bBc" = ( /obj/structure/grille, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/window/reinforced, +/obj/machinery/door/firedoor, +/obj/machinery/door/blast/shutters{ + density = 0; + dir = 2; + icon_state = "shutter0"; + id = "LCKDshutters"; + name = "MedBay Lockdown Shutters"; + opacity = 0 + }, +/turf/simulated/floor/plating, +/area/medical/medbay2) +"bBd" = ( +/obj/structure/grille, /obj/structure/window/reinforced{ dir = 1 }, @@ -47096,7 +47107,7 @@ }, /turf/simulated/floor/plating, /area/medical/medbay2) -"bBd" = ( +"bBe" = ( /obj/machinery/door/firedoor, /obj/machinery/door/blast/shutters{ density = 0; @@ -47112,10 +47123,10 @@ }, /turf/simulated/floor/plating, /area/medical/genetics_cloning) -"bBe" = ( +"bBf" = ( /turf/simulated/floor/plating, /area/turbolift/command_sub) -"bBf" = ( +"bBg" = ( /obj/structure/cable/green{ d1 = 1; d2 = 2; @@ -47125,7 +47136,7 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/plating, /area/maintenance/maintcentral) -"bBg" = ( +"bBh" = ( /obj/structure/grille, /obj/structure/window/reinforced{ dir = 8 @@ -47137,7 +47148,7 @@ /obj/machinery/door/firedoor, /turf/simulated/floor/plating, /area/maintenance/research_port) -"bBh" = ( +"bBi" = ( /obj/structure/window/reinforced, /obj/structure/window/reinforced{ dir = 1 @@ -47146,7 +47157,7 @@ /obj/machinery/door/firedoor, /turf/simulated/floor/plating, /area/maintenance/research_port) -"bBi" = ( +"bBj" = ( /obj/structure/window/reinforced, /obj/structure/window/reinforced{ dir = 4 @@ -47158,7 +47169,7 @@ /obj/machinery/door/firedoor, /turf/simulated/floor/plating, /area/maintenance/research_port) -"bBj" = ( +"bBk" = ( /obj/structure/cable{ d1 = 1; d2 = 2; @@ -47172,7 +47183,7 @@ }, /turf/simulated/floor/plating, /area/maintenance/research_port) -"bBk" = ( +"bBl" = ( /obj/structure/bed/chair/comfy/black{ dir = 4 }, @@ -47184,14 +47195,14 @@ }, /turf/simulated/floor/carpet/blue, /area/rnd/rdoffice) -"bBl" = ( +"bBm" = ( /obj/structure/table/standard, /obj/machinery/computer/skills{ icon_state = "medlaptop" }, /turf/simulated/floor/carpet/blue, /area/rnd/rdoffice) -"bBm" = ( +"bBn" = ( /obj/structure/window/reinforced{ dir = 4 }, @@ -47202,7 +47213,7 @@ }, /turf/simulated/floor/carpet/blue, /area/rnd/rdoffice) -"bBn" = ( +"bBo" = ( /obj/effect/floor_decal/corner/purple{ dir = 9 }, @@ -47215,7 +47226,7 @@ }, /turf/simulated/floor/tiled, /area/rnd/rdoffice) -"bBo" = ( +"bBp" = ( /obj/effect/floor_decal/corner/purple{ dir = 9 }, @@ -47229,32 +47240,32 @@ /obj/effect/floor_decal/corner/grey, /turf/simulated/floor/tiled, /area/rnd/rdoffice) -"bBp" = ( +"bBq" = ( /obj/machinery/computer/mecha, /obj/effect/floor_decal/corner/grey/diagonal, /turf/simulated/floor/tiled/white, /area/rnd/rdoffice) -"bBq" = ( +"bBr" = ( /obj/machinery/atmospherics/pipe/manifold/visible/red{ icon_state = "map"; dir = 8 }, /turf/simulated/floor/tiled/white, /area/rnd/xenobiology/xenoflora) -"bBr" = ( +"bBs" = ( /obj/machinery/atmospherics/binary/pump{ dir = 8; name = "To Waste" }, /turf/simulated/floor/tiled/white, /area/rnd/xenobiology/xenoflora) -"bBs" = ( +"bBt" = ( /obj/machinery/atmospherics/pipe/manifold/visible{ dir = 1 }, /turf/simulated/floor/tiled/white, /area/rnd/xenobiology/xenoflora) -"bBt" = ( +"bBu" = ( /obj/machinery/portable_atmospherics/hydroponics, /obj/machinery/atmospherics/portables_connector{ dir = 8 @@ -47265,7 +47276,7 @@ }, /turf/simulated/floor/tiled/white, /area/rnd/xenobiology/xenoflora) -"bBu" = ( +"bBv" = ( /obj/structure/table/standard, /obj/effect/floor_decal/corner/mauve/full, /obj/structure/reagent_dispensers/acid{ @@ -47276,7 +47287,7 @@ /obj/item/weapon/stock_parts/manipulator, /turf/simulated/floor/tiled/white, /area/rnd/lab) -"bBv" = ( +"bBw" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/structure/cable/green{ d1 = 1; @@ -47291,21 +47302,21 @@ }, /turf/simulated/floor/tiled/white, /area/rnd/lab) -"bBw" = ( +"bBx" = ( /obj/effect/floor_decal/corner/mauve{ icon_state = "corner_white"; dir = 10 }, /turf/simulated/floor/tiled/white, /area/rnd/lab) -"bBx" = ( +"bBy" = ( /obj/effect/floor_decal/corner/mauve{ icon_state = "corner_white"; dir = 8 }, /turf/simulated/floor/tiled/white, /area/rnd/lab) -"bBy" = ( +"bBz" = ( /obj/structure/table/standard, /obj/effect/floor_decal/corner/mauve{ icon_state = "corner_white"; @@ -47315,7 +47326,7 @@ /obj/item/weapon/hand_labeler, /turf/simulated/floor/tiled/white, /area/rnd/lab) -"bBz" = ( +"bBA" = ( /obj/structure/cable{ d1 = 1; d2 = 2; @@ -47328,7 +47339,7 @@ }, /turf/simulated/floor/tiled, /area/hallway/primary/central_one) -"bBA" = ( +"bBB" = ( /obj/machinery/door/firedoor, /obj/structure/cable{ d1 = 1; @@ -47341,7 +47352,7 @@ /obj/structure/disposalpipe/segment, /turf/simulated/floor/tiled, /area/hallway/primary/central_one) -"bBB" = ( +"bBC" = ( /obj/machinery/door/firedoor, /obj/structure/sign/securearea{ desc = "A warning sign which reads 'BOMB RANGE"; @@ -47357,7 +47368,7 @@ }, /turf/simulated/floor/tiled, /area/hallway/primary/central_one) -"bBC" = ( +"bBD" = ( /obj/effect/floor_decal/corner/pink{ icon_state = "corner_white"; dir = 9 @@ -47365,7 +47376,7 @@ /obj/effect/floor_decal/industrial/outline/blue, /turf/simulated/floor/tiled/white, /area/medical/em_preop) -"bBD" = ( +"bBE" = ( /obj/effect/floor_decal/corner/pink{ icon_state = "corner_white"; dir = 6 @@ -47382,26 +47393,26 @@ }, /turf/simulated/floor/tiled/white, /area/medical/em_preop) -"bBE" = ( +"bBF" = ( /obj/machinery/door/airlock{ name = "Unit 1" }, /turf/simulated/floor/tiled/freezer, /area/medical/medbay) -"bBF" = ( +"bBG" = ( /obj/machinery/door/airlock{ name = "Unit 2" }, /turf/simulated/floor/tiled/freezer, /area/medical/medbay) -"bBG" = ( +"bBH" = ( /obj/machinery/atmospherics/portables_connector{ dir = 4 }, /obj/machinery/portable_atmospherics/canister/oxygen, /turf/simulated/floor/plating, /area/medical/cryo) -"bBH" = ( +"bBI" = ( /obj/machinery/atmospherics/pipe/manifold/visible{ icon_state = "map"; dir = 4 @@ -47409,7 +47420,7 @@ /obj/machinery/meter, /turf/simulated/floor/plating, /area/medical/cryo) -"bBI" = ( +"bBJ" = ( /obj/structure/grille, /obj/structure/window/reinforced{ icon_state = "rwindow"; @@ -47427,13 +47438,13 @@ /obj/machinery/door/firedoor, /turf/simulated/floor/plating, /area/medical/cryo) -"bBJ" = ( +"bBK" = ( /obj/machinery/light{ dir = 8 }, /turf/simulated/floor/tiled/white, /area/medical/medbay) -"bBK" = ( +"bBL" = ( /obj/effect/floor_decal/corner/pink{ icon_state = "corner_white"; dir = 6 @@ -47461,7 +47472,7 @@ }, /turf/simulated/floor/tiled/white, /area/medical/medbay) -"bBL" = ( +"bBM" = ( /obj/structure/grille, /obj/structure/window/reinforced{ icon_state = "rwindow"; @@ -47478,7 +47489,7 @@ }, /turf/simulated/floor/plating, /area/medical/icu) -"bBM" = ( +"bBN" = ( /obj/machinery/door/firedoor, /obj/machinery/door/airlock/medical{ autoclose = 0; @@ -47497,7 +47508,7 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/tiled, /area/medical/icu) -"bBN" = ( +"bBO" = ( /obj/structure/grille, /obj/structure/window/reinforced{ icon_state = "rwindow"; @@ -47514,7 +47525,7 @@ }, /turf/simulated/floor/plating, /area/medical/icu) -"bBO" = ( +"bBP" = ( /obj/effect/floor_decal/corner/beige{ icon_state = "corner_white"; dir = 5 @@ -47528,7 +47539,7 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/tiled/white, /area/medical/medbay) -"bBP" = ( +"bBQ" = ( /obj/effect/floor_decal/corner/beige{ icon_state = "corner_white"; dir = 5 @@ -47544,7 +47555,7 @@ /obj/machinery/atmospherics/unary/vent_pump/on, /turf/simulated/floor/tiled/white, /area/medical/medbay) -"bBQ" = ( +"bBR" = ( /obj/effect/floor_decal/corner/beige{ icon_state = "corner_white"; dir = 5 @@ -47556,7 +47567,7 @@ }, /turf/simulated/floor/tiled/white, /area/medical/medbay) -"bBR" = ( +"bBS" = ( /obj/effect/floor_decal/corner/beige{ icon_state = "corner_white"; dir = 5 @@ -47588,7 +47599,7 @@ }, /turf/simulated/floor/tiled/white, /area/medical/medbay) -"bBS" = ( +"bBT" = ( /obj/effect/floor_decal/corner/beige{ icon_state = "corner_white"; dir = 1 @@ -47605,7 +47616,7 @@ /obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, /turf/simulated/floor/tiled/white, /area/medical/medbay) -"bBT" = ( +"bBU" = ( /obj/structure/cable/green{ d1 = 4; d2 = 8; @@ -47630,7 +47641,7 @@ }, /turf/simulated/floor/tiled/white, /area/medical/medbay) -"bBU" = ( +"bBV" = ( /obj/structure/cable/green{ d1 = 2; d2 = 8; @@ -47651,7 +47662,7 @@ }, /turf/simulated/floor/tiled/white, /area/medical/medbay) -"bBV" = ( +"bBW" = ( /obj/machinery/door/firedoor, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 @@ -47676,7 +47687,7 @@ }, /turf/simulated/floor/tiled/white, /area/medical/medbay) -"bBW" = ( +"bBX" = ( /obj/structure/disposalpipe/segment{ dir = 2; icon_state = "pipe-c" @@ -47689,7 +47700,7 @@ }, /turf/simulated/floor/plating, /area/maintenance/medbay) -"bBX" = ( +"bBY" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 10 }, @@ -47698,15 +47709,15 @@ }, /turf/simulated/floor/plating, /area/maintenance/medbay) -"bBY" = ( +"bBZ" = ( /obj/structure/reagent_dispensers/fueltank, /turf/simulated/floor/plating, /area/maintenance/medbay) -"bBZ" = ( +"bCa" = ( /obj/structure/reagent_dispensers/watertank, /turf/simulated/floor/plating, /area/maintenance/medbay) -"bCa" = ( +"bCb" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, @@ -47721,7 +47732,7 @@ }, /turf/simulated/floor/tiled, /area/maintenance/medbay) -"bCb" = ( +"bCc" = ( /obj/random/junk, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 9 @@ -47736,7 +47747,7 @@ }, /turf/simulated/floor/plating, /area/maintenance/medbay) -"bCc" = ( +"bCd" = ( /obj/structure/cable{ d1 = 2; d2 = 4; @@ -47750,7 +47761,7 @@ }, /turf/simulated/floor/plating, /area/maintenance/research_port) -"bCd" = ( +"bCe" = ( /obj/structure/cable{ d1 = 4; d2 = 8; @@ -47767,7 +47778,7 @@ }, /turf/simulated/floor/plating, /area/maintenance/research_port) -"bCe" = ( +"bCf" = ( /obj/structure/cable{ d1 = 4; d2 = 8; @@ -47782,7 +47793,7 @@ /obj/machinery/door/firedoor, /turf/simulated/floor/plating, /area/maintenance/research_port) -"bCf" = ( +"bCg" = ( /obj/structure/cable{ d1 = 1; d2 = 8; @@ -47796,10 +47807,10 @@ }, /turf/simulated/floor/plating, /area/maintenance/research_port) -"bCg" = ( +"bCh" = ( /turf/simulated/floor/carpet/blue, /area/rnd/rdoffice) -"bCh" = ( +"bCi" = ( /obj/structure/table/rack, /obj/machinery/light_switch{ pixel_y = -23 @@ -47815,7 +47826,7 @@ /obj/effect/floor_decal/corner/grey/diagonal, /turf/simulated/floor/tiled/white, /area/rnd/rdoffice) -"bCi" = ( +"bCj" = ( /obj/effect/floor_decal/corner/grey/diagonal, /obj/structure/table/standard, /obj/machinery/photocopier/faxmachine{ @@ -47823,7 +47834,7 @@ }, /turf/simulated/floor/tiled/white, /area/rnd/rdoffice) -"bCj" = ( +"bCk" = ( /obj/structure/table/standard, /obj/item/device/taperecorder{ pixel_x = -3 @@ -47845,7 +47856,7 @@ /obj/effect/floor_decal/corner/grey/diagonal, /turf/simulated/floor/tiled/white, /area/rnd/rdoffice) -"bCk" = ( +"bCl" = ( /obj/effect/floor_decal/corner/grey/diagonal, /obj/machinery/requests_console{ name = "Research Director RC"; @@ -47857,12 +47868,12 @@ }, /turf/simulated/floor/tiled/white, /area/rnd/rdoffice) -"bCl" = ( +"bCm" = ( /obj/effect/floor_decal/corner/grey/diagonal, /obj/structure/closet/secure_closet/RD, /turf/simulated/floor/tiled/white, /area/rnd/rdoffice) -"bCm" = ( +"bCn" = ( /obj/structure/grille, /obj/machinery/door/firedoor, /obj/structure/cable/green, @@ -47879,7 +47890,7 @@ }, /turf/simulated/floor/plating, /area/rnd/rdoffice) -"bCn" = ( +"bCo" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ dir = 8 @@ -47892,7 +47903,7 @@ /obj/structure/disposalpipe/segment, /turf/simulated/floor/tiled/white, /area/rnd/research) -"bCo" = ( +"bCp" = ( /obj/machinery/atmospherics/unary/vent_scrubber/on{ dir = 8 }, @@ -47901,35 +47912,35 @@ }, /turf/simulated/floor/tiled/white, /area/rnd/research) -"bCp" = ( +"bCq" = ( /obj/effect/floor_decal/corner/green{ icon_state = "corner_white"; dir = 9 }, /turf/simulated/floor/tiled/white, /area/rnd/xenobiology/xenoflora) -"bCq" = ( +"bCr" = ( /obj/machinery/atmospherics/pipe/simple/visible/red{ icon_state = "intact"; dir = 5 }, /turf/simulated/floor/tiled/white, /area/rnd/xenobiology/xenoflora) -"bCr" = ( +"bCs" = ( /obj/machinery/atmospherics/pipe/simple/visible/red{ icon_state = "intact"; dir = 10 }, /turf/simulated/floor/tiled/white, /area/rnd/xenobiology/xenoflora) -"bCs" = ( +"bCt" = ( /obj/machinery/atmospherics/pipe/manifold/visible{ dir = 8 }, /obj/machinery/meter, /turf/simulated/floor/tiled/white, /area/rnd/xenobiology/xenoflora) -"bCt" = ( +"bCu" = ( /obj/machinery/portable_atmospherics/hydroponics, /obj/machinery/atmospherics/portables_connector{ dir = 8 @@ -47950,14 +47961,14 @@ }, /turf/simulated/floor/tiled/white, /area/rnd/xenobiology/xenoflora) -"bCu" = ( +"bCv" = ( /obj/effect/floor_decal/industrial/warning{ dir = 1 }, /obj/machinery/r_n_d/destructive_analyzer, /turf/simulated/floor/tiled/dark, /area/rnd/lab) -"bCv" = ( +"bCw" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/structure/cable/green{ @@ -47971,49 +47982,49 @@ }, /turf/simulated/floor/tiled/dark, /area/rnd/lab) -"bCw" = ( +"bCx" = ( /obj/machinery/r_n_d/protolathe, /obj/effect/floor_decal/industrial/warning{ dir = 5 }, /turf/simulated/floor/tiled/dark, /area/rnd/lab) -"bCx" = ( +"bCy" = ( /obj/effect/floor_decal/corner/mauve{ icon_state = "corner_white"; dir = 9 }, /turf/simulated/floor/tiled/white, /area/rnd/lab) -"bCy" = ( +"bCz" = ( /obj/effect/floor_decal/corner/mauve{ icon_state = "corner_white"; dir = 6 }, /turf/simulated/floor/tiled/white, /area/rnd/lab) -"bCz" = ( +"bCA" = ( /obj/effect/floor_decal/industrial/warning/corner{ icon_state = "warningcorner"; dir = 4 }, /turf/simulated/floor/tiled, /area/hallway/primary/central_one) -"bCA" = ( +"bCB" = ( /obj/machinery/alarm{ pixel_y = 22 }, /obj/machinery/atmospherics/unary/vent_pump/on, /turf/simulated/floor/tiled, /area/hallway/primary/central_one) -"bCB" = ( +"bCC" = ( /obj/structure/closet/emcloset, /obj/machinery/light{ dir = 1 }, /turf/simulated/floor/tiled, /area/hallway/primary/central_one) -"bCC" = ( +"bCD" = ( /obj/machinery/disposal, /obj/item/device/radio/intercom{ pixel_y = 27 @@ -48021,15 +48032,15 @@ /obj/structure/disposalpipe/trunk, /turf/simulated/floor/tiled, /area/hallway/primary/central_one) -"bCD" = ( +"bCE" = ( /obj/machinery/vending/snack, /turf/simulated/floor/tiled, /area/hallway/primary/central_one) -"bCE" = ( +"bCF" = ( /obj/machinery/vending/cola, /turf/simulated/floor/tiled, /area/hallway/primary/central_one) -"bCF" = ( +"bCG" = ( /obj/machinery/door/firedoor, /obj/machinery/door/blast/shutters{ density = 0; @@ -48045,7 +48056,7 @@ }, /turf/simulated/floor/plating, /area/medical/em_preop) -"bCG" = ( +"bCH" = ( /obj/structure/toilet{ icon_state = "toilet00"; dir = 1 @@ -48055,7 +48066,7 @@ }, /turf/simulated/floor/tiled/freezer, /area/medical/medbay) -"bCH" = ( +"bCI" = ( /obj/machinery/atmospherics/pipe/simple/visible{ icon_state = "intact"; dir = 9 @@ -48067,7 +48078,7 @@ }, /turf/simulated/floor/plating, /area/medical/cryo) -"bCI" = ( +"bCJ" = ( /obj/structure/cable/green{ d1 = 2; d2 = 4; @@ -48081,7 +48092,7 @@ }, /turf/simulated/floor/tiled/white, /area/medical/medbay) -"bCJ" = ( +"bCK" = ( /obj/effect/floor_decal/corner/pink{ icon_state = "corner_white"; dir = 4 @@ -48104,7 +48115,7 @@ /obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, /turf/simulated/floor/tiled/white, /area/medical/medbay) -"bCK" = ( +"bCL" = ( /obj/effect/floor_decal/corner/pink{ icon_state = "corner_white"; dir = 5 @@ -48126,30 +48137,6 @@ }, /turf/simulated/floor/tiled/white, /area/medical/medbay) -"bCL" = ( -/obj/effect/floor_decal/corner/pink{ - icon_state = "corner_white"; - dir = 5 - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/light{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/tiled/white, -/area/medical/medbay) "bCM" = ( /obj/effect/floor_decal/corner/pink{ icon_state = "corner_white"; @@ -48160,6 +48147,9 @@ d2 = 8; icon_state = "4-8" }, +/obj/machinery/light{ + dir = 1 + }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, @@ -48172,6 +48162,27 @@ /turf/simulated/floor/tiled/white, /area/medical/medbay) "bCN" = ( +/obj/effect/floor_decal/corner/pink{ + icon_state = "corner_white"; + dir = 5 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/medical/medbay) +"bCO" = ( /obj/effect/floor_decal/corner/pink{ icon_state = "corner_white"; dir = 5 @@ -48194,7 +48205,7 @@ /obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, /turf/simulated/floor/tiled/white, /area/medical/medbay) -"bCO" = ( +"bCP" = ( /obj/effect/floor_decal/corner/pink{ icon_state = "corner_white"; dir = 5 @@ -48218,7 +48229,7 @@ }, /turf/simulated/floor/tiled/white, /area/medical/medbay) -"bCP" = ( +"bCQ" = ( /obj/effect/floor_decal/corner/pink{ icon_state = "corner_white"; dir = 1 @@ -48235,7 +48246,7 @@ /obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, /turf/simulated/floor/tiled/white, /area/medical/medbay) -"bCQ" = ( +"bCR" = ( /obj/structure/cable/green{ d1 = 1; d2 = 8; @@ -48250,14 +48261,14 @@ /obj/structure/disposalpipe/sortjunction/flipped{ dir = 8; name = "CMO's Office"; - sortType = "Chapel" + sortType = "CMO's Office" }, /obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ dir = 1 }, /turf/simulated/floor/tiled/white, /area/medical/medbay) -"bCR" = ( +"bCS" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, @@ -48270,7 +48281,7 @@ }, /turf/simulated/floor/tiled/white, /area/medical/medbay) -"bCS" = ( +"bCT" = ( /obj/machinery/power/apc{ dir = 2; name = "south bump"; @@ -48289,17 +48300,17 @@ }, /turf/simulated/floor/tiled/white, /area/medical/medbay) -"bCT" = ( +"bCU" = ( /obj/machinery/firealarm/south, /turf/simulated/floor/tiled/white, /area/medical/medbay) -"bCU" = ( +"bCV" = ( /obj/machinery/newscaster{ pixel_y = -30 }, /turf/simulated/floor/tiled/white, /area/medical/medbay) -"bCV" = ( +"bCW" = ( /obj/structure/cable/green{ d1 = 1; d2 = 2; @@ -48314,31 +48325,31 @@ }, /turf/simulated/floor/tiled/white, /area/medical/medbay) -"bCW" = ( +"bCX" = ( /obj/structure/disposalpipe/segment, /turf/simulated/floor/plating, /area/maintenance/medbay) -"bCX" = ( +"bCY" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/plating, /area/maintenance/medbay) -"bCY" = ( +"bCZ" = ( /obj/structure/bed/chair{ dir = 4 }, /turf/simulated/floor/plating, /area/turbolift/command_sub) -"bCZ" = ( +"bDa" = ( /obj/structure/bed/chair{ dir = 8 }, /turf/simulated/floor/plating, /area/turbolift/command_sub) -"bDa" = ( +"bDb" = ( /turf/simulated/wall, /area/crew_quarters/sleep/research) -"bDb" = ( +"bDc" = ( /obj/structure/grille, /obj/structure/window/reinforced/polarized{ dir = 4; @@ -48362,7 +48373,7 @@ }, /turf/simulated/floor/plating, /area/rnd/rdoffice) -"bDc" = ( +"bDd" = ( /obj/machinery/door/airlock/command{ id_tag = "rdmdoor"; name = "Research Director's Meeting Room"; @@ -48376,7 +48387,7 @@ }, /turf/simulated/floor/tiled, /area/rnd/rdoffice) -"bDd" = ( +"bDe" = ( /obj/structure/grille, /obj/machinery/door/firedoor, /obj/structure/cable/green, @@ -48402,7 +48413,7 @@ }, /turf/simulated/floor/plating, /area/rnd/rdoffice) -"bDe" = ( +"bDf" = ( /obj/machinery/power/apc{ dir = 8; name = "west bump"; @@ -48414,7 +48425,7 @@ }, /turf/simulated/floor/tiled/white, /area/rnd/research) -"bDf" = ( +"bDg" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/structure/cable/green{ @@ -48430,7 +48441,7 @@ /obj/structure/disposalpipe/segment, /turf/simulated/floor/tiled/white, /area/rnd/research) -"bDg" = ( +"bDh" = ( /obj/structure/grille, /obj/structure/window/phoronreinforced{ icon_state = "phoronrwindow"; @@ -48444,7 +48455,7 @@ /obj/machinery/door/firedoor, /turf/simulated/floor/plating, /area/rnd/xenobiology/xenoflora) -"bDh" = ( +"bDi" = ( /obj/machinery/atmospherics/portables_connector, /obj/effect/floor_decal/corner/green{ icon_state = "corner_white"; @@ -48452,7 +48463,7 @@ }, /turf/simulated/floor/tiled/white, /area/rnd/xenobiology/xenoflora) -"bDi" = ( +"bDj" = ( /obj/machinery/atmospherics/unary/freezer{ dir = 2; icon_state = "freezer" @@ -48460,7 +48471,7 @@ /obj/effect/floor_decal/industrial/hatch/yellow, /turf/simulated/floor/tiled/white, /area/rnd/xenobiology/xenoflora) -"bDj" = ( +"bDk" = ( /obj/machinery/atmospherics/unary/heater{ dir = 2; icon_state = "heater" @@ -48468,21 +48479,21 @@ /obj/effect/floor_decal/industrial/hatch/yellow, /turf/simulated/floor/tiled/white, /area/rnd/xenobiology/xenoflora) -"bDk" = ( +"bDl" = ( /obj/machinery/atmospherics/binary/pump{ dir = 1; name = "To Waste" }, /turf/simulated/floor/tiled/white, /area/rnd/xenobiology/xenoflora) -"bDl" = ( +"bDm" = ( /obj/machinery/atmospherics/pipe/simple/visible{ icon_state = "intact"; dir = 5 }, /turf/simulated/floor/tiled/white, /area/rnd/xenobiology/xenoflora) -"bDm" = ( +"bDn" = ( /obj/machinery/portable_atmospherics/hydroponics, /obj/machinery/atmospherics/portables_connector{ dir = 8 @@ -48497,7 +48508,7 @@ }, /turf/simulated/floor/tiled/white, /area/rnd/xenobiology/xenoflora) -"bDn" = ( +"bDo" = ( /obj/machinery/camera/network/research{ c_tag = "Research - Research & Development"; dir = 4; @@ -48506,7 +48517,7 @@ /obj/machinery/computer/rdconsole/core, /turf/simulated/floor/tiled/dark, /area/rnd/lab) -"bDo" = ( +"bDp" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 5 }, @@ -48525,7 +48536,7 @@ /obj/machinery/light, /turf/simulated/floor/tiled/dark, /area/rnd/lab) -"bDp" = ( +"bDq" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, @@ -48548,7 +48559,7 @@ /obj/item/weapon/reagent_containers/glass/beaker/sulphuric, /turf/simulated/floor/tiled/dark, /area/rnd/lab) -"bDq" = ( +"bDr" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 10 }, @@ -48572,7 +48583,7 @@ /obj/effect/floor_decal/corner/mauve/full, /turf/simulated/floor/tiled/white, /area/rnd/lab) -"bDr" = ( +"bDs" = ( /obj/structure/table/standard, /obj/item/device/flashlight/lamp, /obj/machinery/power/apc{ @@ -48590,7 +48601,7 @@ }, /turf/simulated/floor/tiled/white, /area/rnd/lab) -"bDs" = ( +"bDt" = ( /obj/structure/grille, /obj/structure/window/reinforced{ dir = 4 @@ -48610,13 +48621,13 @@ }, /turf/simulated/floor/plating, /area/rnd/lab) -"bDt" = ( +"bDu" = ( /obj/machinery/light, /obj/structure/closet/emcloset, /obj/effect/floor_decal/corner/mauve/full, /turf/simulated/floor/tiled, /area/hallway/primary/central_one) -"bDu" = ( +"bDv" = ( /obj/machinery/atmospherics/pipe/manifold/hidden/supply{ dir = 8 }, @@ -48631,7 +48642,7 @@ /obj/structure/disposalpipe/segment, /turf/simulated/floor/tiled, /area/hallway/primary/central_one) -"bDv" = ( +"bDw" = ( /obj/structure/cable{ d1 = 4; d2 = 8; @@ -48643,7 +48654,7 @@ /obj/machinery/atmospherics/pipe/manifold/hidden/supply, /turf/simulated/floor/tiled, /area/hallway/primary/central_one) -"bDw" = ( +"bDx" = ( /obj/structure/cable{ d1 = 4; d2 = 8; @@ -48661,7 +48672,7 @@ }, /turf/simulated/floor/tiled, /area/hallway/primary/central_one) -"bDx" = ( +"bDy" = ( /obj/structure/cable{ d1 = 4; d2 = 8; @@ -48678,24 +48689,24 @@ }, /turf/simulated/floor/tiled, /area/hallway/primary/central_one) -"bDy" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/hallway/primary/central_one) "bDz" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/hallway/primary/central_one) +"bDA" = ( /obj/structure/cable{ d1 = 4; d2 = 8; @@ -48717,7 +48728,7 @@ }, /turf/simulated/floor/plating, /area/hallway/primary/central_one) -"bDA" = ( +"bDB" = ( /obj/structure/cable{ d1 = 1; d2 = 8; @@ -48734,14 +48745,14 @@ }, /turf/simulated/floor/plating, /area/maintenance/medbay) -"bDB" = ( +"bDC" = ( /obj/structure/disposalpipe/segment{ dir = 2; icon_state = "pipe-c" }, /turf/simulated/floor/plating, /area/maintenance/medbay) -"bDC" = ( +"bDD" = ( /obj/effect/floor_decal/corner/grey{ icon_state = "corner_white"; dir = 10 @@ -48758,7 +48769,7 @@ }, /turf/simulated/floor/tiled/white, /area/medical/medbay) -"bDD" = ( +"bDE" = ( /obj/effect/floor_decal/corner/grey{ icon_state = "corner_white"; dir = 10 @@ -48766,7 +48777,7 @@ /obj/structure/disposalpipe/segment, /turf/simulated/floor/tiled/white, /area/medical/medbay) -"bDE" = ( +"bDF" = ( /obj/effect/floor_decal/corner/grey{ icon_state = "corner_white"; dir = 10 @@ -48774,7 +48785,7 @@ /obj/machinery/door/firedoor, /turf/simulated/floor/tiled/white, /area/medical/medbay) -"bDF" = ( +"bDG" = ( /obj/effect/floor_decal/corner/grey{ icon_state = "corner_white"; dir = 8 @@ -48785,14 +48796,14 @@ }, /turf/simulated/floor/tiled/white, /area/medical/medbay) -"bDG" = ( +"bDH" = ( /obj/effect/floor_decal/corner/paleblue{ icon_state = "corner_white"; dir = 10 }, /turf/simulated/floor/tiled/white, /area/medical/medbay) -"bDH" = ( +"bDI" = ( /obj/effect/floor_decal/corner/paleblue{ icon_state = "corner_white"; dir = 10 @@ -48804,7 +48815,7 @@ }, /turf/simulated/floor/tiled/white, /area/medical/medbay) -"bDI" = ( +"bDJ" = ( /obj/effect/floor_decal/corner/paleblue{ icon_state = "corner_white"; dir = 10 @@ -48814,7 +48825,7 @@ }, /turf/simulated/floor/tiled/white, /area/medical/medbay) -"bDJ" = ( +"bDK" = ( /obj/effect/floor_decal/corner/paleblue{ icon_state = "corner_white"; dir = 10 @@ -48830,7 +48841,7 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/tiled/white, /area/medical/medbay) -"bDK" = ( +"bDL" = ( /obj/effect/floor_decal/corner/paleblue{ icon_state = "corner_white"; dir = 10 @@ -48841,10 +48852,10 @@ }, /turf/simulated/floor/tiled/white, /area/medical/medbay) -"bDL" = ( +"bDM" = ( /turf/simulated/wall, /area/maintenance/substation/medical) -"bDM" = ( +"bDN" = ( /obj/machinery/door/firedoor, /obj/structure/cable/green{ d1 = 1; @@ -48866,7 +48877,7 @@ }, /turf/simulated/floor/plating, /area/maintenance/substation/medical) -"bDN" = ( +"bDO" = ( /obj/structure/cable{ d1 = 2; d2 = 4; @@ -48881,7 +48892,7 @@ /obj/structure/disposalpipe/segment, /turf/simulated/floor/plating, /area/maintenance/medbay) -"bDO" = ( +"bDP" = ( /obj/structure/cable{ d1 = 4; d2 = 8; @@ -48891,7 +48902,7 @@ /obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, /turf/simulated/floor/plating, /area/maintenance/medbay) -"bDP" = ( +"bDQ" = ( /obj/structure/cable{ d1 = 4; d2 = 8; @@ -48906,7 +48917,7 @@ /obj/machinery/light/small/emergency, /turf/simulated/floor/plating, /area/maintenance/medbay) -"bDQ" = ( +"bDR" = ( /obj/machinery/door/firedoor, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 @@ -48922,7 +48933,7 @@ }, /turf/simulated/floor/plating, /area/maintenance/medbay) -"bDR" = ( +"bDS" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 9 }, @@ -48936,37 +48947,37 @@ }, /turf/simulated/floor/plating, /area/maintenance/medbay) -"bDS" = ( +"bDT" = ( /obj/structure/girder, /turf/simulated/floor/plating, /area/maintenance/medbay) -"bDT" = ( +"bDU" = ( /obj/structure/flora/pottedplant/random, /obj/machinery/light/small, /turf/simulated/floor/plating, /area/turbolift/command_sub) -"bDU" = ( +"bDV" = ( /obj/structure/bed/chair{ dir = 1 }, /turf/simulated/floor/plating, /area/turbolift/command_sub) -"bDV" = ( +"bDW" = ( /obj/random/loot, /turf/simulated/floor/plating, /area/maintenance/research_port) -"bDW" = ( +"bDX" = ( /obj/machinery/vending/cola, /turf/simulated/floor/tiled/white, /area/crew_quarters/sleep/research) -"bDX" = ( -/turf/simulated/floor/tiled/white, -/area/crew_quarters/sleep/research) "bDY" = ( -/obj/effect/floor_decal/corner/mauve, /turf/simulated/floor/tiled/white, /area/crew_quarters/sleep/research) "bDZ" = ( +/obj/effect/floor_decal/corner/mauve, +/turf/simulated/floor/tiled/white, +/area/crew_quarters/sleep/research) +"bEa" = ( /obj/machinery/camera/network/research{ c_tag = "Research - Break Room" }, @@ -48977,7 +48988,7 @@ /obj/machinery/firealarm/north, /turf/simulated/floor/tiled/white, /area/crew_quarters/sleep/research) -"bEa" = ( +"bEb" = ( /obj/machinery/newscaster{ pixel_y = 32 }, @@ -48991,13 +49002,13 @@ /obj/effect/floor_decal/corner/mauve, /turf/simulated/floor/tiled/white, /area/crew_quarters/sleep/research) -"bEb" = ( +"bEc" = ( /obj/structure/sink{ pixel_y = 28 }, /turf/simulated/floor/tiled/white, /area/crew_quarters/sleep/research) -"bEc" = ( +"bEd" = ( /obj/structure/table/standard, /obj/item/weapon/paper_bin{ pixel_x = 1; @@ -49006,7 +49017,7 @@ /obj/item/weapon/pen, /turf/simulated/floor/tiled/white, /area/crew_quarters/sleep/research) -"bEd" = ( +"bEe" = ( /obj/machinery/vending/snack, /obj/machinery/status_display{ pixel_x = 0; @@ -49014,7 +49025,7 @@ }, /turf/simulated/floor/tiled/white, /area/crew_quarters/sleep/research) -"bEe" = ( +"bEf" = ( /obj/machinery/door/firedoor, /obj/structure/grille, /obj/structure/window/reinforced{ @@ -49031,12 +49042,12 @@ }, /turf/simulated/floor/plating, /area/crew_quarters/sleep/research) -"bEf" = ( +"bEg" = ( /obj/machinery/light, /obj/effect/floor_decal/corner/mauve/full, /turf/simulated/floor/tiled/white, /area/rnd/research) -"bEg" = ( +"bEh" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/structure/cable/green{ @@ -49051,14 +49062,14 @@ }, /turf/simulated/floor/tiled/white, /area/rnd/research) -"bEh" = ( +"bEi" = ( /obj/effect/floor_decal/corner/mauve/full{ icon_state = "corner_white_full"; dir = 4 }, /turf/simulated/floor/tiled/white, /area/rnd/research) -"bEi" = ( +"bEj" = ( /obj/machinery/atmospherics/pipe/manifold/visible{ dir = 8 }, @@ -49077,23 +49088,23 @@ }, /turf/simulated/floor/tiled/white, /area/rnd/xenobiology/xenoflora) -"bEj" = ( +"bEk" = ( /obj/machinery/atmospherics/pipe/manifold/visible, /obj/machinery/meter, /turf/simulated/floor/tiled/white, /area/rnd/xenobiology/xenoflora) -"bEk" = ( +"bEl" = ( /obj/machinery/atmospherics/pipe/manifold4w/visible, /turf/simulated/floor/tiled/white, /area/rnd/xenobiology/xenoflora) -"bEl" = ( +"bEm" = ( /obj/machinery/atmospherics/pipe/simple/visible{ icon_state = "intact"; dir = 9 }, /turf/simulated/floor/tiled/white, /area/rnd/xenobiology/xenoflora) -"bEm" = ( +"bEn" = ( /obj/machinery/alarm{ dir = 8; icon_state = "alarm0"; @@ -49107,7 +49118,7 @@ /obj/machinery/botany/editor, /turf/simulated/floor/tiled/white, /area/rnd/xenobiology/xenoflora) -"bEn" = ( +"bEo" = ( /obj/structure/grille, /obj/machinery/door/firedoor, /obj/structure/window/reinforced{ @@ -49120,20 +49131,20 @@ }, /turf/simulated/floor/plating, /area/rnd/lab) -"bEo" = ( -/obj/structure/grille, -/obj/machinery/door/firedoor, -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - icon_state = "rwindow"; - dir = 1 - }, -/turf/simulated/floor/plating, -/area/rnd/lab) "bEp" = ( /obj/structure/grille, /obj/machinery/door/firedoor, /obj/structure/window/reinforced, +/obj/structure/window/reinforced{ + icon_state = "rwindow"; + dir = 1 + }, +/turf/simulated/floor/plating, +/area/rnd/lab) +"bEq" = ( +/obj/structure/grille, +/obj/machinery/door/firedoor, +/obj/structure/window/reinforced, /obj/structure/window/reinforced{ icon_state = "rwindow"; dir = 4 @@ -49144,7 +49155,7 @@ }, /turf/simulated/floor/plating, /area/rnd/lab) -"bEq" = ( +"bEr" = ( /obj/machinery/door/airlock/research{ name = "Materials"; req_access = list(47) @@ -49160,16 +49171,16 @@ /obj/structure/disposalpipe/segment, /turf/simulated/floor/tiled/white, /area/rnd/lab) -"bEr" = ( +"bEs" = ( /turf/simulated/wall, /area/rnd/lab) -"bEs" = ( +"bEt" = ( /obj/machinery/status_display{ pixel_x = -32 }, /turf/simulated/floor/tiled, /area/hallway/primary/central_one) -"bEt" = ( +"bEu" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/structure/cable/green{ @@ -49180,16 +49191,7 @@ /obj/structure/disposalpipe/segment, /turf/simulated/floor/tiled, /area/hallway/primary/central_one) -"bEu" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled, -/area/hallway/primary/central_one) "bEv" = ( -/obj/machinery/door/firedoor, /obj/structure/cable/green{ d1 = 4; d2 = 8; @@ -49198,6 +49200,15 @@ /turf/simulated/floor/tiled, /area/hallway/primary/central_one) "bEw" = ( +/obj/machinery/door/firedoor, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled, +/area/hallway/primary/central_one) +"bEx" = ( /obj/item/device/radio/intercom{ pixel_y = -27 }, @@ -49211,7 +49222,7 @@ }, /turf/simulated/floor/tiled, /area/hallway/primary/central_one) -"bEx" = ( +"bEy" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/structure/cable/green{ @@ -49221,7 +49232,7 @@ }, /turf/simulated/floor/tiled, /area/hallway/primary/central_one) -"bEy" = ( +"bEz" = ( /obj/machinery/camera/network/civilian_main{ c_tag = "Central Corridor - Camera 3"; dir = 8 @@ -49232,7 +49243,7 @@ }, /turf/simulated/floor/tiled, /area/hallway/primary/central_one) -"bEz" = ( +"bEA" = ( /obj/structure/cable{ d1 = 4; d2 = 8; @@ -49250,7 +49261,7 @@ }, /turf/simulated/floor/plating, /area/maintenance/medbay) -"bEA" = ( +"bEB" = ( /obj/structure/cable{ d1 = 4; d2 = 8; @@ -49268,25 +49279,8 @@ /obj/machinery/light/small/emergency, /turf/simulated/floor/plating, /area/maintenance/medbay) -"bEB" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/maintenance/medbay) "bEC" = ( +/obj/effect/decal/cleanable/dirt, /obj/structure/cable{ d1 = 4; d2 = 8; @@ -49304,6 +49298,23 @@ /turf/simulated/floor/plating, /area/maintenance/medbay) "bED" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/maintenance/medbay) +"bEE" = ( /obj/structure/cable{ d1 = 1; d2 = 8; @@ -49321,10 +49332,10 @@ }, /turf/simulated/floor/plating, /area/maintenance/medbay) -"bEE" = ( +"bEF" = ( /turf/simulated/wall, /area/medical/med_office) -"bEF" = ( +"bEG" = ( /obj/machinery/door/firedoor, /obj/effect/floor_decal/corner/grey/diagonal, /obj/machinery/door/airlock/glass_medical{ @@ -49340,7 +49351,7 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/tiled/white, /area/medical/med_office) -"bEG" = ( +"bEH" = ( /obj/structure/grille, /obj/structure/window/reinforced{ icon_state = "rwindow"; @@ -49355,7 +49366,7 @@ /obj/structure/disposalpipe/segment, /turf/simulated/floor/plating, /area/medical/med_office) -"bEH" = ( +"bEI" = ( /obj/structure/grille, /obj/structure/window/reinforced, /obj/structure/window/reinforced{ @@ -49369,10 +49380,10 @@ /obj/machinery/door/firedoor, /turf/simulated/floor/plating, /area/medical/med_office) -"bEI" = ( +"bEJ" = ( /turf/simulated/wall/r_wall, /area/crew_quarters/heads/cmo) -"bEJ" = ( +"bEK" = ( /obj/structure/grille, /obj/machinery/door/firedoor, /obj/structure/window/reinforced/polarized{ @@ -49392,25 +49403,25 @@ }, /turf/simulated/floor/plating, /area/crew_quarters/heads/cmo) -"bEK" = ( -/obj/structure/grille, -/obj/machinery/door/firedoor, -/obj/structure/window/reinforced/polarized{ - id = "CMO" - }, -/obj/structure/window/reinforced/polarized{ - dir = 1; - id = "CMO" - }, -/obj/structure/cable/green{ - d2 = 2; - icon_state = "0-2" - }, -/turf/simulated/floor/plating, -/area/crew_quarters/heads/cmo) "bEL" = ( /obj/structure/grille, /obj/machinery/door/firedoor, +/obj/structure/window/reinforced/polarized{ + id = "CMO" + }, +/obj/structure/window/reinforced/polarized{ + dir = 1; + id = "CMO" + }, +/obj/structure/cable/green{ + d2 = 2; + icon_state = "0-2" + }, +/turf/simulated/floor/plating, +/area/crew_quarters/heads/cmo) +"bEM" = ( +/obj/structure/grille, +/obj/machinery/door/firedoor, /obj/structure/window/reinforced/polarized{ id = "CMO" }, @@ -49428,7 +49439,7 @@ }, /turf/simulated/floor/plating, /area/crew_quarters/heads/cmo) -"bEM" = ( +"bEN" = ( /obj/machinery/door/firedoor, /obj/machinery/door/airlock/command{ id_tag = "CMOdoor"; @@ -49445,7 +49456,7 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/tiled/white, /area/crew_quarters/heads/cmo) -"bEN" = ( +"bEO" = ( /obj/structure/grille, /obj/machinery/door/firedoor, /obj/structure/window/reinforced/polarized{ @@ -49469,13 +49480,13 @@ }, /turf/simulated/floor/plating, /area/crew_quarters/heads/cmo) -"bEO" = ( +"bEP" = ( /obj/machinery/power/breakerbox/activated{ RCon_tag = "\[F.3] Medical Substation Bypass" }, /turf/simulated/floor/plating, /area/maintenance/substation/medical) -"bEP" = ( +"bEQ" = ( /obj/machinery/power/smes/buildable{ charge = 0; RCon_tag = "Substation - \[F.3] Medical" @@ -49490,7 +49501,7 @@ }, /turf/simulated/floor/plating, /area/maintenance/substation/medical) -"bEQ" = ( +"bER" = ( /obj/structure/cable/green{ d2 = 8; icon_state = "0-8" @@ -49506,7 +49517,7 @@ /obj/structure/cable/green, /turf/simulated/floor/plating, /area/maintenance/substation/medical) -"bER" = ( +"bES" = ( /obj/structure/cable{ d1 = 1; d2 = 2; @@ -49518,24 +49529,24 @@ /obj/structure/disposalpipe/segment, /turf/simulated/floor/plating, /area/maintenance/medbay) -"bES" = ( +"bET" = ( /obj/turbolift_map_holder/aurora/command, /turf/simulated/floor/plating, /area/turbolift/command_sub) -"bET" = ( +"bEU" = ( /obj/machinery/vending/cigarette, /obj/structure/sign/nosmoking_1{ pixel_x = -32 }, /turf/simulated/floor/tiled/white, /area/crew_quarters/sleep/research) -"bEU" = ( +"bEV" = ( /obj/effect/landmark/start{ name = "Xenobiologist" }, /turf/simulated/floor/tiled/white, /area/crew_quarters/sleep/research) -"bEV" = ( +"bEW" = ( /obj/structure/bed/chair, /obj/effect/floor_decal/corner/mauve{ icon_state = "corner_white"; @@ -49546,7 +49557,7 @@ }, /turf/simulated/floor/tiled/white, /area/crew_quarters/sleep/research) -"bEW" = ( +"bEX" = ( /obj/structure/bed/chair, /obj/effect/floor_decal/corner/mauve{ icon_state = "corner_white"; @@ -49557,7 +49568,7 @@ }, /turf/simulated/floor/tiled/white, /area/crew_quarters/sleep/research) -"bEX" = ( +"bEY" = ( /obj/structure/bed/chair, /obj/effect/floor_decal/corner/mauve{ icon_state = "corner_white"; @@ -49572,7 +49583,7 @@ }, /turf/simulated/floor/tiled/white, /area/crew_quarters/sleep/research) -"bEY" = ( +"bEZ" = ( /obj/structure/bed/chair, /obj/effect/floor_decal/corner/mauve{ icon_state = "corner_white"; @@ -49583,17 +49594,17 @@ }, /turf/simulated/floor/tiled/white, /area/crew_quarters/sleep/research) -"bEZ" = ( +"bFa" = ( /obj/machinery/atmospherics/unary/vent_scrubber/on, /turf/simulated/floor/tiled/white, /area/crew_quarters/sleep/research) -"bFa" = ( +"bFb" = ( /obj/item/device/radio/intercom{ pixel_x = 27 }, /turf/simulated/floor/tiled/white, /area/crew_quarters/sleep/research) -"bFb" = ( +"bFc" = ( /obj/structure/grille, /obj/structure/window/reinforced, /obj/structure/window/reinforced{ @@ -49608,7 +49619,7 @@ /obj/machinery/door/firedoor, /turf/simulated/floor/plating, /area/rnd/research) -"bFc" = ( +"bFd" = ( /obj/machinery/door/airlock/glass_research{ name = "Genetics Laboratory"; req_access = list(47) @@ -49624,7 +49635,7 @@ /obj/structure/disposalpipe/segment, /turf/simulated/floor/tiled/white, /area/rnd/research) -"bFd" = ( +"bFe" = ( /obj/structure/grille, /obj/structure/window/reinforced, /obj/structure/window/reinforced{ @@ -49639,7 +49650,7 @@ /obj/machinery/door/firedoor, /turf/simulated/floor/plating, /area/rnd/research) -"bFe" = ( +"bFf" = ( /obj/machinery/atmospherics/binary/pump{ dir = 1 }, @@ -49653,7 +49664,7 @@ /obj/effect/floor_decal/corner/green/full, /turf/simulated/floor/tiled/white, /area/rnd/xenobiology/xenoflora) -"bFf" = ( +"bFg" = ( /obj/effect/floor_decal/corner/green{ icon_state = "corner_white"; dir = 10 @@ -49665,7 +49676,7 @@ /obj/item/weapon/disk/botany, /turf/simulated/floor/tiled/white, /area/rnd/xenobiology/xenoflora) -"bFg" = ( +"bFh" = ( /obj/machinery/atmospherics/binary/pump, /obj/effect/floor_decal/corner/green{ icon_state = "corner_white"; @@ -49673,7 +49684,7 @@ }, /turf/simulated/floor/tiled/white, /area/rnd/xenobiology/xenoflora) -"bFh" = ( +"bFi" = ( /obj/structure/reagent_dispensers/watertank, /obj/item/weapon/reagent_containers/glass/bucket, /obj/effect/floor_decal/corner/green{ @@ -49681,14 +49692,14 @@ }, /turf/simulated/floor/tiled/white, /area/rnd/xenobiology/xenoflora) -"bFi" = ( +"bFj" = ( /obj/effect/floor_decal/corner/green{ icon_state = "corner_white"; dir = 8 }, /turf/simulated/floor/tiled/white, /area/rnd/xenobiology/xenoflora) -"bFj" = ( +"bFk" = ( /obj/effect/floor_decal/corner/green{ icon_state = "corner_white"; dir = 6 @@ -49697,10 +49708,10 @@ /obj/machinery/botany/extractor, /turf/simulated/floor/tiled/white, /area/rnd/xenobiology/xenoflora) -"bFk" = ( +"bFl" = ( /turf/simulated/wall/r_wall, /area/outpost/research/chemistry) -"bFl" = ( +"bFm" = ( /obj/structure/table/standard, /obj/item/weapon/storage/box/beakers, /obj/effect/floor_decal/corner/mauve/full{ @@ -49709,7 +49720,7 @@ }, /turf/simulated/floor/tiled/white, /area/outpost/research/chemistry) -"bFm" = ( +"bFn" = ( /obj/effect/floor_decal/corner/mauve{ icon_state = "corner_white"; dir = 5 @@ -49717,14 +49728,14 @@ /obj/machinery/chemical_dispenser/full, /turf/simulated/floor/tiled/white, /area/outpost/research/chemistry) -"bFn" = ( +"bFo" = ( /obj/effect/floor_decal/corner/mauve{ icon_state = "corner_white"; dir = 5 }, /turf/simulated/floor/tiled/white, /area/outpost/research/chemistry) -"bFo" = ( +"bFp" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/structure/cable/green{ @@ -49742,7 +49753,7 @@ }, /turf/simulated/floor/tiled/white, /area/outpost/research/chemistry) -"bFp" = ( +"bFq" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, @@ -49755,7 +49766,7 @@ }, /turf/simulated/floor/tiled/white, /area/outpost/research/chemistry) -"bFq" = ( +"bFr" = ( /obj/machinery/disposal, /obj/item/device/radio/intercom{ pixel_x = 27 @@ -49769,7 +49780,7 @@ }, /turf/simulated/floor/tiled/white, /area/outpost/research/chemistry) -"bFr" = ( +"bFs" = ( /obj/machinery/door/firedoor, /obj/structure/cable{ d1 = 1; @@ -49781,7 +49792,7 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/tiled, /area/hallway/primary/central_one) -"bFs" = ( +"bFt" = ( /obj/machinery/door/airlock/glass{ name = "Holodeck" }, @@ -49790,7 +49801,7 @@ }, /turf/simulated/floor/tiled/dark, /area/hallway/primary/central_one) -"bFt" = ( +"bFu" = ( /obj/machinery/door/firedoor, /obj/structure/grille, /obj/structure/window/reinforced, @@ -49806,7 +49817,7 @@ }, /turf/simulated/floor/plating, /area/hallway/primary/central_one) -"bFu" = ( +"bFv" = ( /obj/machinery/power/apc{ dir = 8; name = "west bump"; @@ -49818,7 +49829,7 @@ }, /turf/simulated/floor/tiled, /area/hallway/primary/central_one) -"bFv" = ( +"bFw" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/structure/cable/green{ @@ -49834,10 +49845,10 @@ }, /turf/simulated/floor/tiled, /area/hallway/primary/central_one) -"bFw" = ( +"bFx" = ( /turf/simulated/wall, /area/library) -"bFx" = ( +"bFy" = ( /obj/structure/grille, /obj/structure/window/reinforced{ dir = 8 @@ -49849,7 +49860,7 @@ /obj/machinery/door/firedoor, /turf/simulated/floor/plating, /area/library) -"bFy" = ( +"bFz" = ( /obj/structure/grille, /obj/structure/window/reinforced{ dir = 1 @@ -49861,7 +49872,7 @@ /obj/machinery/door/firedoor, /turf/simulated/floor/plating, /area/library) -"bFz" = ( +"bFA" = ( /obj/machinery/door/airlock/glass{ name = "Library" }, @@ -49875,14 +49886,14 @@ }, /turf/simulated/floor/carpet, /area/library) -"bFA" = ( +"bFB" = ( /obj/machinery/door/airlock/glass{ name = "Library" }, /obj/machinery/door/firedoor, /turf/simulated/floor/carpet, /area/library) -"bFB" = ( +"bFC" = ( /obj/machinery/door/firedoor, /obj/machinery/door/airlock/maintenance{ name = "Library Maintenance"; @@ -49890,7 +49901,7 @@ }, /turf/simulated/floor/plating, /area/library) -"bFC" = ( +"bFD" = ( /obj/structure/cable{ d1 = 1; d2 = 2; @@ -49906,7 +49917,7 @@ }, /turf/simulated/floor/plating, /area/maintenance/medbay) -"bFD" = ( +"bFE" = ( /obj/machinery/door/firedoor, /obj/machinery/door/blast/shutters{ density = 0; @@ -49928,7 +49939,7 @@ }, /turf/simulated/floor/plating, /area/medical/med_office) -"bFE" = ( +"bFF" = ( /obj/effect/floor_decal/corner/grey/diagonal, /obj/structure/cable/green{ d1 = 1; @@ -49944,7 +49955,7 @@ }, /turf/simulated/floor/tiled/white, /area/medical/med_office) -"bFF" = ( +"bFG" = ( /obj/machinery/disposal, /obj/effect/floor_decal/corner/grey/diagonal, /obj/structure/disposalpipe/trunk{ @@ -49952,7 +49963,7 @@ }, /turf/simulated/floor/tiled/white, /area/medical/med_office) -"bFG" = ( +"bFH" = ( /obj/effect/floor_decal/corner/grey/diagonal, /obj/item/weapon/paper_bin{ pixel_x = -1; @@ -49963,7 +49974,7 @@ /obj/structure/table/standard, /turf/simulated/floor/tiled/white, /area/medical/med_office) -"bFH" = ( +"bFI" = ( /obj/structure/grille, /obj/structure/window/reinforced/polarized{ dir = 8; @@ -49988,7 +49999,7 @@ }, /turf/simulated/floor/plating, /area/crew_quarters/heads/cmo) -"bFI" = ( +"bFJ" = ( /obj/effect/floor_decal/corner/paleblue/full{ icon_state = "corner_white_full"; dir = 8 @@ -50009,7 +50020,7 @@ }, /turf/simulated/floor/tiled/white, /area/crew_quarters/heads/cmo) -"bFJ" = ( +"bFK" = ( /obj/effect/floor_decal/corner/paleblue{ icon_state = "corner_white"; dir = 5 @@ -50029,7 +50040,7 @@ }, /turf/simulated/floor/tiled/white, /area/crew_quarters/heads/cmo) -"bFK" = ( +"bFL" = ( /obj/effect/floor_decal/corner/paleblue{ icon_state = "corner_white"; dir = 5 @@ -50046,7 +50057,7 @@ }, /turf/simulated/floor/tiled/white, /area/crew_quarters/heads/cmo) -"bFL" = ( +"bFM" = ( /obj/effect/floor_decal/corner/paleblue{ icon_state = "corner_white"; dir = 5 @@ -50069,7 +50080,7 @@ }, /turf/simulated/floor/tiled/white, /area/crew_quarters/heads/cmo) -"bFM" = ( +"bFN" = ( /obj/effect/floor_decal/corner/paleblue{ icon_state = "corner_white"; dir = 5 @@ -50089,7 +50100,7 @@ }, /turf/simulated/floor/tiled/white, /area/crew_quarters/heads/cmo) -"bFN" = ( +"bFO" = ( /obj/effect/floor_decal/corner/paleblue{ icon_state = "corner_white"; dir = 5 @@ -50111,7 +50122,7 @@ }, /turf/simulated/floor/tiled/white, /area/crew_quarters/heads/cmo) -"bFO" = ( +"bFP" = ( /obj/effect/floor_decal/corner/paleblue{ icon_state = "corner_white"; dir = 5 @@ -50141,7 +50152,7 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/tiled/white, /area/crew_quarters/heads/cmo) -"bFP" = ( +"bFQ" = ( /obj/effect/floor_decal/corner/paleblue/full{ icon_state = "corner_white_full"; dir = 1 @@ -50157,7 +50168,7 @@ }, /turf/simulated/floor/tiled/white, /area/crew_quarters/heads/cmo) -"bFQ" = ( +"bFR" = ( /obj/structure/cable{ d1 = 1; d2 = 2; @@ -50176,7 +50187,7 @@ }, /turf/simulated/floor/plating, /area/maintenance/substation/medical) -"bFR" = ( +"bFS" = ( /obj/machinery/power/terminal{ icon_state = "term"; dir = 1 @@ -50192,7 +50203,7 @@ }, /turf/simulated/floor/plating, /area/maintenance/substation/medical) -"bFS" = ( +"bFT" = ( /obj/structure/cable/green, /obj/machinery/power/apc{ dir = 2; @@ -50204,31 +50215,31 @@ }, /turf/simulated/floor/plating, /area/maintenance/substation/medical) -"bFT" = ( +"bFU" = ( /obj/structure/table/rack, /turf/simulated/floor/tiled, /area/maintenance/medbay) -"bFU" = ( -/turf/simulated/floor/tiled, -/area/maintenance/medbay) "bFV" = ( -/obj/structure/closet, -/obj/random/loot, /turf/simulated/floor/tiled, /area/maintenance/medbay) "bFW" = ( /obj/structure/closet, /obj/random/loot, +/turf/simulated/floor/tiled, +/area/maintenance/medbay) +"bFX" = ( +/obj/structure/closet, +/obj/random/loot, /turf/simulated/floor/plating, /area/maintenance/research_port) -"bFX" = ( +"bFY" = ( /obj/machinery/papershredder, /obj/structure/extinguisher_cabinet{ pixel_x = -32 }, /turf/simulated/floor/tiled/white, /area/crew_quarters/sleep/research) -"bFY" = ( +"bFZ" = ( /obj/effect/floor_decal/corner/mauve{ icon_state = "corner_white"; dir = 9 @@ -50240,18 +50251,18 @@ /obj/machinery/hologram/holopad, /turf/simulated/floor/tiled/white, /area/crew_quarters/sleep/research) -"bFZ" = ( +"bGa" = ( /obj/structure/table/standard, /obj/item/weapon/folder/purple, /turf/simulated/floor/tiled/white, /area/crew_quarters/sleep/research) -"bGa" = ( +"bGb" = ( /obj/structure/table/standard, /obj/machinery/atmospherics/unary/vent_pump/on, /obj/item/weapon/folder/purple, /turf/simulated/floor/tiled/white, /area/crew_quarters/sleep/research) -"bGb" = ( +"bGc" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/effect/floor_decal/corner/mauve{ icon_state = "corner_white"; @@ -50269,14 +50280,14 @@ }, /turf/simulated/floor/tiled/white, /area/crew_quarters/sleep/research) -"bGc" = ( +"bGd" = ( /obj/effect/floor_decal/corner/mauve/full{ icon_state = "corner_white_full"; dir = 8 }, /turf/simulated/floor/tiled/white, /area/rnd/research) -"bGd" = ( +"bGe" = ( /obj/machinery/camera/network/research{ c_tag = "Research - Corridor Camera 1" }, @@ -50291,7 +50302,7 @@ }, /turf/simulated/floor/tiled/white, /area/rnd/research) -"bGe" = ( +"bGf" = ( /obj/machinery/atmospherics/pipe/simple/visible, /obj/machinery/door/window/eastright{ dir = 1; @@ -50315,7 +50326,7 @@ dir = 5 }, /area/rnd/xenobiology/xenoflora) -"bGf" = ( +"bGg" = ( /obj/structure/window/reinforced{ dir = 1 }, @@ -50328,7 +50339,7 @@ dir = 5 }, /area/rnd/xenobiology/xenoflora) -"bGg" = ( +"bGh" = ( /obj/structure/window/reinforced{ dir = 1 }, @@ -50339,7 +50350,7 @@ dir = 5 }, /area/rnd/xenobiology/xenoflora) -"bGh" = ( +"bGi" = ( /obj/structure/window/reinforced{ dir = 1 }, @@ -50355,7 +50366,7 @@ dir = 5 }, /area/rnd/xenobiology/xenoflora) -"bGi" = ( +"bGj" = ( /obj/effect/floor_decal/corner/green{ icon_state = "corner_white"; dir = 6 @@ -50363,7 +50374,7 @@ /obj/structure/bed/chair/office/dark, /turf/simulated/floor/tiled/white, /area/rnd/xenobiology/xenoflora) -"bGj" = ( +"bGk" = ( /obj/structure/sign/nosmoking_1{ pixel_x = -32 }, @@ -50381,13 +50392,13 @@ /obj/item/weapon/reagent_containers/dropper, /turf/simulated/floor/tiled/white, /area/outpost/research/chemistry) -"bGk" = ( +"bGl" = ( /obj/structure/bed/chair/office/light{ dir = 8 }, /turf/simulated/floor/tiled/white, /area/outpost/research/chemistry) -"bGl" = ( +"bGm" = ( /obj/structure/disposalpipe/segment{ dir = 4; icon_state = "pipe-c" @@ -50405,7 +50416,7 @@ }, /turf/simulated/floor/tiled/white, /area/outpost/research/chemistry) -"bGm" = ( +"bGn" = ( /obj/structure/disposalpipe/segment{ dir = 8; icon_state = "pipe-c" @@ -50426,7 +50437,7 @@ }, /turf/simulated/floor/tiled/white, /area/outpost/research/chemistry) -"bGn" = ( +"bGo" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 }, @@ -50437,7 +50448,7 @@ }, /turf/simulated/floor/tiled/white, /area/outpost/research/chemistry) -"bGo" = ( +"bGp" = ( /obj/structure/sink{ dir = 4; icon_state = "sink"; @@ -50459,14 +50470,14 @@ /obj/machinery/firealarm/east, /turf/simulated/floor/tiled/white, /area/outpost/research/chemistry) -"bGp" = ( +"bGq" = ( /obj/machinery/camera/network/civilian_main{ c_tag = "Central Corridor - Camera 1"; dir = 4 }, /turf/simulated/floor/tiled, /area/hallway/primary/central_one) -"bGq" = ( +"bGr" = ( /obj/structure/sign/directions/evac{ dir = 8; icon_state = "direction_evac"; @@ -50480,7 +50491,7 @@ }, /turf/simulated/floor/tiled, /area/hallway/primary/central_one) -"bGr" = ( +"bGs" = ( /obj/structure/sign/directions/engineering{ dir = 8; icon_state = "direction_eng"; @@ -50498,7 +50509,7 @@ }, /turf/simulated/floor/tiled, /area/hallway/primary/central_one) -"bGs" = ( +"bGt" = ( /obj/machinery/atmospherics/unary/vent_scrubber/on, /obj/structure/sign/directions/security{ dir = 4; @@ -50518,7 +50529,7 @@ }, /turf/simulated/floor/tiled, /area/hallway/primary/central_one) -"bGt" = ( +"bGu" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/structure/cable/green{ @@ -50529,7 +50540,7 @@ /obj/structure/disposalpipe/segment, /turf/simulated/floor/tiled, /area/hallway/primary/central_one) -"bGu" = ( +"bGv" = ( /obj/machinery/camera/network/civilian_main{ c_tag = "Central Corridor - Camera 2"; dir = 8 @@ -50541,18 +50552,18 @@ }, /turf/simulated/floor/tiled, /area/hallway/primary/central_one) -"bGv" = ( +"bGw" = ( /obj/structure/bed/chair/comfy/black{ dir = 4 }, /turf/simulated/floor/wood, /area/library) -"bGw" = ( +"bGx" = ( /obj/structure/table/wood, /obj/item/weapon/pen, /turf/simulated/floor/wood, /area/library) -"bGx" = ( +"bGy" = ( /obj/structure/bed/chair/comfy/black{ dir = 8 }, @@ -50562,7 +50573,7 @@ }, /turf/simulated/floor/wood, /area/library) -"bGy" = ( +"bGz" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/structure/cable/green{ @@ -50572,10 +50583,10 @@ }, /turf/simulated/floor/carpet, /area/library) -"bGz" = ( +"bGA" = ( /turf/simulated/floor/carpet, /area/library) -"bGA" = ( +"bGB" = ( /obj/machinery/status_display{ density = 0; layer = 4; @@ -50584,10 +50595,10 @@ }, /turf/simulated/floor/wood, /area/library) -"bGB" = ( +"bGC" = ( /turf/simulated/floor/wood, /area/library) -"bGC" = ( +"bGD" = ( /obj/structure/table/wood, /obj/item/weapon/paper_bin{ pixel_x = 1; @@ -50598,11 +50609,11 @@ }, /turf/simulated/floor/wood, /area/library) -"bGD" = ( +"bGE" = ( /obj/machinery/libraryscanner, /turf/simulated/floor/wood, /area/library) -"bGE" = ( +"bGF" = ( /obj/machinery/librarycomp{ pixel_y = 0 }, @@ -50612,7 +50623,7 @@ }, /turf/simulated/floor/wood, /area/library) -"bGF" = ( +"bGG" = ( /obj/machinery/light/small{ dir = 8 }, @@ -50622,7 +50633,7 @@ }, /turf/simulated/floor/tiled/dark, /area/library) -"bGG" = ( +"bGH" = ( /obj/machinery/disposal, /obj/structure/disposalpipe/trunk{ dir = 8 @@ -50636,13 +50647,13 @@ }, /turf/simulated/floor/tiled/dark, /area/library) -"bGH" = ( +"bGI" = ( /obj/structure/bookcase{ name = "Forbidden Knowledge" }, /turf/simulated/floor/tiled/dark, /area/library) -"bGI" = ( +"bGJ" = ( /obj/effect/floor_decal/corner/grey/diagonal, /obj/structure/cable/green, /obj/machinery/power/apc{ @@ -50657,7 +50668,7 @@ }, /turf/simulated/floor/tiled/white, /area/medical/med_office) -"bGJ" = ( +"bGK" = ( /obj/effect/floor_decal/corner/grey/diagonal, /obj/structure/bed/chair/office/dark{ dir = 4 @@ -50667,13 +50678,13 @@ }, /turf/simulated/floor/tiled/white, /area/medical/med_office) -"bGK" = ( +"bGL" = ( /obj/effect/floor_decal/corner/grey/diagonal, /obj/machinery/computer/med_data/laptop, /obj/structure/table/standard, /turf/simulated/floor/tiled/white, /area/medical/med_office) -"bGL" = ( +"bGM" = ( /obj/structure/grille, /obj/structure/window/reinforced/polarized{ dir = 8; @@ -50691,7 +50702,7 @@ }, /turf/simulated/floor/plating, /area/crew_quarters/heads/cmo) -"bGM" = ( +"bGN" = ( /obj/effect/floor_decal/corner/paleblue{ icon_state = "corner_white"; dir = 9 @@ -50699,17 +50710,17 @@ /obj/machinery/computer/med_data, /turf/simulated/floor/tiled/white, /area/crew_quarters/heads/cmo) -"bGN" = ( +"bGO" = ( /obj/effect/floor_decal/corner/paleblue/diagonal, /turf/simulated/floor/tiled/white, /area/crew_quarters/heads/cmo) -"bGO" = ( +"bGP" = ( /obj/effect/floor_decal/corner/paleblue/diagonal, /obj/structure/table/glass, /obj/machinery/computer/skills, /turf/simulated/floor/tiled/white, /area/crew_quarters/heads/cmo) -"bGP" = ( +"bGQ" = ( /obj/effect/floor_decal/corner/paleblue/diagonal, /obj/structure/bed/chair/comfy/teal{ dir = 8; @@ -50717,7 +50728,7 @@ }, /turf/simulated/floor/tiled/white, /area/crew_quarters/heads/cmo) -"bGQ" = ( +"bGR" = ( /obj/effect/floor_decal/corner/paleblue/diagonal, /obj/structure/cable/green{ d1 = 1; @@ -50727,7 +50738,7 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/tiled/white, /area/crew_quarters/heads/cmo) -"bGR" = ( +"bGS" = ( /obj/effect/floor_decal/corner/paleblue{ icon_state = "corner_white"; dir = 6 @@ -50735,7 +50746,7 @@ /obj/machinery/papershredder, /turf/simulated/floor/tiled/white, /area/crew_quarters/heads/cmo) -"bGS" = ( +"bGT" = ( /obj/machinery/door/airlock/engineering{ name = "Medbay Substation"; req_one_access = list(11,24,5) @@ -50748,17 +50759,17 @@ /obj/machinery/door/firedoor, /turf/simulated/floor/plating, /area/maintenance/substation/medical) -"bGT" = ( +"bGU" = ( /obj/random/junk, /turf/simulated/floor/plating, /area/maintenance/medbay) -"bGU" = ( +"bGV" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 6 }, /turf/simulated/floor/plating, /area/maintenance/maintcentral) -"bGV" = ( +"bGW" = ( /obj/structure/cable/green{ d1 = 2; d2 = 4; @@ -50772,7 +50783,7 @@ }, /turf/simulated/floor/plating, /area/maintenance/maintcentral) -"bGW" = ( +"bGX" = ( /obj/structure/cable/green{ d1 = 4; d2 = 8; @@ -50786,7 +50797,7 @@ }, /turf/simulated/floor/plating, /area/maintenance/maintcentral) -"bGX" = ( +"bGY" = ( /obj/structure/cable/green{ d1 = 1; d2 = 8; @@ -50801,7 +50812,7 @@ }, /turf/simulated/floor/plating, /area/maintenance/maintcentral) -"bGY" = ( +"bGZ" = ( /obj/machinery/light/small/emergency{ dir = 8 }, @@ -50809,7 +50820,7 @@ /obj/random/loot, /turf/simulated/floor/plating, /area/maintenance/research_port) -"bGZ" = ( +"bHa" = ( /obj/machinery/vending/coffee, /obj/structure/disposalpipe/segment{ dir = 4; @@ -50817,7 +50828,7 @@ }, /turf/simulated/floor/tiled/white, /area/crew_quarters/sleep/research) -"bHa" = ( +"bHb" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, @@ -50832,7 +50843,7 @@ }, /turf/simulated/floor/tiled/white, /area/crew_quarters/sleep/research) -"bHb" = ( +"bHc" = ( /obj/structure/bed/chair{ dir = 1 }, @@ -50854,7 +50865,7 @@ }, /turf/simulated/floor/tiled/white, /area/crew_quarters/sleep/research) -"bHc" = ( +"bHd" = ( /obj/structure/bed/chair{ dir = 1 }, @@ -50871,7 +50882,7 @@ }, /turf/simulated/floor/tiled/white, /area/crew_quarters/sleep/research) -"bHd" = ( +"bHe" = ( /obj/structure/bed/chair{ dir = 1 }, @@ -50893,7 +50904,7 @@ }, /turf/simulated/floor/tiled/white, /area/crew_quarters/sleep/research) -"bHe" = ( +"bHf" = ( /obj/structure/bed/chair{ dir = 1 }, @@ -50916,7 +50927,7 @@ }, /turf/simulated/floor/tiled/white, /area/crew_quarters/sleep/research) -"bHf" = ( +"bHg" = ( /obj/structure/bed/chair{ dir = 1 }, @@ -50933,7 +50944,7 @@ }, /turf/simulated/floor/tiled/white, /area/crew_quarters/sleep/research) -"bHg" = ( +"bHh" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, @@ -50948,7 +50959,7 @@ }, /turf/simulated/floor/tiled/white, /area/crew_quarters/sleep/research) -"bHh" = ( +"bHi" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, @@ -50967,7 +50978,7 @@ }, /turf/simulated/floor/tiled/white, /area/crew_quarters/sleep/research) -"bHi" = ( +"bHj" = ( /obj/machinery/door/firedoor, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 @@ -50989,7 +51000,7 @@ }, /turf/simulated/floor/tiled, /area/crew_quarters/sleep/research) -"bHj" = ( +"bHk" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, @@ -51006,7 +51017,7 @@ }, /turf/simulated/floor/tiled/white, /area/rnd/research) -"bHk" = ( +"bHl" = ( /obj/machinery/atmospherics/pipe/manifold/hidden/supply{ dir = 4 }, @@ -51029,7 +51040,7 @@ }, /turf/simulated/floor/tiled/white, /area/rnd/research) -"bHl" = ( +"bHm" = ( /obj/machinery/atmospherics/pipe/simple/visible{ icon_state = "intact"; dir = 5 @@ -51044,7 +51055,7 @@ dir = 5 }, /area/rnd/xenobiology/xenoflora) -"bHm" = ( +"bHn" = ( /obj/machinery/atmospherics/pipe/simple/visible{ dir = 4 }, @@ -51053,7 +51064,7 @@ dir = 5 }, /area/rnd/xenobiology/xenoflora) -"bHn" = ( +"bHo" = ( /obj/machinery/atmospherics/pipe/manifold/visible, /obj/machinery/light, /turf/simulated/floor/tiled{ @@ -51061,7 +51072,7 @@ dir = 5 }, /area/rnd/xenobiology/xenoflora) -"bHo" = ( +"bHp" = ( /obj/structure/window/reinforced{ dir = 4 }, @@ -51074,13 +51085,13 @@ dir = 5 }, /area/rnd/xenobiology/xenoflora) -"bHp" = ( +"bHq" = ( /obj/effect/floor_decal/corner/green/full, /obj/structure/table/standard, /obj/machinery/reagentgrinder, /turf/simulated/floor/tiled/white, /area/rnd/xenobiology/xenoflora) -"bHq" = ( +"bHr" = ( /obj/effect/floor_decal/corner/green/full{ icon_state = "corner_white_full"; dir = 4 @@ -51090,7 +51101,7 @@ /obj/item/weapon/pen, /turf/simulated/floor/tiled/white, /area/rnd/xenobiology/xenoflora) -"bHr" = ( +"bHs" = ( /obj/structure/table/standard, /obj/machinery/reagentgrinder, /obj/machinery/requests_console{ @@ -51103,7 +51114,7 @@ /obj/effect/floor_decal/corner/mauve/full, /turf/simulated/floor/tiled/white, /area/outpost/research/chemistry) -"bHs" = ( +"bHt" = ( /obj/machinery/alarm{ dir = 1; icon_state = "alarm0"; @@ -51121,7 +51132,7 @@ /obj/machinery/chem_master, /turf/simulated/floor/tiled/white, /area/outpost/research/chemistry) -"bHt" = ( +"bHu" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/structure/cable/green{ @@ -51136,7 +51147,7 @@ }, /turf/simulated/floor/tiled/white, /area/outpost/research/chemistry) -"bHu" = ( +"bHv" = ( /obj/machinery/atmospherics/unary/vent_pump/on{ dir = 1 }, @@ -51146,7 +51157,7 @@ }, /turf/simulated/floor/tiled/white, /area/outpost/research/chemistry) -"bHv" = ( +"bHw" = ( /obj/structure/table/standard, /obj/structure/cable/green, /obj/machinery/power/apc{ @@ -51160,7 +51171,7 @@ }, /turf/simulated/floor/tiled/white, /area/outpost/research/chemistry) -"bHw" = ( +"bHx" = ( /obj/structure/table/standard, /obj/effect/floor_decal/corner/mauve/full{ icon_state = "corner_white_full"; @@ -51168,7 +51179,7 @@ }, /turf/simulated/floor/tiled/white, /area/outpost/research/chemistry) -"bHx" = ( +"bHy" = ( /obj/structure/cable{ d1 = 2; d2 = 4; @@ -51192,7 +51203,7 @@ }, /turf/simulated/floor/tiled, /area/hallway/primary/central_one) -"bHy" = ( +"bHz" = ( /obj/structure/cable{ d1 = 1; d2 = 8; @@ -51206,7 +51217,7 @@ }, /turf/simulated/floor/tiled, /area/hallway/primary/central_one) -"bHz" = ( +"bHA" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, @@ -51215,7 +51226,7 @@ }, /turf/simulated/floor/tiled, /area/hallway/primary/central_one) -"bHA" = ( +"bHB" = ( /obj/structure/cable/green{ d1 = 2; d2 = 4; @@ -51229,7 +51240,7 @@ }, /turf/simulated/floor/tiled, /area/hallway/primary/central_one) -"bHB" = ( +"bHC" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 }, @@ -51243,21 +51254,21 @@ }, /turf/simulated/floor/tiled, /area/hallway/primary/central_one) -"bHC" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled, -/area/hallway/primary/central_one) "bHD" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled, +/area/hallway/primary/central_one) +"bHE" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, @@ -51275,7 +51286,7 @@ }, /turf/simulated/floor/tiled, /area/hallway/primary/central_one) -"bHE" = ( +"bHF" = ( /obj/machinery/atmospherics/pipe/manifold/hidden/supply{ dir = 1 }, @@ -51298,7 +51309,7 @@ }, /turf/simulated/floor/tiled, /area/hallway/primary/central_one) -"bHF" = ( +"bHG" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, @@ -51319,7 +51330,7 @@ }, /turf/simulated/floor/tiled, /area/hallway/primary/central_one) -"bHG" = ( +"bHH" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, @@ -51334,7 +51345,7 @@ }, /turf/simulated/floor/tiled, /area/hallway/primary/central_one) -"bHH" = ( +"bHI" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, @@ -51351,7 +51362,7 @@ }, /turf/simulated/floor/tiled, /area/hallway/primary/central_one) -"bHI" = ( +"bHJ" = ( /obj/structure/cable/green{ d1 = 4; d2 = 8; @@ -51373,7 +51384,7 @@ }, /turf/simulated/floor/tiled, /area/hallway/primary/central_one) -"bHJ" = ( +"bHK" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ icon_state = "intact-supply"; dir = 9 @@ -51396,7 +51407,7 @@ }, /turf/simulated/floor/tiled, /area/hallway/primary/central_one) -"bHK" = ( +"bHL" = ( /obj/structure/cable/green{ d2 = 4; icon_state = "0-4" @@ -51408,7 +51419,7 @@ }, /turf/simulated/floor/wood, /area/library) -"bHL" = ( +"bHM" = ( /obj/structure/cable/green{ d1 = 4; d2 = 8; @@ -51416,7 +51427,7 @@ }, /turf/simulated/floor/wood, /area/library) -"bHM" = ( +"bHN" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/structure/cable/green{ @@ -51426,7 +51437,7 @@ }, /turf/simulated/floor/carpet, /area/library) -"bHN" = ( +"bHO" = ( /obj/structure/table/wood, /obj/machinery/door/window/westright{ dir = 8; @@ -51436,20 +51447,20 @@ }, /turf/simulated/floor/wood, /area/library) -"bHO" = ( +"bHP" = ( /obj/structure/bed/chair/office/dark{ dir = 8 }, /turf/simulated/floor/wood, /area/library) -"bHP" = ( +"bHQ" = ( /obj/structure/disposalpipe/segment{ dir = 4; icon_state = "pipe-c" }, /turf/simulated/floor/wood, /area/library) -"bHQ" = ( +"bHR" = ( /obj/machinery/door/morgue{ dir = 2; name = "Private Study"; @@ -51461,14 +51472,14 @@ /obj/machinery/door/firedoor, /turf/simulated/floor/tiled/dark, /area/library) -"bHR" = ( +"bHS" = ( /obj/structure/disposalpipe/segment{ dir = 8; icon_state = "pipe-c" }, /turf/simulated/floor/tiled/dark, /area/library) -"bHS" = ( +"bHT" = ( /obj/structure/bed/chair/comfy/black{ dir = 4 }, @@ -51477,7 +51488,7 @@ }, /turf/simulated/floor/tiled/dark, /area/library) -"bHT" = ( +"bHU" = ( /obj/structure/table/wood, /obj/item/device/taperecorder{ pixel_y = 0 @@ -51492,7 +51503,7 @@ }, /turf/simulated/floor/tiled/dark, /area/library) -"bHU" = ( +"bHV" = ( /obj/effect/floor_decal/corner/grey/diagonal, /obj/machinery/alarm{ dir = 4; @@ -51510,17 +51521,17 @@ }, /turf/simulated/floor/tiled/white, /area/medical/med_office) -"bHV" = ( +"bHW" = ( /obj/effect/floor_decal/corner/grey/diagonal, /turf/simulated/floor/tiled/white, /area/medical/med_office) -"bHW" = ( +"bHX" = ( /obj/effect/floor_decal/corner/grey/diagonal, /obj/machinery/recharger, /obj/structure/table/standard, /turf/simulated/floor/tiled/white, /area/medical/med_office) -"bHX" = ( +"bHY" = ( /obj/effect/floor_decal/corner/paleblue{ icon_state = "corner_white"; dir = 9 @@ -51528,7 +51539,7 @@ /obj/item/modular_computer/console/preset/medical, /turf/simulated/floor/tiled/white, /area/crew_quarters/heads/cmo) -"bHY" = ( +"bHZ" = ( /obj/effect/floor_decal/corner/paleblue/diagonal, /obj/structure/bed/chair/office/light{ dir = 4 @@ -51555,26 +51566,26 @@ }, /turf/simulated/floor/tiled/white, /area/crew_quarters/heads/cmo) -"bHZ" = ( +"bIa" = ( /obj/effect/floor_decal/corner/paleblue/diagonal, /obj/structure/table/glass, /obj/item/weapon/folder/white, /obj/item/weapon/stamp/cmo, /turf/simulated/floor/tiled/white, /area/crew_quarters/heads/cmo) -"bIa" = ( +"bIb" = ( /obj/effect/floor_decal/corner/paleblue/diagonal, /obj/machinery/hologram/holopad, /turf/simulated/floor/tiled/white, /area/crew_quarters/heads/cmo) -"bIb" = ( +"bIc" = ( /obj/effect/floor_decal/corner/paleblue/diagonal, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 6 }, /turf/simulated/floor/tiled/white, /area/crew_quarters/heads/cmo) -"bIc" = ( +"bId" = ( /obj/effect/floor_decal/corner/paleblue/diagonal, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 @@ -51584,7 +51595,7 @@ }, /turf/simulated/floor/tiled/white, /area/crew_quarters/heads/cmo) -"bId" = ( +"bIe" = ( /obj/effect/floor_decal/corner/paleblue/diagonal, /obj/structure/cable/green{ d1 = 1; @@ -51596,7 +51607,7 @@ }, /turf/simulated/floor/tiled/white, /area/crew_quarters/heads/cmo) -"bIe" = ( +"bIf" = ( /obj/effect/floor_decal/corner/paleblue{ icon_state = "corner_white"; dir = 6 @@ -51607,7 +51618,7 @@ }, /turf/simulated/floor/tiled/white, /area/crew_quarters/heads/cmo) -"bIf" = ( +"bIg" = ( /obj/structure/cable{ d1 = 2; d2 = 4; @@ -51631,7 +51642,7 @@ }, /turf/simulated/floor/plating, /area/maintenance/medbay) -"bIg" = ( +"bIh" = ( /obj/structure/cable{ d1 = 4; d2 = 8; @@ -51649,7 +51660,7 @@ /obj/random/junk, /turf/simulated/floor/plating, /area/maintenance/medbay) -"bIh" = ( +"bIi" = ( /obj/structure/cable{ d1 = 1; d2 = 8; @@ -51667,15 +51678,15 @@ }, /turf/simulated/floor/plating, /area/maintenance/medbay) -"bIi" = ( +"bIj" = ( /obj/random/loot, /turf/simulated/floor/plating, /area/maintenance/medbay) -"bIj" = ( +"bIk" = ( /obj/machinery/atmospherics/pipe/simple/hidden/universal, /turf/simulated/floor/plating, /area/maintenance/maintcentral) -"bIk" = ( +"bIl" = ( /obj/structure/cable/green{ d1 = 1; d2 = 2; @@ -51684,7 +51695,7 @@ /obj/machinery/atmospherics/pipe/simple/hidden/universal, /turf/simulated/floor/plating, /area/maintenance/maintcentral) -"bIl" = ( +"bIm" = ( /obj/structure/disposalpipe/segment, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 6 @@ -51698,7 +51709,7 @@ }, /turf/simulated/floor/tiled/white, /area/crew_quarters/sleep/research) -"bIm" = ( +"bIn" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 9 }, @@ -51713,25 +51724,14 @@ /obj/machinery/light, /turf/simulated/floor/tiled/white, /area/crew_quarters/sleep/research) -"bIn" = ( -/obj/effect/floor_decal/corner/mauve{ - icon_state = "corner_white"; - dir = 4 - }, -/turf/simulated/floor/tiled/white, -/area/crew_quarters/sleep/research) "bIo" = ( /obj/effect/floor_decal/corner/mauve{ icon_state = "corner_white"; - dir = 1 + dir = 4 }, /turf/simulated/floor/tiled/white, /area/crew_quarters/sleep/research) "bIp" = ( -/obj/effect/floor_decal/corner/mauve{ - icon_state = "corner_white"; - dir = 4 - }, /obj/effect/floor_decal/corner/mauve{ icon_state = "corner_white"; dir = 1 @@ -51739,12 +51739,23 @@ /turf/simulated/floor/tiled/white, /area/crew_quarters/sleep/research) "bIq" = ( +/obj/effect/floor_decal/corner/mauve{ + icon_state = "corner_white"; + dir = 4 + }, +/obj/effect/floor_decal/corner/mauve{ + icon_state = "corner_white"; + dir = 1 + }, +/turf/simulated/floor/tiled/white, +/area/crew_quarters/sleep/research) +"bIr" = ( /obj/structure/noticeboard{ pixel_y = -32 }, /turf/simulated/floor/tiled/white, /area/crew_quarters/sleep/research) -"bIr" = ( +"bIs" = ( /obj/machinery/light, /obj/machinery/power/apc{ dir = 2; @@ -51754,7 +51765,7 @@ /obj/structure/cable/green, /turf/simulated/floor/tiled/white, /area/crew_quarters/sleep/research) -"bIs" = ( +"bIt" = ( /obj/machinery/disposal, /obj/structure/disposalpipe/trunk{ dir = 1 @@ -51764,14 +51775,14 @@ }, /turf/simulated/floor/tiled/white, /area/crew_quarters/sleep/research) -"bIt" = ( +"bIu" = ( /obj/machinery/light/small{ dir = 8 }, /obj/effect/floor_decal/corner/mauve/full, /turf/simulated/floor/tiled/white, /area/rnd/research) -"bIu" = ( +"bIv" = ( /obj/effect/floor_decal/corner/mauve/full{ icon_state = "corner_white_full"; dir = 4 @@ -51779,13 +51790,13 @@ /obj/machinery/firealarm/east, /turf/simulated/floor/tiled/white, /area/rnd/research) -"bIv" = ( +"bIw" = ( /turf/simulated/wall/r_wall, /area/rnd/misc_lab) -"bIw" = ( +"bIx" = ( /turf/simulated/wall, /area/outpost/research/chemistry) -"bIx" = ( +"bIy" = ( /obj/machinery/door/airlock/research{ name = "Miscellaneous Research Room"; req_one_access = list(7) @@ -51801,18 +51812,18 @@ /obj/structure/disposalpipe/segment, /turf/simulated/floor/tiled/white, /area/outpost/research/chemistry) -"bIy" = ( +"bIz" = ( /obj/machinery/newscaster{ pixel_y = -32 }, /turf/simulated/floor/tiled, /area/hallway/primary/central_one) -"bIz" = ( +"bIA" = ( /obj/machinery/light, /obj/machinery/firealarm/south, /turf/simulated/floor/tiled, /area/hallway/primary/central_one) -"bIA" = ( +"bIB" = ( /obj/structure/cable/green{ d1 = 1; d2 = 2; @@ -51822,26 +51833,26 @@ /obj/machinery/atmospherics/pipe/simple/hidden/supply, /turf/simulated/floor/tiled, /area/hallway/primary/central_one) -"bIB" = ( +"bIC" = ( /obj/machinery/atmospherics/unary/vent_pump/on{ dir = 1 }, /turf/simulated/floor/tiled, /area/hallway/primary/central_one) -"bIC" = ( +"bID" = ( /obj/structure/extinguisher_cabinet{ pixel_y = -30 }, /turf/simulated/floor/tiled, /area/hallway/primary/central_one) -"bID" = ( +"bIE" = ( /obj/machinery/light, /obj/item/device/radio/intercom{ pixel_y = -26 }, /turf/simulated/floor/tiled, /area/hallway/primary/central_one) -"bIE" = ( +"bIF" = ( /obj/structure/table/wood, /obj/item/device/flashlight/lamp/green{ pixel_x = 1; @@ -51850,16 +51861,16 @@ /obj/machinery/firealarm/west, /turf/simulated/floor/wood, /area/library) -"bIF" = ( +"bIG" = ( /obj/structure/bed/chair/comfy/black, /turf/simulated/floor/wood, /area/library) -"bIG" = ( +"bIH" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/carpet, /area/library) -"bIH" = ( +"bII" = ( /obj/structure/table/wood, /obj/item/weapon/pen/blue{ pixel_x = 5; @@ -51871,7 +51882,7 @@ /obj/machinery/recharger, /turf/simulated/floor/wood, /area/library) -"bII" = ( +"bIJ" = ( /obj/structure/disposalpipe/segment, /obj/machinery/light{ dir = 4; @@ -51887,15 +51898,15 @@ }, /turf/simulated/floor/wood, /area/library) -"bIJ" = ( +"bIK" = ( /turf/simulated/floor/tiled/dark, /area/library) -"bIK" = ( +"bIL" = ( /obj/structure/cult/tome, /obj/item/clothing/under/suit_jacket/red, /turf/simulated/floor/tiled/dark, /area/library) -"bIL" = ( +"bIM" = ( /obj/structure/table/wood, /obj/item/weapon/paper_bin{ pixel_x = -3; @@ -51904,7 +51915,7 @@ /obj/item/weapon/pen/invisible, /turf/simulated/floor/tiled/dark, /area/library) -"bIM" = ( +"bIN" = ( /obj/effect/floor_decal/corner/grey/diagonal, /obj/machinery/papershredder, /obj/machinery/light_switch{ @@ -51916,14 +51927,14 @@ }, /turf/simulated/floor/tiled/white, /area/medical/med_office) -"bIN" = ( +"bIO" = ( /obj/effect/floor_decal/corner/grey/diagonal, /obj/machinery/hologram/holopad, /obj/machinery/firealarm/south, /obj/machinery/light, /turf/simulated/floor/tiled/white, /area/medical/med_office) -"bIO" = ( +"bIP" = ( /obj/effect/floor_decal/corner/grey/diagonal, /obj/machinery/photocopier, /obj/structure/sign/nosmoking_1{ @@ -51932,7 +51943,7 @@ }, /turf/simulated/floor/tiled/white, /area/medical/med_office) -"bIP" = ( +"bIQ" = ( /obj/structure/grille, /obj/structure/window/reinforced/polarized{ id = "CMO" @@ -51948,7 +51959,7 @@ /obj/structure/cable/green, /turf/simulated/floor/plating, /area/crew_quarters/heads/cmo) -"bIQ" = ( +"bIR" = ( /obj/effect/floor_decal/corner/paleblue{ icon_state = "corner_white"; dir = 9 @@ -51956,7 +51967,7 @@ /obj/structure/filingcabinet/chestdrawer, /turf/simulated/floor/tiled/white, /area/crew_quarters/heads/cmo) -"bIR" = ( +"bIS" = ( /obj/effect/floor_decal/corner/paleblue/diagonal, /obj/structure/table/glass, /obj/item/weapon/paper_bin{ @@ -51965,7 +51976,7 @@ /obj/item/weapon/pen, /turf/simulated/floor/tiled/white, /area/crew_quarters/heads/cmo) -"bIS" = ( +"bIT" = ( /obj/effect/floor_decal/corner/paleblue/diagonal, /obj/structure/cable/green{ d1 = 2; @@ -51977,7 +51988,7 @@ }, /turf/simulated/floor/tiled/white, /area/crew_quarters/heads/cmo) -"bIT" = ( +"bIU" = ( /obj/effect/floor_decal/corner/paleblue/diagonal, /obj/structure/cable/green{ d1 = 4; @@ -51986,7 +51997,7 @@ }, /turf/simulated/floor/tiled/white, /area/crew_quarters/heads/cmo) -"bIU" = ( +"bIV" = ( /obj/effect/floor_decal/corner/paleblue/diagonal, /obj/structure/cable/green{ d1 = 1; @@ -51995,7 +52006,7 @@ }, /turf/simulated/floor/tiled/white, /area/crew_quarters/heads/cmo) -"bIV" = ( +"bIW" = ( /obj/effect/floor_decal/corner/paleblue{ icon_state = "corner_white"; dir = 6 @@ -52006,7 +52017,7 @@ }, /turf/simulated/floor/tiled/white, /area/crew_quarters/heads/cmo) -"bIW" = ( +"bIX" = ( /obj/structure/cable{ d1 = 1; d2 = 2; @@ -52018,14 +52029,14 @@ /obj/machinery/door/firedoor, /turf/simulated/floor/plating, /area/maintenance/medbay) -"bIX" = ( +"bIY" = ( /obj/machinery/atmospherics/pipe/simple/hidden/red, /obj/machinery/meter{ name = "Scrubbers" }, /turf/simulated/floor/plating, /area/maintenance/maintcentral) -"bIY" = ( +"bIZ" = ( /obj/structure/cable/green{ d1 = 1; d2 = 2; @@ -52037,7 +52048,7 @@ }, /turf/simulated/floor/plating, /area/maintenance/maintcentral) -"bIZ" = ( +"bJa" = ( /obj/structure/disposalpipe/segment, /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/door/firedoor, @@ -52057,13 +52068,13 @@ }, /turf/simulated/floor/plating, /area/crew_quarters/sleep/research) -"bJa" = ( -/turf/simulated/wall/r_wall, -/area/crew_quarters/sleep/research) "bJb" = ( /turf/simulated/wall/r_wall, -/area/rnd/telesci) +/area/crew_quarters/sleep/research) "bJc" = ( +/turf/simulated/wall/r_wall, +/area/rnd/telesci) +"bJd" = ( /obj/structure/grille, /obj/structure/window/reinforced, /obj/structure/window/reinforced{ @@ -52078,7 +52089,7 @@ /obj/machinery/door/firedoor, /turf/simulated/floor/plating, /area/rnd/telesci) -"bJd" = ( +"bJe" = ( /obj/machinery/door/firedoor, /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, @@ -52094,7 +52105,7 @@ }, /turf/simulated/floor/tiled/white, /area/rnd/telesci) -"bJe" = ( +"bJf" = ( /obj/structure/grille, /obj/structure/window/reinforced, /obj/structure/window/reinforced{ @@ -52109,7 +52120,7 @@ /obj/machinery/door/firedoor, /turf/simulated/floor/plating, /area/rnd/telesci) -"bJf" = ( +"bJg" = ( /obj/effect/floor_decal/industrial/warning{ icon_state = "warning"; dir = 9 @@ -52120,14 +52131,14 @@ }, /turf/simulated/floor/plating, /area/rnd/misc_lab) -"bJg" = ( -/turf/simulated/floor/plating, -/area/rnd/misc_lab) "bJh" = ( -/obj/machinery/atmospherics/unary/freezer, /turf/simulated/floor/plating, /area/rnd/misc_lab) "bJi" = ( +/obj/machinery/atmospherics/unary/freezer, +/turf/simulated/floor/plating, +/area/rnd/misc_lab) +"bJj" = ( /obj/machinery/atmospherics/unary/heater, /obj/effect/floor_decal/industrial/warning{ icon_state = "warning"; @@ -52135,7 +52146,7 @@ }, /turf/simulated/floor/plating, /area/rnd/misc_lab) -"bJj" = ( +"bJk" = ( /obj/structure/grille, /obj/structure/window/reinforced, /obj/structure/window/reinforced{ @@ -52150,7 +52161,7 @@ /obj/machinery/door/firedoor, /turf/simulated/floor/plating, /area/rnd/misc_lab) -"bJk" = ( +"bJl" = ( /obj/structure/cable/green{ d2 = 2; icon_state = "0-2" @@ -52167,7 +52178,7 @@ }, /turf/simulated/floor/tiled/white, /area/rnd/misc_lab) -"bJl" = ( +"bJm" = ( /obj/machinery/newscaster{ pixel_y = 32 }, @@ -52177,7 +52188,7 @@ }, /turf/simulated/floor/tiled/white, /area/rnd/misc_lab) -"bJm" = ( +"bJn" = ( /obj/structure/table/standard, /obj/effect/floor_decal/corner/mauve{ icon_state = "corner_white"; @@ -52185,7 +52196,7 @@ }, /turf/simulated/floor/tiled/white, /area/rnd/misc_lab) -"bJn" = ( +"bJo" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 5 }, @@ -52202,7 +52213,7 @@ }, /turf/simulated/floor/tiled/white, /area/rnd/misc_lab) -"bJo" = ( +"bJp" = ( /obj/structure/sign/nosmoking_1{ pixel_y = 32 }, @@ -52218,7 +52229,7 @@ }, /turf/simulated/floor/tiled/white, /area/rnd/misc_lab) -"bJp" = ( +"bJq" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, @@ -52228,7 +52239,7 @@ }, /turf/simulated/floor/tiled/white, /area/rnd/misc_lab) -"bJq" = ( +"bJr" = ( /obj/structure/closet/bombcloset, /obj/machinery/atmospherics/unary/vent_pump/on{ dir = 8 @@ -52242,7 +52253,7 @@ }, /turf/simulated/floor/tiled/white, /area/rnd/misc_lab) -"bJr" = ( +"bJs" = ( /obj/machinery/door/airlock/maintenance{ req_access = list(12) }, @@ -52257,10 +52268,10 @@ /obj/machinery/door/firedoor, /turf/simulated/floor/plating, /area/hallway/primary/central_one) -"bJs" = ( +"bJt" = ( /turf/simulated/wall, /area/crew_quarters/sleep/main) -"bJt" = ( +"bJu" = ( /obj/machinery/door/airlock{ id_tag = "Dormitory 2"; name = "Dorm" @@ -52275,7 +52286,7 @@ /obj/machinery/atmospherics/pipe/simple/hidden/supply, /turf/simulated/floor/wood, /area/crew_quarters/sleep/main) -"bJu" = ( +"bJv" = ( /obj/machinery/door/firedoor, /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, @@ -52287,10 +52298,10 @@ /obj/structure/disposalpipe/segment, /turf/simulated/floor/tiled, /area/hallway/primary/central_one) -"bJv" = ( +"bJw" = ( /turf/simulated/wall, /area/crew_quarters/locker/locker_toilet) -"bJw" = ( +"bJx" = ( /obj/machinery/door/airlock{ name = "Unisex Restrooms" }, @@ -52304,13 +52315,13 @@ /obj/machinery/door/firedoor, /turf/simulated/floor/tiled/freezer, /area/crew_quarters/locker/locker_toilet) -"bJx" = ( +"bJy" = ( /obj/structure/bed/chair/comfy/black{ dir = 1 }, /turf/simulated/floor/wood, /area/library) -"bJy" = ( +"bJz" = ( /obj/structure/table/wood, /obj/item/device/flashlight/lamp/green{ pixel_x = 1; @@ -52318,12 +52329,12 @@ }, /turf/simulated/floor/wood, /area/library) -"bJz" = ( +"bJA" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/wood, /area/library) -"bJA" = ( +"bJB" = ( /obj/structure/table/wood, /obj/item/device/flashlight/lamp/green{ pixel_x = 1; @@ -52335,14 +52346,14 @@ }, /turf/simulated/floor/wood, /area/library) -"bJB" = ( +"bJC" = ( /obj/structure/table/wood, /obj/item/device/camera_film, /obj/item/device/camera_film, /obj/structure/window/reinforced, /turf/simulated/floor/wood, /area/library) -"bJC" = ( +"bJD" = ( /obj/machinery/door/window/westright{ dir = 2; icon_state = "right"; @@ -52353,7 +52364,7 @@ /obj/machinery/firealarm/east, /turf/simulated/floor/wood, /area/library) -"bJD" = ( +"bJE" = ( /obj/effect/floor_decal/corner/paleblue/full, /obj/structure/closet/secure_closet/CMO, /obj/machinery/light_switch{ @@ -52362,7 +52373,7 @@ }, /turf/simulated/floor/tiled/white, /area/crew_quarters/heads/cmo) -"bJE" = ( +"bJF" = ( /obj/effect/floor_decal/corner/paleblue{ icon_state = "corner_white"; dir = 10 @@ -52375,7 +52386,7 @@ }, /turf/simulated/floor/tiled/white, /area/crew_quarters/heads/cmo) -"bJF" = ( +"bJG" = ( /obj/effect/floor_decal/corner/paleblue{ icon_state = "corner_white"; dir = 10 @@ -52383,7 +52394,7 @@ /obj/machinery/firealarm/south, /turf/simulated/floor/tiled/white, /area/crew_quarters/heads/cmo) -"bJG" = ( +"bJH" = ( /obj/effect/floor_decal/corner/paleblue{ icon_state = "corner_white"; dir = 10 @@ -52393,7 +52404,7 @@ }, /turf/simulated/floor/tiled/white, /area/crew_quarters/heads/cmo) -"bJH" = ( +"bJI" = ( /obj/effect/floor_decal/corner/paleblue{ icon_state = "corner_white"; dir = 10 @@ -52406,7 +52417,7 @@ /obj/structure/cable/green, /turf/simulated/floor/tiled/white, /area/crew_quarters/heads/cmo) -"bJI" = ( +"bJJ" = ( /obj/effect/floor_decal/corner/paleblue{ icon_state = "corner_white"; dir = 10 @@ -52415,7 +52426,7 @@ /obj/item/weapon/clipboard, /turf/simulated/floor/tiled/white, /area/crew_quarters/heads/cmo) -"bJJ" = ( +"bJK" = ( /obj/effect/floor_decal/corner/paleblue{ icon_state = "corner_white"; dir = 10 @@ -52439,7 +52450,7 @@ }, /turf/simulated/floor/tiled/white, /area/crew_quarters/heads/cmo) -"bJK" = ( +"bJL" = ( /obj/effect/floor_decal/corner/paleblue/full{ icon_state = "corner_white_full"; dir = 4 @@ -52450,7 +52461,7 @@ }, /turf/simulated/floor/tiled/white, /area/crew_quarters/heads/cmo) -"bJL" = ( +"bJM" = ( /obj/structure/cable{ d1 = 1; d2 = 2; @@ -52462,21 +52473,21 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/plating, /area/maintenance/medbay) -"bJM" = ( +"bJN" = ( /obj/effect/decal/cleanable/dirt, /turf/simulated/floor/plating, /area/maintenance/medbay) -"bJN" = ( +"bJO" = ( /obj/machinery/light/small/emergency{ dir = 1 }, /turf/simulated/floor/plating, /area/maintenance/medbay) -"bJO" = ( +"bJP" = ( /obj/effect/decal/cleanable/generic, /turf/simulated/floor/plating, /area/maintenance/medbay) -"bJP" = ( +"bJQ" = ( /obj/structure/cable{ d1 = 1; d2 = 4; @@ -52490,21 +52501,6 @@ }, /turf/simulated/floor/plating, /area/maintenance/research_port) -"bJQ" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/random/junk, -/turf/simulated/floor/plating, -/area/maintenance/research_port) "bJR" = ( /obj/structure/cable{ d1 = 4; @@ -52517,10 +52513,25 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 }, -/obj/random/loot, +/obj/random/junk, /turf/simulated/floor/plating, /area/maintenance/research_port) "bJS" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/random/loot, +/turf/simulated/floor/plating, +/area/maintenance/research_port) +"bJT" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/cable{ d1 = 1; @@ -52536,10 +52547,10 @@ /obj/structure/disposalpipe/segment, /turf/simulated/floor/plating, /area/maintenance/research_port) -"bJT" = ( +"bJU" = ( /turf/simulated/open, /area/turbolift/research_station) -"bJU" = ( +"bJV" = ( /obj/structure/table/standard, /obj/machinery/newscaster{ pixel_y = 32 @@ -52555,7 +52566,7 @@ /obj/item/clothing/mask/gas, /turf/simulated/floor/tiled/white, /area/rnd/telesci) -"bJV" = ( +"bJW" = ( /obj/machinery/newscaster{ pixel_y = 32 }, @@ -52565,14 +52576,14 @@ }, /turf/simulated/floor/tiled/white, /area/rnd/telesci) -"bJW" = ( +"bJX" = ( /obj/effect/floor_decal/corner/mauve{ icon_state = "corner_white"; dir = 5 }, /turf/simulated/floor/tiled/white, /area/rnd/telesci) -"bJX" = ( +"bJY" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/structure/cable/green{ @@ -52586,7 +52597,7 @@ }, /turf/simulated/floor/tiled/white, /area/rnd/telesci) -"bJY" = ( +"bJZ" = ( /obj/structure/cable/green{ d1 = 4; d2 = 8; @@ -52605,7 +52616,7 @@ }, /turf/simulated/floor/tiled/white, /area/rnd/telesci) -"bJZ" = ( +"bKa" = ( /obj/structure/table/standard, /obj/structure/cable/green{ d2 = 8; @@ -52629,23 +52640,23 @@ /obj/item/weapon/folder/purple, /turf/simulated/floor/tiled/white, /area/rnd/telesci) -"bKa" = ( +"bKb" = ( /obj/machinery/atmospherics/portables_connector{ dir = 4 }, /turf/simulated/floor/plating, /area/rnd/misc_lab) -"bKb" = ( +"bKc" = ( /obj/machinery/atmospherics/pipe/manifold/visible{ dir = 1 }, /turf/simulated/floor/plating, /area/rnd/misc_lab) -"bKc" = ( +"bKd" = ( /obj/machinery/atmospherics/pipe/manifold/visible, /turf/simulated/floor/plating, /area/rnd/misc_lab) -"bKd" = ( +"bKe" = ( /obj/machinery/atmospherics/binary/pump{ dir = 4 }, @@ -52660,7 +52671,7 @@ /obj/machinery/door/firedoor, /turf/simulated/floor/tiled/white, /area/rnd/misc_lab) -"bKe" = ( +"bKf" = ( /obj/machinery/atmospherics/pipe/simple/hidden{ dir = 4 }, @@ -52675,7 +52686,7 @@ }, /turf/simulated/floor/tiled/white, /area/rnd/misc_lab) -"bKf" = ( +"bKg" = ( /obj/machinery/atmospherics/pipe/simple/hidden{ dir = 4 }, @@ -52686,7 +52697,7 @@ }, /turf/simulated/floor/tiled/white, /area/rnd/misc_lab) -"bKg" = ( +"bKh" = ( /obj/machinery/atmospherics/pipe/simple/hidden{ dir = 4 }, @@ -52701,7 +52712,7 @@ }, /turf/simulated/floor/tiled/white, /area/rnd/misc_lab) -"bKh" = ( +"bKi" = ( /obj/machinery/atmospherics/pipe/simple/hidden{ dir = 10 }, @@ -52717,10 +52728,10 @@ }, /turf/simulated/floor/tiled/white, /area/rnd/misc_lab) -"bKi" = ( +"bKj" = ( /turf/simulated/floor/tiled/white, /area/rnd/misc_lab) -"bKj" = ( +"bKk" = ( /obj/structure/closet/secure_closet/scientist, /obj/machinery/light{ dir = 4; @@ -52733,12 +52744,12 @@ }, /turf/simulated/floor/tiled/white, /area/rnd/misc_lab) -"bKk" = ( +"bKl" = ( /obj/structure/bed/padded, /obj/item/weapon/bedsheet/mime, /turf/simulated/floor/wood, /area/crew_quarters/sleep/main) -"bKl" = ( +"bKm" = ( /obj/structure/cable/green{ d1 = 1; d2 = 2; @@ -52748,7 +52759,7 @@ /obj/machinery/atmospherics/pipe/simple/hidden/supply, /turf/simulated/floor/carpet, /area/crew_quarters/sleep/main) -"bKm" = ( +"bKn" = ( /obj/structure/bed/padded, /obj/item/weapon/bedsheet/mime, /obj/machinery/light_switch{ @@ -52756,11 +52767,11 @@ }, /turf/simulated/floor/wood, /area/crew_quarters/sleep/main) -"bKn" = ( +"bKo" = ( /obj/machinery/door/airlock/glass, /turf/simulated/floor/tiled, /area/hallway/primary/aft) -"bKo" = ( +"bKp" = ( /obj/machinery/door/airlock/glass, /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, @@ -52772,7 +52783,7 @@ /obj/structure/disposalpipe/segment, /turf/simulated/floor/tiled, /area/hallway/primary/aft) -"bKp" = ( +"bKq" = ( /obj/machinery/light_switch{ pixel_y = 28 }, @@ -52787,7 +52798,7 @@ }, /turf/simulated/floor/tiled/freezer, /area/crew_quarters/locker/locker_toilet) -"bKq" = ( +"bKr" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/structure/cable/green{ @@ -52797,16 +52808,16 @@ }, /turf/simulated/floor/tiled/freezer, /area/crew_quarters/locker/locker_toilet) -"bKr" = ( +"bKs" = ( /turf/simulated/floor/tiled/freezer, /area/crew_quarters/locker/locker_toilet) -"bKs" = ( +"bKt" = ( /obj/machinery/door/airlock{ name = "Unit 1" }, /turf/simulated/floor/tiled/freezer, /area/crew_quarters/locker/locker_toilet) -"bKt" = ( +"bKu" = ( /obj/structure/toilet{ pixel_y = 8 }, @@ -52815,7 +52826,7 @@ }, /turf/simulated/floor/tiled/freezer, /area/crew_quarters/locker/locker_toilet) -"bKu" = ( +"bKv" = ( /obj/machinery/atmospherics/unary/vent_scrubber/on{ dir = 4 }, @@ -52825,29 +52836,29 @@ }, /turf/simulated/floor/wood, /area/library) -"bKv" = ( +"bKw" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 }, /turf/simulated/floor/wood, /area/library) -"bKw" = ( +"bKx" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 9 }, /turf/simulated/floor/wood, /area/library) -"bKx" = ( +"bKy" = ( /obj/machinery/hologram/holopad, /turf/simulated/floor/wood, /area/library) -"bKy" = ( +"bKz" = ( /obj/structure/table/wood, /obj/machinery/recharger, /turf/simulated/floor/wood, /area/library) -"bKz" = ( +"bKA" = ( /obj/structure/table/wood, /obj/item/weapon/paper_bin{ pixel_x = 0; @@ -52856,31 +52867,31 @@ /obj/item/weapon/pen, /turf/simulated/floor/wood, /area/library) -"bKA" = ( +"bKB" = ( /obj/structure/disposalpipe/segment{ dir = 1; icon_state = "pipe-c" }, /turf/simulated/floor/wood, /area/library) -"bKB" = ( +"bKC" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, /turf/simulated/floor/wood, /area/library) -"bKC" = ( +"bKD" = ( /obj/structure/disposalpipe/segment{ dir = 2; icon_state = "pipe-c" }, /turf/simulated/floor/wood, /area/library) -"bKD" = ( +"bKE" = ( /obj/machinery/librarypubliccomp, /turf/simulated/floor/wood, /area/library) -"bKE" = ( +"bKF" = ( /obj/structure/cable{ d1 = 2; d2 = 4; @@ -52898,7 +52909,7 @@ }, /turf/simulated/floor/plating, /area/maintenance/medbay) -"bKF" = ( +"bKG" = ( /obj/structure/cable{ d1 = 1; d2 = 8; @@ -52918,7 +52929,7 @@ /obj/machinery/atmospherics/pipe/manifold/hidden/supply, /turf/simulated/floor/plating, /area/maintenance/medbay) -"bKG" = ( +"bKH" = ( /obj/structure/cable{ d1 = 4; d2 = 8; @@ -52936,7 +52947,7 @@ }, /turf/simulated/floor/plating, /area/maintenance/medbay) -"bKH" = ( +"bKI" = ( /obj/structure/cable{ d1 = 2; d2 = 8; @@ -52954,17 +52965,17 @@ }, /turf/simulated/floor/plating, /area/maintenance/medbay) -"bKI" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/plating, -/area/maintenance/medbay) "bKJ" = ( -/obj/structure/window/reinforced, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, /turf/simulated/floor/plating, /area/maintenance/medbay) "bKK" = ( /obj/structure/window/reinforced, +/turf/simulated/floor/plating, +/area/maintenance/medbay) +"bKL" = ( +/obj/structure/window/reinforced, /obj/structure/window/reinforced{ icon_state = "rwindow"; dir = 1 @@ -52973,7 +52984,7 @@ /obj/item/weapon/extinguisher, /turf/simulated/floor/plating, /area/maintenance/medbay) -"bKL" = ( +"bKM" = ( /obj/structure/window/reinforced, /obj/structure/window/reinforced{ icon_state = "rwindow"; @@ -52982,7 +52993,7 @@ /obj/effect/decal/cleanable/dirt, /turf/simulated/floor/plating, /area/maintenance/medbay) -"bKM" = ( +"bKN" = ( /obj/structure/window/reinforced, /obj/structure/window/reinforced{ icon_state = "rwindow"; @@ -52990,14 +53001,14 @@ }, /turf/simulated/floor/plating, /area/maintenance/medbay) -"bKN" = ( +"bKO" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ icon_state = "intact-scrubbers"; dir = 5 }, /turf/simulated/floor/plating, /area/maintenance/maintcentral) -"bKO" = ( +"bKP" = ( /obj/structure/cable/green{ d1 = 1; d2 = 2; @@ -53009,11 +53020,11 @@ }, /turf/simulated/floor/plating, /area/maintenance/maintcentral) -"bKP" = ( +"bKQ" = ( /obj/structure/closet/crate, /turf/simulated/floor/plating, /area/maintenance/research_port) -"bKQ" = ( +"bKR" = ( /obj/structure/table/standard, /obj/item/weapon/paper_bin, /obj/item/weapon/pen, @@ -53033,25 +53044,25 @@ }, /turf/simulated/floor/tiled/white, /area/rnd/telesci) -"bKR" = ( +"bKS" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, /obj/structure/bed/chair/office/light, /turf/simulated/floor/tiled/white, /area/rnd/telesci) -"bKS" = ( +"bKT" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, /turf/simulated/floor/tiled/white, /area/rnd/telesci) -"bKT" = ( +"bKU" = ( /obj/machinery/atmospherics/pipe/manifold/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/tiled/white, /area/rnd/telesci) -"bKU" = ( +"bKV" = ( /obj/structure/table/standard, /obj/item/weapon/paper_bin, /obj/item/weapon/pen, @@ -53073,7 +53084,7 @@ }, /turf/simulated/floor/tiled/white, /area/rnd/telesci) -"bKV" = ( +"bKW" = ( /obj/machinery/camera/network/research{ c_tag = "Research - Miscellaneous Gas Controller"; dir = 4; @@ -53086,11 +53097,11 @@ }, /turf/simulated/floor/plating, /area/rnd/misc_lab) -"bKW" = ( +"bKX" = ( /obj/machinery/atmospherics/valve, /turf/simulated/floor/plating, /area/rnd/misc_lab) -"bKX" = ( +"bKY" = ( /obj/effect/floor_decal/corner/mauve{ icon_state = "corner_white"; dir = 6 @@ -53102,34 +53113,34 @@ /obj/machinery/door/firedoor, /turf/simulated/floor/tiled/white, /area/rnd/misc_lab) -"bKY" = ( +"bKZ" = ( /obj/effect/floor_decal/corner/mauve{ icon_state = "corner_white"; dir = 9 }, /turf/simulated/floor/tiled/white, /area/rnd/misc_lab) -"bKZ" = ( +"bLa" = ( /obj/machinery/atmospherics/unary/vent_scrubber/on{ dir = 4 }, /turf/simulated/floor/tiled/white, /area/rnd/misc_lab) -"bLa" = ( +"bLb" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 }, /obj/structure/disposalpipe/segment, /turf/simulated/floor/tiled/white, /area/rnd/misc_lab) -"bLb" = ( +"bLc" = ( /obj/machinery/atmospherics/pipe/simple/hidden, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 9 }, /turf/simulated/floor/tiled/white, /area/rnd/misc_lab) -"bLc" = ( +"bLd" = ( /obj/structure/closet/secure_closet/scientist, /obj/effect/floor_decal/corner/mauve{ icon_state = "corner_white"; @@ -53137,7 +53148,7 @@ }, /turf/simulated/floor/tiled/white, /area/rnd/misc_lab) -"bLd" = ( +"bLe" = ( /obj/structure/bed/padded, /obj/item/weapon/bedsheet/mime, /obj/item/device/radio/intercom{ @@ -53154,7 +53165,7 @@ }, /turf/simulated/floor/wood, /area/crew_quarters/sleep/main) -"bLe" = ( +"bLf" = ( /obj/structure/cable/green{ d1 = 1; d2 = 2; @@ -53169,7 +53180,7 @@ }, /turf/simulated/floor/carpet, /area/crew_quarters/sleep/main) -"bLf" = ( +"bLg" = ( /obj/structure/bed/padded, /obj/item/weapon/bedsheet/mime, /obj/machinery/atmospherics/unary/vent_scrubber/on{ @@ -53177,11 +53188,11 @@ }, /turf/simulated/floor/wood, /area/crew_quarters/sleep/main) -"bLg" = ( +"bLh" = ( /obj/machinery/door/firedoor, /turf/simulated/floor/tiled, /area/hallway/primary/aft) -"bLh" = ( +"bLi" = ( /obj/machinery/door/firedoor, /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, @@ -53193,7 +53204,7 @@ /obj/structure/disposalpipe/segment, /turf/simulated/floor/tiled, /area/hallway/primary/aft) -"bLi" = ( +"bLj" = ( /obj/structure/sink{ dir = 8; icon_state = "sink"; @@ -53210,20 +53221,20 @@ }, /turf/simulated/floor/tiled/freezer, /area/crew_quarters/locker/locker_toilet) -"bLj" = ( +"bLk" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ dir = 4 }, /turf/simulated/floor/tiled/freezer, /area/crew_quarters/locker/locker_toilet) -"bLk" = ( +"bLl" = ( /obj/machinery/light{ dir = 4 }, /turf/simulated/floor/tiled/freezer, /area/crew_quarters/locker/locker_toilet) -"bLl" = ( +"bLm" = ( /obj/machinery/alarm{ dir = 4; pixel_x = -23; @@ -53231,33 +53242,33 @@ }, /turf/simulated/floor/wood, /area/library) -"bLm" = ( +"bLn" = ( /obj/structure/bed/chair/office/dark, /turf/simulated/floor/wood, /area/library) -"bLn" = ( +"bLo" = ( /obj/machinery/atmospherics/pipe/manifold/hidden/supply{ dir = 8 }, /turf/simulated/floor/wood, /area/library) -"bLo" = ( +"bLp" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, /turf/simulated/floor/carpet, /area/library) -"bLp" = ( +"bLq" = ( /obj/machinery/atmospherics/unary/vent_pump/on{ dir = 8 }, /turf/simulated/floor/carpet, /area/library) -"bLq" = ( +"bLr" = ( /obj/structure/disposalpipe/segment, /turf/simulated/floor/carpet, /area/library) -"bLr" = ( +"bLs" = ( /obj/structure/cable{ d1 = 1; d2 = 2; @@ -53274,7 +53285,7 @@ }, /turf/simulated/floor/plating, /area/maintenance/medbay) -"bLs" = ( +"bLt" = ( /obj/structure/cable{ d1 = 1; d2 = 4; @@ -53293,7 +53304,7 @@ }, /turf/simulated/floor/plating, /area/maintenance/medbay) -"bLt" = ( +"bLu" = ( /obj/structure/cable{ d1 = 1; d2 = 2; @@ -53318,13 +53329,13 @@ }, /turf/simulated/floor/plating, /area/maintenance/medbay) -"bLu" = ( +"bLv" = ( /obj/structure/window/reinforced{ dir = 1 }, /turf/simulated/floor/plating, /area/maintenance/medbay) -"bLv" = ( +"bLw" = ( /obj/structure/window/reinforced{ dir = 1 }, @@ -53332,25 +53343,25 @@ /obj/item/weapon/extinguisher, /turf/simulated/floor/plating, /area/maintenance/medbay) -"bLw" = ( +"bLx" = ( /obj/structure/window/reinforced{ dir = 1 }, /obj/effect/decal/cleanable/dirt, /turf/simulated/floor/plating, /area/maintenance/medbay) -"bLx" = ( +"bLy" = ( /obj/structure/window/reinforced{ dir = 1 }, /obj/random/loot, /turf/simulated/floor/plating, /area/maintenance/medbay) -"bLy" = ( +"bLz" = ( /obj/machinery/light/small/emergency, /turf/simulated/floor/plating, /area/maintenance/research_port) -"bLz" = ( +"bLA" = ( /obj/structure/cable{ d1 = 1; d2 = 2; @@ -53363,7 +53374,7 @@ /obj/random/junk, /turf/simulated/floor/plating, /area/maintenance/research_port) -"bLA" = ( +"bLB" = ( /obj/machinery/button/remote/blast_door{ id = "telescience"; name = "Containment Blast Doors"; @@ -53384,7 +53395,7 @@ /obj/structure/table/standard, /turf/simulated/floor/tiled/white, /area/rnd/telesci) -"bLB" = ( +"bLC" = ( /obj/effect/floor_decal/corner/mauve/diagonal, /obj/effect/floor_decal/corner/mauve/diagonal{ icon_state = "corner_white_diagonal"; @@ -53395,7 +53406,7 @@ }, /turf/simulated/floor/tiled/white, /area/rnd/telesci) -"bLC" = ( +"bLD" = ( /obj/structure/table/reinforced, /obj/item/device/gps/science, /obj/item/device/gps/science, @@ -53411,16 +53422,16 @@ }, /turf/simulated/floor/tiled/white, /area/rnd/telesci) -"bLD" = ( +"bLE" = ( /obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ dir = 4 }, /turf/simulated/floor/tiled/white, /area/rnd/telesci) -"bLE" = ( +"bLF" = ( /turf/simulated/floor/tiled/white, /area/rnd/telesci) -"bLF" = ( +"bLG" = ( /obj/effect/floor_decal/corner/mauve{ icon_state = "corner_white"; dir = 6 @@ -53428,7 +53439,7 @@ /obj/structure/closet/bombcloset, /turf/simulated/floor/tiled/white, /area/rnd/telesci) -"bLG" = ( +"bLH" = ( /obj/machinery/atmospherics/portables_connector{ dir = 4 }, @@ -53438,13 +53449,13 @@ }, /turf/simulated/floor/plating, /area/rnd/misc_lab) -"bLH" = ( +"bLI" = ( /obj/machinery/atmospherics/binary/pump{ dir = 8 }, /turf/simulated/floor/plating, /area/rnd/misc_lab) -"bLI" = ( +"bLJ" = ( /obj/machinery/atmospherics/pipe/simple/visible{ dir = 4 }, @@ -53459,7 +53470,7 @@ }, /turf/simulated/floor/plating, /area/rnd/misc_lab) -"bLJ" = ( +"bLK" = ( /obj/structure/grille, /obj/structure/window/reinforced, /obj/structure/window/reinforced{ @@ -53477,7 +53488,7 @@ }, /turf/simulated/floor/plating, /area/rnd/misc_lab) -"bLK" = ( +"bLL" = ( /obj/machinery/atmospherics/pipe/simple/hidden{ dir = 4 }, @@ -53488,7 +53499,7 @@ /obj/effect/floor_decal/corner/mauve/full, /turf/simulated/floor/tiled/white, /area/rnd/misc_lab) -"bLL" = ( +"bLM" = ( /obj/machinery/atmospherics/pipe/simple/hidden{ dir = 10 }, @@ -53507,7 +53518,7 @@ }, /turf/simulated/floor/tiled/white, /area/rnd/misc_lab) -"bLM" = ( +"bLN" = ( /obj/structure/disposalpipe/segment{ dir = 8; icon_state = "pipe-c" @@ -53518,7 +53529,7 @@ }, /turf/simulated/floor/tiled/white, /area/rnd/misc_lab) -"bLN" = ( +"bLO" = ( /obj/machinery/atmospherics/pipe/simple/hidden, /obj/structure/table/standard, /obj/effect/floor_decal/corner/mauve{ @@ -53527,7 +53538,7 @@ }, /turf/simulated/floor/tiled/white, /area/rnd/misc_lab) -"bLO" = ( +"bLP" = ( /obj/structure/table/standard, /obj/effect/floor_decal/corner/mauve{ icon_state = "corner_white"; @@ -53536,7 +53547,7 @@ /obj/machinery/firealarm/south, /turf/simulated/floor/tiled/white, /area/rnd/misc_lab) -"bLP" = ( +"bLQ" = ( /obj/structure/table/standard, /obj/effect/floor_decal/corner/mauve{ icon_state = "corner_white"; @@ -53544,7 +53555,7 @@ }, /turf/simulated/floor/tiled/white, /area/rnd/misc_lab) -"bLQ" = ( +"bLR" = ( /obj/structure/closet/bombcloset, /obj/effect/floor_decal/corner/mauve/full{ icon_state = "corner_white_full"; @@ -53552,7 +53563,7 @@ }, /turf/simulated/floor/tiled/white, /area/rnd/misc_lab) -"bLR" = ( +"bLS" = ( /obj/structure/bed/padded, /obj/item/weapon/bedsheet/mime, /obj/structure/cable/green{ @@ -53566,7 +53577,7 @@ }, /turf/simulated/floor/wood, /area/crew_quarters/sleep/main) -"bLS" = ( +"bLT" = ( /obj/structure/cable/green{ d1 = 1; d2 = 8; @@ -53575,13 +53586,13 @@ /obj/machinery/light/small, /turf/simulated/floor/carpet, /area/crew_quarters/sleep/main) -"bLT" = ( +"bLU" = ( /obj/machinery/status_display{ pixel_x = -32 }, /turf/simulated/floor/tiled, /area/hallway/primary/aft) -"bLU" = ( +"bLV" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/structure/cable/green{ @@ -53592,10 +53603,10 @@ /obj/structure/disposalpipe/segment, /turf/simulated/floor/tiled, /area/hallway/primary/aft) -"bLV" = ( +"bLW" = ( /turf/simulated/floor/tiled, /area/hallway/primary/aft) -"bLW" = ( +"bLX" = ( /obj/machinery/alarm{ dir = 4; icon_state = "alarm0"; @@ -53604,62 +53615,62 @@ }, /turf/simulated/floor/tiled/freezer, /area/crew_quarters/locker/locker_toilet) -"bLX" = ( +"bLY" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/tiled/freezer, /area/crew_quarters/locker/locker_toilet) -"bLY" = ( +"bLZ" = ( /obj/machinery/door/airlock{ name = "Unit 2" }, /turf/simulated/floor/tiled/freezer, /area/crew_quarters/locker/locker_toilet) -"bLZ" = ( +"bMa" = ( /obj/machinery/requests_console{ department = "Library"; pixel_x = -32 }, /turf/simulated/floor/wood, /area/library) -"bMa" = ( +"bMb" = ( /obj/structure/bed/chair/office/dark{ dir = 4 }, /turf/simulated/floor/wood, /area/library) -"bMb" = ( +"bMc" = ( /obj/structure/table/wood, /obj/item/weapon/tape_roll, /turf/simulated/floor/wood, /area/library) -"bMc" = ( +"bMd" = ( /obj/structure/bed/chair/office/dark{ dir = 8 }, /obj/machinery/atmospherics/pipe/simple/hidden/supply, /turf/simulated/floor/wood, /area/library) -"bMd" = ( +"bMe" = ( /obj/structure/bookcase{ name = "bookcase (Religion)" }, /turf/simulated/floor/wood, /area/library) -"bMe" = ( +"bMf" = ( /obj/structure/bookcase{ name = "bookcase (Fiction)" }, /turf/simulated/floor/wood, /area/library) -"bMf" = ( +"bMg" = ( /obj/structure/disposalpipe/segment{ dir = 1; icon_state = "pipe-c" }, /turf/simulated/floor/carpet, /area/library) -"bMg" = ( +"bMh" = ( /obj/structure/table/wood, /obj/item/weapon/pen, /obj/structure/disposalpipe/segment{ @@ -53667,7 +53678,7 @@ }, /turf/simulated/floor/wood, /area/library) -"bMh" = ( +"bMi" = ( /obj/structure/grille, /obj/structure/window/reinforced{ dir = 1 @@ -53684,7 +53695,7 @@ }, /turf/simulated/floor/plating, /area/library) -"bMi" = ( +"bMj" = ( /obj/structure/cable{ d1 = 1; d2 = 2; @@ -53701,14 +53712,14 @@ }, /turf/simulated/floor/plating, /area/maintenance/library) -"bMj" = ( +"bMk" = ( /obj/structure/reagent_dispensers/fueltank, /turf/simulated/floor/plating, /area/maintenance/library) -"bMk" = ( +"bMl" = ( /turf/simulated/wall, /area/maintenance/library) -"bMl" = ( +"bMm" = ( /obj/machinery/door/airlock/maintenance{ name = "Firefighting equipment"; req_access = list(12) @@ -53716,7 +53727,7 @@ /obj/machinery/door/firedoor, /turf/simulated/floor/plating, /area/maintenance/medbay) -"bMm" = ( +"bMn" = ( /obj/machinery/door/airlock/maintenance{ name = "Medbay Maintance"; req_access = list(12) @@ -53724,7 +53735,7 @@ /obj/machinery/door/firedoor, /turf/simulated/floor/plating, /area/maintenance/medbay) -"bMn" = ( +"bMo" = ( /obj/effect/decal/cleanable/dirt, /obj/machinery/power/apc{ dir = 8; @@ -53734,7 +53745,7 @@ /obj/structure/cable, /turf/simulated/floor/plating, /area/maintenance/medbay) -"bMo" = ( +"bMp" = ( /obj/machinery/door/firedoor, /obj/machinery/door/airlock/maintenance{ name = "Maintenance Access"; @@ -53742,7 +53753,7 @@ }, /turf/simulated/floor/plating, /area/maintenance/medbay) -"bMp" = ( +"bMq" = ( /obj/item/weapon/extinguisher, /obj/item/weapon/extinguisher{ pixel_x = 8 @@ -53750,15 +53761,7 @@ /obj/structure/table/rack, /turf/simulated/floor/plating, /area/maintenance/medbay) -"bMq" = ( -/obj/machinery/light/small/emergency, -/turf/simulated/floor/plating, -/area/maintenance/medbay) "bMr" = ( -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/effect/decal/cleanable/dirt, /obj/machinery/light/small/emergency, /turf/simulated/floor/plating, /area/maintenance/medbay) @@ -53766,10 +53769,18 @@ /obj/structure/window/reinforced{ dir = 1 }, +/obj/effect/decal/cleanable/dirt, /obj/machinery/light/small/emergency, /turf/simulated/floor/plating, /area/maintenance/medbay) "bMt" = ( +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/machinery/light/small/emergency, +/turf/simulated/floor/plating, +/area/maintenance/medbay) +"bMu" = ( /obj/machinery/door/airlock/maintenance{ req_access = list(19) }, @@ -53783,7 +53794,7 @@ /obj/machinery/door/firedoor, /turf/simulated/floor/plating, /area/maintenance/maintcentral) -"bMu" = ( +"bMv" = ( /obj/structure/cable{ d1 = 1; d2 = 2; @@ -53796,7 +53807,7 @@ /obj/machinery/door/firedoor, /turf/simulated/floor/plating, /area/maintenance/research_port) -"bMv" = ( +"bMw" = ( /obj/machinery/light{ dir = 8; icon_state = "tube1"; @@ -53804,11 +53815,11 @@ }, /turf/simulated/floor/tiled/white, /area/rnd/telesci) -"bMw" = ( +"bMx" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/tiled/white, /area/rnd/telesci) -"bMx" = ( +"bMy" = ( /obj/effect/floor_decal/corner/mauve{ icon_state = "corner_white"; dir = 6 @@ -53816,7 +53827,7 @@ /obj/machinery/suit_storage_unit/standard_unit, /turf/simulated/floor/tiled/white, /area/rnd/telesci) -"bMy" = ( +"bMz" = ( /obj/structure/grille, /obj/structure/window/reinforced/tinted{ dir = 1 @@ -53829,7 +53840,7 @@ /obj/machinery/door/firedoor, /turf/simulated/floor/plating, /area/rnd/misc_lab) -"bMz" = ( +"bMA" = ( /obj/structure/grille, /obj/structure/window/reinforced/tinted{ dir = 1 @@ -53842,7 +53853,7 @@ /obj/machinery/door/firedoor, /turf/simulated/floor/plating, /area/rnd/misc_lab) -"bMA" = ( +"bMB" = ( /obj/machinery/door/firedoor, /obj/machinery/door/airlock/research{ name = "Autopsy Room"; @@ -53850,11 +53861,11 @@ }, /turf/simulated/floor/tiled/white, /area/rnd/misc_lab) -"bMB" = ( +"bMC" = ( /obj/machinery/atmospherics/pipe/simple/hidden, /turf/simulated/wall/r_wall, /area/rnd/misc_lab) -"bMC" = ( +"bMD" = ( /obj/machinery/door/window/southright{ heat_proof = 1; name = "Test Chamber"; @@ -53862,7 +53873,7 @@ }, /turf/simulated/floor/reinforced, /area/rnd/misc_lab) -"bMD" = ( +"bME" = ( /obj/structure/cable{ d1 = 1; d2 = 2; @@ -53879,16 +53890,16 @@ /obj/random/junk, /turf/simulated/floor/plating, /area/maintenance/research_port) -"bME" = ( +"bMF" = ( /turf/simulated/wall, /area/chapel/office) -"bMF" = ( +"bMG" = ( /obj/machinery/newscaster{ pixel_x = -32 }, /turf/simulated/floor/tiled, /area/hallway/primary/aft) -"bMG" = ( +"bMH" = ( /obj/structure/sink{ dir = 8; icon_state = "sink"; @@ -53905,32 +53916,32 @@ }, /turf/simulated/floor/tiled/freezer, /area/crew_quarters/locker/locker_toilet) -"bMH" = ( +"bMI" = ( /obj/machinery/atmospherics/pipe/manifold/hidden/supply{ dir = 4 }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/tiled/freezer, /area/crew_quarters/locker/locker_toilet) -"bMI" = ( +"bMJ" = ( /obj/machinery/camera/network/civilian_main{ c_tag = "Main Level - Restrooms"; dir = 8 }, /turf/simulated/floor/tiled/freezer, /area/crew_quarters/locker/locker_toilet) -"bMJ" = ( +"bMK" = ( /obj/machinery/newscaster{ pixel_x = -32 }, /turf/simulated/floor/wood, /area/library) -"bMK" = ( +"bML" = ( /obj/structure/table/wood, /obj/item/weapon/deck/tarot, /turf/simulated/floor/wood, /area/library) -"bML" = ( +"bMM" = ( /obj/structure/grille, /obj/structure/window/reinforced{ dir = 8 @@ -53941,7 +53952,7 @@ /obj/machinery/door/firedoor, /turf/simulated/floor/plating, /area/library) -"bMM" = ( +"bMN" = ( /obj/structure/cable{ d1 = 1; d2 = 2; @@ -53953,45 +53964,45 @@ /obj/structure/disposalpipe/segment, /turf/simulated/floor/plating, /area/maintenance/library) -"bMN" = ( +"bMO" = ( /obj/structure/closet/hydrant{ pixel_x = -32 }, /turf/simulated/floor/plating, /area/maintenance/medbay) -"bMO" = ( +"bMP" = ( /obj/machinery/space_heater, /turf/simulated/floor/plating, /area/maintenance/medbay) -"bMP" = ( +"bMQ" = ( /obj/structure/closet/secure_closet/personal/patient, /obj/effect/decal/cleanable/dirt, /obj/random/loot, /turf/simulated/floor/plating, /area/maintenance/medbay) -"bMQ" = ( +"bMR" = ( /obj/effect/landmark{ name = "blobstart" }, /turf/simulated/floor/plating, /area/maintenance/medbay) -"bMR" = ( +"bMS" = ( /obj/effect/decal/cleanable/dirt, /obj/random/junk, /turf/simulated/floor/tiled, /area/maintenance/medbay) -"bMS" = ( +"bMT" = ( /obj/structure/table, /obj/effect/decal/cleanable/dirt, /turf/simulated/floor/plating, /area/maintenance/medbay) -"bMT" = ( +"bMU" = ( /obj/structure/table, /obj/effect/decal/cleanable/cobweb2, /obj/effect/decal/cleanable/dirt, /turf/simulated/floor/plating, /area/maintenance/medbay) -"bMU" = ( +"bMV" = ( /obj/effect/decal/warning_stripes, /obj/structure/ladder/up{ pixel_y = 16 @@ -54000,7 +54011,7 @@ roof_type = null }, /area/maintenance/maintcentral) -"bMV" = ( +"bMW" = ( /obj/structure/closet, /obj/item/clothing/head/ushanka, /obj/machinery/light/small/emergency{ @@ -54012,7 +54023,7 @@ }, /turf/simulated/floor/plating, /area/maintenance/maintcentral) -"bMW" = ( +"bMX" = ( /obj/structure/table/rack{ dir = 1 }, @@ -54024,25 +54035,25 @@ /obj/item/clothing/glasses/meson, /turf/simulated/floor/plating, /area/maintenance/research_port) -"bMX" = ( +"bMY" = ( /obj/machinery/space_heater, /obj/effect/decal/cleanable/dirt, /turf/simulated/floor/plating, /area/maintenance/research_port) -"bMY" = ( +"bMZ" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ icon_state = "intact-scrubbers"; dir = 5 }, /turf/simulated/floor/tiled/white, /area/rnd/telesci) -"bMZ" = ( +"bNa" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 }, /turf/simulated/floor/tiled/white, /area/rnd/telesci) -"bNa" = ( +"bNb" = ( /obj/effect/floor_decal/corner/mauve{ icon_state = "corner_white"; dir = 6 @@ -54053,7 +54064,7 @@ /obj/machinery/portable_atmospherics/powered/pump/filled, /turf/simulated/floor/tiled/white, /area/rnd/telesci) -"bNb" = ( +"bNc" = ( /obj/machinery/computer/operating{ name = "Robotics Operating Computer" }, @@ -54063,13 +54074,13 @@ }, /turf/simulated/floor/tiled/white, /area/rnd/misc_lab) -"bNc" = ( +"bNd" = ( /obj/effect/floor_decal/industrial/warning{ dir = 1 }, /turf/simulated/floor/tiled/white, /area/rnd/misc_lab) -"bNd" = ( +"bNe" = ( /obj/item/weapon/reagent_containers/spray/cleaner, /obj/structure/table/standard, /obj/machinery/camera/network/research{ @@ -54081,11 +54092,11 @@ }, /turf/simulated/floor/tiled/white, /area/rnd/misc_lab) -"bNe" = ( +"bNf" = ( /obj/item/toy/figure, /turf/simulated/floor/plating, /area/rnd/misc_lab) -"bNf" = ( +"bNg" = ( /obj/machinery/door/firedoor, /obj/machinery/door/blast/regular{ density = 0; @@ -54097,7 +54108,7 @@ }, /turf/simulated/floor/reinforced, /area/rnd/misc_lab) -"bNg" = ( +"bNh" = ( /obj/item/stack/material/steel{ amount = -5; description_info = "A non-stack of non-metal. You're not sure how it exists or why it's stable."; @@ -54106,7 +54117,7 @@ }, /turf/simulated/floor/plating, /area/rnd/misc_lab) -"bNh" = ( +"bNi" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/dirt, /obj/structure/cable{ @@ -54122,13 +54133,13 @@ }, /turf/simulated/floor/plating, /area/maintenance/research_port) -"bNi" = ( +"bNj" = ( /obj/structure/crematorium{ _wifi_id = "chapel_crema" }, /turf/simulated/floor/tiled/dark, /area/chapel/office) -"bNj" = ( +"bNk" = ( /obj/machinery/button/crematorium{ _wifi_id = "chapel_crema"; pixel_x = -32; @@ -54139,14 +54150,14 @@ }, /turf/simulated/floor/tiled/dark, /area/chapel/office) -"bNk" = ( +"bNl" = ( /obj/structure/morgue{ icon_state = "morgue1"; dir = 2 }, /turf/simulated/floor/tiled/dark, /area/chapel/office) -"bNl" = ( +"bNm" = ( /obj/machinery/light{ dir = 8; icon_state = "tube1"; @@ -54158,44 +54169,44 @@ }, /turf/simulated/floor/tiled, /area/hallway/primary/aft) -"bNm" = ( +"bNn" = ( /obj/machinery/door/airlock{ name = "Unisex Restrooms" }, /obj/machinery/door/firedoor, /turf/simulated/floor/tiled/freezer, /area/crew_quarters/locker/locker_toilet) -"bNn" = ( +"bNo" = ( /obj/machinery/door/airlock{ name = "Unit 3" }, /turf/simulated/floor/tiled/freezer, /area/crew_quarters/locker/locker_toilet) -"bNo" = ( +"bNp" = ( /obj/machinery/light/small{ dir = 4 }, /obj/machinery/recharge_station, /turf/simulated/floor/tiled/freezer, /area/crew_quarters/locker/locker_toilet) -"bNp" = ( +"bNq" = ( /obj/structure/table/wood, /obj/item/weapon/dice/d20, /obj/item/weapon/dice, /turf/simulated/floor/wood, /area/library) -"bNq" = ( +"bNr" = ( /obj/structure/bookcase{ name = "bookcase (Non-Fiction)" }, /turf/simulated/floor/wood, /area/library) -"bNr" = ( +"bNs" = ( /obj/structure/closet/crate, /obj/random/loot, /turf/simulated/floor/plating, /area/maintenance/library) -"bNs" = ( +"bNt" = ( /obj/structure/table/rack{ dir = 1 }, @@ -54207,18 +54218,18 @@ /obj/item/clothing/glasses/meson, /turf/simulated/floor/plating, /area/maintenance/medbay) -"bNt" = ( +"bNu" = ( /obj/structure/closet, /obj/item/clothing/head/ushanka, /obj/machinery/light/small, /turf/simulated/floor/plating, /area/maintenance/medbay) -"bNu" = ( +"bNv" = ( /obj/item/device/t_scanner, /obj/structure/table/steel, /turf/simulated/floor/plating, /area/maintenance/medbay) -"bNv" = ( +"bNw" = ( /obj/structure/window/reinforced/tinted{ dir = 1 }, @@ -54235,12 +54246,12 @@ /obj/machinery/door/firedoor, /turf/simulated/floor/plating, /area/maintenance/medbay) -"bNw" = ( +"bNx" = ( /obj/structure/curtain/medical, /obj/machinery/door/firedoor, /turf/simulated/floor/tiled, /area/maintenance/medbay) -"bNx" = ( +"bNy" = ( /obj/structure/window/reinforced/tinted{ dir = 1 }, @@ -54256,22 +54267,22 @@ /obj/machinery/door/firedoor, /turf/simulated/floor/plating, /area/maintenance/medbay) -"bNy" = ( +"bNz" = ( /obj/structure/curtain/medical, /obj/effect/decal/cleanable/dirt, /obj/machinery/door/firedoor, /turf/simulated/floor/tiled, /area/maintenance/medbay) -"bNz" = ( +"bNA" = ( /obj/effect/decal/cleanable/dirt, /obj/random/junk, /turf/simulated/floor/plating, /area/maintenance/medbay) -"bNA" = ( +"bNB" = ( /obj/item/stack/material/steel, /turf/simulated/floor/plating, /area/maintenance/medbay) -"bNB" = ( +"bNC" = ( /obj/structure/cable/green{ d1 = 1; d2 = 4; @@ -54285,7 +54296,7 @@ }, /turf/simulated/floor/plating, /area/maintenance/maintcentral) -"bNC" = ( +"bND" = ( /obj/machinery/atmospherics/pipe/zpipe/up/supply{ icon_state = "up-supply"; dir = 8 @@ -54305,7 +54316,7 @@ roof_type = null }, /area/maintenance/maintcentral) -"bND" = ( +"bNE" = ( /obj/structure/closet, /obj/item/clothing/head/ushanka, /obj/machinery/light/small{ @@ -54313,12 +54324,12 @@ }, /turf/simulated/floor/plating, /area/maintenance/research_port) -"bNE" = ( +"bNF" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/dirt, /turf/simulated/floor/plating, /area/maintenance/research_port) -"bNF" = ( +"bNG" = ( /obj/machinery/door/airlock/maintenance{ name = "Firefighting equipment"; req_access = list(12) @@ -54326,7 +54337,7 @@ /obj/machinery/door/firedoor, /turf/simulated/floor/plating, /area/maintenance/research_port) -"bNG" = ( +"bNH" = ( /obj/structure/grille, /obj/structure/window/phoronreinforced, /obj/structure/window/phoronreinforced{ @@ -54360,7 +54371,7 @@ }, /turf/simulated/floor/plating, /area/rnd/telesci) -"bNH" = ( +"bNI" = ( /obj/machinery/door/blast/regular{ density = 0; dir = 4; @@ -54374,7 +54385,7 @@ /obj/machinery/door/window/southright, /turf/simulated/floor/tiled/dark, /area/rnd/telesci) -"bNI" = ( +"bNJ" = ( /obj/effect/floor_decal/corner/mauve{ icon_state = "corner_white"; dir = 6 @@ -54387,15 +54398,15 @@ /obj/machinery/firealarm/east, /turf/simulated/floor/tiled/white, /area/rnd/telesci) -"bNJ" = ( +"bNK" = ( /obj/machinery/optable, /turf/simulated/floor/tiled/white, /area/rnd/misc_lab) -"bNK" = ( +"bNL" = ( /obj/structure/closet/crate/freezer, /turf/simulated/floor/tiled/white, /area/rnd/misc_lab) -"bNL" = ( +"bNM" = ( /obj/machinery/door/window/southright{ dir = 1; heat_proof = 1; @@ -54404,17 +54415,17 @@ }, /turf/simulated/floor/reinforced, /area/rnd/misc_lab) -"bNM" = ( +"bNN" = ( /turf/simulated/floor/tiled/dark, /area/chapel/office) -"bNN" = ( +"bNO" = ( /obj/machinery/atmospherics/unary/vent_pump/on{ dir = 4 }, /obj/machinery/firealarm/west, /turf/simulated/floor/tiled, /area/hallway/primary/aft) -"bNO" = ( +"bNP" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/structure/cable/green{ d1 = 1; @@ -54427,7 +54438,7 @@ /obj/structure/disposalpipe/segment, /turf/simulated/floor/tiled, /area/hallway/primary/aft) -"bNP" = ( +"bNQ" = ( /obj/structure/sign/directions/evac{ dir = 1; icon_state = "direction_evac"; @@ -54442,7 +54453,7 @@ }, /turf/simulated/floor/tiled, /area/hallway/primary/aft) -"bNQ" = ( +"bNR" = ( /obj/machinery/door/airlock{ name = "Unisex Showers" }, @@ -54450,7 +54461,7 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/tiled/freezer, /area/crew_quarters/locker/locker_toilet) -"bNR" = ( +"bNS" = ( /obj/structure/bed/chair/office/dark{ dir = 1 }, @@ -54459,7 +54470,7 @@ }, /turf/simulated/floor/wood, /area/library) -"bNS" = ( +"bNT" = ( /obj/machinery/atmospherics/unary/vent_pump/on{ dir = 1 }, @@ -54468,20 +54479,20 @@ }, /turf/simulated/floor/wood, /area/library) -"bNT" = ( +"bNU" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, /turf/simulated/floor/carpet, /area/library) -"bNU" = ( +"bNV" = ( /obj/structure/disposalpipe/segment{ dir = 2; icon_state = "pipe-c" }, /turf/simulated/floor/carpet, /area/library) -"bNV" = ( +"bNW" = ( /obj/structure/grille, /obj/structure/window/reinforced{ dir = 8 @@ -54493,24 +54504,24 @@ /obj/machinery/door/firedoor, /turf/simulated/floor/plating, /area/library) -"bNW" = ( +"bNX" = ( /obj/machinery/light/small/emergency, /obj/structure/closet/crate, /obj/random/loot, /turf/simulated/floor/plating, /area/maintenance/library) -"bNX" = ( +"bNY" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/dirt, /obj/machinery/iv_drip, /turf/simulated/floor/tiled, /area/maintenance/medbay) -"bNY" = ( +"bNZ" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/dirt, /turf/simulated/floor/tiled, /area/maintenance/medbay) -"bNZ" = ( +"bOa" = ( /obj/structure/grille, /obj/structure/window/reinforced/tinted{ dir = 8; @@ -54523,46 +54534,46 @@ /obj/machinery/door/firedoor, /turf/simulated/floor/plating, /area/maintenance/medbay) -"bOa" = ( +"bOb" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/dirt, /turf/simulated/floor/tiled, /area/maintenance/medbay) -"bOb" = ( +"bOc" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/dirt, /obj/machinery/iv_drip, /turf/simulated/floor/tiled, /area/maintenance/medbay) -"bOc" = ( +"bOd" = ( /obj/effect/decal/cleanable/generic, /obj/effect/decal/cleanable/dirt, /obj/structure/closet/crate, /obj/random/loot, /turf/simulated/floor/plating, /area/maintenance/medbay) -"bOd" = ( +"bOe" = ( /obj/machinery/portable_atmospherics/canister/air/airlock, /obj/machinery/atmospherics/portables_connector{ dir = 4 }, /turf/simulated/floor/plating, /area/maintenance/medbay) -"bOe" = ( +"bOf" = ( /obj/machinery/atmospherics/pipe/simple/visible{ icon_state = "intact"; dir = 10 }, /turf/simulated/floor/plating, /area/maintenance/medbay) -"bOf" = ( +"bOg" = ( /obj/item/device/t_scanner, /obj/structure/table/steel, /turf/simulated/floor/plating, /area/maintenance/research_port) -"bOg" = ( +"bOh" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/dirt, /obj/structure/cable{ @@ -54582,7 +54593,7 @@ }, /turf/simulated/floor/plating, /area/maintenance/research_port) -"bOh" = ( +"bOi" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/cable{ d1 = 4; @@ -54600,7 +54611,7 @@ }, /turf/simulated/floor/plating, /area/maintenance/research_port) -"bOi" = ( +"bOj" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/cable{ d1 = 1; @@ -54619,7 +54630,7 @@ }, /turf/simulated/floor/plating, /area/maintenance/research_port) -"bOj" = ( +"bOk" = ( /obj/machinery/camera/network/research{ c_tag = "Research - Telescience Test Chamber"; dir = 4; @@ -54627,17 +54638,17 @@ }, /turf/simulated/floor/tiled/dark, /area/rnd/telesci) -"bOk" = ( +"bOl" = ( /turf/simulated/floor/tiled/dark, /area/rnd/telesci) -"bOl" = ( +"bOm" = ( /obj/effect/floor_decal/corner/mauve{ icon_state = "corner_white"; dir = 10 }, /turf/simulated/floor/tiled/white, /area/rnd/telesci) -"bOm" = ( +"bOn" = ( /obj/effect/floor_decal/corner/mauve/full{ icon_state = "corner_white_full"; dir = 4 @@ -54647,7 +54658,7 @@ }, /turf/simulated/floor/tiled/white, /area/rnd/telesci) -"bOn" = ( +"bOo" = ( /obj/effect/floor_decal/corner/mauve/full, /obj/machinery/alarm{ dir = 1; @@ -54656,11 +54667,11 @@ }, /turf/simulated/floor/tiled/white, /area/rnd/misc_lab) -"bOo" = ( +"bOp" = ( /obj/machinery/light, /turf/simulated/floor/tiled/white, /area/rnd/misc_lab) -"bOp" = ( +"bOq" = ( /obj/structure/table/standard, /obj/item/weapon/circular_saw, /obj/item/weapon/retractor, @@ -54671,21 +54682,21 @@ }, /turf/simulated/floor/tiled/white, /area/rnd/misc_lab) -"bOq" = ( -/turf/simulated/floor/reinforced, -/area/rnd/misc_lab) "bOr" = ( -/obj/machinery/atmospherics/pipe/simple/visible, /turf/simulated/floor/reinforced, /area/rnd/misc_lab) "bOs" = ( +/obj/machinery/atmospherics/pipe/simple/visible, +/turf/simulated/floor/reinforced, +/area/rnd/misc_lab) +"bOt" = ( /obj/machinery/air_sensor{ frequency = 1439; id_tag = "misc_res_sensor" }, /turf/simulated/floor/reinforced, /area/rnd/misc_lab) -"bOt" = ( +"bOu" = ( /obj/effect/floor_decal/spline/fancy/wood{ icon_state = "spline_fancy"; dir = 1 @@ -54695,7 +54706,7 @@ }, /turf/simulated/floor/wood, /area/chapel/office) -"bOu" = ( +"bOv" = ( /obj/effect/floor_decal/spline/fancy/wood{ icon_state = "spline_fancy"; dir = 1 @@ -54705,7 +54716,7 @@ }, /turf/simulated/floor/wood, /area/chapel/office) -"bOv" = ( +"bOw" = ( /obj/effect/floor_decal/spline/fancy/wood{ icon_state = "spline_fancy"; dir = 1 @@ -54716,7 +54727,7 @@ }, /turf/simulated/floor/wood, /area/chapel/office) -"bOw" = ( +"bOx" = ( /obj/machinery/power/apc{ dir = 8; name = "west bump"; @@ -54728,7 +54739,7 @@ }, /turf/simulated/floor/tiled, /area/hallway/primary/aft) -"bOx" = ( +"bOy" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/structure/cable/green{ @@ -54744,13 +54755,13 @@ /obj/structure/disposalpipe/segment, /turf/simulated/floor/tiled, /area/hallway/primary/aft) -"bOy" = ( +"bOz" = ( /obj/item/device/radio/intercom{ pixel_x = 32 }, /turf/simulated/floor/tiled, /area/hallway/primary/aft) -"bOz" = ( +"bOA" = ( /obj/structure/curtain/open/shower, /obj/machinery/shower{ icon_state = "shower"; @@ -54758,14 +54769,14 @@ }, /turf/simulated/floor/tiled/freezer, /area/crew_quarters/locker/locker_toilet) -"bOA" = ( +"bOB" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 5 }, /turf/simulated/floor/tiled/freezer, /area/crew_quarters/locker/locker_toilet) -"bOB" = ( +"bOC" = ( /obj/structure/curtain/open/shower, /obj/machinery/shower{ dir = 8; @@ -54778,21 +54789,21 @@ }, /turf/simulated/floor/tiled/freezer, /area/crew_quarters/locker/locker_toilet) -"bOC" = ( +"bOD" = ( /turf/unsimulated/chasm_mask, /area/crew_quarters/locker/locker_toilet) -"bOD" = ( +"bOE" = ( /obj/machinery/lapvend, /turf/simulated/floor/wood, /area/library) -"bOE" = ( +"bOF" = ( /obj/machinery/disposal, /obj/structure/disposalpipe/trunk{ dir = 1 }, /turf/simulated/floor/wood, /area/library) -"bOF" = ( +"bOG" = ( /obj/structure/table/wood, /obj/item/weapon/packageWrap, /obj/item/device/radio/intercom{ @@ -54808,38 +54819,38 @@ /obj/item/weapon/hand_labeler, /turf/simulated/floor/wood, /area/library) -"bOG" = ( +"bOH" = ( /obj/structure/filingcabinet, /turf/simulated/floor/wood, /area/library) -"bOH" = ( +"bOI" = ( /obj/machinery/papershredder, /turf/simulated/floor/carpet, /area/library) -"bOI" = ( +"bOJ" = ( /obj/structure/bookcase{ name = "bookcase (Adult)" }, /turf/simulated/floor/wood, /area/library) -"bOJ" = ( +"bOK" = ( /obj/machinery/bookbinder{ pixel_y = 0 }, /turf/simulated/floor/wood, /area/library) -"bOK" = ( +"bOL" = ( /obj/machinery/photocopier, /obj/machinery/light, /turf/simulated/floor/wood, /area/library) -"bOL" = ( +"bOM" = ( /obj/structure/bookcase{ name = "bookcase (Reference)" }, /turf/simulated/floor/wood, /area/library) -"bOM" = ( +"bON" = ( /obj/structure/bed/chair/comfy/black{ dir = 1 }, @@ -54856,13 +54867,13 @@ }, /turf/simulated/floor/wood, /area/library) -"bON" = ( +"bOO" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/bed/padded, /obj/item/weapon/bedsheet/medical, /turf/simulated/floor/tiled, /area/maintenance/medbay) -"bOO" = ( +"bOP" = ( /obj/structure/window/reinforced/tinted, /obj/structure/window/reinforced/tinted{ dir = 8; @@ -54876,7 +54887,7 @@ /obj/machinery/door/firedoor, /turf/simulated/floor/plating, /area/maintenance/medbay) -"bOP" = ( +"bOQ" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/bed/padded, /obj/item/weapon/bedsheet/medical, @@ -54884,7 +54895,7 @@ /obj/random/loot, /turf/simulated/floor/tiled, /area/maintenance/medbay) -"bOQ" = ( +"bOR" = ( /obj/machinery/access_button{ command = "cycle_interior"; frequency = 1379; @@ -54898,17 +54909,17 @@ /obj/machinery/atmospherics/pipe/simple/visible, /turf/simulated/floor/plating, /area/maintenance/medbay) -"bOR" = ( +"bOS" = ( /obj/machinery/light{ dir = 8 }, /turf/simulated/floor/tiled/dark, /area/rnd/telesci) -"bOS" = ( +"bOT" = ( /obj/machinery/telepad, /turf/simulated/floor/tiled/dark, /area/rnd/telesci) -"bOT" = ( +"bOU" = ( /obj/machinery/door/firedoor, /obj/machinery/door/airlock/research{ name = "Miscellaneous Research Room"; @@ -54916,7 +54927,7 @@ }, /turf/simulated/floor/tiled/white, /area/rnd/telesci) -"bOU" = ( +"bOV" = ( /obj/structure/cable{ d1 = 1; d2 = 2; @@ -54928,7 +54939,7 @@ /obj/machinery/door/firedoor, /turf/simulated/floor/plating, /area/maintenance/research_port) -"bOV" = ( +"bOW" = ( /obj/machinery/button/windowtint{ id = "chapel"; pixel_x = -6; @@ -54953,7 +54964,7 @@ }, /turf/simulated/floor/carpet, /area/chapel/office) -"bOW" = ( +"bOX" = ( /obj/structure/table/wood, /obj/item/device/flashlight/lamp{ pixel_y = 10 @@ -54963,21 +54974,21 @@ }, /turf/simulated/floor/carpet, /area/chapel/office) -"bOX" = ( -/turf/simulated/floor/wood, -/area/chapel/office) "bOY" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, /turf/simulated/floor/wood, /area/chapel/office) "bOZ" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/wood, +/area/chapel/office) +"bPa" = ( /obj/machinery/light{ dir = 4; status = 2 }, /turf/simulated/floor/wood, /area/chapel/office) -"bPa" = ( +"bPb" = ( /obj/structure/grille, /obj/machinery/door/firedoor, /obj/structure/window/reinforced/polarized{ @@ -54997,21 +55008,21 @@ }, /turf/simulated/floor/plating, /area/chapel/office) -"bPb" = ( +"bPc" = ( /obj/machinery/station_map{ dir = 8; pixel_x = 32 }, /turf/simulated/floor/tiled, /area/hallway/primary/aft) -"bPc" = ( +"bPd" = ( /obj/machinery/light, /obj/machinery/atmospherics/unary/vent_pump/on{ dir = 1 }, /turf/simulated/floor/tiled/freezer, /area/crew_quarters/locker/locker_toilet) -"bPd" = ( +"bPe" = ( /obj/structure/curtain/open/shower, /obj/machinery/shower{ dir = 8; @@ -55026,7 +55037,7 @@ }, /turf/simulated/floor/tiled/freezer, /area/crew_quarters/locker/locker_toilet) -"bPe" = ( +"bPf" = ( /obj/structure/disposalpipe/segment, /obj/machinery/door/firedoor, /obj/machinery/door/airlock/maintenance{ @@ -55035,7 +55046,7 @@ }, /turf/simulated/floor/plating, /area/library) -"bPf" = ( +"bPg" = ( /obj/structure/grille, /obj/structure/window/reinforced{ dir = 4 @@ -55051,7 +55062,7 @@ }, /turf/simulated/floor/plating, /area/maintenance/medbay) -"bPg" = ( +"bPh" = ( /obj/machinery/door/airlock/external{ frequency = 1379; icon_state = "door_locked"; @@ -55063,7 +55074,7 @@ /obj/machinery/atmospherics/pipe/simple/visible, /turf/simulated/floor/plating, /area/maintenance/medbay) -"bPh" = ( +"bPi" = ( /obj/structure/grille, /obj/structure/window/reinforced{ dir = 1 @@ -55076,13 +55087,13 @@ }, /turf/simulated/floor/plating, /area/maintenance/medbay) -"bPi" = ( +"bPj" = ( /obj/random/toolbox, /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/dirt, /turf/simulated/floor/plating, /area/maintenance/research_port) -"bPj" = ( +"bPk" = ( /obj/structure/table/standard, /obj/item/clothing/glasses/sunglasses{ pixel_x = 4; @@ -55096,7 +55107,7 @@ /obj/effect/decal/cleanable/dirt, /turf/simulated/floor/plating, /area/maintenance/research_port) -"bPk" = ( +"bPl" = ( /obj/structure/table/standard, /obj/item/clothing/ears/earmuffs{ pixel_x = 4; @@ -55105,13 +55116,13 @@ /obj/effect/decal/cleanable/dirt, /turf/simulated/floor/tiled/white, /area/maintenance/research_port) -"bPl" = ( +"bPm" = ( /obj/structure/table/standard, /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/dirt, /turf/simulated/floor/tiled/white, /area/maintenance/research_port) -"bPm" = ( +"bPn" = ( /obj/structure/closet/crate, /obj/item/target, /obj/item/target, @@ -55121,16 +55132,16 @@ /obj/effect/decal/cleanable/dirt, /turf/simulated/floor/plating, /area/maintenance/research_port) -"bPn" = ( +"bPo" = ( /obj/item/weapon/wrench, /obj/effect/decal/cleanable/dirt, /turf/simulated/floor/plating, /area/maintenance/research_port) -"bPo" = ( +"bPp" = ( /obj/effect/decal/cleanable/dirt, /turf/simulated/floor/plating, /area/maintenance/research_port) -"bPp" = ( +"bPq" = ( /obj/machinery/door/firedoor, /obj/machinery/door/airlock/maintenance{ name = "Maintenance Access"; @@ -55138,7 +55149,7 @@ }, /turf/simulated/floor/plating, /area/maintenance/research_port) -"bPq" = ( +"bPr" = ( /obj/structure/cable{ d1 = 1; d2 = 2; @@ -55151,7 +55162,7 @@ /obj/effect/decal/cleanable/liquid_fuel, /turf/simulated/floor/plating, /area/maintenance/research_port) -"bPr" = ( +"bPs" = ( /obj/machinery/alarm{ dir = 4; icon_state = "alarm0"; @@ -55159,16 +55170,8 @@ }, /turf/simulated/floor/tiled/dark, /area/rnd/telesci) -"bPs" = ( -/obj/machinery/light/small, -/obj/effect/floor_decal/corner/mauve, -/obj/effect/floor_decal/corner/mauve{ - icon_state = "corner_white"; - dir = 1 - }, -/turf/simulated/floor/tiled/white, -/area/rnd/telesci) "bPt" = ( +/obj/machinery/light/small, /obj/effect/floor_decal/corner/mauve, /obj/effect/floor_decal/corner/mauve{ icon_state = "corner_white"; @@ -55178,6 +55181,14 @@ /area/rnd/telesci) "bPu" = ( /obj/effect/floor_decal/corner/mauve, +/obj/effect/floor_decal/corner/mauve{ + icon_state = "corner_white"; + dir = 1 + }, +/turf/simulated/floor/tiled/white, +/area/rnd/telesci) +"bPv" = ( +/obj/effect/floor_decal/corner/mauve, /obj/effect/floor_decal/corner/mauve{ icon_state = "corner_white"; dir = 1 @@ -55189,13 +55200,13 @@ }, /turf/simulated/floor/tiled/white, /area/rnd/telesci) -"bPv" = ( +"bPw" = ( /obj/machinery/atmospherics/unary/vent_pump/siphon{ dir = 1 }, /turf/simulated/floor/reinforced, /area/rnd/misc_lab) -"bPw" = ( +"bPx" = ( /obj/machinery/atmospherics/unary/outlet_injector{ dir = 1; id = null; @@ -55203,7 +55214,7 @@ }, /turf/simulated/floor/reinforced, /area/rnd/misc_lab) -"bPx" = ( +"bPy" = ( /obj/structure/bed/chair{ dir = 4 }, @@ -55217,7 +55228,7 @@ }, /turf/simulated/floor/carpet, /area/chapel/office) -"bPy" = ( +"bPz" = ( /obj/structure/table/wood, /obj/item/weapon/pen, /obj/item/weapon/reagent_containers/food/drinks/bottle/holywater, @@ -55225,13 +55236,13 @@ /obj/item/weapon/nullrod/itembox, /turf/simulated/floor/carpet, /area/chapel/office) -"bPz" = ( +"bPA" = ( /obj/structure/bed/chair{ dir = 8 }, /turf/simulated/floor/wood, /area/chapel/office) -"bPA" = ( +"bPB" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 6 }, @@ -55240,7 +55251,7 @@ }, /turf/simulated/floor/wood, /area/chapel/office) -"bPB" = ( +"bPC" = ( /obj/structure/disposalpipe/segment{ dir = 4; icon_state = "pipe-c" @@ -55258,7 +55269,7 @@ }, /turf/simulated/floor/wood, /area/chapel/office) -"bPC" = ( +"bPD" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, @@ -55281,7 +55292,7 @@ }, /turf/simulated/floor/tiled, /area/chapel/office) -"bPD" = ( +"bPE" = ( /obj/structure/cable/green{ d1 = 4; d2 = 8; @@ -55298,7 +55309,7 @@ }, /turf/simulated/floor/tiled, /area/hallway/primary/aft) -"bPE" = ( +"bPF" = ( /obj/structure/cable/green{ d1 = 1; d2 = 2; @@ -55319,7 +55330,7 @@ }, /turf/simulated/floor/tiled, /area/hallway/primary/aft) -"bPF" = ( +"bPG" = ( /obj/machinery/atmospherics/unary/vent_scrubber/on{ dir = 8 }, @@ -55328,29 +55339,29 @@ }, /turf/simulated/floor/tiled, /area/hallway/primary/aft) -"bPG" = ( -/turf/simulated/wall, -/area/hallway/primary/aft) "bPH" = ( /turf/simulated/wall, -/area/crew_quarters/kitchen) +/area/hallway/primary/aft) "bPI" = ( +/turf/simulated/wall, +/area/crew_quarters/kitchen) +"bPJ" = ( /turf/simulated/floor/plating, /area/maintenance/library) -"bPJ" = ( +"bPK" = ( /obj/structure/disposalpipe/segment{ dir = 4; icon_state = "pipe-c" }, /turf/simulated/floor/plating, /area/maintenance/library) -"bPK" = ( +"bPL" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, /turf/simulated/floor/plating, /area/maintenance/library) -"bPL" = ( +"bPM" = ( /obj/structure/cable{ d1 = 2; d2 = 4; @@ -55371,7 +55382,7 @@ }, /turf/simulated/floor/plating, /area/maintenance/library) -"bPM" = ( +"bPN" = ( /obj/structure/cable{ d1 = 4; d2 = 8; @@ -55389,7 +55400,7 @@ }, /turf/simulated/floor/plating, /area/maintenance/library) -"bPN" = ( +"bPO" = ( /obj/structure/cable{ d1 = 4; d2 = 8; @@ -55406,7 +55417,7 @@ }, /turf/simulated/floor/plating, /area/maintenance/library) -"bPO" = ( +"bPP" = ( /obj/structure/cable{ d1 = 4; d2 = 8; @@ -55427,7 +55438,7 @@ }, /turf/simulated/floor/plating, /area/maintenance/library) -"bPP" = ( +"bPQ" = ( /obj/structure/cable{ d1 = 1; d2 = 8; @@ -55445,7 +55456,7 @@ }, /turf/simulated/floor/plating, /area/maintenance/library) -"bPQ" = ( +"bPR" = ( /obj/structure/grille, /obj/structure/window/reinforced{ dir = 4 @@ -55455,7 +55466,7 @@ }, /turf/simulated/floor/plating, /area/maintenance/medbay) -"bPR" = ( +"bPS" = ( /obj/machinery/embedded_controller/radio/airlock/airlock_controller{ frequency = 1379; id_tag = "civilian_eva_airlock"; @@ -55487,20 +55498,20 @@ }, /turf/simulated/floor/asteroid/ash/rocky, /area/maintenance/medbay) -"bPS" = ( +"bPT" = ( /obj/item/stack/tile/floor, /turf/simulated/floor/plating, /area/maintenance/research_port) -"bPT" = ( -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/tiled/white, -/area/maintenance/research_port) "bPU" = ( /obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, /turf/simulated/floor/tiled/white, /area/maintenance/research_port) "bPV" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/tiled/white, +/area/maintenance/research_port) +"bPW" = ( /obj/effect/floor_decal/corner/mauve, /obj/effect/floor_decal/corner/mauve{ icon_state = "corner_white"; @@ -55512,7 +55523,7 @@ }, /turf/simulated/floor/tiled/white, /area/maintenance/research_port) -"bPW" = ( +"bPX" = ( /obj/machinery/camera/network/research{ c_tag = "Research - Miscellaneous Testing Chamber"; dir = 1; @@ -55521,7 +55532,7 @@ /obj/machinery/light, /turf/simulated/floor/reinforced, /area/rnd/misc_lab) -"bPX" = ( +"bPY" = ( /obj/machinery/light{ dir = 8; icon_state = "tube1"; @@ -55535,15 +55546,15 @@ }, /turf/simulated/floor/carpet, /area/chapel/office) -"bPY" = ( +"bPZ" = ( /obj/item/modular_computer/console/preset/civilian, /turf/simulated/floor/carpet, /area/chapel/office) -"bPZ" = ( +"bQa" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/wood, /area/chapel/office) -"bQa" = ( +"bQb" = ( /obj/structure/disposalpipe/segment, /obj/structure/cable/green{ d1 = 1; @@ -55552,7 +55563,7 @@ }, /turf/simulated/floor/wood, /area/chapel/office) -"bQb" = ( +"bQc" = ( /obj/structure/grille, /obj/machinery/door/firedoor, /obj/structure/window/reinforced/polarized{ @@ -55572,7 +55583,7 @@ }, /turf/simulated/floor/plating, /area/chapel/office) -"bQc" = ( +"bQd" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/structure/cable/green{ @@ -55582,7 +55593,7 @@ }, /turf/simulated/floor/tiled, /area/hallway/primary/aft) -"bQd" = ( +"bQe" = ( /obj/machinery/appliance/mixer/candy, /obj/machinery/button/remote/blast_door{ id = "kitchen"; @@ -55594,7 +55605,7 @@ /obj/effect/floor_decal/corner/grey/diagonal, /turf/simulated/floor/tiled/white, /area/crew_quarters/kitchen) -"bQe" = ( +"bQf" = ( /obj/structure/table/stone/marble, /obj/machinery/microwave{ desc = "Vaguely smells of burnt casserole."; @@ -55603,7 +55614,7 @@ /obj/effect/floor_decal/corner/grey/diagonal, /turf/simulated/floor/tiled/white, /area/crew_quarters/kitchen) -"bQf" = ( +"bQg" = ( /obj/structure/table/stone/marble, /obj/machinery/microwave{ desc = "Vaguely smells of burnt casserole."; @@ -55616,7 +55627,7 @@ }, /turf/simulated/floor/tiled/white, /area/crew_quarters/kitchen) -"bQg" = ( +"bQh" = ( /obj/structure/table/stone/marble, /obj/machinery/reagentgrinder{ pixel_y = 4 @@ -55627,7 +55638,7 @@ }, /turf/simulated/floor/tiled/white, /area/crew_quarters/kitchen) -"bQh" = ( +"bQi" = ( /obj/machinery/appliance/cooker/oven, /obj/machinery/light_switch{ pixel_x = 0; @@ -55636,7 +55647,7 @@ /obj/effect/floor_decal/corner/grey/diagonal, /turf/simulated/floor/tiled/white, /area/crew_quarters/kitchen) -"bQi" = ( +"bQj" = ( /obj/machinery/appliance/cooker/fryer, /obj/machinery/requests_console{ department = "Kitchen"; @@ -55647,12 +55658,12 @@ /obj/effect/floor_decal/corner/grey/diagonal, /turf/simulated/floor/tiled/white, /area/crew_quarters/kitchen) -"bQj" = ( +"bQk" = ( /obj/machinery/appliance/mixer/cereal, /obj/effect/floor_decal/corner/grey/diagonal, /turf/simulated/floor/tiled/white, /area/crew_quarters/kitchen) -"bQk" = ( +"bQl" = ( /obj/machinery/navbeacon{ codes_txt = "delivery;dir=2"; freq = 1400; @@ -55664,7 +55675,7 @@ /obj/structure/plasticflaps/airtight, /turf/simulated/floor/tiled/dark, /area/crew_quarters/kitchen) -"bQl" = ( +"bQm" = ( /obj/machinery/door/firedoor, /obj/structure/disposalpipe/segment, /obj/structure/plasticflaps/airtight, @@ -55673,7 +55684,7 @@ }, /turf/simulated/floor/plating, /area/crew_quarters/kitchen) -"bQm" = ( +"bQn" = ( /obj/structure/cable{ d1 = 1; d2 = 2; @@ -55689,7 +55700,7 @@ /obj/random/junk, /turf/simulated/floor/plating, /area/maintenance/library) -"bQn" = ( +"bQo" = ( /obj/structure/disposalpipe/sortjunction/flipped{ dir = 1; name = "Kitchen"; @@ -55697,11 +55708,11 @@ }, /turf/simulated/floor/plating, /area/maintenance/library) -"bQo" = ( +"bQp" = ( /obj/structure/girder, /turf/simulated/floor/plating, /area/maintenance/library) -"bQp" = ( +"bQq" = ( /obj/structure/grille, /obj/structure/window/reinforced{ dir = 4 @@ -55712,7 +55723,7 @@ }, /turf/simulated/floor/plating, /area/maintenance/medbay) -"bQq" = ( +"bQr" = ( /obj/machinery/door/airlock/external{ frequency = 1379; icon_state = "door_locked"; @@ -55723,20 +55734,20 @@ }, /turf/simulated/floor/asteroid/ash/rocky, /area/maintenance/medbay) -"bQr" = ( +"bQs" = ( /obj/effect/decal/cleanable/generic, /turf/simulated/floor/tiled/white, /area/maintenance/research_port) -"bQs" = ( +"bQt" = ( /obj/random/junk, /turf/simulated/floor/tiled/white, /area/maintenance/research_port) -"bQt" = ( +"bQu" = ( /obj/effect/decal/cleanable/dirt, /obj/random/loot, /turf/simulated/floor/tiled/white, /area/maintenance/research_port) -"bQu" = ( +"bQv" = ( /obj/structure/cable{ d1 = 1; d2 = 4; @@ -55754,7 +55765,7 @@ }, /turf/simulated/floor/plating, /area/maintenance/research_port) -"bQv" = ( +"bQw" = ( /obj/structure/cable{ d1 = 4; d2 = 8; @@ -55772,7 +55783,7 @@ /obj/effect/decal/cleanable/liquid_fuel, /turf/simulated/floor/plating, /area/maintenance/research_port) -"bQw" = ( +"bQx" = ( /obj/structure/cable{ d1 = 4; d2 = 8; @@ -55794,7 +55805,7 @@ /obj/machinery/door/firedoor, /turf/simulated/floor/plating, /area/maintenance/research_port) -"bQx" = ( +"bQy" = ( /obj/structure/grille, /obj/structure/window/phoronreinforced{ icon_state = "phoronrwindow"; @@ -55824,34 +55835,34 @@ }, /turf/simulated/floor/plating, /area/rnd/misc_lab) -"bQy" = ( -/obj/structure/grille, -/obj/structure/window/phoronreinforced{ - icon_state = "phoronrwindow"; - dir = 1 - }, -/obj/structure/window/phoronreinforced, -/obj/machinery/door/blast/regular{ - density = 0; - dir = 4; - icon_state = "pdoor0"; - id = "MiscBlast"; - name = "Misc Science Blast Doors"; - opacity = 0 - }, -/obj/machinery/door/firedoor, -/obj/machinery/door/blast/regular{ - density = 0; - dir = 4; - icon_state = "pdoor0"; - id = "Biohazard"; - name = "Biohazard Shutter"; - opacity = 0 - }, -/turf/simulated/floor/plating, -/area/rnd/misc_lab) "bQz" = ( /obj/structure/grille, +/obj/structure/window/phoronreinforced{ + icon_state = "phoronrwindow"; + dir = 1 + }, +/obj/structure/window/phoronreinforced, +/obj/machinery/door/blast/regular{ + density = 0; + dir = 4; + icon_state = "pdoor0"; + id = "MiscBlast"; + name = "Misc Science Blast Doors"; + opacity = 0 + }, +/obj/machinery/door/firedoor, +/obj/machinery/door/blast/regular{ + density = 0; + dir = 4; + icon_state = "pdoor0"; + id = "Biohazard"; + name = "Biohazard Shutter"; + opacity = 0 + }, +/turf/simulated/floor/plating, +/area/rnd/misc_lab) +"bQA" = ( +/obj/structure/grille, /obj/structure/window/phoronreinforced{ icon_state = "phoronrwindow"; dir = 4 @@ -55880,7 +55891,7 @@ }, /turf/simulated/floor/plating, /area/rnd/misc_lab) -"bQA" = ( +"bQB" = ( /obj/machinery/door/airlock/maintenance{ name = "Chaplain Office's Maintenance"; req_one_access = list(22) @@ -55888,20 +55899,20 @@ /obj/machinery/door/firedoor, /turf/simulated/floor/plating, /area/chapel/office) -"bQB" = ( +"bQC" = ( /obj/machinery/atmospherics/unary/vent_scrubber/on{ dir = 4 }, /turf/simulated/floor/wood, /area/chapel/office) -"bQC" = ( +"bQD" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ icon_state = "intact-scrubbers"; dir = 9 }, /turf/simulated/floor/wood, /area/chapel/office) -"bQD" = ( +"bQE" = ( /obj/machinery/alarm{ dir = 4; icon_state = "alarm0"; @@ -55910,7 +55921,7 @@ }, /turf/simulated/floor/tiled, /area/hallway/primary/aft) -"bQE" = ( +"bQF" = ( /obj/machinery/light{ dir = 1 }, @@ -55925,7 +55936,7 @@ }, /turf/simulated/floor/tiled, /area/hallway/primary/aft) -"bQF" = ( +"bQG" = ( /obj/effect/floor_decal/industrial/outline/yellow, /obj/machinery/smartfridge/secure{ opacity = 1; @@ -55933,7 +55944,7 @@ }, /turf/simulated/floor/tiled, /area/crew_quarters/kitchen) -"bQG" = ( +"bQH" = ( /obj/effect/floor_decal/corner/grey/diagonal, /obj/structure/disposalpipe/segment{ dir = 4; @@ -55941,14 +55952,14 @@ }, /turf/simulated/floor/tiled/white, /area/crew_quarters/kitchen) -"bQH" = ( +"bQI" = ( /obj/effect/floor_decal/corner/grey/diagonal, /obj/structure/disposalpipe/segment{ dir = 4 }, /turf/simulated/floor/tiled/white, /area/crew_quarters/kitchen) -"bQI" = ( +"bQJ" = ( /obj/effect/floor_decal/corner/grey/diagonal, /obj/machinery/alarm{ dir = 8; @@ -55961,7 +55972,7 @@ }, /turf/simulated/floor/tiled/white, /area/crew_quarters/kitchen) -"bQJ" = ( +"bQK" = ( /obj/machinery/door/window/southleft{ base_state = "left"; dir = 2; @@ -55971,7 +55982,7 @@ }, /turf/simulated/floor/tiled/dark, /area/crew_quarters/kitchen) -"bQK" = ( +"bQL" = ( /obj/structure/closet/secure_closet/freezer/meat, /obj/structure/window/reinforced{ dir = 8 @@ -55981,7 +55992,7 @@ temperature = 253.15 }, /area/crew_quarters/kitchen) -"bQL" = ( +"bQM" = ( /obj/machinery/atmospherics/unary/vent_pump/on, /obj/structure/disposalpipe/segment, /turf/simulated/floor/tiled/freezer{ @@ -55989,7 +56000,7 @@ temperature = 253.15 }, /area/crew_quarters/kitchen) -"bQM" = ( +"bQN" = ( /obj/structure/sink/kitchen{ pixel_y = 28 }, @@ -56003,7 +56014,7 @@ temperature = 253.15 }, /area/crew_quarters/kitchen) -"bQN" = ( +"bQO" = ( /obj/structure/cable{ d1 = 1; d2 = 2; @@ -56018,57 +56029,57 @@ }, /turf/simulated/floor/plating, /area/maintenance/library) -"bQO" = ( +"bQP" = ( /obj/structure/disposalpipe/segment{ dir = 8; icon_state = "pipe-c" }, /turf/simulated/floor/plating, /area/maintenance/library) -"bQP" = ( +"bQQ" = ( /obj/structure/table/rack, /obj/random/loot, /turf/simulated/floor/plating, /area/maintenance/library) -"bQQ" = ( +"bQR" = ( /obj/structure/closet/crate, /obj/random/loot, /turf/simulated/floor/tiled, /area/maintenance/library) -"bQR" = ( +"bQS" = ( /obj/structure/table/reinforced/steel, /obj/machinery/recharger, /turf/simulated/floor/tiled/white, /area/maintenance/research_port) -"bQS" = ( +"bQT" = ( /obj/structure/table/reinforced/steel, /obj/item/stack/tile/floor, /obj/random/toolbox, /obj/effect/decal/cleanable/dirt, /turf/simulated/floor/tiled/white, /area/maintenance/research_port) -"bQT" = ( +"bQU" = ( /obj/structure/grille, /obj/structure/window/reinforced, /obj/effect/decal/cleanable/dirt, /turf/simulated/floor/plating, /area/maintenance/research_port) -"bQU" = ( +"bQV" = ( /obj/structure/table/reinforced/steel, /obj/random/junk, /turf/simulated/floor/plating, /area/maintenance/research_port) -"bQV" = ( +"bQW" = ( /obj/structure/girder, /turf/simulated/floor/plating, /area/maintenance/research_port) -"bQW" = ( +"bQX" = ( /obj/machinery/light/small/emergency{ dir = 8 }, /turf/simulated/floor/plating, /area/maintenance/research_port) -"bQX" = ( +"bQY" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/cable{ d1 = 1; @@ -56087,7 +56098,7 @@ }, /turf/simulated/floor/plating, /area/maintenance/research_port) -"bQY" = ( +"bQZ" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/cable{ d1 = 2; @@ -56111,7 +56122,7 @@ }, /turf/simulated/floor/plating, /area/maintenance/research_port) -"bQZ" = ( +"bRa" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/cable{ d1 = 4; @@ -56126,7 +56137,7 @@ }, /turf/simulated/floor/plating, /area/maintenance/research_port) -"bRa" = ( +"bRb" = ( /obj/effect/decal/cleanable/generic, /obj/structure/cable{ d1 = 4; @@ -56141,12 +56152,12 @@ }, /turf/simulated/floor/plating, /area/maintenance/research_port) -"bRb" = ( +"bRc" = ( /obj/structure/closet/wardrobe/chaplain_black, /obj/item/weapon/storage/fancy/crayons, /turf/simulated/floor/wood, /area/chapel/office) -"bRc" = ( +"bRd" = ( /obj/machinery/disposal, /obj/structure/disposalpipe/trunk{ dir = 4 @@ -56158,20 +56169,20 @@ }, /turf/simulated/floor/wood, /area/chapel/office) -"bRd" = ( +"bRe" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, /obj/machinery/firealarm/south, /turf/simulated/floor/wood, /area/chapel/office) -"bRe" = ( +"bRf" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, /turf/simulated/floor/wood, /area/chapel/office) -"bRf" = ( +"bRg" = ( /obj/structure/disposalpipe/segment{ dir = 8; icon_state = "pipe-c" @@ -56185,13 +56196,13 @@ /obj/structure/cable/green, /turf/simulated/floor/wood, /area/chapel/office) -"bRg" = ( +"bRh" = ( /obj/machinery/atmospherics/unary/vent_pump/on{ dir = 4 }, /turf/simulated/floor/tiled, /area/hallway/primary/aft) -"bRh" = ( +"bRi" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/structure/cable/green{ d1 = 1; @@ -56203,7 +56214,7 @@ }, /turf/simulated/floor/tiled, /area/hallway/primary/aft) -"bRi" = ( +"bRj" = ( /obj/effect/floor_decal/corner/grey, /obj/effect/floor_decal/corner/white{ icon_state = "corner_white"; @@ -56211,7 +56222,7 @@ }, /turf/simulated/floor/tiled, /area/hallway/primary/aft) -"bRj" = ( +"bRk" = ( /obj/structure/table/reinforced, /obj/machinery/door/blast/shutters{ dir = 8; @@ -56222,12 +56233,12 @@ /obj/machinery/door/firedoor, /turf/simulated/floor/tiled, /area/crew_quarters/kitchen) -"bRk" = ( +"bRl" = ( /obj/effect/floor_decal/corner/grey/diagonal, /obj/structure/disposalpipe/segment, /turf/simulated/floor/tiled/white, /area/crew_quarters/kitchen) -"bRl" = ( +"bRm" = ( /obj/structure/table/stone/marble, /obj/effect/floor_decal/corner/grey/diagonal, /obj/item/weapon/reagent_containers/food/condiment/peppermill{ @@ -56239,7 +56250,7 @@ }, /turf/simulated/floor/tiled/white, /area/crew_quarters/kitchen) -"bRm" = ( +"bRn" = ( /obj/structure/table/stone/marble, /obj/item/weapon/reagent_containers/food/condiment/enzyme, /obj/item/weapon/reagent_containers/glass/beaker{ @@ -56248,22 +56259,22 @@ /obj/effect/floor_decal/corner/grey/diagonal, /turf/simulated/floor/tiled/white, /area/crew_quarters/kitchen) -"bRn" = ( -/obj/effect/floor_decal/corner/grey/diagonal, -/turf/simulated/floor/tiled/white, -/area/crew_quarters/kitchen) "bRo" = ( -/obj/structure/table/stone/marble, /obj/effect/floor_decal/corner/grey/diagonal, /turf/simulated/floor/tiled/white, /area/crew_quarters/kitchen) "bRp" = ( /obj/structure/table/stone/marble, /obj/effect/floor_decal/corner/grey/diagonal, -/obj/item/weapon/book/manual/chef_recipes, /turf/simulated/floor/tiled/white, /area/crew_quarters/kitchen) "bRq" = ( +/obj/structure/table/stone/marble, +/obj/effect/floor_decal/corner/grey/diagonal, +/obj/item/weapon/book/manual/chef_recipes, +/turf/simulated/floor/tiled/white, +/area/crew_quarters/kitchen) +"bRr" = ( /obj/effect/floor_decal/corner/grey/diagonal, /obj/structure/disposalpipe/segment{ dir = 1; @@ -56271,7 +56282,7 @@ }, /turf/simulated/floor/tiled/white, /area/crew_quarters/kitchen) -"bRr" = ( +"bRs" = ( /obj/machinery/door/airlock/freezer{ name = "Kitchen cold room"; req_access = list(28) @@ -56289,7 +56300,7 @@ /obj/structure/plasticflaps/airtight, /turf/simulated/floor/tiled, /area/crew_quarters/kitchen) -"bRs" = ( +"bRt" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, @@ -56304,7 +56315,7 @@ temperature = 253.15 }, /area/crew_quarters/kitchen) -"bRt" = ( +"bRu" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, @@ -56316,7 +56327,7 @@ temperature = 253.15 }, /area/crew_quarters/kitchen) -"bRu" = ( +"bRv" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 9; pixel_y = 0 @@ -56330,7 +56341,7 @@ temperature = 253.15 }, /area/crew_quarters/kitchen) -"bRv" = ( +"bRw" = ( /obj/machinery/light/small{ dir = 4 }, @@ -56340,62 +56351,62 @@ temperature = 253.15 }, /area/crew_quarters/kitchen) -"bRw" = ( -/obj/structure/barricade, -/turf/simulated/floor/plating, -/area/maintenance/library) "bRx" = ( -/obj/machinery/door/firedoor, +/obj/structure/barricade, /turf/simulated/floor/plating, /area/maintenance/library) "bRy" = ( -/obj/random/junk, +/obj/machinery/door/firedoor, /turf/simulated/floor/plating, /area/maintenance/library) "bRz" = ( -/obj/random/loot, +/obj/random/junk, /turf/simulated/floor/plating, /area/maintenance/library) "bRA" = ( +/obj/random/loot, +/turf/simulated/floor/plating, +/area/maintenance/library) +"bRB" = ( /obj/item/stack/tile/floor, /obj/effect/decal/cleanable/dirt, /turf/simulated/floor/tiled/white, /area/maintenance/research_port) -"bRB" = ( +"bRC" = ( /obj/structure/grille, /turf/simulated/floor/plating, /area/maintenance/research_port) -"bRC" = ( +"bRD" = ( /turf/simulated/floor/tiled/white, /area/maintenance/research_port) -"bRD" = ( +"bRE" = ( /obj/item/stack/tile/floor, /obj/effect/decal/cleanable/dirt, /turf/simulated/floor/plating, /area/maintenance/research_port) -"bRE" = ( +"bRF" = ( /obj/structure/table/rack, /obj/random/loot, /obj/random/junk, /turf/simulated/floor/tiled, /area/maintenance/research_port) -"bRF" = ( +"bRG" = ( /obj/structure/table/rack, /turf/simulated/floor/tiled, /area/maintenance/research_port) -"bRG" = ( +"bRH" = ( /obj/structure/barricade, /turf/simulated/floor/plating, /area/maintenance/research_port) -"bRH" = ( +"bRI" = ( /obj/machinery/door/airlock/maintenance, /obj/machinery/door/firedoor, /turf/simulated/floor/plating, /area/maintenance/research_port) -"bRI" = ( +"bRJ" = ( /turf/simulated/wall, /area/maintenance/cargo) -"bRJ" = ( +"bRK" = ( /obj/structure/cable{ d1 = 1; d2 = 2; @@ -56412,10 +56423,10 @@ }, /turf/simulated/floor/plating, /area/maintenance/cargo) -"bRK" = ( +"bRL" = ( /turf/simulated/wall, /area/hydroponics) -"bRL" = ( +"bRM" = ( /obj/machinery/door/airlock/maintenance{ name = "Hydroponics Maintenance"; req_access = list(35) @@ -56423,7 +56434,7 @@ /obj/machinery/door/firedoor, /turf/simulated/floor/plating, /area/hydroponics) -"bRM" = ( +"bRN" = ( /obj/effect/floor_decal/corner/green{ icon_state = "corner_white"; dir = 8 @@ -56433,14 +56444,14 @@ }, /turf/simulated/floor/tiled, /area/hallway/primary/aft) -"bRN" = ( +"bRO" = ( /obj/structure/table/stone/marble, /obj/item/weapon/material/kitchen/rollingpin, /obj/item/weapon/material/knife, /obj/effect/floor_decal/corner/grey/diagonal, /turf/simulated/floor/tiled/white, /area/crew_quarters/kitchen) -"bRO" = ( +"bRP" = ( /obj/structure/table/stone/marble, /obj/item/device/eftpos{ eftpos_name = "Kitchen EFTPOS scanner" @@ -56448,7 +56459,7 @@ /obj/effect/floor_decal/corner/grey/diagonal, /turf/simulated/floor/tiled/white, /area/crew_quarters/kitchen) -"bRP" = ( +"bRQ" = ( /obj/structure/extinguisher_cabinet{ pixel_x = 30 }, @@ -56459,7 +56470,7 @@ }, /turf/simulated/floor/tiled/white, /area/crew_quarters/kitchen) -"bRQ" = ( +"bRR" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/machinery/light/small{ dir = 8 @@ -56473,13 +56484,13 @@ temperature = 253.15 }, /area/crew_quarters/kitchen) -"bRR" = ( +"bRS" = ( /turf/simulated/floor/tiled/freezer{ name = "freezer storage tiles"; temperature = 253.15 }, /area/crew_quarters/kitchen) -"bRS" = ( +"bRT" = ( /obj/machinery/gibber, /obj/effect/decal/warning_stripes, /turf/simulated/floor/tiled/freezer{ @@ -56487,25 +56498,25 @@ temperature = 253.15 }, /area/crew_quarters/kitchen) -"bRT" = ( +"bRU" = ( /obj/structure/closet, /obj/random/loot, /turf/simulated/floor/tiled, /area/maintenance/research_port) -"bRU" = ( +"bRV" = ( /obj/structure/table/standard, /obj/item/device/flashlight/lamp, /obj/item/stack/tile/floor, /obj/effect/decal/cleanable/dirt, /turf/simulated/floor/tiled/white, /area/maintenance/research_port) -"bRV" = ( +"bRW" = ( /obj/item/weapon/paper, /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/dirt, /turf/simulated/floor/tiled/white, /area/maintenance/research_port) -"bRW" = ( +"bRX" = ( /obj/structure/cable{ d1 = 1; d2 = 2; @@ -56521,7 +56532,7 @@ }, /turf/simulated/floor/plating, /area/maintenance/cargo) -"bRX" = ( +"bRY" = ( /obj/machinery/navbeacon{ codes_txt = "delivery;dir=2"; freq = 1400; @@ -56538,7 +56549,7 @@ }, /turf/simulated/floor/tiled/dark, /area/hydroponics) -"bRY" = ( +"bRZ" = ( /obj/machinery/door/window/eastright{ dir = 4; icon_state = "right"; @@ -56550,7 +56561,7 @@ }, /turf/simulated/floor/tiled/dark, /area/hydroponics) -"bRZ" = ( +"bSa" = ( /obj/machinery/alarm{ pixel_y = 22 }, @@ -56559,13 +56570,13 @@ }, /turf/simulated/floor/tiled, /area/hydroponics) -"bSa" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/hydroponics) "bSb" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/hydroponics) +"bSc" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, @@ -56575,7 +56586,7 @@ }, /turf/simulated/floor/tiled, /area/hydroponics) -"bSc" = ( +"bSd" = ( /obj/machinery/door/airlock/glass{ name = "Hydroponics Supplies"; req_access = list(35) @@ -56594,7 +56605,7 @@ }, /turf/simulated/floor/tiled, /area/hydroponics) -"bSd" = ( +"bSe" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, @@ -56604,7 +56615,7 @@ }, /turf/simulated/floor/tiled, /area/hydroponics) -"bSe" = ( +"bSf" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 6 }, @@ -56631,7 +56642,7 @@ }, /turf/simulated/floor/tiled, /area/hydroponics) -"bSf" = ( +"bSg" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, @@ -56653,7 +56664,7 @@ }, /turf/simulated/floor/tiled, /area/hydroponics) -"bSg" = ( +"bSh" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, @@ -56671,7 +56682,7 @@ }, /turf/simulated/floor/tiled, /area/hydroponics) -"bSh" = ( +"bSi" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, @@ -56692,7 +56703,7 @@ }, /turf/simulated/floor/tiled, /area/hydroponics) -"bSi" = ( +"bSj" = ( /obj/machinery/door/airlock/glass{ name = "Hydroponics"; req_access = list(35) @@ -56711,7 +56722,7 @@ }, /turf/simulated/floor/tiled, /area/hydroponics) -"bSj" = ( +"bSk" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, @@ -56729,7 +56740,7 @@ }, /turf/simulated/floor/tiled, /area/hallway/primary/aft) -"bSk" = ( +"bSl" = ( /obj/machinery/atmospherics/pipe/manifold/hidden/supply{ dir = 4 }, @@ -56748,20 +56759,20 @@ }, /turf/simulated/floor/tiled, /area/hallway/primary/aft) -"bSl" = ( +"bSm" = ( /obj/structure/table/stone/marble, /obj/machinery/chemical_dispenser/bar_soft/full, /obj/effect/floor_decal/corner/grey/diagonal, /turf/simulated/floor/tiled/white, /area/crew_quarters/kitchen) -"bSm" = ( +"bSn" = ( /obj/structure/table/stone/marble, /obj/item/weapon/packageWrap, /obj/item/weapon/hand_labeler, /obj/effect/floor_decal/corner/grey/diagonal, /turf/simulated/floor/tiled/white, /area/crew_quarters/kitchen) -"bSn" = ( +"bSo" = ( /obj/structure/table/stone/marble, /obj/item/weapon/paper_bin{ pixel_x = -2; @@ -56771,7 +56782,7 @@ /obj/effect/floor_decal/corner/grey/diagonal, /turf/simulated/floor/tiled/white, /area/crew_quarters/kitchen) -"bSo" = ( +"bSp" = ( /obj/structure/sink/kitchen{ dir = 8; icon_state = "sink_alt"; @@ -56780,21 +56791,21 @@ /obj/effect/floor_decal/corner/grey/diagonal, /turf/simulated/floor/tiled/white, /area/crew_quarters/kitchen) -"bSp" = ( +"bSq" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/tiled/freezer{ name = "freezer storage tiles"; temperature = 253.15 }, /area/crew_quarters/kitchen) -"bSq" = ( +"bSr" = ( /obj/random/cookingoil, /turf/simulated/floor/tiled/freezer{ name = "freezer storage tiles"; temperature = 253.15 }, /area/crew_quarters/kitchen) -"bSr" = ( +"bSs" = ( /obj/structure/cable{ d1 = 1; d2 = 2; @@ -56814,7 +56825,7 @@ }, /turf/simulated/floor/plating, /area/maintenance/library) -"bSs" = ( +"bSt" = ( /obj/machinery/power/apc{ dir = 4; name = "east bump"; @@ -56828,17 +56839,17 @@ /obj/random/loot, /turf/simulated/floor/plating, /area/maintenance/library) -"bSt" = ( +"bSu" = ( /turf/simulated/floor/wood, /area/maintenance/library) -"bSu" = ( +"bSv" = ( /obj/random/junk, /turf/simulated/floor/carpet, /area/maintenance/library) -"bSv" = ( +"bSw" = ( /turf/simulated/floor/carpet, /area/maintenance/library) -"bSw" = ( +"bSx" = ( /obj/item/clothing/mask/gas/clown_hat, /obj/item/clothing/shoes/clown_shoes, /obj/item/clothing/under/rank/clown, @@ -56851,17 +56862,17 @@ }, /turf/simulated/floor/wood, /area/maintenance/library) -"bSx" = ( +"bSy" = ( /obj/item/weapon/bedsheet/clown, /obj/structure/bed, /turf/simulated/floor/wood, /area/maintenance/library) -"bSy" = ( +"bSz" = ( /obj/effect/decal/cleanable/dirt, /obj/random/junk, /turf/simulated/floor/tiled/white, /area/maintenance/research_port) -"bSz" = ( +"bSA" = ( /obj/structure/window/reinforced, /obj/structure/window/reinforced{ dir = 8 @@ -56872,26 +56883,26 @@ /obj/effect/decal/cleanable/dirt, /turf/simulated/floor/plating, /area/maintenance/research_port) -"bSA" = ( +"bSB" = ( /obj/structure/target_stake, /turf/simulated/floor/plating, /area/maintenance/research_port) -"bSB" = ( +"bSC" = ( /obj/structure/target_stake, /obj/effect/decal/cleanable/dirt, /turf/simulated/floor/plating, /area/maintenance/research_port) -"bSC" = ( +"bSD" = ( /turf/simulated/floor/tiled, /area/maintenance/research_port) -"bSD" = ( +"bSE" = ( /obj/structure/table/standard, /obj/item/weapon/folder/white, /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/dirt, /turf/simulated/floor/plating, /area/maintenance/research_port) -"bSE" = ( +"bSF" = ( /obj/item/weapon/stool, /obj/item/weapon/paper, /obj/item/stack/tile/floor, @@ -56900,20 +56911,20 @@ /obj/effect/decal/cleanable/dirt, /turf/simulated/floor/plating, /area/maintenance/research_port) -"bSF" = ( +"bSG" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/dirt, /turf/simulated/floor/tiled/white, /area/maintenance/research_port) -"bSG" = ( +"bSH" = ( /obj/item/stack/tile/floor, /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/dirt, /turf/simulated/floor/plating, /area/maintenance/research_port) -"bSH" = ( +"bSI" = ( /obj/structure/cable{ d1 = 1; d2 = 2; @@ -56925,7 +56936,7 @@ /obj/structure/disposalpipe/segment, /turf/simulated/floor/plating, /area/maintenance/cargo) -"bSI" = ( +"bSJ" = ( /obj/structure/closet/secure_closet/hydroponics, /obj/structure/window/reinforced{ icon_state = "rwindow"; @@ -56933,14 +56944,14 @@ }, /turf/simulated/floor/tiled, /area/hydroponics) -"bSJ" = ( +"bSK" = ( /obj/machinery/atmospherics/unary/vent_pump/on, /turf/simulated/floor/tiled, /area/hydroponics) -"bSK" = ( +"bSL" = ( /turf/simulated/floor/tiled, /area/hydroponics) -"bSL" = ( +"bSM" = ( /obj/effect/floor_decal/corner/green{ icon_state = "corner_white"; dir = 6 @@ -56949,7 +56960,7 @@ /obj/machinery/seed_storage/garden, /turf/simulated/floor/tiled, /area/hydroponics) -"bSM" = ( +"bSN" = ( /obj/structure/grille, /obj/structure/window/reinforced{ dir = 4 @@ -56964,34 +56975,34 @@ /obj/machinery/door/firedoor, /turf/simulated/floor/plating, /area/hydroponics) -"bSN" = ( +"bSO" = ( /obj/effect/floor_decal/corner/green{ icon_state = "corner_white"; dir = 9 }, /turf/simulated/floor/tiled, /area/hydroponics) -"bSO" = ( +"bSP" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/structure/disposalpipe/segment, /obj/effect/floor_decal/corner/green, /turf/simulated/floor/tiled, /area/hydroponics) -"bSP" = ( +"bSQ" = ( /obj/effect/floor_decal/corner/green{ dir = 10 }, /turf/simulated/floor/tiled, /area/hydroponics) -"bSQ" = ( +"bSR" = ( /obj/effect/floor_decal/corner/green/full{ icon_state = "corner_white_full"; dir = 4 }, /turf/simulated/floor/tiled, /area/hydroponics) -"bSR" = ( +"bSS" = ( /obj/machinery/door/airlock/glass{ name = "Hydroponics"; req_access = list(35) @@ -56999,14 +57010,14 @@ /obj/machinery/door/firedoor, /turf/simulated/floor/tiled, /area/hydroponics) -"bSS" = ( +"bST" = ( /obj/effect/floor_decal/corner/green{ icon_state = "corner_white"; dir = 9 }, /turf/simulated/floor/tiled, /area/hallway/primary/aft) -"bST" = ( +"bSU" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/structure/cable/green{ d1 = 1; @@ -57018,13 +57029,13 @@ }, /turf/simulated/floor/tiled, /area/hallway/primary/aft) -"bSU" = ( +"bSV" = ( /obj/machinery/atmospherics/unary/vent_scrubber/on{ dir = 8 }, /turf/simulated/floor/tiled, /area/hallway/primary/aft) -"bSV" = ( +"bSW" = ( /obj/structure/table/reinforced, /obj/machinery/door/blast/shutters{ dir = 8; @@ -57038,7 +57049,7 @@ }, /turf/simulated/floor/tiled, /area/crew_quarters/kitchen) -"bSW" = ( +"bSX" = ( /obj/effect/floor_decal/corner/grey/diagonal, /obj/effect/landmark/start{ name = "Chef" @@ -57046,23 +57057,15 @@ /obj/structure/disposalpipe/segment, /turf/simulated/floor/tiled/white, /area/crew_quarters/kitchen) -"bSX" = ( +"bSY" = ( /obj/effect/floor_decal/corner/grey/diagonal, /obj/machinery/atmospherics/unary/vent_pump/on{ dir = 4 }, /turf/simulated/floor/tiled/white, /area/crew_quarters/kitchen) -"bSY" = ( -/obj/effect/floor_decal/corner/grey/diagonal, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/tiled/white, -/area/crew_quarters/kitchen) "bSZ" = ( /obj/effect/floor_decal/corner/grey/diagonal, -/obj/machinery/hologram/holopad, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, @@ -57070,25 +57073,33 @@ /area/crew_quarters/kitchen) "bTa" = ( /obj/effect/floor_decal/corner/grey/diagonal, +/obj/machinery/hologram/holopad, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 10 + dir = 4 }, /turf/simulated/floor/tiled/white, /area/crew_quarters/kitchen) "bTb" = ( /obj/effect/floor_decal/corner/grey/diagonal, -/obj/machinery/atmospherics/unary/vent_scrubber/on, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, /turf/simulated/floor/tiled/white, /area/crew_quarters/kitchen) "bTc" = ( /obj/effect/floor_decal/corner/grey/diagonal, +/obj/machinery/atmospherics/unary/vent_scrubber/on, +/turf/simulated/floor/tiled/white, +/area/crew_quarters/kitchen) +"bTd" = ( +/obj/effect/floor_decal/corner/grey/diagonal, /obj/machinery/firealarm/east, /obj/effect/landmark/start{ name = "Chef" }, /turf/simulated/floor/tiled/white, /area/crew_quarters/kitchen) -"bTd" = ( +"bTe" = ( /obj/structure/kitchenspike, /obj/machinery/atmospherics/unary/vent_scrubber/on{ dir = 1 @@ -57098,37 +57109,37 @@ temperature = 253.15 }, /area/crew_quarters/kitchen) -"bTe" = ( +"bTf" = ( /obj/structure/kitchenspike, /turf/simulated/floor/tiled/freezer{ name = "freezer storage tiles"; temperature = 253.15 }, /area/crew_quarters/kitchen) -"bTf" = ( +"bTg" = ( /obj/structure/closet/chefcloset, /turf/simulated/floor/tiled/freezer{ name = "freezer storage tiles"; temperature = 253.15 }, /area/crew_quarters/kitchen) -"bTg" = ( +"bTh" = ( /obj/structure/closet/crate/freezer, /turf/simulated/floor/tiled/freezer{ name = "freezer storage tiles"; temperature = 253.15 }, /area/crew_quarters/kitchen) -"bTh" = ( +"bTi" = ( /obj/structure/reagent_dispensers/watertank, /turf/simulated/floor/plating, /area/maintenance/library) -"bTi" = ( +"bTj" = ( /obj/machinery/door/airlock/maintenance, /obj/machinery/door/firedoor, /turf/simulated/floor/wood, /area/maintenance/library) -"bTj" = ( +"bTk" = ( /obj/structure/closet{ icon_closed = "cabinet_closed"; icon_opened = "cabinet_open"; @@ -57137,11 +57148,11 @@ /obj/effect/landmark/costume/imperium_monk, /turf/simulated/floor/wood, /area/maintenance/library) -"bTk" = ( +"bTl" = ( /obj/structure/closet/crate, /turf/simulated/floor/tiled, /area/maintenance/research_port) -"bTl" = ( +"bTm" = ( /obj/structure/table/standard, /obj/machinery/button/remote/airlock{ id = "maint_dungeon"; @@ -57162,13 +57173,13 @@ /obj/effect/decal/cleanable/dirt, /turf/simulated/floor/tiled/white, /area/maintenance/research_port) -"bTm" = ( +"bTn" = ( /obj/machinery/disposal, /obj/structure/disposalpipe/trunk, /obj/effect/decal/cleanable/dirt, /turf/simulated/floor/plating, /area/maintenance/research_port) -"bTn" = ( +"bTo" = ( /obj/structure/table/standard{ name = "plastic table frame" }, @@ -57186,15 +57197,15 @@ }, /turf/simulated/floor/tiled, /area/hydroponics) -"bTo" = ( +"bTp" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /turf/simulated/floor/tiled, /area/hydroponics) -"bTp" = ( +"bTq" = ( /obj/machinery/atmospherics/unary/vent_scrubber/on, /turf/simulated/floor/tiled, /area/hydroponics) -"bTq" = ( +"bTr" = ( /obj/machinery/vending/hydronutrients, /obj/effect/floor_decal/corner/green{ icon_state = "corner_white"; @@ -57204,7 +57215,7 @@ /obj/machinery/firealarm/east, /turf/simulated/floor/tiled, /area/hydroponics) -"bTr" = ( +"bTs" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/structure/disposalpipe/segment, @@ -57214,17 +57225,17 @@ }, /turf/simulated/floor/tiled, /area/hydroponics) -"bTs" = ( +"bTt" = ( /obj/machinery/portable_atmospherics/hydroponics, /turf/simulated/floor/tiled/dark, /area/hydroponics) -"bTt" = ( +"bTu" = ( /obj/machinery/light, /obj/structure/reagent_dispensers/watertank, /obj/effect/floor_decal/industrial/outline/yellow, /turf/simulated/floor/tiled/dark, /area/hydroponics) -"bTu" = ( +"bTv" = ( /obj/item/device/eftpos{ eftpos_name = "Hydroponics EFTPOS scanner" }, @@ -57233,11 +57244,11 @@ }, /turf/simulated/floor/tiled/dark, /area/hydroponics) -"bTv" = ( +"bTw" = ( /obj/item/weapon/stool/padded, /turf/simulated/floor/tiled/dark, /area/hydroponics) -"bTw" = ( +"bTx" = ( /obj/machinery/door/firedoor, /obj/structure/window/reinforced{ icon_state = "rwindow"; @@ -57253,14 +57264,14 @@ }, /turf/simulated/floor/plating, /area/hydroponics) -"bTx" = ( +"bTy" = ( /obj/effect/floor_decal/corner/green{ icon_state = "corner_white"; dir = 1 }, /turf/simulated/floor/tiled, /area/hallway/primary/aft) -"bTy" = ( +"bTz" = ( /obj/machinery/light, /obj/machinery/camera/network/civilian_main{ c_tag = "Aft Corridor - Camera 2"; @@ -57277,7 +57288,7 @@ }, /turf/simulated/floor/tiled, /area/hallway/primary/aft) -"bTz" = ( +"bTA" = ( /obj/machinery/disposal{ name = "disposal unit" }, @@ -57287,12 +57298,12 @@ }, /turf/simulated/floor/tiled/white, /area/crew_quarters/kitchen) -"bTA" = ( +"bTB" = ( /obj/structure/closet/secure_closet/freezer/kitchen, /obj/effect/floor_decal/corner/grey/diagonal, /turf/simulated/floor/tiled/white, /area/crew_quarters/kitchen) -"bTB" = ( +"bTC" = ( /obj/machinery/chem_master/condimaster{ name = "CondiMaster Neo"; pixel_x = -5 @@ -57301,7 +57312,7 @@ /obj/machinery/light, /turf/simulated/floor/tiled/white, /area/crew_quarters/kitchen) -"bTC" = ( +"bTD" = ( /obj/structure/closet/secure_closet/freezer/fridge, /obj/effect/floor_decal/corner/grey/diagonal, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ @@ -57309,7 +57320,7 @@ }, /turf/simulated/floor/tiled/white, /area/crew_quarters/kitchen) -"bTD" = ( +"bTE" = ( /obj/effect/floor_decal/corner/grey/diagonal, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 10 @@ -57322,7 +57333,7 @@ }, /turf/simulated/floor/tiled/white, /area/crew_quarters/kitchen) -"bTE" = ( +"bTF" = ( /obj/machinery/power/apc{ dir = 4; name = "east bump"; @@ -57335,14 +57346,14 @@ }, /turf/simulated/floor/tiled/white, /area/crew_quarters/kitchen) -"bTF" = ( +"bTG" = ( /obj/machinery/button/windowtint{ id = "theatre"; pixel_y = -26 }, /turf/simulated/floor/plating, /area/maintenance/library) -"bTG" = ( +"bTH" = ( /obj/item/clothing/head/soft/mime, /obj/item/clothing/mask/gas/mime, /obj/item/clothing/shoes/mime, @@ -57355,20 +57366,20 @@ }, /turf/simulated/floor/wood, /area/maintenance/library) -"bTH" = ( +"bTI" = ( /obj/effect/landmark/costume/pirate, /turf/simulated/floor/wood, /area/maintenance/library) -"bTI" = ( +"bTJ" = ( /obj/random/junk, /turf/simulated/floor/wood, /area/maintenance/library) -"bTJ" = ( +"bTK" = ( /obj/item/weapon/bedsheet/mime, /obj/structure/bed, /turf/simulated/floor/wood, /area/maintenance/library) -"bTK" = ( +"bTL" = ( /obj/structure/grille, /obj/structure/window/reinforced/polarized{ id = "maint_cell" @@ -57388,7 +57399,7 @@ /obj/machinery/door/firedoor, /turf/simulated/floor/plating, /area/maintenance/research_port) -"bTL" = ( +"bTM" = ( /obj/machinery/door/airlock/research{ icon_state = "door_locked"; id_tag = "maint_dungeon"; @@ -57398,7 +57409,7 @@ /obj/machinery/door/firedoor, /turf/simulated/floor/plating, /area/maintenance/research_port) -"bTM" = ( +"bTN" = ( /obj/structure/grille, /obj/structure/window/reinforced/polarized{ id = "maint_cell" @@ -57419,11 +57430,11 @@ /obj/machinery/door/firedoor, /turf/simulated/floor/plating, /area/maintenance/research_port) -"bTN" = ( +"bTO" = ( /obj/structure/closet/secure_closet/hydroponics, /turf/simulated/floor/tiled, /area/hydroponics) -"bTO" = ( +"bTP" = ( /obj/machinery/atmospherics/pipe/manifold/hidden/supply{ dir = 8 }, @@ -57432,14 +57443,14 @@ }, /turf/simulated/floor/tiled, /area/hydroponics) -"bTP" = ( +"bTQ" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, /obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, /turf/simulated/floor/tiled, /area/hydroponics) -"bTQ" = ( +"bTR" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, @@ -57452,7 +57463,7 @@ }, /turf/simulated/floor/tiled, /area/hydroponics) -"bTR" = ( +"bTS" = ( /obj/machinery/door/airlock/glass{ name = "Hydroponics Supplies"; req_access = list(35) @@ -57474,7 +57485,7 @@ }, /turf/simulated/floor/tiled, /area/hydroponics) -"bTS" = ( +"bTT" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, @@ -57487,7 +57498,7 @@ }, /turf/simulated/floor/tiled, /area/hydroponics) -"bTT" = ( +"bTU" = ( /obj/machinery/atmospherics/pipe/manifold/hidden/supply{ dir = 4 }, @@ -57505,7 +57516,7 @@ }, /turf/simulated/floor/tiled, /area/hydroponics) -"bTU" = ( +"bTV" = ( /obj/structure/window/reinforced{ icon_state = "rwindow"; dir = 1 @@ -57517,16 +57528,16 @@ /obj/structure/grille, /turf/simulated/floor/plating, /area/hydroponics) -"bTV" = ( -/obj/structure/window/reinforced{ - icon_state = "rwindow"; - dir = 1 - }, -/obj/structure/window/reinforced, -/obj/structure/grille, -/turf/simulated/floor/plating, -/area/hydroponics) "bTW" = ( +/obj/structure/window/reinforced{ + icon_state = "rwindow"; + dir = 1 + }, +/obj/structure/window/reinforced, +/obj/structure/grille, +/turf/simulated/floor/plating, +/area/hydroponics) +"bTX" = ( /obj/structure/window/reinforced{ icon_state = "rwindow"; dir = 1 @@ -57538,7 +57549,7 @@ /obj/structure/grille, /turf/simulated/floor/plating, /area/hydroponics) -"bTX" = ( +"bTY" = ( /obj/machinery/door/firedoor, /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, @@ -57549,7 +57560,7 @@ }, /turf/simulated/floor/tiled, /area/hallway/primary/aft) -"bTY" = ( +"bTZ" = ( /obj/structure/grille, /obj/structure/window/reinforced{ dir = 4 @@ -57564,7 +57575,7 @@ /obj/machinery/door/firedoor, /turf/simulated/floor/plating, /area/crew_quarters/kitchen) -"bTZ" = ( +"bUa" = ( /obj/machinery/door/airlock/glass{ name = "Kitchen"; req_access = list(28) @@ -57573,7 +57584,7 @@ /obj/effect/floor_decal/corner/grey/diagonal, /turf/simulated/floor/tiled/white, /area/crew_quarters/kitchen) -"bUa" = ( +"bUb" = ( /obj/structure/grille, /obj/structure/window/reinforced{ dir = 1 @@ -57585,28 +57596,28 @@ /obj/machinery/door/firedoor, /turf/simulated/floor/plating, /area/crew_quarters/kitchen) -"bUb" = ( -/obj/structure/grille, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/window/reinforced, -/obj/machinery/door/firedoor, -/turf/simulated/floor/plating, -/area/crew_quarters/kitchen) "bUc" = ( /obj/structure/grille, /obj/structure/window/reinforced{ dir = 1 }, /obj/structure/window/reinforced, +/obj/machinery/door/firedoor, +/turf/simulated/floor/plating, +/area/crew_quarters/kitchen) +"bUd" = ( +/obj/structure/grille, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/window/reinforced, /obj/structure/window/reinforced{ dir = 4 }, /obj/machinery/door/firedoor, /turf/simulated/floor/plating, /area/crew_quarters/kitchen) -"bUd" = ( +"bUe" = ( /obj/machinery/door/airlock/glass{ name = "Kitchen"; req_access = list(28) @@ -57622,7 +57633,7 @@ /obj/machinery/atmospherics/pipe/simple/hidden/supply, /turf/simulated/floor/tiled/white, /area/crew_quarters/kitchen) -"bUe" = ( +"bUf" = ( /obj/structure/grille, /obj/structure/window/reinforced{ dir = 1 @@ -57638,7 +57649,7 @@ }, /turf/simulated/floor/plating, /area/crew_quarters/kitchen) -"bUf" = ( +"bUg" = ( /obj/structure/cable{ d1 = 1; d2 = 2; @@ -57651,40 +57662,40 @@ /obj/machinery/door/firedoor, /turf/simulated/floor/plating, /area/maintenance/library) -"bUg" = ( -/obj/structure/window/reinforced/polarized{ - id = "theatre" - }, -/turf/simulated/floor/wood, -/area/maintenance/library) "bUh" = ( /obj/structure/window/reinforced/polarized{ id = "theatre" }, -/turf/simulated/floor/plating, +/turf/simulated/floor/wood, /area/maintenance/library) "bUi" = ( +/obj/structure/window/reinforced/polarized{ + id = "theatre" + }, +/turf/simulated/floor/plating, +/area/maintenance/library) +"bUj" = ( /obj/effect/landmark/costume/gladiator, /obj/structure/table/rack, /turf/simulated/floor/wood, /area/maintenance/library) -"bUj" = ( +"bUk" = ( /obj/structure/table/rack, /turf/simulated/floor/wood, /area/maintenance/library) -"bUk" = ( +"bUl" = ( /obj/structure/closet, /turf/simulated/floor/plating, /area/maintenance/research_port) -"bUl" = ( +"bUm" = ( /obj/random/junk, /turf/simulated/floor/tiled, /area/maintenance/research_port) -"bUm" = ( +"bUn" = ( /obj/structure/table/rack, /turf/simulated/floor/plating, /area/maintenance/research_port) -"bUn" = ( +"bUo" = ( /obj/structure/table/standard, /obj/effect/decal/cleanable/cobweb2{ icon_state = "cobweb1" @@ -57692,7 +57703,7 @@ /obj/effect/decal/cleanable/dirt, /turf/simulated/floor/plating, /area/maintenance/research_port) -"bUo" = ( +"bUp" = ( /obj/structure/disposaloutlet, /obj/structure/disposalpipe/trunk{ dir = 1 @@ -57700,7 +57711,7 @@ /obj/effect/decal/cleanable/dirt, /turf/simulated/floor/plating, /area/maintenance/research_port) -"bUp" = ( +"bUq" = ( /obj/structure/grille, /obj/structure/window/reinforced{ dir = 8 @@ -57716,7 +57727,7 @@ /obj/machinery/door/firedoor, /turf/simulated/floor/plating, /area/hydroponics) -"bUq" = ( +"bUr" = ( /obj/machinery/door/airlock/glass{ name = "Hydroponics Pasture"; req_access = list(35) @@ -57726,7 +57737,7 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/tiled, /area/hydroponics) -"bUr" = ( +"bUs" = ( /obj/structure/grille, /obj/structure/window/reinforced{ icon_state = "rwindow"; @@ -57739,7 +57750,7 @@ /obj/machinery/door/firedoor, /turf/simulated/floor/plating, /area/hydroponics) -"bUs" = ( +"bUt" = ( /obj/structure/grille, /obj/structure/window/reinforced{ dir = 4 @@ -57752,7 +57763,7 @@ /obj/machinery/door/firedoor, /turf/simulated/floor/plating, /area/hydroponics) -"bUt" = ( +"bUu" = ( /obj/effect/floor_decal/corner/green{ icon_state = "corner_white"; dir = 9 @@ -57771,14 +57782,14 @@ }, /turf/simulated/floor/tiled, /area/hydroponics) -"bUu" = ( +"bUv" = ( /obj/machinery/portable_atmospherics/hydroponics, /obj/machinery/light{ dir = 1 }, /turf/simulated/floor/tiled/dark, /area/hydroponics) -"bUv" = ( +"bUw" = ( /obj/structure/window/reinforced{ dir = 8 }, @@ -57787,7 +57798,7 @@ /obj/structure/flora/ausbushes/fernybush, /turf/simulated/floor/grass, /area/hydroponics) -"bUw" = ( +"bUx" = ( /obj/structure/window/reinforced{ icon_state = "rwindow"; dir = 1 @@ -57802,31 +57813,31 @@ /obj/machinery/door/firedoor, /turf/simulated/floor/plating, /area/hydroponics) -"bUx" = ( +"bUy" = ( /obj/machinery/status_display{ pixel_x = 32 }, /turf/simulated/floor/tiled, /area/hallway/primary/aft) -"bUy" = ( +"bUz" = ( /turf/simulated/wall, /area/crew_quarters/bar) -"bUz" = ( +"bUA" = ( /obj/machinery/vending/dinnerware, /turf/simulated/floor/lino, /area/crew_quarters/bar) -"bUA" = ( -/turf/simulated/floor/lino, -/area/crew_quarters/bar) "bUB" = ( -/obj/structure/table/stone/marble, /turf/simulated/floor/lino, /area/crew_quarters/bar) "bUC" = ( +/obj/structure/table/stone/marble, +/turf/simulated/floor/lino, +/area/crew_quarters/bar) +"bUD" = ( /obj/structure/flora/pottedplant/random, /turf/simulated/floor/wood, /area/crew_quarters/bar) -"bUD" = ( +"bUE" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/structure/cable/green{ @@ -57836,36 +57847,36 @@ }, /turf/simulated/floor/wood, /area/crew_quarters/bar) -"bUE" = ( +"bUF" = ( /obj/structure/closet/emcloset, /turf/simulated/floor/wood, /area/crew_quarters/bar) -"bUF" = ( +"bUG" = ( /obj/structure/device/piano, /turf/simulated/floor/wood, /area/maintenance/library) -"bUG" = ( +"bUH" = ( /obj/item/weapon/stool/padded, /turf/simulated/floor/plating, /area/maintenance/library) -"bUH" = ( +"bUI" = ( /obj/effect/landmark/costume/chicken, /obj/structure/table/rack, /turf/simulated/floor/wood, /area/maintenance/library) -"bUI" = ( +"bUJ" = ( /obj/item/weapon/stool, /obj/effect/decal/cleanable/dirt, /turf/simulated/floor/plating, /area/maintenance/research_port) -"bUJ" = ( +"bUK" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/dirt, /obj/effect/decal/remains/xeno, /obj/random/loot, /turf/simulated/floor/plating, /area/maintenance/research_port) -"bUK" = ( +"bUL" = ( /obj/structure/sink{ dir = 4; icon_state = "sink"; @@ -57877,26 +57888,26 @@ /obj/effect/decal/cleanable/dirt, /turf/simulated/floor/plating, /area/maintenance/research_port) -"bUL" = ( +"bUM" = ( /obj/structure/flora/ausbushes/brflowers, /obj/machinery/portable_atmospherics/hydroponics/soil, /turf/simulated/floor/grass, /area/hydroponics) -"bUM" = ( +"bUN" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 5 }, /turf/simulated/floor/grass, /area/hydroponics) -"bUN" = ( +"bUO" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 10 }, /obj/structure/flora/ausbushes/ppflowers, /turf/simulated/floor/grass, /area/hydroponics) -"bUO" = ( +"bUP" = ( /obj/machinery/portable_atmospherics/hydroponics/soil, /obj/machinery/light{ dir = 4; @@ -57904,7 +57915,7 @@ }, /turf/simulated/floor/grass, /area/hydroponics) -"bUP" = ( +"bUQ" = ( /obj/structure/grille, /obj/structure/window/reinforced{ dir = 4 @@ -57918,7 +57929,7 @@ }, /turf/simulated/floor/plating, /area/hydroponics) -"bUQ" = ( +"bUR" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 5 @@ -57930,7 +57941,7 @@ }, /turf/simulated/floor/tiled, /area/hydroponics) -"bUR" = ( +"bUS" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 }, @@ -57940,7 +57951,7 @@ }, /turf/simulated/floor/tiled, /area/hydroponics) -"bUS" = ( +"bUT" = ( /obj/machinery/atmospherics/unary/vent_scrubber/on{ dir = 8 }, @@ -57950,14 +57961,14 @@ }, /turf/simulated/floor/tiled, /area/hydroponics) -"bUT" = ( +"bUU" = ( /obj/effect/floor_decal/corner/green/full{ icon_state = "corner_white_full"; dir = 1 }, /turf/simulated/floor/tiled, /area/hydroponics) -"bUU" = ( +"bUV" = ( /obj/structure/grille, /obj/structure/window/reinforced{ dir = 8 @@ -57968,7 +57979,7 @@ /obj/machinery/door/firedoor, /turf/simulated/floor/plating, /area/hydroponics) -"bUV" = ( +"bUW" = ( /obj/structure/table/stone/marble, /obj/machinery/alarm{ dir = 4; @@ -57977,12 +57988,12 @@ }, /turf/simulated/floor/lino, /area/crew_quarters/bar) -"bUW" = ( +"bUX" = ( /obj/structure/table/stone/marble, /obj/item/clothing/head/cakehat, /turf/simulated/floor/lino, /area/crew_quarters/bar) -"bUX" = ( +"bUY" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ icon_state = "intact-supply"; dir = 6 @@ -57997,7 +58008,7 @@ }, /turf/simulated/floor/wood, /area/crew_quarters/bar) -"bUY" = ( +"bUZ" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 9; pixel_y = 0 @@ -58012,10 +58023,10 @@ }, /turf/simulated/floor/wood, /area/crew_quarters/bar) -"bUZ" = ( +"bVa" = ( /turf/simulated/floor/wood, /area/crew_quarters/bar) -"bVa" = ( +"bVb" = ( /obj/structure/window/reinforced{ dir = 4 }, @@ -58030,46 +58041,46 @@ /obj/structure/disposalpipe/trunk, /turf/simulated/floor/wood, /area/crew_quarters/bar) -"bVb" = ( +"bVc" = ( /obj/machinery/floor_light/dance, /turf/simulated/floor/light, /area/crew_quarters/bar) -"bVc" = ( +"bVd" = ( /obj/machinery/floor_light/dance/alternate, /turf/simulated/floor/light, /area/crew_quarters/bar) -"bVd" = ( +"bVe" = ( /obj/structure/table/rack, /turf/simulated/floor/plating, /area/maintenance/library) -"bVe" = ( +"bVf" = ( /obj/structure/flora/pottedplant/random, /turf/simulated/floor/wood, /area/maintenance/library) -"bVf" = ( +"bVg" = ( /obj/item/weapon/stool/padded, /turf/simulated/floor/carpet, /area/maintenance/library) -"bVg" = ( +"bVh" = ( /obj/effect/landmark/costume/commie, /obj/structure/table/rack, /turf/simulated/floor/wood, /area/maintenance/library) -"bVh" = ( +"bVi" = ( /obj/structure/toilet{ dir = 4 }, /obj/effect/decal/cleanable/dirt, /turf/simulated/floor/plating, /area/maintenance/research_port) -"bVi" = ( +"bVj" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/landmark{ name = "blobstart" }, /turf/simulated/floor/plating, /area/maintenance/research_port) -"bVj" = ( +"bVk" = ( /obj/structure/bed, /obj/effect/decal/cleanable/cobweb2{ icon_state = "spiderling"; @@ -58078,20 +58089,20 @@ /obj/effect/decal/cleanable/dirt, /turf/simulated/floor/plating, /area/maintenance/research_port) -"bVk" = ( +"bVl" = ( /obj/machinery/portable_atmospherics/hydroponics/soil, /turf/simulated/floor/grass, /area/hydroponics) -"bVl" = ( +"bVm" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /turf/simulated/floor/grass, /area/hydroponics) -"bVm" = ( +"bVn" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/structure/flora/ausbushes/sparsegrass, /turf/simulated/floor/grass, /area/hydroponics) -"bVn" = ( +"bVo" = ( /obj/structure/grille, /obj/structure/window/reinforced{ dir = 4 @@ -58102,12 +58113,12 @@ /obj/structure/window/reinforced, /turf/simulated/floor/plating, /area/hydroponics) -"bVo" = ( +"bVp" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/structure/disposalpipe/segment, /turf/simulated/floor/tiled, /area/hydroponics) -"bVp" = ( +"bVq" = ( /obj/machinery/biogenerator, /obj/effect/floor_decal/industrial/warning{ dir = 9 @@ -58115,7 +58126,7 @@ /obj/effect/floor_decal/industrial/outline/yellow, /turf/simulated/floor/tiled, /area/hydroponics) -"bVq" = ( +"bVr" = ( /obj/effect/floor_decal/industrial/warning{ dir = 1 }, @@ -58124,7 +58135,7 @@ }, /turf/simulated/floor/tiled, /area/hydroponics) -"bVr" = ( +"bVs" = ( /obj/machinery/seed_extractor, /obj/effect/floor_decal/industrial/warning{ dir = 5 @@ -58132,14 +58143,14 @@ /obj/effect/floor_decal/industrial/outline/yellow, /turf/simulated/floor/tiled, /area/hydroponics) -"bVs" = ( +"bVt" = ( /obj/effect/floor_decal/corner/green{ icon_state = "corner_white"; dir = 6 }, /turf/simulated/floor/tiled, /area/hydroponics) -"bVt" = ( +"bVu" = ( /obj/machinery/portable_atmospherics/hydroponics, /obj/machinery/light{ dir = 4; @@ -58148,7 +58159,7 @@ }, /turf/simulated/floor/tiled/dark, /area/hydroponics) -"bVu" = ( +"bVv" = ( /obj/machinery/light{ dir = 8; icon_state = "tube1"; @@ -58156,14 +58167,14 @@ }, /turf/simulated/floor/tiled, /area/hallway/primary/aft) -"bVv" = ( +"bVw" = ( /obj/structure/sign/double/barsign{ icon_state = "empty"; dir = 8 }, /turf/simulated/wall, /area/crew_quarters/bar) -"bVw" = ( +"bVx" = ( /obj/item/weapon/stool/padded, /obj/machinery/light{ dir = 8; @@ -58177,11 +58188,11 @@ /obj/machinery/firealarm/west, /turf/simulated/floor/wood, /area/crew_quarters/bar) -"bVx" = ( +"bVy" = ( /obj/item/weapon/stool/padded, /turf/simulated/floor/wood, /area/crew_quarters/bar) -"bVy" = ( +"bVz" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ icon_state = "map-scrubbers"; @@ -58194,17 +58205,17 @@ }, /turf/simulated/floor/wood, /area/crew_quarters/bar) -"bVz" = ( +"bVA" = ( /obj/machinery/atmospherics/unary/vent_scrubber/on{ dir = 8 }, /turf/simulated/floor/wood, /area/crew_quarters/bar) -"bVA" = ( +"bVB" = ( /obj/structure/disposalpipe/segment, /turf/simulated/floor/wood, /area/crew_quarters/bar) -"bVB" = ( +"bVC" = ( /obj/machinery/camera/network/service{ c_tag = "Bar - Dance Floor"; dir = 8 @@ -58212,35 +58223,35 @@ /obj/machinery/floor_light/dance/alternate, /turf/simulated/floor/light, /area/crew_quarters/bar) -"bVC" = ( +"bVD" = ( /obj/effect/landmark/costume/plaguedoctor, /obj/structure/table/rack, /turf/simulated/floor/wood, /area/maintenance/library) -"bVD" = ( +"bVE" = ( /obj/effect/landmark/costume/elpresidente, /obj/structure/table/rack, /turf/simulated/floor/wood, /area/maintenance/library) -"bVE" = ( +"bVF" = ( /obj/structure/table/rack, /obj/random/loot, /turf/simulated/floor/tiled, /area/maintenance/research_port) -"bVF" = ( +"bVG" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/structure/flora/ausbushes/ppflowers, /turf/simulated/floor/grass, /area/hydroponics) -"bVG" = ( +"bVH" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/grass, /area/hydroponics) -"bVH" = ( +"bVI" = ( /obj/structure/flora/ausbushes/ywflowers, /turf/simulated/floor/grass, /area/hydroponics) -"bVI" = ( +"bVJ" = ( /obj/machinery/door/airlock/glass{ name = "Hydroponics Pasture"; req_access = list(35) @@ -58248,14 +58259,14 @@ /obj/machinery/door/firedoor, /turf/simulated/floor/tiled, /area/hydroponics) -"bVJ" = ( +"bVK" = ( /obj/machinery/atmospherics/unary/vent_pump/on{ dir = 1 }, /obj/structure/disposalpipe/segment, /turf/simulated/floor/tiled, /area/hydroponics) -"bVK" = ( +"bVL" = ( /obj/machinery/vending/hydronutrients, /obj/effect/floor_decal/industrial/warning{ icon_state = "warning"; @@ -58264,14 +58275,14 @@ /obj/effect/floor_decal/industrial/outline/yellow, /turf/simulated/floor/tiled, /area/hydroponics) -"bVL" = ( +"bVM" = ( /obj/effect/floor_decal/industrial/warning, /obj/effect/landmark/start{ name = "Gardener" }, /turf/simulated/floor/tiled, /area/hydroponics) -"bVM" = ( +"bVN" = ( /obj/effect/floor_decal/industrial/warning{ dir = 6 }, @@ -58279,27 +58290,27 @@ /obj/machinery/seed_storage/garden, /turf/simulated/floor/tiled, /area/hydroponics) -"bVN" = ( +"bVO" = ( /obj/machinery/door/airlock/glass{ name = "Diner" }, /obj/machinery/door/firedoor, /turf/simulated/floor/tiled, /area/crew_quarters/bar) -"bVO" = ( +"bVP" = ( /turf/simulated/floor/tiled/ramp/bottom{ icon_state = "rampbot"; dir = 4 }, /area/crew_quarters/bar) -"bVP" = ( +"bVQ" = ( /obj/structure/window/reinforced{ dir = 4 }, /obj/structure/disposalpipe/segment, /turf/simulated/floor/wood, /area/crew_quarters/bar) -"bVQ" = ( +"bVR" = ( /obj/machinery/door/firedoor, /obj/machinery/door/airlock/maintenance{ name = "Maintenance Access"; @@ -58307,7 +58318,7 @@ }, /turf/simulated/floor/plating, /area/maintenance/library) -"bVR" = ( +"bVS" = ( /obj/structure/cable{ d1 = 2; d2 = 4; @@ -58325,23 +58336,6 @@ }, /turf/simulated/floor/plating, /area/maintenance/cargo) -"bVS" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/maintenance/cargo) "bVT" = ( /obj/structure/cable{ d1 = 4; @@ -58357,10 +58351,27 @@ /obj/structure/disposalpipe/segment{ dir = 4 }, -/obj/machinery/door/firedoor, /turf/simulated/floor/plating, /area/maintenance/cargo) "bVU" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/door/firedoor, +/turf/simulated/floor/plating, +/area/maintenance/cargo) +"bVV" = ( /obj/structure/cable{ d1 = 1; d2 = 8; @@ -58378,7 +58389,7 @@ }, /turf/simulated/floor/plating, /area/maintenance/cargo) -"bVV" = ( +"bVW" = ( /obj/machinery/portable_atmospherics/hydroponics/soil, /obj/machinery/light{ dir = 8; @@ -58387,13 +58398,13 @@ }, /turf/simulated/floor/grass, /area/hydroponics) -"bVW" = ( +"bVX" = ( /obj/machinery/atmospherics/unary/vent_pump/on{ dir = 1 }, /turf/simulated/floor/grass, /area/hydroponics) -"bVX" = ( +"bVY" = ( /obj/machinery/camera/network/service{ c_tag = "Hydroponics - Animal Pen"; dir = 1 @@ -58403,7 +58414,7 @@ }, /turf/simulated/floor/grass, /area/hydroponics) -"bVY" = ( +"bVZ" = ( /obj/structure/grille, /obj/structure/window/reinforced{ dir = 4 @@ -58417,27 +58428,27 @@ }, /turf/simulated/floor/plating, /area/hydroponics) -"bVZ" = ( +"bWa" = ( /obj/structure/disposalpipe/segment, /obj/effect/floor_decal/corner/green, /turf/simulated/floor/tiled, /area/hydroponics) -"bWa" = ( -/obj/effect/floor_decal/corner/green{ - icon_state = "corner_white"; - dir = 10 - }, -/turf/simulated/floor/tiled, -/area/hydroponics) "bWb" = ( /obj/effect/floor_decal/corner/green{ icon_state = "corner_white"; dir = 10 }, -/obj/machinery/hologram/holopad, /turf/simulated/floor/tiled, /area/hydroponics) "bWc" = ( +/obj/effect/floor_decal/corner/green{ + icon_state = "corner_white"; + dir = 10 + }, +/obj/machinery/hologram/holopad, +/turf/simulated/floor/tiled, +/area/hydroponics) +"bWd" = ( /obj/machinery/atmospherics/pipe/manifold/hidden/supply{ dir = 8 }, @@ -58456,7 +58467,7 @@ }, /turf/simulated/floor/tiled, /area/hallway/primary/aft) -"bWd" = ( +"bWe" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, @@ -58475,7 +58486,7 @@ }, /turf/simulated/floor/tiled, /area/hallway/primary/aft) -"bWe" = ( +"bWf" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, @@ -58493,7 +58504,7 @@ /obj/machinery/door/firedoor, /turf/simulated/floor/tiled, /area/crew_quarters/bar) -"bWf" = ( +"bWg" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, @@ -58510,7 +58521,7 @@ dir = 4 }, /area/crew_quarters/bar) -"bWg" = ( +"bWh" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, @@ -58524,7 +58535,7 @@ }, /turf/simulated/floor/wood, /area/crew_quarters/bar) -"bWh" = ( +"bWi" = ( /obj/machinery/atmospherics/pipe/manifold/hidden/supply{ dir = 1 }, @@ -58543,7 +58554,7 @@ }, /turf/simulated/floor/wood, /area/crew_quarters/bar) -"bWi" = ( +"bWj" = ( /obj/machinery/atmospherics/pipe/manifold/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 9 @@ -58555,13 +58566,13 @@ }, /turf/simulated/floor/wood, /area/crew_quarters/bar) -"bWj" = ( +"bWk" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, /turf/simulated/floor/wood, /area/crew_quarters/bar) -"bWk" = ( +"bWl" = ( /obj/machinery/atmospherics/unary/vent_pump/on{ dir = 8 }, @@ -58573,10 +58584,10 @@ }, /turf/simulated/floor/wood, /area/crew_quarters/bar) -"bWl" = ( +"bWm" = ( /turf/simulated/wall, /area/quartermaster/office) -"bWm" = ( +"bWn" = ( /obj/machinery/alarm{ dir = 1; pixel_y = -22 @@ -58591,7 +58602,7 @@ /obj/effect/floor_decal/corner/green/full, /turf/simulated/floor/tiled, /area/hydroponics) -"bWn" = ( +"bWo" = ( /obj/machinery/disposal, /obj/structure/disposalpipe/trunk{ dir = 1 @@ -58603,12 +58614,12 @@ /obj/machinery/firealarm/south, /turf/simulated/floor/tiled, /area/hydroponics) -"bWo" = ( +"bWp" = ( /obj/machinery/portable_atmospherics/hydroponics, /obj/machinery/light, /turf/simulated/floor/tiled/dark, /area/hydroponics) -"bWp" = ( +"bWq" = ( /obj/structure/window/reinforced{ dir = 8 }, @@ -58619,7 +58630,7 @@ /obj/structure/flora/ausbushes/brflowers, /turf/simulated/floor/grass, /area/hydroponics) -"bWq" = ( +"bWr" = ( /obj/structure/grille, /obj/structure/window/reinforced{ dir = 8 @@ -58631,14 +58642,14 @@ /obj/machinery/door/firedoor, /turf/simulated/floor/plating, /area/hydroponics) -"bWr" = ( +"bWs" = ( /obj/machinery/camera/network/civilian_main{ c_tag = "Aft Corridor - Camera 1"; dir = 4 }, /turf/simulated/floor/tiled, /area/hallway/primary/aft) -"bWs" = ( +"bWt" = ( /obj/machinery/door/firedoor, /obj/structure/grille, /obj/structure/window/reinforced{ @@ -58651,7 +58662,7 @@ /obj/structure/window/reinforced, /turf/simulated/floor/plating, /area/crew_quarters/bar) -"bWt" = ( +"bWu" = ( /obj/machinery/door/firedoor, /obj/structure/grille, /obj/structure/window/reinforced{ @@ -58664,16 +58675,16 @@ /obj/structure/window/reinforced, /turf/simulated/floor/plating, /area/crew_quarters/bar) -"bWu" = ( +"bWv" = ( /obj/structure/bed/chair/wood, /turf/simulated/floor/wood, /area/crew_quarters/bar) -"bWv" = ( +"bWw" = ( /obj/item/weapon/stool/padded, /obj/structure/disposalpipe/segment, /turf/simulated/floor/wood, /area/crew_quarters/bar) -"bWw" = ( +"bWx" = ( /obj/structure/table/reinforced, /obj/machinery/door/blast/shutters{ dir = 8; @@ -58686,7 +58697,7 @@ }, /turf/simulated/floor/lino, /area/crew_quarters/bar) -"bWx" = ( +"bWy" = ( /obj/machinery/light_switch{ pixel_x = 4; pixel_y = 26 @@ -58706,16 +58717,16 @@ }, /turf/simulated/floor/lino, /area/crew_quarters/bar) -"bWy" = ( +"bWz" = ( /obj/structure/table/reinforced, /obj/machinery/chemical_dispenser/coffeemaster/full, /turf/simulated/floor/lino, /area/crew_quarters/bar) -"bWz" = ( +"bWA" = ( /obj/structure/closet/crate, /turf/simulated/floor/plating, /area/maintenance/library) -"bWA" = ( +"bWB" = ( /obj/structure/cable{ d1 = 1; d2 = 4; @@ -58734,7 +58745,7 @@ /obj/random/junk, /turf/simulated/floor/plating, /area/maintenance/library) -"bWB" = ( +"bWC" = ( /obj/structure/cable{ d1 = 4; d2 = 8; @@ -58753,7 +58764,7 @@ }, /turf/simulated/floor/plating, /area/maintenance/library) -"bWC" = ( +"bWD" = ( /obj/structure/cable{ d1 = 4; d2 = 8; @@ -58774,7 +58785,7 @@ /obj/machinery/door/firedoor, /turf/simulated/floor/plating, /area/maintenance/library) -"bWD" = ( +"bWE" = ( /obj/structure/cable{ d1 = 2; d2 = 8; @@ -58792,16 +58803,16 @@ }, /turf/simulated/floor/plating, /area/maintenance/library) -"bWE" = ( +"bWF" = ( /turf/simulated/floor/tiled/dark, /area/turbolift/cargo_station) -"bWF" = ( +"bWG" = ( /obj/machinery/status_display/supply_display{ pixel_y = 32 }, /turf/simulated/floor/tiled/dark, /area/turbolift/cargo_station) -"bWG" = ( +"bWH" = ( /obj/machinery/autolathe, /obj/machinery/light{ icon_state = "tube1"; @@ -58809,7 +58820,7 @@ }, /turf/simulated/floor/tiled, /area/quartermaster/office) -"bWH" = ( +"bWI" = ( /obj/machinery/disposal, /obj/structure/disposalpipe/trunk, /obj/machinery/status_display/supply_display{ @@ -58817,7 +58828,7 @@ }, /turf/simulated/floor/tiled, /area/quartermaster/office) -"bWI" = ( +"bWJ" = ( /obj/machinery/newscaster{ pixel_x = -32 }, @@ -58826,20 +58837,20 @@ }, /turf/simulated/floor/tiled, /area/hallway/primary/aft) -"bWJ" = ( +"bWK" = ( /obj/structure/table/wood, /turf/simulated/floor/wood, /area/crew_quarters/bar) -"bWK" = ( +"bWL" = ( /obj/structure/table/wood, /obj/item/weapon/flame/candle, /turf/simulated/floor/wood, /area/crew_quarters/bar) -"bWL" = ( +"bWM" = ( /obj/machinery/hologram/holopad, /turf/simulated/floor/wood, /area/crew_quarters/bar) -"bWM" = ( +"bWN" = ( /obj/structure/table/reinforced, /obj/machinery/door/blast/shutters{ dir = 8; @@ -58850,7 +58861,7 @@ /obj/item/weapon/reagent_containers/glass/rag, /turf/simulated/floor/lino, /area/crew_quarters/bar) -"bWN" = ( +"bWO" = ( /obj/structure/table/reinforced, /obj/machinery/chemical_dispenser/bar_soft/full, /obj/machinery/light{ @@ -58860,7 +58871,7 @@ }, /turf/simulated/floor/lino, /area/crew_quarters/bar) -"bWO" = ( +"bWP" = ( /obj/machinery/navbeacon{ codes_txt = "delivery;dir=2"; freq = 1400; @@ -58874,7 +58885,7 @@ }, /turf/simulated/floor/tiled/dark, /area/crew_quarters/bar) -"bWP" = ( +"bWQ" = ( /obj/machinery/door/airlock/maintenance{ name = "Bar Maintenance"; req_access = list(25) @@ -58883,7 +58894,7 @@ /obj/structure/disposalpipe/segment, /turf/simulated/floor/plating, /area/crew_quarters/bar) -"bWQ" = ( +"bWR" = ( /obj/machinery/light/small/emergency{ icon_state = "bulb1"; dir = 4 @@ -58892,34 +58903,34 @@ /obj/random/loot, /turf/simulated/floor/plating, /area/maintenance/library) -"bWR" = ( +"bWS" = ( /obj/machinery/light/small/emergency{ dir = 1 }, /turf/simulated/floor/plating, /area/maintenance/research_port) -"bWS" = ( +"bWT" = ( /obj/effect/large_stock_marker, /turf/simulated/floor/tiled/dark, /area/turbolift/cargo_station) -"bWT" = ( +"bWU" = ( /obj/machinery/light/small{ dir = 1 }, /turf/simulated/floor/tiled/dark, /area/turbolift/cargo_station) -"bWU" = ( +"bWV" = ( /obj/effect/floor_decal/corner/brown{ icon_state = "corner_white"; dir = 8 }, /turf/simulated/floor/tiled, /area/quartermaster/office) -"bWV" = ( +"bWW" = ( /obj/structure/disposalpipe/segment, /turf/simulated/floor/tiled, /area/quartermaster/office) -"bWW" = ( +"bWX" = ( /obj/machinery/atmospherics/unary/vent_scrubber/on, /obj/machinery/ringer{ department = "Cargo"; @@ -58930,11 +58941,11 @@ }, /turf/simulated/floor/tiled, /area/quartermaster/office) -"bWX" = ( +"bWY" = ( /obj/machinery/photocopier, /turf/simulated/floor/tiled, /area/quartermaster/office) -"bWY" = ( +"bWZ" = ( /obj/item/weapon/paper_bin{ pixel_x = -3; pixel_y = 7 @@ -58951,7 +58962,7 @@ }, /turf/simulated/floor/tiled, /area/quartermaster/office) -"bWZ" = ( +"bXa" = ( /obj/effect/floor_decal/corner/brown{ icon_state = "corner_white"; dir = 9 @@ -58961,15 +58972,18 @@ dir = 6 }, /obj/item/modular_computer/console/preset/supply, -/turf/simulated/floor/tiled, -/area/quartermaster/office) -"bXa" = ( -/obj/machinery/atm{ +/obj/machinery/status_display/supply_display{ pixel_y = 32 }, /turf/simulated/floor/tiled, /area/quartermaster/office) "bXb" = ( +/obj/machinery/atm{ + pixel_y = 32 + }, +/turf/simulated/floor/tiled, +/area/quartermaster/office) +"bXc" = ( /obj/machinery/alarm{ pixel_y = 23 }, @@ -58979,14 +58993,14 @@ /obj/machinery/atmospherics/unary/vent_pump/on, /turf/simulated/floor/tiled, /area/quartermaster/office) -"bXc" = ( +"bXd" = ( /obj/structure/bed/chair{ dir = 8 }, /obj/machinery/firealarm/north, /turf/simulated/floor/tiled, /area/quartermaster/office) -"bXd" = ( +"bXe" = ( /obj/structure/grille, /obj/structure/window/reinforced{ dir = 4 @@ -59003,14 +59017,14 @@ }, /turf/simulated/floor/plating, /area/quartermaster/office) -"bXe" = ( +"bXf" = ( /obj/structure/bed/chair/wood{ icon_state = "wooden_chair"; dir = 1 }, /turf/simulated/floor/wood, /area/crew_quarters/bar) -"bXf" = ( +"bXg" = ( /obj/structure/table/reinforced, /obj/machinery/door/blast/shutters{ dir = 8; @@ -59020,12 +59034,12 @@ }, /turf/simulated/floor/lino, /area/crew_quarters/bar) -"bXg" = ( +"bXh" = ( /obj/structure/table/reinforced, /obj/machinery/chemical_dispenser/bar_alc/full, /turf/simulated/floor/lino, /area/crew_quarters/bar) -"bXh" = ( +"bXi" = ( /obj/machinery/disposal, /obj/structure/shotgun_rack/double{ pixel_x = 0; @@ -59034,7 +59048,7 @@ /obj/structure/disposalpipe/trunk, /turf/simulated/floor/lino, /area/crew_quarters/bar) -"bXi" = ( +"bXj" = ( /obj/machinery/door/window/southleft{ base_state = "left"; dir = 2; @@ -59044,7 +59058,7 @@ }, /turf/simulated/floor/tiled/dark, /area/crew_quarters/bar) -"bXj" = ( +"bXk" = ( /obj/structure/closet/secure_closet/bar{ req_access = list(25) }, @@ -59053,7 +59067,7 @@ }, /turf/simulated/floor/wood, /area/crew_quarters/bar) -"bXk" = ( +"bXl" = ( /obj/structure/closet/gmcloset{ icon_closed = "black"; icon_state = "black"; @@ -59065,7 +59079,7 @@ /obj/item/glass_jar, /turf/simulated/floor/wood, /area/crew_quarters/bar) -"bXl" = ( +"bXm" = ( /obj/structure/table/wood, /obj/item/weapon/storage/box/beanbags, /obj/item/weapon/paper{ @@ -59074,27 +59088,27 @@ }, /turf/simulated/floor/wood, /area/crew_quarters/bar) -"bXm" = ( +"bXn" = ( /obj/effect/floor_decal/corner/brown{ icon_state = "corner_white"; dir = 9 }, /turf/simulated/floor/tiled, /area/quartermaster/office) -"bXn" = ( +"bXo" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/tiled, /area/quartermaster/office) -"bXo" = ( +"bXp" = ( /turf/simulated/floor/tiled, /area/quartermaster/office) -"bXp" = ( +"bXq" = ( /obj/structure/bed/chair/office/dark{ dir = 4 }, /turf/simulated/floor/tiled, /area/quartermaster/office) -"bXq" = ( +"bXr" = ( /obj/machinery/door/firedoor{ dir = 4; name = "Firelock East" @@ -59116,15 +59130,15 @@ }, /turf/simulated/floor/tiled, /area/quartermaster/office) -"bXr" = ( +"bXs" = ( /obj/effect/floor_decal/industrial/hatch/yellow, /turf/simulated/floor/tiled, /area/quartermaster/office) -"bXs" = ( +"bXt" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /turf/simulated/floor/tiled, /area/quartermaster/office) -"bXt" = ( +"bXu" = ( /obj/structure/bed/chair{ dir = 8 }, @@ -59135,7 +59149,7 @@ }, /turf/simulated/floor/tiled, /area/quartermaster/office) -"bXu" = ( +"bXv" = ( /obj/structure/grille, /obj/structure/window/reinforced, /obj/structure/window/reinforced{ @@ -59150,18 +59164,18 @@ }, /turf/simulated/floor/plating, /area/quartermaster/office) -"bXv" = ( +"bXw" = ( /obj/effect/floor_decal/corner/brown{ icon_state = "corner_white"; dir = 8 }, /turf/simulated/floor/tiled, /area/hallway/primary/aft) -"bXw" = ( +"bXx" = ( /obj/machinery/firealarm/east, /turf/simulated/floor/tiled, /area/hallway/primary/aft) -"bXx" = ( +"bXy" = ( /obj/machinery/light{ dir = 8; icon_state = "tube1"; @@ -59172,7 +59186,7 @@ }, /turf/simulated/floor/wood, /area/crew_quarters/bar) -"bXy" = ( +"bXz" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 5 }, @@ -59186,7 +59200,7 @@ }, /turf/simulated/floor/wood, /area/crew_quarters/bar) -"bXz" = ( +"bXA" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, @@ -59195,7 +59209,7 @@ }, /turf/simulated/floor/wood, /area/crew_quarters/bar) -"bXA" = ( +"bXB" = ( /obj/machinery/atmospherics/pipe/manifold/hidden/supply{ dir = 1 }, @@ -59204,7 +59218,7 @@ }, /turf/simulated/floor/wood, /area/crew_quarters/bar) -"bXB" = ( +"bXC" = ( /obj/item/weapon/stool/padded, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 @@ -59215,7 +59229,7 @@ /obj/structure/disposalpipe/segment, /turf/simulated/floor/wood, /area/crew_quarters/bar) -"bXC" = ( +"bXD" = ( /obj/structure/table/reinforced, /obj/machinery/door/blast/shutters{ dir = 8; @@ -59231,7 +59245,7 @@ }, /turf/simulated/floor/lino, /area/crew_quarters/bar) -"bXD" = ( +"bXE" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, @@ -59240,7 +59254,7 @@ }, /turf/simulated/floor/lino, /area/crew_quarters/bar) -"bXE" = ( +"bXF" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, @@ -59253,7 +59267,7 @@ }, /turf/simulated/floor/lino, /area/crew_quarters/bar) -"bXF" = ( +"bXG" = ( /obj/machinery/door/airlock{ name = "Bar Backroom"; req_access = list(25) @@ -59270,7 +59284,7 @@ /obj/machinery/door/firedoor, /turf/simulated/floor/tiled, /area/crew_quarters/bar) -"bXG" = ( +"bXH" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, @@ -59282,7 +59296,7 @@ }, /turf/simulated/floor/wood, /area/crew_quarters/bar) -"bXH" = ( +"bXI" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, @@ -59294,7 +59308,7 @@ }, /turf/simulated/floor/wood, /area/crew_quarters/bar) -"bXI" = ( +"bXJ" = ( /obj/machinery/atmospherics/unary/vent_pump/on{ dir = 8 }, @@ -59303,14 +59317,14 @@ }, /turf/simulated/floor/wood, /area/crew_quarters/bar) -"bXJ" = ( +"bXK" = ( /obj/structure/disposalpipe/segment{ dir = 8; icon_state = "pipe-c" }, /turf/simulated/floor/wood, /area/crew_quarters/bar) -"bXK" = ( +"bXL" = ( /obj/structure/table/wood, /obj/machinery/reagentgrinder, /obj/item/weapon/reagent_containers/food/drinks/shaker, @@ -59326,7 +59340,7 @@ }, /turf/simulated/floor/wood, /area/crew_quarters/bar) -"bXL" = ( +"bXM" = ( /obj/structure/cable{ d1 = 4; d2 = 8; @@ -59344,7 +59358,7 @@ }, /turf/simulated/floor/plating, /area/maintenance/research_port) -"bXM" = ( +"bXN" = ( /obj/item/weapon/stamp{ pixel_x = -3; pixel_y = 3 @@ -59356,11 +59370,11 @@ /obj/structure/table/standard, /turf/simulated/floor/tiled, /area/quartermaster/office) -"bXN" = ( +"bXO" = ( /obj/item/modular_computer/console/preset/supply, /turf/simulated/floor/tiled, /area/quartermaster/office) -"bXO" = ( +"bXP" = ( /obj/structure/grille, /obj/structure/window/reinforced{ dir = 4 @@ -59374,11 +59388,11 @@ /obj/machinery/door/firedoor, /turf/simulated/floor/plating, /area/quartermaster/office) -"bXP" = ( +"bXQ" = ( /obj/effect/floor_decal/industrial/outline/yellow, /turf/simulated/floor/tiled, /area/quartermaster/office) -"bXQ" = ( +"bXR" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 6 }, @@ -59392,7 +59406,7 @@ }, /turf/simulated/floor/tiled, /area/quartermaster/office) -"bXR" = ( +"bXS" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 }, @@ -59404,25 +59418,7 @@ }, /turf/simulated/floor/tiled, /area/quartermaster/office) -"bXS" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled, -/area/quartermaster/office) "bXT" = ( -/obj/machinery/door/firedoor{ - dir = 4; - name = "Firelock East" - }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, @@ -59455,18 +59451,18 @@ /turf/simulated/floor/tiled, /area/hallway/primary/aft) "bXV" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - icon_state = "intact-supply"; - dir = 9 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 9 - }, /obj/structure/cable/green{ d1 = 1; d2 = 8; icon_state = "1-8" }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + icon_state = "map-scrubbers"; + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 4 + }, /turf/simulated/floor/tiled, /area/hallway/primary/aft) "bXW" = ( @@ -59591,38 +59587,14 @@ /turf/simulated/floor/tiled/dark, /area/turbolift/cargo_station) "bYk" = ( -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 4 - }, -/obj/effect/floor_decal/corner/brown{ - icon_state = "corner_white"; - dir = 9 - }, -/turf/simulated/floor/tiled, -/area/quartermaster/office) -"bYl" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/tiled, -/area/quartermaster/office) -"bYm" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 10 - }, -/turf/simulated/floor/tiled, -/area/quartermaster/office) -"bYn" = ( /obj/machinery/hologram/holopad, /turf/simulated/floor/tiled, /area/quartermaster/office) -"bYo" = ( +"bYl" = ( /obj/structure/filingcabinet/filingcabinet, /turf/simulated/floor/tiled, /area/quartermaster/office) -"bYp" = ( +"bYm" = ( /obj/structure/grille, /obj/structure/window/reinforced{ dir = 4 @@ -59634,7 +59606,7 @@ /obj/machinery/door/firedoor, /turf/simulated/floor/plating, /area/quartermaster/office) -"bYq" = ( +"bYn" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/structure/cable/green{ @@ -59644,28 +59616,29 @@ }, /turf/simulated/floor/tiled, /area/quartermaster/office) -"bYr" = ( -/obj/machinery/door/firedoor{ - dir = 4; - name = "Firelock East" +"bYo" = ( +/obj/machinery/door/firedoor/multi_tile{ + dir = 1 }, /turf/simulated/floor/tiled, /area/quartermaster/office) -"bYs" = ( +"bYp" = ( /obj/effect/floor_decal/corner/brown{ icon_state = "corner_white"; dir = 9 }, /turf/simulated/floor/tiled, /area/hallway/primary/aft) -"bYt" = ( +"bYq" = ( /obj/machinery/navbeacon{ codes_txt = "patrol;next_patrol=CC2"; location = "Civ" }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, /turf/simulated/floor/tiled, /area/hallway/primary/aft) -"bYu" = ( +"bYr" = ( /obj/structure/table/wood, /obj/item/weapon/material/kitchen/utensil/knife/plastic{ pixel_x = -8 @@ -59682,7 +59655,7 @@ /obj/item/weapon/material/kitchen/utensil/knife/plastic, /turf/simulated/floor/wood, /area/crew_quarters/bar) -"bYv" = ( +"bYs" = ( /obj/structure/cable/green{ d1 = 1; d2 = 2; @@ -59690,18 +59663,18 @@ }, /turf/simulated/floor/wood, /area/crew_quarters/bar) -"bYw" = ( +"bYt" = ( /obj/machinery/vending/boozeomat, /turf/simulated/floor/lino, /area/crew_quarters/bar) -"bYx" = ( +"bYu" = ( /obj/structure/sign/poster{ pixel_x = 0; pixel_y = 0 }, /turf/simulated/wall, /area/crew_quarters/bar) -"bYy" = ( +"bYv" = ( /obj/structure/table/wood, /obj/item/weapon/flame/lighter/zippo, /obj/item/weapon/screwdriver, @@ -59712,7 +59685,7 @@ /obj/item/weapon/book/manual/barman_recipes, /turf/simulated/floor/wood, /area/crew_quarters/bar) -"bYz" = ( +"bYw" = ( /obj/structure/bed/chair/wood{ icon_state = "wooden_chair"; dir = 8 @@ -59722,20 +59695,20 @@ }, /turf/simulated/floor/wood, /area/crew_quarters/bar) -"bYA" = ( +"bYx" = ( /obj/machinery/alarm{ dir = 1; pixel_y = -25 }, /turf/simulated/floor/wood, /area/crew_quarters/bar) -"bYB" = ( +"bYy" = ( /obj/item/weapon/bedsheet/brown, /obj/structure/bed, /obj/machinery/firealarm/east, /turf/simulated/floor/wood, /area/crew_quarters/bar) -"bYC" = ( +"bYz" = ( /obj/structure/cable{ d1 = 1; d2 = 2; @@ -59751,7 +59724,7 @@ /obj/structure/disposalpipe/segment, /turf/simulated/floor/plating, /area/maintenance/cargo) -"bYD" = ( +"bYA" = ( /obj/machinery/door/airlock/engineering{ name = "Civilian West Substation"; req_one_access = list(11,24) @@ -59765,7 +59738,7 @@ /obj/machinery/door/firedoor, /turf/simulated/floor/plating, /area/maintenance/substation/civilian_west) -"bYE" = ( +"bYB" = ( /obj/structure/cable{ d1 = 4; d2 = 8; @@ -59782,17 +59755,17 @@ }, /turf/simulated/floor/plating, /area/maintenance/substation/civilian_west) -"bYF" = ( +"bYC" = ( /obj/machinery/power/breakerbox/activated{ RCon_tag = "\[F.3] Civilian Substation Bypass" }, /turf/simulated/floor/plating, /area/maintenance/substation/civilian_west) -"bYG" = ( +"bYD" = ( /obj/turbolift_map_holder/aurora/cargo, /turf/simulated/floor/tiled/dark, /area/turbolift/cargo_station) -"bYH" = ( +"bYE" = ( /obj/item/weapon/folder/yellow, /obj/item/device/eftpos{ eftpos_name = "Cargo Bay EFTPOS scanner" @@ -59814,10 +59787,7 @@ }, /turf/simulated/floor/tiled, /area/quartermaster/office) -"bYI" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 8 - }, +"bYF" = ( /obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ dir = 8 }, @@ -59826,9 +59796,31 @@ d2 = 4; icon_state = "2-4" }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + icon_state = "intact-supply"; + dir = 6 + }, /turf/simulated/floor/tiled, /area/quartermaster/office) -"bYJ" = ( +"bYG" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/effect/floor_decal/corner/brown{ + icon_state = "corner_white"; + dir = 6 + }, +/turf/simulated/floor/tiled, +/area/quartermaster/office) +"bYH" = ( /obj/machinery/door/firedoor{ dir = 4; name = "Firelock East" @@ -59851,7 +59843,25 @@ }, /turf/simulated/floor/tiled, /area/quartermaster/office) -"bYK" = ( +"bYI" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/effect/floor_decal/corner/brown{ + icon_state = "corner_white"; + dir = 9 + }, +/turf/simulated/floor/tiled, +/area/quartermaster/office) +"bYJ" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ icon_state = "intact-supply"; dir = 9 @@ -59867,19 +59877,24 @@ }, /turf/simulated/floor/tiled, /area/quartermaster/office) -"bYL" = ( +"bYK" = ( /obj/structure/bed/chair{ dir = 8 }, /turf/simulated/floor/tiled, /area/quartermaster/office) -"bYM" = ( +"bYL" = ( /obj/effect/floor_decal/corner/brown{ icon_state = "corner_white"; dir = 1 }, /turf/simulated/floor/tiled, /area/hallway/primary/aft) +"bYM" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/tiled, +/area/hallway/primary/aft) "bYN" = ( /obj/structure/extinguisher_cabinet{ pixel_x = 32 @@ -59983,6 +59998,7 @@ /obj/machinery/requests_console{ department = "Cargo Bay"; departmentType = 2; + name = "Cargo Requests Console"; pixel_x = -30; pixel_y = 0 }, @@ -60001,19 +60017,9 @@ /turf/simulated/floor/tiled, /area/quartermaster/office) "bYX" = ( -/obj/structure/grille, -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/machinery/door/firedoor, -/turf/simulated/floor/plating, +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/effect/floor_decal/industrial/loading, +/turf/simulated/floor/tiled, /area/quartermaster/office) "bYY" = ( /obj/structure/extinguisher_cabinet{ @@ -60046,13 +60052,6 @@ /turf/simulated/floor/tiled, /area/hallway/primary/aft) "bZc" = ( -/obj/machinery/alarm{ - dir = 1; - pixel_y = -22 - }, -/turf/simulated/floor/tiled, -/area/hallway/primary/aft) -"bZd" = ( /obj/structure/table/wood, /obj/item/weapon/flame/candle, /obj/structure/cable/green{ @@ -60066,7 +60065,7 @@ }, /turf/simulated/floor/wood, /area/crew_quarters/bar) -"bZe" = ( +"bZd" = ( /obj/structure/cable/green{ d1 = 4; d2 = 8; @@ -60074,7 +60073,7 @@ }, /turf/simulated/floor/wood, /area/crew_quarters/bar) -"bZf" = ( +"bZe" = ( /obj/structure/cable/green{ d1 = 1; d2 = 8; @@ -60082,7 +60081,7 @@ }, /turf/simulated/floor/wood, /area/crew_quarters/bar) -"bZg" = ( +"bZf" = ( /obj/structure/bed/chair/comfy/black, /obj/structure/window/reinforced{ icon_state = "rwindow"; @@ -60090,18 +60089,18 @@ }, /turf/simulated/floor/wood, /area/crew_quarters/bar) -"bZh" = ( +"bZg" = ( /obj/structure/bed/chair/comfy/black, /turf/simulated/floor/wood, /area/crew_quarters/bar) -"bZi" = ( +"bZh" = ( /obj/machinery/vending/cigarette, /obj/machinery/camera/network/service{ c_tag = "Bar - Smoking Lounge" }, /turf/simulated/floor/wood, /area/crew_quarters/bar) -"bZj" = ( +"bZi" = ( /obj/structure/cable{ d1 = 2; d2 = 4; @@ -60113,7 +60112,7 @@ }, /turf/simulated/floor/plating, /area/maintenance/library) -"bZk" = ( +"bZj" = ( /obj/structure/cable{ d1 = 4; d2 = 8; @@ -60124,7 +60123,7 @@ }, /turf/simulated/floor/plating, /area/maintenance/library) -"bZl" = ( +"bZk" = ( /obj/structure/cable{ d1 = 1; d2 = 2; @@ -60144,7 +60143,7 @@ }, /turf/simulated/floor/plating, /area/maintenance/library) -"bZm" = ( +"bZl" = ( /obj/structure/cable/green{ d2 = 4; icon_state = "0-4" @@ -60156,7 +60155,7 @@ }, /turf/simulated/floor/plating, /area/maintenance/substation/civilian_west) -"bZn" = ( +"bZm" = ( /obj/machinery/power/sensor{ name = "Powernet Sensor - Civilian (Main Level)"; name_tag = "Civilian (Main Level) Subgrid" @@ -60172,7 +60171,36 @@ }, /turf/simulated/floor/plating, /area/maintenance/substation/civilian_west) +"bZn" = ( +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/turf/simulated/wall, +/area/quartermaster/office) "bZo" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/wall, +/area/quartermaster/office) +"bZp" = ( +/obj/structure/disposalpipe/trunk{ + dir = 8 + }, +/obj/machinery/disposal/deliveryChute{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/quartermaster/office) +"bZq" = ( +/obj/machinery/conveyor{ + dir = 8; + id = "cargo_toup" + }, +/turf/simulated/floor/plating, +/area/quartermaster/office) +"bZr" = ( /obj/machinery/newscaster{ pixel_x = -27; pixel_y = 1 @@ -60188,72 +60216,72 @@ /obj/effect/floor_decal/corner/brown/full, /turf/simulated/floor/tiled, /area/quartermaster/office) -"bZp" = ( -/obj/machinery/light{ - dir = 4; - icon_state = "tube1"; - pixel_x = 0 +"bZs" = ( +/obj/structure/disposalpipe/segment, +/obj/effect/floor_decal/corner/brown{ + icon_state = "corner_white"; + dir = 8 }, -/obj/effect/floor_decal/corner/brown, +/turf/simulated/floor/tiled, +/area/quartermaster/office) +"bZt" = ( /obj/structure/table/standard{ name = "plastic table frame" }, -/obj/item/weapon/folder/yellow, -/obj/machinery/firealarm/east, /turf/simulated/floor/tiled, /area/quartermaster/office) -"bZq" = ( -/obj/structure/disposalpipe/trunk, -/obj/machinery/door/window/westleft{ - dir = 1; - name = "Crate Recovery" - }, -/obj/machinery/disposal/deliveryChute{ - icon_state = "intake"; - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/quartermaster/office) -"bZr" = ( +"bZu" = ( /obj/structure/grille, /obj/structure/window/reinforced, /obj/structure/window/reinforced{ dir = 4 }, -/obj/structure/window/reinforced{ - dir = 1 - }, /obj/structure/window/reinforced{ dir = 8 }, /obj/machinery/door/firedoor, /turf/simulated/floor/plating, -/area/hallway/primary/aft) -"bZs" = ( -/obj/machinery/door/firedoor, +/area/quartermaster/office) +"bZv" = ( +/obj/machinery/conveyor{ + backwards = 1; + dir = 1; + id = "cargo_crates" + }, +/turf/simulated/floor/tiled, +/area/quartermaster/office) +"bZw" = ( /obj/machinery/door/airlock/glass, +/obj/machinery/door/firedoor, /turf/simulated/floor/tiled/white, /area/hallway/primary/aft) -"bZt" = ( +"bZx" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/glass, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/tiled/white, +/area/hallway/primary/aft) +"bZy" = ( /obj/machinery/atmospherics/unary/vent_pump/on{ dir = 1 }, /turf/simulated/floor/wood, /area/crew_quarters/bar) -"bZu" = ( +"bZz" = ( /obj/structure/disposalpipe/segment{ dir = 1; icon_state = "pipe-c" }, /turf/simulated/floor/wood, /area/crew_quarters/bar) -"bZv" = ( +"bZA" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, /turf/simulated/floor/wood, /area/crew_quarters/bar) -"bZw" = ( +"bZB" = ( /obj/machinery/door/firedoor, /obj/machinery/door/airlock/maintenance{ name = "Bar Maintenance"; @@ -60264,7 +60292,7 @@ }, /turf/simulated/floor/plating, /area/crew_quarters/bar) -"bZx" = ( +"bZC" = ( /obj/structure/cable{ d1 = 1; d2 = 2; @@ -60277,15 +60305,16 @@ }, /turf/simulated/floor/plating, /area/maintenance/library) -"bZy" = ( +"bZD" = ( /obj/structure/closet, /obj/random/loot, /turf/simulated/floor/plating, /area/maintenance/library) -"bZz" = ( +"bZE" = ( +/obj/structure/sign/electricshock, /turf/simulated/wall, -/area/quartermaster/storage) -"bZA" = ( +/area/maintenance/substation/civilian_west) +"bZF" = ( /obj/structure/cable/green{ d1 = 1; d2 = 2; @@ -60297,8 +60326,24 @@ req_one_access = list(11,24) }, /turf/simulated/floor/plating, +/area/maintenance/substation/civilian_west) +"bZG" = ( +/turf/simulated/wall, /area/quartermaster/storage) -"bZB" = ( +"bZH" = ( +/obj/structure/disposalpipe/segment, +/turf/simulated/wall, +/area/quartermaster/storage) +"bZI" = ( +/obj/machinery/conveyor{ + dir = 1; + id = "cargo_toup" + }, +/obj/structure/plasticflaps, +/obj/machinery/door/firedoor, +/turf/simulated/floor/plating, +/area/quartermaster/office) +"bZJ" = ( /obj/structure/cable/green{ d2 = 4; icon_state = "0-4" @@ -60309,9 +60354,13 @@ pixel_x = -24 }, /obj/structure/disposalpipe/segment, +/obj/effect/floor_decal/corner/brown{ + icon_state = "corner_white"; + dir = 9 + }, /turf/simulated/floor/tiled, /area/quartermaster/office) -"bZC" = ( +"bZK" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/structure/cable/green{ @@ -60326,64 +60375,41 @@ }, /turf/simulated/floor/tiled, /area/quartermaster/office) -"bZD" = ( -/obj/effect/floor_decal/industrial/hatch/yellow, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/window/reinforced{ - icon_state = "rwindow"; +"bZL" = ( +/obj/structure/bed/chair/office/dark{ dir = 1 }, -/obj/machinery/door/window/westleft{ - dir = 2; - name = "Crate Recovery"; - req_access = list(50) - }, /turf/simulated/floor/tiled, /area/quartermaster/office) -"bZE" = ( -/obj/structure/disposaloutlet{ +"bZM" = ( +/obj/machinery/firealarm/east, +/obj/structure/table/standard{ + name = "plastic table frame" + }, +/obj/machinery/camera/network/supply{ + c_tag = "Cargo - MULE Storage"; dir = 8 }, -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - icon_state = "rwindow"; - dir = 1 - }, -/obj/structure/disposalpipe/trunk{ - dir = 4 - }, /turf/simulated/floor/tiled, /area/quartermaster/office) -"bZF" = ( -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 8 +"bZN" = ( +/obj/machinery/conveyor{ + backwards = 1; + dir = 1; + id = "cargo_crates" }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced{ - icon_state = "rwindow"; - dir = 1 - }, -/obj/structure/grille, +/obj/structure/plasticflaps, /obj/machinery/door/firedoor, -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" - }, -/turf/simulated/floor/plating, +/turf/simulated/floor/tiled, /area/quartermaster/office) -"bZG" = ( +"bZO" = ( /obj/structure/cryofeed{ icon_state = "cryo_rear"; dir = 4 }, /turf/simulated/floor/tiled/white, /area/hallway/primary/aft) -"bZH" = ( +"bZP" = ( /obj/machinery/cryopod{ icon_state = "body_scanner_0"; dir = 4 @@ -60395,23 +60421,34 @@ }, /turf/simulated/floor/tiled/white, /area/hallway/primary/aft) -"bZI" = ( +"bZQ" = ( /turf/simulated/floor/tiled/white, /area/hallway/primary/aft) -"bZJ" = ( +"bZR" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/tiled/white, +/area/hallway/primary/aft) +"bZS" = ( /obj/machinery/cryopod, /obj/machinery/light{ dir = 1; icon_state = "tube1"; pixel_y = 0 }, +/obj/machinery/camera/network/civilian_west{ + c_tag = "Cryo - Main Level"; + dir = 2 + }, /turf/simulated/floor/tiled/white, /area/hallway/primary/aft) -"bZK" = ( +"bZT" = ( /obj/structure/cryofeed, /turf/simulated/floor/tiled/white, /area/hallway/primary/aft) -"bZL" = ( +"bZU" = ( /obj/structure/bed/chair/comfy/black{ dir = 4 }, @@ -60420,11 +60457,11 @@ }, /turf/simulated/floor/carpet, /area/crew_quarters/bar) -"bZM" = ( +"bZV" = ( /obj/structure/table/wood, /turf/simulated/floor/carpet, /area/crew_quarters/bar) -"bZN" = ( +"bZW" = ( /obj/structure/bed/chair/comfy/black{ dir = 8 }, @@ -60433,7 +60470,7 @@ }, /turf/simulated/floor/carpet, /area/crew_quarters/bar) -"bZO" = ( +"bZX" = ( /obj/machinery/vending/snack, /obj/structure/window/reinforced{ dir = 8 @@ -60445,7 +60482,7 @@ }, /turf/simulated/floor/wood, /area/crew_quarters/bar) -"bZP" = ( +"bZY" = ( /obj/machinery/computer/arcade, /obj/structure/window/reinforced{ icon_state = "rwindow"; @@ -60453,19 +60490,19 @@ }, /turf/simulated/floor/wood, /area/crew_quarters/bar) -"bZQ" = ( +"bZZ" = ( /obj/machinery/atm{ pixel_y = -32 }, /turf/simulated/floor/wood, /area/crew_quarters/bar) -"bZR" = ( +"caa" = ( /obj/structure/bed/chair/comfy/black{ dir = 4 }, /turf/simulated/floor/wood, /area/crew_quarters/bar) -"bZS" = ( +"cab" = ( /obj/structure/table/wood, /obj/item/weapon/flame/candle, /obj/machinery/newscaster{ @@ -60474,13 +60511,13 @@ }, /turf/simulated/floor/wood, /area/crew_quarters/bar) -"bZT" = ( +"cac" = ( /obj/structure/bed/chair/comfy/black{ dir = 8 }, /turf/simulated/floor/wood, /area/crew_quarters/bar) -"bZU" = ( +"cad" = ( /obj/structure/cable{ d1 = 1; d2 = 2; @@ -60488,13 +60525,13 @@ }, /turf/simulated/floor/plating, /area/maintenance/library) -"bZV" = ( +"cae" = ( /obj/structure/closet/crate, /obj/effect/decal/cleanable/cobweb, /obj/effect/floor_decal/industrial/outline/yellow, /turf/simulated/floor/tiled, /area/quartermaster/storage) -"bZW" = ( +"caf" = ( /obj/structure/closet/crate/medical, /obj/structure/cable/green{ d1 = 1; @@ -60504,9 +60541,7 @@ /obj/effect/floor_decal/industrial/outline/yellow, /turf/simulated/floor/tiled, /area/quartermaster/storage) -"bZX" = ( -/obj/effect/floor_decal/industrial/outline/yellow, -/obj/structure/table/standard, +"cag" = ( /obj/machinery/ringer{ department = "Cargo"; id = "cargo_ringer"; @@ -60514,57 +60549,81 @@ pixel_y = 30; req_access = list(31) }, -/turf/simulated/floor/tiled, -/area/quartermaster/storage) -"bZY" = ( -/obj/effect/decal/cleanable/dirt, /obj/effect/floor_decal/industrial/outline/yellow, -/obj/structure/table/standard, +/obj/effect/large_stock_marker, +/obj/effect/floor_decal/industrial/warning{ + icon_state = "warning"; + dir = 4 + }, /turf/simulated/floor/tiled, /area/quartermaster/storage) -"bZZ" = ( +"cah" = ( +/obj/machinery/camera/network/supply{ + c_tag = "Warehouse - North" + }, +/obj/structure/disposalpipe/tagger{ + dir = 1; + name = "Sorting Office"; + sort_tag = "Sorting Office" + }, +/turf/simulated/floor/plating, +/area/quartermaster/storage) +"cai" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/dirt, /obj/effect/floor_decal/industrial/outline/yellow, -/obj/structure/table/standard, +/obj/effect/large_stock_marker, +/obj/effect/floor_decal/industrial/warning{ + dir = 8 + }, /turf/simulated/floor/tiled, /area/quartermaster/storage) -"caa" = ( +"caj" = ( /obj/effect/floor_decal/industrial/outline/yellow, -/obj/structure/table/standard, +/obj/effect/large_stock_marker, /turf/simulated/floor/tiled, /area/quartermaster/storage) -"cab" = ( +"cak" = ( /obj/effect/floor_decal/corner/brown/full{ icon_state = "corner_white_full"; dir = 8 }, -/obj/effect/large_stock_marker, /obj/machinery/firealarm/west, +/obj/structure/table/standard, +/obj/item/weapon/packageWrap, +/obj/item/device/destTagger, +/obj/item/weapon/pen, +/obj/item/weapon/hand_labeler, +/obj/item/weapon/wrapping_paper, /turf/simulated/floor/tiled, -/area/quartermaster/storage) -"cac" = ( +/area/quartermaster/office) +"cal" = ( /obj/effect/floor_decal/corner/brown{ icon_state = "corner_white"; dir = 5 }, -/obj/machinery/status_display/supply_display{ - pixel_y = 32 +/obj/effect/floor_decal/industrial/loading{ + icon_state = "loadingarea"; + dir = 1 }, +/obj/effect/floor_decal/industrial/outline/yellow, /turf/simulated/floor/tiled, -/area/quartermaster/storage) -"cad" = ( -/obj/machinery/light/small{ - dir = 4 +/area/quartermaster/office) +"cam" = ( +/obj/effect/floor_decal/corner/brown/full{ + icon_state = "corner_white_full"; + dir = 1 }, /obj/effect/floor_decal/corner/brown/full{ icon_state = "corner_white_full"; dir = 1 }, -/obj/effect/large_stock_marker, +/obj/machinery/conveyor_switch/oneway{ + id = "cargo_toup" + }, /turf/simulated/floor/tiled, -/area/quartermaster/storage) -"cae" = ( +/area/quartermaster/office) +"can" = ( /obj/structure/disposalpipe/segment, /obj/machinery/alarm{ dir = 4; @@ -60572,41 +60631,62 @@ pixel_x = -22; pixel_y = 0 }, -/turf/simulated/floor/tiled, -/area/quartermaster/office) -"caf" = ( /obj/effect/floor_decal/corner/brown{ icon_state = "corner_white"; - dir = 6 + dir = 9 }, /turf/simulated/floor/tiled, /area/quartermaster/office) -"cag" = ( -/obj/machinery/navbeacon{ - codes_txt = "delivery;dir=8"; - freq = 1400; - location = "QM #1" +"cao" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" }, -/obj/machinery/bot/mulebot{ - beacon_freq = 1400; - home_destination = "QM #1"; - suffix = "#1" +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 8 }, -/obj/effect/floor_decal/industrial/outline/yellow, /turf/simulated/floor/tiled, /area/quartermaster/office) -"cah" = ( +"cap" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/quartermaster/office) +"caq" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/quartermaster/office) +"car" = ( +/obj/machinery/conveyor_switch/oneway{ + id = "cargo_crates" + }, +/turf/simulated/floor/tiled, +/area/quartermaster/office) +"cas" = ( +/obj/effect/floor_decal/industrial/loading, +/turf/simulated/floor/tiled, +/area/quartermaster/office) +"cat" = ( /obj/machinery/cryopod{ icon_state = "body_scanner_0"; dir = 4 }, /turf/simulated/floor/tiled/white, /area/hallway/primary/aft) -"cai" = ( +"cau" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/tiled/white, +/area/hallway/primary/aft) +"cav" = ( /obj/machinery/cryopod, /turf/simulated/floor/tiled/white, /area/hallway/primary/aft) -"caj" = ( +"caw" = ( /obj/structure/table/wood, /obj/machinery/light/small, /obj/machinery/camera/network/service{ @@ -60615,12 +60695,12 @@ }, /turf/simulated/floor/carpet, /area/crew_quarters/bar) -"cak" = ( +"cax" = ( /obj/structure/table/wood, /obj/machinery/light/small, /turf/simulated/floor/carpet, /area/crew_quarters/bar) -"cal" = ( +"cay" = ( /obj/structure/cable/green{ d2 = 4; icon_state = "0-4" @@ -60632,7 +60712,7 @@ }, /turf/simulated/floor/tiled, /area/quartermaster/storage) -"cam" = ( +"caz" = ( /obj/structure/cable/green{ d1 = 1; d2 = 4; @@ -60645,7 +60725,7 @@ }, /turf/simulated/floor/tiled, /area/quartermaster/storage) -"can" = ( +"caA" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 6 }, @@ -60654,9 +60734,12 @@ d2 = 8; icon_state = "4-8" }, +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 4 + }, /turf/simulated/floor/tiled, /area/quartermaster/storage) -"cao" = ( +"caB" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/cable/green{ d1 = 4; @@ -60669,9 +60752,13 @@ /obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ dir = 1 }, +/obj/structure/disposalpipe/segment, +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, /turf/simulated/floor/tiled, /area/quartermaster/storage) -"cap" = ( +"caC" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 }, @@ -60683,9 +60770,13 @@ /obj/machinery/atmospherics/pipe/manifold/hidden/supply{ dir = 1 }, +/obj/effect/floor_decal/industrial/warning/corner{ + icon_state = "warningcorner"; + dir = 1 + }, /turf/simulated/floor/tiled, /area/quartermaster/storage) -"caq" = ( +"caD" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, @@ -60699,7 +60790,7 @@ }, /turf/simulated/floor/tiled, /area/quartermaster/storage) -"car" = ( +"caE" = ( /obj/machinery/door/blast/shutters{ dir = 2; id = "qm_warehouse"; @@ -60719,45 +60810,9 @@ /obj/machinery/door/firedoor, /turf/simulated/floor/tiled, /area/quartermaster/storage) -"cas" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/effect/floor_decal/corner/brown{ - icon_state = "corner_white"; - dir = 9 - }, -/turf/simulated/floor/tiled, -/area/quartermaster/storage) -"cat" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/effect/floor_decal/corner/brown{ - icon_state = "corner_white"; - dir = 6 - }, -/turf/simulated/floor/tiled, -/area/quartermaster/storage) -"cau" = ( +"caF" = ( /obj/machinery/door/airlock/glass_mining{ - name = "Equipment storage"; + name = "Equipment Storage"; req_access = list(31) }, /obj/machinery/door/firedoor, @@ -60773,8 +60828,8 @@ icon_state = "4-8" }, /turf/simulated/floor/tiled, -/area/quartermaster/storage) -"cav" = ( +/area/quartermaster/office) +"caG" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, @@ -60794,9 +60849,10 @@ icon_state = "corner_white"; dir = 9 }, +/obj/effect/floor_decal/corner/brown, /turf/simulated/floor/tiled, /area/quartermaster/office) -"caw" = ( +"caH" = ( /obj/machinery/atmospherics/pipe/manifold/hidden/supply{ dir = 4 }, @@ -60817,33 +60873,63 @@ dir = 2; icon_state = "pipe-c" }, -/turf/simulated/floor/tiled, -/area/quartermaster/office) -"cax" = ( -/obj/machinery/navbeacon{ - codes_txt = "delivery;dir=8"; - freq = 1400; - location = "QM #2" - }, -/obj/machinery/bot/mulebot{ - home_destination = "QM #2"; - suffix = "#2" - }, -/obj/effect/floor_decal/industrial/outline/yellow, -/obj/machinery/camera/network/supply{ - c_tag = "Cargo - MULE Storage"; - dir = 8 +/obj/effect/floor_decal/corner/brown{ + dir = 10 }, /turf/simulated/floor/tiled, /area/quartermaster/office) -"cay" = ( +"caI" = ( +/obj/effect/floor_decal/corner/brown{ + dir = 10 + }, +/obj/machinery/light{ + icon_state = "tube1"; + dir = 2 + }, +/turf/simulated/floor/tiled, +/area/quartermaster/office) +"caJ" = ( +/obj/effect/floor_decal/corner/brown{ + dir = 10 + }, +/turf/simulated/floor/tiled, +/area/quartermaster/office) +"caK" = ( +/obj/machinery/cryopod{ + icon_state = "body_scanner_0"; + dir = 4 + }, +/obj/machinery/alarm{ + dir = 1; + pixel_y = -25 + }, +/turf/simulated/floor/tiled/white, +/area/hallway/primary/aft) +"caL" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/hallway/primary/aft) +"caM" = ( /obj/machinery/computer/cryopod{ pixel_x = -32; pixel_y = -32 }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + icon_state = "intact-supply"; + dir = 9 + }, /turf/simulated/floor/tiled/white, /area/hallway/primary/aft) -"caz" = ( +"caN" = ( +/obj/machinery/cryopod, +/obj/item/device/radio/intercom{ + pixel_y = -26 + }, +/turf/simulated/floor/tiled/white, +/area/hallway/primary/aft) +"caO" = ( /obj/machinery/door/firedoor, /obj/machinery/door/airlock/maintenance{ name = "Bar Maintenance"; @@ -60851,7 +60937,7 @@ }, /turf/simulated/floor/plating, /area/crew_quarters/bar) -"caA" = ( +"caP" = ( /obj/structure/cable{ d1 = 2; d2 = 4; @@ -60859,7 +60945,7 @@ }, /turf/simulated/floor/plating, /area/maintenance/library) -"caB" = ( +"caQ" = ( /obj/structure/cable{ d1 = 4; d2 = 8; @@ -60867,7 +60953,7 @@ }, /turf/simulated/floor/plating, /area/maintenance/library) -"caC" = ( +"caR" = ( /obj/structure/cable{ d1 = 1; d2 = 8; @@ -60875,10 +60961,10 @@ }, /turf/simulated/floor/plating, /area/maintenance/library) -"caD" = ( +"caS" = ( /turf/simulated/floor/tiled, /area/maintenance/library) -"caE" = ( +"caT" = ( /obj/structure/closet/crate/internals, /obj/effect/floor_decal/industrial/outline/yellow, /obj/machinery/light/small{ @@ -60886,27 +60972,28 @@ }, /turf/simulated/floor/tiled, /area/quartermaster/storage) -"caF" = ( +"caU" = ( /obj/structure/closet/crate, /obj/effect/floor_decal/industrial/outline/yellow, /turf/simulated/floor/tiled, /area/quartermaster/storage) -"caG" = ( +"caV" = ( /obj/machinery/atmospherics/unary/vent_scrubber/on{ dir = 1 }, /turf/simulated/floor/tiled, /area/quartermaster/storage) -"caH" = ( +"caW" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/disposalpipe/segment, /turf/simulated/floor/tiled, /area/quartermaster/storage) -"caI" = ( +"caX" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /turf/simulated/floor/tiled, /area/quartermaster/storage) -"caJ" = ( +"caY" = ( /obj/machinery/button/remote/blast_door{ id = "qm_warehouse"; name = "Warehouse Door Control"; @@ -60914,12 +61001,9 @@ pixel_y = 0; req_access = list(31) }, -/obj/machinery/light_switch{ - pixel_y = -28 - }, /turf/simulated/floor/tiled, /area/quartermaster/storage) -"caK" = ( +"caZ" = ( /obj/machinery/button/remote/blast_door{ id = "qm_warehouse"; name = "Warehouse Door Control"; @@ -60932,9 +61016,11 @@ dir = 1; pixel_y = -25 }, +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/effect/large_stock_marker, /turf/simulated/floor/tiled, -/area/quartermaster/storage) -"caL" = ( +/area/quartermaster/office) +"cba" = ( /obj/machinery/camera/network/supply{ c_tag = "Cargo - Warehouse Entrence"; dir = 1 @@ -60942,74 +61028,79 @@ /obj/effect/floor_decal/corner/brown{ dir = 10 }, +/obj/machinery/light/small, /turf/simulated/floor/tiled, /area/quartermaster/storage) -"caM" = ( +"cbb" = ( /obj/effect/floor_decal/corner/brown/full{ icon_state = "corner_white_full"; dir = 4 }, -/turf/simulated/floor/tiled, -/area/quartermaster/storage) -"caN" = ( -/obj/effect/floor_decal/corner/brown/full, -/obj/machinery/computer/guestpass{ - pixel_x = -32; - pixel_y = 0 - }, -/obj/machinery/alarm{ - dir = 1; - pixel_y = -25 +/obj/effect/floor_decal/corner/brown/full{ + icon_state = "corner_white_full"; + dir = 4 }, +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/effect/large_stock_marker, /turf/simulated/floor/tiled, /area/quartermaster/office) -"caO" = ( +"cbc" = ( +/obj/machinery/door/firedoor, /obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/disposalpipe/segment, +/obj/machinery/door/airlock/glass_mining{ + name = "Break Room"; + req_access = list(50) + }, /obj/structure/cable/green{ d1 = 1; d2 = 2; icon_state = "1-2" }, -/obj/structure/disposalpipe/segment, -/obj/effect/floor_decal/corner/brown{ - dir = 10 - }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/tiled, /area/quartermaster/office) -"caP" = ( -/obj/structure/noticeboard{ - pixel_y = -27 +"cbd" = ( +/obj/machinery/door/firedoor, +/obj/structure/grille, +/obj/structure/window/reinforced, +/obj/structure/window/reinforced{ + dir = 1 }, -/obj/effect/floor_decal/corner/brown{ - dir = 10 +/obj/structure/window/reinforced{ + dir = 8 }, -/turf/simulated/floor/tiled, +/turf/simulated/floor/plating, /area/quartermaster/office) -"caQ" = ( -/obj/effect/floor_decal/corner/brown/full{ - icon_state = "corner_white_full"; +"cbe" = ( +/obj/machinery/door/firedoor, +/obj/structure/grille, +/obj/structure/window/reinforced, +/obj/structure/window/reinforced{ + dir = 1 + }, +/turf/simulated/floor/plating, +/area/quartermaster/office) +"cbf" = ( +/obj/machinery/door/firedoor, +/obj/structure/grille, +/obj/structure/window/reinforced, +/obj/structure/window/reinforced{ dir = 4 }, -/turf/simulated/floor/tiled, -/area/quartermaster/office) -"caR" = ( -/obj/machinery/navbeacon{ - codes_txt = "delivery;dir=8"; - freq = 1400; - location = "QM #3" +/obj/structure/window/reinforced{ + dir = 1 }, -/obj/effect/floor_decal/industrial/outline/yellow, -/turf/simulated/floor/tiled, +/turf/simulated/floor/plating, /area/quartermaster/office) -"caS" = ( +"cbg" = ( /obj/machinery/door/airlock/maintenance{ req_access = list(12) }, /obj/machinery/door/firedoor, /turf/simulated/floor/plating, -/area/maintenance/library) -"caT" = ( +/area/hallway/primary/aft) +"cbh" = ( /obj/structure/cable{ d1 = 2; d2 = 4; @@ -61027,7 +61118,7 @@ }, /turf/simulated/floor/plating, /area/maintenance/library) -"caU" = ( +"cbi" = ( /obj/structure/cable{ d1 = 4; d2 = 8; @@ -61047,7 +61138,7 @@ }, /turf/simulated/floor/plating, /area/maintenance/library) -"caV" = ( +"cbj" = ( /obj/structure/cable{ d1 = 4; d2 = 8; @@ -61067,7 +61158,7 @@ }, /turf/simulated/floor/plating, /area/maintenance/library) -"caW" = ( +"cbk" = ( /obj/structure/cable{ d1 = 1; d2 = 8; @@ -61086,71 +61177,101 @@ /obj/random/junk, /turf/simulated/floor/plating, /area/maintenance/library) -"caX" = ( +"cbl" = ( /turf/simulated/floor/tiled, /area/quartermaster/storage) -"caY" = ( +"cbm" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 6 }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 6 }, +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, /turf/simulated/floor/tiled, /area/quartermaster/storage) -"caZ" = ( +"cbn" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 9 }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 9 }, -/turf/simulated/floor/tiled, -/area/quartermaster/storage) -"cba" = ( -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 1 +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" }, /turf/simulated/floor/tiled, /area/quartermaster/storage) -"cbb" = ( -/obj/machinery/door/firedoor, +"cbo" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/disposalpipe/segment, -/obj/machinery/door/airlock/glass_mining{ - name = "Break Room"; - req_access = list(50) +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/tiled, +/area/quartermaster/storage) +"cbp" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/light_switch{ + pixel_x = 32 }, +/obj/machinery/light/small{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/quartermaster/storage) +"cbq" = ( +/obj/machinery/light_switch{ + pixel_x = 0; + pixel_y = 24 + }, +/obj/effect/floor_decal/corner/red/diagonal, +/turf/simulated/floor/tiled, +/area/quartermaster/office) +"cbr" = ( +/obj/effect/floor_decal/corner/red/diagonal, /obj/structure/cable/green{ d1 = 1; d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/disposalpipe/segment, +/obj/effect/floor_decal/corner/brown{ + icon_state = "corner_white"; + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 + }, /turf/simulated/floor/tiled, /area/quartermaster/office) -"cbc" = ( -/obj/machinery/door/firedoor, -/obj/structure/grille, -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 1 +"cbs" = ( +/obj/effect/floor_decal/corner/red/diagonal, +/obj/structure/noticeboard{ + pixel_y = 27 }, -/obj/structure/window/reinforced{ +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/quartermaster/office) +"cbt" = ( +/obj/effect/floor_decal/corner/red/diagonal, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/quartermaster/office) +"cbu" = ( +/obj/effect/floor_decal/corner/red/diagonal, +/obj/machinery/atmospherics/unary/vent_pump/on{ dir = 8 }, -/turf/simulated/floor/plating, +/turf/simulated/floor/tiled, /area/quartermaster/office) -"cbd" = ( -/obj/machinery/door/firedoor, -/obj/structure/grille, -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 1 - }, -/turf/simulated/floor/plating, -/area/quartermaster/office) -"cbe" = ( +"cbv" = ( /obj/machinery/door/firedoor, /obj/structure/grille, /obj/structure/window/reinforced, @@ -61160,9 +61281,12 @@ /obj/structure/window/reinforced{ dir = 1 }, +/obj/structure/window/reinforced{ + dir = 8 + }, /turf/simulated/floor/plating, /area/quartermaster/office) -"cbf" = ( +"cbw" = ( /obj/structure/cable{ d1 = 2; d2 = 4; @@ -61176,7 +61300,7 @@ }, /turf/simulated/floor/plating, /area/maintenance/library) -"cbg" = ( +"cbx" = ( /obj/structure/cable{ d1 = 4; d2 = 8; @@ -61194,7 +61318,7 @@ }, /turf/simulated/floor/plating, /area/maintenance/library) -"cbh" = ( +"cby" = ( /obj/structure/cable{ d1 = 4; d2 = 8; @@ -61212,7 +61336,7 @@ }, /turf/simulated/floor/plating, /area/maintenance/library) -"cbi" = ( +"cbz" = ( /obj/structure/cable{ d1 = 4; d2 = 8; @@ -61230,7 +61354,7 @@ /obj/machinery/door/firedoor, /turf/simulated/floor/plating, /area/maintenance/library) -"cbj" = ( +"cbA" = ( /obj/structure/cable{ d1 = 4; d2 = 8; @@ -61252,14 +61376,14 @@ }, /turf/simulated/floor/plating, /area/maintenance/library) -"cbk" = ( +"cbB" = ( /obj/structure/disposalpipe/segment{ dir = 2; icon_state = "pipe-c" }, /turf/simulated/floor/plating, /area/maintenance/library) -"cbl" = ( +"cbC" = ( /obj/structure/cable{ d1 = 1; d2 = 2; @@ -61267,7 +61391,7 @@ }, /turf/simulated/floor/tiled, /area/maintenance/library) -"cbm" = ( +"cbD" = ( /obj/structure/boulder{ icon_state = "boulder2" }, @@ -61276,45 +61400,45 @@ }, /turf/simulated/floor/asteroid/ash/rocky, /area/mine/unexplored) -"cbn" = ( +"cbE" = ( /obj/structure/boulder, /obj/structure/boulder, /turf/simulated/floor/asteroid/ash/rocky, /area/mine/unexplored) -"cbo" = ( +"cbF" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/floor_decal/industrial/outline/yellow, /obj/structure/closet/crate/plastic, /turf/simulated/floor/tiled, /area/quartermaster/storage) -"cbp" = ( +"cbG" = ( /obj/effect/floor_decal/industrial/outline/yellow, /obj/structure/closet/crate, /turf/simulated/floor/tiled, /area/quartermaster/storage) -"cbq" = ( -/obj/structure/table/rack{ - dir = 8; - layer = 2.9 - }, +"cbH" = ( /obj/effect/decal/cleanable/dirt, -/obj/effect/floor_decal/industrial/outline/yellow, /turf/simulated/floor/tiled, /area/quartermaster/storage) -"cbr" = ( +"cbI" = ( +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/structure/table/standard, +/turf/simulated/floor/tiled, +/area/quartermaster/storage) +"cbJ" = ( /obj/structure/disposalpipe/segment{ dir = 4; icon_state = "pipe-c" }, /turf/simulated/floor/plating, /area/maintenance/cargo) -"cbs" = ( +"cbK" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, /turf/simulated/floor/plating, /area/maintenance/cargo) -"cbt" = ( +"cbL" = ( /obj/machinery/door/airlock/maintenance{ name = "Mining Maintenance"; req_access = list(48) @@ -61325,18 +61449,14 @@ }, /turf/simulated/floor/plating, /area/maintenance/cargo) -"cbu" = ( +"cbM" = ( /obj/effect/floor_decal/corner/red/diagonal, /obj/structure/disposalpipe/segment{ dir = 4 }, -/obj/machinery/light_switch{ - pixel_x = 0; - pixel_y = 24 - }, /turf/simulated/floor/tiled, /area/quartermaster/office) -"cbv" = ( +"cbN" = ( /obj/effect/floor_decal/corner/red/diagonal, /obj/structure/cable/green{ d1 = 1; @@ -61344,27 +61464,33 @@ icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/structure/disposalpipe/junction/yjunction{ icon_state = "pipe-y"; dir = 8 }, /turf/simulated/floor/tiled, /area/quartermaster/office) -"cbw" = ( -/obj/machinery/light{ - dir = 1 - }, +"cbO" = ( /turf/simulated/floor/carpet, /area/quartermaster/office) -"cbx" = ( +"cbP" = ( /obj/structure/bed/chair, /obj/effect/landmark/start{ name = "Cargo Technician" }, /turf/simulated/floor/carpet, /area/quartermaster/office) -"cby" = ( +"cbQ" = ( +/obj/structure/bed/chair, +/obj/effect/landmark/start{ + name = "Cargo Technician" + }, +/obj/machinery/light/small{ + dir = 4 + }, +/turf/simulated/floor/carpet, +/area/quartermaster/office) +"cbR" = ( /obj/random/junk, /obj/structure/disposalpipe/segment{ dir = 4 @@ -61372,7 +61498,7 @@ /obj/machinery/atmospherics/pipe/simple/hidden/universal, /turf/simulated/floor/plating, /area/maintenance/library) -"cbz" = ( +"cbS" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, @@ -61385,13 +61511,13 @@ /obj/machinery/atmospherics/pipe/simple/hidden/universal, /turf/simulated/floor/plating, /area/maintenance/library) -"cbA" = ( +"cbT" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, /turf/simulated/wall, /area/maintenance/disposal) -"cbB" = ( +"cbU" = ( /obj/machinery/door/airlock/maintenance{ name = "Trash Compactor"; req_access = list(12) @@ -61409,30 +61535,30 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/plating, /area/maintenance/disposal) -"cbC" = ( +"cbV" = ( /obj/structure/disposalpipe/segment{ dir = 8; icon_state = "pipe-c" }, /turf/simulated/wall/r_wall, /area/maintenance/disposal) -"cbD" = ( +"cbW" = ( /turf/simulated/wall/r_wall, /area/maintenance/disposal) -"cbE" = ( +"cbX" = ( /obj/structure/disposalpipe/segment, /turf/simulated/floor/plating, /area/maintenance/library) -"cbF" = ( +"cbY" = ( /obj/structure/closet, /obj/random/loot, /turf/simulated/floor/tiled, /area/maintenance/library) -"cbG" = ( +"cbZ" = ( /obj/structure/closet, /turf/simulated/floor/plating, /area/maintenance/library) -"cbH" = ( +"cca" = ( /obj/structure/boulder{ icon_state = "boulder4" }, @@ -61441,7 +61567,7 @@ }, /turf/simulated/floor/asteroid/ash/rocky, /area/mine/unexplored) -"cbI" = ( +"ccb" = ( /obj/structure/cable{ d1 = 1; d2 = 2; @@ -61454,20 +61580,32 @@ /obj/random/junk, /turf/simulated/floor/plating, /area/maintenance/cargo) -"cbJ" = ( +"ccc" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/dirt, /turf/simulated/floor/tiled, /area/quartermaster/storage) -"cbK" = ( +"ccd" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/disposalpipe/segment, /obj/effect/decal/cleanable/dirt, /turf/simulated/floor/tiled, /area/quartermaster/storage) -"cbL" = ( +"cce" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/hologram/holopad, +/turf/simulated/floor/tiled, +/area/quartermaster/storage) +"ccf" = ( +/obj/structure/bed/chair/office/dark, +/turf/simulated/floor/tiled, +/area/quartermaster/storage) +"ccg" = ( /obj/structure/disposalpipe/segment, /turf/simulated/floor/plating, /area/maintenance/cargo) -"cbM" = ( +"cch" = ( /obj/machinery/disposal, /obj/effect/floor_decal/corner/red/diagonal, /obj/structure/disposalpipe/trunk{ @@ -61476,7 +61614,7 @@ /obj/structure/window/reinforced, /turf/simulated/floor/tiled, /area/quartermaster/office) -"cbN" = ( +"cci" = ( /obj/effect/floor_decal/corner/red/diagonal, /obj/structure/cable/green{ d1 = 1; @@ -61488,40 +61626,18 @@ icon_state = "pipe-c" }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, /turf/simulated/floor/tiled, /area/quartermaster/office) -"cbO" = ( -/obj/effect/landmark/start{ - name = "Quartermaster" - }, -/turf/simulated/floor/carpet, -/area/quartermaster/office) -"cbP" = ( +"ccj" = ( /obj/structure/table/standard, /obj/item/weapon/storage/box/donkpockets, /turf/simulated/floor/carpet, /area/quartermaster/office) -"cbQ" = ( +"cck" = ( /obj/structure/table/standard, /turf/simulated/floor/carpet, /area/quartermaster/office) -"cbR" = ( -/obj/machinery/door/firedoor, -/obj/structure/grille, -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/turf/simulated/floor/plating, -/area/quartermaster/office) -"cbS" = ( +"ccl" = ( /obj/structure/cable{ d1 = 1; d2 = 2; @@ -61536,7 +61652,7 @@ }, /turf/simulated/floor/plating, /area/maintenance/library) -"cbT" = ( +"ccm" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, @@ -61546,7 +61662,7 @@ }, /turf/simulated/floor/plating, /area/maintenance/library) -"cbU" = ( +"ccn" = ( /obj/structure/disposalpipe/segment{ dir = 8; icon_state = "pipe-c" @@ -61557,7 +61673,7 @@ }, /turf/simulated/floor/plating, /area/maintenance/library) -"cbV" = ( +"cco" = ( /obj/effect/decal/warning_stripes, /obj/structure/ladder/up{ pixel_y = 16 @@ -61566,10 +61682,10 @@ roof_type = null }, /area/maintenance/library) -"cbW" = ( +"ccp" = ( /turf/simulated/wall, /area/maintenance/disposal) -"cbX" = ( +"ccq" = ( /obj/effect/floor_decal/industrial/warning{ icon_state = "warning"; dir = 9 @@ -61577,7 +61693,7 @@ /obj/machinery/firealarm/west, /turf/simulated/floor/tiled, /area/maintenance/disposal) -"cbY" = ( +"ccr" = ( /obj/structure/cable{ d1 = 1; d2 = 2; @@ -61590,14 +61706,14 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/tiled, /area/maintenance/disposal) -"cbZ" = ( +"ccs" = ( /obj/machinery/light/small/emergency{ dir = 1 }, /obj/structure/ladder, /turf/simulated/open, /area/maintenance/disposal) -"cca" = ( +"cct" = ( /obj/machinery/alarm{ pixel_y = 22 }, @@ -61607,37 +61723,32 @@ }, /turf/simulated/floor/tiled, /area/maintenance/disposal) -"ccb" = ( +"ccu" = ( /obj/effect/floor_decal/industrial/warning{ icon_state = "warning"; dir = 5 }, /turf/simulated/floor/tiled, /area/maintenance/disposal) -"ccc" = ( +"ccv" = ( /obj/structure/lattice/catwalk, /turf/simulated/open, /area/maintenance/disposal) -"ccd" = ( +"ccw" = ( /obj/structure/lattice/catwalk, /obj/structure/sign/drop{ pixel_y = 32 }, /turf/simulated/open, /area/maintenance/disposal) -"cce" = ( +"ccx" = ( /turf/simulated/open, /area/maintenance/disposal) -"ccf" = ( +"ccy" = ( /obj/structure/disposalpipe/segment, /turf/simulated/wall/r_wall, /area/maintenance/disposal) -"ccg" = ( -/obj/effect/decal/cleanable/blood, -/obj/effect/decal/cleanable/blood, -/turf/simulated/floor/asteroid/ash/rocky, -/area/mine/unexplored) -"cch" = ( +"ccz" = ( /obj/effect/floor_decal/industrial/outline/yellow, /obj/structure/closet/crate, /obj/machinery/light/small{ @@ -61645,24 +61756,28 @@ }, /turf/simulated/floor/tiled, /area/quartermaster/storage) -"cci" = ( +"ccA" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/floor_decal/industrial/outline/yellow, /obj/structure/closet/crate/freezer, /turf/simulated/floor/tiled, /area/quartermaster/storage) -"ccj" = ( -/obj/structure/table/rack{ - dir = 8; - layer = 2.9 +"ccB" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 1 }, -/obj/effect/floor_decal/industrial/outline/yellow, +/obj/effect/decal/cleanable/dirt, /turf/simulated/floor/tiled, /area/quartermaster/storage) -"cck" = ( -/turf/unsimulated/chasm_mask, -/area/outpost/mining_main/refinery) -"ccl" = ( +"ccC" = ( +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/structure/table/standard, +/obj/machinery/light/small{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/quartermaster/storage) +"ccD" = ( /obj/structure/weightlifter, /obj/effect/floor_decal/corner/brown{ icon_state = "corner_white"; @@ -61675,13 +61790,14 @@ /obj/effect/landmark/start{ name = "Shaft Miner" }, +/obj/machinery/firealarm/west, /turf/simulated/floor/tiled, /area/quartermaster/office) -"ccm" = ( +"ccE" = ( /obj/effect/floor_decal/corner/red/diagonal, /turf/simulated/floor/tiled, /area/quartermaster/office) -"ccn" = ( +"ccF" = ( /obj/effect/floor_decal/corner/red/diagonal, /obj/structure/cable/green{ d1 = 1; @@ -61689,28 +61805,29 @@ icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, /turf/simulated/floor/tiled, /area/quartermaster/office) -"cco" = ( -/obj/machinery/hologram/holopad, -/turf/simulated/floor/carpet, -/area/quartermaster/office) -"ccp" = ( +"ccG" = ( /obj/structure/table/standard, /obj/item/weapon/deck/cards, /turf/simulated/floor/carpet, /area/quartermaster/office) -"ccq" = ( +"ccH" = ( /obj/structure/table/standard, -/obj/item/trash/tray, /obj/machinery/camera/network/supply{ c_tag = "Cargo - Break Room"; dir = 8 }, +/obj/machinery/ringer{ + department = "Cargo"; + id = "cargo_ringer"; + pixel_x = 30; + pixel_y = 0; + req_access = list(31) + }, /turf/simulated/floor/carpet, /area/quartermaster/office) -"ccr" = ( +"ccI" = ( /obj/structure/cable{ d1 = 1; d2 = 2; @@ -61730,7 +61847,7 @@ /obj/machinery/atmospherics/pipe/simple/hidden/supply, /turf/simulated/floor/plating, /area/maintenance/library) -"ccs" = ( +"ccJ" = ( /obj/structure/cable{ d1 = 4; d2 = 8; @@ -61745,7 +61862,7 @@ roof_type = null }, /area/maintenance/library) -"cct" = ( +"ccK" = ( /obj/structure/cable{ d1 = 2; d2 = 8; @@ -61754,7 +61871,7 @@ /obj/machinery/atmospherics/pipe/simple/hidden/universal, /turf/simulated/floor/plating, /area/maintenance/library) -"ccu" = ( +"ccL" = ( /obj/structure/cable{ icon_state = "0-4"; d2 = 4 @@ -61774,7 +61891,7 @@ }, /turf/simulated/floor/tiled, /area/maintenance/disposal) -"ccv" = ( +"ccM" = ( /obj/structure/cable{ d1 = 1; d2 = 8; @@ -61789,7 +61906,7 @@ }, /turf/simulated/floor/tiled, /area/maintenance/disposal) -"ccw" = ( +"ccN" = ( /obj/effect/floor_decal/industrial/warning{ dir = 1 }, @@ -61798,7 +61915,7 @@ }, /turf/simulated/floor/tiled, /area/maintenance/disposal) -"ccx" = ( +"ccO" = ( /obj/effect/floor_decal/industrial/warning/corner{ icon_state = "warningcorner"; dir = 1 @@ -61808,7 +61925,7 @@ }, /turf/simulated/floor/tiled, /area/maintenance/disposal) -"ccy" = ( +"ccP" = ( /obj/effect/floor_decal/industrial/warning{ dir = 4 }, @@ -61827,7 +61944,7 @@ }, /turf/simulated/floor/tiled, /area/maintenance/disposal) -"ccz" = ( +"ccQ" = ( /obj/structure/disposalpipe/trunk{ dir = 4 }, @@ -61836,7 +61953,7 @@ }, /turf/simulated/floor/plating, /area/maintenance/disposal) -"ccA" = ( +"ccR" = ( /obj/structure/cable{ d1 = 1; d2 = 4; @@ -61854,7 +61971,7 @@ }, /turf/simulated/floor/plating, /area/maintenance/library) -"ccB" = ( +"ccS" = ( /obj/structure/cable{ d1 = 4; d2 = 8; @@ -61876,7 +61993,7 @@ }, /turf/simulated/floor/plating, /area/maintenance/library) -"ccC" = ( +"ccT" = ( /obj/structure/cable{ d1 = 4; d2 = 8; @@ -61894,12 +62011,7 @@ /obj/random/junk, /turf/simulated/floor/plating, /area/maintenance/library) -"ccD" = ( -/obj/effect/decal/cleanable/vomit, -/obj/effect/decal/cleanable/vomit, -/turf/simulated/floor/asteroid/ash/rocky, -/area/mine/unexplored) -"ccE" = ( +"ccU" = ( /obj/structure/cable{ d1 = 1; d2 = 2; @@ -61912,76 +62024,49 @@ /obj/machinery/door/firedoor, /turf/simulated/floor/plating, /area/maintenance/cargo) -"ccF" = ( -/obj/effect/floor_decal/industrial/outline/yellow, -/obj/effect/large_stock_marker, +"ccV" = ( +/obj/structure/bed/chair/office/dark{ + dir = 8 + }, /turf/simulated/floor/tiled, /area/quartermaster/storage) -"ccG" = ( +"ccW" = ( /obj/effect/floor_decal/corner/brown/full{ icon_state = "corner_white_full"; dir = 8 }, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 4 +/obj/structure/sink{ + icon_state = "sink"; + dir = 8; + pixel_x = -12; + pixel_y = 2 }, -/obj/machinery/firealarm/west, -/turf/simulated/floor/tiled, -/area/quartermaster/office) -"ccH" = ( -/obj/effect/floor_decal/corner/red/diagonal, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 +/obj/machinery/light/small{ + dir = 8 }, /turf/simulated/floor/tiled, /area/quartermaster/office) -"ccI" = ( +"ccX" = ( /obj/effect/floor_decal/corner/red/diagonal, /obj/structure/cable/green{ d1 = 1; d2 = 2; icon_state = "1-2" }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - icon_state = "intact-scrubbers"; - dir = 9 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 5 - }, +/obj/machinery/hologram/holopad, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/tiled, /area/quartermaster/office) -"ccJ" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/carpet, -/area/quartermaster/office) -"ccK" = ( +"ccY" = ( /obj/structure/bed/chair{ dir = 1 }, /obj/effect/landmark/start{ name = "Shaft Miner" }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, /turf/simulated/floor/carpet, /area/quartermaster/office) -"ccL" = ( -/obj/structure/bed/chair{ - dir = 1 - }, -/obj/effect/landmark/start{ - name = "Shaft Miner" - }, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 8 - }, -/turf/simulated/floor/carpet, -/area/quartermaster/office) -"ccM" = ( +"ccZ" = ( /obj/structure/cable{ d1 = 1; d2 = 2; @@ -61997,7 +62082,7 @@ }, /turf/simulated/floor/plating, /area/maintenance/library) -"ccN" = ( +"cda" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, @@ -62007,7 +62092,7 @@ }, /turf/simulated/floor/plating, /area/maintenance/library) -"ccO" = ( +"cdb" = ( /obj/structure/cable{ d1 = 1; d2 = 4; @@ -62024,7 +62109,7 @@ }, /turf/simulated/floor/plating, /area/maintenance/library) -"ccP" = ( +"cdc" = ( /obj/structure/disposalpipe/up{ icon_state = "pipe-u"; dir = 8 @@ -62048,7 +62133,7 @@ roof_type = null }, /area/maintenance/library) -"ccQ" = ( +"cdd" = ( /obj/machinery/disposal{ name = "External Disposals" }, @@ -62062,7 +62147,7 @@ }, /turf/simulated/floor/tiled, /area/maintenance/disposal) -"ccR" = ( +"cde" = ( /obj/effect/floor_decal/industrial/warning, /obj/structure/closet/crate/trashcart, /obj/item/weapon/storage/bag/trash, @@ -62071,113 +62156,108 @@ }, /turf/simulated/floor/tiled, /area/maintenance/disposal) -"ccS" = ( +"cdf" = ( /obj/effect/floor_decal/industrial/warning, /obj/machinery/atmospherics/unary/vent_scrubber/on{ dir = 1 }, /turf/simulated/floor/tiled, /area/maintenance/disposal) -"ccT" = ( +"cdg" = ( /obj/effect/floor_decal/industrial/warning, /turf/simulated/floor/tiled, /area/maintenance/disposal) -"ccU" = ( +"cdh" = ( /obj/effect/floor_decal/industrial/warning{ dir = 6 }, /turf/simulated/floor/tiled, /area/maintenance/disposal) -"ccV" = ( +"cdi" = ( /obj/machinery/light/small/emergency, /obj/structure/lattice/catwalk, /turf/simulated/open, /area/maintenance/disposal) -"ccW" = ( +"cdj" = ( /obj/machinery/light/small/emergency, /obj/structure/closet/crate, /turf/simulated/floor/plating, /area/maintenance/library) -"ccX" = ( -/obj/effect/decal/cleanable/blood/drip, -/obj/effect/decal/cleanable/blood/drip, -/turf/simulated/floor/asteroid/ash/rocky, -/area/mine/unexplored) -"ccY" = ( -/obj/effect/decal/cleanable/blood/tracks/footprints, -/obj/effect/decal/cleanable/blood/tracks/footprints, -/turf/simulated/floor/asteroid/ash/rocky, -/area/mine/unexplored) -"ccZ" = ( +"cdk" = ( /obj/structure/table/rack, /obj/random/loot, /turf/simulated/floor/plating, /area/maintenance/cargo) -"cda" = ( +"cdl" = ( /obj/machinery/alarm{ dir = 1; pixel_y = -25 }, +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/structure/closet/crate, /turf/simulated/floor/tiled, /area/quartermaster/storage) -"cdb" = ( +"cdm" = ( /obj/effect/decal/cleanable/dirt, /obj/machinery/camera/network/supply{ c_tag = "Cargo - Main Warehouse"; dir = 1 }, +/obj/effect/decal/cleanable/dirt, /turf/simulated/floor/tiled, /area/quartermaster/storage) -"cdc" = ( -/obj/machinery/light{ - icon_state = "tube1"; - dir = 8 - }, +"cdn" = ( /obj/effect/floor_decal/corner/brown/full, /obj/machinery/status_display/supply_display{ pixel_x = -32; pixel_y = 0 }, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 4 + }, /turf/simulated/floor/tiled, /area/quartermaster/office) -"cdd" = ( +"cdo" = ( +/obj/effect/floor_decal/corner/red/diagonal, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/quartermaster/office) +"cdp" = ( /obj/effect/floor_decal/corner/red/diagonal, /obj/structure/cable/green{ d1 = 1; d2 = 2; icon_state = "1-2" }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + icon_state = "intact-scrubbers"; + dir = 9 + }, /turf/simulated/floor/tiled, /area/quartermaster/office) -"cde" = ( -/obj/machinery/light{ - dir = 4; - status = 0 - }, +"cdq" = ( /obj/effect/floor_decal/corner/red/diagonal, -/obj/machinery/ringer{ - department = "Cargo"; - id = "cargo_ringer"; - pixel_x = 30; - pixel_y = 0; - req_access = list(31) +/obj/machinery/light/small{ + dir = 4 }, /turf/simulated/floor/tiled, /area/quartermaster/office) -"cdf" = ( +"cdr" = ( /obj/structure/disposalpipe/segment{ dir = 1; icon_state = "pipe-c" }, /turf/simulated/wall, /area/maintenance/disposal) -"cdg" = ( +"cds" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, /turf/simulated/wall/r_wall, /area/maintenance/disposal) -"cdh" = ( +"cdt" = ( /obj/structure/disposaloutlet, /obj/structure/disposalpipe/trunk{ dir = 8 @@ -62186,7 +62266,7 @@ icon_state = "asteroidfloor" }, /area/maintenance/disposal) -"cdi" = ( +"cdu" = ( /obj/machinery/light/small/emergency{ dir = 8 }, @@ -62194,7 +62274,7 @@ /obj/random/loot, /turf/simulated/floor/plating, /area/maintenance/cargo) -"cdj" = ( +"cdv" = ( /obj/machinery/door/airlock/maintenance{ name = "Cargo Bay Warehouse Maintenance"; req_access = list(31) @@ -62202,9 +62282,10 @@ /obj/machinery/door/firedoor, /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/disposalpipe/segment, /turf/simulated/floor/plating, /area/quartermaster/storage) -"cdk" = ( +"cdw" = ( /obj/structure/cable{ d2 = 2; icon_state = "0-2"; @@ -62219,7 +62300,7 @@ /obj/machinery/door/firedoor, /turf/simulated/floor/plating, /area/maintenance/cargo) -"cdl" = ( +"cdx" = ( /obj/structure/punching_bag, /obj/effect/floor_decal/corner/brown{ icon_state = "corner_white"; @@ -62231,7 +62312,7 @@ }, /turf/simulated/floor/tiled, /area/quartermaster/office) -"cdm" = ( +"cdy" = ( /obj/effect/floor_decal/corner/red/diagonal, /obj/machinery/alarm{ dir = 1; @@ -62239,7 +62320,7 @@ }, /turf/simulated/floor/tiled, /area/quartermaster/office) -"cdn" = ( +"cdz" = ( /obj/effect/floor_decal/corner/red/diagonal, /obj/structure/cable/green{ d1 = 1; @@ -62251,7 +62332,7 @@ }, /turf/simulated/floor/tiled, /area/quartermaster/office) -"cdo" = ( +"cdA" = ( /obj/effect/floor_decal/corner/red/diagonal, /obj/machinery/newscaster{ pixel_x = 0; @@ -62259,17 +62340,17 @@ }, /turf/simulated/floor/tiled, /area/quartermaster/office) -"cdp" = ( +"cdB" = ( /obj/machinery/vending/cigarette, /obj/effect/floor_decal/corner/red/diagonal, /turf/simulated/floor/tiled, /area/quartermaster/office) -"cdq" = ( +"cdC" = ( /obj/machinery/vending/snack, /obj/effect/floor_decal/corner/red/diagonal, /turf/simulated/floor/tiled, /area/quartermaster/office) -"cdr" = ( +"cdD" = ( /obj/structure/table/standard, /obj/machinery/microwave{ pixel_y = 6 @@ -62277,27 +62358,27 @@ /obj/effect/floor_decal/corner/red/diagonal, /turf/simulated/floor/tiled, /area/quartermaster/office) -"cds" = ( +"cdE" = ( /obj/machinery/door/window/westright, /turf/simulated/floor/tiled/airless{ icon_state = "asteroidfloor" }, /area/maintenance/disposal) -"cdt" = ( +"cdF" = ( /turf/simulated/floor/tiled/airless{ icon_state = "asteroidfloor" }, /area/maintenance/disposal) -"cdu" = ( +"cdG" = ( /obj/machinery/door/window, /turf/simulated/floor/tiled/airless{ icon_state = "asteroidfloor" }, /area/maintenance/disposal) -"cdv" = ( +"cdH" = ( /turf/simulated/floor/plating, /area/maintenance/cargo) -"cdw" = ( +"cdI" = ( /obj/structure/cable{ d1 = 1; d2 = 4; @@ -62315,7 +62396,7 @@ }, /turf/simulated/floor/plating, /area/maintenance/cargo) -"cdx" = ( +"cdJ" = ( /obj/structure/cable{ d1 = 4; d2 = 8; @@ -62335,40 +62416,49 @@ }, /turf/simulated/floor/plating, /area/maintenance/cargo) -"cdy" = ( +"cdK" = ( /obj/structure/cable{ d1 = 4; d2 = 8; icon_state = "4-8" }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, /obj/machinery/atmospherics/pipe/manifold/hidden/supply, /obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, +/obj/structure/disposalpipe/junction{ + icon_state = "pipe-j2"; + dir = 4 + }, /turf/simulated/floor/plating, /area/maintenance/cargo) -"cdz" = ( +"cdL" = ( +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, /obj/structure/cable{ d1 = 2; d2 = 8; icon_state = "2-8" }, -/obj/structure/cable{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 10 - }, -/obj/structure/disposalpipe/junction, /turf/simulated/floor/plating, /area/maintenance/cargo) -"cdA" = ( +"cdM" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2"; + pixel_y = 0 + }, +/turf/simulated/floor/plating, +/area/maintenance/cargo) +"cdN" = ( /obj/structure/cable/green{ d1 = 1; d2 = 2; @@ -62381,12 +62471,12 @@ /obj/machinery/door/firedoor, /turf/simulated/floor/tiled, /area/quartermaster/office) -"cdB" = ( +"cdO" = ( /obj/random/junk, /obj/random/junk, /turf/simulated/floor/asteroid/ash/rocky, /area/mine/unexplored) -"cdC" = ( +"cdP" = ( /obj/structure/window/reinforced{ dir = 8 }, @@ -62395,13 +62485,13 @@ icon_state = "asteroidfloor" }, /area/maintenance/disposal) -"cdD" = ( +"cdQ" = ( /obj/machinery/door/window/southright, /turf/simulated/floor/tiled/airless{ icon_state = "asteroidfloor" }, /area/maintenance/disposal) -"cdE" = ( +"cdR" = ( /obj/structure/window/reinforced, /obj/structure/window/reinforced{ dir = 4 @@ -62410,7 +62500,7 @@ icon_state = "asteroidfloor" }, /area/maintenance/disposal) -"cdF" = ( +"cdS" = ( /obj/random/junk, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 5 @@ -62429,7 +62519,7 @@ }, /turf/simulated/floor/plating, /area/maintenance/cargo) -"cdG" = ( +"cdT" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 }, @@ -62446,7 +62536,31 @@ }, /turf/simulated/floor/plating, /area/maintenance/cargo) -"cdH" = ( +"cdU" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/structure/disposalpipe/sortjunction/flipped{ + dir = 4; + name = "Cargo"; + sortType = "Cargo" + }, +/turf/simulated/floor/plating, +/area/maintenance/cargo) +"cdV" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, @@ -62467,7 +62581,7 @@ }, /turf/simulated/floor/plating, /area/maintenance/cargo) -"cdI" = ( +"cdW" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, @@ -62491,7 +62605,7 @@ }, /turf/simulated/floor/tiled, /area/quartermaster/office) -"cdJ" = ( +"cdX" = ( /obj/structure/cable{ d1 = 4; d2 = 8; @@ -62515,13 +62629,15 @@ /obj/machinery/atmospherics/pipe/manifold/hidden/supply{ dir = 1 }, -/obj/structure/disposalpipe/junction{ - icon_state = "pipe-j1"; - dir = 4 +/obj/structure/disposalpipe/sortjunction{ + dir = 4; + icon_state = "pipe-j1s"; + name = "Mining"; + sortType = "Mining" }, /turf/simulated/floor/tiled, /area/quartermaster/office) -"cdK" = ( +"cdY" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, @@ -62540,13 +62656,9 @@ /obj/structure/disposalpipe/segment{ dir = 4 }, -/obj/machinery/alarm{ - dir = 1; - pixel_y = -25 - }, /turf/simulated/floor/tiled, /area/quartermaster/office) -"cdL" = ( +"cdZ" = ( /obj/machinery/door/airlock/maintenance{ req_one_access = list(12,54) }, @@ -62567,7 +62679,7 @@ /obj/machinery/door/firedoor, /turf/simulated/floor/plating, /area/maintenance/library) -"cdM" = ( +"cea" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, @@ -62584,7 +62696,7 @@ }, /turf/simulated/floor/plating, /area/maintenance/library) -"cdN" = ( +"ceb" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ icon_state = "intact-supply"; dir = 9 @@ -62604,13 +62716,64 @@ }, /turf/simulated/floor/plating, /area/maintenance/library) -"cdO" = ( +"cec" = ( +/obj/effect/floor_decal/industrial/warning/dust{ + dir = 4; + icon_state = "warning_dust" + }, +/turf/simulated/floor/asteroid/ash/rocky, +/area/mine/unexplored) +"ced" = ( +/obj/structure/track{ + icon_state = "track12" + }, +/turf/simulated/floor/asteroid/ash/rocky, +/area/mine/unexplored) +"cee" = ( +/obj/structure/track{ + icon_state = "track6" + }, +/obj/machinery/light/small{ + dir = 1 + }, +/turf/simulated/floor/airless{ + icon_state = "asteroidplating" + }, +/area/outpost/mining_main/eva) +"cef" = ( +/obj/structure/track{ + icon_state = "track12" + }, +/turf/simulated/floor/airless{ + icon_state = "asteroidplating" + }, +/area/outpost/mining_main/eva) +"ceg" = ( +/obj/structure/track{ + icon_state = "track12" + }, +/obj/machinery/light/small{ + dir = 1 + }, +/turf/simulated/floor/airless{ + icon_state = "asteroidplating" + }, +/area/outpost/mining_main/eva) +"ceh" = ( +/obj/structure/track{ + icon_state = "track10" + }, +/turf/simulated/floor/airless{ + icon_state = "asteroidplating" + }, +/area/outpost/mining_main/eva) +"cei" = ( /turf/simulated/wall, /area/outpost/mining_main/eva) -"cdP" = ( +"cej" = ( /turf/simulated/wall, /area/outpost/mining_main/refinery) -"cdQ" = ( +"cek" = ( /obj/structure/cable/green{ d1 = 1; d2 = 2; @@ -62626,37 +62789,76 @@ /obj/machinery/atmospherics/pipe/simple/hidden/supply, /turf/simulated/floor/tiled, /area/outpost/mining_main/refinery) -"cdR" = ( -/obj/structure/window/reinforced{ +"cel" = ( +/obj/machinery/door/airlock/maintenance_hatch{ + name = "Mining Processing Hatch"; + req_access = list(48) + }, +/obj/machinery/door/firedoor, +/turf/simulated/floor/plating, +/area/outpost/mining_main/refinery) +"cem" = ( +/obj/structure/track{ + icon_state = "track3" + }, +/turf/simulated/floor/airless{ + icon_state = "asteroidplating" + }, +/area/outpost/mining_main/eva) +"cen" = ( +/obj/structure/track{ + icon_state = "track13" + }, +/turf/simulated/floor/airless{ + icon_state = "asteroidplating" + }, +/area/outpost/mining_main/eva) +"ceo" = ( +/obj/machinery/light/small{ dir = 8 }, +/turf/simulated/floor/tiled/airless{ + icon_state = "asteroidfloor" + }, +/area/outpost/mining_main/eva) +"cep" = ( +/obj/vehicle/train/cargo/engine/mining{ + icon_state = "mining_engine"; + dir = 2 + }, +/obj/structure/track{ + icon_state = "track12" + }, +/turf/simulated/floor/airless{ + icon_state = "asteroidplating" + }, +/area/outpost/mining_main/eva) +"ceq" = ( /obj/structure/closet/secure_closet/miner, -/obj/item/weapon/key/minecarts, -/obj/effect/floor_decal/corner/brown/full{ - icon_state = "corner_white_full"; - dir = 8 +/obj/effect/floor_decal/corner/brown{ + icon_state = "corner_white"; + dir = 9 + }, +/obj/effect/floor_decal/corner/brown{ + icon_state = "corner_white"; + dir = 4 }, -/obj/item/device/gps/mining, /turf/simulated/floor/tiled, /area/outpost/mining_main/eva) -"cdS" = ( +"cer" = ( +/obj/structure/cable/green{ + d2 = 2; + icon_state = "0-2" + }, /obj/machinery/power/apc{ dir = 1; name = "north bump"; pixel_x = 0; pixel_y = 24 }, -/obj/structure/cable/green{ - d2 = 2; - icon_state = "0-2" - }, -/obj/effect/floor_decal/corner/brown{ - icon_state = "corner_white"; - dir = 5 - }, /turf/simulated/floor/tiled, /area/outpost/mining_main/eva) -"cdT" = ( +"ces" = ( /obj/machinery/atmospherics/pipe/simple/hidden{ dir = 6 }, @@ -62664,28 +62866,31 @@ icon_state = "corner_white"; dir = 5 }, -/obj/machinery/light_switch{ - pixel_x = 0; - pixel_y = 24 +/obj/machinery/camera/network/mining{ + c_tag = "Mining - Locker Room" + }, +/obj/structure/extinguisher_cabinet{ + pixel_y = 32 }, /turf/simulated/floor/tiled, /area/outpost/mining_main/eva) -"cdU" = ( +"cet" = ( /obj/machinery/portable_atmospherics/canister/air/airlock, /obj/machinery/atmospherics/portables_connector{ dir = 8 }, -/obj/machinery/light{ - dir = 4; - status = 0 - }, /obj/effect/floor_decal/corner/brown/full{ icon_state = "corner_white_full"; dir = 1 }, +/obj/machinery/alarm{ + dir = 8; + icon_state = "alarm0"; + pixel_x = 24 + }, /turf/simulated/floor/tiled, /area/outpost/mining_main/eva) -"cdV" = ( +"ceu" = ( /obj/effect/floor_decal/corner/brown/full{ icon_state = "corner_white_full"; dir = 8 @@ -62708,13 +62913,8 @@ }, /turf/simulated/floor/tiled, /area/outpost/mining_main/refinery) -"cdW" = ( +"cev" = ( /obj/structure/disposalpipe/segment, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, /obj/effect/floor_decal/corner/brown{ icon_state = "corner_white"; dir = 5 @@ -62728,51 +62928,166 @@ /obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ dir = 8 }, -/turf/simulated/floor/tiled, -/area/outpost/mining_main/refinery) -"cdX" = ( -/obj/effect/floor_decal/corner/brown/full{ - icon_state = "corner_white_full"; - dir = 1 - }, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 8 - }, -/obj/machinery/light{ - dir = 4; - icon_state = "tube1" - }, -/turf/simulated/floor/tiled, -/area/outpost/mining_main/refinery) -"cdY" = ( -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/closet/secure_closet/miner, -/obj/item/weapon/key/minecarts, -/obj/effect/floor_decal/corner/brown{ - icon_state = "corner_white"; - dir = 9 - }, -/obj/item/device/gps/mining, -/turf/simulated/floor/tiled, -/area/outpost/mining_main/eva) -"cdZ" = ( /obj/structure/cable/green{ d1 = 1; d2 = 2; icon_state = "1-2" }, /turf/simulated/floor/tiled, +/area/outpost/mining_main/refinery) +"cew" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 8 + }, +/obj/effect/floor_decal/industrial/loading{ + icon_state = "loadingarea"; + dir = 8 + }, +/obj/machinery/mineral/stacking_unit_console{ + pixel_y = 32 + }, +/obj/machinery/light{ + dir = 1; + icon_state = "tube1"; + pixel_y = 0 + }, +/obj/effect/floor_decal/industrial/outline/yellow, +/turf/simulated/floor/tiled, +/area/outpost/mining_main/refinery) +"cex" = ( +/obj/machinery/conveyor{ + dir = 8; + id = "mining_internal" + }, +/obj/structure/plasticflaps, +/obj/machinery/mineral/output, +/obj/machinery/door/firedoor, +/turf/simulated/floor/plating, +/area/outpost/mining_main/refinery) +"cey" = ( +/obj/machinery/mineral/stacking_machine, +/turf/simulated/floor/plating, +/area/outpost/mining_main/refinery) +"cez" = ( +/obj/machinery/conveyor{ + dir = 8; + id = "mining_internal" + }, +/obj/machinery/mineral/input, +/turf/simulated/floor/plating, +/area/outpost/mining_main/refinery) +"ceA" = ( +/obj/machinery/conveyor{ + dir = 8; + id = "mining_internal" + }, +/obj/machinery/mineral/output, +/turf/simulated/floor/plating, +/area/outpost/mining_main/refinery) +"ceB" = ( +/obj/structure/grille, +/obj/structure/window/reinforced{ + icon_state = "rwindow"; + dir = 8 + }, +/obj/structure/window/reinforced{ + icon_state = "rwindow"; + dir = 4 + }, +/obj/structure/window/reinforced{ + icon_state = "rwindow"; + dir = 1 + }, +/obj/machinery/door/firedoor{ + dir = 2 + }, +/turf/simulated/floor/plating, +/area/outpost/mining_main/refinery) +"ceC" = ( +/obj/structure/track{ + icon_state = "track4" + }, +/turf/simulated/floor/asteroid/ash/rocky, +/area/mine/unexplored) +"ceD" = ( +/obj/structure/track{ + icon_state = "track12" + }, +/obj/effect/floor_decal/industrial/warning/dust{ + dir = 4; + icon_state = "warning_dust" + }, +/turf/simulated/floor/asteroid/ash/rocky, +/area/mine/unexplored) +"ceE" = ( +/obj/vehicle/train/cargo/trolley/mining, +/obj/structure/track{ + icon_state = "track12" + }, +/turf/simulated/floor/airless{ + icon_state = "asteroidplating" + }, /area/outpost/mining_main/eva) -"cea" = ( +"ceF" = ( +/obj/machinery/light/small{ + dir = 1 + }, +/turf/simulated/floor/tiled/airless{ + icon_state = "asteroidfloor" + }, +/area/outpost/mining_main/eva) +"ceG" = ( +/obj/structure/track{ + icon_state = "track9" + }, +/turf/simulated/floor/airless{ + icon_state = "asteroidplating" + }, +/area/outpost/mining_main/eva) +"ceH" = ( +/obj/structure/table/rack{ + dir = 1 + }, +/obj/item/stack/rods{ + amount = 50 + }, +/turf/simulated/floor/tiled/airless{ + icon_state = "asteroidfloor" + }, +/area/outpost/mining_main/eva) +"ceI" = ( +/obj/structure/closet/secure_closet/miner, +/obj/effect/floor_decal/corner/brown{ + icon_state = "corner_white"; + dir = 9 + }, +/obj/machinery/status_display{ + pixel_x = -32 + }, +/turf/simulated/floor/tiled, +/area/outpost/mining_main/eva) +"ceJ" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/outpost/mining_main/eva) +"ceK" = ( /obj/machinery/atmospherics/pipe/manifold/hidden{ dir = 8; icon_state = "map" }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 + }, /turf/simulated/floor/tiled, /area/outpost/mining_main/eva) -"ceb" = ( +"ceL" = ( /obj/machinery/portable_atmospherics/canister/air/airlock, /obj/machinery/atmospherics/portables_connector{ dir = 8 @@ -62781,25 +63096,13 @@ icon_state = "corner_white"; dir = 6 }, +/obj/machinery/light{ + dir = 4; + status = 0 + }, /turf/simulated/floor/tiled, /area/outpost/mining_main/eva) -"cec" = ( -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/grille, -/obj/machinery/door/firedoor{ - dir = 2 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/turf/simulated/floor/plating, -/area/outpost/mining_main/refinery) -"ced" = ( +"ceM" = ( /obj/effect/floor_decal/corner/brown{ icon_state = "corner_white"; dir = 9 @@ -62808,198 +63111,90 @@ dir = 4 }, /obj/structure/closet/crate, +/obj/effect/floor_decal/corner/brown, +/obj/machinery/firealarm/west, /turf/simulated/floor/tiled, /area/outpost/mining_main/refinery) -"cee" = ( +"ceN" = ( /obj/structure/disposalpipe/segment, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/machinery/atmospherics/pipe/manifold/hidden/supply{ dir = 4 }, -/turf/simulated/floor/tiled, -/area/outpost/mining_main/refinery) -"cef" = ( -/obj/effect/floor_decal/corner/brown{ - icon_state = "corner_white"; - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/outpost/mining_main/refinery) -"ceg" = ( -/obj/machinery/conveyor{ - dir = 8; - id = "mining_internal" - }, -/obj/structure/plasticflaps, -/obj/machinery/mineral/output, -/turf/simulated/floor/plating, -/area/outpost/mining_main/refinery) -"ceh" = ( -/obj/machinery/mineral/stacking_machine, -/turf/simulated/floor/plating, -/area/outpost/mining_main/refinery) -"cei" = ( -/obj/machinery/conveyor{ - dir = 8; - id = "mining_internal" - }, -/obj/machinery/mineral/input, -/turf/simulated/floor/tiled, -/area/outpost/mining_main/refinery) -"cej" = ( -/obj/machinery/conveyor{ - dir = 8; - id = "mining_internal" - }, -/turf/simulated/floor/plating, -/area/outpost/mining_main/refinery) -"cek" = ( -/obj/machinery/door/firedoor{ - dir = 2 - }, -/obj/structure/grille, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/window/reinforced{ - dir = 1 - }, -/turf/simulated/floor/plating, -/area/outpost/mining_main/refinery) -"cel" = ( -/obj/structure/track{ - icon_state = "track3" - }, -/obj/structure/track{ - icon_state = "track3" - }, -/turf/simulated/floor/asteroid/ash/rocky, -/area/mine/unexplored) -"cem" = ( -/obj/structure/track{ - icon_state = "track6" - }, -/obj/structure/track{ - icon_state = "track6" - }, -/turf/simulated/floor/asteroid/ash/rocky, -/area/mine/unexplored) -"cen" = ( -/obj/structure/track{ - icon_state = "track14" - }, -/obj/structure/ore_box{ - icon_state = "orebox1"; - name = "minecart ore box" - }, -/obj/structure/track{ - icon_state = "track14" - }, -/obj/structure/ore_box{ - icon_state = "orebox1"; - name = "minecart ore box" - }, -/turf/simulated/floor/asteroid/ash/rocky, -/area/mine/unexplored) -"ceo" = ( -/obj/structure/track{ - icon_state = "track10" - }, -/obj/structure/ore_box{ - icon_state = "orebox1"; - name = "minecart ore box" - }, -/obj/structure/track{ - icon_state = "track10" - }, -/obj/structure/ore_box{ - icon_state = "orebox1"; - name = "minecart ore box" - }, -/turf/simulated/floor/asteroid/ash/rocky, -/area/mine/unexplored) -"cep" = ( -/obj/machinery/atmospherics/pipe/simple/hidden, -/turf/simulated/floor/tiled, -/area/outpost/mining_main/eva) -"ceq" = ( -/obj/effect/floor_decal/corner/brown{ - icon_state = "corner_white"; - dir = 6 - }, -/obj/structure/closet/crate, -/turf/simulated/floor/tiled, -/area/outpost/mining_main/eva) -"cer" = ( -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/grille, -/obj/machinery/door/firedoor{ - dir = 2 - }, -/turf/simulated/floor/plating, -/area/outpost/mining_main/refinery) -"ces" = ( -/obj/structure/grille, -/obj/machinery/door/firedoor{ - dir = 2 - }, -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/window/reinforced{ - icon_state = "rwindow"; - dir = 4 - }, -/turf/simulated/floor/plating, -/area/outpost/mining_main/refinery) -"cet" = ( -/obj/structure/disposalpipe/segment, /obj/structure/cable/green{ d1 = 1; d2 = 2; icon_state = "1-2" }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/door/airlock/mining{ - id_tag = "cargodoor"; - name = "Resource Processing"; - req_access = list(54) +/obj/effect/floor_decal/corner/brown{ + dir = 10 }, -/obj/machinery/door/firedoor, /turf/simulated/floor/tiled, /area/outpost/mining_main/refinery) -"ceu" = ( +"ceO" = ( /obj/structure/grille, +/obj/structure/window/reinforced{ + icon_state = "rwindow"; + dir = 1 + }, +/obj/structure/window/reinforced{ + icon_state = "rwindow"; + dir = 8 + }, /obj/machinery/door/firedoor{ dir = 2 }, -/obj/structure/window/reinforced, +/turf/simulated/floor/plating, +/area/outpost/mining_main/refinery) +"ceP" = ( +/obj/structure/grille, /obj/structure/window/reinforced{ + icon_state = "rwindow"; dir = 1 }, -/obj/structure/window/reinforced{ - dir = 8 +/obj/structure/window/reinforced, +/obj/machinery/door/firedoor{ + dir = 2 }, /turf/simulated/floor/plating, /area/outpost/mining_main/refinery) -"cev" = ( +"ceQ" = ( /obj/structure/grille, /obj/structure/window/reinforced, /obj/structure/window/reinforced{ + icon_state = "rwindow"; dir = 1 }, +/obj/machinery/door/firedoor{ + dir = 2 + }, +/turf/simulated/floor/plating, +/area/outpost/mining_main/refinery) +"ceR" = ( +/obj/structure/grille, +/obj/structure/window/reinforced{ + icon_state = "rwindow"; + dir = 4 + }, +/obj/structure/window/reinforced{ + icon_state = "rwindow"; + dir = 1 + }, +/obj/machinery/door/firedoor{ + dir = 2 + }, +/turf/simulated/floor/plating, +/area/outpost/mining_main/refinery) +"ceS" = ( +/obj/machinery/mineral/processing_unit, +/turf/simulated/floor/plating, +/area/outpost/mining_main/refinery) +"ceT" = ( +/obj/structure/grille, +/obj/structure/window/reinforced{ + icon_state = "rwindow"; + dir = 8 + }, /obj/structure/window/reinforced{ icon_state = "rwindow"; dir = 4 @@ -63009,103 +63204,186 @@ }, /turf/simulated/floor/plating, /area/outpost/mining_main/refinery) -"cew" = ( -/obj/machinery/mineral/stacking_unit_console{ - machinedir = 1 +"ceU" = ( +/obj/effect/floor_decal/industrial/warning/dust/corner{ + icon_state = "warningcorner_dust"; + dir = 4 }, -/turf/simulated/wall, +/turf/simulated/floor/asteroid/ash/rocky, +/area/mine/unexplored) +"ceV" = ( +/obj/effect/floor_decal/industrial/warning/dust{ + icon_state = "warning_dust"; + dir = 1 + }, +/turf/simulated/floor/asteroid/ash/rocky, +/area/mine/unexplored) +"ceW" = ( +/obj/structure/closet/secure_closet/miner, +/obj/effect/floor_decal/corner/brown{ + icon_state = "corner_white"; + dir = 9 + }, +/obj/machinery/status_display/supply_display{ + pixel_x = -32 + }, +/turf/simulated/floor/tiled, +/area/outpost/mining_main/eva) +"ceX" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled, +/area/outpost/mining_main/eva) +"ceY" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/manifold/hidden{ + dir = 8; + icon_state = "map" + }, +/turf/simulated/floor/tiled, +/area/outpost/mining_main/eva) +"ceZ" = ( +/obj/effect/floor_decal/corner/brown{ + icon_state = "corner_white"; + dir = 6 + }, +/obj/machinery/firealarm/east, +/obj/machinery/atmospherics/portables_connector{ + dir = 8 + }, +/obj/machinery/portable_atmospherics/canister/air/airlock, +/turf/simulated/floor/tiled, +/area/outpost/mining_main/eva) +"cfa" = ( +/obj/structure/grille, +/obj/machinery/door/firedoor{ + dir = 2 + }, +/obj/structure/window/reinforced, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/window/reinforced{ + icon_state = "rwindow"; + dir = 4 + }, +/obj/structure/window/reinforced{ + icon_state = "rwindow"; + dir = 8 + }, +/turf/simulated/floor/plating, /area/outpost/mining_main/refinery) -"cex" = ( +"cfb" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/glass_mining{ + name = "Mining"; + req_access = list(48) + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled, +/area/outpost/mining_main/refinery) +"cfc" = ( +/obj/structure/grille, +/obj/structure/window/reinforced{ + icon_state = "rwindow"; + dir = 4 + }, +/obj/structure/window/reinforced{ + icon_state = "rwindow"; + dir = 8 + }, +/obj/structure/window/reinforced, +/obj/machinery/door/firedoor{ + dir = 2 + }, +/turf/simulated/floor/plating, +/area/outpost/mining_main/refinery) +"cfd" = ( +/obj/effect/floor_decal/corner/brown{ + icon_state = "corner_white"; + dir = 6 + }, +/obj/machinery/mineral/equipment_vendor, +/turf/simulated/floor/tiled, +/area/outpost/mining_main/refinery) +"cfe" = ( +/obj/machinery/mineral/rigpress, +/turf/simulated/floor/tiled, +/area/outpost/mining_main/refinery) +"cff" = ( +/obj/machinery/door/firedoor{ + dir = 2 + }, +/obj/structure/grille, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/outpost/mining_main/refinery) +"cfg" = ( +/obj/machinery/mineral/input, /obj/machinery/conveyor{ dir = 1; id = "mining_internal" }, /turf/simulated/floor/plating, /area/outpost/mining_main/refinery) -"cey" = ( -/obj/machinery/door/firedoor{ - dir = 2 - }, -/obj/structure/grille, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/turf/simulated/floor/plating, -/area/outpost/mining_main/refinery) -"cez" = ( -/obj/structure/track{ - icon_state = "track12" - }, -/obj/structure/track{ - icon_state = "track12" +"cfh" = ( +/obj/effect/floor_decal/industrial/warning/dust{ + icon_state = "warning_dust"; + dir = 5 }, /turf/simulated/floor/asteroid/ash/rocky, /area/mine/unexplored) -"ceA" = ( -/obj/structure/track, -/obj/structure/track, -/turf/simulated/floor/asteroid/ash/rocky, -/area/mine/unexplored) -"ceB" = ( -/obj/vehicle/train/cargo/engine/mining{ - icon_state = "mining_engine"; - dir = 2 +"cfi" = ( +/turf/simulated/floor/airless{ + icon_state = "asteroidplating" }, -/obj/structure/track{ - icon_state = "track13" - }, -/obj/vehicle/train/cargo/engine/mining{ - icon_state = "mining_engine"; - dir = 2 - }, -/obj/structure/track{ - icon_state = "track13" - }, -/turf/simulated/floor/asteroid/ash/rocky, -/area/mine/unexplored) -"ceC" = ( -/obj/vehicle/train/cargo/trolley/mining, -/obj/structure/track{ - icon_state = "track13" - }, -/obj/vehicle/train/cargo/trolley/mining, -/obj/structure/track{ - icon_state = "track13" - }, -/turf/simulated/floor/asteroid/ash/rocky, -/area/mine/unexplored) -"ceD" = ( -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/window/reinforced, +/area/outpost/mining_main/eva) +"cfj" = ( /obj/structure/closet/secure_closet/miner, -/obj/item/weapon/key/minecarts, +/obj/structure/window/reinforced, /obj/effect/floor_decal/corner/brown{ icon_state = "corner_white"; dir = 9 }, -/obj/item/device/gps/mining, /turf/simulated/floor/tiled, /area/outpost/mining_main/eva) -"ceE" = ( -/obj/machinery/door/window/southleft, +"cfk" = ( /obj/structure/cable/green{ d1 = 1; d2 = 2; icon_state = "1-2" }, +/obj/machinery/door/window/southleft, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 4 + }, /turf/simulated/floor/tiled, /area/outpost/mining_main/eva) -"ceF" = ( -/obj/machinery/door/window/southright, +"cfl" = ( /obj/machinery/atmospherics/pipe/simple/hidden, +/obj/machinery/door/window/southright, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/tiled, /area/outpost/mining_main/eva) -"ceG" = ( +"cfm" = ( /obj/structure/window/reinforced, /obj/effect/floor_decal/corner/brown{ icon_state = "corner_white"; @@ -63114,18 +63392,43 @@ /obj/structure/closet/crate, /turf/simulated/floor/tiled, /area/outpost/mining_main/eva) -"ceH" = ( +"cfn" = ( +/obj/structure/grille, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/window/reinforced{ + icon_state = "rwindow"; + dir = 1 + }, +/obj/machinery/door/firedoor{ + dir = 2 + }, +/turf/simulated/floor/plating, +/area/outpost/mining_main/eva) +"cfo" = ( /obj/effect/floor_decal/corner/brown{ icon_state = "corner_white"; dir = 9 }, /obj/structure/closet/crate, +/obj/effect/floor_decal/corner/brown{ + icon_state = "corner_white"; + dir = 4 + }, /turf/simulated/floor/tiled, /area/outpost/mining_main/refinery) -"ceI" = ( +"cfp" = ( /obj/structure/disposalpipe/segment, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/effect/floor_decal/corner/brown{ + icon_state = "corner_white"; + dir = 5 + }, /obj/structure/cable/green{ d1 = 1; d2 = 2; @@ -63133,30 +63436,64 @@ }, /turf/simulated/floor/tiled, /area/outpost/mining_main/refinery) -"ceJ" = ( +"cfq" = ( /obj/effect/floor_decal/corner/brown{ icon_state = "corner_white"; dir = 5 }, /turf/simulated/floor/tiled, /area/outpost/mining_main/refinery) -"ceK" = ( -/obj/effect/floor_decal/corner/brown/full{ - icon_state = "corner_white_full"; +"cfr" = ( +/obj/effect/floor_decal/corner/brown{ + icon_state = "corner_white"; + dir = 6 + }, +/obj/effect/floor_decal/corner/brown{ + icon_state = "corner_white"; dir = 1 }, /turf/simulated/floor/tiled, /area/outpost/mining_main/refinery) -"ceL" = ( -/obj/machinery/recharge_station, -/obj/machinery/light{ - icon_state = "tube1"; +"cfs" = ( +/obj/machinery/door/firedoor{ + dir = 2 + }, +/obj/structure/grille, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/window/reinforced, +/obj/structure/window/reinforced{ dir = 8 }, +/turf/simulated/floor/plating, +/area/outpost/mining_main/refinery) +"cft" = ( +/obj/machinery/conveyor{ + dir = 1; + id = "mining_internal" + }, +/obj/machinery/mineral/output, +/obj/machinery/door/firedoor, +/obj/structure/plasticflaps, +/turf/simulated/floor/plating, +/area/outpost/mining_main/refinery) +"cfu" = ( +/obj/machinery/light{ + dir = 4; + icon_state = "tube1"; + pixel_x = 0 + }, +/turf/simulated/floor/tiled/airless{ + icon_state = "asteroidfloor" + }, +/area/outpost/mining_main/eva) +"cfv" = ( +/obj/machinery/recharge_station, /obj/machinery/firealarm/west, /turf/simulated/floor/plating, /area/outpost/mining_main/eva) -"ceM" = ( +"cfw" = ( /obj/effect/floor_decal/corner/brown{ icon_state = "corner_white"; dir = 9 @@ -63168,7 +63505,13 @@ /obj/item/weapon/ladder_mobile, /turf/simulated/floor/tiled, /area/outpost/mining_main/eva) -"ceN" = ( +"cfx" = ( +/obj/machinery/atmospherics/pipe/simple/hidden, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled, +/area/outpost/mining_main/eva) +"cfy" = ( /obj/structure/table/rack{ dir = 1 }, @@ -63182,15 +63525,9 @@ icon_state = "corner_white"; dir = 6 }, -/obj/item/stack/rods{ - amount = 50 - }, -/obj/item/stack/rods{ - amount = 50 - }, /turf/simulated/floor/tiled, /area/outpost/mining_main/eva) -"ceO" = ( +"cfz" = ( /obj/structure/window/reinforced{ dir = 8 }, @@ -63203,77 +63540,68 @@ dir = 2 }, /turf/simulated/floor/plating, -/area/outpost/mining_main/refinery) -"ceP" = ( +/area/outpost/mining_main/eva) +"cfA" = ( /obj/effect/floor_decal/corner/brown{ icon_state = "corner_white"; dir = 9 }, /turf/simulated/floor/tiled, /area/outpost/mining_main/refinery) -"ceQ" = ( +"cfB" = ( /obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/structure/cable/green{ d1 = 1; d2 = 2; icon_state = "1-2" }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, /turf/simulated/floor/tiled, /area/outpost/mining_main/refinery) -"ceR" = ( +"cfC" = ( /turf/simulated/floor/tiled, /area/outpost/mining_main/refinery) -"ceS" = ( -/obj/machinery/mineral/rigpress, +"cfD" = ( /obj/effect/floor_decal/corner/brown{ icon_state = "corner_white"; dir = 6 }, -/turf/simulated/floor/tiled, -/area/outpost/mining_main/refinery) -"ceT" = ( -/obj/structure/window/reinforced{ +/obj/machinery/camera/network/mining{ + c_tag = "Mining - Production Room"; dir = 8 }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/grille, -/obj/machinery/door/firedoor{ - dir = 2 +/obj/machinery/conveyor_switch/oneway{ + id = "mining_internal"; + name = "mining conveyor" }, +/turf/simulated/floor/tiled, +/area/outpost/mining_main/refinery) +"cfE" = ( +/obj/machinery/mineral/unloading_machine, /turf/simulated/floor/plating, /area/outpost/mining_main/refinery) -"ceU" = ( -/obj/machinery/mineral/output, -/obj/machinery/conveyor{ - dir = 1; - id = "mining_internal" - }, -/turf/simulated/floor/plating, -/area/outpost/mining_main/refinery) -"ceV" = ( -/obj/machinery/access_button{ - command = "cycle_exterior"; - frequency = 1379; - master_tag = "mining_east_airlock"; - name = "exterior access button"; - pixel_x = 25; - pixel_y = 0 - }, -/obj/machinery/access_button{ - command = "cycle_exterior"; - frequency = 1379; - master_tag = "mining_east_airlock"; - name = "exterior access button"; - pixel_x = 25; - pixel_y = 0 +"cfF" = ( +/obj/effect/floor_decal/industrial/warning/dust{ + icon_state = "warning_dust"; + dir = 8 }, /turf/simulated/floor/asteroid/ash/rocky, /area/mine/unexplored) -"ceW" = ( +"cfG" = ( +/obj/machinery/access_button{ + command = "cycle_exterior"; + frequency = 1379; + master_tag = "mining_east_airlock"; + name = "exterior access button"; + pixel_x = 25; + pixel_y = 0 + }, +/turf/simulated/floor/tiled/airless{ + icon_state = "asteroidfloor" + }, +/area/outpost/mining_main/eva) +"cfH" = ( /obj/structure/grille, /obj/structure/window/reinforced{ dir = 1 @@ -63290,7 +63618,7 @@ }, /turf/simulated/floor/plating, /area/outpost/mining_main/eva) -"ceX" = ( +"cfI" = ( /obj/machinery/light/small{ dir = 1 }, @@ -63302,21 +63630,22 @@ /obj/structure/sign/vacuum{ pixel_y = 32 }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/floor_decal/industrial/hatch/yellow, /turf/simulated/floor/tiled, /area/outpost/mining_main/eva) -"ceY" = ( +"cfJ" = ( /obj/machinery/atmospherics/unary/vent_pump/high_volume{ dir = 2; frequency = 1379; id_tag = "mining_east_pump" }, /obj/structure/closet/walllocker/emerglocker/north, -/obj/effect/floor_decal/industrial/warning{ - dir = 4 - }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/floor_decal/industrial/hatch/yellow, /turf/simulated/floor/tiled, /area/outpost/mining_main/eva) -"ceZ" = ( +"cfK" = ( /obj/structure/grille, /obj/structure/window/reinforced, /obj/structure/window/reinforced{ @@ -63333,7 +63662,7 @@ }, /turf/simulated/floor/plating, /area/outpost/mining_main/eva) -"cfa" = ( +"cfL" = ( /obj/effect/floor_decal/corner/brown/full{ icon_state = "corner_white_full"; dir = 8 @@ -63345,9 +63674,12 @@ c_tag = "Mining - Airlock"; dir = 4 }, +/obj/effect/floor_decal/industrial/warning{ + dir = 8 + }, /turf/simulated/floor/tiled, /area/outpost/mining_main/eva) -"cfb" = ( +"cfM" = ( /obj/effect/floor_decal/corner/brown{ icon_state = "corner_white"; dir = 1 @@ -63357,38 +63689,32 @@ }, /turf/simulated/floor/tiled, /area/outpost/mining_main/eva) -"cfc" = ( +"cfN" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, /obj/structure/cable/green{ d1 = 1; d2 = 4; icon_state = "1-4" }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, +/obj/machinery/hologram/holopad, /turf/simulated/floor/tiled, /area/outpost/mining_main/eva) -"cfd" = ( +"cfO" = ( /obj/machinery/atmospherics/pipe/simple/hidden, /obj/structure/cable/green{ d1 = 4; d2 = 8; icon_state = "4-8" }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 1 +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 8 }, +/obj/machinery/atmospherics/pipe/manifold4w/hidden/supply, /turf/simulated/floor/tiled, /area/outpost/mining_main/eva) -"cfe" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, +"cfP" = ( /obj/effect/floor_decal/corner/brown{ icon_state = "corner_white"; dir = 4 @@ -63399,17 +63725,17 @@ /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, -/turf/simulated/floor/tiled, -/area/outpost/mining_main/eva) -"cff" = ( -/obj/machinery/door/firedoor{ - dir = 2 - }, /obj/structure/cable/green{ d1 = 4; d2 = 8; icon_state = "4-8" }, +/turf/simulated/floor/tiled, +/area/outpost/mining_main/eva) +"cfQ" = ( +/obj/machinery/door/firedoor{ + dir = 2 + }, /obj/effect/floor_decal/corner/brown{ icon_state = "corner_white"; dir = 9 @@ -63424,69 +63750,96 @@ /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, -/turf/simulated/floor/tiled, -/area/outpost/mining_main/refinery) -"cfg" = ( /obj/structure/cable/green{ d1 = 4; d2 = 8; icon_state = "4-8" }, -/obj/effect/floor_decal/corner/brown{ - icon_state = "corner_white"; - dir = 1 - }, +/turf/simulated/floor/tiled, +/area/outpost/mining_main/eva) +"cfR" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 1 +/obj/effect/floor_decal/corner/brown{ + icon_state = "corner_white"; + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" }, /turf/simulated/floor/tiled, /area/outpost/mining_main/refinery) -"cfh" = ( +"cfS" = ( /obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, /obj/structure/cable/green{ d1 = 1; d2 = 8; icon_state = "1-8" }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - icon_state = "map-scrubbers"; +/turf/simulated/floor/tiled, +/area/outpost/mining_main/refinery) +"cfT" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 9 - }, /turf/simulated/floor/tiled, /area/outpost/mining_main/refinery) -"cfi" = ( +"cfU" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/outpost/mining_main/refinery) +"cfV" = ( +/obj/effect/floor_decal/corner/brown{ + icon_state = "corner_white"; + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/outpost/mining_main/refinery) +"cfW" = ( /obj/effect/floor_decal/corner/brown{ icon_state = "corner_white"; dir = 6 }, -/obj/machinery/mineral/equipment_vendor, +/obj/effect/floor_decal/corner/brown{ + icon_state = "corner_white"; + dir = 1 + }, +/obj/machinery/mineral/processing_unit_console{ + pixel_y = 32 + }, /turf/simulated/floor/tiled, /area/outpost/mining_main/refinery) -"cfj" = ( -/obj/machinery/mineral/processing_unit, -/turf/simulated/floor/plating, +"cfX" = ( +/obj/machinery/mineral/input, +/obj/effect/floor_decal/industrial/loading{ + icon_state = "loadingarea"; + dir = 1 + }, +/obj/effect/floor_decal/industrial/outline/yellow, +/turf/simulated/floor/tiled, /area/outpost/mining_main/refinery) -"cfk" = ( -/obj/machinery/door/firedoor{ - dir = 2 +"cfY" = ( +/obj/item/weapon/wrench, +/obj/item/weapon/screwdriver, +/obj/item/weapon/crowbar, +/obj/structure/table/reinforced/steel, +/turf/simulated/floor/tiled/airless{ + icon_state = "asteroidfloor" }, -/obj/structure/grille, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 8 - }, -/turf/simulated/floor/plating, -/area/outpost/mining_main/refinery) -"cfl" = ( +/area/outpost/mining_main/eva) +"cfZ" = ( /obj/machinery/door/firedoor{ dir = 2 }, @@ -63500,14 +63853,20 @@ }, /turf/simulated/floor/plating, /area/outpost/mining_main/eva) -"cfm" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 4 +"cga" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden{ + dir = 8; + icon_state = "map" }, -/obj/machinery/atmospherics/pipe/manifold4w/hidden, +/obj/effect/decal/cleanable/dirt, /turf/simulated/floor/tiled, /area/outpost/mining_main/eva) -"cfn" = ( +"cgb" = ( +/obj/machinery/atmospherics/pipe/manifold4w/hidden, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/tiled, +/area/outpost/mining_main/eva) +"cgc" = ( /obj/machinery/door/firedoor{ dir = 2 }, @@ -63523,7 +63882,7 @@ }, /turf/simulated/floor/tiled, /area/outpost/mining_main/eva) -"cfo" = ( +"cgd" = ( /obj/machinery/access_button{ command = "cycle_interior"; frequency = 1379; @@ -63536,15 +63895,18 @@ dir = 1; icon_state = "map" }, +/obj/effect/floor_decal/industrial/warning{ + dir = 8 + }, /turf/simulated/floor/tiled, /area/outpost/mining_main/eva) -"cfp" = ( +"cge" = ( /obj/machinery/atmospherics/pipe/simple/hidden{ dir = 4 }, /turf/simulated/floor/tiled, /area/outpost/mining_main/eva) -"cfq" = ( +"cgf" = ( /obj/machinery/atmospherics/pipe/simple/hidden{ dir = 9; icon_state = "intact" @@ -63553,67 +63915,51 @@ /obj/machinery/atmospherics/pipe/simple/hidden/supply, /turf/simulated/floor/tiled, /area/outpost/mining_main/eva) -"cfr" = ( -/obj/machinery/alarm{ - dir = 8; - icon_state = "alarm0"; - pixel_x = 24 - }, +"cgg" = ( /obj/machinery/light{ dir = 4; icon_state = "tube1" }, /turf/simulated/floor/tiled, /area/outpost/mining_main/eva) -"cfs" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, +"cgh" = ( +/obj/effect/floor_decal/corner/brown{ + icon_state = "corner_white"; + dir = 9 + }, /obj/machinery/light{ + dir = 8; icon_state = "tube1"; - dir = 8 + pixel_x = 0 }, /turf/simulated/floor/tiled, /area/outpost/mining_main/refinery) -"cft" = ( +"cgi" = ( /obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - icon_state = "intact-scrubbers"; - dir = 5 - }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, /turf/simulated/floor/tiled, /area/outpost/mining_main/refinery) -"cfu" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/outpost/mining_main/refinery) -"cfv" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 8 - }, +"cgj" = ( /obj/effect/floor_decal/corner/brown{ icon_state = "corner_white"; dir = 6 }, -/obj/machinery/camera/network/mining{ - c_tag = "Mining - Production Room"; - dir = 8 - }, /turf/simulated/floor/tiled, /area/outpost/mining_main/refinery) -"cfw" = ( -/obj/machinery/mineral/processing_unit_console, -/turf/simulated/wall, +"cgk" = ( +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/structure/ore_box, +/turf/simulated/floor/tiled, /area/outpost/mining_main/refinery) -"cfx" = ( -/obj/machinery/mineral/input, -/obj/machinery/conveyor{ - dir = 1; - id = "mining_internal" +"cgl" = ( +/obj/machinery/light{ + dir = 4 }, -/turf/simulated/floor/plating, -/area/outpost/mining_main/refinery) -"cfy" = ( +/turf/simulated/floor/airless{ + icon_state = "asteroidplating" + }, +/area/outpost/mining_main/eva) +"cgm" = ( /obj/structure/grille, /obj/structure/window/reinforced{ dir = 1 @@ -63631,7 +63977,7 @@ /obj/structure/sign/drop, /turf/simulated/floor/plating, /area/outpost/mining_main/eva) -"cfz" = ( +"cgn" = ( /obj/machinery/embedded_controller/radio/airlock/airlock_controller{ tag_airpump = "mining_east_pump"; tag_exterior_door = "mining_east_outer"; @@ -63647,10 +63993,11 @@ frequency = 1379; id_tag = "mining_east_pump" }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/floor_decal/industrial/hatch/yellow, /turf/simulated/floor/tiled, /area/outpost/mining_main/eva) -"cfA" = ( -/obj/structure/ore_box, +"cgo" = ( /obj/machinery/airlock_sensor{ frequency = 1379; id_tag = "mining_east_sensor"; @@ -63663,21 +64010,23 @@ frequency = 1379; id_tag = "mining_east_pump" }, -/obj/effect/floor_decal/industrial/warning{ - dir = 4 - }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/floor_decal/industrial/hatch/yellow, /turf/simulated/floor/tiled, /area/outpost/mining_main/eva) -"cfB" = ( +"cgp" = ( /obj/effect/floor_decal/corner/brown/full, /obj/machinery/atmospherics/pipe/simple/hidden{ dir = 5; icon_state = "intact" }, /obj/machinery/meter, +/obj/effect/floor_decal/industrial/warning{ + dir = 8 + }, /turf/simulated/floor/tiled, /area/outpost/mining_main/eva) -"cfC" = ( +"cgq" = ( /obj/machinery/atmospherics/binary/pump/on{ dir = 8; name = "Distro to Canisters"; @@ -63689,7 +64038,7 @@ }, /turf/simulated/floor/plating, /area/outpost/mining_main/eva) -"cfD" = ( +"cgr" = ( /obj/effect/floor_decal/industrial/warning/cee{ icon_state = "warningcee"; dir = 4 @@ -63699,19 +64048,23 @@ }, /turf/simulated/floor/plating, /area/outpost/mining_main/eva) -"cfE" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - icon_state = "intact-supply"; - dir = 9 +"cgs" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 8 }, /turf/simulated/floor/tiled, /area/outpost/mining_main/eva) -"cfF" = ( +"cgt" = ( /obj/effect/floor_decal/corner/brown, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 8 + }, /turf/simulated/floor/tiled, /area/outpost/mining_main/eva) -"cfG" = ( +"cgu" = ( /obj/machinery/door/firedoor{ dir = 2 }, @@ -63723,73 +64076,48 @@ icon_state = "corner_white"; dir = 6 }, -/turf/simulated/floor/tiled, -/area/outpost/mining_main/refinery) -"cfH" = ( -/obj/effect/floor_decal/corner/brown{ - icon_state = "corner_white"; - dir = 8 +/obj/structure/noticeboard{ + pixel_y = 27 }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, /turf/simulated/floor/tiled, -/area/outpost/mining_main/refinery) -"cfI" = ( -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/tiled, -/area/outpost/mining_main/refinery) -"cfJ" = ( +/area/outpost/mining_main/eva) +"cgv" = ( +/obj/effect/floor_decal/industrial/warning/dust/corner{ + icon_state = "warningcorner_dust"; + dir = 1 + }, +/turf/simulated/floor/asteroid/ash/rocky, +/area/mine/unexplored) +"cgw" = ( /obj/machinery/hologram/holopad, /turf/simulated/floor/tiled, /area/outpost/mining_main/refinery) -"cfK" = ( -/obj/effect/floor_decal/corner/brown{ - icon_state = "corner_white"; - dir = 6 - }, -/turf/simulated/floor/tiled, -/area/outpost/mining_main/refinery) -"cfL" = ( -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/grille, -/obj/machinery/door/firedoor{ - dir = 2 - }, -/turf/simulated/floor/plating, -/area/outpost/mining_main/refinery) -"cfM" = ( +"cgx" = ( /obj/machinery/mech_recharger, -/obj/machinery/light{ - icon_state = "tube1"; - dir = 8 +/obj/machinery/alarm{ + dir = 4; + icon_state = "alarm0"; + pixel_x = -22; + pixel_y = 0 }, /turf/simulated/floor/plating, /area/outpost/mining_main/eva) -"cfN" = ( +"cgy" = ( /obj/effect/floor_decal/corner/brown{ icon_state = "corner_white"; dir = 9 }, /turf/simulated/floor/tiled, /area/outpost/mining_main/eva) -"cfO" = ( +"cgz" = ( /turf/simulated/floor/tiled, /area/outpost/mining_main/eva) -"cfP" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - icon_state = "intact-scrubbers"; - dir = 5 - }, +"cgA" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/tiled, /area/outpost/mining_main/eva) -"cfQ" = ( +"cgB" = ( /obj/structure/table/standard, /obj/item/device/suit_cooling_unit/improved, /obj/item/weapon/storage/toolbox/mechanical{ @@ -63806,88 +64134,83 @@ }, /turf/simulated/floor/tiled, /area/outpost/mining_main/eva) -"cfR" = ( -/obj/effect/floor_decal/corner/brown{ - icon_state = "corner_white"; - dir = 9 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/tiled, -/area/outpost/mining_main/refinery) -"cfS" = ( -/obj/effect/floor_decal/corner/brown, -/turf/simulated/floor/tiled, -/area/outpost/mining_main/refinery) -"cfT" = ( -/obj/machinery/conveyor_switch/oneway{ - id = "mining_internal"; - name = "mining conveyor" - }, -/obj/effect/floor_decal/corner/brown/full{ - icon_state = "corner_white_full"; +"cgC" = ( +/obj/structure/window/reinforced{ dir = 4 }, -/turf/simulated/floor/tiled, -/area/outpost/mining_main/refinery) -"cfU" = ( -/obj/item/weapon/wrench, -/obj/item/weapon/screwdriver, -/obj/item/weapon/crowbar, -/obj/structure/table/reinforced/steel, -/turf/simulated/floor/airless{ - icon_state = "asteroidplating" +/obj/structure/window/reinforced{ + dir = 1 }, -/area/outpost/mining_main/eva) -"cfV" = ( -/obj/item/weapon/cell/high{ - charge = 100; - maxcharge = 15000 +/obj/structure/grille, +/obj/machinery/door/firedoor{ + dir = 2 }, -/obj/item/weapon/cell/high{ - charge = 100; - maxcharge = 15000 - }, -/obj/structure/table/reinforced/steel, -/turf/simulated/floor/airless{ - icon_state = "asteroidplating" - }, -/area/outpost/mining_main/eva) -"cfW" = ( -/obj/machinery/cell_charger, -/obj/structure/table/reinforced/steel, -/turf/simulated/floor/airless{ - icon_state = "asteroidplating" - }, -/area/outpost/mining_main/eva) -"cfX" = ( /obj/structure/window/reinforced{ dir = 8 }, +/turf/simulated/floor/plating, +/area/outpost/mining_main/eva) +"cgE" = ( +/obj/item/weapon/cell/high{ + charge = 100; + maxcharge = 15000 + }, +/obj/item/weapon/cell/high{ + charge = 100; + maxcharge = 15000 + }, +/obj/structure/table/reinforced/steel, +/turf/simulated/floor/airless{ + icon_state = "asteroidplating" + }, +/area/outpost/mining_main/eva) +"cgF" = ( +/obj/machinery/cell_charger, +/obj/structure/table/reinforced/steel, +/turf/simulated/floor/tiled/airless{ + icon_state = "asteroidfloor" + }, +/area/outpost/mining_main/eva) +"cgG" = ( /obj/structure/window/reinforced{ + icon_state = "rwindow"; dir = 1 }, /obj/effect/floor_decal/corner/brown{ icon_state = "corner_white"; dir = 9 }, -/obj/structure/ore_box, +/obj/structure/closet/crate, +/obj/machinery/camera/network/mining{ + c_tag = "Mining - Suit Storage"; + dir = 4 + }, +/obj/machinery/firealarm/west, /turf/simulated/floor/tiled, /area/outpost/mining_main/eva) -"cfY" = ( +"cgH" = ( /obj/machinery/door/window/northleft, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 4 + }, /turf/simulated/floor/tiled, /area/outpost/mining_main/eva) -"cfZ" = ( +"cgI" = ( /obj/machinery/door/window/northright, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, /turf/simulated/floor/tiled, /area/outpost/mining_main/eva) -"cga" = ( +"cgJ" = ( /obj/structure/table/rack, -/obj/item/clothing/head/helmet/space/void/mining, /obj/item/clothing/mask/breath, +/obj/item/stack/flag/purple, /obj/item/clothing/suit/space/void/mining, -/obj/item/stack/flag/yellow, +/obj/item/clothing/head/helmet/space/void/mining, /obj/structure/window/reinforced{ + icon_state = "rwindow"; dir = 1 }, /obj/effect/floor_decal/corner/brown{ @@ -63896,227 +64219,403 @@ }, /turf/simulated/floor/tiled, /area/outpost/mining_main/eva) -"cgb" = ( +"cgK" = ( /obj/effect/floor_decal/corner/brown{ icon_state = "corner_white"; dir = 9 }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/hologram/holopad, +/obj/machinery/papershredder, /turf/simulated/floor/tiled, /area/outpost/mining_main/refinery) -"cgc" = ( -/obj/machinery/door/firedoor{ +"cgL" = ( +/obj/effect/floor_decal/corner/brown, +/turf/simulated/floor/tiled, +/area/outpost/mining_main/refinery) +"cgM" = ( +/obj/effect/floor_decal/corner/brown{ + icon_state = "corner_white"; + dir = 6 + }, +/obj/effect/floor_decal/corner/brown{ + icon_state = "corner_white"; + dir = 8 + }, +/obj/machinery/light{ + icon_state = "tube1"; dir = 2 }, +/turf/simulated/floor/tiled, +/area/outpost/mining_main/refinery) +"cgN" = ( /obj/structure/grille, -/obj/structure/window/reinforced, /obj/structure/window/reinforced{ + icon_state = "rwindow"; dir = 8 }, /obj/structure/window/reinforced{ icon_state = "rwindow"; - dir = 1 - }, -/turf/simulated/floor/plating, -/area/outpost/mining_main/refinery) -"cgd" = ( -/obj/structure/window/reinforced{ dir = 4 }, -/obj/structure/grille, +/obj/structure/window/reinforced, /obj/machinery/door/firedoor{ dir = 2 }, -/obj/structure/window/reinforced, /turf/simulated/floor/plating, /area/outpost/mining_main/refinery) -"cge" = ( +"cgO" = ( +/turf/simulated/floor/tiled/airless{ + icon_state = "asteroidfloor" + }, +/area/outpost/mining_main/eva) +"cgP" = ( /obj/machinery/mech_recharger, /turf/simulated/floor/airless{ icon_state = "asteroidplating" }, /area/outpost/mining_main/eva) -"cgf" = ( -/obj/structure/window/reinforced{ - dir = 8 - }, +"cgQ" = ( /obj/effect/floor_decal/corner/brown{ icon_state = "corner_white"; dir = 9 }, /obj/machinery/portable_atmospherics/canister/oxygen, -/turf/simulated/floor/tiled, -/area/outpost/mining_main/eva) -"cgg" = ( -/obj/machinery/camera/network/mining{ - c_tag = "Mining - Suit Storage"; +/obj/machinery/light{ dir = 8 }, +/turf/simulated/floor/tiled, +/area/outpost/mining_main/eva) +"cgR" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/tiled, +/area/outpost/mining_main/eva) +"cgS" = ( /obj/structure/table/rack, -/obj/item/clothing/head/helmet/space/void/mining, /obj/item/clothing/mask/breath, -/obj/item/clothing/suit/space/void/mining, /obj/item/stack/flag/red, +/obj/item/clothing/suit/space/void/mining, +/obj/item/clothing/head/helmet/space/void/mining, +/obj/effect/floor_decal/corner/brown{ + icon_state = "corner_white"; + dir = 6 + }, +/obj/machinery/alarm{ + dir = 8; + icon_state = "alarm0"; + pixel_x = 24 + }, +/turf/simulated/floor/tiled, +/area/outpost/mining_main/eva) +"cgT" = ( +/obj/effect/floor_decal/corner/brown{ + icon_state = "corner_white"; + dir = 9 + }, +/obj/structure/disposalpipe/trunk{ + dir = 4 + }, +/obj/machinery/disposal, +/obj/machinery/light{ + dir = 8; + icon_state = "tube1"; + pixel_y = 0 + }, +/turf/simulated/floor/tiled, +/area/outpost/mining_main/refinery) +"cgU" = ( +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 + }, +/turf/simulated/floor/tiled, +/area/outpost/mining_main/refinery) +"cgV" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/outpost/mining_main/refinery) +"cgW" = ( +/obj/effect/floor_decal/corner/brown{ + icon_state = "corner_white"; + dir = 6 + }, +/obj/machinery/requests_console{ + department = "Mining"; + departmentType = 2; + name = "Mining Requests Console"; + pixel_x = 30; + pixel_y = 0 + }, +/obj/machinery/photocopier, +/turf/simulated/floor/tiled, +/area/outpost/mining_main/refinery) +"cgX" = ( +/obj/structure/grille, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/machinery/door/firedoor{ + dir = 2 + }, +/obj/structure/window/reinforced{ + icon_state = "rwindow"; + dir = 1 + }, +/turf/simulated/floor/plating, +/area/outpost/mining_main/eva) +"cgY" = ( +/obj/structure/dispenser/oxygen, +/obj/effect/floor_decal/corner/brown{ + icon_state = "corner_white"; + dir = 9 + }, +/turf/simulated/floor/tiled, +/area/outpost/mining_main/eva) +"cgZ" = ( +/obj/structure/table/rack, +/obj/item/clothing/mask/breath, +/obj/item/stack/flag/green, +/obj/item/clothing/suit/space/void/mining, +/obj/item/clothing/head/helmet/space/void/mining, /obj/effect/floor_decal/corner/brown{ icon_state = "corner_white"; dir = 6 }, /turf/simulated/floor/tiled, /area/outpost/mining_main/eva) -"cgh" = ( -/obj/structure/bed/chair/office/dark, +"cha" = ( +/obj/structure/table/standard, /obj/effect/floor_decal/corner/brown{ icon_state = "corner_white"; dir = 9 }, +/obj/item/weapon/paper_bin{ + pixel_x = -3; + pixel_y = 7 + }, +/obj/item/weapon/pen, +/obj/item/weapon/pen/red, +/obj/item/weapon/pen/blue, +/turf/simulated/floor/tiled, +/area/outpost/mining_main/refinery) +"chb" = ( +/obj/structure/bed/chair/office/dark, +/turf/simulated/floor/tiled, +/area/outpost/mining_main/refinery) +"chc" = ( +/obj/structure/bed/chair/office/dark{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/outpost/mining_main/refinery) +"chd" = ( +/obj/structure/table/standard, +/obj/effect/floor_decal/corner/brown{ + icon_state = "corner_white"; + dir = 6 + }, +/turf/simulated/floor/tiled, +/area/outpost/mining_main/refinery) +"che" = ( +/obj/machinery/door/firedoor{ + dir = 2 + }, +/obj/structure/grille, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/window/reinforced{ + icon_state = "rwindow"; + dir = 1 + }, +/turf/simulated/floor/plating, +/area/outpost/mining_main/refinery) +"chf" = ( +/obj/structure/ladder/up, +/turf/simulated/floor/tiled/airless{ + icon_state = "asteroidfloor" + }, +/area/outpost/mining_main/eva) +"chg" = ( +/obj/structure/ladder, +/turf/simulated/open/airless, +/area/outpost/mining_main/eva) +"chh" = ( +/obj/structure/grille, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/window/reinforced, +/obj/machinery/door/firedoor{ + dir = 2 + }, +/turf/simulated/floor/plating, +/area/outpost/mining_main/eva) +"chi" = ( +/obj/machinery/suit_cycler/mining, +/obj/effect/floor_decal/corner/brown/full, +/turf/simulated/floor/tiled, +/area/outpost/mining_main/eva) +"chj" = ( +/obj/effect/floor_decal/corner/brown{ + icon_state = "corner_white"; + dir = 10 + }, +/turf/simulated/floor/tiled, +/area/outpost/mining_main/eva) +"chk" = ( +/obj/effect/floor_decal/corner/brown{ + icon_state = "corner_white"; + dir = 10 + }, /obj/machinery/atmospherics/unary/vent_pump/on{ dir = 1 }, /turf/simulated/floor/tiled, -/area/outpost/mining_main/refinery) -"cgi" = ( -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" - }, -/turf/simulated/floor/tiled, -/area/outpost/mining_main/refinery) -"cgj" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/outpost/mining_main/refinery) -"cgk" = ( +/area/outpost/mining_main/eva) +"chl" = ( +/obj/structure/table/rack, +/obj/item/clothing/mask/breath, +/obj/item/stack/flag/yellow, +/obj/item/clothing/suit/space/void/mining, +/obj/item/clothing/head/helmet/space/void/mining, /obj/effect/floor_decal/corner/brown{ icon_state = "corner_white"; dir = 6 }, -/obj/structure/disposalpipe/segment{ - dir = 2; - icon_state = "pipe-c" - }, -/turf/simulated/floor/tiled, -/area/outpost/mining_main/refinery) -"cgl" = ( -/obj/machinery/mineral/input, -/turf/simulated/floor/plating, -/area/outpost/mining_main/refinery) -"cgm" = ( -/obj/machinery/mineral/unloading_machine, -/turf/simulated/floor/plating, -/area/outpost/mining_main/refinery) -"cgn" = ( -/obj/machinery/conveyor{ - dir = 1; - id = "mining_internal" - }, -/obj/machinery/mineral/output, -/turf/simulated/floor/plating, -/area/outpost/mining_main/refinery) -"cgo" = ( -/obj/structure/window/reinforced{ +/obj/effect/floor_decal/corner/brown{ + icon_state = "corner_white"; dir = 8 }, +/turf/simulated/floor/tiled, +/area/outpost/mining_main/eva) +"chm" = ( +/obj/structure/table/standard, /obj/effect/floor_decal/corner/brown{ icon_state = "corner_white"; dir = 9 }, -/obj/structure/dispenser/oxygen, -/turf/simulated/floor/tiled, -/area/outpost/mining_main/eva) -"cgp" = ( -/obj/structure/table/rack, -/obj/item/clothing/head/helmet/space/void/mining, -/obj/item/clothing/mask/breath, -/obj/item/clothing/suit/space/void/mining, -/obj/effect/floor_decal/corner/brown{ - icon_state = "corner_white"; - dir = 6 - }, -/obj/item/stack/flag/purple, -/turf/simulated/floor/tiled, -/area/outpost/mining_main/eva) -"cgq" = ( -/obj/structure/table/standard, -/obj/item/weapon/folder/yellow, -/obj/item/weapon/pen, -/obj/effect/floor_decal/corner/brown/full, -/obj/machinery/firealarm/west, +/obj/effect/floor_decal/corner/brown, +/obj/item/device/destTagger, /turf/simulated/floor/tiled, /area/outpost/mining_main/refinery) -"cgr" = ( +"chn" = ( /obj/structure/table/standard, -/obj/item/weapon/paper_bin{ - pixel_x = 1; - pixel_y = 9 - }, /obj/effect/floor_decal/corner/brown{ icon_state = "corner_white"; dir = 10 }, +/obj/item/weapon/packageWrap, /turf/simulated/floor/tiled, /area/outpost/mining_main/refinery) -"cgs" = ( -/obj/structure/filingcabinet/chestdrawer, +"cho" = ( /obj/effect/floor_decal/corner/brown{ icon_state = "corner_white"; dir = 10 }, -/turf/simulated/floor/tiled, -/area/outpost/mining_main/refinery) -"cgt" = ( -/obj/effect/floor_decal/corner/brown/full{ - icon_state = "corner_white_full"; - dir = 4 - }, -/obj/machinery/light{ - dir = 4; - icon_state = "tube1" - }, -/obj/machinery/disposal, -/obj/structure/disposalpipe/trunk{ +/obj/machinery/camera/network/mining{ + c_tag = "Mining - Office"; dir = 1 }, +/obj/structure/extinguisher_cabinet{ + pixel_y = -32 + }, /turf/simulated/floor/tiled, /area/outpost/mining_main/refinery) -"cgu" = ( -/obj/machinery/suit_cycler/mining, +"chp" = ( +/obj/structure/table/standard, +/obj/effect/floor_decal/corner/brown{ + icon_state = "corner_white"; + dir = 10 + }, +/obj/item/weapon/hand_labeler, +/turf/simulated/floor/tiled, +/area/outpost/mining_main/refinery) +"chq" = ( +/obj/structure/table/standard, +/obj/effect/floor_decal/corner/brown{ + icon_state = "corner_white"; + dir = 10 + }, +/obj/effect/floor_decal/corner/brown{ + icon_state = "corner_white"; + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/outpost/mining_main/refinery) +"chr" = ( +/obj/machinery/door/firedoor{ + dir = 2 + }, +/obj/structure/grille, +/obj/structure/window/reinforced{ + dir = 4 + }, /obj/structure/window/reinforced{ dir = 8 }, -/obj/effect/floor_decal/corner/brown/full, -/turf/simulated/floor/tiled, -/area/outpost/mining_main/eva) -"cgv" = ( -/obj/effect/floor_decal/corner/brown{ - icon_state = "corner_white"; - dir = 10 +/obj/structure/window/reinforced, +/turf/simulated/floor/plating, +/area/outpost/mining_main/refinery) +"chs" = ( +/obj/effect/floor_decal/industrial/warning/dust{ + icon_state = "warning_dust"; + dir = 9 }, -/turf/simulated/floor/tiled, -/area/outpost/mining_main/eva) -"cgw" = ( -/obj/structure/table/rack, -/obj/item/clothing/suit/space/void/mining, -/obj/item/clothing/mask/breath, -/obj/item/clothing/head/helmet/space/void/mining, -/obj/item/stack/flag/green, -/obj/machinery/light{ - dir = 4; - status = 0 +/turf/simulated/floor/asteroid/ash/rocky, +/area/mine/unexplored) +"cht" = ( +/obj/machinery/door/firedoor{ + dir = 2 }, -/obj/effect/floor_decal/corner/brown/full{ - icon_state = "corner_white_full"; +/obj/structure/grille, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/window/reinforced, +/obj/structure/window/reinforced{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/outpost/mining_main/eva) +"chu" = ( +/obj/machinery/door/firedoor{ + dir = 2 + }, +/obj/structure/grille, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/window/reinforced, +/turf/simulated/floor/plating, +/area/outpost/mining_main/eva) +"chv" = ( +/obj/machinery/door/firedoor{ + dir = 2 + }, +/obj/structure/grille, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/window/reinforced, +/obj/structure/window/reinforced{ dir = 4 }, -/obj/machinery/newscaster{ - pixel_x = 32; - pixel_y = 0 - }, -/turf/simulated/floor/tiled, +/turf/simulated/floor/plating, /area/outpost/mining_main/eva) -"cgx" = ( +"chw" = ( /obj/machinery/door/firedoor{ dir = 2 }, @@ -64130,7 +64629,7 @@ }, /turf/simulated/floor/plating, /area/outpost/mining_main/refinery) -"cgy" = ( +"chx" = ( /obj/machinery/door/firedoor{ dir = 2 }, @@ -64139,63 +64638,28 @@ /obj/structure/window/reinforced{ dir = 1 }, -/turf/simulated/floor/plating, -/area/outpost/mining_main/refinery) -"cgz" = ( -/obj/structure/grille, /obj/structure/window/reinforced{ dir = 4 }, -/obj/structure/window/reinforced, +/turf/simulated/floor/plating, +/area/outpost/mining_main/refinery) +"chy" = ( +/obj/structure/grille, /obj/structure/window/reinforced{ icon_state = "rwindow"; dir = 1 }, +/obj/structure/window/reinforced, +/obj/structure/window/reinforced{ + icon_state = "rwindow"; + dir = 4 + }, /obj/machinery/door/firedoor{ dir = 2 }, /turf/simulated/floor/plating, /area/outpost/mining_main/refinery) -"cgA" = ( -/obj/machinery/door/firedoor{ - dir = 2 - }, -/obj/structure/grille, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 8 - }, -/turf/simulated/floor/plating, -/area/outpost/mining_main/eva) -"cgB" = ( -/obj/machinery/door/firedoor{ - dir = 2 - }, -/obj/structure/grille, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/window/reinforced, -/turf/simulated/floor/plating, -/area/outpost/mining_main/eva) -"cgC" = ( -/obj/machinery/door/firedoor{ - dir = 2 - }, -/obj/structure/grille, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/outpost/mining_main/eva) -"cgD" = ( +"chB" = ( /turf/simulated/floor/asteroid/ash/rocky, /area/skipjack_station/cavern) @@ -68159,9 +68623,9 @@ aaa aaa aaa aaa -arN +arM aaa -arN +arM aaa aaa aaa @@ -68415,11 +68879,11 @@ aaa aaa aaa aaa -ahb -ahb -ahb -ahb -ahb +aha +aha +aha +aha +aha aaa aaa aaa @@ -68671,13 +69135,13 @@ aaa aaa aaa aaa -arN -ahb -auL -awq -auL -ahb -arN +arM +aha +auK +awp +auK +aha +arM aaa aaa aaa @@ -68929,11 +69393,11 @@ aaa aaa aaa aaa -ahb -auL -auL -auL -ahb +aha +auK +auK +auK +aha aaa aaa aaa @@ -69185,13 +69649,13 @@ aab aab aab aaa -arN -ahb -auL -auL -auL -ahb -arN +arM +aha +auK +auK +auK +aha +arM aaa aaa aaa @@ -69443,11 +69907,11 @@ aab aab aab aab -ath -auM -auM -auM -azD +atg +auL +auL +auL +azC aaa aaa aaa @@ -69701,9 +70165,9 @@ aaa aaa aab aab -auN -auN -auN +auM +auM +auM aab aaa aaa @@ -69959,7 +70423,7 @@ aab aab aab aab -auN +auM aab aab aaa @@ -70214,9 +70678,9 @@ aab aab aab aab -anU +anT aab -auN +auM aab aab aab @@ -70470,12 +70934,12 @@ aaa aab aab aab -anU -arN -auN -auN +anT +arM +auM +auM aab -anU +anT aab aab aab @@ -70727,13 +71191,13 @@ aab aab aab aab -anU -anU -auN -auN -auN -arN -anU +anT +anT +auM +auM +auM +arM +anT aab aab aab @@ -70981,16 +71445,16 @@ aaa aab aab aab -anU -anU -anU -anU -arN -auN -auN -auN -anU -anU +anT +anT +anT +anT +arM +auM +auM +auM +anT +anT aab aab aab @@ -71240,15 +71704,15 @@ aab aab aab aab -anU -anU -anU -auN -auN -auN -arN -anU -anU +anT +anT +anT +auM +auM +auM +arM +anT +anT aab aab aab @@ -71498,15 +71962,15 @@ aab aab aab aab -anU -arN -auN -auN -auN -anU -anU -anU -anU +anT +arM +auM +auM +auM +anT +anT +anT +anT aab aab aaa @@ -71758,13 +72222,13 @@ aab aab aab aab -auN -auN -arN -anU -anU -anU -anU +auM +auM +arM +anT +anT +anT +anT aab aab aaa @@ -72015,13 +72479,13 @@ aab aab aab aab -auN +auM aab -anU -anU -anU -anU -anU +anT +anT +anT +anT +anT aab aab aab @@ -72272,11 +72736,11 @@ aab aab aab aab -auN +auM aab aab aab -anU +anT aab aab aab @@ -72529,7 +72993,7 @@ aab aab aab aab -auN +auM aab aab aab @@ -72786,7 +73250,7 @@ aab aab aab aab -auN +auM aab aab aab @@ -73043,7 +73507,7 @@ aab aab aab aab -auN +auM aab aab aab @@ -73300,7 +73764,7 @@ aab aab aab aab -auN +auM aab aab aab @@ -73557,7 +74021,7 @@ aab aab aab aab -auN +auM aab aab aab @@ -73814,7 +74278,7 @@ aab aab aab aab -auN +auM aab aab aab @@ -73831,7 +74295,7 @@ aaa aaa aab aab -anU +anT aaa aaa aaa @@ -74071,7 +74535,7 @@ aab aab aab aab -auN +auM aab aab aab @@ -74088,7 +74552,7 @@ aaa aaa aab aab -anU +anT aaa aaa aaa @@ -74328,7 +74792,7 @@ aab aab aab aab -auN +auM aab aab aab @@ -74584,9 +75048,9 @@ aab aab aab aab -auN -auN -auN +auM +auM +auM aab aab aab @@ -74834,25 +75298,25 @@ aaa aaa aaa aaa -alb -alb -alb -alb -alb -alb -alb -alb -awr -alb -alb -alb -alb -alb -alb -alb -alb -alb -alb +ala +ala +ala +ala +ala +ala +ala +ala +awq +ala +ala +ala +ala +ala +ala +ala +ala +ala +ala aab aab aab @@ -75091,25 +75555,25 @@ aaa aaa aaa aaa -alb +ala +amU +amU amV -amV -amW -aqt -arO -ati +aqs +arN +ath +auN +awr auO -aws -auP -ati -aAW -aCO -aED -aGC -amY -aKb -aLL -alb +ath +aAV +aCN +aEC +aGB +amX +aKa +aLK +ala aab aab aab @@ -75347,26 +75811,26 @@ aaa aaa aaa aaa -alb -alb +ala +ala +amU +amU amV amV -amW -amW -arO -atj -auP -awt -auP -atj -aAX -amW -aEE -aGD -aIi -amW -aLM -alb +arN +ati +auO +aws +auO +ati +aAW +amV +aED +aGC +aIh +amV +aLL +ala aab aab aab @@ -75604,26 +76068,26 @@ aaa aaa aaa aaa -alb -alV -amW -amW -amW -amW -arO -atk -auQ -awu -aye -atk -aAX -ayh -apn -aqw -aIj -aKc -aLM -alb +ala +alU +amV +amV +amV +amV +arN +atj +auP +awt +ayd +atj +aAW +ayg +apm +aqv +aIi +aKb +aLL +ala aab aab aab @@ -75856,33 +76320,33 @@ aab aaa aaa aab -ahb -ahb -ahb -ahb -ahb -ahb -ahb -amX +aha +aha +aha +aha +aha +aha +aha amW -amW -amW -arO -atl -auR -awv -ayf -alb -aAY -aCP -aEF -aqw -aIk -aKd -aLN -alb -alb -alb +amV +amV +amV +arN +atk +auQ +awu +aye +ala +aAX +aCO +aEE +aqv +aIj +aKc +aLM +ala +ala +ala aab aab aab @@ -76113,33 +76577,33 @@ aab aaa aaa aab -ahb -ahO -aiC -ajp -ake -ajp -ahb -amW -amW -amW -amW -arP -atm -auS -aww -ayg -azE -aAZ -aCQ -aEE -aGE -aIi -aKe -aLO -aNF -aPl -alb +aha +ahN +aiB +ajo +akd +ajo +aha +amV +amV +amV +amV +arO +atl +auR +awv +ayf +azD +aAY +aCP +aED +aGD +aIh +aKd +aLN +aNE +aPk +ala aab aab aab @@ -76370,33 +76834,33 @@ aab aab aab aab -ahb -ahP -aiD -ajp -akf -alc -alW -amY -anV -apk -aqu -aqu -aqu -apm -awx -ayh -azF -aqu -aCR -apn -aqw -aIl -aKf -aLP -aNG -aPm +aha +ahO +aiC +ajo +ake alb +alV +amX +anU +apj +aqt +aqt +aqt +apl +aww +ayg +azE +aqt +aCQ +apm +aqv +aIk +aKe +aLO +aNF +aPl +ala aab aab aab @@ -76627,33 +77091,33 @@ aaa aab aab aab -ahb -ahQ -aiE -ajq -akg -ald -alX -amZ -anW -apl -amW -amW -amW -auT -awy -apn -amW -amW -anW -aEG -aGF -aIm -amW -amW -alb -alb -alb +aha +ahP +aiD +ajp +akf +alc +alW +amY +anV +apk +amV +amV +amV +auS +awx +apm +amV +amV +anV +aEF +aGE +aIl +amV +amV +ala +ala +ala aab aab aab @@ -76884,31 +77348,31 @@ aaa aaa aab aab -ahb -ahP -aiF -ajp -akh -ale -alX -ana -anX -apm -aqv -arQ -atn -atn -awz -ayi -atn -atn -aCS -atn -aGG -aIn -amW -aLQ -alb +aha +ahO +aiE +ajo +akg +ald +alW +amZ +anW +apl +aqu +arP +atm +atm +awy +ayh +atm +atm +aCR +atm +aGF +aIm +amV +aLP +ala aab aab aab @@ -77141,31 +77605,31 @@ aaa aaa aab aab -ahb -ahR -aiG -ajr -aki -alf -ahb -anb -anY -apn -aqw -arR -ato -auU -awA -ayj -azG -aBa -aCT -amW -aGH -aCT -aKg -aLR -alb +aha +ahQ +aiF +ajq +akh +ale +aha +ana +anX +apm +aqv +arQ +atn +auT +awz +ayi +azF +aAZ +aCS +amV +aGG +aCS +aKf +aLQ +ala aab aab aab @@ -77398,32 +77862,32 @@ aaa aaa aab aab -ahc -ahc -aiH -ahc -akj -ahc -aiH -anc -anc -anc -aqx -ani -atp -auV -awB -auV -azH -ani -aCU -aEH -aCU -aCU -alb -alb -alb -aKl +ahb +ahb +aiG +ahb +aki +ahb +aiG +anb +anb +anb +aqw +anh +ato +auU +awA +auU +azG +anh +aCT +aEG +aCT +aCT +ala +ala +ala +aKk aab aab aab @@ -77655,32 +78119,32 @@ aaa aaa aab aaa -ahc -ahS -aiI -ajs -akk -aiI -aiI -anc -anZ -apo -aqy -ani -atq -auW -awC -auW -azI -ani -aCV -aEI -aGI +ahb +ahR +aiH +ajr +akj +aiH +aiH +anb +anY +apn +aqx +anh +atp +auV +awB +auV +azH +anh aCU -aKh -aLS -aNH -aKl +aEH +aGH +aCT +aKg +aLR +aNG +aKk aab aab aab @@ -77912,38 +78376,38 @@ aaa aaa aab aaa -ahc -ahT -aiJ -ajt -akl -aiJ -ahT -anc -aoa -app -aqz -ani -atr -auX -awD -ayk -azJ -ani -aCW -aEJ -aGJ -aCU -aKi -aLT -aNI -aKl +ahb +ahS +aiI +ajs +akk +aiI +ahS +anb +anZ +apo +aqy +anh +atq +auW +awC +ayj +azI +anh +aCV +aEI +aGI +aCT +aKh +aLS +aNH +aKk aaa aab aab aab aab -anU +anT aaa aaa aaa @@ -78169,32 +78633,32 @@ aaa aaa aab aaa -ahc -ahU -aiK -aju -akm -aiK -ahU -anc -aob -app -aqA -ani -ats -auY -awE -ayl -azK -ani -aCX -aEK -aCX -aCU -aKj -aLS -aNJ -aKl +ahb +ahT +aiJ +ajt +akl +aiJ +ahT +anb +aoa +apo +aqz +anh +atr +auX +awD +ayk +azJ +anh +aCW +aEJ +aCW +aCT +aKi +aLR +aNI +aKk aaa aab aab @@ -78426,32 +78890,32 @@ aaa aaa aab aaa -ahc -ahV -aiI -ajv -akn -alg -alY +ahb +ahU +aiH +aju +akm +alf +alX +anc +aob +app +aqA +arR +ats +ats +awE and -aoc -apq -aqB -arS -att -att -awF -ane -azL -ani -aCY -aEL -aGK -aCU +azK +anh +aCX +aEK +aGJ +aCT +aKj +aLT +aNH aKk -aLU -aNI -aKl aaa aaa aab @@ -78683,50 +79147,50 @@ aab aab aab aab -ahc -ahW -aiL -ajw -ako -aiL -ahW -anc -aod -apr -aqC -ani -atu -auZ -awG -aym -azM -ani -aCZ -aEM -aGL -aCU -aKl -aKl -aNK -aKl -aKl -aKl -aKl -aKl -aKl -aKl -aKl -aKl -aKl -aKl -aKl -aKl -aKl -aKl -aKl -aKl -aKl -aKl +ahb +ahV +aiK +ajv +akn +aiK +ahV +anb +aoc +apq +aqB +anh +att +auY +awF +ayl +azL +anh +aCY +aEL +aGK +aCT +aKk +aKk +aNJ +aKk +aKk +aKk +aKk +aKk +aKk +aKk +aKk +aKk +aKk +aKk +aKk +aKk +aKk +aKk +aKk +aKk +aKk +aKk aaa aaa aaa @@ -78940,36 +79404,36 @@ aab aab aab aab -ahc -ahc -ahc -ahc -akp -ahc -ahc -anc -aoe -anc -aqD -arT -atv -ava -awH -ayn -ava -arT -aDa -aEN -aDa -aIo -aKm -aLV -aNL -aPn -aRc -aSt -aUi -aVh +ahb +ahb +ahb +ahb +ako +ahb +ahb +anb +aod +anb +aqC +arS +atu +auZ +awG +aym +auZ +arS +aCZ +aEM +aCZ +aIn +aKl +aLU +aNK +aPm +aRb +aSs +aUh +aVg aWP aYe aZx @@ -78980,10 +79444,10 @@ aYe aYe bhx bja -aKm -blA -aLW aKl +blA +aLV +aKk aaa aaa aaa @@ -79199,48 +79663,48 @@ aab aab aab aab -aiM -ajx -akq -aiM -alZ -ane -ane -aps -aqE -arU -atw -avb -awI -ayo -atw -aBb -atw -aEO -atw -aIp -aKn -aKn -aNM -aPo -aRd -aSu -aKl -aKl +aiL +ajw +akp +aiL +alY +and +and +apr +aqD +arT +atv +ava +awH +ayn +atv +aBa +atv +aEN +atv +aIo +aKm +aKm +aNL +aPn +aRc +aSt +aKk +aKk aWQ -aKl -aKl -aKl -aKl -aKl -aKl -aKl -aKl +aKk +aKk +aKk +aKk +aKk +aKk +aKk +aKk bjb aYe aYe bmY -aKl +aKk aaa aab aab @@ -79456,34 +79920,34 @@ aab aab aab aab -aiM -ajy -akr -alh -ama -ama -aof -ama -aqF -arV -ama -avc -awJ -ayp -azN -aBc -aDb -aEP -aGM -aIq -aKo -aLW -aKl -aKl -aKl -aKl -aKl -aVi +aiL +ajx +akq +alg +alZ +alZ +aoe +alZ +aqE +arU +alZ +avb +awI +ayo +azM +aBb +aDa +aEO +aGL +aIp +aKn +aLV +aKk +aKk +aKk +aKk +aKk +aVh aWR aYf aZy @@ -79492,12 +79956,12 @@ bbY bdv beJ bgh -aKl -aKl -aKl -aKl +aKk +aKk +aKk +aKk bmZ -aKl +aKk aaa aab aab @@ -79713,34 +80177,34 @@ aab aab aab aab -aiM -ajx -aks -aiM -amb -amb -amb -amb -amb -amb -ane -avd -awG -ayq -amb -aBd -aDc -aDc -aGN -amb -amb -aKl -aKl +aiL +ajw +akr +aiL +ama +ama +ama +ama +ama +ama +and +avc +awF +ayp +ama +aBc +aDb +aDb +aGM +ama +ama +aKk +aKk aaa aaa aaa -aUj -aVj +aUi +aVi aWS aYg aZz @@ -79752,9 +80216,9 @@ bcb bcb bjc bkf -aKl +aKk bna -aKl +aKk aaa aaa aab @@ -79970,34 +80434,34 @@ aab aab aab aab -aiM -ajx -aks -aiM -amc -amc -amc -apt -aqG +aiL +ajw +akr +aiL amb -atx -avd -awG -ayq -azO -aBe -aDd -aEQ -aGO -aIr amb +amb +aps +aqF +ama +atw +avc +awF +ayp +azN +aBd +aDc +aEP +aGN +aIq +ama aaa -aLX -aLX -aLX +aLW +aLW +aLW aaa -aUj -aVk +aUi +aVj aWT aYh aZA @@ -80009,9 +80473,9 @@ beK bhy bjd bkg -aKl +aKk bna -aKl +aKk aaa aaa aab @@ -80227,34 +80691,34 @@ aab aab aab aab -aiM -ajz -aks -aiM -amd -anf -aog -apu -aqH -arW -aty -ave -awK -ayq -azP -aBf -aBf -aBf -aBf -aIs -amb -aLX -aLX -aPp -aLX -aLX -aLX -aVl +aiL +ajy +akr +aiL +amc +ane +aof +apt +aqG +arV +atx +avd +awJ +ayp +azO +aBe +aBe +aBe +aBe +aIr +ama +aLW +aLW +aPo +aLW +aLW +aLW +aVk aWU aYg aZB @@ -80266,9 +80730,9 @@ beL bhz bcb bkh -aKl +aKk bna -aKl +aKk aaa aab aab @@ -80284,8 +80748,8 @@ baL baL baL baL -bFW -bGY +bFX +bGZ blA baL baL @@ -80484,34 +80948,34 @@ aab aab aab aab -aiM -ajx -aks -aiM -ame -ang -aoh -ang -ang -arX -atz -avd -awG -ayq -azQ -aBg +aiL +ajw +akr +aiL +amd +anf +aog +anf +anf +arW +aty +avc +awF +ayp +azP aBf -aBf -aBf -aIt -amb -aLY -aNN -aPq -aRe -aSv +aBe +aBe +aBe +aIs +ama aLX -aVm +aNM +aPp +aRd +aSu +aLW +aVl aWV aYg aZC @@ -80523,9 +80987,9 @@ bcb bcb bcb bki -aKl +aKk bna -aKl +aKk aaa aab aab @@ -80537,7 +81001,7 @@ aab aab aab baL -bCc +bCd baM baM baM @@ -80545,7 +81009,7 @@ baM baM baM baM -bJP +bJQ baL aab aab @@ -80741,34 +81205,34 @@ aab aab aab aab -aiM -ajx -aks -aiM -amf -ang -aoi -ang -aqI -amb -atA -avd -awL -ayr -azR -aBg +aiL +ajw +akr +aiL +ame +anf +aoh +anf +aqH +ama +atz +avc +awK +ayq +azQ aBf -aBf -aGP -aIu -amb -aLZ -aNO -aPr -aRf -aSw -aLX -aVn +aBe +aBe +aGO +aIt +ama +aLY +aNN +aPq +aRe +aSv +aLW +aVm aWW aYg aZD @@ -80780,20 +81244,20 @@ bgi bhA bhA aZE -aKl +aKk bna -aKl +aKk aab aab aab -anU +anT aab aab aab aab aab aab -bBg +bBh bdL baL baL @@ -80802,13 +81266,13 @@ baL baL baL baL -bJQ +bJR baL aab aab -anU -anU -anU +anT +anT +anT aab aaa aaa @@ -80998,34 +81462,34 @@ aab aab aab aab -aiM -ajx -aks -aiM -amg -anh -aoj -amg -aqJ -amb -atB -avd -awG -ayq -azR -aBh -aBf -aER -aGQ -aIv -amb -aMa -aNO -aPs -aRg -aSx -aLX -aVo +aiL +ajw +akr +aiL +amf +ang +aoi +amf +aqI +ama +atA +avc +awF +ayp +azQ +aBg +aBe +aEQ +aGP +aIu +ama +aLZ +aNN +aPr +aRf +aSw +aLW +aVn aWX aYi aZE @@ -81037,9 +81501,9 @@ aZE aZE aZE aZE -aKl +aKk bnb -aKl +aKk aab aab aab @@ -81050,21 +81514,21 @@ aab bxQ aab aab -bBh +bBi bdL -aKo -aKo +aKn +aKn baL -bDV -aKo -aKo +bDW +aKn +aKn baL bdL baL aab aab -anU -anU +anT +anT aab aab aab @@ -81255,37 +81719,37 @@ aab aab aab aab -aiM -ajx -aks -aiM -amh -anh -aoj -apv -aqJ -amb -atC -avf -awM -ays -azS -aBh -aDe -aES -aGR -aIw -amb -aMb -aNP -aPt -aRh -aSy -aUk -aVp +aiL +ajw +akr +aiL +amg +ang +aoi +apu +aqI +ama +atB +ave +awL +ayr +azR +aBg +aDd +aER +aGQ +aIv +ama +aMa +aNO +aPs +aRg +aSx +aUj +aVo aWY aYj -aPC +aPB aab aab aab @@ -81294,9 +81758,9 @@ aab aab aab aab -aKl +aKk bna -aKl +aKk aab aab aab @@ -81307,14 +81771,14 @@ bwI bxR bwI aab -bBh +bBi bdL baL bdH baL bdH baL -aKo +aKn baL bdL baL @@ -81512,37 +81976,37 @@ aab aab aab aab -aiM -aiM -akt -aiM -aiM -ani -ani -ani -ani -ani -ani -avg -awN -ayt -amb -aBi -aBf -aBf -aGS -aIw -amb -aMc -aNO -aPq -aRi -aSz -aUl -aDn +aiL +aiL +aks +aiL +aiL +anh +anh +anh +anh +anh +anh +avf +awM +ays +ama +aBh +aBe +aBe +aGR +aIv +ama +aMb +aNN +aPp +aRh +aSy +aUk +aDm aWZ aYk -aPC +aPB aab bce bce @@ -81551,9 +82015,9 @@ bce bce aab aab -aKl +aKk bna -aKl +aKk aab aab aab @@ -81564,23 +82028,23 @@ bwJ bxS bwJ aab -bBh +bBi bdL baL -aKo +aKn baL -aKo +aKn baL baL baL -bJR -bFW +bJS +bFX baL aab aab aab -anU -anU +anT +anT aab aab aaa @@ -81769,37 +82233,37 @@ aab aab aab aab -aiM -ajx -aks -ajx -aiM -anj -anj -anj -anj -anj +aiL +ajw +akr +ajw +aiL ani -avh -awO -ayu -azQ -aBj -aBf -aBf -aGS -aIx -amb -aMd -aNQ -aPu -aRj -aNO -aUm -aVq +ani +ani +ani +ani +anh +avg +awN +ayt +azP +aBi +aBe +aBe +aGR +aIw +ama +aMc +aNP +aPt +aRi +aNN +aUl +aVp aWZ -aBu -aPC +aBt +aPB aab bce bdz @@ -81808,10 +82272,10 @@ bgj bce aab aab -aKl +aKk bna -aKl -anU +aKk +anT aab aab aab @@ -81819,19 +82283,19 @@ aab aab bwK bxT -bzi +bzj aab -bBh +bBi bdL baL -aKo +aKn bdH -aKo -aKo -aKo +aKn +aKn +aKn baL bdL -bKP +bKQ baL baL baL @@ -82026,37 +82490,37 @@ aab aab aab aab -aiM -ajy -aks +aiL ajx -aiM -anj -anj -anj -anj -anj +akr +ajw +aiL ani -avi -awG -ayv -azS -aBk -aDf -aET -aGT -aIy -amb -aMe -aNR -aPv -aRk -aSA -aUn -aVr +ani +ani +ani +ani +anh +avh +awF +ayu +azR +aBj +aDe +aES +aGS +aIx +ama +aMd +aNQ +aPu +aRj +aSz +aUm +aVq aXa -aBu -aPC +aBt +aPB aab bce bdA @@ -82065,39 +82529,39 @@ beO bce aab aab -aKl +aKk bna -aKl -anU -anU -anU -anU -anU +aKk +anT +anT +anT +anT +anT baL baL bxU baL aab -bBi +bBj bdL baL -aKo +aKn baL baL -aKo +aKn baL baL bdL -aKo +aKn beV -aKo +aKn bdH -aKo -aKo -aKo -aKo +aKn +aKn +aKn +aKn bpI -bFW +bFX baL baL baL @@ -82283,37 +82747,37 @@ aab aab aab aab -aiM -ajA -aks -ajx -aiM -anj -anj -anj -anj -anj +aiL +ajz +akr +ajw +aiL ani -avi -awG -ayw -amb -amb -amb -aEU -aGU -amb -amb -aMf -aNS -aPw -aRl -aSB -aLX -aVs +ani +ani +ani +ani +anh +avh +awF +ayv +ama +ama +ama +aET +aGT +ama +ama +aMe +aNR +aPv +aRk +aSA +aLW +aVr aWZ aYl -aPC +aPB baJ bce bdB @@ -82322,27 +82786,27 @@ bgk bce bce aab -aKl +aKk bna -aKl -anU -anU -anU -anU -anU +aKk +anT +anT +anT +anT +anT baL bwL bxV baL aab baL -bCd +bCe baL -aKo +aKn baL -bDV -aKo -aKo +bDW +aKn +aKn baL bdL baL @@ -82352,15 +82816,15 @@ baL baL baL baL -aKo -aKo +aKn +aKn bdH -aKo -aKo -aKo -aKo -aKo -aKo +aKn +aKn +aKn +aKn +aKn +aKn baL aaa aaa @@ -82540,36 +83004,36 @@ aab aab aab aab -aiN -ajx -aku -ali aiM -anj -anj -anj -anj -anj +ajw +akt +alh +aiL ani -avi -awG -ayx -azT -aBl -aDg -aEV -aGV -aIz -aKp -aDn -aDn -aPx -aRm -aSC -aUo -aDn +ani +ani +ani +ani +anh +avh +awF +ayw +azS +aBk +aDf +aEU +aGU +aIy +aKo +aDm +aDm +aPw +aRl +aSB +aUn +aDm aWZ -aBu +aBt aZF baJ bcf @@ -82579,9 +83043,9 @@ bdC bhB bce aab -aKl +aKk bnc -aKl +aKk baL baL baL @@ -82593,9 +83057,9 @@ bxW baL baL baL -bCe +bCf baL -aKo +aKn baL baL baL @@ -82603,11 +83067,11 @@ bdH baL bdL baL -anU +anT baL -bMW -bND -bOf +bMX +bNE +bOg baL baL baL @@ -82617,7 +83081,7 @@ baL baL baL baL -aKo +aKn baL aaa aaa @@ -82794,37 +83258,37 @@ aab aab aab aab -agE -ahd -ahX -aiM -aiM -akv -alj -aiM -anj -anj -anj -anj -anj +agD +ahc +ahW +aiL +aiL +aku +ali +aiL ani -avj -awP -ayy -azU -aBm -aDh -aEW -aGW -aIA -aKq -aDm -aDm -aPy -aRn -aSD -aUp -aVt +ani +ani +ani +ani +anh +avi +awO +ayx +azT +aBl +aDg +aEV +aGV +aIz +aKp +aDl +aDl +aPx +aRm +aSC +aUo +aVs aXb aYm aZG @@ -82835,46 +83299,46 @@ bdC bdC bhC bce -aKl -aKl +aKk +aKk bna -aKo +aKn bpI bqR brX blA -aLW +aLV baL baL bxX baL -bAi -bBj -bCf +bAj +bBk +bCg baL -bDV -aKo +bDW +aKn baL -aKo -aKo -aKo +aKn +aKn +aKn bdL baL baL baL -bMX -bNE -aKo +bMY +bNF +aKn baL -bPi -bPo -bPo -bPT -bRA -bPT -bSy +bPj bPp -aKo +bPp +bPU +bRB +bPU +bSz +bPq +aKn baL aaa aaa @@ -83051,37 +83515,37 @@ aab aab aab aab -agF -ahe -ahY -aiO -ajB -akw -alk -aiM -anj -anj -anj -anj -anj +agE +ahd +ahX +aiN +ajA +akv +alj +aiL ani -avk -awQ -ayz -azV -aBn -aDi -aEX -aGX -aIB -aKr -aMg -aNT -aPz -aRo -aSE -aUq -aVu +ani +ani +ani +ani +anh +avj +awP +ayy +azU +aBm +aDh +aEW +aGW +aIA +aKq +aMf +aNS +aPy +aRn +aSD +aUp +aVt aXc aYn aZH @@ -83105,33 +83569,33 @@ bto bto baM bto -bAj -aKo -aKo -bDa -bDa -bDa -bDa -bDa -bDa -bDa +bAk +aKn +aKn +bDb +bDb +bDb +bDb +bDb +bDb +bDb bdL -aKo -bLy +aKn +bLz baL baL -bNF +bNG baL baL -bPj -bPS -aKo +bPk +bPT +aKn baL -bRB bRC -bSz +bRD +bSA baL -aKo +aKn baL aaa aaa @@ -83308,39 +83772,39 @@ aab aab aab aab -agG -ahe -ahZ -aiP -aiM -aiM -aiM -aiM -ajF -ajF -ajF -ajF -ajF -atD -atD -atD -atD -atD -aBo -aDj -aEY +agF +ahd +ahY +aiO +aiL +aiL +aiL +aiL +ajE +ajE +ajE +ajE +ajE +atC +atC +atC +atC +atC +aBn +aDi +aEX +aGX aGY -aGZ -aKs -aMh -aNU -aPA -aDl -aSF -aUr -aVv +aKr +aMg +aNT +aPz +aDk +aSE +aUq +aVu aXd -aBu +aBt aZI baJ bci @@ -83366,29 +83830,29 @@ bvI bvI bvI bvI -bDW -bET -bFX -bGZ -bIl -bIZ -bJS +bDX +bEU +bFY +bHa +bIm +bJa +bJT bgo -bLz -bMu +bLA +bMv blB bgo -bOg +bOh baL -bPk -bPo -bQr -bQR -bRC -aKo -bSA +bPl +bPp +bQs +bQS +bRD +aKn +bSB baL -aKo +aKn baL aaa aaa @@ -83429,7 +83893,7 @@ aaa aaa aaa aaa -cbm +cbD aaa aaa aaa @@ -83565,40 +84029,40 @@ aab aab aab aab -agG -ahf -aia -aiQ agF -akx -all -ami -ank -aok -apw -aqK -arY -atE -avl -awR -ayA +ahe +ahZ +aiP +agE +akw +alk +amh +anj +aoj +apv +aqJ +arX atD -aBp -aDj -aEY -aGZ -aGZ -aKt -aMh -aNV -aPB -aRp -aSG -aUs -aVw +avk +awQ +ayz +atC +aBo +aDi +aEX +aGY +aGY +aKs +aMg +aNU +aPA +aRo +aSF +aUr +aVv aXe aYo -aPC +aPB baJ bci bdF @@ -83618,34 +84082,34 @@ buq bvI bwM bxY -bzj -bAk -bBk -bCg -bDb -bDX -bEU -bFY -bHa -bIm -bJa -bJa -bJa -bJa -bJa -bJa -bJa -bOh +bzk +bAl +bBl +bCh +bDc +bDY +bEV +bFZ +bHb +bIn +bJb +bJb +bJb +bJb +bJb +bJb +bJb +bOi baL -bPl -bPT -bQs -bPo -bRD -bPo -bPo +bPm +bPU +bQt +bPp +bRE +bPp +bPp baL -aKo +aKn baL aaa aaa @@ -83822,40 +84286,40 @@ aab aab aab aab +agF +ahf +aia +aiQ agG -ahg -aib -aiR -agH -aky -alm -amj -amj -amj -apx -amj -arZ -atF -avm -awS -avm -azW -aBq -aDj -aEZ -aHa -aIC -aKt -aMh -aNW -aPC -aPC -aPC -aUt -aDn +akx +all +ami +ami +ami +apw +ami +arY +atE +avl +awR +avl +azV +aBp +aDi +aEY +aGZ +aIB +aKs +aMg +aNV +aPB +aPB +aPB +aUs +aDm aXf aYp -aPC +aPB baJ bcj bdC @@ -83875,34 +84339,34 @@ bur bvI bwN bxZ -bzk -bAl -bBl -bCg -bDc -bDX -bEV -bFZ -bHb -bDX -bJa -bJT -bJT -bJT -bJT -bJT -bJa +bzl +bAm +bBm +bCh +bDd +bDY +bEW +bGa +bHc +bDY +bJb +bJU +bJU +bJU +bJU +bJU +bJb beT baL -bPm +bPn +bPV +bQu +bQT bPU -bQt -bQS -bPT -bPU -bSB +bPV +bSC baL -aKo +aKn baL aaa aaa @@ -83929,7 +84393,7 @@ aaa aaa aaa aaa -cbm +cbD aaa aaa aaa @@ -84075,43 +84539,43 @@ aaa aaa aab aab -aeV +aeU aab aab aab -agG -ahh -aib -aiS -ajC -akz -aln -amk -amk -amk -apy -aqL -asa -atG -avn -awT -ayB -azX -aBr -aDj -aFa -aGZ -aGZ -aKu -aMh -aNX -aPD -aRq -aSH -aUu -aDn +agF +ahg +aia +aiR +ajB +aky +alm +amj +amj +amj +apx +aqK +arZ +atF +avm +awS +ayA +azW +aBq +aDi +aEZ +aGY +aGY +aKt +aMg +aNW +aPC +aRp +aSG +aUt +aDm aXe -aBu +aBt aZJ baJ bck @@ -84132,34 +84596,34 @@ bsb bvI bwO bya -bzl -bAm -bBm -bBm -bDd -bDY -bEW -bGa -bHc -bIn -bJa -bJT -bJT -bJT -bJT -bJT -bJa +bzm +bAn +bBn +bBn +bDe +bDZ +bEX +bGb +bHd +bIo +bJb +bJU +bJU +bJU +bJU +bJU +bJb beT baL -bPn -bxX -bPT -bQT -bPT -bNE bPo +bxX +bPU +bQU +bPU +bNF +bPp baL -aKo +aKn baL aaa aaa @@ -84179,14 +84643,14 @@ aaa aaa aaa aaa -cbm -cbH +cbD +cca aaa aaa -ccX aab aab -cbn +aab +cbE aaa aab aab @@ -84336,39 +84800,39 @@ aab aab aab aab -agG -ahi -aic -aiT -ajD -akA -alo -aml -anl -anl -apz -aqM -asb -atH -avo -awU -ayC -azY -aBm -aDk -aFb -aHb -aID -aKv -aMi -aNV -aPE -aRr -aSI -aUv -aDn +agF +ahh +aib +aiS +ajC +akz +aln +amk +ank +ank +apy +aqL +asa +atG +avn +awT +ayB +azX +aBl +aDj +aFa +aHa +aIC +aKu +aMh +aNU +aPD +aRq +aSH +aUu +aDm aXe -aBu +aBt aZK baJ bce @@ -84378,9 +84842,9 @@ bce bce bce beT -aKl +aKk bnh -aKl +aKk aab bqS bsc @@ -84389,34 +84853,34 @@ bus bvI bwP byb -bzm -bAn -bBn -bCh +bzn +bAo +bBo +bCi bvI -bDZ -bEV -bFZ -bHd -bIo -bJa -bJT -bJT -bJT -bJT -bJT -bJa +bEa +bEW +bGa +bHe +bIp +bJb +bJU +bJU +bJU +bJU +bJU +bJb beT baL -bPo -bPo -bPo -bQU -aKo -bPo -aKo +bPp +bPp +bPp +bQV +aKn +bPp +aKn baL -aKo +aKn baL aaa aaa @@ -84436,14 +84900,14 @@ aaa aaa aaa aaa -cbn +cbE +aab +aab +aab aab aab aab -ccY -ccY aab -ccY aab aab aab @@ -84593,51 +85057,51 @@ aab aab aab aab -agG -ahj -aid -aiU -ajE -akB -alp -amm -anm -aol -apA -aqN -asc -atI -avp -awV -ayD -azZ -aBs -aDl -aFc -aDl -aDl -aKw -aDl -aNY -aDn -aRs -aSJ -aUv -aDn +agF +ahi +aic +aiT +ajD +akA +alo +aml +anl +aok +apz +aqM +asb +atH +avo +awU +ayC +azY +aBr +aDk +aFb +aDk +aDk +aKv +aDk +aNX +aDm +aRr +aSI +aUu +aDm aXe -aBu +aBt aZK -aPC -aKo -aKo +aPB +aKn +aKn bdI bgo bgo bgo beU -aKl +aKk bnh -aKl +aKk aab bqS bsd @@ -84646,26 +85110,26 @@ but bvI bwQ byc -bzn -bAo -bBo -bCi +bzo +bAp +bBp +bCj bvI -bEa -bEX -bFZ -bHe -bIp -bJa -bJT -bJT -bJT -bJT -bJT -bJa +bEb +bEY +bGa +bHf +bIq +bJb +bJU +bJU +bJU +bJU +bJU +bJb beT baL -bPp +bPq baL baL baL @@ -84695,10 +85159,10 @@ aaa aaa aaa aaa -ccg aab -cbn -ccX +aab +cbE +aab aaa aaa aab @@ -84714,7 +85178,7 @@ aab aab aaa aaa -aab +aaa aaa aaa aaa @@ -84850,47 +85314,47 @@ aab aab aab aab -agH -ahk -aie -aiV -agH -akC -alq -amm -ann -aom -apB -aqO -asd -atJ -avq -awW -ayE -aAa -aBt +agG +ahj +aid +aiU +agG +akB +alp +aml +anm +aol +apA +aqN +asc +atI +avp +awV +ayD +azZ +aBs +aDl +aFc +aHb +aDm +aKw +aMi +aNY +aPE +aRs +aSJ +aUu aDm -aFd -aHc -aDn -aKx -aMj -aNZ -aPF -aRt -aSK -aUv -aDn aXe -aBu +aBt aZK -aPC -aKo +aPB +aKn bdH beT -aKl -aKl -aKl +aKk +aKk +aKk aZO aZO bni @@ -84903,44 +85367,44 @@ buu bvI bwR byd -bzo -bAp -bAp -bCj +bzp +bAq +bAq +bCk bvI -bEb -bEY -bGa -bHf -bIq -bJa -bJT -bJT -bJT -bJT -bJT -bJa -bOi +bEc +bEZ +bGb +bHg +bIr +bJb +bJU +bJU +bJU +bJU +bJU +bJb +bOj blB -bPq +bPr blB -bQu -aKo -aKo -aKo -aKo -aKo -aKo -aKo -aKo -aKo -aKo +bQv +aKn +aKn +aKn +aKn +aKn +aKn +aKn +aKn +aKn +aKn bdH -aKo -aKo -aKo -aKo -aKo +aKn +aKn +aKn +aKn +aKn baL aab aab @@ -84953,7 +85417,7 @@ aaa aab aab aab -ccD +aab aaa aaa aaa @@ -84971,7 +85435,7 @@ aab aab aaa aaa -aab +aaa aaa aaa aaa @@ -84996,8 +85460,8 @@ aab aab aab aab -cgD -cgD +chB +chB aab aab aab @@ -85107,45 +85571,45 @@ aab aab aab aab -agE -agE -agE -agE -agE -akD -alr -amn -ano -aon -apC -aqP -ajF -atK -avr -awX -ayF -aAb -aBu -aDn -aDn -aHd -aIE -aKy -aDn -aDn -aPG -aRu -aSI -aUw -aIE +agD +agD +agD +agD +agD +akC +alq +amm +ann +aom +apB +aqO +ajE +atJ +avq +awW +ayE +aAa +aBt +aDm +aDm +aHc +aID +aKx +aDm +aDm +aPF +aRt +aSH +aUv +aID aXg -aBu +aBt aZL -aPC -aKo -aKo +aPB +aKn +aKn beT -aKl +aKk aab aab aZO @@ -85160,44 +85624,44 @@ buv bvI bwS bye -bzp -bAp -bAp -bCk +bzq +bAq +bAq +bCl bvI -bEc -bEZ -bGb -bHg -bIr -bJa -bJa -bJa -bJa -bJa -bJa -bJa -aKl -aKl -aKl -aKl +bEd +bFa +bGc +bHh +bIs +bJb +bJb +bJb +bJb +bJb +bJb +bJb +aKk +aKk +aKk +aKk beT baL baL -aKo +aKn baL baL -bQV -aKo +bQW +aKn baL baL baL baL baL -bRH +bRI baL baL -aKo +aKn baL baL baL @@ -85211,13 +85675,13 @@ baL aaa aaa aaa +anT +anT +anT +anT aab aab -aab -aab -aab -aab -aab +ceC aab aab aab @@ -85243,19 +85707,19 @@ aab aab aab aab -cgD -cgD -cgD -cgD -cgD -cgD -cgD -cgD -cgD -cgD -cgD -cgD -cgD +chB +chB +chB +chB +chB +chB +chB +chB +chB +chB +chB +chB +chB aab aab aab @@ -85368,41 +85832,41 @@ aab aab aab aab -ajF -akE -als -amo -anp -aoo -apB -aqQ -ajF -atL -avs -awY -ayF -aAc -aBv -aDo -aFe -aHe -aIF -aKz -aMk -aOa -aPH -aRv -aSL -aRv +ajE +akD +alr +amn +ano +aon +apA +aqP +ajE +atK +avr +awX +ayE +aAb +aBu +aDn +aFd +aHd +aIE +aKy +aMj +aNZ aPG +aRu +aSK +aRu +aPF aXh aYq aZM -aPC -aKo +aPB +aKn bdI beU -aKl +aKk aab aab aZO @@ -85417,64 +85881,64 @@ bqS bvI bwT byf -bzq -bAq -bBp -bCl +bzr +bAr +bBq +bCm bvI -bEd -bFa -bDX -bHh -bIs -bJb -bJU -bKQ -bLA -bMv -bLE -bNG -bOj -bOR -bPr -aKl +bEe +bFb +bDY +bHi +bIt +bJc +bJV +bKR +bLB +bMw +bLF +bNH +bOk +bOS +bPs +aKk beT baL -bRE -bRT -bSC -bRG -aKo -aKo -aKo +bRF +bRU +bSD +bRH +aKn +aKn +aKn baL -bVE -aKo -aKo -aKo -bSC +bVF +aKn +aKn +aKn +bSD baL -aKo +aKn bpI -aKm +aKl baL baL baL baL bpI -aLW -aKm +aLV +aKl baL aaa aaa aaa +anT +anT +anT +anT +anT aab -aab -aab -aab -aaa -aaa -aaa +ced aab aab aab @@ -85501,18 +85965,18 @@ aab aab aab aab -cgD -cgD -cgD -cgD -cgD -cgD -cgD -cgD -cgD -cgD -cgD -cgD +chB +chB +chB +chB +chB +chB +chB +chB +chB +chB +chB +chB aab aab aab @@ -85625,43 +86089,43 @@ aab aab aab aab -ajF -ajF -ajF -amp -ajF -aop -apD -aop -ajF -atM -avt -awZ -ayG -ayG -aBw -aDp -aDp -aDp -aDp -aDp -aDp -aDp -aDp -aDp -aDp -aDp -aVx +ajE +ajE +ajE +amo +ajE +aoo +apC +aoo +ajE +atL +avs +awY +ayF +ayF +aBv +aDo +aDo +aDo +aDo +aDo +aDo +aDo +aDo +aDo +aDo +aDo +aVw aXi aYr -aPC -aPC +aPB +aPB baL bdJ beV -aKl -aKl -aKl +aKk +aKk +aKk aZO blG bnl @@ -85674,62 +86138,64 @@ buw bvI bwU byg -bzr -bzr -bzr -bCm +bzs +bzs +bzs +bCn bvI -bEe -bDa -bEe -bHi -bEe -bJb -bJV -bKR -bLB -bLE -bLE -bNH -bOk -bOS -bOk -aKl -bQv -bQV -bRF -aKo -aKo -aKo -aKo -bUk -aKo -bRH +bEf +bDb +bEf +bHj +bEf +bJc +bJW +bKS +bLC +bLF +bLF +bNI +bOl +bOT +bOl +aKk +bQw +bQW +bRG +aKn +aKn +aKn +aKn bUl -aKo +aKn +bRI +bUm +aKn bdH -aKo -aKo +aKn +aKn baL -aKo +aKn bdH -aKo -aKo -aKo -aKo -aKo -aKo -aKo -aKo +aKn +aKn +aKn +aKn +aKn +aKn +aKn +aKn baL aaa aaa -bRI -bRI -bRI -bRI -bRI -aaa +bRJ +bRJ +bRJ +bRJ +bRJ +anT +aab +ced aab aab aab @@ -85752,24 +86218,22 @@ aaa aaa aaa aaa -aaa -aaa aab aab aab aab -cgD -cgD -cgD -cgD -cgD -cgD -cgD -cgD -cgD -cgD -cgD -cgD +chB +chB +chB +chB +chB +chB +chB +chB +chB +chB +chB +chB aab aab aab @@ -85884,34 +86348,34 @@ aab aab aab aaa -afr -amq -ajF -aoq -apE -aqR -ase -atN -avu -axa -ayH -aAd -aBx -aDq -aFf -aHf +afq +amp +ajE +aop +apD +aqQ +asd +atM +avt +awZ +ayG +aAc +aBw aDp -aKA -aMl -aDp -aPI -aRw -aSM -aDp -aVy +aFe +aHe +aDo +aKz +aMk +aDo +aPH +aRv +aSL +aDo +aVx aXj aYs -aUC +aUB aab baL bdK @@ -85932,41 +86396,41 @@ bvJ bwV byh bsh -bAr +bAs bsh bsh -bDe -bEf -bFb -bGc -bHj -bIt -bJc -bJW -bKS -bLC -bLE -bLE -bNG -bOk -bOk -bOk -aKl +bDf +bEg +bFc +bGd +bHk +bIu +bJd +bJX +bKT +bLD +bLF +bLF +bNH +bOl +bOl +bOl +aKk beT -aKo +aKn bdH -aKo +aKn bdH -bTk -aKo +bTl +aKn bdH -aKo +aKn baL -aKo -aKo -aKo -aKo -aKo +aKn +aKn +aKn +aKn +aKn baL beV baL @@ -85979,14 +86443,17 @@ baL baL beV baL -bRI -bRI -bRI -ccZ -cdi -cdv -bRI -aab +bRJ +bRJ +bRJ +cdk +cdu +cdH +bRJ +cfh +cec +ceD +ceU aab aab aab @@ -86009,24 +86476,21 @@ aaa aaa aaa aaa -aaa -aaa -aaa aab aab -cgD -cgD -cgD -cgD -cgD -cgD -cgD -cgD -cgD -cgD -cgD -cgD -cgD +chB +chB +chB +chB +chB +chB +chB +chB +chB +chB +chB +chB +chB aab aab aab @@ -86141,38 +86605,38 @@ aab aab aab aab -afr -amr -ajF -aor -amj -aqS -asf -atO -avv -axb -ayH -aAe -aBy -aDp -aFg -aHg -aDp -aKB -aFo -aDp -aFo -aFo -aFo -aDp -aVz +afq +amq +ajE +aoq +ami +aqR +ase +atN +avu +axa +ayG +aAd +aBx +aDo +aFf +aHf +aDo +aKA +aFn +aDo +aFn +aFn +aFn +aDo +aVy aXk aYt -aUC +aUB aab baL bdL -aKo +aKn aZO aZO bjf @@ -86189,65 +86653,71 @@ bvK bwW bvK bvK -bAs +bAt bvK -bCn -bDf -bEg -bFc +bCo +bDg +bEh +bFd bvK -bHk +bHl bvK -bJd -bJX -bKT -bLD -bMw -bMY -bJb -bJb -bJb -bJb -aKl +bJe +bJY +bKU +bLE +bMx +bMZ +bJc +bJc +bJc +bJc +aKk beT -aKo -aKo -aKo -aKo -aKo -aKo -aKo -aKo -aKo -aKo -aKo -aKo -aKo -bRG +aKn +aKn +aKn +aKn +aKn +aKn +aKn +aKn +aKn +aKn +aKn +aKn +aKn +bRH baL bdI bYh -bYC +bYz bYh bYh -bSH -bSH -bSH -bSH -bSH -bSH -cbI -bSH -ccE -bSH -bSH -cdw -bRI +bSI +bSI +bSI +bSI +bSI +bSI +ccb +bSI +ccU +bSI +bSI +cdI +bRJ +cee +cem +cen +ceV +aab +aab +aab aab aab aab aab -cez aab aab aab @@ -86261,12 +86731,6 @@ aaa aaa aaa aaa -aaa -aaa -aaa -aaa -aaa -aaa aab aab aab @@ -86275,19 +86739,19 @@ aab aab aab aab -cgD -cgD -cgD -cgD -cgD -cgD -cgD -cgD -cgD -cgD -cgD -cgD -cgD +chB +chB +chB +chB +chB +chB +chB +chB +chB +chB +chB +chB +chB aab aab aab @@ -86398,34 +86862,34 @@ aab aab aab aab -afr -ams -ajF -aos -amj -aqT -asf -atP -avv -axc -ayH -aAf -aBz -aDp -aFh -aHh -aDp -aHh -aMm -aDp -aHh -aRx -aHh -aDp -aVA +afq +amr +ajE +aor +ami +aqS +ase +atO +avu +axb +ayG +aAe +aBy +aDo +aFg +aHg +aDo +aHg +aMl +aDo +aHg +aRw +aHg +aDo +aVz aXk aYu -aUC +aUB aab baL bdL @@ -86446,78 +86910,78 @@ bvL bwX bwX bwX -bAt +bAu bwX -bCo +bCp bwX -bEh -bFd -bGd +bEi +bFe +bGe bsh -bIu -bJe -bJY -bKS -bLE -bLE -bMZ -bLE -bOl -bOT -bPs +bIv +bJf +bJZ +bKT +bLF +bLF +bNa +bLF +bOm +bOU +bPt baL beT -aKo -bRG +aKn +bRH bdH -aKo -aKo -aKo -bUl -aKo +aKn +aKn +aKn +bUm +aKn baL -bRT -aKo -bQV +bRU +aKn +bQW bdH -aKo -bQV -bXL +aKn +bQW +bXM bYi -bYD +bYA bYi bYi -bZz -bZz -bZz -bZz -bZz -bZz -bZz -bZz -bZz -bZz -bZz -bVS -bRI +bYi +bZG +bZG +bZG +bZG +bZG +bZG +bZG +bZG +bZG +bZG +bVT +bRJ +cef +cgO +cep +cfh +cec +cec +cec +cec +cec +cec +cec +cec +cec +cec +cec +cec +ceU aab -aab -aab -cel -ceA -cel -aab -aab -aab -aab -aab -aaa -aaa -aab -aaa -aaa -aaa -aaa aaa aaa aaa @@ -86532,19 +86996,19 @@ aab aab aab aab -cgD -cgD -cgD -cgD -cgD -cgD -cgD -cgD -cgD -cgD -cgD -cgD -cgD +chB +chB +chB +chB +chB +chB +chB +chB +chB +chB +chB +chB +chB aab aab aab @@ -86655,34 +87119,34 @@ aab aab aab aaa -afr -amt -ajF -aot -apF -aqU -asf -atQ -avw -axd -ayH -aAg -aBA -aDp -aFi -aHi -aIG -aKC -aHk -aOb -aPJ -aHk -aSN -aUx -aVB +afq +ams +ajE +aos +apE +aqT +ase +atP +avv +axc +ayG +aAf +aBz +aDo +aFh +aHh +aIF +aKB +aHj +aOa +aPI +aHj +aSM +aUw +aVA aXk -aVB -aUC +aVA +aUB aab baL bdM @@ -86706,75 +87170,75 @@ byi byi byi byi -bDg +bDh bvM bvM bvM bvM bvM -bJb -bJZ -bKU -bLF -bMx -bNa -bNI -bOm -bJb -bPt +bJc +bKa +bKV +bLG +bMy +bNb +bNJ +bOn +bJc +bPu baL -bQw +bQx baL baL baL baL baL baL -bUm -bSC +bUn +bSD baL baL baL baL baL -bWR -aKo -bXL +bWS +aKn +bXM bYi -bYE +bYB bYT -bZm -bZz -bZV -cal -caE -caX -cbo -cbJ -cch -ccF -ccF -bZz -cdx -bRI -aab -aab -aab -aab -cez -aab +bZl +bZE +cae +cay +caT +cbl +cbF +ccc +ccz +cbH +cbG +bZG +cdJ +bRJ +cef +cgO +ceE +cgO +cgO +cfu +cfG +cgO +cgO +cfu +cgO +cfi +cgO +cgO +cgl +cgO ceV aab -aab -aab -aab -aab -aaa -aab -aaa -aaa -aaa -aaa aaa aaa aaa @@ -86787,22 +87251,22 @@ aaa aab aab aab -cgD -cgD -cgD -cgD -cgD -cgD -cgD -cgD -cgD -cgD -cgD -cgD -cgD -cgD -cgD -cgD +chB +chB +chB +chB +chB +chB +chB +chB +chB +chB +chB +chB +chB +chB +chB +chB aab aab aaa @@ -86912,34 +87376,34 @@ aab aab aab aaa -afr -amt -ajF -ajF -ajF -ajF -asf -asf -asf -asf -ayH -aAh -aBB -aDp -aFj -aFm -aFm -aFm -aFm -aOc -aFm -aFm -aSO -aUy -aVB +afq +ams +ajE +ajE +ajE +ajE +ase +ase +ase +ase +ayG +aAg +aBA +aDo +aFi +aFl +aFl +aFl +aFl +aOb +aFl +aFl +aSN +aUx +aVA aXk -aVB -aUC +aVA +aUB aab baL bdM @@ -86962,76 +87426,76 @@ byj byj byj byj -bCp -bDh -bEi -bFe -bGe -bHl -bIv -bIv -bIv -bIv -bIv -bIv -bIv -bIv -bIv -bJb -bPt -bPV +bCq +bDi +bEj +bFf +bGf +bHm +bIw +bIw +bIw +bIw +bIw +bIw +bIw +bIw +bIw +bJc +bPu +bPW beT -bQW +bQX baL -bRU -bSD -bTl +bRV +bSE +bTm baL baL baL baL -bRI -bVR -bSH -bSH -bSH -bSH -bVU -bYi -bYF -bYU -bZn -bZA -bZW -cam -caF -caX -cbp -cbK -cci -caX -cda -bZz +bRJ bVS -bRI +bSI +bSI +bSI +bSI +bVV +bYi +bYC +bYU +bZm +bZF +caf +caz +caU +cbl +cbG +cbH +ccA +cbl +cdl +bZG +bVT +bRJ +cef +cgO +ceE +cgO +ceH +cei +cfH +cfZ +cgm +cei +cfY +cgO +cfi +cgO +cei +cgO +ceV aab -aab -aab -cem -ceB -cdO -ceW -cfl -cfy -cdO -cfU -aab -aab -aab -aab -aaa -aaa -aaa aaa aaa aaa @@ -87042,25 +87506,25 @@ aab aaa aaa aab -cgD -cgD -cgD -cgD -cgD -cgD -cgD -cgD -cgD -cgD -cgD -cgD -cgD -cgD -cgD -cgD -cgD -cgD -cgD +chB +chB +chB +chB +chB +chB +chB +chB +chB +chB +chB +chB +chB +chB +chB +chB +chB +chB +chB aab aaa aaa @@ -87169,34 +87633,34 @@ aab aab aab aaa -afr -amt -afr -aou -apG -afr -asg -akF -akF -akF -akF -akF -aBC -aDr -aFk -aHj -aHj -aKD -aMn -aOd -aHj -aHj -aSP -aUz -aVC -aXl +afq +ams +afq +aot +apF +afq +asf +akE +akE +akE +akE +akE +aBB +aDq +aFj +aHi +aHi +aKC +aMm +aOc +aHi +aHi +aSO +aUy aVB -aUC +aXl +aVA +aUB baL baL bdM @@ -87216,80 +87680,80 @@ buA bvM bxa byk -bzs -bzs -bzs -bzs -bDi -bEj -bFf -bGf -bHm -bIv -bJf -bKa -bKV -bLG -bMy -bNb -bNJ -bOn -bIv -bPu +bzt +bzt +bzt +bzt +bDj +bEk +bFg +bGg +bHn +bIw +bJg +bKb +bKW +bLH +bMz +bNc +bNK +bOo +bIw +bPv baL -bOi -bQX +bOj +bQY baL -bPT -bSE -bNE -bTK -bUn -bUI -bVh -bRI -bVS -bWl -bWl -bWl -bWl -bWl -bWl -bWl -bWl -bRI -bZz -bZX -can -caG -caY -caH -caH -caH -caH -caH -cdj -cdy -bRI +bPU +bSF +bNF +bTL +bUo +bUJ +bVi +bRJ +bVT +bWm +bWm +bWm +bWm +bWm +bWm +bWm +bWm +bWm +bZG +cag +caA +caV +cbm +caW +ccd +caW +caW +caW +cdv +cdK +bRJ +cef +cgO +ceE +cgO +ceH +cei +cfI +cga +cgn +cei +cgE +cfi +cgO +chf +cei +cfi +ceV aab aab -aab -cen -ceC -cdO -ceX -cea -cfz -cdO -cfV -aab -aab -aab -aab -aab -aaa -aaa -aaa aaa aaa aaa @@ -87300,24 +87764,24 @@ aaa aaa aab aab -cgD -cgD -cgD -cgD -cgD -cgD -cgD -cgD -cgD -cgD -cgD -cgD -cgD -cgD -cgD -cgD -cgD -cgD +chB +chB +chB +chB +chB +chB +chB +chB +chB +chB +chB +chB +chB +chB +chB +chB +chB +chB aab aaa aaa @@ -87426,31 +87890,31 @@ aab aab aab aaa -afr -amu -anq -aov -apH -afr -ahr -afr -afr -afr -afr -afr -afr -aDp -aFl -aHk -aHk -aKE -aHk -aHk -aHk -aHk -aSQ -aUA -aVB +afq +amt +anp +aou +apG +afq +ahq +afq +afq +afq +afq +afq +afq +aDo +aFk +aHj +aHj +aKD +aHj +aHj +aHj +aHj +aSP +aUz +aVA aXm aYv aZN @@ -87473,83 +87937,83 @@ buB bvN bxb byl -bzt -bAu -bBq -bCq -bDj -bEk -bFg -bGg -bHn -bIv -bJg -bKb -bKW +bzu +bAv +bBr +bCr +bDk +bEl +bFh +bGh +bHo +bIw +bJh bKc -bMz -bKi -bKi -bKi +bKX +bKd bMA -bPs +bKj +bKj +bKj +bMB +bPt baL -aKl -bOh -bRH -bRV -bSF +aKk +bOi +bRI +bRW bSG -bTL -bNE -bUJ -bVi -bRI -bVS -bWl -bWE -bWE -bWE -bWE -bWE -bYG -bWl -aab -bZz -bZY -cao -caH -caZ -caX -caX -caX -caX -cdb -bZz -bVS -bRI -aab -aab -aab -ceo -ceC -cdO -ceY -cfm -cfA -cdO -cfW -aab -aab -aab -aab +bSH +bTM +bNF +bUK +bVj +bRJ +bVT +bWm +bWF +bWF +bWF +bWF +bWF +bYD +bWm +bZn +bZH +cah +caB +caW +cbn +cbl +cce +cbl +cbl +cdm +bZG +bVT +bRJ +ceg +cgO +ceE +cgO +ceH +cei +cfJ +cgb +cgo +cei +cgF +cgO +cgO +chg +cei +cgO +ceV aab aaa aaa aaa -aaa -aaa -aaa +aab aab aaa aaa @@ -87557,24 +88021,24 @@ aaa aaa aab aab -cgD -cgD -cgD -cgD -cgD -cgD -cgD -cgD -cgD -cgD -cgD -cgD -cgD -cgD -cgD -cgD -cgD -cgD +chB +chB +chB +chB +chB +chB +chB +chB +chB +chB +chB +chB +chB +chB +chB +chB +chB +chB aab aaa aaa @@ -87683,33 +88147,33 @@ aab aaa aaa aaa -afr -amt -afr -aow -apI -afr -ahr -afr +afq +ams +afq +aov +apH +afq +ahq +afq aaa aaa aaa aaa aaa -aDs -aFm -aHl -aIH -aKF -aMo -aFm -aPK -aFo -aSR -aUB -aVD +aDr +aFl +aHk +aIG +aKE +aMn +aFl +aPJ +aFn +aSQ +aUA +aVC aXk -aVB +aVA aZO baN baN @@ -87730,83 +88194,83 @@ buC bvM bxc bym -bzu -bAv -bBr -bCr -bDk -bEl -bFh -bGh -bHo -bIv +bzv +bAw +bBs +bCs +bDl +bEm +bFi +bGi +bHp +bIw +bJi +bKd bJh -bKc -bJg -bLH -bMA -bNc -bKi -bOo -bIv -bIv -bIv -aKl -bOh +bLI +bMB +bNd +bKj +bOp +bIw +bIw +bIw +aKk +bOi baL -bPU -bSG -bTm -bTM -bUo -bUK -bVj -bRI -bVS -bWl -bWE -bWS -bWS -bWS -bWS -bWE -bWl -aab -bZz -bZZ -cap -caI -cba -cbq -cbq -ccj -ccF -ccF -bZz -bVS -bRI -aaa -aab -aab -aab -cdO -cdO -ceZ -cfn -ceZ -cdO -cdO -cge -aab -aab -aab -aab +bPV +bSH +bTn +bTN +bUp +bUL +bVk +bRJ +bVT +bWm +bWF +bWT +bWT +bWT +bWT +bWF +bWm +bZo +bZG +cai +caC +caX +cbo +cbo +cbo +ccB +cbl +caj +bZG +bVT +bRJ +ceh +cem +ceG +cgO +cei +cei +cfK +cgc +cfK +cei +cei +cgP +cgO +cgO +cei +cgO +ceV aab aaa aaa aaa -aaa -aaa +aab aab aab aab @@ -87814,24 +88278,24 @@ aaa aaa aab aab -cgD -cgD -cgD -cgD -cgD -cgD -cgD -cgD -cgD -cgD -cgD -cgD -cgD -cgD -cgD -cgD -cgD -cgD +chB +chB +chB +chB +chB +chB +chB +chB +chB +chB +chB +chB +chB +chB +chB +chB +chB +chB aab aaa aaa @@ -87933,40 +88397,40 @@ aab aab aab aab -afr -afr -afr -afr -afr -afr -afr -afr -amv -afr -afr -afr -afr -ash -afr -afr -afr -afr -afr +afq +afq +afq +afq +afq +afq +afq +afq +amu +afq +afq +afq +afq +asg +afq +afq +afq +afq +afq aaa -aDp -aFn -aHm -aII -aDp -aMp -aOe -aPL -aRy -aSS -aDp -aVE +aDo +aFm +aHl +aIH +aDo +aMo +aOd +aPK +aRx +aSR +aDo +aVD aXn -aVB +aVA aZO baO baO @@ -87987,83 +88451,83 @@ buD bvM bxd bym -bzs -bzs -bBs -bCs -bDl -bzs -bFi -bCp -bHp -bIv -bJi -bKc -bJg -bLI -bIv -bNd -bNK -bOp -bIv -aab -aab -aKl -bOh -bRI -bRI -bRI -bRI -bRI -bRI -bRI -bRI -bRI -bVT -bWl +bzt +bzt +bBt +bCt +bDm +bzt +bFj +bCq +bHq +bIw +bJj +bKd +bJh +bLJ +bIw +bNe +bNL +bOq +bIw +aaa +aaa +aKk +bOi +bRJ +bRJ +bRJ +bRJ +bRJ +bRJ +bRJ +bRJ +bRJ +bVU +bWm +bWG bWF -bWE -bWE -bWE -bWE -bWE -bWl -aab -bZz -caa -caq -caJ -bZz -bZz -bZz -bZz -bZz -bZz -bZz -bVS -bRI -cdO -cdO -cdO -cdO -cdO -ceL -cfa -cfo -cfB -cfM -cdO -cdO -cdO -cdO -cdO -aab +bWF +bWF +bWF +bWF +bWm +bZo +bZG +caj +caD +caY +cbp +cbH +ccf +cbl +ccV +caj +bZG +bVT +bRJ +cei +cei +cei +cei +cei +cfv +cfL +cgd +cgp +cgx +cei +cei +cgX +chh +cei +ceF +ceV aab aaa aaa aaa -aaa -aaa +aab aab aab aab @@ -88071,24 +88535,24 @@ aab aaa aab aab -cgD -cgD -cgD -cgD -cgD -cgD -cgD -cgD -cgD -cgD -cgD -cgD -cgD -cgD -cgD -cgD -cgD -cgD +chB +chB +chB +chB +chB +chB +chB +chB +chB +chB +chB +chB +chB +chB +chB +chB +chB +chB aab aaa aaa @@ -88184,46 +88648,46 @@ aaR aab aab aab -ads -adK +adr +adJ aaR aaR -afr -afr -afr -agI -ahl -aif -aiW -aiW -akF -alt -amw -akF -aox -aov -aqV -asi -atR -aov -axe -ayI -afr +afq +afq +afq +agH +ahk +aie +aiV +aiV +akE +als +amv +akE +aow +aou +aqU +ash +atQ +aou +axd +ayH +afq aaa -aDp -aFo -aFo -aFo -aDp -aMq -aFo -aFo -aFo -aFo -aDp -aVB +aDo +aFn +aFn +aFn +aDo +aMp +aFn +aFn +aFn +aFn +aDo +aVA aXk -aVB +aVA aZO baP bcl @@ -88244,83 +88708,83 @@ buy bvM bxe byn -bzv -bAw -bBt -bCt -bDm -bEm -bFj -bGi -bHq -bIv -bJj -bKd -bKX -bLJ -bIv -bIv -bIv -bIv -bIv -bIv -bIv -bIv -bQY -bRJ -bRW -bSH -bSH -bSH -bSH -bSH -bSH -bSH -bVU -bWl -bWE -bWT -bWE -bWE +bzw +bAx +bBu +bCu +bDn +bEn +bFk +bGj +bHr +bIw +bJk +bKe +bKY +bLK +bIw +bIw +bIw +bIw +bIw +bIw +bIw +bIw +bQZ +bRK +bRX +bSI +bSI +bSI +bSI +bSI +bSI +bSI +bVV +bWm +bWF +bWU +bWF +bWF bYj -bWE -bWl -aab -bZz -bZz -car -bZz -bZz -cbr -cbL -cbL -cbL -cbL -cdk -cdz -cdF -cdO -cdR -cdY -cdY -ceD -ceM -cfb -cfp -cfC -cfN -cfX -cgf -cgo -cgu -cgA +bWF +bWm +bZp +bZG +bZG +caE +bZG +bZG +cbI +cbI +ccC +cbI +cbI +bZG +cdL +cdS +cei +ceq +ceI +ceW +cfj +cfw +cfM +cge +cgq +cgy +cgG +cgQ +cgY +chi +cht +cfi +ceV aab aab aaa aaa -aaa -aaa -aaa +aab aab aab aab @@ -88328,24 +88792,24 @@ aab aaa aab aab -cgD -cgD -cgD -cgD -cgD -cgD -cgD -cgD -cgD -cgD -cgD -cgD -cgD -cgD -cgD -cgD -cgD -cgD +chB +chB +chB +chB +chB +chB +chB +chB +chB +chB +chB +chB +chB +chB +chB +chB +chB +chB aab aaa aaa @@ -88445,42 +88909,42 @@ acD aaS acF acF -afs -afK -agk -agJ -ahm afr -afr -afr -afr -afr -amx -anr -aoy -apJ -aqW -asj -atS -atS -axf -ayJ -afr -afr -aDp -aFp -aHn -aIJ -aDp -aMr -aFm -aPM -aRz -aST -aDp -aVF +afJ +agj +agI +ahl +afq +afq +afq +afq +afq +amw +anq +aox +apI +aqV +asi +atR +atR +axe +ayI +afq +afq +aDo +aFo +aHm +aII +aDo +aMq +aFl +aPL +aRy +aSS +aDo +aVE aXk -aVB +aVA aZO baQ bcm @@ -88507,102 +88971,102 @@ bvO bvO bvO bvO -bFk -bFk -bFk -bFk -bJk -bKe -bKY -bLK -bIv -bNe -bIv -bOq -bOq -bOq -bOq -bQx -bQZ -bRK -bRX -bRK -bRK -bRK -bRK -bRK -bRK -bRK -bRK -bWl -bWE -bWE -bWE -bWE -bWE -bWE -bWl -aab -bZz -cab -cas -caK -bZz -cbs -bRI -bRI -bRI -bRI -bRI -bRI -cdG -cdO -cdS -cdZ -cdZ -ceE -cdZ -cfc -cfp -cfD -cfO -cfY -cfO -cfO -cgv -cgB +bFl +bFl +bFl +bFl +bJl +bKf +bKZ +bLL +bIw +bNf +bIw +bOr +bOr +bOr +bOr +bQy +bRa +bRL +bRY +bRL +bRL +bRL +bRL +bRL +bRL +bRL +bRL +bWm +bWF +bWF +bWF +bWF +bWF +bWF +bWm +bZq +bWm +cak +bYI +caZ +bWm +bZG +bZG +bZG +bZG +bZG +bZG +cdH +cdT +cei +cer +ceJ +ceX +cfk +ceX +cfN +cge +cgr +cgz +cgH +cgz +cgz +chj +chu +cfi +ceV aab aab aaa aaa aaa -aaa -aaa aab aab aab aab aab aab -cgD -cgD -cgD -cgD -cgD -cgD -cgD -cgD -cgD -cgD -cgD -cgD -cgD -cgD -cgD -cgD -cgD -cgD -cgD +chB +chB +chB +chB +chB +chB +chB +chB +chB +chB +chB +chB +chB +chB +chB +chB +chB +chB +chB aab aaa aaa @@ -88698,44 +89162,44 @@ acb aaS acE acD -adt -adt -aep -aeW -afs -afK -agl -agK -ahm +ads +ads +aeo +aeV afr +afJ +agk +agJ +ahl +afq aab -ajG -ajG -ajG -ajG -ajG -ajG -ajG -ajG -ajG -ajG -ajG -axg -ayK -aAi -afr -aDp -aDp -aDp -aDp -aDp -aDp -aDp -aDp -aDp -aDp -aDp -aVG +ajF +ajF +ajF +ajF +ajF +ajF +ajF +ajF +ajF +ajF +ajF +axf +ayJ +aAh +afq +aDo +aDo +aDo +aDo +aDo +aDo +aDo +aDo +aDo +aDo +aDo +aVF aXk aYw aZO @@ -88758,77 +89222,78 @@ buy bvO bxf byo -bzw -bAx -bBu -bCu -bDn -bEn +bzx +bAy +bBv +bCv +bDo +bEo +bFm +bGk +bHs bFl -bGj -bHr -bFk -bJl -bKf -bKZ -bLL -bMB -bMB -bMB +bJm +bKg +bLa +bLM +bMC +bMC +bMC +bOs +bOs +bPw bOr -bOr -bPv -bOq -bQy +bQz bdL -bRK -bRY -bSI -bTn -bTN -bUp -bUL -bVk -bUL -bVV -bWl -bWE -bWE -bWE -bWE -bWE -bWE -bWl -aab -bZz -cac -caq -caL -bZz -cbs -bRI -cck -cck -cck -cck -bRI -cdG -cdO -cdT -cea -cep -ceF -cep -cfd -cfq -cfE -cfP -cfZ +bRL +bRZ +bSJ +bTo +bTO +bUq +bUM +bVl +bUM +bVW +bWm +bWF +bWF +bWF +bWF +bWF +bWF +bWm +bZq +bZI +cal +bXT +cba +bWm +cbJ +ccg +ccg +ccg +ccg +cdw +cdM +cdU +cei +ces +ceK +ceY +cfl +cfx cfO -cfO -cgv -cgB -aab +cgf +cgs +cgA +cgI +cgR +cgR +chk +chu +cgO +ceV aab aaa aaa @@ -88836,29 +89301,28 @@ aaa aaa aaa aaa -aaa aab aab aab aab aab aab -cgD -cgD -cgD -cgD -cgD -cgD -cgD -cgD -cgD -cgD -cgD -cgD -cgD -cgD -cgD -cgD +chB +chB +chB +chB +chB +chB +chB +chB +chB +chB +chB +chB +chB +chB +chB +chB aab aab aaa @@ -88956,43 +89420,43 @@ aab acF acF aab -adL adK -adK -afr -afr -afr -afr -ahn -afr +adJ +adJ +afq +afq +afq +afq +ahm +afq aab -ajG -ajG -ajG -ajG -ajG -ajG -ajG -ajG -ajG -ajG -ajG -axh -ayL -aAj -atS -atS -atS -atS -atS -aKG -aKG -aKG -aKG -aKG -aSU -aUC -aVB +ajF +ajF +ajF +ajF +ajF +ajF +ajF +ajF +ajF +ajF +ajF +axg +ayK +aAi +atR +atR +atR +atR +atR +aKF +aKF +aKF +aKF +aKF +aST +aUB +aVA aXo aYx aZO @@ -89015,77 +89479,78 @@ buF bvP bxg byp -bzx -bAy -bBv -bCv -bDo -bEo -bFm -bGk -bHs -bIw -bJm -bKg -bLa -bLM -bMC -bNf -bNL -bOs -bOq -bOq -bPW -bQy +bzy +bAz +bBw +bCw +bDp +bEp +bFn +bGl +bHt +bIx +bJn +bKh +bLb +bLN +bMD +bNg +bNM +bOt +bOr +bOr +bPX +bQz bdL -bRK -bRZ -bSJ -bTo -bTO -bUq -bUM -bVl -bVF -bVW -bWl -bWl -bWl -bWl -bWl -bWl -bWl -bWl -bWl -bZz -cad -cat -caM -bZz -cbs -bWl -bWl -bWl -bWl -bWl -bWl -cdG -cdO -cdU -ceb -ceq -ceG -ceN -cfe -cfr -cfF -cfQ -cga +bRL +bSa +bSK +bTp +bTP +bUr +bUN +bVm +bVG +bVX +bWm +bWm +bWm +bWm +bWm +bWm +bWm +bWm +bWm +bWm +cam +bYG +cbb +bWm +cbK +bWm +bWm +bWm +bWm +bWm +bWm +cdT +cei +cet +ceL +ceZ +cfm +cfy +cfP cgg -cgp -cgw -cgC -aab +cgt +cgB +cgJ +cgS +cgZ +chl +chv +cgO +ceV aab aaa aaa @@ -89094,7 +89559,6 @@ aaa aaa aaa aaa -aaa aab aab aab @@ -89102,19 +89566,19 @@ aab aab aab aab -cgD -cgD -cgD -cgD -cgD -cgD -cgD -cgD -cgD -cgD -cgD -cgD -cgD +chB +chB +chB +chB +chB +chB +chB +chB +chB +chB +chB +chB +chB aab aab aab @@ -89219,39 +89683,39 @@ aab aab aab aaa -afr -aho -afr +afq +ahn +afq aab -ajG -ajG -alu -amy -ans -aoz -apK -aqX -aqX -aqX -ajG -axi -axi -axi -axi +ajF +ajF +alt +amx +anr +aoy +apJ +aqW +aqW +aqW +ajF +axh +axh +axh +axh aaV abE -aHo -aHo -aHo -aHo -aHo -aHo -aHo -aSV -aUC -aVB +aHn +aHn +aHn +aHn +aHn +aHn +aHn +aSU +aUB +aVA aXk -aVB +aVA aZO baT bco @@ -89272,79 +89736,78 @@ bsq bvO bxh byq -bzy -bAz -bBw -bCw -bDp -bEp -bFn -bGl -bHt -bIx -bJn -bKh -bLb -bLN -bMB -bMB -bMB +bzz +bAA +bBx +bCx +bDq +bEq +bFo +bGm +bHu +bIy +bJo +bKi +bLc +bLO +bMC +bMC +bMC +bOs +bOs +bPx bOr -bOr -bPw -bOq -bQy +bQz bdL -bRL -bSa -bSK -bTp -bTP -bUr -bUN -bVm -bVG -bVX -bWl -bWG -bWU -bXm -bXm -bYk -bYH +bRM +bSb +bSL +bTq +bTQ +bUs +bUO +bVn +bVH +bVY +bWm +bWH +bWV +bXn +bXn +bXn +bYE bYV -bZo -bZz -bZz -cau -bZz -bZz -cbt -bWl -ccl -ccG -cdc -cdl -bWl -cdH -cdP -cdP -cec -cer -cey -ceO -cff -cdP -cfG -cec -ceT -ceO -cdP -cdP -cdO -aab -aab -aab +bZr +bWm +bWm +caF +bWm +bWm +cbL +bWm +ccD +ccW +cdn +cdx +bWm +cdV +cei +cei +cei +cei +cfn +cfz +cfQ +cei +cgu +cgC +cfz +cei +cgC +cfz +cei +ceF +ceV aab aaa aaa @@ -89353,25 +89816,26 @@ aaa aaa aaa aaa +aaa aab aab aab aab aab aab -cgD -cgD -cgD -cgD -cgD -cgD -cgD -cgD -cgD -cgD -cgD -cgD -cgD +chB +chB +chB +chB +chB +chB +chB +chB +chB +chB +chB +chB +chB aab aab aab @@ -89476,37 +89940,37 @@ aab aab aab aaa -afr -ahp -afr +afq +aho +afq aab -ajG -ajG -alv -amy -ant -aoA -apL -aqX -aqX -aqX -ajG -axj -ayM -aAk -aBD -aDt -aFq -aHp -aIK -aKH -aMs -aOf -aPN +ajF +ajF +alu +amx +ans +aoz +apK +aqW +aqW +aqW +ajF +axi +ayL +aAj +aBC +aDs +aFp aHo -aSW -aUD -aVH +aIJ +aKG +aMr +aOe +aPM +aHn +aSV +aUC +aVG aXp aYy aZO @@ -89529,79 +89993,78 @@ buG bvO bxi byr -bzz -bAA -bBx -bCx -bDq -bEq -bFo -bGm -bHu -bFk -bJo -bKi -bKi -bLO -bIv -bNg -bIv -bOq -bOq -bOq -bOq -bQz +bzA +bAB +bBy +bCy +bDr +bEr +bFp +bGn +bHv +bFl +bJp +bKj +bKj +bLP +bIw +bNh +bIw +bOr +bOr +bOr +bOr +bQA bdL -bRK -bSb -bSL -bTq -bTQ -bUs -bUO -bVk -bVH -bVk -bWl -bWH -bWV -bWV -bWV -bYl -bWV -bWV -bWV -bZB -cae -cav -caN -bWl -cbu +bRL +bSc +bSM +bTr +bTR +bUt +bUP +bVl +bVI +bVl +bWm +bWI +bWW +bWW +bWW +bWW +bWW +bWW +bZs +bZJ +can +caG +bWm +cbq cbM -ccm -ccH -ccm -cdm -bWl -cdI -cdP -cdV -ced -ces -ceH -ceP -cfg -cfs -cfH +cch +ccE +ccE +cdo +cdy +bWm +cdW +cej +ceu +ceM +cfa +cfo +cfA cfR -cgb cgh -cgq -cgx -aab -aab -aab -aab +cfA +cfA +cgK +cgT +cha +chm +chw +cgO +ceV aab aaa aaa @@ -89610,21 +90073,22 @@ aaa aaa aaa aaa +aaa aab aab -cgD -cgD -cgD -cgD -cgD -cgD -cgD -cgD -cgD -cgD -cgD -cgD -cgD +chB +chB +chB +chB +chB +chB +chB +chB +chB +chB +chB +chB +chB aab aab aab @@ -89733,39 +90197,39 @@ aab aab aab aab -agL -ahq -agL +agK +ahp +agK aab -ajG -ajG -alw -amy -amy -amy -apL -amy -amy -atT -ajG -axk -ayN -aAl -aBE -aDu -aFr -aHq -aIL -aKI -aMt -aKI -aPO -aHo -amu -aUC -aVI +ajF +ajF +alv +amx +amx +amx +apK +amx +amx +atS +ajF +axj +ayM +aAk +aBD +aDt +aFq +aHp +aIK +aKH +aMs +aKH +aPN +aHn +amt +aUB +aVH aXq -aVI +aVH aZO baV bcq @@ -89786,78 +90250,78 @@ buH bvO bxj bys -bzA -bAB -bBy -bCy -bDr -bEr -bFp -bGn -bHv -bFk -bJp -bKi -bKi -bLP -bIv -bIv -bIv -bIv -bIv -bIv -bIv -bIv -bRa -bRK -bSc -bSM -bRK -bTR -bRK -bUP -bVn -bVI -bVY -bWl -bWl -bWW -bXn -bXn -bYm -bYI -bYq -bYq -bZC -bYq -caw -caO -cbb -cbv +bzB +bAC +bBz +bCz +bDs +bEs +bFq +bGo +bHw +bFl +bJq +bKj +bKj +bLQ +bIw +bIw +bIw +bIw +bIw +bIw +bIw +bIw +bRb +bRL +bSd +bSN +bRL +bTS +bRL +bUQ +bVo +bVJ +bVZ +bWm +bWm +bWX +bXo +bXo +bXo +bYF +bYn +bYn +bZK +cao +caH +cbc +cbr cbN -ccn -ccI -cdd -cdn -cdA -cdJ -cdQ -cdW -cee -cet -ceI -ceQ -cfh -cft -cfI -cfI -cfI +cci +ccF +ccX +cdp +cdz +cdN +cdX +cek +cev +ceN +cfb +cfp +cfB +cfS cgi -cgr -cgy -aab -aab -aab +cgi +cgi +cgi +cgU +chb +chn +chx +cgO +ceV aab aab aaa @@ -89870,18 +90334,18 @@ aaa aaa aab aab -cgD -cgD -cgD -cgD -cgD -cgD -cgD -cgD -cgD -cgD -cgD -cgD +chB +chB +chB +chB +chB +chB +chB +chB +chB +chB +chB +chB aab aab aab @@ -89990,39 +90454,39 @@ aaa aab aab aab -agM -aho -agM +agL +ahn +agL aab -ajG -ajG -alx -amy -anu -aoB -apM -aqY -ask -atU -avx -axl -ayO -aAm -aBF -aDv -aFs -aHr -aIL -aKJ -aMu -aOg -aPP -aHo -amu -aUC -aVJ +ajF +ajF +alw +amx +ant +aoA +apL +aqX +asj +atT +avw +axk +ayN +aAl +aBE +aDu +aFr +aHq +aIK +aKI +aMt +aOf +aPO +aHn +amt +aUB +aVI aXr -aVJ +aVI aZO baW bcr @@ -90043,78 +90507,78 @@ buI bvO bxk byt -bzB -bzB -bzB -bzB -bDs +bzC +bzC +bzC +bzC +bDt bvO -bFq -bGo -bHw -bFk -bJq -bKj -bLc -bLQ -bIv -bNh +bFr +bGp +bHx +bFl +bJr +bKk +bLd +bLR +bIw +bNi bto baM -bOU +bOV baM baM bto -bAj -bRK -bSd -bSN -bSN -bTS -bUt -bSN -bSN -bSN -bSN +bAk +bRL +bSe +bSO +bSO +bTT +bUu +bSO +bSO +bSO +bSO +bWn bWm -bWl -bWX -bXo -bXM -bYn -bXS -bXo -bXo -bXo -bXo -bXo -caP -bWl -cbw +bWY +bXp +bXN +bYk +bXT +bXp +bXp +bZL +cap +caI +bWm +cbs cbO -cco -ccJ -ccm -cdo -bWl -cdK -cdP -cdX -cef -ceu -cef -ceR -ceR -cfu -cfJ -ceR -ceR -cgj -cgs -cgy -aab -aab -aab +cbO +cbO +cbO +ccE +cdA +bWm +cdY +cej +cew +ceO +cfc +cfq +cfC +cfT +cfC +cfC +cfC +cfC +cgV +cfC +cho +cej +cfi +ceV aab aab aaa @@ -90127,18 +90591,18 @@ aaa aaa aab aab -cgD -cgD -cgD -cgD -cgD -cgD -cgD -cgD -cgD -cgD -cgD -cgD +chB +chB +chB +chB +chB +chB +chB +chB +chB +chB +chB +chB aab aab aab @@ -90247,39 +90711,39 @@ aaa aab aab aab -agN -ahm -agN +agM +ahl +agM aab -ajG -ajG -ajG -ajG -ajG -aoC -apN -ajG -ajG -ajG -ajG -ajG -ajG -ajG -ajG -aDw -aFt -aHs -aIM -aKK -aMv -aOh -aPQ -aHo -aSX -aUE -aVK +ajF +ajF +ajF +ajF +ajF +aoB +apM +ajF +ajF +ajF +ajF +ajF +ajF +ajF +ajF +aDv +aFs +aHr +aIL +aKJ +aMu +aOg +aPP +aHn +aSW +aUD +aVJ aXs -aVK +aVJ aZO aZO bcs @@ -90304,74 +90768,74 @@ bct aYz bct aYz -bDt +bDu bvO -bFk -bFk -bFk -bFk -bIv -bIv -bIv -bIv -bIv +bFl +bFl +bFl +bFl +bIw +bIw +bIw +bIw +bIw bdL -aLW -bME -bME -bME -bME -bQA -bME -bRK -bSe -bSO -bTr -bTT -bTr -bUQ -bVo -bVJ -bVZ -bWn -bWl -bWY -bXp -bXN -bYo -bXS +aLV +bMF +bMF +bMF +bMF +bQB +bMF +bRL +bSf +bSP +bTs +bTU +bTs +bUR +bVp +bVK +bWa +bWo +bWm +bWZ +bXq +bXO +bYl +bYG bYW -bZp -bZD -caf -caf -caQ -cbc -cbx +bZt +bZM +caq +caJ +cbd +cbt cbP -cbQ -ccK -ccm -cdp -bWl -cdL -cdP -cdP -ceg -cev -ceJ -ceR -ceR -cfu -ceR -cfS -cfK -cgk -cgt -cgz -aab -aab -aab +ccj +cck +ccY +ccE +cdB +bWm +cdZ +cej +cex +ceP +cfd +cfq +cfC +cfU +cfC +cgw +cfC +cfC +cfC +chc +chp +chw +cgO +ceV aab aab aab @@ -90383,19 +90847,19 @@ aaa aaa aaa aab -cgD -cgD -cgD -cgD -cgD -cgD -cgD -cgD -cgD -cgD -cgD -cgD -cgD +chB +chB +chB +chB +chB +chB +chB +chB +chB +chB +chB +chB +chB aab aab aab @@ -90504,37 +90968,37 @@ aab aab aab aab -afr -ahm -afr +afq +ahl +afq aab -ajG -ajG -aly -amz -anv -aoD -apO -aqZ -asl -atV -avy -axm -ayP -aAn -ajG -aua -aFu -aHt -aIN -aKL +ajF +ajF +alx +amy +anu +aoC +apN +aqY +ask +atU +avx +axl +ayO +aAm +ajF +atZ +aFt +aHs +aIM +aKK +aMv aMw -aMx -aPR -aHo -aSX -aUE -aVL +aPQ +aHn +aSW +aUD +aVK aXt aYz aZP @@ -90562,74 +91026,73 @@ aYz bbc aYz aYz -bEs +bEt aZP -bGp -bHx +bGq +bHy baY -bJr +bJs baM baM baM -bMD -bCf -blA bME -bOV -bPx -bPX -bOX -bRb -bRK -bSf -bSP -bTs -bTU -bTs -bUR -bVp -bVK -bWa -bTs -bWl -bWl -bXq -bXO -bYp -bYJ -bYX -bWl -bZE +bCg +blA +bMF +bOW +bPy +bPY +bOY +bRc +bRL +bSg +bSQ +bTt +bTV +bTt +bUS +bVq +bVL +bWb +bTt +bWm +bWm bXr -bXr -bXr -cbd -cbx -cbQ -ccp -ccK -ccm -cdq -bWl -cdM -bMk -cdP -ceh -cew -ceK -ceS -cfi -cfv -cfK -cfT -cgc -cgl -cdP -cdP -aab -aab -aab -aab +bXP +bYm +bYH +bXP +bZu +bWm +car +caJ +cbe +cbt +cbP +cck +ccG +ccY +ccE +cdC +bWm +cea +cej +cey +ceQ +cfe +cfr +cfD +cfV +cfC +cfC +cfC +cgL +cgW +chd +chq +chy +cgO +ceV aab aab aab @@ -90639,6 +91102,7 @@ aaa aaa aaa aaa +aaa aab aab aab @@ -90650,8 +91114,8 @@ aab aab aab aab -cgD -cgD +chB +chB aab aab aab @@ -90761,37 +91225,37 @@ aab aab aab aab -afr -aho -afr +afq +ahn +afq aab -ajG -ajG -alz -amy -anw -aoE -apP -ara -asm -amy -amy -amy -amy -amy -aBG -aDu -aFu -aHu -aIO -aKM -aMx -aMx -aPS -aHo -amu -aUE -aVM +ajF +ajF +aly +amx +anv +aoD +apO +aqZ +asl +amx +amx +amx +amx +amx +aBF +aDt +aFt +aHt +aIN +aKL +aMw +aMw +aPR +aHn +amt +aUD +aVL aXu aYA aZQ @@ -90816,76 +91280,76 @@ bcu baY baY baY -bBz +bBA baY baY baY -bFr +bFs baY -bHy -bIy -bJs -bJs -bJs -bJs -bME -bME -bME -bME -bOW -bPy -bPY +bHz +bIz +bJt +bJt +bJt +bJt +bMF +bMF +bMF +bMF bOX -bRc -bRK -bSg -bSP -bTs -bTV -bTs -bUR -bVq -bVL -bWb -bTs -bWl -bWZ -bXr -bXP -bXP -bXS -bXr -bZq -bZF -cag -cax -caR -cbe -cbx +bPz +bPZ +bOY +bRd +bRL +bSh +bSQ +bTt +bTW +bTt +bUS +bVr +bVM +bWc +bTt +bWm +bXa +bXs +bXQ +bXQ +bYI +bYX +bZv +bZN +cas +caJ +cbf +cbu cbQ -ccq -ccL -cde -cdr -bWl -cdM -bMk -cdP -cei -cec -cey -ceT -ceO -cfw -cfL -ceT -cgd -cgm -cdP -aab -aab -aab -aab +cck +ccH +ccY +cdq +cdD +bWm +cea +cej +cez +ceR +cff +cfs +cej +cfW +cgj +cgj +cgj +cgM +cej +che +chr +cej +ceF +ceV aab aab aaa @@ -91018,37 +91482,37 @@ aab aab aab aab -afr -aho -afr +afq +ahn +afq aab -ajG -ajG -alA -amy -amy -amy -apL -arb -asm -atW -amy -amy -amy -amy -aBH -aDx -aFv -aHv -aIP -aKN -aMy -aOi -aPT -aHo -amu -aUE -aVN +ajF +ajF +alz +amx +amx +amx +apK +ara +asl +atV +amx +amx +amx +amx +aBG +aDw +aFu +aHu +aIO +aKM +aMx +aOh +aPS +aHn +amt +aUD +aVM aXt aYz aZR @@ -91077,73 +91541,73 @@ blW bdT aYz aYz -aVK +aVJ aYz -bHz -bIz -bJs -bKk -bLd -bLR -bME -bNi -bNM -bOt -bOX -bPz -bOX -bQB -bRd -bRK -bSg -bSP -bTt -bTV -bUu -bUS -bVr -bVM -bWa -bWo -bWl -bXa -bXo -bXQ -bYq -bYK +bHA +bIA +bJt +bKl +bLe +bLS +bMF +bNj +bNN +bOu +bOY +bPA +bOY +bQC +bRe +bRL +bSh +bSQ +bTu +bTW +bUv +bUT +bVs +bVN +bWb +bWp +bWm +bXb +bXp +bXR +bYn +bYJ bYY -bWl -bWl -bWl -bWl -bWl -bWl -bWl -cbR -bWl -cbR -bWl -cbR -bWl -cdM -bMk -cdP +bWm +bWm +bXQ +bXQ +bWm +cbv +bWm +cbv +bWm +cbv +bWm +cbv +bWm +cea +cel +ceA +ceS +cfg +cft +cfE +cfX +cgk +cgk +cgk +cgk cej -cex -cex -ceU -cfj -cfx -cex -cex -cex -cgn -cdP +cfi +cfi +cgO +cgO +ceV aab -aab -aab -aaa -aaa aaa aaa aaa @@ -91275,52 +91739,52 @@ aab aab aab aab -afr -ahr -afr +afq +ahq +afq aab -ajG -ajG -alz -amy -amy -amy -apQ -arc -asn -atX -avz -amy -amy -amy -aBH -aDu -aFu -aHw -aHw -aHw -aHw -aHw -aHw -aHw -aSY -aHw -aVO +ajF +ajF +aly +amx +amx +amx +apP +arb +asm +atW +avy +amx +amx +amx +aBG +aDt +aFt +aHv +aHv +aHv +aHv +aHv +aHv +aHv +aSX +aHv +aVN aXt aYB -aUE +aUD baZ bcw bdU bfh bgw -aUE +aUD bgw bcw bdU bfh baZ -aUE +aUD bqZ bsv aZS @@ -91328,79 +91792,79 @@ buK bvQ aZS buK -bzC +bzD bvQ aZS buK -bzC +bzD bvQ aZS -bGq -bHA -bIA -bJt -bKl -bLe -bLS -bME -bNj -bNM -bOu -bOY -bPA -bPZ -bQC -bRe -bRK -bSg -bSP -bTu -bTV -bTs -bUT -bVs -bVs +bGr +bHB +bIB +bJu +bKm +bLf +bLT +bMF +bNk +bNN +bOv +bOZ +bPB +bQa +bQD +bRf +bRL +bSh bSQ -bTs -bWl -bXb -bXs -bXR -bYn -bXo +bTv +bTW +bTt +bUU +bVt +bVt +bSR +bTt +bWm +bXc +bXt +bXS +bYk +bXp bYZ -bWl +bWm +bWm +bWm +bWm +bWm +cbw +bQO +ccl +ccI +ccZ +bMN +bMN +bMN +ceb +cej +ceB +ceT +cff +cfs +cej +ceB +ceT +ceT +ceT +cgN +cej +cfi +chs +cfF +cfF +cgv aab -aab -aab -bMk -cbf -bQN -cbS -ccr -ccM -bMM -bMM -bMM -cdN -bMk -cdP -cek -cey -cey -cey -cfk -cdP -cek -cey -cey -cfk -cdP -aab -aaa -aaa -aaa -aaa aaa aaa aaa @@ -91532,40 +91996,40 @@ aaa aab aab aab -afr -aho -afr +afq +ahn +afq aab -ajG -ajG -alB -amA -anx -aoF -anu -ard -aso -atY -avA -axn -avA -avA -ajG -aDy -aFw -aHw -aIQ -aKO -aMz -aOj -aPU -aRA -aSZ -aHw -aVP +ajF +ajF +alA +amz +anw +aoE +ant +arc +asn +atX +avz +axm +avz +avz +ajF +aDx +aFv +aHv +aIP +aKN +aMy +aOi +aPT +aRz +aSY +aHv +aVO aXt aYz -aUE +aUD bba bcx bcx @@ -91577,7 +92041,7 @@ bcx bcx bcx boR -aUE +aUD aYz aYz btJ @@ -91593,70 +92057,70 @@ buL buL btJ aYz -bHB -bIB -bJs -bKm -bLf -bKk -bME -bNk -bNM -bOv -bOZ -bPB -bQa -bQa -bRf -bRK -bSh -bSQ -bTv -bTW -bUv -bTs -bVt -bTs -bTs -bWp -bWl -bXc -bXt -bXS -bXo -bYL +bHC +bIC +bJt +bKn +bLg +bKl +bMF +bNl +bNN +bOw +bPa +bPC +bQb +bQb +bRg +bRL +bSi +bSR +bTw +bTX +bUw +bTt +bVu +bTt +bTt +bWq +bWm +bXd +bXu +bXT +bXp +bYK bZa -bWl -bPG -bPG -bPG -bMk -cbg -cby -cbT -ccs -ccN -bMk -bMk -bMk -bMk -bMk +bWm +bZO +bZO +bZO +bPH +cbx +cbR +ccm +ccJ +cda +bMl +bMl +bMl +bMl +bMl +cfi +cfi +cgO +cgO +ceo +cfi +cfi +cfi +cfi +cgO +ceo +cgO +ceV aab aab aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aaa -aaa -aaa aaa aaa aaa @@ -91789,37 +92253,37 @@ aaa aab aab aab -agL -ahq -agL +agK +ahp +agK aab -ajG -ajG -ajG -ajG -ajG -ajG -ajG -ajG -ajG -ajG -ajG -ajG -ajG -ajG -ajG -aDz -aFu -aHw -aIR -aKP -aKP -aOk -aKP -aKP -aSZ -aHw -aVQ +ajF +ajF +ajF +ajF +ajF +ajF +ajF +ajF +ajF +ajF +ajF +ajF +ajF +ajF +ajF +aDy +aFt +aHv +aIQ +aKO +aKO +aOj +aKO +aKO +aSY +aHv +aVP aXt aYB aZS @@ -91849,70 +92313,70 @@ buL buL buL aZS -bGr -bHC -bIC -bJs -bJs -bJs -bJs -bME -bME -bME -bME -bPa -bPC -bQb -bME -bME -bRK -bSi -bSR -bTw -bRK -bUw -bUU -bUU -bUU -bUU -bWq -bWl -bXd -bXu +bGs +bHD +bID +bJt +bJt +bJt +bJt +bMF +bMF +bMF +bMF +bPb +bPD +bQc +bMF +bMF +bRL +bSj +bSS +bTx +bRL +bUx +bUV +bUV +bUV +bUV +bWr +bWm +bXe +bXv bXT -bYr -bXd -bXu -bWl -bZG -bZG -bZG -bMk -cbh -cbz -cbU -cct -ccO -bMk -aaa -aaa -aaa -aaa +bYo +bXe +bXv +bWm +bZP +cat +caK +bPH +cby +cbS +ccn +ccK +cdb +bMl +anT +anT +anT +anT +cfF +cfF +cfF +cfF +cfF +cfF +cfF +cfF +cfF +cfF +cfF +cfF +cgv aab aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aaa -aaa aaa aaa aaa @@ -92046,37 +92510,37 @@ aaa aaa aab aab -agM -ahm -agM +agL +ahl +agL aab -ajG -ajG -ajG -ajG -ajG -ajG -ajG -ajG -aht -atZ -avB -axo -ayQ -aAo -aBI -aDA -aFx -aHx -aIS -aIS -aIS -aOl -aIS -aIS -aTa -aUF -aVR +ajF +ajF +ajF +ajF +ajF +ajF +ajF +ajF +ahs +atY +avA +axn +ayP +aAn +aBH +aDz +aFw +aHw +aIR +aIR +aIR +aOk +aIR +aIR +aSZ +aUE +aVQ aXv aYC aZS @@ -92105,55 +92569,55 @@ buL buL buL buL -bFs +bFt aYz -bHD +bHE aYz -aVK -bKn -bLg -bLT -bMF -bNl -bNN -bOw -bLV -bPD -bLV -bQD -bRg -bRM -bSj -bSS -bTx -bLg -bLV -bLV -bVu -bLV -bLV -bWr -bWI -bLV -bXv +aVJ +bKo +bLh +bLU +bMG +bNm +bNO +bOx +bLW +bPE +bLW +bQE +bRh +bRN +bSk +bST +bTy +bLh +bLW +bLW +bVv +bLW +bLW +bWs +bWJ +bLW +bXw bXU -bYs -bYM -bZb -bZr -bZH -cah -cah -bMk -bPN -bPK -cbV -bRy -ccP -bMk -aaa -aaa -aaa +bYp +bYL +bLW +bZw +bZQ +bZQ +caL +bPH +bPO +bPL +cco +bRz +cdc +bMl +anT +anT +anT aaa aab aab @@ -92167,8 +92631,8 @@ aab aab aab aab -aaa -aaa +aab +aab aaa aaa aaa @@ -92303,9 +92767,9 @@ aaa aaa aaa aab -agN -aho -agN +agM +ahn +agM aab aab aaa @@ -92316,24 +92780,24 @@ aaa aaa aaa aaV -aua -avC -axp -ayR -aAp -aBJ -aDB -aFy -aHy -aIT -aKQ -aKQ -aOm -aKQ -aKQ -aTb -aUG -aVS +atZ +avB +axo +ayQ +aAo +aBI +aDA +aFx +aHx +aIS +aKP +aKP +aOl +aKP +aKP +aTa +aUF +aVR aXv aYD aZS @@ -92362,54 +92826,54 @@ buL buL buL buL -bFt +bFu aYz -bHE -bGt -bJu -bKo -bLh -bLU -bLU -bLU -bNO -bOx -bLU -bPE -bQc -bQc -bRh -bQc -bSk -bST -bQc -bTX -bQc -bST -bQc -bQc -bWc -bQc -bRh -bQc -bQc +bHF +bGu +bJv +bKp +bLi +bLV +bLV +bLV +bNP +bOy +bLV +bPF +bQd +bQd +bRi +bQd +bSl +bSU +bQd +bTY +bQd +bSU +bQd +bQd +bWd +bQd +bRi +bQd +bQd bXV -bYt -bLV -bLV -bZs -bZI -bZI -cay -caS -bPN -cbA -cbW -cbW -cbW -cbW -aaa -aaa +bYq +bYM +bYM +bZx +bZR +cau +caM +cbg +bPO +cbT +ccp +ccp +ccp +ccp +anT +anT aaa aab aab @@ -92424,7 +92888,7 @@ aab aab aab aab -aaa +aab aaa aaa aaa @@ -92560,9 +93024,9 @@ aad aad aad aaa -afr -ahq -afr +afq +ahp +afq aab aab aab @@ -92573,24 +93037,24 @@ aaa aaa aaa aaV -aub -avD -axq -ayS -aAq -aBK -aDC -aFz -aHz -aIU -aIU -aMA -aOn -aPV -aRB -aTc -aUF -aVR +aua +avC +axp +ayR +aAp +aBJ +aDB +aFy +aHy +aIT +aIT +aMz +aOm +aPU +aRA +aTb +aUE +aVQ aXv aYE aZS @@ -92621,52 +93085,52 @@ buL buL btK aYz -bHF +bHG aYz -aVK -bKn -bLg -bLV -bLV -bLV -bNP -bOy -bPb -bPF -bLV -bLV -bLV -bLV -bLV -bSU -bLV -bLg -bUx -bSU -bLV -bRi -bWd -bRi -bRi -bRi -bXw +aVJ +bKo +bLh +bLW +bLW +bLW +bNQ +bOz +bPc +bPG +bLW +bLW +bLW +bLW +bLW +bSV +bLW +bLh +bUy +bSV +bLW +bRj +bWe +bRj +bRj +bRj +bXx bXW -bNP +bNQ bYN -bZc -bZr -bZJ -cai -cai -bMk -cbi -cbA -cbX -ccu -ccQ -cdf -aaa -aaa +bZb +bPH +bZS +cav +caN +bPH +cbz +cbT +ccq +ccL +cdd +cdr +anT +anT aaa aab aab @@ -92678,8 +93142,8 @@ aab aab aab aab -aab -aab +aaa +aaa aaa aaa aaa @@ -92811,14 +93275,14 @@ aaT aaT aaT aaT -adM +adL aad acC aah aad aad aad -ahs +ahr aad aad aab @@ -92830,24 +93294,24 @@ aaa aaV aaV aaV -auc -avE -axr -auc -avE +aub +avD +axq +aub +avD aaV -aDD -aFA -aHw -aIV -aKP -aKP -aKP -aPW -aRC -aTd -aHw -aVT +aDC +aFz +aHv +aIU +aKO +aKO +aKO +aPV +aRB +aTc +aHv +aVS aXv aYF aZS @@ -92877,66 +93341,66 @@ buL buL buL aZS -bGs -bHG +bGt +bHH aYE -bJv -bJv -bJv -bJv -bJv -bNm -bJv -bJv -bJv -bPG -bPG -bQE -bRi -bRi -bRi -bRi -bTy -bPG -bUy -bUy -bVv -bVN -bWe -bWs -bVN -bVN -bUy -bUy -bUy -bUy -bUy -bUy -bZK -bZK -bZK -bMk -cbj -cbB -cbY -ccv -ccR +bJw +bJw +bJw +bJw +bJw +bNn +bJw +bJw +bJw +bPH +bPH +bQF +bRj +bRj +bRj +bRj +bTz +bPH +bUz +bUz +bVw +bVO +bWf +bWt +bVO +bVO +bUz +bUz +bUz +bUz +bUz +bUz +bZT +bZT +bZT +bPH cbA +cbU +ccr +ccM +cde +cbT +anT +aaa +aaa +aab +aab +aab +aab +aab +aab +aaa +aaa +aaa aaa aaa aaa -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab aaa aaa aaa @@ -93070,12 +93534,12 @@ aaU aaU aaI aad -aeX +aeW aah acV aah aaH -agc +agb aae aad aab @@ -93085,26 +93549,26 @@ aaa aaa aaa aaV -are -asp -aud -avF -axs -ayT -aAr +ard +aso +auc +avE +axr +ayS +aAq aaV -aDE -aFB -aht -aIW -aKR -aMB -aOo -aht -aRD -aTe -aHw -aVU +aDD +aFA +ahs +aIV +aKQ +aMA +aOn +ahs +aRC +aTd +aHv +aVT aXv aYz aZS @@ -93133,52 +93597,52 @@ buL buL buL buL -bFt +bFu aYz -bHH +bHI aYz -bJv -bKp -bLi -bLW -bMG -bKr -bJv -bOz -bOz -bPH -bPH -bQF -bRj -bRj -bRj -bSV -bPH -bPH +bJw +bKq +bLj +bLX +bMH +bKs +bJw +bOA +bOA +bPI +bPI +bQG +bRk +bRk +bRk +bSW +bPI +bPI +bUA +bUz +bUz +bVP +bWg +bWu +bVP +bVP bUz -bUy -bUy -bVO -bWf -bWt -bVO -bVO -bUy bXX -bYu +bYr bYO -bZd -bUy -bUy -bUy -bUy -bMk -bPN -cbA -cbZ -ccw -ccS -cbA +bZc +bUz +bUz +bUz +bUz +bMl +bPO +cbT +ccs +ccN +cdf +cbT aaa aaa aab @@ -93186,15 +93650,15 @@ aab aab aab aab -aab -aab -aab -aab -aab -aab -aab -aab -aab +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa aaa aaa aaa @@ -93325,16 +93789,16 @@ abu acI acX aaU -adN +adM aad -adk +adj acB aad abi abk aaC aah -aiX +aiW aaa aab aaa @@ -93342,26 +93806,26 @@ aaa aaa aaa aaV -arf +are abD -aue -avG -axt +aud +avF +axs abD -aAs +aAr aaV -aDF -aFA -aHA -aIX -aKS -aMC -aOp -aht -aRE -aTf -aHw -aVV +aDE +aFz +aHz +aIW +aKR +aMB +aOo +ahs +aRD +aTe +aHv +aVU aXv aYB aZS @@ -93384,58 +93848,58 @@ buK bvQ aZS buK -bzC +bzD bvQ aZS buK -bzC +bzD bvQ aZS aYz -bHI -bIA -bJw -bKq -bLj -bLX -bMH -bLX -bNQ -bOA -bPc -bPH -bQd -bQG -bRk -bRk -bRk -bSW -bTz -bTY -bUA -bUV -bVw -bUZ -bWg -bUZ -bUZ -bUZ -bXx -bUZ -bUZ -bUZ -bZe -bUZ -bUZ -bUZ -caz -caT -bPP -cbA -cca -ccx -ccT -cbA +bHJ +bIB +bJx +bKr +bLk +bLY +bMI +bLY +bNR +bOB +bPd +bPI +bQe +bQH +bRl +bRl +bRl +bSX +bTA +bTZ +bUB +bUW +bVx +bVa +bWh +bVa +bVa +bVa +bXy +bVa +bVa +bVa +bZd +bVa +bVa +bVa +caO +cbh +bPQ +cbT +cct +ccO +cdg +cbT aaa aaa aab @@ -93443,15 +93907,15 @@ aab aab aab aab -aab -aab -aab -aab -aab -aab -aab -aab -aab +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa aaa aaa aaa @@ -93580,45 +94044,45 @@ abO acd abO acJ -acY +abw aaU aaI aad aad aad aad -agm +agl aaI aaA aah -aiX -aiX -aiX -aiX -amB -aiX -aiX +aiW +aiW +aiW +aiW +amA +aiW +aiW aaV -arg -asq -auf +arf +asp +aue aaV -axu -arg -asq +axt +arf +asp aaV -aDG -aFC -aHB -aIY -aKT +aDF +aFB +aHA +aIX +aKS abC -aOq -aht -aRF -aTg -aHw -aVW +aOp +ahs +aRE +aTf +aHv +aVV aXv aYz aZT @@ -93643,67 +94107,58 @@ bxn aYz aYz aYz -aVK +aVJ bdV aYz aYz -bFu +bFv aYz -bHH -bID -bJv -bKr -bLk -bKr -bMI -bKr -bJv -bOB -bPd -bPH -bQe -bQH -bRl +bHI +bIE +bJw +bKs +bLl +bKs +bMJ +bKs +bJw +bOC +bPe +bPI +bQf +bQI +bRm +bRp +bRp +bSY bRo -bRo -bSX -bRn -bTZ -bUA +bUa bUB -bVx -bUZ -bWh -bUD -bUD -bUD -bXy +bUC +bVy +bVa +bWi +bUE +bUE +bUE +bXz bXY -bYv -bYv -bZf -bUZ -bZL -bZL -bUy -caU -bPJ -cbC -ccb -ccy -ccU -cdg +bYs +bYs +bZe +bVa +bZU +bZU +bUz +cbi +bPK +cbV +ccu +ccP +cdh +cds aaa -cdB -aab -aab -aab -aab -aab -aab -aab -aab -aab +cdO aab aab aab @@ -93753,6 +94208,15 @@ aaa aaa aaa aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa "} (116,1,1) = {" aaa @@ -93832,20 +94296,20 @@ aad aaI aaU aba -acY +abw abP ace abP acK -acY -adu +abw +adt acr acz acz aaT aaT -agn -agO +agm +agN aad aah aah @@ -93856,26 +94320,26 @@ aah abG aah aaV -arh -asr -aug +arg +asq +auf aaV -axv -ayU -aAt +axu +ayT +aAs aaV -aDH -aFD -aHC -aIZ -aKU +aDG +aFC +aHB +aIY +aKT abC -aOr -aht -aRG -aTf -aHw -aVX +aOq +ahs +aRF +aTe +aHv +aVW aXw aYG aZU @@ -93900,72 +94364,72 @@ bxo bcA bcA bcA -bBA +bBB bcA -bDu -bEt -bFv -bGt -bHJ +bDv +bEu +bFw +bGu +bHK aYz -bJv -bKs -bJv -bLY -bJv -bNn -bJv -bJv -bJv -bPH -bQf -bQH -bRm -bRN -bSl -bSY -bTA -bUa -bUA +bJw +bKt +bJw +bLZ +bJw +bNo +bJw +bJw +bJw +bPI +bQg +bQI +bRn +bRO +bSm +bSZ +bTB +bUb bUB -bVx -bUZ -bWg -bWu -bWJ -bXe -bXz -bWu -bWJ -bXe -bUZ -bUZ -bZM -caj -bUy -bPN -bPK -cbD -ccc -cce -ccc -cdg +bUC +bVy +bVa +bWh +bWv +bWK +bXf +bXA +bWv +bWK +bXf +bVa +bVa +bZV +caw +bUz +bPO +bPL +cbW +ccv +ccx +ccv +cds aaa aab aab aab aab aab -aab -aab -aab -aab -aab -aab -aab -aab aaa -aab +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa aaa aaa aaa @@ -94094,7 +94558,7 @@ abP acf abP acL -acZ +acY aaU aaU aaV @@ -94113,26 +94577,26 @@ aae aah abG aaV -ari -ass -auh +arh +asr +aug aaV -axw -ayV -aAu +axv +ayU +aAt aaV -aDC -aFA -aHD -aJa -aKV -avF -aOs -aht -aRH -aTh -aHw -aVY +aDB +aFz +aHC +aIZ +aKU +avE +aOr +ahs +aRG +aTg +aHv +aVX aXv aYH aZV @@ -94155,65 +94619,58 @@ buM bvS bxp byu -bzD -bAC -bBB -bCz +bzE +bAD +bBC +bCA aXv -bEu +bEv aYz -bGu +bGv aYz aYz -bJv -bKt -bJv -bKt -bJv -bNo -bJv -bOC -bOC -bPH -bQg -bQH -bRn -bRn -bRn -bSZ -bTB -bUb -bUB -bUW -bVx -bUZ -bWg -bWu -bWK -bXe -bXz -bWu -bWK -bXe -bUZ -bUZ -bZN -bZN -bUy -caV -bPK -cbD -ccd -cce -ccV -cdg -aab -aab -aab -aab -aab -aab -aab +bJw +bKu +bJw +bKu +bJw +bNp +bJw +bOD +bOD +bPI +bQh +bQI +bRo +bRo +bRo +bTa +bTC +bUc +bUC +bUX +bVy +bVa +bWh +bWv +bWL +bXf +bXA +bWv +bWL +bXf +bVa +bVa +bZW +bZW +bUz +cbj +bPL +cbW +ccw +ccx +cdi +cds aab aab aab @@ -94267,6 +94724,13 @@ aaa aaa aaa aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa "} (118,1,1) = {" aaa @@ -94351,50 +94815,50 @@ abP acg abP acL -acY -adv +abw +adu aaU -aeq -aeY -aft -afL -ago +aep +aeX +afs +afK +agn abC -aht -aht -aht -aht -aht +ahs +ahs +ahs +ahs +ahs aah -aht -aht -aht +ahs +ahs +ahs aaV aaV -ast -aui +ass +auh aaV -axx -arg -asq +axw +arf +asp aaV -aDC -aFA -aHE -aJb -aez -aMD -aOt -aht -aRI -aTi -aPX -aVK +aDB +aFz +aHD +aJa +aey +aMC +aOs +ahs +aRH +aTh +aPW +aVJ aXs aYI -aUE -aUE -aUE +aUD +aUD +aUD bdX bfm bgz @@ -94413,62 +94877,57 @@ bvT buN bxt bxt -bAD +bAE bxt -aVK +aVJ aXs -bEv -bFw -bFw -bFw -bFw -bFw -bFw -bFw -bFw -bFw -bFw -bFw -bFw -bFw -bPH -bQh -bQH -bRo -bRo -bSm -bTa -bTC -bUc -bUC -bUX -bVy +bEw +bFx +bFx +bFx +bFx +bFx +bFx +bFx +bFx +bFx +bFx +bFx +bFx +bFx +bPI +bQi +bQI +bRp +bRp +bSn +bTb +bTD +bUd bUD -bWi -bWu -bWJ -bXe -bXz -bWu -bWJ -bXe -bUZ -bUZ -bZL -bZL -bUy -bPN -bPK -cbD -cce -cce -cce -cdg -aab -aab -aab -aab -aab +bUY +bVz +bUE +bWj +bWv +bWK +bXf +bXA +bWv +bWK +bXf +bVa +bVa +bZU +bZU +bUz +bPO +bPL +cbW +ccx +ccx +ccx +cds aab aab aab @@ -94524,6 +94983,11 @@ aaa aaa aaa aaa +aaa +aaa +aaa +aaa +aaa "} (119,1,1) = {" aaa @@ -94608,48 +95072,48 @@ abP acf abP acM -acY -adw +abw +adv aaU -aer -aeZ -afu -afM -agp -agP +aeq +aeY +aft +afL +ago +agO aaV -aig -aiY -ajH -aht +aif +aiX +ajG +ahs aah -aht -aig -aoG -ajH +ahs +aif +aoF +ajG aaV -asu -auj -avH -auj -auj -auj -aBL -aDI -aFE -aHF -aJb -aKW -aME -aOu -aht -aRJ -aTj -aPX -aVZ +ast +aui +avG +aui +aui +aui +aBK +aDH +aFD +aHE +aJa +aKV +aMD +aOt +ahs +aRI +aTi +aPW +aVY aXx aYJ -auB +auA aab aab bdX @@ -94669,64 +95133,60 @@ buO bvU bvX byv -bzE -bAE +bzF +bAF bxt -bCA -bDv -bEu +bCB +bDw +bEv +bFy +bGw +bHL +bIF +bJy +bKv +bLm +bMa +bMK +bGC +bGC +bOE bFx -bGv -bHK -bIE -bJx -bKu -bLl -bLZ -bMJ -bGB -bGB -bOD -bFw -bPH -bQi -bQH -bRp -bRO -bSn -bTb -bTD -bUd -bUD -bUY -bVz +bPI +bQj +bQI +bRq +bRP +bSo +bTc +bTE +bUe +bUE bUZ -bWj -bUZ -bWL -bUZ -bXA +bVA +bVa +bWk +bVa +bWM +bVa +bXB bXZ bXZ bXZ bXZ -bZt -bZM -cak -bUy -bPN -bPK -cbD -cbD -ccz -cbD -cdg +bZy +bZV +cax +bUz +bPO +bPL +cbW +cbW +ccQ +cbW cds -cdC -aab -aab -aab -aab +cdE +cdP aab aab aab @@ -94781,6 +95241,10 @@ aaa aaa aaa aaa +aaa +aaa +aaa +aaa "} (120,1,1) = {" aaa @@ -94865,48 +95329,48 @@ abP ace abP acN -acY -adx +abw +adw aaU -aes -afa -afv -afN -agq +aer +aeZ +afu +afM +agp abC aaV -aih -aiZ -ajI -aht +aig +aiY +ajH +ahs abG -aht -aih -aoH -ajI +ahs +aig +aoG +ajH aaV -asv -auk -avI -avI -ayW -aAv -aBM -aDJ -aFF -aHG -aJc +asu +auj +avH +avH +ayV +aAu +aBL +aDI +aFE +aHF +aJb aaV aaV aaV -aht -aRK -aTk -aPX -aHV +ahs +aRJ +aTj +aPW +aHU aXy aYK -auB +auA aab aab bdX @@ -94927,59 +95391,59 @@ bvU bxq byw bxt -bAF +bAG bxt -bCB +bCC aXv -bEu -bFy -bGw -bHL -bGB -bGB -bKv -bGB -bMa -bMa -bMa -bHP -bOE -bFw -bPH -bQj -bQI -bRq -bRP -bSo -bTc -bTE -bUe -bUE -bUZ -bUZ -bUZ -bWj -bUZ -bUZ -bUZ -bXz -bUZ -bUZ -bUZ -bUZ -bUZ -bZN -bZN -bUy -bPN -cbk -cbE -ccf -cbC -cbD -cdh +bEv +bFz +bGx +bHM +bGC +bGC +bKw +bGC +bMb +bMb +bMb +bHQ +bOF +bFx +bPI +bQk +bQJ +bRr +bRQ +bSp +bTd +bTF +bUf +bUF +bVa +bVa +bVa +bWk +bVa +bVa +bVa +bXA +bVa +bVa +bVa +bVa +bVa +bZW +bZW +bUz +bPO +cbB +cbX +ccy +cbV +cbW cdt -cdD +cdF +cdQ aab aab aab @@ -95122,46 +95586,46 @@ abu ach abu acO -acY +abw aaU aaU -aet +aes aaV aaV -afO +afN aaV aaV aaV aaV -aja +aiZ aaV -aht +ahs abE -aht +ahs aaV -aoI +aoH aaV aaV -asw -aul -avJ -avJ -ayX -aAw -aAw -aAw -aAw -aAw -aJd -aAw -aMF -aOv -aPX -aPX -aTl -aPX -axS -aLf +asv +auk +avI +avI +ayW +aAv +aAv +aAv +aAv +aAv +aJc +aAv +aME +aOu +aPW +aPW +aTk +aPW +axR +aLe aYL aZW aZW @@ -95184,59 +95648,59 @@ bvV bvX byx bxt -bAG +bAH bxt -bCC -bDw -bEw -bFw -bGx -bHL -bIF -bJy -bKv -bLm -bMb -bMK -bNp -bNR -bOF -bFw -bPH -bPH -bPH -bRr -bPH -bPH -bPH -bPH -bPH -bUy -bVa -bVA -bVP -bWk -bWv -bWv -bWv -bXB -bWv -bWv -bWv -bVA -bZu -bZO -bUy -bUy -caW -bMM -bMM -bMM -ccA -bMk -cbD -cdu -cdE +bCD +bDx +bEx +bFx +bGy +bHM +bIG +bJz +bKw +bLn +bMc +bML +bNq +bNS +bOG +bFx +bPI +bPI +bPI +bRs +bPI +bPI +bPI +bPI +bPI +bUz +bVb +bVB +bVQ +bWl +bWw +bWw +bWw +bXC +bWw +bWw +bWw +bVB +bZz +bZX +bUz +bUz +cbk +bMN +bMN +bMN +ccR +bMl +cbW +cdG +cdR aab aab acs @@ -95379,46 +95843,46 @@ abA aci abA acP -ada +acZ aaU -adO -aeu -afb -afw -afP -afb -agQ -ahu -aii -aeu -ajJ -afb -alC -afb -afb -aoJ -aii -arj -asx -aul -avJ -avJ -ayY -aAx -aBN -aDK -aFG -aHH -aJe +adN +aet +afa +afv +afO +afa +agP +aht +aih +aet +ajI +afa +alB +afa +afa +aoI +aih +ari +asw +auk +avI +avI +ayX aAw -aMG -avN -avN -avN -aTm -aPX -axS -aLf +aBM +aDJ +aFF +aHG +aJd +aAv +aMF +avM +avM +avM +aTl +aPW +aVZ +aLe aYM aZW bbe @@ -95440,58 +95904,58 @@ buR bvW bxr byy -bzF -bAH +bzG +bAI bxt -bCD -bDx -bEx -bFz -bGy -bHM -bIG -bJz -bKw -bLn -bMc -bMc -bMc -bNS -bOG -bFw +bCE +bDy +bEy +bFA +bGz +bHN +bIH +bJA +bKx +bLo +bMd +bMd +bMd +bNT +bOH +bFx +bPJ +bQl +bQK +bRt +bRR +bSq +bTe bPI -bQk -bQJ -bRs -bRQ -bSp -bTd -bPH aab -bUy -bVb +bUz bVc -bVb -bUy -bWw -bWM -bXf -bXC -bXf -bXf +bVd +bVc +bUz +bWx +bWN +bXg +bXD +bXg +bXg bYP -bUZ -bZv -bZP -bUy -bUy -bMk -bMk -bMk -bMk -cbi -bMk -cbD +bVa +bZA +bZY +bUz +bUz +bMl +bMl +bMl +bMl +cbz +bMl +cbW aab aab aab @@ -95636,45 +96100,45 @@ abQ acj act acQ -adb +ada aaU -adP -aev -afc -afx -afQ -afx -agR -afx -aij -ajb -afx -akG -alD -afx -afx -aoK -afx -ark -asy -aum -avK -avK +adO +aeu +afb +afw +afP +afw +agQ +afw +aii +aja +afw +akF +alC +afw +afw +aoJ +afw +arj +asx +aul avJ -aAy -aBO -aDL -aFH -aHI -aJf -aAw -aMH -aOw -aPY -avN -aTm +avJ +avI +aAx +aBN +aDK +aFG +aHH +aJe +aAv +aMG +aOv aPX -aJv +avM +aTl +aPW +aJu aXz aYN aZX @@ -95697,58 +96161,58 @@ buS bvX bxs byz -bzG -bAI +bzH +bAJ bxt -bCE -bDy -bEy -bFA -bGz -bGz -bGz -bGB -bKx -bLo -bGz -bGz -bGz -bNT -bOH -bFw +bCF +bDz +bEz +bFB +bGA +bGA +bGA +bGC +bKy +bLp +bGA +bGA +bGA +bNU +bOI +bFx +bPJ +bPI +bQL +bRu +bRS +bRS +bTf bPI -bPH -bQK -bRt -bRR -bRR -bTe -bPH aab -bUy +bUz +bVd bVc -bVb -bVc -bUy -bWx -bUA -bUA -bXD -bUA -bUA +bVd +bUz +bWy +bUB +bUB +bXE +bUB +bUB bYQ -bUZ -bZv -bZQ -bUy -caA -bZU -cbl -bZU -bZU -ccB -bMk -cbD +bVa +bZA +bZZ +bUz +caP +cad +cbC +cad +cad +ccS +bMl +cbW aab aab aab @@ -95893,47 +96357,47 @@ abR abR abR acR -adc -ady -adQ -aew +adb +adx +adP +aev aaV -afd -afR -agr -agS -ahv -afd -ajc -ajK -akH -alE -ajc -any -aoL -apR -ajc -asz -aun -avL -axy -ayZ -aAz -aBP -aDM -aFI -aHJ -aJg -aAw -aMI -aOx -aPZ -avN -aTn -aPX +afc +afQ +agq +agR +ahu +afc +ajb +ajJ +akG +alD +ajb +anx +aoK +apQ +ajb +asy +aum +avK +axx +ayY +aAy +aBO +aDL +aFH +aHI +aJf +aAv +aMH +aOw +aPY +avM +aTm +aPW aWa -aLf -aCm +aLe +aCl aZW bbg bcE @@ -95957,54 +96421,54 @@ bxt bxt bxt bxt -aUE -bDz -aUE -bFw +aUD +bDA +aUD +bFx +bGB bGA -bGz -bGz -bGz -bGz -bLo -bMd -bGz -bMd -bNT -bOI -bFw -bPJ -bQl -bQL -bRu -bRR -bRR -bTf -bPH -aab -bUy -bVb -bVB -bVb -bUy -bWy -bWN -bXg -bXD -bUA -bUA -bYR -bZg -bZv -bZR -bUy -caB -bMk +bGA +bGA +bGA +bLp +bMe +bGA +bMe +bNU +bOJ +bFx +bPK +bQm +bQM +bRv +bRS +bRS +bTg bPI -bMk -bMk -bPN -bMk +aab +bUz +bVc +bVC +bVc +bUz +bWz +bWO +bXh +bXE +bUB +bUB +bYR +bZf +bZA +caa +bUz +caQ +bMl +bPJ +bMl +bMl +bPO +bMl aaa aab aab @@ -96152,44 +96616,44 @@ acu abD abD abD -adR -aex +adQ +aew aaV +afx +afR +agr afy -afS -ags -afz -afz -aik -ajc -ajL -akI -alF -amC -anz -aoM -apS -ajc -asA -aun +afy +aij +ajb +ajK +akH +alE +amB +any +aoL +apR +ajb +asz +aum +avL +axy +ayZ +aAv +aBP +aDM +aFI +aHJ +aJg +aAv +aMI +aMI +aPZ avM -axz -aza -aAw -aBQ -aDN -aFJ -aHK -aJh -aAw -aMJ -aMJ -aQa -avN -aTm -aPX -axS -aLf +aTl +aPW +axR +aLe aYO aZW aZW @@ -96211,57 +96675,57 @@ buU bvZ bxu byA -bzH +bzI byA -bBC +bBD bqm -bDA +bDB bmL -bFB -bGB -bGz -bGz -bGz -bGz -bLo -bGz -bGz -bGz -bNT -bOJ -bFw -bPK -bPH -bQM -bRv -bRS -bSq -bTg -bPH +bFC +bGC +bGA +bGA +bGA +bGA +bLp +bGA +bGA +bGA +bNU +bOK +bFx +bPL +bPI +bQN +bRw +bRT +bSr +bTh +bPI aab -bUy -bUy -bUy -bUy -bUy -bUy -bUy -bXh -bXE +bUz +bUz +bUz +bUz +bUz +bUz +bUz +bXi +bXF bYa -bYw +bYt bYS -bZh -bZv -bZS -bUy -caB -bMk -bRy -cbF -bMk -bPN -bMk +bZg +bZA +cab +bUz +caQ +bMl +bRz +cbY +bMl +bPO +bMl aaa aaa aab @@ -96409,45 +96873,45 @@ aaV aaV aaV aaV -adS -aey +adR +aex aaV -afz -afT -afz -afz -ahw -afz -ajc -ajM -akJ -alG -alG -anA -alG -apT -ajc -asB -auo -avN -axA -azb -aAA -aBR -aDO -aFK -aHL -aJi -aAw -avN -avN -aQb -avN -aTo -aPX +afy +afS +afy +afy +ahv +afy +ajb +ajL +akI +alF +alF +anz +alF +apS +ajb +asA +aun +avM +axz +aza +aAz +aBQ +aDN +aFJ +aHK +aJh +aAv +avM +avM +aQa +avM +aTn +aPW aWb -aLf -aCm +aLe +aCl aZY bbh bcF @@ -96468,57 +96932,57 @@ buV brm brm brm -bzI -bAJ -bAJ -bCF -bDB -bEz -bFw -bGC -bHN -bIH -bJA -bKy -bLo -bGz -bGz -bGz -bNT -bOK -bFw -bPK -bMk -bMk -bMk -bMk -bMk -bMk -bMk -bMk -bMk -bVd -bQP -bVd -bQP -bWz -bUy -bUy -bXF -bUy -bYx -bUy -bZi -bZv -bZT -bUy -caB -bRw -bPI -bPI -bMk -bPN -bMk +bzJ +bAK +bAK +bCG +bDC +bEA +bFx +bGD +bHO +bII +bJB +bKz +bLp +bGA +bGA +bGA +bNU +bOL +bFx +bPL +bMl +bMl +bMl +bMl +bMl +bMl +bMl +bMl +bMl +bVe +bQQ +bVe +bQQ +bWA +bUz +bUz +bXG +bUz +bYu +bUz +bZh +bZA +cac +bUz +caQ +bRx +bPJ +bPJ +bMl +bPO +bMl aaa aaa aaa @@ -96665,45 +97129,45 @@ aah acv abS abS -adz -adT -aez -afd -afA -afU -agt -agv -ahx -ail -ajc -ajN -akK -alH -alH -anB -aoN -apU -ajc -asC -alC -avO -axB -azc -aAB -aBS -aDP -aFL -aHM -aJj +ady +adS +aey +afc +afz +afT +ags +agu +ahw +aik +ajb +ajM +akJ +alG +alG +anA +aoM +apT +ajb +asB +alB avN -aMK -aOy -aQc -aRL -aTm -aPX -aJu -aLf +axA +azb +aAA +aBR +aDO +aFK +aHL +aJi +avM +aMJ +aOx +aQb +aRK +aTl +aPW +aJt +aLe aYP aZY aZY @@ -96725,57 +97189,57 @@ buW bwa bxv byB -bzJ -bAK -bBD +bzK +bAL +bBE bqm bom -bEA -bFw -bGD -bHO -bGB -bJB -bKz -bLo -bMe -bGz -bNq -bNT -bOL -bFw -bPL -bQm -bQN -bMM -bMM -bSr -bMM -bMM -bUf -bMM -bMM -bMM -bMM -bMM -bWA -bWO -bXi -bXG +bEB +bFx +bGE +bHP +bGC +bJC +bKA +bLp +bMf +bGA +bNr +bNU +bOM +bFx +bPM +bQn +bQO +bMN +bMN +bSs +bMN +bMN +bUg +bMN +bMN +bMN +bMN +bMN +bWB +bWP +bXj +bXH bYb -bYy -bUy -bUy -bZw -bUy -bUy -caB -bQo -bPI -bWz -bMk -bPN -bMk +bYv +bUz +bUz +bZB +bUz +bUz +caQ +bQp +bPJ +bWA +bMl +bPO +bMl aaa aaa aaa @@ -96923,45 +97387,45 @@ acw abT aaD aaV -adU -aeA +adT +aez aaV -afz -afz -agu -agT -afz -aim -ajc -ajO -akL -alG -amD -alG -aoO -apV -ajc -asD -aup -avN -avN -avN -avN -aBT -aDQ -aze -aHM -aJj -avN -aML -aML -aQc -aRM -aTm -aPX -axS -aLf -aCm +afy +afy +agt +agS +afy +ail +ajb +ajN +akK +alF +amC +alF +aoN +apU +ajb +asC +auo +avM +avM +avM +avM +aBS +aDP +azd +aHL +aJi +avM +aMK +aMK +aQb +aRL +aTl +aPW +axR +aLe +aCl aZZ bbi bcG @@ -96987,53 +97451,53 @@ bqm bqm bqm biN -bEB -bFw -bGE -bHP -bII -bJC -bKA -bLp -bMe -bGz -bNq -bNT -bOL -bFw -bPM -bQn -bQO -bPI -bQP -bSs -bTh -bMj -bMk -bMk -bMk -bMk -bVQ -bMk +bEC +bFx +bGF +bHQ +bIJ +bJD +bKB +bLq +bMf +bGA +bNr +bNU +bOM +bFx bPN -bUy -bXj -bXH -bYc -bYz -bUy -bZj -bZx -bZU -bZU -caC -bMk -bPI -bPI bQo -bPN -bMk +bQP +bPJ +bQQ +bSt +bTi bMk +bMl +bMl +bMl +bMl +bVR +bMl +bPO +bUz +bXk +bXI +bYc +bYw +bUz +bZi +bZC +cad +cad +caR +bMl +bPJ +bPJ +bQp +bPO +bMl +bMl aaa aaa aaa @@ -97180,44 +97644,44 @@ aad aah aad aaV -adV -aeB -afd -afz -afV -agv -afz -afz -afz -ajc -ajP -akM -alI -amE -alG -aoO -apW -ajc -asE -auq -avP -axC -azd -aAC -aBU -aDR -aFM -aHN -aJk -aKX -aMM -aOz -aQd -aOz -aTp -aPX -axS -aLf +adU +aeA +afc +afy +afU +agu +afy +afy +afy +ajb +ajO +akL +alH +amD +alF +aoN +apV +ajb +asD +aup +avO +axB +azc +aAB +aBT +aDQ +aFL +aHM +aJj +aKW +aML +aOy +aQc +aOy +aTo +aPW +axR +aLe aYQ baa bbi @@ -97239,58 +97703,58 @@ buY bwb bxx byC -bzK -bAL -bBE -bCG +bzL +bAM +bBF +bCH bxx -bEB -bFw -bFw -bHQ -bFw -bFw -bKB -bGz -bMe -bGz -bNq -bNT -bOL -bFw -bPN -bMk -bMk -bRw -bMk -bMk -bMk -bMk -bMk -bUF -bVe -bSt -bPI -bMk -bPN -bUy -bXk -bXI +bEC +bFx +bFx +bHR +bFx +bFx +bKC +bGA +bMf +bGA +bNr +bNU +bOM +bFx +bPO +bMl +bMl +bRx +bMl +bMl +bMl +bMl +bMl +bUG +bVf +bSu +bPJ +bMl +bPO +bUz +bXl +bXJ bYd -bYA -bUy -bZk -bMk -bPI -bMk -bPI -bPI -bRy -bPI -bRw -bPN -bQP -bMk +bYx +bUz +bZj +bMl +bPJ +bMl +bPJ +bPJ +bRz +bPJ +bRx +bPO +bQQ +bMl aaa aaa aab @@ -97437,45 +97901,45 @@ aaD acl aaC aaV -adW -aeC +adV +aeB aaV -afz -afz -agu -agT -afz -aim -ajc -ajQ -akN -alJ -amF -anC -aoP -apX -arl -asF -aur -avQ -axD -aze -aAD -aze -aDS -aFN -aHO -aJl -aKY -aMN -aKY -aQe -aze -aTq -aPX +afy +afy +agt +agS +afy +ail +ajb +ajP +akM +alI +amE +anB +aoO +apW +ark +asE +auq +avP +axC +azd +aAC +azd +aDR +aFM +aHN +aJk +aKX +aMM +aKX +aQd +azd +aTp +aPW aWc -aLf -aCm +aLe +aCl bab bbj bcI @@ -97496,58 +97960,58 @@ buZ bwc bxx byD -bzL -bAM +bzM +bAN bxx bxx bxx -bEB -bFw -bGF -bHR -bIJ -bFw -bKC -bLq -bMf -bGz -bGz -bNU -bLq -bPe -bPO -bQo -bQP -bPI -bMk -bSt -bSt -bSt -bMk -bUG -bPI -bPI -bSt -bMk -bWB -bWP -bVA -bXJ -bYe -bUZ -bUy -bZk -bMk +bEC +bFx +bGG +bHS +bIK +bFx +bKD +bLr +bMg +bGA +bGA +bNV +bLr +bPf +bPP +bQp bQQ -bPI -bPI -caD -bQo -bPI -bMk -bPN -bQP -bMk +bPJ +bMl +bSu +bSu +bSu +bMl +bUH +bPJ +bPJ +bSu +bMl +bWC +bWQ +bVB +bXK +bYe +bVa +bUz +bZj +bMl +bQR +bPJ +bPJ +caS +bQp +bPJ +bMl +bPO +bQQ +bMl aaa aab aab @@ -97694,44 +98158,44 @@ aaD aah aah aaV -adX -aez -afd -afz -afW -agv -afz -afz -afz -ajc -ajR -akN -alJ -amG -anD -aoQ -apY -arm -asG -auq -avP -axE -azf -aAC -aBV -aBZ -aFO -aHP -aJm -aKZ -aMO -aOA -aQf +adW +aey +afc +afy +afV +agu +afy +afy +afy +ajb +ajQ +akM +alI +amF +anC +aoP +apX +arl +asF +aup +avO +axD aze -aTq -aPX +aAB +aBU +aBY +aFN +aHO +aJl +aKY +aMN +aOz +aQe +azd +aTp +aPW aWd -aLh +aLg aYR aZY aZY @@ -97753,58 +98217,58 @@ bva bwd bxy byE -bzM -bAM -bBF -bCG +bzN +bAN +bBG +bCH bxx -bEC -bFw -bGG -bHS -bIK -bFw -bKD -bIF -bMg -bJx -bIF +bED +bFx +bGH +bHT +bIL +bFx +bKE +bIG +bMh bJy -bOM -bFw -bPN -bMk -bQQ -bPI -bMk -bSt -bSv -bSv -bUg -bPI +bIG +bJz +bON +bFx +bPO +bMl +bQR +bPJ +bMl bSu +bSw +bSw +bUh +bPJ bSv -bSt -bMk -bPN -bUy -bXl -bXK +bSw +bSu +bMl +bPO +bUz +bXm +bXL bYf -bYB -bUy -bZk -bZy -bPI -bPI -caD -bRy -bPI -cbG -bMk -ccC -bZy -bMk +bYy +bUz +bZj +bZD +bPJ +bPJ +caS +bRz +bPJ +cbZ +bMl +ccT +bZD +bMl aaa aab aab @@ -97951,44 +98415,44 @@ aaA aah aah aaV -adY -aeD +adX +aeC aaV -afB -afz -agu -agT -ahy -aim -ajc -ajR -akO -alK -amH -anE -aoR -apZ -arn -asH -aus -avN -avN -avN -avN -aBW -aDS -aFP -aHQ -aJn -aze -aze -aOB -aQg -aze -aTr -aPX -axS -aLf +afA +afy +agt +agS +ahx +ail +ajb +ajQ +akN +alJ +amG +anD +aoQ +apY +arm +asG +aur +avM +avM +avM +avM +aBV +aDR +aFO +aHP +aJm +azd +azd +aOA +aQf +azd +aTq +aPW +axR +aLe aYM bac bbk @@ -98015,53 +98479,53 @@ bxx bxx bxx bxx -bEC -bFw -bGH -bHT -bIL -bFw -bFw -bFw -bMh -bML -bML -bNV -bFw -bFw -bPN -bMk -bPI -bQo -bMk +bED +bFx +bGI +bHU +bIM +bFx +bFx +bFx +bMi +bMM +bMM +bNW +bFx +bFx +bPO +bMl +bPJ +bQp +bMl +bSv +bSw +bSw +bUi +bPJ +bVg +bVg bSu -bSv -bSv -bUh -bPI -bVf -bVf -bSt -bMk -bWC -bUy -bUy -bUy -bUy -bUy -bUy -bZk -bPI -bMk -bQo -bMk -bMk -bMk -bMk -bQo -bPN -ccW -bMk +bMl +bWD +bUz +bUz +bUz +bUz +bUz +bUz +bZj +bPJ +bMl +bQp +bMl +bMl +bMl +bMl +bQp +bPO +cdj +bMl aaa aab aab @@ -98208,44 +98672,44 @@ acl aah aah aaV -adZ -aeE -afe -afe -afe -afe -afe -afe -afe -ajd -ajd +adY +aeD +afd +afd +afd +afd +afd +afd +afd ajc ajc -ajc -ajc -aoS -aqa -ajc -asI -auq -avP -axC +ajb +ajb +ajb +ajb +aoR +apZ +ajb +asH +aup +avO +axB +azc +aAB +aBW +aBY +aFP +aFM +aJn azd -aAC -aBX -aBZ -aFQ -aFN -aJo -aze -aFN -aOC -aQh -aze -aTs -aPX -awf -aLf +aFM +aOB +aQg +azd +aTr +aPW +awe +aLe aYS bad bad @@ -98267,58 +98731,58 @@ bvc bwf bxz byF -bzN -bAN -bBG -bBG +bzO +bAO +bBH +bBH bxz -bEC -bFw -bFw -bFw -bFw -bFw -bKE -bLr -bMi -bMM -bMM -bMM -bMM -bMM -bPP -bPI -bPI -bPI -bMk -bSv -bSv -bSv -bUh -bPI -bVf -bVf -bPI -bMk -bWD -bMM -bMM -bMM -bYg -bMM -bMM -bZl -bMM -bMM -bMM -bMM -bMM -bMM -bMM -bMM -bPP +bED +bFx +bFx +bFx +bFx +bFx +bKF +bLs bMj +bMN +bMN +bMN +bMN +bMN +bPQ +bPJ +bPJ +bPJ +bMl +bSw +bSw +bSw +bUi +bPJ +bVg +bVg +bPJ +bMl +bWE +bMN +bMN +bMN +bYg +bMN +bMN +bZk +bMN +bMN +bMN +bMN +bMN +bMN +bMN +bMN +bPQ bMk +bMl aab aab aab @@ -98465,42 +98929,42 @@ acx aah abU aaV -aea -aeF -afe -afC -afC -agw -afC -ahz -ain -aje -ajS -akP -afe -amI +adZ +aeE +afd +afB +afB +agv +afB +ahy +aim +ajd +ajR +akO +afd +amH abC abR -aqb -aro -asF -aur -avR -axD -aze -aAE -aBY -aDT -aFR -aHR -aJp -aHR -aMP -aHR -aQi -aHR -aTt -aPX +aqa +arn +asE +auq +avQ +axC +azd +aAD +aBX +aDS +aFQ +aHQ +aJo +aHQ +aMO +aHQ +aQh +aHQ +aTs +aPW aWe aXA aYT @@ -98523,59 +98987,59 @@ btS bvd bwg bxz -byF -bzO -bAO -bBH -bCH +byG +bzP +bAP +bBI +bCI bxz -bED -bFC -bER -bER -bER -bER -bKF +bEE +bFD +bES +bES +bES +bES +bKG biN -bMj -bMj -bNr -bNW -bMk -bMk -bMk -bMk -bMk -bRx -bMk -bSv -bSv -bSv -bUg -bPI -bVf -bVf -bPI -bMk -bPI -bWQ -bQP -bWz -bMk -bMk -bMk -bMk -bMk -bMk -bMk -bMk -bMk -bMk -bMk -bMk -bMk bMk bMk +bNs +bNX +bMl +bMl +bMl +bMl +bMl +bRy +bMl +bSw +bSw +bSw +bUh +bPJ +bVg +bVg +bPJ +bMl +bPJ +bWR +bQQ +bWA +bMl +bMl +bMl +bMl +bMl +bMl +bMl +bMl +bMl +bMl +bMl +bMl +bMl +bMl +bMl aab aab aaa @@ -98723,43 +99187,43 @@ aah aaA aaV abC -aeF -aff -afD -afX -agx -agU -ahA -aio -ajf -ajS -akQ +aeE afe -amJ -anF +afC +afW +agw +agT +ahz +ain +aje +ajR +akP +afd +amI +anE abC -aqc -arp -asJ -auq -avP -axF -azg -aAC -aBZ -aze -aDS -aHS -aJq -aze -aDS -aOD -aQj -aze -aTu -aPX -axS -aLf +aqb +aro +asI +aup +avO +axE +azf +aAB +aBY +azd +aDR +aHR +aJp +azd +aDR +aOC +aQi +azd +aTt +aPW +axR +aLe aYU baf bbm @@ -98781,44 +99245,44 @@ bve bwh bxz bxz -bzP +bzQ bxz -bBI +bBJ bxz bxz -bEE -bFD -bEE -bEE -bEE -bEE -bKG +bEF +bFE +bEF +bEF +bEF +bEF +bKH biN -bMk -bMk -bMk -bMk -bMk +bMl +bMl +bMl +bMl +bMl aab aaa aaa -bMk -bPI -bMk -bSt -bSv +bMl +bPJ +bMl bSu -bUh -bSt +bSw bSv -bSv -bPI -bMk -bPI -bMk -bMk -bMk -bMk +bUi +bSu +bSw +bSw +bPJ +bMl +bPJ +bMl +bMl +bMl +bMl aaa aaa aab @@ -98977,47 +99441,47 @@ aah aah aah aah -add +adc aaV -aeb -aeF -afe -afE +aea +aeE +afd afD -afD -agV -ahB -agx -ajg -ajT -akR -alL -amK -anG -aoT -aqd -arq -asK -aut -avN -avN -avN -avN -aCa -aDU -aCa -avN -aCa -aLa -aCa -avN -aCa -aRN -aCa -aPX -axS -aLf -aCm +afC +afC +agU +ahA +agw +ajf +ajS +akQ +alK +amJ +anF +aoS +aqc +arp +asJ +aus +avM +avM +avM +avM +aBZ +aDT +aBZ +avM +aBZ +aKZ +aBZ +avM +aBZ +aRM +aBZ +aPW +axR +aLe +aCl bag bbn bcM @@ -99037,42 +99501,42 @@ btR bvf bwe bxA -byG -bzQ -bAP -bBJ -bCI -bDC +byH +bzR +bAQ +bBK +bCJ +bDD +bEG +bFF +bGJ +bHV +bIN bEF -bFE -bGI -bHU -bIM -bEE -bKG +bKH bom biN -bMN -bNs +bMO +bNt biN aab aab aab aaa -bMk +bMl +bRz +bMl +bSu +bSu +bTG +bMl +bPJ +bPJ +bPJ +bSu +bMl bRy -bMk -bSt -bSt -bTF -bMk -bPI -bPI -bPI -bSt -bMk -bRx -bMk +bMl aaa aaa aaa @@ -99237,43 +99701,43 @@ acl aaD aaV aaV -aeG -afe -afe -afY -afD -afY -afe -aip -afe -afe -afe -afe -amL -anH -aoU -aqe +aeF +afd +afd +afX +afC +afX +afd +aio +afd +afd +afd +afd +amK +anG +aoT +aqd aaV -asL -aun -avS -axG -azh -avN -aCb -aze -aFS -avN -aJr -aze -aMQ -avN -aCb -aze -aTv -aPX -axS -aLf +asK +aum +avR +axF +azg +avM +aCa +azd +aFR +avM +aJq +azd +aMP +avM +aCa +azd +aTu +aPW +axR +aLe aYQ bah bbo @@ -99294,42 +99758,42 @@ btS bvg bwi bwi -byH -bzR -bAQ -bBK -bCJ -bDD -bEG -bFF -bGJ -bHV -bIN -bEE -bKH -bLs -bMl +byI +bzS +bAR +bBL +bCK +bDE +bEH +bFG +bGK +bHW +bIO +bEF +bKI +bLt +bMm bom -bNt +bNu biN aab aab aab aaa -bMk -bPI -bMk -bMk -bTi -bMk -bMk -bSt -bPI -bPI -bPI -bMk -bPI -bMk +bMl +bPJ +bMl +bMl +bTj +bMl +bMl +bSu +bPJ +bPJ +bPJ +bMl +bPJ +bMl aaa aaa aaa @@ -99493,45 +99957,45 @@ abI aad aad aad -aec -aeH +aeb +aeG aah -afe +afd +afB afC -afD -afC -afe -aiq -ajh -ajU -akS -alM -amM -anI -aoU -aqf -arr -adP -aun -avS -axH -azi -avN -aCc -aDV -aFT -avN -aCc -aDV -aMR -avN -aCc -aDV -aTw -aPX -aJv -aLf -aCm +afB +afd +aip +ajg +ajT +akR +alL +amL +anH +aoT +aqe +arq +adO +aum +avR +axG +azh +avM +aCb +aDU +aFS +avM +aCb +aDU +aMQ +avM +aCb +aDU +aTv +aPW +aJu +aLe +aCl bai bbp bcO @@ -99551,42 +100015,42 @@ bjD bvh bwj btW -byI +byJ bvh bwj baf -bCK -bDE -bEH -bFG -bGK -bHW -bIO -bEE +bCL +bDF +bEI +bFH +bGL +bHX +bIP +bEF bom -bKG +bKH biN -bMO -bNu +bMP +bNv biN aab aab aaa aaa -bMk -bPI -bMk -bSw -bPI -bTG -bMk -bMk -bMk -bMk -bTi -bMk -bPI -bMk +bMl +bPJ +bMl +bSx +bPJ +bTH +bMl +bMl +bMl +bMl +bTj +bMl +bPJ +bMl aaa aaa aab @@ -99748,46 +100212,46 @@ abX acm acy acS -ade -ade +add +add acl -aeI -afg -afe -afZ -afD +aeH +aff +afd +afY afC -afe -air -aji -ajV -akT -alN -amN +afB +afd +aiq +ajh +ajU +akS +alM +amM abC -aoV -aqg -ars -adP -aun -avT -axI -azj -avN -aCd -aDW -aCd -avN -aCd -aLb -aCd -avN -aCd -aRO -aCd -aPX +aoU +aqf +arr +adO +aum +avS +axH +azi +avM +aCc +aDV +aCc +avM +aCc +aLa +aCc +avM +aCc +aRN +aCc +aPW aWf -aLf +aLe aYQ baj bbq @@ -99808,20 +100272,20 @@ baf bvi bwk bwn -byJ -bzS -bAR -bBL -bCL -bDF -bEI -bFH -bGL -bGL -bIP -bEI -bEI -bKG +byK +bzT +bAS +bBM +bCM +bDG +bEJ +bFI +bGM +bGM +bIQ +bEJ +bEJ +bKH biN biN biN @@ -99830,20 +100294,20 @@ biN biN aaa aaa -bMk -bPI -bMk -bPI -bPI -bTH -bUi +bMl +bPJ +bMl +bPJ +bPJ +bTI bUj -bUj -bVC -bSt -bMk -bPI -bMk +bUk +bUk +bVD +bSu +bMl +bPJ +bMl aab aab aab @@ -100005,46 +100469,46 @@ abY acn abI acT -adf -adA -aed -aeJ -afh -afe -afC -agy -afC -afe -ais -ajj -ajW -akU -alO -amO -anJ -aoW -aqh -art -asM -auu -avU -avU -avU -aAF -aCe -aDX -aFU -aHT -aCe -aDX -aMS -aOE -aQk -aRP -aTx -aUH +ade +adz +aec +aeI +afg +afd +afB +agx +afB +afd +air +aji +ajV +akT +alN +amN +anI +aoV +aqg +ars +asL +aut +avT +avT +avT +aAE +aCd +aDW +aFT +aHS +aCd +aDW +aMR +aOD +aQj +aRO +aTw +aUG aWg -aLf +aLe aYM bag bbr @@ -100065,42 +100529,42 @@ baf bvj bwl bxB -byK -bzT -bAS +byL +bzU +bAT baf -bCM -bDG +bCN +bDH +bEK +bFJ +bGN +bHY +bIR +bJE bEJ -bFI -bGM -bHX -bIQ -bJD -bEI -bKG +bKH biN -bMP -bNv -bNX -bON +bMQ +bNw +bNY +bOO biN aab aab -bMk -bPI -bMk -bPI -bSt -bSt -bRy -bPI -bSt -bSt -bSt -bMk -bPI -bMk +bMl +bPJ +bMl +bPJ +bSu +bSu +bRz +bPJ +bSu +bSu +bSu +bMl +bPJ +bMl aab aab aab @@ -100262,46 +100726,46 @@ abZ aco abI acU -adg -adB -aee -aeK -afi -afe -afe -afe -afe -afe -ait -ait -ait -ait -ait +adf +adA +aed +aeJ +afh +afd +afd +afd +afd +afd +ais +ais +ais +ais +ais aaV aaV aaV aaV aaV -asN -auv -avV +asM +auu +avU abD abD -aAG +aAF abD -aDY -aFV -aHU +aDX +aFU +aHT abC abD -aMT -aOF -aQl +aMS +aOE +aQk abD -aTy -aUH +aTx +aUG aWg -aLf +aLe aYQ bah bbs @@ -100322,42 +100786,42 @@ btU bvk bwm bxC -byL -bzU +byM +bzV bwm -bBM -bCN -bDG -bEK -bFJ -bGN -bHY -bGN -bJE -bEI -bKG +bBN +bCO +bDH +bEL +bFK +bGO +bHZ +bGO +bJF +bEJ +bKH biN -bJM -bNw -bNY -bNY +bJN +bNx +bNZ +bNZ biN aab aaa -bMk -bPI -bMk -bPI -bPI -bTI -bUj -bUH -bVg -bVD -bUj -bMk -bPI -bMk +bMl +bPJ +bMl +bPJ +bPJ +bTJ +bUk +bUI +bVh +bVE +bUk +bMl +bPJ +bMl aab aaa aaa @@ -100519,16 +100983,16 @@ abI acp abI aah -adh +adg aah -aef -aeL -afj +aee +aeK +afi aad aah -agz -agW -aej +agy +agV +aei aah aah aah @@ -100539,24 +101003,24 @@ aah aah aah aaV -asO -asO -asO -asO -asO -asO -asO -asO -aFW -asO -aJs -aLc -aMU -aht -aht -aht -aht -aht +asN +asN +asN +asN +asN +asN +asN +asN +aFV +asN +aJr +aLb +aMT +ahs +ahs +ahs +ahs +ahs aWh aXB aYV @@ -100579,42 +101043,42 @@ btV bvl bwn bwn -byM -bzV -bAT +byN +bzW +bAU baf -bCM -bDH -bEK -bFK -bGO -bHZ -bIR -bJF -bEI -bKG -bMm -bMQ -bNx -bNZ -bOO +bCN +bDI +bEL +bFL +bGP +bIa +bIS +bJG +bEJ +bKH +bMn +bMR +bNy +bOa +bOP biN aab aaa -bMk -bPI -bMk -bSx -bTj -bTJ -bMk -bMk -bMk -bMk -bMk -bMk -bPI -bMk +bMl +bPJ +bMl +bSy +bTk +bTK +bMl +bMl +bMl +bMl +bMl +bMl +bPJ +bMl aab aab aaa @@ -100778,44 +101242,44 @@ aad aad aad aad -aeg +aef aad aad aad -aga -agA -agA -ahC -agA -agA -agA -agA -agA -agA -agA -agA -agA -aru -asO -auw -avW -axJ -azk -avW -aCf -aDZ -aFX -asO -aJt -aLd -aMV -aOG -aNi -aRQ -axS -axS +afZ +agz +agz +ahB +agz +agz +agz +agz +agz +agz +agz +agz +agz +art +asN +auv +avV +axI +azj +avV +aCe +aDY +aFW +asN +aJs +aLc +aMU +aOF +aNh +aRP +axR +axR aWi -aLf +aLe aYQ bal bbu @@ -100836,42 +101300,42 @@ btW bvm bwo bxD -byN -bzW -bAU -bBN -bCM -bDG -bEK -bFL -bGP -bIa -bGP -bJG -bEI -bKG +byO +bzX +bAV +bBO +bCN +bDH +bEL +bFM +bGQ +bIb +bGQ +bJH +bEJ +bKH biN -bJM -bNy -bOa -bOa +bJN +bNz +bOb +bOb biN aaa aaa -bMk -bRz -bMk -bMk -bMk -bMk -bMk -bRz -bPI -bPI -bPI -bPI -bPI -bMk +bMl +bRA +bMl +bMl +bMl +bMl +bMl +bRA +bPJ +bPJ +bPJ +bPJ +bPJ +bMl aab aab aaa @@ -101033,45 +101497,45 @@ abG acr acz aaT -adi -adC -aeh -aeM -afk -afk -agb +adh +adB +aeg +aeL +afj +afj +aga aad -aeO -aeO -aeO -aeO -aeO -aeO -aeO -aeO -aeO -aeO +aeN +aeN +aeN +aeN +aeN +aeN +aeN +aeN +aeN +aeN aad -arv -asO -auw -avX -axK -azl -avX -aCg -aEa -aFX -asO -aJu -aLe -aMW -aOH -aOH -aOH -aOH -aOH -aOH +aru +asN +auv +avW +axJ +azk +avW +aCf +aDZ +aFW +asN +aJt +aLd +aMV +aOG +aOG +aOG +aOG +aOG +aOG aXC aYW bam @@ -101097,38 +101561,38 @@ brA brA brA baf -bCO -bDI -bEK -bFM -bGN -bIb -bIS -bJH -bEI -bKG +bCP +bDJ +bEL +bFN +bGO +bIc +bIT +bJI +bEJ +bKH biN -bMR -bNv -bOb -bOP +bMS +bNw +bOc +bOQ biN aab aab -bMk -bPI -bPI -bPI -bPI -bPI -bRy -bPI -bMk -bMk -bMk -bMk -bMk -bMk +bMl +bPJ +bPJ +bPJ +bPJ +bPJ +bRz +bPJ +bMl +bMl +bMl +bMl +bMl +bMl aab aab aaa @@ -101292,43 +101756,43 @@ acA acV acA aad -aei -aeN -afl -afF -agc +aeh +aeM +afk +afE +agb aad -adI -adI -ahD -ajk -ajX -ajX -adI -ahD -ahD -adI +adH +adH +ahC +ajj +ajW +ajW +adH +ahC +ahC +adH aad -arv -asO -aux -avY -axL -azm -avY -aCh -aEb -aFY -asO -axS -aLf -aMX -azr -axS -axS -axS -aUI -axS +aru +asN +auw +avX +axK +azl +avX +aCg +aEa +aFX +asN +axR +aLe +aMW +azq +axR +axR +axR +aUH +axR aXD aYX ban @@ -101350,37 +101814,37 @@ btX bvn bwp bxE -byO -bzX -bAV -bBO -bCP -bDG -bEL -bFN -bGN -bIc -bIT -bJI -bEI -bKG +byP +bzY +bAW +bBP +bCQ +bDH +bEM +bFO +bGO +bId +bIU +bJJ +bEJ +bKH biN -bMm +bMn biN biN biN biN aab aab -bMk -bMk -bMk -bMk -bMk -bMk -bMk -bMk -bMk +bMl +bMl +bMl +bMl +bMl +bMl +bMl +bMl +bMl aab aab aab @@ -101547,7 +102011,7 @@ aaa aad acB aah -adj +adi aad abG aad @@ -101555,38 +102019,38 @@ aad aad abG aad -agX -ahD -aiu -ajl +agW +ahC +ait ajk -akV -adI -adI -aen -aen +ajj +akU +adH +adH +aem +aem aad -arv -asO -auy -avZ -axM -azn -aAH -aCi -aEc -aFZ -asO -axS -aLf -axS -aOI -aQm -aRR -aRR -aRR +aru +asN +aux +avY +axL +azm +aAG +aCh +aEb +aFY +asN +axR +aLe +axR +aOH +aQl +aRQ +aRQ +aRQ aWj -aOI +aOH aYY baj bbx @@ -101607,23 +102071,23 @@ btY bvo bwq btY -byP -bzY -bAW -bBP -bCQ -bDJ -bEM -bFO -bGQ -bId -bIU -bJJ -bEI -bKG +byQ +bzZ +bAX +bBQ +bCR +bDK +bEN +bFP +bGR +bIe +bIV +bJK +bEJ +bKH biN -bMS -bNz +bMT +bNA bli biN aab @@ -101804,46 +102268,46 @@ aaa aad acC acW -adk +adj aad -aej +aei aad aaa aad -aej +aei aad -agY -adI -aiv -aen -ajY -aix -alP -ajk -adI -aoX +agX +adH +aiu +aem +ajX +aiw +alO +ajj +adH +aoW aad -arv -asO -auz -awa -axN +aru +asN +auy avZ -avZ -aCj -aEd -aGa -asO -aJv -aLf -aMY -aOI -aQn -aRS -aRS -aRS +axM +avY +avY +aCi +aEc +aFZ +asN +aJu +aLe +aMX +aOH +aQm +aRR +aRR +aRR aWk -aOI +aOH aYZ baj bby @@ -101864,24 +102328,24 @@ btY bvp bwr bxF -byQ -bzZ -bAX -bBQ -bCR -bDK -bEN -bFP -bGR -bIe -bIV -bJK -bEI -bKG +byR +bAa +bAY +bBR +bCS +bDL +bEO +bFQ +bGS +bIf +bIW +bJL +bEJ +bKH biN -bMT -bNA -bOc +bMU +bNB +bOd biN aab aab @@ -102068,39 +102532,39 @@ aad aad aad aah -agB -adI -adI -aen -ajm -aen -aen -alQ -amP -adI -ajY +agA +adH +adH +aem +ajl +aem +aem +alP +amO +adH +ajX aad -arw -asO -auA -awb -axO -azo -aAI -aCk -aEe -aGb -asO -axS -aLg -aMZ -aOI -aQo -aQo -aQo -aUJ +arv +asN +auz +awa +axN +azn +aAH +aCj +aEd +aGa +asN +axR +aLf +aMY +aOH +aQn +aQn +aQn +aUI aWl -aOI +aOH aZa baj bbz @@ -102124,25 +102588,25 @@ brA bvq bws brA -bBR -bCS +bBS +bCT bxx -bEI -bEI -bEI -bEI -bEI -bEI -bEI -bKG +bEJ +bEJ +bEJ +bEJ +bEJ +bEJ +bEJ +bKH biN biN bom -bOd +bOe biN -bPf -bPQ -bQp +bPg +bPR +bQq aab aab aab @@ -102326,38 +102790,38 @@ aah aah aah aad -adp -adI -ahD -ahD -ajZ -akW -alP -ajX -adI -aoY +ado +adH +ahC +ahC +ajY +akV +alO +ajW +adH +aoX aad -arx -asO -asO -awc -axP -axP -aAJ -aCl -asO -aGc -asO -aJw -aLh -aNa -aOJ -aQp -aQp -aTz -aUK -aWm +arw +asN +asN +awb +axO +axO +aAI +aCk +asN +aGb +asN +aJv +aLg +aMZ aOI +aQo +aQo +aTy +aUJ +aWm +aOH aZa baj bbA @@ -102378,28 +102842,28 @@ bua bvr bwt bxG -byR -bAa -bAY -bBS -bCT -bDL -bEO -bFQ -bGS -bIf -bIW -bJL -bJL -bLt -bMn +byS +bAb +bAZ +bBT +bCU +bDM +bEP +bFR +bGT +bIg +bIX bJM +bJM +bLu +bMo +bJN bom -bOe -bOQ -bPg -bPR -bQq +bOf +bOR +bPh +bPS +bQr aab acs aab @@ -102583,38 +103047,38 @@ aad aad aad aad -aeO -aeO -aiw -ajn -aiw -akX -alR -amQ -anK +aeN +aeN +aiv +ajm +aiv +akW +alQ +amP +anJ aad aad -arw +arv aah -auB -awd -axQ -azp -aAK -aCm -aEf -axS -aHV -axS -aLf -aNb -aOK -aQq -aRT -aTA -aUL +auA +awc +axP +azo +aAJ +aCl +aEe +axR +aHU +axR +aLe +aNa +aOJ +aQp +aRS +aTz +aUK aWn -aOI +aOH aZa baj bbB @@ -102637,26 +103101,26 @@ bvs bvs bvs bvs -bAZ -bBT -bCU -bDL -bEP -bFR -bDL -bIg +bBa +bBU +bCV +bDM +bEQ +bFS +bDM +bIh biN biN biN biN -bMo +bMp biN biN biN biN -bPh -bPQ -bQp +bPi +bPR +bQq aab aab aaa @@ -102832,46 +103296,46 @@ aaa aad aah aad -adl -adD -adl -aeO -afm -ael -agd -ael -adI -ahE -adl -aen -aen -adl -aen -amR -adI +adk +adC +adk +aeN +afl +aek +agc +aek +adH +ahD +adk +aem +aem +adk +aem +amQ +adH aad aav -ary -asP -auC -awe -axR -azq -aAL -aCn -awe -awe -aHW -awe -aLi -aNc -aOL -aQr -aRU -aTB -aQp +arx +asO +auB +awd +axQ +azp +aAK +aCm +awd +awd +aHV +awd +aLh +aNb +aOK +aQq +aRT +aTA +aQo aWo -aOI +aOH aZb baj bbC @@ -102895,18 +103359,18 @@ buc buc buc buc -bBU -bCV +bBV +bCW +bDN +bER +bFT bDM -bEQ -bFS -bDL -bEC +bED biN -bJM -bKI -bJM -bMp +bJN +bKJ +bJN +bMq biN aab aab @@ -103089,45 +103553,45 @@ aaa aad aah aad -adm adl -adl -aeP -afn -afG -age -afG -agZ -ahF -adl -adl -aen -akY -alS -amS -anL -aoZ -aqi -arz -asQ -auB -awf -axS -azr -aAM -aCo -aEg -aGd -aHV -axS -aLj -aNd -aOM -aQs -aRV -aTC -aQp -aQp +adk +adk +aeO +afm +afF +agd +afF +agY +ahE +adk +adk +aem +akX +alR +amR +anK +aoY +aqh +ary +asP +auA +awe +axR +azq +aAL +aCn +aEf +aGc +aHU +axR +aLi +aNc +aOL +aQr +aRU +aTB +aQo +aQo aXE aZa baj @@ -103152,18 +103616,18 @@ bvt bvt bvt buc -bBV +bBW bxx -bDL -bDL -bDL -bDL -bEC +bDM +bDM +bDM +bDM +bED biN -bJM -bJM +bJN +bJN bom -bMp +bMq biN aab aab @@ -103346,46 +103810,46 @@ aaa aad aah aad -adn -adl -aek -aeO adm -afG -agf -afG -ael -ahG -aen +adk +aej +aeN adl -adI -adI -alT -ael -ael +afF +age +afF +aek +ahF +aem +adk +adH +adH +alS +aek +aek aad aae aah abK -auB -auB -auB -auB -auB -auB -auB -auB -auB -aJx -aLj -aNd -aOM -aQt -aRW -aTD -aUM +auA +auA +auA +auA +auA +auA +auA +auA +auA +aJw +aLi +aNc +aOL +aQs +aRV +aTC +aUL aWp -aOI +aOH aZc baj bbE @@ -103408,19 +103872,19 @@ bvt bvt bvt bvt -bBa -bBW -bCW -bDN -bER -bER -bER -bIh +bBb +bBX +bCX +bDO +bES +bES +bES +bIi biN -bJN -bKJ -bLu -bMq +bJO +bKK +bLv +bMr biN aab aab @@ -103603,26 +104067,26 @@ aaa aad aah aad -ado -adE -ael -aeQ -afo -afH -agg +adn +adD +aek +aeP +afn afG -adI -ahE -adI -ael -aen -aeO -aeO -aeO -aeO +agf +afF +adH +ahD +adH +aek +aem +aeN +aeN +aeN +aeN aad aad -aej +aei aad aaR aab @@ -103632,17 +104096,17 @@ aab aab aab aab -aGe -awf -aLk -aNe -aOI -aOI -aOI -aOI -aOI -aOI -aOI +aGd +awe +aLj +aNd +aOH +aOH +aOH +aOH +aOH +aOH +aOH aZd baj bbF @@ -103666,18 +104130,18 @@ bvt bvt bvt buc -bBX -bCX -bDO +bBY +bCY +bDP biN biN biN bom biN -bJM -bKK +bJN +bKL +bLw bLv -bLu biN aab aaa @@ -103860,20 +104324,20 @@ aaa aad aah aad -adp -adF -adI -aeR +ado adE -afI -agh -agC -aen -ahH -aix -aen -aka -aeO +adH +aeQ +adD +afH +agg +agB +aem +ahG +aiw +aem +ajZ +aeN aaa aaa aaa @@ -103889,15 +104353,15 @@ aab aab aab aab -aGe -aJy -aLj -aNf -auB -aQu -aRX -aTE -aQw +aGd +aJx +aLi +aNe +auA +aQt +aRW +aTD +aQv aWq aXF aZa @@ -103922,19 +104386,19 @@ bvt bvt bvt bvt -bBb +bBc bom bom bmM biN -bFT +bFU bli bom biN -bJM -bKL -bLu -bLw +bJN +bKM +bLv +bLx biN aab aaa @@ -104117,20 +104581,20 @@ aaa aad abG aad -adp -adG +ado +adF +ael +aeR +afo +adD +adH +adH aem -aeS -afp -adE -adI -adI -aen -ahI -aiy -aen -akb -aeO +ahH +aix +aem +aka +aeN aaa aad aad @@ -104140,21 +104604,21 @@ aav aad aab aab -axT -arN -axT -arN -axT -arN -aGe -aJz -aLl -aHV -auB +axS +arM +axS +arM +axS +arM +aGd +aJy +aLk +aHU +auA +aQu +aRX +aTE aQv -aRY -aTF -aQw aWr aXG aZe @@ -104179,19 +104643,19 @@ bvt bvt bvt bvt -bBc -bBY +bBd +bBZ bom -bDP +bDQ biN -bFU -bFU +bFV +bFV bom biN bom -bKM -bLu -bLw +bKN +bLv +bLx biN aaa aaa @@ -104374,44 +104838,44 @@ aaa aad aah aad -adp -adH -aen -aeT -ael -ael +ado adG -aen -adI -ahJ -adI -aen -akb -aeO +aem +aeS +aek +aek +adF +aem +adH +ahI +adH +aem +aka +aeN aaa aad acC aah aad aae -asR +asQ aab -awg -axU -axU -axU -axU -axU -arN -aHX -aJA -aLj -aNg -auB -aQw -aRZ -aQw -aQw +awf +axT +axT +axT +axT +axT +arM +aHW +aJz +aLi +aNf +auA +aQv +aRY +aQv +aQv aWs aXH aXH @@ -104437,18 +104901,18 @@ buc buc buc buc -bBZ +bCa bom bmM biN -bFV -bDS +bFW +bDT bom biN -bJN -bKM -bLu -bMr +bJO +bKN +bLv +bMs biN aaa aaa @@ -104631,44 +105095,44 @@ aaa aad aah aad -adp +ado +adH +adH +aeT +adH +aek adI -adI -aeU -adI -ael -adJ -ael -adI -ahI -adG -aen -akc -aeO +aek +adH +ahH +adF +aem +akb +aeN aaa aad -aeX +aeW aah -aqj +aqi abG -asS +asR aab -arN -axU -axU -axU -axU -axU -aGe -aHY -aJA -aLm -aNh -aON -aQx -aQx -aQx -aQx +arM +axT +axT +axT +axT +axT +aGd +aHX +aJz +aLl +aNg +aOM +aQw +aQw +aQw +aQw aWt aXI aZf @@ -104691,21 +105155,21 @@ bui bvu bwu bxH -byS -bAb -byV -bom -bom -byZ -biN +byT +bAc byW bom bom +bza biN -bJO -bKM -bLu -bLw +byX +bom +bom +biN +bJP +bKN +bLv +bLx biN aaa aaa @@ -104888,45 +105352,45 @@ aaa aad aah aad -adq -adI +adp adH -aeS -adI -afG -agi -afG -adI -ahK adG -adn -akc -aeO +aeR +adH +afF +agh +afF +adH +ahJ +adF +adm +akb +aeN aaa aad -adk +adj acB aad -arA -asS +arz +asR aab -awg -axU -axU -axU -axU -axU -aGe -aHY -aJA -aLn -axS -aGe -aGe -aGe -aGe -aGe -aGe +awf +axT +axT +axT +axT +axT +aGd +aHX +aJz +aLm +axR +aGd +aGd +aGd +aGd +aGd +aGd aXJ aZg baq @@ -104948,21 +105412,21 @@ buj bvv bwv bvv -byT -bAc -byV +byU +bAd +byW biN biN -bDQ +bDR biN biN biN bom biN bom -bKM -bLw -bLw +bKN +bLx +bLx biN aaa aaa @@ -105145,51 +105609,51 @@ aaa aad aah aad -adr -adJ +adq adI -aeO -aen -afG -agj -afG -aha -ahL -aen -ajo -aen -aeO +adH +aeN +aem +afF +agi +afF +agZ +ahK +aem +ajn +aem +aeN aaa aad aad aad aad aae -asS +asR aab -arN -axU -axU -axU -axU -axU -aGe -aHY -aJA -aLo -aNi -aNi -aQy -aSa -aTG -aUN +arM +axT +axT +axT +axT +axT +aGd +aHX +aJz +aLn +aNh +aNh +aQx +aRZ +aTF +aUM aWu -aOP -aOP -aOP -aOP -aOP -aOP +aOO +aOO +aOO +aOO +aOO +aOO bfO bfL biK @@ -105206,20 +105670,20 @@ bvw bww bxI bxI -bAd -bBd -byX -bAf -bDR +bAe +bBe +byY +bAg +bDS bom bom -bGT +bGU bom biN bom -bKM -bLw -bLw +bKN +bLx +bLx biN aaa aaa @@ -105404,49 +105868,49 @@ aah aad aad aad -aeo +aen aad -aen -aen +aem +aem +adG +agC +aek +ahL +aem +aem adH -agD -ael -ahM -aen -aen -adI -aeO +aeN aaa aaa aaa aaa aad aae -asT +asS aab -awg -axU -axU -axU -axU -axU -arN -aHZ -aJA -aLp -axS -axS -aNa -aSb -aTH -aUO +awf +axT +axT +axT +axT +axT +arM +aHY +aJz +aLo +axR +axR +aMZ +aSa +aTG +aUN aWv -aOP +aOO aXM bar bbK bde -aOP +aOO bfO bfL biL @@ -105462,21 +105926,21 @@ bul bvx bwx bxJ -byU -bAe byV -byZ +bAf +byW +bza biN -bDS +bDT biN biN biN bwB biN -bJN -bKM -bLw -bMr +bJO +bKN +bLx +bMs biN aaa aaa @@ -105663,47 +106127,47 @@ aah aah aah aad -aen -afJ -aen aem -agZ -aeO -aiz -ahN -aiz -aeO -aeO -aeO -aeO -aeO +afI +aem +ael +agY +aeN +aiy +ahM +aiy +aeN +aeN +aeN +aeN +aeN aad aae aad aab aab -axV -arN -axV -arN -axV -arN -aGe -aJB -aLq -aNj -aOO -aQz -aSc -aTI -aQz +axU +arM +axU +arM +axU +arM +aGd +aJA +aLp +aNi +aON +aQy +aSb +aTH +aQy aWw aXK aZh bas bbL bdf -aOP +aOO bex bfL bfL @@ -105719,10 +106183,10 @@ btj bvy btl btl -byV -byV -byV -bCa +byW +byW +byW +bCb bom bli biN @@ -105731,9 +106195,9 @@ biN bom biN bom -bKM -bLw -bLw +bKN +bLx +bLx biN aaa aaa @@ -105920,20 +106384,20 @@ aad aad aah aad -afq -aen -adG -aen -afn -aeO -aiA +afp +aem +adF +aem +afm +aeN +aiz +adl +aek adm -ael -adn -adn -amT -adI -apa +adm +amS +adH +aoZ aad aae aad @@ -105945,22 +106409,22 @@ aab aab aab aab -aGe -aJC -anN -aNk -aOP -aQA -aSd -aTJ -aTJ +aGd +aJB +anM +aNj +aOO +aQz +aSc +aTI +aTI aWx -aOP +aOO aZi bat bbM bdg -aOP +aOO bfP bhl biM @@ -105976,10 +106440,10 @@ bum bvz bwy btl -byW +byX bom bom -byZ +bza bom bom biN @@ -105988,9 +106452,9 @@ biN bom biN bom -bKM -bLw -bLw +bKN +bLx +bLx biN aaa aab @@ -106176,50 +106640,50 @@ aab aaa aad aah -aeO -aeO -aeO -aeO -aeO -aeO -aeO -aiA -ael -akd -akZ -adl -adI -adE -apb +aeN +aeN +aeN +aeN +aeN +aeN +aeN +aiz +aek +akc +akY +adk +adH +adD +apa aad -arB +arA aad aad aad aad aad -aAN -aAN -aAN -aAN -aAN -aJD -aLr -aNl -aOP -aQB -aSe -aTK -aUP +aAM +aAM +aAM +aAM +aAM +aJC +aLq +aNk +aOO +aQA +aSd +aTJ +aUO aWy aXL aXM bau bbN bdh -aOP +aOO bfQ -aQw +aQv biN biN bli @@ -106233,10 +106697,10 @@ bum bvz bwz btl -byX -bAf -bAf -bCb +byY +bAg +bAg +bCc bll bll biN @@ -106245,9 +106709,9 @@ biN bom biN bom -bKM -bLu -bLu +bKN +bLv +bLv biN aab aab @@ -106439,42 +106903,42 @@ aah aah aah aah -ahN -adl -ael -adl -adl -alU -aen -anM -aen +ahM +adk +aek +adk +adk +alT +aem +anL +aem aad -arC +arB aah aah aah aah abG -aAO -aCp -aEh -aGf aAN -aJC -anN -aNk -aOP -aQC -aSf -aSf -aUQ -aSf -aSf +aCo +aEg +aGe +aAM +aJB +anM +aNj +aOO +aQB +aSe +aSe +aUP +aSe +aSe aZj bav bav bdi -aOP +aOO bfR bdu aWq @@ -106490,7 +106954,7 @@ bun bvA bwA btl -byY +byZ biN biN biN @@ -106501,10 +106965,10 @@ aab biN bom biN -bJN -bKM -bLu -bMs +bJO +bKN +bLv +bMt biN aab aab @@ -106696,15 +107160,15 @@ aad aad aad aad -aeO -aiB -adE -ael -ala -agZ +aeN aiA -adI -aen +adD +aek +akZ +agY +aiz +adH +aem aad aad aad @@ -106712,19 +107176,19 @@ aad aad aad aad -aAN -aCq -aEi -aGg -aAN -aJE -aLs -aNm -aOP -aQD -aSg -aTL -aUR +aAM +aCp +aEh +aGf +aAM +aJD +aLr +aNl +aOO +aQC +aSf +aTK +aUQ aWz aXM aXM @@ -106733,9 +107197,9 @@ aXM aXM beA bfS -aRY +aRX biO -aQw +aQv blk bmM bol @@ -106747,8 +107211,8 @@ btl btl btl btl -byZ -byW +bza +byX biN aab aab @@ -106759,9 +107223,9 @@ biN bom biN bom -bKM -bLu -bLu +bKN +bLv +bLv biN aab aab @@ -106953,46 +107417,46 @@ aaa aaa aaa aaa -aeO -aeO -aeO -aeO -aeO -aeO -aeO -aeO -aeO -aeO +aeN +aeN +aeN +aeN +aeN +aeN +aeN +aeN +aeN +aeN aab aab aab aab aab aab -aAN -aCr -aEi -aGh -aAN -aJF -aLt -aNn -aOQ -aQE -aSh -aTM -aUS +aAM +aCq +aEh +aGg +aAM +aJE +aLs +aNm +aOP +aQD +aSg +aTL +aUR aWA aXN aZk baw bbO bdj -aOP +aOO bfT bhm biP -aQw +aQv bll bmM bom @@ -107005,7 +107469,7 @@ bom bwB bom bmM -bAg +bAh biN aab aab @@ -107016,9 +107480,9 @@ biN bom biN bom -bKM -bLu -bLu +bKN +bLv +bLv biN aab aab @@ -107226,28 +107690,28 @@ aab aab aab aab -aAN -aCs -aEj -aGi -aAN -aJG -aEr -aNo -aOP -aOP -aOP -aOP -aOP -aOP -aOP -aOP -aOP -aOP -aOP -aOP -aOT -aOT +aAM +aCr +aEi +aGh +aAM +aJF +aEq +aNn +aOO +aOO +aOO +aOO +aOO +aOO +aOO +aOO +aOO +aOO +aOO +aOO +aOS +aOS biQ aZw bll @@ -107261,7 +107725,7 @@ biM bvB bwC biM -bza +bzb bli biN aab @@ -107272,10 +107736,10 @@ aab biN bom biN -bJN -bKM -bLu -bMs +bJO +bKN +bLv +bMt biN aab aab @@ -107483,19 +107947,19 @@ aab aab aab aab -aAN -aCt -aEk -aEk -aAN -aJH -aLu -aNp -aOR -aQF -aSi -aTN -aUT +aAM +aCs +aEj +aEj +aAM +aJG +aLt +aNo +aOQ +aQE +aSh +aTM +aUS aWB aXO aZl @@ -107504,7 +107968,7 @@ bbP bdk beB bfU -aOT +aOS bfQ aZw biN @@ -107530,9 +107994,9 @@ biN bom biN bom -bKM -bLu -bLu +bKN +bLv +bLv biN aab aab @@ -107736,23 +108200,23 @@ aab aab aab aab -auD +auC aab aab aab -aAN -aCu -aEl -aGj -aAN -aJI -aLv -aNq -aOS -aQG -aSj -aTO -aUU +aAM +aCt +aEk +aGi +aAM +aJH +aLu +aNp +aOR +aQF +aSi +aTN +aUT aWC aXP aZm @@ -107761,7 +108225,7 @@ bbQ bdl bax bfV -aOT +aOS bfQ aZw aaa @@ -107787,9 +108251,9 @@ biN bom biN bom -bKM -bLu -bLu +bKN +bLv +bLv biN aaa aab @@ -107989,27 +108453,27 @@ aab aab aab aab -anN -aqk -arD -asU -anN -aqk -axW -asU -aAN -aCv -aEm -aGk -aIa -aJJ -aLw -aNr -aOT -aQH -aSk -aTP -aSk +anM +aqj +arC +asT +anM +aqj +axV +asT +aAM +aCu +aEl +aGj +aHZ +aJI +aLv +aNq +aOS +aQG +aSj +aTO +aSj aWD aXQ aZn @@ -108018,7 +108482,7 @@ bax bax bax bax -aOT +aOS biR aZw aab @@ -108041,11 +108505,11 @@ aaa aaa aab biN -bIi +bIj biN bom -bKJ -bLx +bKK +bLy bom biN aaa @@ -108245,32 +108709,32 @@ aab aab aab aab -anN -anN -aql -arE -asV -auE -awh -axX -azs -aAN -aAN -aAN -aAN -aAN -aJK -aLx -aNs -aOR -aQI -aSl -aQI -aUV +anM +anM +aqk +arD +asU +auD +awg +axW +azr +aAM +aAM +aAM +aAM +aAM +aJJ +aLw +aNr +aOQ +aQH +aSk +aQH +aUU aWE aXR aZo -aOR +aOQ bbR bdm beC @@ -108502,37 +108966,37 @@ aab aab aab aab -anN -apc -aqm -arF -asW -auF -awi -axY -azt -aAP -aCw -aEn -aGl -aIb -aJL -aLy -aNs -aOU -aQJ -aSk -aTQ -aUW +anM +apb +aql +arE +asV +auE +awh +axX +azs +aAO +aCv +aEm +aGk +aIa +aJK +aLx +aNr +aOT +aQI +aSj +aTP +aUV aWF aXS aZp -aOU +aOT bbS bdn beD bfX -anN +anM bfQ aZw aab @@ -108542,11 +109006,11 @@ aab aab aab aab -anN -anN -anN -anN -anN +anM +anM +anM +anM +anM aaa aaa aaa @@ -108759,37 +109223,37 @@ aab aab aab aab -anO -apd -aqn -aqn -asX -aqn -aqn -aqn -azu -aAQ -aCx -aEo -aGm -aIc -aJL -aLz -aNs -aOS -aQI -aSl -aQI -aUX +anN +apc +aqm +aqm +asW +aqm +aqm +aqm +azt +aAP +aCw +aEn +aGl +aIb +aJK +aLy +aNr +aOR +aQH +aSk +aQH +aUW aWE aXT aZq -aOS +aOR bbT bdo beE bfY -anN +anM bfQ aZw aab @@ -108797,20 +109261,20 @@ aab aab aab aab -anN -anN -anN +anM +anM +anM bvC bwD bxK -anN -anN -anN -anN -anN -anN -anN -anN +anM +anM +anM +anM +anM +anM +anM +anM aaa aaa aaa @@ -109016,58 +109480,58 @@ aab aab aab aab -anP -ape -aqo -arG -asY -asY -awj -axZ -azv -anN -aCy -aEp -aGn -auE -aJM -aLx -aNt -aOT -aQK -aSm -aTR -aOT +anO +apd +aqn +arF +asX +asX +awi +axY +azu +anM +aCx +aEo +aGm +auD +aJL +aLw +aNs +aOS +aQJ +aSl +aTQ +aOS aWG aXU aWG -aOT +aOS bbU bdp -anN -anN -anN +anM +anM +anM biS -anN +anM blm bmP boo bpC bqK -anN -anN +anM +anM buo bvD bwE bxL -bzb -anN -bBe -bBe -bBe -bBe -bES -anN +bzc +anM +bBf +bBf +bBf +bBf +bET +anM aZw aZw aZw @@ -109273,33 +109737,33 @@ aab aab aab aab -anQ -apf -aqo -arH -asZ -auG -awk -aqo -azw -anN -aCz -aEq -aGo -aId -aJN -aLA -aNu -aOV -aQL -aSn -aSn -aSn +anP +ape +aqn +arG +asY +auF +awj +aqn +azv +anM +aCy +aEp +aGn +aIc +aJM +aLz +aNt +aOU +aQK +aSm +aSm +aSm aWH aXV -aSn +aSm baz -aSn +aSm bdq beF bfZ @@ -109307,33 +109771,33 @@ bho biT bka bln -aqo +aqn bop -aqo -aJP +aqn +aJO brS -aqo -aJN +aqn +aJM bvE -aEr -aEr -bzc -anN -bBe -bBe -bCY -bDT -bBe +aEq +aEq +bzd +anM +bBf +bBf +bCZ +bDU +bBf aZw -bGU -bIj -bIX -bIj -bKN -aRY +bGV +bIk +bIY +bIk +bKO +aRX aZw -bMU -aRY +bMV +aRX aZw aaa aaa @@ -109529,38 +109993,38 @@ acs aab aab aab -amU -anN -apg -aqp -arI -ata -auH -awl -aya -azx -aAR -aCA -aCA -aCA -aIe -aJO -aLB -aNv -aOW -aQM -aSo -aTS -aSo +amT +anM +apf +aqo +arH +asZ +auG +awk +axZ +azw +aAQ +aCz +aCz +aCz +aId +aJN +aLA +aNu +aOV +aQL +aSn +aTR +aSn aWI aXW -aSo +aSn baA -aQM +aQL bdr -anN +anM bga -anN +anM biU bkb blo @@ -109570,27 +110034,27 @@ bmQ bmQ brT bmQ -aJJ +aJI bvF bwF bxM -bzd -anN -bBe -bBe -bBe -bDU -bBe +bze +anM +bBf +bBf +bBf +bDV +bBf aZw -bGV -bIk -bIY -bIk -bKO -bBf -bMt -bBf -bNB +bGW +bIl +bIZ +bIl +bKP +bBg +bMu +bBg +bNC aZw aaa aaa @@ -109787,67 +110251,67 @@ aab aab aab aab -anR -aph -aqo -arJ -atb -auI -awm -aqo -azy -anN -aCB -aEr -aGp -aIf -aJP -aJP -aJP -aOX -aQN -aSp -aTT -aEr +anQ +apg +aqn +arI +ata +auH +awl +aqn +azx +anM +aCA +aEq +aGo +aIe +aJO +aJO +aJO +aOW +aQM +aSo +aTS +aEq aWJ aXX -aJP +aJO baB -aQN -aCB +aQM +aCA beG bgb bhp -aqo +aqn bkc blp -aqo +aqn bor -aqo +aqn bqL brU btn -aCB -aEr -aEr +aCA +aEq +aEq bxN -bze -anN -bBe -bBe -bCZ -bDT -bBe +bzf +anM +bBf +bBf +bDa +bDU +bBf aZw -bGW +bGX aZw aZw aZw aZw aZw aZw -bMV -bNC +bMW +bND aZw aaa aaa @@ -110044,28 +110508,28 @@ aab aab aab aab -anS -ape -aqo -aqo -atc -atc -awn -ayb -azz -aAS -aAS -aAS -aAS -aAS -aJQ -aLC -aNw -aOY -aQO -anN -aTU -aUY +anR +apd +aqn +aqn +atb +atb +awm +aya +azy +aAR +aAR +aAR +aAR +aAR +aJP +aLB +aNv +aOX +aQN +anM +aTT +aUX aWK aWK aWK @@ -110074,29 +110538,29 @@ aWK aWK aWK aWK -auE +auD biV -auE +auD blq bmR bos bpD bqK -anN -anN +anM +anM bup bvG bwG bxO -bzf -anN -bBe -bBe -bBe -bBe -bBe -anN -bGW +bzg +anM +bBf +bBf +bBf +bBf +bBf +anM +bGX aZw aaa aaa @@ -110301,28 +110765,28 @@ aab aab aab aab -anT -api -aqn -aqn -atd -aqn -aqn -aqn -azA -aAS -aCC -aEs -aGq -aAS -aJR -aLD -aNx -aOZ -aQP -aAS -aTV -ayb +anS +aph +aqm +aqm +atc +aqm +aqm +aqm +azz +aAR +aCB +aEr +aGp +aAR +aJQ +aLC +aNw +aOY +aQO +aAR +aTU +aya aWK aXY aZr @@ -110339,21 +110803,21 @@ bmS bot bmV bqM -anN -anN -anN +anM +anM +anM bvH bwH bxP -bzg -anN -anN -anN -anN -anN -anN -anN -bGW +bzh +anM +anM +anM +anM +anM +anM +anM +bGX aZw aaa aaa @@ -110558,28 +111022,28 @@ aab aab aab aaa -anN -apj -aqq -arK -ate -auJ -awo -ayc -azB -aAS -aCD -aEt -aGr -aAS -aJS -aLE -aNy -aPa -aQQ -aSq -aTW -aUZ +anM +api +aqp +arJ +atd +auI +awn +ayb +azA +aAR +aCC +aEs +aGq +aAR +aJR +aLD +aNx +aOZ +aQP +aSp +aTV +aUY aWK aXZ aZs @@ -110598,19 +111062,19 @@ bpE bqN bke aab -anN -anN -anN -anN -bzh -bAh -bBf -bBf -bBf -bBf -bBf -bBf -bGX +anM +anM +anM +anM +bzi +bAi +bBg +bBg +bBg +bBg +bBg +bBg +bGY aZw aaa aaa @@ -110815,28 +111279,28 @@ aab aab aab aaa -anN -anN -aqr -arL -atf -auE -awp -ayd -azC -aAS -aCE -aEu -aCE -aAS -aJT -aLF -aNz -aPb -aQR -aSr -aTX -aVa +anM +anM +aqq +arK +ate +auD +awo +ayc +azB +aAR +aCD +aEt +aCD +aAR +aJS +aLE +aNy +aPa +aQQ +aSq +aTW +aUZ aWK aYa aZt @@ -111073,27 +111537,27 @@ aab aaa aaa aaa -anN -aqs -arM -atg -anN -aqk -arD -atg -aAS -aCF -aEv -aGs -aAS -aJU -aLG -aNA -aPc -aQS -aAS -aTY -aVb +anM +aqr +arL +atf +anM +aqj +arC +atf +aAR +aCE +aEu +aGr +aAR +aJT +aLF +aNz +aPb +aQR +aAR +aTX +aVa aWK aYb aZu @@ -111102,7 +111566,7 @@ aWK aWK aWK aWK -aQw +aQv bht bkd blu @@ -111334,32 +111798,32 @@ aab aab aab aab -auK +auJ aab aab aab -aAS -aCG -aEv -aGt -aAS -aJV -aLH -aNB -aPd -aQT -aAS -aTZ -aVc -aSs -aSs -aSs -aSs -aSs -aSs -aSs -aSs -aQw +aAR +aCF +aEu +aGs +aAR +aJU +aLG +aNA +aPc +aQS +aAR +aTY +aVb +aSr +aSr +aSr +aSr +aSr +aSr +aSr +aSr +aQv biW bkd blv @@ -111595,28 +112059,28 @@ aab aab aab aab -aAS -aCH -aEv -aGu -aAS -aJW -aLH -aLH -aPe -aQU -aAS -aUa -aVd +aAR +aCG +aEu +aGt +aAR +aJV +aLG +aLG +aPd +aQT +aAR +aTZ +aVc aWL -aSs +aSr aZv aZv aZv aZv aZv -aSs -aQw +aSr +aQv bht bke blw @@ -111852,28 +112316,28 @@ aab aab aab aab -aAS -aCI -aEw -aGv -aAS -aJX -aLH -aJX -aPf -aQV -aAS -aUb -aUe -aUe -aSs +aAR +aCH +aEv +aGu +aAR +aJW +aLG +aJW +aPe +aQU +aAR +aUa +aUd +aUd +aSr aZv aZv aZv aZv aZv -aSs -aQw +aSr +aQv bht aZw aab @@ -112109,28 +112573,28 @@ aaa aab aab aab -aAS -aCJ -aEx -aGw -aAS -aJY -aLI -aNC -aPg -aQW -aAS -aUc -aVe -aUe -aSs +aAR +aCI +aEw +aGv +aAR +aJX +aLH +aNB +aPf +aQV +aAR +aUb +aVd +aUd +aSr aZv aZv aZv aZv aZv -aSs -aQw +aSr +aQv bht aZw aab @@ -112366,28 +112830,28 @@ aaa aab aab aab -aAS -aAS -aAS -aGx -aAS -aJZ -aLJ -aND -aPh -aQX -aAS +aAR +aAR +aAR +aGw +aAR +aJY +aLI +aNC +aPg +aQW +aAR +aUc aUd -aUe -aUe -aSs +aUd +aSr aZv aZv aZv aZv aZv -aSs -aQw +aSr +aQv biX aZw aab @@ -112623,28 +113087,28 @@ aaa aaa aab aab -aAT -aCK -aEy -aGy -aIg -aIg -aIg -aIg -aPi -aQY aAS -aUe -aVf +aCJ +aEx +aGx +aIf +aIf +aIf +aIf +aPh +aQX +aAR +aUd +aVe aWM -aSs +aSr aZv aZv aZv aZv aZv -aSs -aQw +aSr +aQv biY aZw aab @@ -112880,29 +113344,29 @@ aaa aaa aaa aab -aAU -aCL -aEz -aGz -aGz -aGz -aGz -aGz -aPj -aQZ -aAS -aUf -aSs -aSs -aSs -aSs -aSs -aSs -aSs -aSs -aSs -aQw -aRY +aAT +aCK +aEy +aGy +aGy +aGy +aGy +aGy +aPi +aQY +aAR +aUe +aSr +aSr +aSr +aSr +aSr +aSr +aSr +aSr +aSr +aQv +aRX aZw aaa aab @@ -113137,28 +113601,28 @@ aaa aaa aaa aab -aAV -aCM -aEA -aGA -aIh -aKa -aLK -aNE -aPk -aRa -aAS -aUe -aUe -aUe +aAU +aCL +aEz +aGz +aIg +aJZ +aLJ +aND +aPj +aQZ +aAR +aUd +aUd +aUd aYc -aQw -aQw -aQw -aQw -aQw -aQw -aQw +aQv +aQv +aQv +aQv +aQv +aQv +aQv bht aZw aaa @@ -113394,29 +113858,29 @@ aaa aaa aaa aaa -aAS -aCN -aEB -aGB -aAS -aAS -aAS -aCN -aEB -aRb -aAS -aUg -aUe +aAR +aCM +aEA +aGA +aAR +aAR +aAR +aCM +aEA +aRa +aAR +aUf +aUd aWN aYd -aRY +aRX baH -aRY +aRX bdu -aRY +aRX bgd bht -aRY +aRX aZw aaa aaa @@ -113653,19 +114117,19 @@ aaa aaa aab aab -aEC +aEB aab aaa aaa aaa aab -aEC +aEB aab -aSs -aUh -aVg +aSr +aUg +aVf aWO -aSs +aSr aZw aZw aZw @@ -113918,18 +114382,18 @@ aab aab aab aab -aSs -aSs -aSs -aSs -aSs +aSr +aSr +aSr +aSr +aSr aaa aaa aaa aaa aZw bge -aRY +aRX aZw aaa aaa diff --git a/maps/aurora/aurora-5_interstitial.dmm b/maps/aurora/aurora-5_interstitial.dmm index 9c44f9a1c6e..bdb7b27e94c 100644 --- a/maps/aurora/aurora-5_interstitial.dmm +++ b/maps/aurora/aurora-5_interstitial.dmm @@ -6,1734 +6,37 @@ /turf/simulated/floor/asteroid/ash/rocky, /area/mine/unexplored) "ac" = ( -/obj/random/junk, -/turf/simulated/floor/asteroid/ash/rocky, -/area/mine/unexplored) +/turf/simulated/wall, +/area/security/range) "ad" = ( -/turf/simulated/wall/r_wall, -/area/mine/unexplored) +/turf/simulated/wall, +/area/security/training) "ae" = ( -/turf/simulated/wall/r_wall, -/area/maintenance/research_port) +/obj/machinery/door/firedoor, +/obj/structure/grille, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/window/reinforced{ + icon_state = "rwindow"; + dir = 8 + }, +/turf/simulated/floor/plating, +/area/security/range) "af" = ( -/obj/machinery/atmospherics/pipe/zpipe/down/scrubbers, -/obj/machinery/atmospherics/pipe/zpipe/down/supply, -/obj/structure/cable{ - d2 = 2; - icon_state = "11-2" +/obj/effect/floor_decal/corner/blue{ + dir = 5 }, -/obj/structure/lattice, -/turf/simulated/open, -/area/maintenance/research_port) +/obj/effect/floor_decal/corner/blue{ + icon_state = "corner_white"; + dir = 9 + }, +/turf/simulated/floor/tiled, +/area/security/range) "ag" = ( -/obj/structure/ladder{ - icon_state = "ladder01"; - pixel_y = 16 - }, -/turf/simulated/open, -/area/maintenance/research_port) -"ah" = ( -/obj/structure/cable{ - icon_state = "12-0" - }, -/obj/structure/cable{ - d2 = 2; - icon_state = "0-2"; - pixel_y = 0 - }, -/obj/machinery/atmospherics/pipe/zpipe/up/scrubbers, -/obj/machinery/atmospherics/pipe/zpipe/up/supply, -/obj/effect/floor_decal/industrial/warning{ - icon_state = "warning"; - dir = 9 - }, -/turf/simulated/floor/plating{ - roof_type = null - }, -/area/maintenance/research_port) -"ai" = ( -/obj/structure/ladder/up{ - pixel_y = 16 - }, -/obj/effect/floor_decal/industrial/warning{ - dir = 1 - }, -/turf/simulated/floor/plating{ - roof_type = null - }, -/area/maintenance/research_port) -"aj" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/light/small/emergency{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 5 - }, -/obj/effect/floor_decal/industrial/warning{ - dir = 1 - }, -/turf/simulated/floor/plating, -/area/maintenance/research_port) -"ak" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/meter, -/obj/effect/floor_decal/industrial/warning{ - dir = 1 - }, -/turf/simulated/floor/plating, -/area/maintenance/research_port) -"al" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/random/junk, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - icon_state = "intact-scrubbers"; - dir = 9 - }, -/obj/effect/floor_decal/industrial/warning/corner{ - icon_state = "warningcorner"; - dir = 1 - }, -/turf/simulated/floor/plating, -/area/maintenance/research_port) -"am" = ( -/obj/machinery/light/small/emergency{ - icon_state = "bulb1"; - dir = 4 - }, -/turf/simulated/floor/plating, -/area/maintenance/research_port) -"an" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 5 - }, -/turf/simulated/floor/plating, -/area/maintenance/research_port) -"ao" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/meter, -/turf/simulated/floor/plating, -/area/maintenance/research_port) -"ap" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - icon_state = "intact-supply"; - dir = 9 - }, -/obj/machinery/power/apc{ - dir = 2; - name = "south bump"; - pixel_y = -24 - }, -/obj/structure/cable{ - d2 = 8; - icon_state = "0-8" - }, -/turf/simulated/floor/plating{ - roof_type = null - }, -/area/maintenance/research_port) -"aq" = ( -/obj/random/junk, -/turf/simulated/floor/plating, -/area/maintenance/research_port) -"ar" = ( -/turf/simulated/wall/r_wall, -/area/maintenance/arrivals) -"as" = ( -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/window/reinforced{ - icon_state = "rwindow"; - dir = 8 - }, -/obj/structure/window/reinforced, -/obj/structure/grille, -/obj/machinery/door/firedoor, -/turf/simulated/floor/plating, -/area/maintenance/arrivals) -"at" = ( -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/window/reinforced, -/obj/structure/grille, -/obj/machinery/door/firedoor, -/turf/simulated/floor/plating, -/area/maintenance/arrivals) -"au" = ( -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/window/reinforced{ - icon_state = "rwindow"; - dir = 4 - }, -/obj/structure/window/reinforced, -/obj/structure/grille, -/obj/machinery/door/firedoor, -/turf/simulated/floor/plating, -/area/maintenance/arrivals) -"av" = ( -/obj/effect/floor_decal/corner/paleblue/full{ - icon_state = "corner_white_full"; - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/maintenance/arrivals) -"aw" = ( -/turf/simulated/floor/tiled, -/area/maintenance/arrivals) -"ax" = ( -/obj/effect/floor_decal/corner/paleblue/full{ - icon_state = "corner_white_full"; - dir = 1 - }, -/obj/structure/sign/drop{ - pixel_x = 32 - }, -/turf/simulated/floor/tiled, -/area/maintenance/arrivals) -"ay" = ( -/turf/simulated/open, -/area/turbolift/main_mid) -"az" = ( -/obj/effect/floor_decal/corner/paleblue{ - icon_state = "corner_white"; - dir = 9 - }, -/obj/machinery/light{ - dir = 8; - icon_state = "tube1"; - pixel_x = 0 - }, -/turf/simulated/floor/tiled, -/area/maintenance/arrivals) -"aA" = ( -/obj/effect/floor_decal/corner/paleblue{ - icon_state = "corner_white"; - dir = 6 - }, -/turf/simulated/floor/tiled, -/area/maintenance/arrivals) -"aB" = ( -/turf/simulated/floor/airless{ - icon_state = "asteroidplating" - }, -/area/mine/unexplored) -"aC" = ( -/obj/effect/floor_decal/corner/paleblue{ - icon_state = "corner_white"; - dir = 9 - }, -/turf/simulated/floor/tiled, -/area/maintenance/arrivals) -"aD" = ( -/obj/item/tape/engineering{ - icon_state = "engineering_door"; - layer = 4 - }, -/obj/machinery/door/airlock/maintenance_hatch{ - icon_state = "door_locked"; - locked = 1; - name = "IT Department" - }, -/turf/simulated/floor/tiled, -/area/maintenance/arrivals) -"aE" = ( -/obj/effect/floor_decal/corner/pink{ - icon_state = "corner_white"; - dir = 9 - }, -/turf/simulated/floor/tiled, -/area/maintenance/arrivals) -"aF" = ( -/obj/effect/floor_decal/corner/paleblue{ - icon_state = "corner_white"; - dir = 6 - }, -/obj/structure/sign/drop{ - pixel_x = 32 - }, -/turf/simulated/floor/tiled, -/area/maintenance/arrivals) -"aG" = ( -/turf/simulated/open, -/area/turbolift/main_mid_aux) -"aH" = ( -/obj/effect/floor_decal/corner/paleblue{ - icon_state = "corner_white"; - dir = 9 - }, -/obj/machinery/alarm{ - dir = 4; - icon_state = "alarm0"; - pixel_x = -22; - pixel_y = 0 - }, -/turf/simulated/floor/tiled, -/area/maintenance/arrivals) -"aI" = ( -/obj/machinery/light{ - dir = 8; - icon_state = "tube1"; - pixel_x = 0 - }, -/turf/simulated/floor/tiled, -/area/maintenance/arrivals) -"aJ" = ( -/obj/effect/floor_decal/corner/paleblue/full, -/turf/simulated/floor/tiled, -/area/maintenance/arrivals) -"aK" = ( -/obj/effect/floor_decal/corner/paleblue/full{ - icon_state = "corner_white_full"; - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/maintenance/arrivals) -"aL" = ( -/obj/effect/floor_decal/corner/yellow/full{ - icon_state = "corner_white_full"; - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/maintenance/arrivals) -"aM" = ( -/obj/effect/floor_decal/corner/yellow{ - icon_state = "corner_white"; - dir = 5 - }, -/turf/simulated/floor/tiled, -/area/maintenance/arrivals) -"aN" = ( -/obj/machinery/light{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/maintenance/arrivals) -"aO" = ( -/obj/effect/floor_decal/corner/yellow/full{ - icon_state = "corner_white_full"; - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/maintenance/arrivals) -"aP" = ( -/obj/structure/grille, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/window/reinforced{ - icon_state = "rwindow"; - dir = 8 - }, -/obj/structure/window/reinforced{ - icon_state = "rwindow"; - dir = 4 - }, -/obj/machinery/door/firedoor, -/turf/simulated/floor/plating, -/area/maintenance/arrivals) -"aQ" = ( -/obj/machinery/access_button{ - command = "cycle_exterior"; - frequency = 1379; - master_tag = "fuckyou2"; - name = "exterior access button"; - pixel_x = -32; - pixel_y = -26 - }, -/turf/simulated/floor/asteroid/ash/rocky, -/area/mine/unexplored) -"aR" = ( -/obj/structure/grille, -/obj/structure/window/reinforced{ - icon_state = "rwindow"; - dir = 8 - }, -/obj/structure/window/reinforced{ - icon_state = "rwindow"; - dir = 4 - }, -/obj/machinery/door/firedoor, -/turf/simulated/floor/plating, -/area/maintenance/arrivals) -"aS" = ( -/obj/structure/grille, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/machinery/door/firedoor{ - dir = 2 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/turf/simulated/floor/plating, -/area/maintenance/maintcentral) -"aT" = ( -/obj/machinery/door/airlock/external{ - frequency = 1379; - icon_state = "door_locked"; - id_tag = "fuckyou2_outer"; - locked = 1 - }, -/turf/simulated/floor/plating, -/area/maintenance/maintcentral) -"aU" = ( -/obj/structure/grille, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/machinery/door/firedoor, -/turf/simulated/floor/plating, -/area/maintenance/maintcentral) -"aV" = ( -/obj/effect/floor_decal/corner/yellow/full, -/turf/simulated/floor/tiled, -/area/maintenance/arrivals) -"aW" = ( -/obj/effect/floor_decal/corner/yellow{ - icon_state = "corner_white"; - dir = 10 - }, -/turf/simulated/floor/tiled, -/area/maintenance/arrivals) -"aX" = ( -/obj/effect/floor_decal/corner/yellow/full{ - icon_state = "corner_white_full"; - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/maintenance/arrivals) -"aY" = ( -/obj/structure/grille, -/obj/structure/window/reinforced{ - icon_state = "rwindow"; - dir = 8 - }, -/obj/structure/window/reinforced{ - icon_state = "rwindow"; - dir = 4 - }, -/obj/structure/window/reinforced, -/obj/machinery/door/firedoor, -/turf/simulated/floor/plating, -/area/maintenance/arrivals) -"aZ" = ( -/obj/structure/grille, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/machinery/door/firedoor, -/turf/simulated/floor/plating, -/area/maintenance/maintcentral) -"ba" = ( -/obj/effect/decal/warning_stripes, -/obj/machinery/light/small/emergency{ - dir = 8 - }, -/obj/machinery/embedded_controller/radio/airlock/airlock_controller{ - id_tag = "fuckyou2"; - pixel_x = -32; - tag_airpump = "fuckyou2_pump"; - tag_chamber_sensor = "fuckyou2_sensor"; - tag_exterior_door = "fuckyou2_outer"; - tag_interior_door = "fuckyou2_inner" - }, -/obj/machinery/airlock_sensor{ - id_tag = "fuckyou2_sensor"; - pixel_x = 32 - }, -/obj/machinery/atmospherics/unary/vent_pump/high_volume{ - dir = 2; - frequency = 1379; - id_tag = "fuckyou2_pump" - }, -/turf/simulated/floor/plating, -/area/maintenance/maintcentral) -"bb" = ( -/obj/machinery/door/airlock/external, -/turf/simulated/floor/tiled, -/area/maintenance/arrivals) -"bc" = ( -/turf/simulated/wall/r_wall, -/area/maintenance/maintcentral) -"bd" = ( -/obj/structure/grille, -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - icon_state = "rwindow"; - dir = 1 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/machinery/door/firedoor, -/turf/simulated/floor/plating, -/area/maintenance/maintcentral) -"be" = ( -/obj/structure/grille, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced, -/obj/machinery/door/firedoor, -/turf/simulated/floor/plating, -/area/maintenance/maintcentral) -"bf" = ( -/obj/machinery/atmospherics/pipe/simple/hidden, -/obj/machinery/door/airlock/external{ - frequency = 1379; - icon_state = "door_locked"; - id_tag = "fuckyou2_inner"; - locked = 1 - }, -/turf/simulated/floor/plating, -/area/maintenance/maintcentral) -"bg" = ( -/obj/structure/grille, -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/machinery/door/firedoor, -/turf/simulated/floor/plating, -/area/maintenance/maintcentral) -"bh" = ( -/obj/structure/grille, -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - icon_state = "rwindow"; - dir = 1 - }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/machinery/door/firedoor{ - dir = 2 - }, -/turf/simulated/floor/plating, -/area/maintenance/maintcentral) -"bi" = ( -/obj/machinery/portable_atmospherics/canister/air/airlock, -/obj/machinery/atmospherics/portables_connector{ - dir = 4 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/machinery/door/window/eastright, -/obj/effect/floor_decal/corner/yellow/full{ - icon_state = "corner_white_full"; - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/maintenance/arrivals) -"bj" = ( -/obj/effect/floor_decal/corner/yellow{ - icon_state = "corner_white"; - dir = 1 - }, -/obj/machinery/light{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/hidden{ - dir = 10; - icon_state = "intact" - }, -/turf/simulated/floor/tiled, -/area/maintenance/arrivals) -"bk" = ( -/obj/effect/floor_decal/corner/yellow{ - icon_state = "corner_white"; - dir = 4 - }, -/obj/machinery/light{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/maintenance/arrivals) -"bl" = ( -/obj/machinery/portable_atmospherics/canister/air/airlock, -/obj/machinery/atmospherics/portables_connector{ - dir = 4 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/machinery/door/window/eastright, -/obj/effect/floor_decal/corner/yellow/full{ - icon_state = "corner_white_full"; - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/maintenance/maintcentral) -"bm" = ( -/obj/effect/floor_decal/corner/yellow{ - icon_state = "corner_white"; - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/hidden{ - dir = 10; - icon_state = "intact" - }, -/turf/simulated/floor/tiled, -/area/maintenance/maintcentral) -"bn" = ( -/turf/simulated/floor/tiled, -/area/maintenance/maintcentral) -"bo" = ( -/obj/machinery/atmospherics/pipe/simple/hidden, -/obj/machinery/access_button{ - command = "cycle_interior"; - frequency = 1379; - master_tag = "fuckyou2"; - name = "interior access button"; - pixel_x = 32; - pixel_y = 26 - }, -/turf/simulated/floor/tiled, -/area/maintenance/maintcentral) -"bp" = ( -/obj/effect/floor_decal/corner/yellow{ - icon_state = "corner_white"; - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/maintenance/maintcentral) -"bq" = ( -/obj/effect/floor_decal/corner/yellow/full{ - icon_state = "corner_white_full"; - dir = 1 - }, -/obj/machinery/alarm{ - dir = 8; - pixel_x = 25; - pixel_y = 0 - }, -/turf/simulated/floor/tiled, -/area/maintenance/maintcentral) -"br" = ( -/obj/machinery/portable_atmospherics/canister/air/airlock, -/obj/machinery/atmospherics/portables_connector{ - dir = 4 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/machinery/door/window/eastright, -/obj/effect/floor_decal/corner/yellow{ - icon_state = "corner_white"; - dir = 9 - }, -/turf/simulated/floor/tiled, -/area/maintenance/arrivals) -"bs" = ( -/obj/machinery/atmospherics/pipe/manifold4w/hidden, -/turf/simulated/floor/tiled, -/area/maintenance/arrivals) -"bt" = ( -/obj/machinery/atmospherics/pipe/simple/hidden{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/maintenance/arrivals) -"bu" = ( -/obj/machinery/atmospherics/pipe/simple/hidden{ - dir = 10 - }, -/turf/simulated/floor/tiled, -/area/maintenance/arrivals) -"bv" = ( -/obj/effect/floor_decal/corner/yellow{ - icon_state = "corner_white"; - dir = 6 - }, -/obj/machinery/alarm{ - dir = 8; - pixel_x = 25; - pixel_y = 0 - }, -/turf/simulated/floor/tiled, -/area/maintenance/arrivals) -"bw" = ( -/obj/machinery/portable_atmospherics/canister/air/airlock, -/obj/machinery/atmospherics/portables_connector{ - dir = 4 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/machinery/door/window/eastright, -/obj/effect/floor_decal/corner/yellow{ - icon_state = "corner_white"; - dir = 9 - }, -/turf/simulated/floor/tiled, -/area/maintenance/maintcentral) -"bx" = ( -/obj/machinery/atmospherics/pipe/manifold4w/hidden, -/turf/simulated/floor/tiled, -/area/maintenance/maintcentral) -"by" = ( -/obj/machinery/atmospherics/pipe/simple/hidden{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/maintenance/maintcentral) -"bz" = ( -/obj/machinery/atmospherics/pipe/simple/hidden{ - dir = 9; - icon_state = "intact" - }, -/turf/simulated/floor/tiled, -/area/maintenance/maintcentral) -"bA" = ( -/obj/effect/floor_decal/corner/yellow{ - icon_state = "corner_white"; - dir = 6 - }, -/obj/structure/cable/green{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/turf/simulated/floor/tiled, -/area/maintenance/maintcentral) -"bB" = ( -/obj/machinery/door/airlock/maintenance{ - req_access = list(12) - }, -/obj/machinery/door/firedoor, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/plating, -/area/maintenance/maintcentral) -"bC" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/plating, -/area/maintenance/maintcentral) -"bD" = ( -/obj/structure/cable/green{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/structure/sign/securearea{ - name = "\improper NO ENTRY"; - pixel_x = 32; - pixel_y = 0 - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/plating, -/area/maintenance/maintcentral) -"bE" = ( -/obj/machinery/portable_atmospherics/canister/air/airlock, -/obj/machinery/atmospherics/portables_connector{ - dir = 4 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/machinery/door/window/eastright, -/obj/effect/floor_decal/corner/yellow/full, -/turf/simulated/floor/tiled, -/area/maintenance/arrivals) -"bF" = ( -/obj/effect/floor_decal/corner/yellow{ - icon_state = "corner_white"; - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden{ - dir = 9; - icon_state = "intact" - }, -/turf/simulated/floor/tiled, -/area/maintenance/arrivals) -"bG" = ( -/obj/machinery/atmospherics/pipe/simple/hidden, -/obj/machinery/access_button{ - command = "cycle_interior"; - frequency = 1379; - master_tag = "fuckyou1"; - name = "interior access button"; - pixel_x = 32; - pixel_y = -26 - }, -/turf/simulated/floor/tiled, -/area/maintenance/arrivals) -"bH" = ( -/obj/effect/floor_decal/corner/yellow, -/turf/simulated/floor/tiled, -/area/maintenance/arrivals) -"bI" = ( -/obj/machinery/portable_atmospherics/canister/air/airlock, -/obj/machinery/atmospherics/portables_connector{ - dir = 4 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/machinery/door/window/eastright, -/obj/effect/floor_decal/corner/yellow/full, -/obj/structure/sign/drop{ - pixel_y = -32 - }, -/turf/simulated/floor/tiled, -/area/maintenance/maintcentral) -"bJ" = ( -/obj/effect/floor_decal/corner/yellow{ - icon_state = "corner_white"; - dir = 8 - }, -/obj/machinery/light, -/obj/machinery/atmospherics/pipe/simple/hidden{ - dir = 9; - icon_state = "intact" - }, -/turf/simulated/floor/tiled, -/area/maintenance/maintcentral) -"bK" = ( -/obj/effect/floor_decal/corner/yellow, -/obj/machinery/light, -/turf/simulated/floor/tiled, -/area/maintenance/maintcentral) -"bL" = ( -/obj/effect/floor_decal/corner/yellow/full{ - icon_state = "corner_white_full"; - dir = 4 - }, -/obj/structure/cable/green, -/turf/simulated/floor/tiled, -/area/maintenance/maintcentral) -"bM" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/plating, -/area/maintenance/maintcentral) -"bN" = ( -/obj/structure/grille, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - icon_state = "rwindow"; - dir = 1 - }, -/obj/machinery/door/firedoor{ - dir = 2 - }, -/turf/simulated/floor/plating, -/area/maintenance/arrivals) -"bO" = ( -/obj/structure/grille, -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - icon_state = "rwindow"; - dir = 1 - }, -/obj/machinery/door/firedoor{ - dir = 2 - }, -/turf/simulated/floor/plating, -/area/maintenance/arrivals) -"bP" = ( -/obj/structure/grille, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/machinery/door/firedoor, -/turf/simulated/floor/plating, -/area/maintenance/arrivals) -"bQ" = ( -/obj/machinery/atmospherics/pipe/simple/hidden, -/obj/machinery/door/airlock/external{ - frequency = 1379; - icon_state = "door_locked"; - id_tag = "fuckyou1_inner"; - locked = 1 - }, -/turf/simulated/floor/plating, -/area/maintenance/arrivals) -"bR" = ( -/obj/structure/grille, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/machinery/door/firedoor, -/turf/simulated/floor/plating, -/area/maintenance/arrivals) -"bS" = ( -/obj/structure/grille, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/window/reinforced, -/obj/machinery/door/firedoor{ - dir = 2 - }, -/turf/simulated/floor/plating, -/area/maintenance/arrivals) -"bT" = ( -/obj/structure/grille, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/machinery/door/firedoor{ - dir = 2 - }, -/turf/simulated/floor/plating, -/area/maintenance/arrivals) -"bU" = ( -/turf/simulated/wall/r_wall, -/area/maintenance/library) -"bV" = ( -/obj/structure/grille, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/machinery/door/firedoor, -/turf/simulated/floor/plating, -/area/maintenance/arrivals) -"bW" = ( -/obj/effect/decal/warning_stripes, -/obj/machinery/light/small/emergency{ - dir = 8 - }, -/obj/machinery/embedded_controller/radio/airlock/airlock_controller{ - id_tag = "fuckyou1"; - pixel_x = -32; - tag_airpump = "fuckyou1_pump"; - tag_chamber_sensor = "fuckyou1_sensor"; - tag_exterior_door = "fuckyou1_outer"; - tag_interior_door = "fuckyou1_inner" - }, -/obj/machinery/airlock_sensor{ - id_tag = "fuckyou1_sensor"; - pixel_x = 32 - }, -/obj/machinery/atmospherics/unary/vent_pump/high_volume{ - dir = 1; - frequency = 1379; - id_tag = "fuckyou1_pump" - }, -/turf/simulated/floor/plating, -/area/maintenance/arrivals) -"bX" = ( -/turf/simulated/open, -/area/turbolift/command_mid) -"bY" = ( -/obj/structure/grille, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/machinery/door/firedoor, -/turf/simulated/floor/plating, -/area/maintenance/arrivals) -"bZ" = ( -/obj/machinery/door/airlock/external{ - frequency = 1379; - icon_state = "door_locked"; - id_tag = "fuckyou1_outer"; - locked = 1 - }, -/turf/simulated/floor/plating, -/area/maintenance/arrivals) -"ca" = ( -/obj/machinery/access_button{ - command = "cycle_exterior"; - frequency = 1379; - master_tag = "fuckyou1"; - name = "exterior access button"; - pixel_x = -32; - pixel_y = 26 - }, -/turf/simulated/floor/asteroid/ash/rocky, -/area/mine/unexplored) -"cb" = ( -/obj/structure/cable/green{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/turf/simulated/floor/plating, -/area/maintenance/maintcentral) -"cc" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/turf/simulated/floor/plating, -/area/maintenance/maintcentral) -"cd" = ( -/obj/effect/decal/warning_stripes, -/obj/structure/ladder{ - icon_state = "ladder01"; - pixel_y = 16 - }, -/turf/simulated/open, -/area/maintenance/maintcentral) -"ce" = ( -/obj/machinery/light/small/emergency{ - dir = 1 - }, -/obj/random/junk, -/turf/simulated/floor/plating, -/area/maintenance/maintcentral) -"cf" = ( -/obj/effect/decal/warning_stripes, -/obj/structure/ladder/up{ - pixel_y = 16 - }, -/obj/structure/sign/emerg_exitZ{ - dir = 1; - icon_state = "emerg_exitZ"; - pixel_x = 32; - tag = "icon-emerg_exitZ (NORTH)" - }, -/turf/simulated/floor/plating{ - roof_type = null - }, -/area/maintenance/maintcentral) -"cg" = ( -/obj/machinery/atmospherics/pipe/zpipe/up/scrubbers{ - icon_state = "up-scrubbers"; - dir = 4 - }, -/obj/machinery/atmospherics/pipe/zpipe/up/supply{ - icon_state = "up-supply"; - dir = 4 - }, -/obj/structure/cable/green{ - icon_state = "12-0" - }, -/obj/structure/cable/green{ - d2 = 4; - icon_state = "0-4" - }, -/turf/simulated/floor/plating{ - roof_type = null - }, -/area/maintenance/maintcentral) -"ch" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/cable/green{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/turf/simulated/floor/plating, -/area/maintenance/maintcentral) -"ci" = ( -/obj/machinery/atmospherics/pipe/zpipe/down/supply{ - icon_state = "down-supply"; - dir = 8 - }, -/obj/machinery/atmospherics/pipe/zpipe/down/scrubbers{ - icon_state = "down-scrubbers"; - dir = 8 - }, -/obj/structure/cable/green{ - d2 = 8; - icon_state = "11-8" - }, -/obj/structure/lattice, -/turf/simulated/open, -/area/maintenance/maintcentral) -"cj" = ( -/obj/machinery/door/airlock/maintenance{ - req_access = list(12) - }, -/obj/machinery/door/firedoor, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/plating, -/area/maintenance/maintcentral) -"ck" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/turf/simulated/floor/plating, -/area/maintenance/maintcentral) -"cl" = ( -/obj/machinery/atmospherics/portables_connector, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/window/reinforced{ - icon_state = "rwindow"; - dir = 1 - }, -/obj/machinery/portable_atmospherics/canister/air/airlock, -/obj/machinery/door/window/southleft, -/obj/effect/floor_decal/corner/yellow/full{ - icon_state = "corner_white_full"; - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/maintenance/library) -"cm" = ( -/obj/machinery/atmospherics/portables_connector, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/window/reinforced{ - icon_state = "rwindow"; - dir = 1 - }, -/obj/machinery/portable_atmospherics/canister/air/airlock, -/obj/machinery/door/window/southleft, -/obj/effect/floor_decal/corner/yellow{ - icon_state = "corner_white"; - dir = 5 - }, -/turf/simulated/floor/tiled, -/area/maintenance/library) -"cn" = ( -/obj/machinery/atmospherics/portables_connector, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/window/reinforced{ - icon_state = "rwindow"; - dir = 1 - }, -/obj/machinery/portable_atmospherics/canister/air/airlock, -/obj/machinery/door/window/southleft, -/obj/effect/floor_decal/corner/yellow/full{ - icon_state = "corner_white_full"; - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/maintenance/library) -"co" = ( -/obj/structure/grille, -/obj/machinery/door/firedoor, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/window/reinforced{ - dir = 1 - }, -/turf/simulated/floor/plating, -/area/maintenance/library) -"cp" = ( -/turf/simulated/open, -/area/turbolift/cargo_mid) -"cq" = ( -/obj/machinery/light{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden{ - dir = 5; - icon_state = "intact" - }, -/obj/effect/floor_decal/corner/yellow{ - icon_state = "corner_white"; - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/maintenance/library) -"cr" = ( -/obj/machinery/atmospherics/pipe/manifold4w/hidden, -/turf/simulated/floor/tiled, -/area/maintenance/library) -"cs" = ( -/obj/machinery/atmospherics/pipe/simple/hidden{ - dir = 9; - icon_state = "intact" - }, -/obj/effect/floor_decal/corner/yellow{ - icon_state = "corner_white"; - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/maintenance/library) -"ct" = ( -/obj/structure/grille, -/obj/machinery/door/firedoor, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/window/reinforced, -/turf/simulated/floor/plating, -/area/maintenance/library) -"cu" = ( -/obj/structure/grille, -/obj/machinery/door/firedoor, -/obj/structure/window/reinforced{ - icon_state = "rwindow"; - dir = 1 - }, -/obj/structure/window/reinforced, -/turf/simulated/floor/plating, -/area/maintenance/library) -"cv" = ( -/obj/structure/grille, -/obj/machinery/door/firedoor, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced{ - icon_state = "rwindow"; - dir = 1 - }, -/obj/structure/window/reinforced, -/turf/simulated/floor/plating, -/area/maintenance/library) -"cw" = ( -/turf/simulated/floor/tiled, -/area/maintenance/library) -"cx" = ( -/obj/machinery/atmospherics/pipe/simple/hidden{ - dir = 5; - icon_state = "intact" - }, -/turf/simulated/floor/tiled, -/area/maintenance/library) -"cy" = ( -/obj/machinery/access_button{ - command = "cycle_interior"; - frequency = 1379; - master_tag = "fuckyou3"; - name = "interior access button"; - pixel_x = 32; - pixel_y = -26 - }, -/obj/machinery/atmospherics/pipe/simple/hidden{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/maintenance/library) -"cz" = ( -/obj/machinery/door/airlock/external{ - frequency = 1379; - icon_state = "door_locked"; - id_tag = "fuckyou3_inner"; - locked = 1 - }, -/obj/machinery/atmospherics/pipe/simple/hidden{ - dir = 4; - icon_state = "intact" - }, -/turf/simulated/floor/plating, -/area/maintenance/library) -"cA" = ( -/obj/effect/decal/warning_stripes, -/obj/machinery/embedded_controller/radio/airlock/airlock_controller{ - id_tag = "fuckyou3"; - pixel_x = 0; - pixel_y = -32; - tag_airpump = "fuckyou3_pump"; - tag_chamber_sensor = "fuckyou3_sensor"; - tag_exterior_door = "fuckyou3_outer"; - tag_interior_door = "fuckyou3_inner" - }, -/obj/machinery/airlock_sensor{ - id_tag = "fuckyou3_sensor"; - pixel_x = 0; - pixel_y = 32 - }, -/obj/machinery/atmospherics/unary/vent_pump/high_volume{ - dir = 8; - frequency = 1379; - id_tag = "fuckyou3_pump" - }, -/obj/machinery/light/small/emergency, -/turf/simulated/floor/plating, -/area/maintenance/library) -"cB" = ( -/obj/machinery/door/airlock/external{ - frequency = 1379; - icon_state = "door_locked"; - id_tag = "fuckyou3_outer"; - locked = 1 - }, -/turf/simulated/floor/plating, -/area/maintenance/library) -"cC" = ( -/obj/machinery/access_button{ - command = "cycle_exterior"; - frequency = 1379; - master_tag = "fuckyou3"; - name = "exterior access button"; - pixel_x = -32; - pixel_y = 26 - }, -/turf/simulated/floor/asteroid/ash/rocky, -/area/mine/unexplored) -"cD" = ( -/obj/structure/grille, -/obj/machinery/door/firedoor, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/window/reinforced{ - icon_state = "rwindow"; - dir = 1 - }, -/turf/simulated/floor/plating, -/area/maintenance/library) -"cE" = ( -/obj/structure/grille, -/obj/machinery/door/firedoor, -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - icon_state = "rwindow"; - dir = 1 - }, -/turf/simulated/floor/plating, -/area/maintenance/library) -"cF" = ( -/obj/structure/grille, -/obj/machinery/door/firedoor, -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced{ - icon_state = "rwindow"; - dir = 1 - }, -/turf/simulated/floor/plating, -/area/maintenance/library) -"cG" = ( -/obj/structure/grille, -/obj/machinery/door/firedoor, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/turf/simulated/floor/plating, -/area/maintenance/library) -"cH" = ( -/obj/machinery/light{ - dir = 8 - }, -/obj/effect/floor_decal/corner/yellow{ - icon_state = "corner_white"; - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/maintenance/library) -"cI" = ( -/obj/effect/floor_decal/corner/yellow, -/turf/simulated/floor/tiled, -/area/maintenance/library) -"cJ" = ( -/obj/effect/floor_decal/corner/yellow/full, -/obj/machinery/alarm{ - dir = 1; - pixel_y = -25 - }, -/obj/structure/sign/drop{ - pixel_x = -32 - }, -/turf/simulated/floor/tiled, -/area/maintenance/library) -"cK" = ( -/obj/effect/floor_decal/corner/yellow{ - icon_state = "corner_white"; - dir = 10 - }, -/obj/structure/cable{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/turf/simulated/floor/tiled, -/area/maintenance/library) -"cL" = ( -/obj/effect/floor_decal/corner/yellow/full{ - icon_state = "corner_white_full"; - dir = 4 - }, -/obj/machinery/power/apc{ - dir = 2; - name = "south bump"; - pixel_y = -24 - }, -/obj/structure/cable{ - d2 = 8; - icon_state = "0-8" - }, -/turf/simulated/floor/tiled, -/area/maintenance/library) -"cM" = ( -/obj/structure/grille, -/obj/machinery/door/firedoor, -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/turf/simulated/floor/plating, -/area/maintenance/library) -"cN" = ( -/obj/machinery/door/airlock/maintenance{ - req_access = list(12) - }, -/obj/machinery/door/firedoor, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2"; - pixel_y = 0 - }, -/turf/simulated/floor/plating, -/area/maintenance/library) -"cO" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2"; - pixel_y = 0 - }, -/turf/simulated/floor/plating, -/area/maintenance/library) -"cP" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/turf/simulated/floor/plating, -/area/maintenance/library) -"cQ" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/plating, -/area/maintenance/library) -"cR" = ( -/obj/structure/cable{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/turf/simulated/floor/plating, -/area/maintenance/library) -"cS" = ( -/obj/effect/decal/warning_stripes, -/obj/structure/ladder/up{ - pixel_y = 16 - }, -/turf/simulated/floor/plating{ - roof_type = null - }, -/area/maintenance/library) -"cT" = ( -/obj/effect/decal/warning_stripes, -/obj/structure/ladder{ - icon_state = "ladder01"; - pixel_y = 16 - }, -/turf/simulated/open, -/area/maintenance/library) -"cU" = ( -/obj/structure/disposalpipe/down{ - icon_state = "pipe-d"; - dir = 4 - }, -/obj/structure/lattice/catwalk, -/turf/simulated/open, -/area/maintenance/library) -"cV" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2"; - pixel_y = 0 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/maintenance/library) -"cW" = ( -/obj/structure/disposalpipe/up{ - icon_state = "pipe-u"; - dir = 8 - }, -/turf/simulated/floor/plating{ - roof_type = null - }, -/area/maintenance/library) -"cX" = ( -/obj/machinery/atmospherics/pipe/zpipe/up/scrubbers{ - icon_state = "up-scrubbers"; - dir = 4 - }, -/obj/machinery/atmospherics/pipe/zpipe/up/supply{ - icon_state = "up-supply"; - dir = 4 - }, -/obj/structure/disposalpipe/up{ - icon_state = "pipe-u"; - dir = 4 - }, -/obj/structure/cable{ - icon_state = "12-0" - }, -/obj/structure/cable{ - icon_state = "0-4"; - d2 = 4 - }, -/turf/simulated/floor/plating{ - roof_type = null - }, -/area/maintenance/library) -"cY" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/light/small/emergency, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/cable{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/turf/simulated/floor/plating, -/area/maintenance/library) -"cZ" = ( -/obj/structure/disposalpipe/down{ - icon_state = "pipe-d"; - dir = 8 - }, -/obj/structure/cable{ - d2 = 8; - icon_state = "11-8" - }, -/obj/machinery/atmospherics/pipe/zpipe/down/supply{ - icon_state = "down-supply"; - dir = 8 - }, -/obj/machinery/atmospherics/pipe/zpipe/down/scrubbers{ - icon_state = "down-scrubbers"; - dir = 8 - }, -/obj/structure/lattice/catwalk, -/turf/simulated/open, -/area/maintenance/library) -"da" = ( -/obj/machinery/door/airlock/maintenance{ - req_access = list(50) - }, -/obj/machinery/door/firedoor, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2"; - pixel_y = 0 - }, -/turf/simulated/floor/plating, -/area/maintenance/library) -"db" = ( -/turf/simulated/wall, -/area/security/range) -"dc" = ( -/turf/simulated/wall, -/area/security/range) -"dd" = ( -/turf/simulated/wall, -/area/security/range) -"de" = ( -/turf/simulated/wall, -/area/security/range) -"df" = ( -/turf/simulated/wall, -/area/security/range) -"dg" = ( -/turf/simulated/wall, -/area/security/range) -"dh" = ( -/turf/simulated/wall, -/area/security/range) -"di" = ( -/turf/simulated/wall, -/area/security/range) -"dj" = ( -/turf/simulated/wall, -/area/security/range) -"dk" = ( -/turf/simulated/wall, -/area/security/training) -"dl" = ( -/turf/simulated/wall, -/area/security/training) -"dm" = ( -/turf/simulated/wall, -/area/security/training) -"dn" = ( -/obj/machinery/door/firedoor, -/obj/structure/grille, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced{ - icon_state = "rwindow"; - dir = 8 - }, -/turf/simulated/floor/plating, -/area/security/range) -"do" = ( -/obj/effect/floor_decal/corner/blue{ - dir = 5 - }, -/obj/effect/floor_decal/corner/blue{ - icon_state = "corner_white"; - dir = 9 - }, -/turf/simulated/floor/tiled, -/area/security/range) -"dp" = ( /obj/effect/floor_decal/corner/blue{ dir = 5 }, @@ -1749,7 +52,7 @@ }, /turf/simulated/floor/tiled, /area/security/range) -"dq" = ( +"ah" = ( /obj/structure/table/standard, /obj/item/clothing/glasses/sunglasses{ pixel_x = 4; @@ -1769,7 +72,7 @@ }, /turf/simulated/floor/tiled, /area/security/range) -"dr" = ( +"ai" = ( /obj/structure/table/standard, /obj/item/weapon/storage/box/practiceshells{ pixel_x = 4; @@ -1801,7 +104,7 @@ }, /turf/simulated/floor/tiled, /area/security/range) -"ds" = ( +"aj" = ( /obj/structure/table/standard, /obj/item/clothing/ears/earmuffs{ pixel_x = 4; @@ -1824,7 +127,7 @@ }, /turf/simulated/floor/tiled, /area/security/range) -"dt" = ( +"ak" = ( /obj/effect/floor_decal/corner/blue{ dir = 5 }, @@ -1832,7 +135,7 @@ /obj/machinery/firealarm/north, /turf/simulated/floor/tiled, /area/security/range) -"du" = ( +"al" = ( /obj/effect/floor_decal/corner/blue{ dir = 5 }, @@ -1842,7 +145,7 @@ }, /turf/simulated/floor/tiled, /area/security/range) -"dv" = ( +"am" = ( /obj/machinery/door/firedoor, /obj/structure/grille, /obj/structure/window/reinforced{ @@ -1858,7 +161,7 @@ /obj/structure/window/reinforced, /turf/simulated/floor/plating, /area/security/range) -"dw" = ( +"an" = ( /obj/effect/floor_decal/corner/blue{ icon_state = "corner_white"; dir = 9 @@ -1866,7 +169,7 @@ /obj/machinery/vending/cola, /turf/simulated/floor/tiled, /area/security/training) -"dx" = ( +"ao" = ( /obj/effect/floor_decal/corner/blue{ icon_state = "corner_white"; dir = 6 @@ -1881,10 +184,7 @@ }, /turf/simulated/floor/tiled, /area/security/training) -"dy" = ( -/turf/simulated/wall, -/area/security/training) -"dz" = ( +"ap" = ( /obj/machinery/door/firedoor, /obj/structure/grille, /obj/structure/window/reinforced{ @@ -1896,14 +196,14 @@ }, /turf/simulated/floor/plating, /area/security/range) -"dA" = ( +"aq" = ( /obj/effect/floor_decal/corner/blue{ icon_state = "corner_white"; dir = 9 }, /turf/simulated/floor/tiled, /area/security/range) -"dB" = ( +"ar" = ( /obj/machinery/atmospherics/unary/vent_pump/on{ dir = 4 }, @@ -1914,7 +214,7 @@ }, /turf/simulated/floor/tiled, /area/security/range) -"dC" = ( +"as" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, @@ -1925,29 +225,7 @@ }, /turf/simulated/floor/tiled, /area/security/range) -"dD" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled, -/area/security/range) -"dE" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled, -/area/security/range) -"dF" = ( +"at" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ icon_state = "intact-scrubbers"; dir = 5 @@ -1962,7 +240,7 @@ }, /turf/simulated/floor/tiled, /area/security/range) -"dG" = ( +"au" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 }, @@ -1976,7 +254,7 @@ }, /turf/simulated/floor/tiled, /area/security/range) -"dH" = ( +"av" = ( /obj/machinery/door/firedoor, /obj/machinery/door/airlock/glass_security{ name = "Firing Range"; @@ -1995,7 +273,7 @@ }, /turf/simulated/floor/tiled, /area/security/range) -"dI" = ( +"aw" = ( /obj/effect/floor_decal/corner/blue{ icon_state = "corner_white"; dir = 9 @@ -2013,7 +291,7 @@ }, /turf/simulated/floor/tiled, /area/security/training) -"dJ" = ( +"ax" = ( /obj/effect/floor_decal/corner/blue{ icon_state = "corner_white"; dir = 6 @@ -2037,28 +315,7 @@ }, /turf/simulated/floor/tiled, /area/security/training) -"dK" = ( -/turf/simulated/wall, -/area/security/training) -"dL" = ( -/turf/simulated/wall, -/area/security/training) -"dM" = ( -/turf/simulated/wall, -/area/security/training) -"dN" = ( -/turf/simulated/wall, -/area/security/training) -"dO" = ( -/turf/simulated/wall, -/area/security/training) -"dP" = ( -/turf/simulated/wall, -/area/security/training) -"dQ" = ( -/turf/simulated/wall, -/area/security/training) -"dR" = ( +"ay" = ( /obj/machinery/door/firedoor, /obj/structure/grille, /obj/structure/window/reinforced, @@ -2071,14 +328,7 @@ }, /turf/simulated/floor/plating, /area/security/range) -"dS" = ( -/obj/effect/floor_decal/corner/blue{ - icon_state = "corner_white"; - dir = 9 - }, -/turf/simulated/floor/tiled, -/area/security/range) -"dT" = ( +"az" = ( /obj/effect/floor_decal/industrial/warning, /obj/structure/sign/nosmoking_2{ pixel_x = 0; @@ -2086,27 +336,11 @@ }, /turf/simulated/floor/tiled, /area/security/range) -"dU" = ( +"aA" = ( /obj/effect/floor_decal/industrial/warning, /turf/simulated/floor/tiled, /area/security/range) -"dV" = ( -/obj/effect/floor_decal/industrial/warning, -/turf/simulated/floor/tiled, -/area/security/range) -"dW" = ( -/obj/effect/floor_decal/industrial/warning, -/turf/simulated/floor/tiled, -/area/security/range) -"dX" = ( -/obj/effect/floor_decal/industrial/warning, -/turf/simulated/floor/tiled, -/area/security/range) -"dY" = ( -/obj/effect/floor_decal/industrial/warning, -/turf/simulated/floor/tiled, -/area/security/range) -"dZ" = ( +"aB" = ( /obj/machinery/door/firedoor, /obj/structure/grille, /obj/structure/window/reinforced{ @@ -2122,7 +356,7 @@ /obj/structure/window/reinforced, /turf/simulated/floor/plating, /area/security/range) -"ea" = ( +"aC" = ( /obj/effect/floor_decal/corner/blue{ icon_state = "corner_white"; dir = 9 @@ -2134,7 +368,7 @@ }, /turf/simulated/floor/tiled, /area/security/training) -"eb" = ( +"aD" = ( /obj/effect/floor_decal/corner/blue{ icon_state = "corner_white"; dir = 6 @@ -2148,7 +382,7 @@ }, /turf/simulated/floor/tiled, /area/security/training) -"ec" = ( +"aE" = ( /obj/machinery/door/firedoor, /obj/structure/grille, /obj/structure/window/reinforced{ @@ -2163,13 +397,13 @@ }, /turf/simulated/floor/plating, /area/security/training) -"ed" = ( +"aF" = ( /obj/item/device/radio/intercom{ pixel_y = 27 }, /turf/simulated/floor/tiled, /area/security/training) -"ee" = ( +"aG" = ( /obj/effect/floor_decal/industrial/warning{ icon_state = "warning"; dir = 4 @@ -2178,13 +412,13 @@ /obj/machinery/firealarm/north, /turf/simulated/floor/tiled, /area/security/training) -"ef" = ( +"aH" = ( /obj/machinery/light{ dir = 1 }, /turf/simulated/floor/tiled/white, /area/security/training) -"eg" = ( +"aI" = ( /obj/effect/decal/cleanable/blood/drip, /obj/structure/sign/nosmoking_2{ pixel_x = 0; @@ -2192,16 +426,10 @@ }, /turf/simulated/floor/tiled/white, /area/security/training) -"eh" = ( +"aJ" = ( /turf/simulated/floor/tiled/white, /area/security/training) -"ei" = ( -/turf/simulated/wall, -/area/security/training) -"ej" = ( -/turf/simulated/wall, -/area/security/range) -"ek" = ( +"aK" = ( /obj/effect/floor_decal/corner/blue{ icon_state = "corner_white"; dir = 9 @@ -2214,10 +442,7 @@ }, /turf/simulated/floor/tiled, /area/security/range) -"el" = ( -/turf/simulated/wall, -/area/security/range) -"em" = ( +"aL" = ( /obj/structure/table/reinforced/steel, /obj/machinery/recharger, /obj/item/weapon/gun/energy/laser/practice, @@ -2225,7 +450,7 @@ /obj/machinery/door/firedoor, /turf/simulated/floor/tiled, /area/security/range) -"en" = ( +"aM" = ( /obj/structure/grille, /obj/structure/window/reinforced, /obj/structure/window/reinforced{ @@ -2240,41 +465,7 @@ /obj/machinery/door/firedoor, /turf/simulated/floor/plating, /area/security/range) -"eo" = ( -/obj/structure/table/reinforced/steel, -/obj/machinery/recharger, -/obj/item/weapon/gun/energy/laser/practice, -/obj/effect/floor_decal/industrial/hatch/yellow, -/obj/machinery/door/firedoor, -/turf/simulated/floor/tiled, -/area/security/range) -"ep" = ( -/obj/structure/grille, -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/machinery/door/firedoor, -/turf/simulated/floor/plating, -/area/security/range) -"eq" = ( -/obj/structure/table/reinforced/steel, -/obj/machinery/recharger, -/obj/item/weapon/gun/energy/laser/practice, -/obj/effect/floor_decal/industrial/hatch/yellow, -/obj/machinery/door/firedoor, -/turf/simulated/floor/tiled, -/area/security/range) -"er" = ( -/turf/simulated/wall, -/area/security/range) -"es" = ( +"aN" = ( /obj/effect/floor_decal/corner/blue{ icon_state = "corner_white"; dir = 9 @@ -2288,21 +479,7 @@ }, /turf/simulated/floor/tiled, /area/security/training) -"et" = ( -/obj/effect/floor_decal/corner/blue{ - icon_state = "corner_white"; - dir = 6 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/tiled, -/area/security/training) -"eu" = ( +"aO" = ( /obj/machinery/door/firedoor, /obj/structure/grille, /obj/structure/window/reinforced, @@ -2315,10 +492,10 @@ }, /turf/simulated/floor/plating, /area/security/training) -"ev" = ( +"aP" = ( /turf/simulated/floor/tiled, /area/security/training) -"ew" = ( +"aQ" = ( /obj/effect/floor_decal/industrial/warning{ icon_state = "warning"; dir = 4 @@ -2326,86 +503,49 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/tiled, /area/security/training) -"ex" = ( +"aR" = ( /obj/effect/decal/cleanable/blood/drip, /turf/simulated/floor/tiled/white, /area/security/training) -"ey" = ( +"aS" = ( /obj/structure/closet/body_bag, /turf/simulated/floor/tiled/white, /area/security/training) -"ez" = ( -/turf/simulated/floor/tiled/white, -/area/security/training) -"eA" = ( -/turf/simulated/wall, -/area/security/training) -"eB" = ( -/obj/machinery/door/firedoor, -/obj/structure/grille, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced{ - icon_state = "rwindow"; - dir = 8 - }, -/turf/simulated/floor/plating, -/area/security/range) -"eC" = ( +"aT" = ( /obj/effect/floor_decal/corner/blue{ icon_state = "corner_white"; dir = 9 }, +/obj/machinery/light{ + dir = 8; + icon_state = "tube1"; + pixel_y = 0 + }, /turf/simulated/floor/tiled, /area/security/range) -"eD" = ( -/obj/structure/grille, -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/window/reinforced{ +"aU" = ( +/obj/effect/floor_decal/industrial/loading, +/turf/simulated/floor/tiled, +/area/security/range) +"aV" = ( +/turf/simulated/floor/tiled, +/area/security/range) +"aW" = ( +/obj/effect/floor_decal/industrial/loading, +/obj/machinery/light{ + icon_state = "tube1"; dir = 4 }, -/obj/machinery/door/firedoor, -/turf/simulated/floor/plating, -/area/security/range) -"eE" = ( -/obj/effect/floor_decal/industrial/loading, /turf/simulated/floor/tiled, /area/security/range) -"eF" = ( -/turf/simulated/floor/tiled, -/area/security/range) -"eG" = ( -/obj/effect/floor_decal/industrial/loading, -/turf/simulated/floor/tiled, -/area/security/range) -"eH" = ( -/turf/simulated/floor/tiled, -/area/security/range) -"eI" = ( -/obj/effect/floor_decal/industrial/loading, -/turf/simulated/floor/tiled, -/area/security/range) -"eJ" = ( -/turf/simulated/wall, -/area/security/range) -"eK" = ( +"aX" = ( /obj/effect/floor_decal/corner/blue{ icon_state = "corner_white"; dir = 9 }, /turf/simulated/floor/tiled, /area/security/training) -"eL" = ( +"aY" = ( /obj/effect/floor_decal/corner/blue{ icon_state = "corner_white"; dir = 6 @@ -2424,7 +564,7 @@ }, /turf/simulated/floor/tiled, /area/security/training) -"eM" = ( +"aZ" = ( /obj/machinery/door/firedoor, /obj/machinery/door/airlock/glass_security{ name = "Crime Scene Training"; @@ -2438,7 +578,7 @@ }, /turf/simulated/floor/tiled, /area/security/training) -"eN" = ( +"ba" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 }, @@ -2447,7 +587,7 @@ }, /turf/simulated/floor/tiled, /area/security/training) -"eO" = ( +"bb" = ( /obj/effect/floor_decal/industrial/warning{ icon_state = "warning"; dir = 4 @@ -2458,16 +598,16 @@ }, /turf/simulated/floor/tiled, /area/security/training) -"eP" = ( +"bc" = ( /obj/effect/floor_decal/industrial/warning, /obj/effect/decal/cleanable/blood, /turf/simulated/floor/tiled/white, /area/security/training) -"eQ" = ( +"bd" = ( /obj/effect/floor_decal/industrial/warning, /turf/simulated/floor/tiled/white, /area/security/training) -"eR" = ( +"be" = ( /obj/effect/floor_decal/industrial/warning, /obj/machinery/camera/network/security{ c_tag = "Security - Forensics Training"; @@ -2475,29 +615,7 @@ }, /turf/simulated/floor/tiled/white, /area/security/training) -"eS" = ( -/turf/simulated/wall, -/area/security/training) -"eT" = ( -/obj/machinery/door/firedoor, -/obj/structure/grille, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced{ - icon_state = "rwindow"; - dir = 8 - }, -/turf/simulated/floor/plating, -/area/security/range) -"eU" = ( -/obj/effect/floor_decal/corner/blue{ - icon_state = "corner_white"; - dir = 9 - }, -/turf/simulated/floor/tiled, -/area/security/range) -"eV" = ( +"bf" = ( /obj/machinery/door/window/westleft{ name = "Firing Range Access"; req_access = list(1) @@ -2505,19 +623,7 @@ /obj/machinery/door/firedoor, /turf/simulated/floor/tiled, /area/security/range) -"eW" = ( -/turf/simulated/floor/tiled, -/area/security/range) -"eX" = ( -/turf/simulated/floor/tiled, -/area/security/range) -"eY" = ( -/turf/simulated/floor/tiled, -/area/security/range) -"eZ" = ( -/turf/simulated/floor/tiled, -/area/security/range) -"fa" = ( +"bg" = ( /obj/machinery/alarm{ dir = 8; icon_state = "alarm0"; @@ -2525,10 +631,7 @@ }, /turf/simulated/floor/tiled, /area/security/range) -"fb" = ( -/turf/simulated/wall, -/area/security/range) -"fc" = ( +"bh" = ( /obj/effect/floor_decal/corner/blue{ icon_state = "corner_white"; dir = 9 @@ -2538,7 +641,7 @@ }, /turf/simulated/floor/tiled, /area/security/training) -"fd" = ( +"bi" = ( /obj/effect/floor_decal/corner/blue{ icon_state = "corner_white"; dir = 6 @@ -2554,7 +657,7 @@ }, /turf/simulated/floor/tiled, /area/security/training) -"fe" = ( +"bj" = ( /obj/machinery/door/firedoor, /obj/structure/grille, /obj/structure/window/reinforced{ @@ -2569,31 +672,25 @@ }, /turf/simulated/floor/plating, /area/security/training) -"ff" = ( +"bk" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 5 }, /turf/simulated/floor/tiled, /area/security/training) -"fg" = ( +"bl" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, /turf/simulated/floor/tiled, /area/security/training) -"fh" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/security/training) -"fi" = ( +"bm" = ( /obj/machinery/atmospherics/unary/vent_pump/on{ dir = 8 }, /turf/simulated/floor/tiled, /area/security/training) -"fj" = ( +"bn" = ( /obj/machinery/alarm{ dir = 8; icon_state = "alarm0"; @@ -2601,23 +698,7 @@ }, /turf/simulated/floor/tiled, /area/security/training) -"fk" = ( -/turf/simulated/wall, -/area/security/training) -"fl" = ( -/obj/machinery/door/firedoor, -/obj/structure/grille, -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced{ - icon_state = "rwindow"; - dir = 8 - }, -/turf/simulated/floor/plating, -/area/security/range) -"fm" = ( +"bo" = ( /obj/structure/closet/crate, /obj/item/target, /obj/item/target, @@ -2637,53 +718,25 @@ }, /turf/simulated/floor/tiled, /area/security/range) -"fn" = ( -/obj/structure/grille, -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/machinery/door/firedoor, -/turf/simulated/floor/plating, -/area/security/range) -"fo" = ( +"bp" = ( /obj/structure/target_stake, /obj/effect/floor_decal/industrial/hatch/yellow, /turf/simulated/floor/tiled, /area/security/range) -"fp" = ( +"bq" = ( /obj/machinery/camera/network/security{ c_tag = "Security - Firing Range Aft"; dir = 1 }, /turf/simulated/floor/tiled, /area/security/range) -"fq" = ( -/obj/structure/target_stake, -/obj/effect/floor_decal/industrial/hatch/yellow, -/turf/simulated/floor/tiled, -/area/security/range) -"fr" = ( +"br" = ( /obj/structure/sign/nosmoking_2{ pixel_y = -32 }, /turf/simulated/floor/tiled, /area/security/range) -"fs" = ( -/obj/structure/target_stake, -/obj/effect/floor_decal/industrial/hatch/yellow, -/turf/simulated/floor/tiled, -/area/security/range) -"ft" = ( -/turf/simulated/wall, -/area/security/range) -"fu" = ( +"bs" = ( /obj/effect/floor_decal/corner/blue{ icon_state = "corner_white"; dir = 9 @@ -2693,50 +746,23 @@ }, /turf/simulated/floor/tiled, /area/security/training) -"fv" = ( -/obj/effect/floor_decal/corner/blue{ - icon_state = "corner_white"; - dir = 6 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/tiled, -/area/security/training) -"fw" = ( -/obj/machinery/door/firedoor, -/obj/structure/grille, -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced{ - icon_state = "rwindow"; - dir = 8 - }, -/turf/simulated/floor/plating, -/area/security/training) -"fx" = ( +"bt" = ( /obj/structure/table/wood, /obj/item/weapon/gun/projectile/revolver/capgun, /turf/simulated/floor/tiled, /area/security/training) -"fy" = ( +"bu" = ( /obj/structure/table/wood, /obj/item/clothing/gloves/black, /turf/simulated/floor/tiled, /area/security/training) -"fz" = ( +"bv" = ( /obj/structure/table/wood, /obj/item/weapon/reagent_containers/spray/luminol, /obj/machinery/light, /turf/simulated/floor/tiled, /area/security/training) -"fA" = ( +"bw" = ( /obj/structure/table/wood, /obj/item/weapon/storage/box/evidence{ pixel_x = 0; @@ -2745,49 +771,12 @@ /obj/item/taperoll/police, /turf/simulated/floor/tiled, /area/security/training) -"fB" = ( +"bx" = ( /obj/structure/table/wood, /obj/item/weapon/reagent_containers/spray/cleaner, /turf/simulated/floor/tiled, /area/security/training) -"fC" = ( -/turf/simulated/wall, -/area/security/training) -"fD" = ( -/turf/simulated/wall, -/area/security/range) -"fE" = ( -/turf/simulated/wall, -/area/security/range) -"fF" = ( -/turf/simulated/wall, -/area/security/range) -"fG" = ( -/turf/simulated/wall, -/area/security/range) -"fH" = ( -/turf/simulated/wall, -/area/security/range) -"fI" = ( -/turf/simulated/wall, -/area/security/range) -"fJ" = ( -/turf/simulated/wall, -/area/security/range) -"fK" = ( -/turf/simulated/wall, -/area/security/range) -"fL" = ( -/turf/simulated/wall, -/area/security/range) -"fM" = ( -/obj/effect/floor_decal/corner/blue{ - icon_state = "corner_white"; - dir = 9 - }, -/turf/simulated/floor/tiled, -/area/security/training) -"fN" = ( +"by" = ( /obj/effect/floor_decal/corner/blue{ icon_state = "corner_white"; dir = 6 @@ -2806,10 +795,10 @@ }, /turf/simulated/floor/tiled, /area/security/training) -"fO" = ( +"bz" = ( /turf/simulated/wall, /area/security/detectives_office) -"fP" = ( +"bA" = ( /obj/machinery/door/firedoor, /obj/structure/grille, /obj/structure/window/reinforced/polarized{ @@ -2825,7 +814,7 @@ }, /turf/simulated/floor/plating, /area/security/detectives_office) -"fQ" = ( +"bB" = ( /obj/machinery/door/firedoor, /obj/structure/grille, /obj/structure/window/reinforced/polarized{ @@ -2841,48 +830,7 @@ }, /turf/simulated/floor/plating, /area/security/detectives_office) -"fR" = ( -/turf/simulated/wall, -/area/security/detectives_office) -"fS" = ( -/obj/machinery/door/firedoor, -/obj/structure/grille, -/obj/structure/window/reinforced/polarized{ - dir = 8; - id = "Detective" - }, -/obj/structure/window/reinforced/polarized{ - dir = 1; - id = "Detective" - }, -/obj/structure/window/reinforced/polarized{ - id = "Detective" - }, -/turf/simulated/floor/plating, -/area/security/detectives_office) -"fT" = ( -/obj/machinery/door/firedoor, -/obj/structure/grille, -/obj/structure/window/reinforced/polarized{ - dir = 4; - id = "Detective" - }, -/obj/structure/window/reinforced/polarized{ - dir = 1; - id = "Detective" - }, -/obj/structure/window/reinforced/polarized{ - id = "Detective" - }, -/turf/simulated/floor/plating, -/area/security/detectives_office) -"fU" = ( -/turf/simulated/wall, -/area/security/detectives_office) -"fV" = ( -/turf/simulated/wall, -/area/security/training) -"fW" = ( +"bC" = ( /obj/effect/floor_decal/corner/red/full{ icon_state = "corner_white_full"; dir = 8 @@ -2890,7 +838,7 @@ /obj/structure/punching_bag, /turf/simulated/floor/holofloor/tiled, /area/security/training) -"fX" = ( +"bD" = ( /obj/effect/floor_decal/corner/red{ icon_state = "corner_white"; dir = 5 @@ -2898,15 +846,7 @@ /obj/structure/weightlifter, /turf/simulated/floor/holofloor/tiled, /area/security/training) -"fY" = ( -/obj/effect/floor_decal/corner/red{ - icon_state = "corner_white"; - dir = 5 - }, -/obj/structure/weightlifter, -/turf/simulated/floor/holofloor/tiled, -/area/security/training) -"fZ" = ( +"bE" = ( /obj/effect/floor_decal/corner/red{ icon_state = "corner_white"; dir = 5 @@ -2916,7 +856,7 @@ /obj/machinery/atmospherics/unary/vent_scrubber/on, /turf/simulated/floor/holofloor/tiled, /area/security/training) -"ga" = ( +"bF" = ( /obj/structure/table/standard, /obj/item/clothing/gloves/boxing, /obj/item/device/radio/intercom{ @@ -2924,7 +864,7 @@ }, /turf/simulated/floor/tiled, /area/security/training) -"gb" = ( +"bG" = ( /obj/structure/grille, /obj/structure/window/reinforced{ dir = 4 @@ -2940,7 +880,7 @@ /obj/machinery/door/firedoor, /turf/simulated/floor/plating, /area/security/training) -"gc" = ( +"bH" = ( /obj/effect/floor_decal/corner/blue{ icon_state = "corner_white"; dir = 9 @@ -2951,21 +891,7 @@ }, /turf/simulated/floor/tiled, /area/security/training) -"gd" = ( -/obj/effect/floor_decal/corner/blue{ - icon_state = "corner_white"; - dir = 6 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/tiled, -/area/security/training) -"ge" = ( +"bI" = ( /obj/machinery/door/firedoor, /obj/structure/grille, /obj/structure/window/reinforced/polarized{ @@ -2982,51 +908,31 @@ }, /turf/simulated/floor/plating, /area/security/detectives_office) -"gf" = ( +"bJ" = ( /obj/machinery/computer/med_data, /turf/simulated/floor/lino, /area/security/detectives_office) -"gg" = ( +"bK" = ( /obj/machinery/computer/secure_data, /turf/simulated/floor/lino, /area/security/detectives_office) -"gh" = ( +"bL" = ( /obj/structure/bed/chair/comfy/beige, /obj/structure/window/reinforced{ dir = 8 }, /turf/simulated/floor/carpet, /area/security/detectives_office) -"gi" = ( +"bM" = ( /obj/structure/table/wood, /obj/item/device/flashlight/lamp/green, /turf/simulated/floor/carpet, /area/security/detectives_office) -"gj" = ( +"bN" = ( /obj/machinery/computer/security/wooden_tv, /turf/simulated/floor/carpet, /area/security/detectives_office) -"gk" = ( -/obj/machinery/door/firedoor, -/obj/structure/grille, -/obj/structure/window/reinforced/polarized{ - dir = 8; - id = "Detective" - }, -/obj/structure/window/reinforced/polarized{ - dir = 4; - id = "Detective" - }, -/obj/structure/window/reinforced/polarized{ - dir = 1; - id = "Detective" - }, -/turf/simulated/floor/plating, -/area/security/detectives_office) -"gl" = ( -/turf/simulated/wall, -/area/security/training) -"gm" = ( +"bO" = ( /obj/effect/floor_decal/corner/red{ icon_state = "corner_white"; dir = 9 @@ -3043,14 +949,14 @@ }, /turf/simulated/floor/holofloor/tiled, /area/security/training) -"gn" = ( +"bP" = ( /obj/effect/floor_decal/corner/blue/full{ icon_state = "corner_white_full"; dir = 8 }, /turf/simulated/floor/holofloor/tiled, /area/security/training) -"go" = ( +"bQ" = ( /obj/effect/floor_decal/corner/blue{ icon_state = "corner_white"; dir = 5 @@ -3061,7 +967,7 @@ }, /turf/simulated/floor/holofloor/tiled, /area/security/training) -"gp" = ( +"bR" = ( /obj/effect/floor_decal/corner/blue/full{ icon_state = "corner_white_full"; dir = 1 @@ -3075,7 +981,7 @@ }, /turf/simulated/floor/holofloor/tiled, /area/security/training) -"gq" = ( +"bS" = ( /obj/effect/floor_decal/corner/green{ icon_state = "corner_white"; dir = 6 @@ -3088,7 +994,7 @@ }, /turf/simulated/floor/holofloor/tiled, /area/security/training) -"gr" = ( +"bT" = ( /obj/machinery/door/firedoor, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 @@ -3098,7 +1004,7 @@ }, /turf/simulated/floor/tiled, /area/security/training) -"gs" = ( +"bU" = ( /obj/effect/floor_decal/corner/blue{ icon_state = "corner_white"; dir = 9 @@ -3111,7 +1017,7 @@ }, /turf/simulated/floor/tiled, /area/security/training) -"gt" = ( +"bV" = ( /obj/effect/floor_decal/corner/blue{ icon_state = "corner_white"; dir = 6 @@ -3134,7 +1040,7 @@ }, /turf/simulated/floor/tiled, /area/security/training) -"gu" = ( +"bW" = ( /obj/machinery/door/firedoor, /obj/structure/grille, /obj/structure/window/reinforced/polarized{ @@ -3147,24 +1053,24 @@ }, /turf/simulated/floor/plating, /area/security/detectives_office) -"gv" = ( +"bX" = ( /obj/item/weapon/stool/padded, /turf/simulated/floor/lino, /area/security/detectives_office) -"gw" = ( +"bY" = ( /obj/machinery/atmospherics/unary/vent_pump/on, /turf/simulated/floor/lino, /area/security/detectives_office) -"gx" = ( +"bZ" = ( /turf/simulated/floor/carpet, /area/security/detectives_office) -"gy" = ( +"ca" = ( /obj/structure/table/wood, /obj/item/weapon/folder/sec, /obj/item/weapon/pen, /turf/simulated/floor/carpet, /area/security/detectives_office) -"gz" = ( +"cb" = ( /obj/structure/bed/chair/comfy/brown{ dir = 8 }, @@ -3179,23 +1085,7 @@ }, /turf/simulated/floor/carpet, /area/security/detectives_office) -"gA" = ( -/obj/machinery/door/firedoor, -/obj/structure/grille, -/obj/structure/window/reinforced/polarized{ - dir = 8; - id = "Detective" - }, -/obj/structure/window/reinforced/polarized{ - dir = 4; - id = "Detective" - }, -/turf/simulated/floor/plating, -/area/security/detectives_office) -"gB" = ( -/turf/simulated/wall, -/area/security/training) -"gC" = ( +"cc" = ( /obj/effect/floor_decal/corner/red{ icon_state = "corner_white"; dir = 9 @@ -3208,11 +1098,11 @@ }, /turf/simulated/floor/holofloor/tiled, /area/security/training) -"gD" = ( +"cd" = ( /obj/effect/floor_decal/corner/blue/full, /turf/simulated/floor/holofloor/tiled, /area/security/training) -"gE" = ( +"ce" = ( /obj/effect/floor_decal/corner/blue{ icon_state = "corner_white"; dir = 10 @@ -3220,46 +1110,25 @@ /obj/machinery/atmospherics/pipe/simple/hidden/supply, /turf/simulated/floor/holofloor/tiled, /area/security/training) -"gF" = ( +"cf" = ( /obj/effect/floor_decal/corner/blue/full{ icon_state = "corner_white_full"; dir = 4 }, /turf/simulated/floor/holofloor/tiled, /area/security/training) -"gG" = ( +"cg" = ( /obj/effect/floor_decal/corner/green{ icon_state = "corner_white"; dir = 6 }, /turf/simulated/floor/holofloor/tiled, /area/security/training) -"gH" = ( +"ch" = ( /obj/machinery/door/firedoor, /turf/simulated/floor/tiled, /area/security/training) -"gI" = ( -/obj/effect/floor_decal/corner/blue{ - icon_state = "corner_white"; - dir = 9 - }, -/turf/simulated/floor/tiled, -/area/security/training) -"gJ" = ( -/obj/effect/floor_decal/corner/blue{ - icon_state = "corner_white"; - dir = 6 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/tiled, -/area/security/training) -"gK" = ( +"ci" = ( /obj/machinery/door/firedoor, /obj/structure/grille, /obj/structure/window/reinforced/polarized{ @@ -3275,14 +1144,14 @@ }, /turf/simulated/floor/plating, /area/security/detectives_office) -"gL" = ( +"cj" = ( /obj/machinery/disposal, /obj/structure/disposalpipe/trunk{ dir = 4 }, /turf/simulated/floor/lino, /area/security/detectives_office) -"gM" = ( +"ck" = ( /obj/structure/disposalpipe/segment{ dir = 2; icon_state = "pipe-c" @@ -3290,43 +1159,27 @@ /obj/machinery/atmospherics/pipe/simple/hidden/supply, /turf/simulated/floor/lino, /area/security/detectives_office) -"gN" = ( +"cl" = ( /obj/machinery/hologram/holopad, /turf/simulated/floor/carpet, /area/security/detectives_office) -"gO" = ( +"cm" = ( /obj/structure/table/wood, /obj/item/weapon/paper_bin, /obj/item/device/taperecorder, /turf/simulated/floor/carpet, /area/security/detectives_office) -"gP" = ( +"cn" = ( /obj/machinery/camera/network/security{ c_tag = "Security - Detective's Office"; dir = 8 }, /turf/simulated/floor/carpet, /area/security/detectives_office) -"gQ" = ( -/obj/machinery/door/firedoor, -/obj/structure/grille, -/obj/structure/window/reinforced/polarized{ - dir = 8; - id = "Detective" - }, -/obj/structure/window/reinforced/polarized{ - dir = 4; - id = "Detective" - }, -/turf/simulated/floor/plating, -/area/security/detectives_office) -"gR" = ( -/turf/simulated/wall, -/area/security/training) -"gS" = ( +"co" = ( /turf/simulated/floor/holofloor/tiled, /area/security/training) -"gT" = ( +"cp" = ( /obj/effect/floor_decal/corner/green{ icon_state = "corner_white"; dir = 10 @@ -3342,7 +1195,7 @@ }, /turf/simulated/floor/holofloor/tiled, /area/security/training) -"gU" = ( +"cq" = ( /obj/effect/floor_decal/corner/green{ icon_state = "corner_white"; dir = 10 @@ -3353,61 +1206,21 @@ }, /turf/simulated/floor/holofloor/tiled, /area/security/training) -"gV" = ( +"cr" = ( /obj/effect/floor_decal/corner/green{ icon_state = "corner_white"; dir = 10 }, /turf/simulated/floor/holofloor/tiled, /area/security/training) -"gW" = ( +"cs" = ( /obj/effect/floor_decal/corner/green/full{ icon_state = "corner_white_full"; dir = 4 }, /turf/simulated/floor/holofloor/tiled, /area/security/training) -"gX" = ( -/obj/structure/grille, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/window/reinforced{ - icon_state = "rwindow"; - dir = 8 - }, -/obj/structure/window/reinforced, -/obj/machinery/door/firedoor, -/turf/simulated/floor/plating, -/area/security/training) -"gY" = ( -/obj/effect/floor_decal/corner/blue{ - icon_state = "corner_white"; - dir = 9 - }, -/turf/simulated/floor/tiled, -/area/security/training) -"gZ" = ( -/obj/effect/floor_decal/corner/blue{ - icon_state = "corner_white"; - dir = 6 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/tiled, -/area/security/training) -"ha" = ( -/turf/simulated/wall, -/area/security/detectives_office) -"hb" = ( +"ct" = ( /obj/structure/flora/pottedplant/random, /obj/machinery/alarm{ dir = 4; @@ -3417,7 +1230,7 @@ }, /turf/simulated/floor/lino, /area/security/detectives_office) -"hc" = ( +"cu" = ( /obj/structure/disposalpipe/segment, /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ @@ -3425,59 +1238,22 @@ }, /turf/simulated/floor/lino, /area/security/detectives_office) -"hd" = ( +"cv" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 }, /turf/simulated/floor/lino, /area/security/detectives_office) -"he" = ( +"cw" = ( /obj/machinery/atmospherics/unary/vent_scrubber/on{ dir = 8 }, /turf/simulated/floor/lino, /area/security/detectives_office) -"hf" = ( +"cx" = ( /turf/simulated/floor/lino, /area/security/detectives_office) -"hg" = ( -/obj/machinery/door/firedoor, -/obj/structure/grille, -/obj/structure/window/reinforced/polarized{ - dir = 8; - id = "Detective" - }, -/obj/structure/window/reinforced/polarized{ - dir = 4; - id = "Detective" - }, -/obj/structure/window/reinforced/polarized{ - id = "Detective" - }, -/turf/simulated/floor/plating, -/area/security/detectives_office) -"hh" = ( -/turf/simulated/wall, -/area/security/training) -"hi" = ( -/turf/simulated/wall, -/area/security/training) -"hj" = ( -/turf/simulated/wall, -/area/security/training) -"hk" = ( -/turf/simulated/wall, -/area/security/training) -"hl" = ( -/turf/simulated/wall, -/area/security/training) -"hm" = ( -/turf/simulated/wall, -/area/security/training) -"hn" = ( -/turf/simulated/wall, -/area/security/training) -"ho" = ( +"cy" = ( /obj/effect/floor_decal/corner/blue{ icon_state = "corner_white"; dir = 9 @@ -3485,7 +1261,7 @@ /obj/machinery/door/firedoor, /turf/simulated/floor/tiled, /area/security/training) -"hp" = ( +"cz" = ( /obj/effect/floor_decal/corner/blue{ icon_state = "corner_white"; dir = 6 @@ -3500,24 +1276,7 @@ }, /turf/simulated/floor/tiled, /area/security/training) -"hq" = ( -/obj/machinery/door/firedoor, -/obj/structure/grille, -/obj/structure/window/reinforced/polarized{ - dir = 8; - id = "Detective" - }, -/obj/structure/window/reinforced/polarized{ - dir = 4; - id = "Detective" - }, -/obj/structure/window/reinforced/polarized{ - dir = 1; - id = "Detective" - }, -/turf/simulated/floor/plating, -/area/security/detectives_office) -"hr" = ( +"cA" = ( /obj/machinery/photocopier, /obj/machinery/light{ dir = 8; @@ -3526,19 +1285,13 @@ }, /turf/simulated/floor/lino, /area/security/detectives_office) -"hs" = ( +"cB" = ( /obj/structure/disposalpipe/segment, /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/lino, /area/security/detectives_office) -"ht" = ( -/turf/simulated/floor/lino, -/area/security/detectives_office) -"hu" = ( -/turf/simulated/floor/lino, -/area/security/detectives_office) -"hv" = ( +"cC" = ( /obj/machinery/requests_console{ department = "Detective's Desk"; departmentType = 5; @@ -3547,10 +1300,7 @@ }, /turf/simulated/floor/lino, /area/security/detectives_office) -"hw" = ( -/turf/simulated/wall, -/area/security/detectives_office) -"hx" = ( +"cD" = ( /obj/machinery/door/firedoor, /obj/structure/grille, /obj/structure/window/reinforced, @@ -3564,7 +1314,7 @@ }, /turf/simulated/floor/plating, /area/security/investigations) -"hy" = ( +"cE" = ( /obj/machinery/door/firedoor, /obj/structure/grille, /obj/structure/window/reinforced, @@ -3577,10 +1327,10 @@ }, /turf/simulated/floor/plating, /area/security/investigations) -"hz" = ( +"cF" = ( /turf/simulated/wall, /area/security/forensics_office) -"hA" = ( +"cG" = ( /obj/machinery/door/firedoor, /obj/structure/grille, /obj/structure/window/reinforced/polarized{ @@ -3596,7 +1346,7 @@ }, /turf/simulated/floor/plating, /area/security/forensics_office) -"hB" = ( +"cH" = ( /obj/machinery/door/firedoor, /obj/structure/grille, /obj/structure/window/reinforced/polarized{ @@ -3612,51 +1362,11 @@ }, /turf/simulated/floor/plating, /area/security/forensics_office) -"hC" = ( -/turf/simulated/wall, -/area/security/forensics_office) -"hD" = ( -/turf/simulated/wall, -/area/security/forensics_office) -"hE" = ( -/turf/simulated/wall, -/area/security/forensics_office) -"hF" = ( -/obj/machinery/door/firedoor, -/obj/structure/grille, -/obj/structure/window/reinforced/polarized{ - dir = 1; - id = "FT Op" - }, -/obj/structure/window/reinforced/polarized{ - dir = 8; - id = "FT Op" - }, -/obj/structure/window/reinforced/polarized{ - id = "FT Op" - }, -/turf/simulated/floor/plating, -/area/security/forensics_office) -"hG" = ( -/obj/machinery/door/firedoor, -/obj/structure/grille, -/obj/structure/window/reinforced/polarized{ - dir = 1; - id = "FT Op" - }, -/obj/structure/window/reinforced/polarized{ - dir = 4; - id = "FT Op" - }, -/obj/structure/window/reinforced/polarized{ - id = "FT Op" - }, -/turf/simulated/floor/plating, -/area/security/forensics_office) -"hH" = ( -/turf/simulated/wall, -/area/security/forensics_office) -"hI" = ( +"cI" = ( +/obj/random/junk, +/turf/simulated/floor/asteroid/ash/rocky, +/area/mine/unexplored) +"cJ" = ( /obj/machinery/door/firedoor, /obj/structure/grille, /obj/structure/window/reinforced{ @@ -3671,31 +1381,27 @@ }, /turf/simulated/floor/plating, /area/security/training) -"hJ" = ( +"cK" = ( /obj/structure/banner, /turf/simulated/floor/wood, /area/security/training) -"hK" = ( +"cL" = ( /obj/structure/bed/chair/comfy/brown, /turf/simulated/floor/wood, /area/security/training) -"hL" = ( +"cM" = ( /obj/structure/sign/double/map/left{ pixel_y = 32 }, /turf/simulated/floor/wood, /area/security/training) -"hM" = ( +"cN" = ( /obj/structure/sign/double/map/right{ pixel_y = 32 }, /turf/simulated/floor/wood, /area/security/training) -"hN" = ( -/obj/structure/banner, -/turf/simulated/floor/wood, -/area/security/training) -"hO" = ( +"cO" = ( /obj/machinery/door/firedoor, /obj/structure/grille, /obj/structure/window/reinforced{ @@ -3710,48 +1416,14 @@ }, /turf/simulated/floor/plating, /area/security/training) -"hP" = ( -/obj/effect/floor_decal/corner/blue{ - icon_state = "corner_white"; - dir = 9 - }, -/turf/simulated/floor/tiled, -/area/security/training) -"hQ" = ( -/obj/effect/floor_decal/corner/blue{ - icon_state = "corner_white"; - dir = 6 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/tiled, -/area/security/training) -"hR" = ( -/obj/machinery/door/firedoor, -/obj/structure/grille, -/obj/structure/window/reinforced/polarized{ - dir = 8; - id = "Detective" - }, -/obj/structure/window/reinforced/polarized{ - dir = 4; - id = "Detective" - }, -/turf/simulated/floor/plating, -/area/security/detectives_office) -"hS" = ( +"cP" = ( /obj/structure/window/reinforced{ dir = 1 }, /obj/structure/flora/pottedplant/random, /turf/simulated/floor/wood, /area/security/detectives_office) -"hT" = ( +"cQ" = ( /obj/structure/window/reinforced{ dir = 1 }, @@ -3766,14 +1438,14 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/wood, /area/security/detectives_office) -"hU" = ( +"cR" = ( /turf/simulated/floor/tiled/ramp/bottom{ tag = "icon-rampbot (NORTH)"; icon_state = "rampbot"; dir = 1 }, /area/security/detectives_office) -"hV" = ( +"cS" = ( /obj/structure/window/reinforced, /obj/structure/window/reinforced{ icon_state = "rwindow"; @@ -3790,14 +1462,14 @@ }, /turf/simulated/floor/lino, /area/security/detectives_office) -"hW" = ( +"cT" = ( /obj/structure/window/reinforced, /obj/structure/closet/secure_closet/detective, /obj/item/weapon/reagent_containers/food/drinks/flask/detflask, /obj/item/weapon/book/manual/security_space_law, /turf/simulated/floor/lino, /area/security/detectives_office) -"hX" = ( +"cU" = ( /obj/structure/grille, /obj/structure/window/reinforced/polarized{ dir = 1; @@ -3817,7 +1489,7 @@ }, /turf/simulated/floor/plating, /area/security/detectives_office) -"hY" = ( +"cV" = ( /obj/machinery/papershredder, /obj/effect/floor_decal/corner/blue{ icon_state = "corner_white"; @@ -3825,7 +1497,7 @@ }, /turf/simulated/floor/tiled, /area/security/investigations) -"hZ" = ( +"cW" = ( /obj/structure/table/standard, /obj/item/weapon/folder/sec, /obj/item/weapon/folder/sec, @@ -3836,7 +1508,7 @@ }, /turf/simulated/floor/tiled, /area/security/investigations) -"ia" = ( +"cX" = ( /obj/machinery/door/firedoor, /obj/structure/grille, /obj/structure/window/reinforced/polarized{ @@ -3853,7 +1525,7 @@ }, /turf/simulated/floor/plating, /area/security/forensics_office) -"ib" = ( +"cY" = ( /obj/structure/table/standard, /obj/item/weapon/packageWrap, /obj/item/weapon/hand_labeler, @@ -3863,7 +1535,7 @@ }, /turf/simulated/floor/tiled, /area/security/forensics_office) -"ic" = ( +"cZ" = ( /obj/structure/table/standard, /obj/item/weapon/storage/briefcase/crimekit, /obj/effect/floor_decal/corner/blue{ @@ -3875,7 +1547,7 @@ }, /turf/simulated/floor/tiled, /area/security/forensics_office) -"id" = ( +"da" = ( /obj/structure/table/standard, /obj/item/device/camera_film, /obj/item/device/camera, @@ -3888,7 +1560,7 @@ }, /turf/simulated/floor/tiled, /area/security/forensics_office) -"ie" = ( +"db" = ( /obj/structure/table/standard, /obj/item/weapon/storage/box/evidence{ pixel_x = 5; @@ -3907,7 +1579,7 @@ }, /turf/simulated/floor/tiled, /area/security/forensics_office) -"if" = ( +"dc" = ( /obj/machinery/computer/secure_data, /obj/effect/floor_decal/corner/blue{ icon_state = "corner_white"; @@ -3915,7 +1587,7 @@ }, /turf/simulated/floor/tiled, /area/security/forensics_office) -"ig" = ( +"dd" = ( /obj/machinery/computer/med_data, /obj/effect/floor_decal/corner/blue{ icon_state = "corner_white"; @@ -3923,7 +1595,7 @@ }, /turf/simulated/floor/tiled, /area/security/forensics_office) -"ih" = ( +"de" = ( /obj/structure/table/standard, /obj/item/weapon/folder/sec, /obj/effect/floor_decal/corner/blue{ @@ -3932,24 +1604,7 @@ }, /turf/simulated/floor/tiled, /area/security/forensics_office) -"ii" = ( -/obj/machinery/door/firedoor, -/obj/structure/grille, -/obj/structure/window/reinforced/polarized{ - dir = 1; - id = "FT Op" - }, -/obj/structure/window/reinforced/polarized{ - dir = 4; - id = "FT Op" - }, -/obj/structure/window/reinforced/polarized{ - dir = 8; - id = "FT Op" - }, -/turf/simulated/floor/plating, -/area/security/forensics_office) -"ij" = ( +"df" = ( /obj/machinery/door/firedoor, /obj/structure/grille, /obj/structure/window/reinforced{ @@ -3962,7 +1617,7 @@ /obj/structure/window/reinforced, /turf/simulated/floor/plating, /area/security/training) -"ik" = ( +"dg" = ( /obj/structure/table/wood, /obj/item/device/flashlight/lamp/green, /obj/machinery/light{ @@ -3972,24 +1627,21 @@ }, /turf/simulated/floor/wood, /area/security/training) -"il" = ( +"dh" = ( /obj/structure/table/wood, /obj/item/weapon/folder/sec, /turf/simulated/floor/wood, /area/security/training) -"im" = ( +"di" = ( /obj/structure/table/wood, /obj/item/weapon/paper_bin, /obj/item/weapon/pen, /turf/simulated/floor/wood, /area/security/training) -"in" = ( +"dj" = ( /turf/simulated/floor/wood, /area/security/training) -"io" = ( -/turf/simulated/floor/wood, -/area/security/training) -"ip" = ( +"dk" = ( /obj/machinery/door/firedoor, /obj/structure/grille, /obj/structure/window/reinforced{ @@ -4001,48 +1653,11 @@ }, /turf/simulated/floor/plating, /area/security/training) -"iq" = ( -/obj/effect/floor_decal/corner/blue{ - icon_state = "corner_white"; - dir = 9 - }, -/turf/simulated/floor/tiled, -/area/security/training) -"ir" = ( -/obj/effect/floor_decal/corner/blue{ - icon_state = "corner_white"; - dir = 6 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/tiled, -/area/security/training) -"is" = ( -/obj/machinery/door/firedoor, -/obj/structure/grille, -/obj/structure/window/reinforced/polarized{ - dir = 8; - id = "Detective" - }, -/obj/structure/window/reinforced/polarized{ - dir = 4; - id = "Detective" - }, -/obj/structure/window/reinforced/polarized{ - id = "Detective" - }, -/turf/simulated/floor/plating, -/area/security/detectives_office) -"it" = ( +"dl" = ( /obj/structure/coatrack, /turf/simulated/floor/wood, /area/security/detectives_office) -"iu" = ( +"dm" = ( /obj/machinery/firealarm/south, /obj/structure/disposalpipe/segment{ dir = 1; @@ -4057,7 +1672,7 @@ }, /turf/simulated/floor/wood, /area/security/detectives_office) -"iv" = ( +"dn" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, @@ -4069,7 +1684,7 @@ }, /turf/simulated/floor/wood, /area/security/detectives_office) -"iw" = ( +"do" = ( /obj/machinery/power/apc{ dir = 2; name = "south bump"; @@ -4090,7 +1705,7 @@ }, /turf/simulated/floor/wood, /area/security/detectives_office) -"ix" = ( +"dp" = ( /obj/machinery/light_switch{ pixel_x = 0; pixel_y = -24 @@ -4111,7 +1726,7 @@ }, /turf/simulated/floor/wood, /area/security/detectives_office) -"iy" = ( +"dq" = ( /obj/machinery/door/airlock/security{ id_tag = "detdoor"; name = "Detective"; @@ -4133,7 +1748,7 @@ }, /turf/simulated/floor/wood, /area/security/detectives_office) -"iz" = ( +"dr" = ( /obj/effect/floor_decal/corner/blue{ icon_state = "corner_white"; dir = 9 @@ -4155,14 +1770,14 @@ }, /turf/simulated/floor/tiled, /area/security/investigations) -"iA" = ( +"ds" = ( /obj/effect/floor_decal/corner/blue{ icon_state = "corner_white"; dir = 6 }, /turf/simulated/floor/tiled, /area/security/investigations) -"iB" = ( +"dt" = ( /obj/machinery/door/firedoor, /obj/structure/grille, /obj/structure/window/reinforced/polarized{ @@ -4178,23 +1793,14 @@ }, /turf/simulated/floor/plating, /area/security/forensics_office) -"iC" = ( +"du" = ( /turf/simulated/floor/tiled, /area/security/forensics_office) -"iD" = ( +"dv" = ( /obj/machinery/atmospherics/unary/vent_pump/on, /turf/simulated/floor/tiled, /area/security/forensics_office) -"iE" = ( -/turf/simulated/floor/tiled, -/area/security/forensics_office) -"iF" = ( -/turf/simulated/floor/tiled, -/area/security/forensics_office) -"iG" = ( -/turf/simulated/floor/tiled, -/area/security/forensics_office) -"iH" = ( +"dw" = ( /obj/structure/bed/chair/office/light{ dir = 4 }, @@ -4205,7 +1811,7 @@ }, /turf/simulated/floor/tiled, /area/security/forensics_office) -"iI" = ( +"dx" = ( /obj/structure/table/standard, /obj/item/weapon/pen/red, /obj/item/weapon/pen{ @@ -4214,7 +1820,7 @@ }, /turf/simulated/floor/tiled, /area/security/forensics_office) -"iJ" = ( +"dy" = ( /obj/machinery/door/firedoor, /obj/structure/grille, /obj/structure/window/reinforced/polarized{ @@ -4227,10 +1833,7 @@ }, /turf/simulated/floor/plating, /area/security/forensics_office) -"iK" = ( -/turf/simulated/wall, -/area/security/training) -"iL" = ( +"dz" = ( /obj/effect/floor_decal/spline/fancy/wood, /obj/structure/sign/nosmoking_2{ pixel_x = -32 @@ -4241,15 +1844,11 @@ }, /turf/simulated/floor/wood, /area/security/training) -"iM" = ( +"dA" = ( /obj/effect/floor_decal/spline/fancy/wood, /turf/simulated/floor/wood, /area/security/training) -"iN" = ( -/obj/effect/floor_decal/spline/fancy/wood, -/turf/simulated/floor/wood, -/area/security/training) -"iO" = ( +"dB" = ( /obj/effect/floor_decal/spline/fancy/wood, /obj/effect/floor_decal/spline/fancy/wood{ icon_state = "spline_fancy"; @@ -4257,29 +1856,10 @@ }, /turf/simulated/floor/wood, /area/security/training) -"iP" = ( +"dC" = ( /turf/simulated/floor/tiled/ramp/bottom, /area/security/training) -"iQ" = ( -/obj/machinery/door/firedoor, -/obj/structure/grille, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced{ - icon_state = "rwindow"; - dir = 8 - }, -/turf/simulated/floor/plating, -/area/security/training) -"iR" = ( -/obj/effect/floor_decal/corner/blue{ - icon_state = "corner_white"; - dir = 9 - }, -/turf/simulated/floor/tiled, -/area/security/training) -"iS" = ( +"dD" = ( /obj/effect/floor_decal/corner/blue{ icon_state = "corner_white"; dir = 6 @@ -4298,28 +1878,10 @@ }, /turf/simulated/floor/tiled, /area/security/training) -"iT" = ( -/turf/simulated/wall, -/area/security/training) -"iU" = ( -/turf/simulated/wall, -/area/security/training) -"iV" = ( -/turf/simulated/wall, -/area/security/training) -"iW" = ( -/turf/simulated/wall, -/area/security/training) -"iX" = ( +"dE" = ( /turf/simulated/wall, /area/security/investigations) -"iY" = ( -/turf/simulated/wall, -/area/security/investigations) -"iZ" = ( -/turf/simulated/wall, -/area/security/investigations) -"ja" = ( +"dF" = ( /obj/effect/floor_decal/corner/blue{ icon_state = "corner_white"; dir = 9 @@ -4350,7 +1912,7 @@ }, /turf/simulated/floor/tiled, /area/security/investigations) -"jb" = ( +"dG" = ( /obj/effect/floor_decal/corner/blue{ icon_state = "corner_white"; dir = 6 @@ -4371,7 +1933,7 @@ }, /turf/simulated/floor/tiled, /area/security/investigations) -"jc" = ( +"dH" = ( /obj/machinery/door/airlock/security{ name = "Forensic Technician"; req_access = list(4) @@ -4392,7 +1954,7 @@ }, /turf/simulated/floor/tiled, /area/security/forensics_office) -"jd" = ( +"dI" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, @@ -4409,7 +1971,7 @@ }, /turf/simulated/floor/tiled, /area/security/forensics_office) -"je" = ( +"dJ" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, @@ -4424,7 +1986,7 @@ /obj/machinery/atmospherics/pipe/manifold/hidden/supply, /turf/simulated/floor/tiled, /area/security/forensics_office) -"jf" = ( +"dK" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, @@ -4442,7 +2004,7 @@ }, /turf/simulated/floor/tiled, /area/security/forensics_office) -"jg" = ( +"dL" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, @@ -4456,21 +2018,7 @@ }, /turf/simulated/floor/tiled, /area/security/forensics_office) -"jh" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/security/forensics_office) -"ji" = ( +"dM" = ( /obj/structure/disposalpipe/segment{ dir = 2; icon_state = "pipe-c" @@ -4485,7 +2033,7 @@ }, /turf/simulated/floor/tiled, /area/security/forensics_office) -"jj" = ( +"dN" = ( /obj/structure/table/standard, /obj/item/weapon/paper_bin{ pixel_x = -3; @@ -4496,20 +2044,10 @@ }, /turf/simulated/floor/tiled, /area/security/forensics_office) -"jk" = ( -/obj/machinery/door/firedoor, -/obj/structure/grille, -/obj/structure/window/reinforced/polarized{ - dir = 4; - id = "FT Op" - }, -/obj/structure/window/reinforced/polarized{ - dir = 8; - id = "FT Op" - }, -/turf/simulated/floor/plating, -/area/security/forensics_office) -"jl" = ( +"dO" = ( +/turf/simulated/wall/r_wall, +/area/mine/unexplored) +"dP" = ( /obj/machinery/door/firedoor, /obj/structure/grille, /obj/structure/window/reinforced{ @@ -4525,7 +2063,7 @@ }, /turf/simulated/floor/plating, /area/security/training) -"jm" = ( +"dQ" = ( /obj/effect/floor_decal/corner/blue{ icon_state = "corner_white"; dir = 9 @@ -4536,14 +2074,14 @@ }, /turf/simulated/floor/tiled/dark, /area/security/training) -"jn" = ( +"dR" = ( /obj/effect/floor_decal/corner/blue{ icon_state = "corner_white"; dir = 5 }, /turf/simulated/floor/tiled/dark, /area/security/training) -"jo" = ( +"dS" = ( /obj/effect/floor_decal/corner/blue{ icon_state = "corner_white"; dir = 5 @@ -4551,14 +2089,7 @@ /obj/machinery/atmospherics/unary/vent_scrubber/on, /turf/simulated/floor/tiled/dark, /area/security/training) -"jp" = ( -/obj/effect/floor_decal/corner/blue{ - icon_state = "corner_white"; - dir = 5 - }, -/turf/simulated/floor/tiled/dark, -/area/security/training) -"jq" = ( +"dT" = ( /obj/effect/floor_decal/corner/blue{ icon_state = "corner_white"; dir = 6 @@ -4569,20 +2100,7 @@ }, /turf/simulated/floor/tiled/dark, /area/security/training) -"jr" = ( -/obj/machinery/door/firedoor, -/obj/structure/grille, -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced{ - icon_state = "rwindow"; - dir = 8 - }, -/turf/simulated/floor/plating, -/area/security/training) -"js" = ( +"dU" = ( /obj/effect/floor_decal/corner/blue{ icon_state = "corner_white"; dir = 9 @@ -4597,7 +2115,7 @@ }, /turf/simulated/floor/tiled, /area/security/training) -"jt" = ( +"dV" = ( /obj/effect/floor_decal/corner/blue{ icon_state = "corner_white"; dir = 4 @@ -4614,7 +2132,7 @@ }, /turf/simulated/floor/tiled, /area/security/training) -"ju" = ( +"dW" = ( /obj/effect/floor_decal/corner/blue{ icon_state = "corner_white"; dir = 6 @@ -4629,16 +2147,10 @@ }, /turf/simulated/floor/tiled, /area/security/training) -"jv" = ( -/turf/simulated/wall, -/area/security/training) -"jw" = ( +"dX" = ( /turf/simulated/floor/plating, /area/security/training) -"jx" = ( -/turf/simulated/wall, -/area/security/training) -"jy" = ( +"dY" = ( /obj/structure/disposalpipe/segment{ icon_state = "conpipe-c"; dir = 4 @@ -4660,7 +2172,7 @@ }, /turf/simulated/floor/plating, /area/security/investigations) -"jz" = ( +"dZ" = ( /obj/machinery/atmospherics/pipe/zpipe/down/scrubbers{ icon_state = "down-scrubbers"; dir = 8 @@ -4683,10 +2195,7 @@ }, /turf/simulated/open, /area/security/investigations) -"jA" = ( -/turf/simulated/wall, -/area/security/investigations) -"jB" = ( +"ea" = ( /obj/machinery/alarm{ dir = 4; icon_state = "alarm0"; @@ -4707,7 +2216,7 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/tiled, /area/security/investigations) -"jC" = ( +"eb" = ( /obj/effect/floor_decal/corner/blue{ icon_state = "corner_white"; dir = 6 @@ -4718,10 +2227,7 @@ }, /turf/simulated/floor/tiled, /area/security/investigations) -"jD" = ( -/turf/simulated/wall, -/area/security/forensics_office) -"jE" = ( +"ec" = ( /obj/structure/coatrack, /obj/effect/floor_decal/corner/blue{ icon_state = "corner_white"; @@ -4733,7 +2239,7 @@ }, /turf/simulated/floor/tiled, /area/security/forensics_office) -"jF" = ( +"ed" = ( /obj/structure/closet/secure_closet/csi, /obj/effect/floor_decal/corner/blue{ icon_state = "corner_white"; @@ -4744,7 +2250,7 @@ }, /turf/simulated/floor/tiled, /area/security/forensics_office) -"jG" = ( +"ee" = ( /obj/effect/floor_decal/corner/blue{ icon_state = "corner_white"; dir = 10 @@ -4753,7 +2259,7 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/tiled, /area/security/forensics_office) -"jH" = ( +"ef" = ( /obj/machinery/photocopier, /obj/effect/floor_decal/corner/blue{ icon_state = "corner_white"; @@ -4765,7 +2271,7 @@ }, /turf/simulated/floor/tiled, /area/security/forensics_office) -"jI" = ( +"eg" = ( /obj/structure/filingcabinet/chestdrawer, /obj/effect/floor_decal/corner/blue{ icon_state = "corner_white"; @@ -4774,7 +2280,7 @@ /obj/machinery/firealarm/south, /turf/simulated/floor/tiled, /area/security/forensics_office) -"jJ" = ( +"eh" = ( /obj/effect/floor_decal/corner/blue{ icon_state = "corner_white"; dir = 10 @@ -4792,7 +2298,7 @@ /obj/machinery/light, /turf/simulated/floor/tiled, /area/security/forensics_office) -"jK" = ( +"ei" = ( /obj/machinery/disposal, /obj/effect/floor_decal/corner/blue{ icon_state = "corner_white"; @@ -4803,26 +2309,7 @@ }, /turf/simulated/floor/tiled, /area/security/forensics_office) -"jL" = ( -/obj/machinery/door/firedoor, -/obj/structure/grille, -/obj/structure/window/reinforced/polarized{ - dir = 4; - id = "FT Op" - }, -/obj/structure/window/reinforced/polarized{ - dir = 8; - id = "FT Op" - }, -/obj/structure/window/reinforced/polarized{ - id = "FT Op" - }, -/turf/simulated/floor/plating, -/area/security/forensics_office) -"jM" = ( -/turf/simulated/wall, -/area/security/training) -"jN" = ( +"ej" = ( /obj/effect/floor_decal/corner/blue{ icon_state = "corner_white"; dir = 9 @@ -4838,23 +2325,17 @@ }, /turf/simulated/floor/tiled/dark, /area/security/training) -"jO" = ( +"ek" = ( /obj/structure/bed/chair{ dir = 1 }, /turf/simulated/floor/tiled/dark, /area/security/training) -"jP" = ( +"el" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/tiled/dark, /area/security/training) -"jQ" = ( -/obj/structure/bed/chair{ - dir = 1 - }, -/turf/simulated/floor/tiled/dark, -/area/security/training) -"jR" = ( +"em" = ( /obj/effect/floor_decal/corner/blue{ icon_state = "corner_white"; dir = 6 @@ -4869,10 +2350,7 @@ }, /turf/simulated/floor/tiled/dark, /area/security/training) -"jS" = ( -/turf/simulated/wall, -/area/security/training) -"jT" = ( +"en" = ( /obj/effect/floor_decal/corner/blue{ icon_state = "corner_white"; dir = 9 @@ -4892,7 +2370,7 @@ }, /turf/simulated/floor/tiled, /area/security/training) -"jU" = ( +"eo" = ( /obj/machinery/atmospherics/pipe/manifold/hidden/supply{ dir = 8 }, @@ -4909,7 +2387,7 @@ }, /turf/simulated/floor/tiled, /area/security/training) -"jV" = ( +"ep" = ( /obj/effect/floor_decal/corner/blue{ icon_state = "corner_white"; dir = 6 @@ -4927,10 +2405,7 @@ }, /turf/simulated/floor/tiled, /area/security/training) -"jW" = ( -/turf/simulated/wall, -/area/security/training) -"jX" = ( +"eq" = ( /obj/structure/cable/green{ d1 = 2; d2 = 4; @@ -4945,7 +2420,7 @@ }, /turf/simulated/floor/plating, /area/security/training) -"jY" = ( +"er" = ( /obj/machinery/door/airlock/maintenance{ req_access = list(12); req_one_access = null @@ -4963,7 +2438,7 @@ }, /turf/simulated/floor/plating, /area/security/training) -"jZ" = ( +"es" = ( /obj/structure/disposalpipe/segment{ dir = 1; icon_state = "pipe-c" @@ -4982,7 +2457,7 @@ /obj/machinery/atmospherics/pipe/manifold/hidden/supply, /turf/simulated/floor/plating, /area/security/investigations) -"ka" = ( +"et" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, @@ -4999,7 +2474,7 @@ }, /turf/simulated/floor/plating, /area/security/investigations) -"kb" = ( +"eu" = ( /obj/machinery/door/airlock/maintenance{ req_one_access = list(4,68) }, @@ -5019,7 +2494,7 @@ }, /turf/simulated/floor/plating, /area/security/investigations) -"kc" = ( +"ev" = ( /obj/effect/floor_decal/corner/blue{ icon_state = "corner_white"; dir = 9 @@ -5043,7 +2518,7 @@ }, /turf/simulated/floor/tiled, /area/security/investigations) -"kd" = ( +"ew" = ( /obj/machinery/ringer{ department = "Security"; id = "brig_ringer"; @@ -5061,10 +2536,7 @@ }, /turf/simulated/floor/tiled, /area/security/investigations) -"ke" = ( -/turf/simulated/wall, -/area/security/forensics_office) -"kf" = ( +"ex" = ( /obj/structure/grille, /obj/machinery/door/firedoor, /obj/structure/window/reinforced{ @@ -5078,7 +2550,7 @@ /obj/structure/window/reinforced, /turf/simulated/floor/plating, /area/security/forensics_office) -"kg" = ( +"ey" = ( /obj/structure/grille, /obj/machinery/door/firedoor, /obj/structure/window/reinforced{ @@ -5091,7 +2563,7 @@ /obj/structure/window/reinforced, /turf/simulated/floor/plating, /area/security/forensics_office) -"kh" = ( +"ez" = ( /obj/machinery/door/firedoor, /obj/machinery/door/airlock/glass_security{ name = "Forensic Laboratory"; @@ -5101,7 +2573,7 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/tiled/white, /area/security/forensics_office) -"ki" = ( +"eA" = ( /obj/structure/grille, /obj/machinery/door/firedoor, /obj/structure/window/reinforced{ @@ -5118,34 +2590,7 @@ /obj/structure/window/reinforced, /turf/simulated/floor/plating, /area/security/forensics_office) -"kj" = ( -/turf/simulated/wall, -/area/security/forensics_office) -"kk" = ( -/turf/simulated/wall, -/area/security/forensics_office) -"kl" = ( -/turf/simulated/wall, -/area/security/forensics_office) -"km" = ( -/turf/simulated/wall, -/area/security/forensics_office) -"kn" = ( -/obj/machinery/door/firedoor, -/obj/structure/grille, -/obj/structure/window/reinforced{ - icon_state = "rwindow"; - dir = 8 - }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced{ - dir = 1 - }, -/turf/simulated/floor/plating, -/area/security/training) -"ko" = ( +"eB" = ( /obj/effect/floor_decal/corner/blue{ icon_state = "corner_white"; dir = 9 @@ -5160,13 +2605,13 @@ }, /turf/simulated/floor/tiled/dark, /area/security/training) -"kp" = ( +"eC" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, /turf/simulated/floor/tiled/dark, /area/security/training) -"kq" = ( +"eD" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ icon_state = "intact-scrubbers"; dir = 5 @@ -5176,7 +2621,7 @@ }, /turf/simulated/floor/tiled/dark, /area/security/training) -"kr" = ( +"eE" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 }, @@ -5185,7 +2630,7 @@ }, /turf/simulated/floor/tiled/dark, /area/security/training) -"ks" = ( +"eF" = ( /obj/effect/floor_decal/corner/blue{ icon_state = "corner_white"; dir = 6 @@ -5198,7 +2643,7 @@ }, /turf/simulated/floor/tiled/dark, /area/security/training) -"kt" = ( +"eG" = ( /obj/machinery/door/airlock/glass_security{ name = "Theorethical Training"; req_access = list(1) @@ -5211,20 +2656,7 @@ }, /turf/simulated/floor/tiled, /area/security/training) -"ku" = ( -/obj/effect/floor_decal/corner/blue{ - icon_state = "corner_white"; - dir = 9 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/security/training) -"kv" = ( +"eH" = ( /obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ icon_state = "map-scrubbers"; dir = 4 @@ -5239,7 +2671,7 @@ }, /turf/simulated/floor/tiled, /area/security/training) -"kw" = ( +"eI" = ( /obj/effect/floor_decal/corner/blue{ icon_state = "corner_white"; dir = 6 @@ -5251,10 +2683,7 @@ }, /turf/simulated/floor/tiled, /area/security/training) -"kx" = ( -/turf/simulated/wall, -/area/security/training) -"ky" = ( +"eJ" = ( /obj/structure/cable/green{ d1 = 1; d2 = 2; @@ -5267,19 +2696,7 @@ }, /turf/simulated/floor/plating, /area/security/training) -"kz" = ( -/turf/simulated/wall, -/area/security/training) -"kA" = ( -/turf/simulated/wall, -/area/security/investigations) -"kB" = ( -/turf/simulated/wall, -/area/security/investigations) -"kC" = ( -/turf/simulated/wall, -/area/security/investigations) -"kD" = ( +"eK" = ( /obj/effect/floor_decal/corner/blue{ icon_state = "corner_white"; dir = 9 @@ -5289,17 +2706,7 @@ }, /turf/simulated/floor/tiled, /area/security/investigations) -"kE" = ( -/obj/effect/floor_decal/corner/blue{ - icon_state = "corner_white"; - dir = 6 - }, -/turf/simulated/floor/tiled, -/area/security/investigations) -"kF" = ( -/turf/simulated/wall, -/area/security/forensics_office) -"kG" = ( +"eL" = ( /obj/structure/table/glass, /obj/item/weapon/storage/box/swabs{ pixel_x = 5; @@ -5318,10 +2725,10 @@ }, /turf/simulated/floor/tiled/white, /area/security/forensics_office) -"kH" = ( +"eM" = ( /turf/simulated/floor/tiled/white, /area/security/forensics_office) -"kI" = ( +"eN" = ( /obj/effect/floor_decal/corner/blue{ icon_state = "corner_white"; dir = 6 @@ -5330,7 +2737,7 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/tiled/white, /area/security/forensics_office) -"kJ" = ( +"eO" = ( /obj/structure/window/reinforced{ icon_state = "rwindow"; dir = 8 @@ -5339,7 +2746,7 @@ /obj/structure/morgue, /turf/simulated/floor/tiled/white, /area/security/forensics_office) -"kK" = ( +"eP" = ( /obj/effect/floor_decal/corner/beige/diagonal, /obj/machinery/button/windowtint{ id = "FT Op"; @@ -5348,7 +2755,7 @@ }, /turf/simulated/floor/tiled/white, /area/security/forensics_office) -"kL" = ( +"eQ" = ( /obj/effect/floor_decal/corner/beige/diagonal, /obj/structure/table/glass, /obj/item/weapon/autopsy_scanner, @@ -5358,37 +2765,7 @@ }, /turf/simulated/floor/tiled/white, /area/security/forensics_office) -"kM" = ( -/obj/machinery/door/firedoor, -/obj/structure/grille, -/obj/structure/window/reinforced/polarized{ - dir = 1; - id = "FT Op" - }, -/obj/structure/window/reinforced/polarized{ - dir = 4; - id = "FT Op" - }, -/obj/structure/window/reinforced/polarized{ - dir = 8; - id = "FT Op" - }, -/turf/simulated/floor/plating, -/area/security/forensics_office) -"kN" = ( -/obj/machinery/door/firedoor, -/obj/structure/grille, -/obj/structure/window/reinforced{ - icon_state = "rwindow"; - dir = 8 - }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced, -/turf/simulated/floor/plating, -/area/security/training) -"kO" = ( +"eR" = ( /obj/effect/floor_decal/corner/blue{ icon_state = "corner_white"; dir = 9 @@ -5398,19 +2775,19 @@ }, /turf/simulated/floor/tiled/dark, /area/security/training) -"kP" = ( +"eS" = ( /obj/structure/bed/chair{ dir = 1 }, /obj/machinery/firealarm/south, /turf/simulated/floor/tiled/dark, /area/security/training) -"kQ" = ( +"eT" = ( /obj/structure/table/standard, /obj/item/weapon/folder/sec, /turf/simulated/floor/tiled/dark, /area/security/training) -"kR" = ( +"eU" = ( /obj/structure/bed/chair{ dir = 1 }, @@ -5422,7 +2799,7 @@ }, /turf/simulated/floor/tiled/dark, /area/security/training) -"kS" = ( +"eV" = ( /obj/effect/floor_decal/corner/blue{ icon_state = "corner_white"; dir = 6 @@ -5432,7 +2809,7 @@ }, /turf/simulated/floor/tiled/dark, /area/security/training) -"kT" = ( +"eW" = ( /obj/machinery/door/firedoor, /obj/structure/grille, /obj/structure/window/reinforced, @@ -5448,7 +2825,7 @@ }, /turf/simulated/floor/plating, /area/security/training) -"kU" = ( +"eX" = ( /obj/effect/floor_decal/corner/blue{ icon_state = "corner_white"; dir = 9 @@ -5456,7 +2833,7 @@ /obj/machinery/firealarm/south, /turf/simulated/floor/tiled, /area/security/training) -"kV" = ( +"eY" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/structure/cable/green{ @@ -5466,7 +2843,7 @@ }, /turf/simulated/floor/tiled, /area/security/training) -"kW" = ( +"eZ" = ( /obj/effect/floor_decal/corner/blue{ icon_state = "corner_white"; dir = 6 @@ -5476,10 +2853,7 @@ }, /turf/simulated/floor/tiled, /area/security/training) -"kX" = ( -/turf/simulated/wall, -/area/security/training) -"kY" = ( +"fa" = ( /obj/structure/cable/green{ d1 = 1; d2 = 2; @@ -5489,22 +2863,17 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/plating, /area/security/training) -"kZ" = ( -/turf/simulated/wall, -/area/security/training) -"la" = ( +"fb" = ( /turf/simulated/open, /area/security/investigations) -"lb" = ( -/turf/simulated/open, -/area/security/investigations) -"lc" = ( +"fc" = ( +/obj/machinery/light, /turf/simulated/floor/tiled, /area/security/investigations) -"ld" = ( +"fd" = ( /turf/simulated/floor/tiled, /area/security/investigations) -"le" = ( +"fe" = ( /obj/machinery/firealarm/east, /obj/effect/floor_decal/corner/blue{ icon_state = "corner_white"; @@ -5512,10 +2881,7 @@ }, /turf/simulated/floor/tiled, /area/security/investigations) -"lf" = ( -/turf/simulated/wall, -/area/security/forensics_office) -"lg" = ( +"ff" = ( /obj/structure/table/glass, /obj/item/weapon/storage/box/slides{ pixel_x = 5; @@ -5533,13 +2899,13 @@ }, /turf/simulated/floor/tiled/white, /area/security/forensics_office) -"lh" = ( +"fg" = ( /obj/machinery/atmospherics/unary/vent_pump/on{ dir = 4 }, /turf/simulated/floor/tiled/white, /area/security/forensics_office) -"li" = ( +"fh" = ( /obj/effect/floor_decal/corner/blue{ icon_state = "corner_white"; dir = 6 @@ -5551,15 +2917,11 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/tiled/white, /area/security/forensics_office) -"lj" = ( +"fi" = ( /obj/effect/floor_decal/corner/beige/diagonal, /turf/simulated/floor/tiled/white, /area/security/forensics_office) -"lk" = ( -/obj/effect/floor_decal/corner/beige/diagonal, -/turf/simulated/floor/tiled/white, -/area/security/forensics_office) -"ll" = ( +"fj" = ( /obj/effect/floor_decal/corner/beige/diagonal, /obj/machinery/optable, /obj/machinery/light{ @@ -5568,44 +2930,7 @@ }, /turf/simulated/floor/tiled/white, /area/security/forensics_office) -"lm" = ( -/obj/machinery/door/firedoor, -/obj/structure/grille, -/obj/structure/window/reinforced/polarized{ - dir = 4; - id = "FT Op" - }, -/obj/structure/window/reinforced/polarized{ - dir = 8; - id = "FT Op" - }, -/turf/simulated/floor/plating, -/area/security/forensics_office) -"ln" = ( -/turf/simulated/wall, -/area/security/training) -"lo" = ( -/turf/simulated/wall, -/area/security/training) -"lp" = ( -/turf/simulated/wall, -/area/security/training) -"lq" = ( -/turf/simulated/wall, -/area/security/training) -"lr" = ( -/turf/simulated/wall, -/area/security/training) -"ls" = ( -/turf/simulated/wall, -/area/security/training) -"lt" = ( -/turf/simulated/wall, -/area/security/training) -"lu" = ( -/turf/simulated/wall, -/area/security/training) -"lv" = ( +"fk" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ icon_state = "intact-scrubbers"; dir = 5 @@ -5620,7 +2945,7 @@ }, /turf/simulated/floor/tiled, /area/security/training) -"lw" = ( +"fl" = ( /obj/effect/floor_decal/corner/blue{ icon_state = "corner_white"; dir = 6 @@ -5638,7 +2963,7 @@ }, /turf/simulated/floor/tiled, /area/security/training) -"lx" = ( +"fm" = ( /obj/machinery/door/airlock/maintenance{ req_access = list(1); req_one_access = null @@ -5656,7 +2981,7 @@ }, /turf/simulated/floor/plating, /area/security/training) -"ly" = ( +"fn" = ( /obj/structure/cable/green{ d1 = 1; d2 = 8; @@ -5672,10 +2997,7 @@ }, /turf/simulated/floor/plating, /area/security/training) -"lz" = ( -/turf/simulated/wall, -/area/security/training) -"lA" = ( +"fo" = ( /obj/machinery/door/firedoor, /obj/structure/window/reinforced, /obj/structure/window/reinforced{ @@ -5689,7 +3011,7 @@ }, /turf/simulated/floor/plating, /area/security/investigations) -"lB" = ( +"fp" = ( /obj/machinery/door/firedoor, /obj/structure/window/reinforced, /obj/structure/grille, @@ -5702,40 +3024,7 @@ }, /turf/simulated/floor/plating, /area/security/investigations) -"lC" = ( -/turf/simulated/wall, -/area/security/investigations) -"lD" = ( -/obj/machinery/door/firedoor, -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - icon_state = "rwindow"; - dir = 8 - }, -/obj/structure/grille, -/obj/structure/window/reinforced{ - icon_state = "rwindow"; - dir = 1 - }, -/turf/simulated/floor/plating, -/area/security/investigations) -"lE" = ( -/obj/machinery/door/firedoor, -/obj/structure/window/reinforced, -/obj/structure/grille, -/obj/structure/window/reinforced{ - icon_state = "rwindow"; - dir = 1 - }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/security/investigations) -"lF" = ( -/turf/simulated/wall, -/area/security/forensics_office) -"lG" = ( +"fq" = ( /obj/effect/floor_decal/corner/blue{ icon_state = "corner_white"; dir = 9 @@ -5743,10 +3032,7 @@ /obj/machinery/firealarm/west, /turf/simulated/floor/tiled/white, /area/security/forensics_office) -"lH" = ( -/turf/simulated/floor/tiled/white, -/area/security/forensics_office) -"lI" = ( +"fr" = ( /obj/effect/floor_decal/corner/blue{ icon_state = "corner_white"; dir = 6 @@ -5754,7 +3040,7 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/tiled/white, /area/security/forensics_office) -"lJ" = ( +"fs" = ( /obj/structure/window/reinforced{ icon_state = "rwindow"; dir = 8 @@ -5772,51 +3058,24 @@ }, /turf/simulated/floor/tiled/white, /area/security/forensics_office) -"lK" = ( -/obj/effect/floor_decal/corner/beige/diagonal, -/turf/simulated/floor/tiled/white, -/area/security/forensics_office) -"lL" = ( +"ft" = ( /obj/effect/floor_decal/corner/beige/diagonal, /obj/structure/table/glass, /obj/item/device/mass_spectrometer, /turf/simulated/floor/tiled/white, /area/security/forensics_office) -"lM" = ( -/obj/machinery/door/firedoor, -/obj/structure/grille, -/obj/structure/window/reinforced/polarized{ - dir = 4; - id = "FT Op" - }, -/obj/structure/window/reinforced/polarized{ +"fu" = ( +/obj/machinery/light{ dir = 8; - id = "FT Op" + icon_state = "tube1"; + pixel_y = 0 }, -/obj/structure/window/reinforced/polarized{ - id = "FT Op" - }, -/turf/simulated/floor/plating, -/area/security/forensics_office) -"lN" = ( -/turf/simulated/wall, -/area/security/training) -"lO" = ( /turf/simulated/open, /area/security/training) -"lP" = ( +"fv" = ( /turf/simulated/open, /area/security/training) -"lQ" = ( -/turf/simulated/wall, -/area/security/training) -"lR" = ( -/turf/simulated/wall, -/area/security/training) -"lS" = ( -/turf/simulated/wall, -/area/security/training) -"lT" = ( +"fw" = ( /obj/machinery/door/firedoor, /obj/structure/grille, /obj/structure/window/reinforced/polarized{ @@ -5836,7 +3095,7 @@ }, /turf/simulated/floor/plating, /area/security/forensics_office) -"lU" = ( +"fx" = ( /obj/structure/table/glass, /obj/machinery/microscope, /obj/effect/floor_decal/corner/blue{ @@ -5845,11 +3104,11 @@ }, /turf/simulated/floor/tiled/white, /area/security/forensics_office) -"lV" = ( +"fy" = ( /obj/machinery/dnaforensics, /turf/simulated/floor/tiled/white, /area/security/forensics_office) -"lW" = ( +"fz" = ( /obj/structure/closet{ name = "Evidence Closet" }, @@ -5862,76 +3121,7 @@ }, /turf/simulated/floor/tiled/white, /area/security/forensics_office) -"lX" = ( -/turf/simulated/wall, -/area/security/forensics_office) -"lY" = ( -/obj/machinery/door/firedoor, -/obj/structure/grille, -/obj/structure/window/reinforced/polarized{ - dir = 1; - id = "FT Op" - }, -/obj/structure/window/reinforced/polarized{ - dir = 8; - id = "FT Op" - }, -/obj/structure/window/reinforced/polarized{ - id = "FT Op" - }, -/turf/simulated/floor/plating, -/area/security/forensics_office) -"lZ" = ( -/obj/machinery/door/firedoor, -/obj/structure/grille, -/obj/structure/window/reinforced/polarized{ - dir = 1; - id = "FT Op" - }, -/obj/structure/window/reinforced/polarized{ - dir = 4; - id = "FT Op" - }, -/obj/structure/window/reinforced/polarized{ - id = "FT Op" - }, -/turf/simulated/floor/plating, -/area/security/forensics_office) -"ma" = ( -/turf/simulated/wall, -/area/security/forensics_office) -"mb" = ( -/turf/simulated/wall, -/area/security/training) -"mc" = ( -/turf/simulated/open, -/area/security/training) -"md" = ( -/turf/simulated/open, -/area/security/training) -"me" = ( -/turf/simulated/wall, -/area/security/training) -"mf" = ( -/turf/simulated/wall, -/area/security/forensics_office) -"mg" = ( -/obj/machinery/door/firedoor, -/obj/structure/grille, -/obj/structure/window/reinforced/polarized{ - dir = 1; - id = "FT Op" - }, -/obj/structure/window/reinforced/polarized{ - dir = 8; - id = "FT Op" - }, -/obj/structure/window/reinforced/polarized{ - id = "FT Op" - }, -/turf/simulated/floor/plating, -/area/security/forensics_office) -"mh" = ( +"fA" = ( /obj/machinery/door/firedoor, /obj/structure/grille, /obj/structure/window/reinforced/polarized{ @@ -5943,93 +3133,17 @@ }, /turf/simulated/floor/plating, /area/security/forensics_office) -"mi" = ( -/obj/machinery/door/firedoor, -/obj/structure/grille, -/obj/structure/window/reinforced/polarized{ - dir = 1; - id = "FT Op" - }, -/obj/structure/window/reinforced/polarized{ - dir = 4; - id = "FT Op" - }, -/obj/structure/window/reinforced/polarized{ - id = "FT Op" - }, -/turf/simulated/floor/plating, -/area/security/forensics_office) -"mj" = ( -/turf/simulated/wall, -/area/security/forensics_office) -"mk" = ( -/turf/simulated/wall, -/area/security/training) -"ml" = ( -/turf/simulated/wall, -/area/security/training) -"mm" = ( -/turf/simulated/wall, -/area/security/training) -"mn" = ( -/turf/simulated/wall, -/area/security/training) -"mo" = ( +"fB" = ( /turf/simulated/wall/r_wall, /area/bridge/selfdestruct) -"mp" = ( -/turf/simulated/wall/r_wall, -/area/bridge/selfdestruct) -"mq" = ( -/turf/simulated/wall/r_wall, -/area/bridge/selfdestruct) -"mr" = ( -/turf/simulated/wall/r_wall, -/area/bridge/selfdestruct) -"ms" = ( -/turf/simulated/wall/r_wall, -/area/bridge/selfdestruct) -"mt" = ( -/turf/simulated/wall/r_wall, -/area/bridge/selfdestruct) -"mu" = ( -/turf/simulated/wall/r_wall, -/area/bridge/selfdestruct) -"mv" = ( -/turf/simulated/wall/r_wall, -/area/bridge/selfdestruct) -"mw" = ( -/turf/simulated/wall/r_wall, -/area/bridge/selfdestruct) -"mx" = ( -/turf/simulated/wall/r_wall, -/area/bridge/selfdestruct) -"my" = ( -/turf/simulated/wall/r_wall, -/area/bridge/selfdestruct) -"mz" = ( +"fC" = ( /obj/structure/ladder{ icon_state = "ladder01"; pixel_y = 16 }, /turf/simulated/open, /area/bridge/selfdestruct) -"mA" = ( -/turf/simulated/wall/r_wall, -/area/bridge/selfdestruct) -"mB" = ( -/turf/simulated/wall/r_wall, -/area/bridge/selfdestruct) -"mC" = ( -/turf/simulated/wall/r_wall, -/area/bridge/selfdestruct) -"mD" = ( -/turf/simulated/wall/r_wall, -/area/bridge/selfdestruct) -"mE" = ( -/turf/simulated/wall/r_wall, -/area/bridge/selfdestruct) -"mF" = ( +"fD" = ( /obj/item/device/radio/intercom{ dir = 4; name = "Station Intercom (General)"; @@ -6041,27 +3155,20 @@ }, /turf/simulated/floor/tiled/dark, /area/bridge/selfdestruct) -"mG" = ( +"fE" = ( /obj/effect/decal/cleanable/dirt, /turf/simulated/floor/tiled/dark, /area/bridge/selfdestruct) -"mH" = ( +"fF" = ( /obj/effect/decal/cleanable/dirt, +/obj/machinery/alarm{ + dir = 8; + icon_state = "alarm0"; + pixel_x = 24 + }, /turf/simulated/floor/tiled/dark, /area/bridge/selfdestruct) -"mI" = ( -/turf/simulated/wall/r_wall, -/area/bridge/selfdestruct) -"mJ" = ( -/turf/simulated/wall/r_wall, -/area/bridge/selfdestruct) -"mK" = ( -/turf/simulated/wall/r_wall, -/area/bridge/selfdestruct) -"mL" = ( -/turf/simulated/wall/r_wall, -/area/bridge/selfdestruct) -"mM" = ( +"fG" = ( /obj/machinery/button/remote/airlock{ id = "sat1"; name = "SAT Access Bolts"; @@ -6088,16 +3195,7 @@ /obj/machinery/light/small/emergency, /turf/simulated/floor/tiled/dark, /area/bridge/selfdestruct) -"mN" = ( -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/tiled/dark, -/area/bridge/selfdestruct) -"mO" = ( -/obj/machinery/alarm{ - dir = 8; - icon_state = "alarm0"; - pixel_x = 24 - }, +"fH" = ( /obj/machinery/turretid/lethal{ ailock = 1; check_synth = 1; @@ -6109,24 +3207,16 @@ req_access = list(20) }, /obj/effect/decal/cleanable/dirt, +/obj/machinery/camera/motion{ + c_tag = "Command - SAT Access - Ladder"; + dir = 8; + icon_state = "camera"; + network = list("Command"); + tag = "icon-camera (WEST)" + }, /turf/simulated/floor/tiled/dark, /area/bridge/selfdestruct) -"mP" = ( -/turf/simulated/wall/r_wall, -/area/bridge/selfdestruct) -"mQ" = ( -/turf/simulated/wall/r_wall, -/area/bridge/selfdestruct) -"mR" = ( -/turf/simulated/wall/r_wall, -/area/bridge/selfdestruct) -"mS" = ( -/turf/simulated/wall/r_wall, -/area/bridge/selfdestruct) -"mT" = ( -/turf/simulated/wall/r_wall, -/area/bridge/selfdestruct) -"mU" = ( +"fI" = ( /obj/machinery/door/airlock/highsecurity{ icon_state = "door_locked"; id_tag = "sat1"; @@ -6137,41 +3227,64 @@ /obj/effect/decal/cleanable/dirt, /turf/simulated/floor/plating, /area/bridge/selfdestruct) -"mV" = ( +"fJ" = ( /turf/simulated/wall/r_wall, -/area/bridge/selfdestruct) -"mW" = ( -/turf/simulated/wall/r_wall, -/area/bridge/selfdestruct) -"mX" = ( -/turf/simulated/wall/r_wall, -/area/bridge/selfdestruct) -"mY" = ( -/turf/simulated/wall/r_wall, -/area/bridge/selfdestruct) -"mZ" = ( -/turf/simulated/wall/r_wall, -/area/bridge/selfdestruct) -"na" = ( +/area/maintenance/research_port) +"fK" = ( /obj/machinery/light/small/emergency{ dir = 8 }, /obj/effect/decal/cleanable/dirt, /turf/simulated/floor/plating, /area/bridge/selfdestruct) -"nb" = ( -/turf/simulated/wall/r_wall, -/area/bridge/selfdestruct) -"nc" = ( -/turf/simulated/wall/r_wall, -/area/bridge/selfdestruct) -"nd" = ( -/turf/simulated/wall/r_wall, -/area/bridge/selfdestruct) -"ne" = ( -/turf/simulated/wall/r_wall, -/area/bridge/selfdestruct) -"nf" = ( +"fL" = ( +/obj/machinery/atmospherics/pipe/zpipe/down/scrubbers, +/obj/machinery/atmospherics/pipe/zpipe/down/supply, +/obj/structure/cable{ + d2 = 2; + icon_state = "11-2" + }, +/obj/structure/lattice, +/turf/simulated/open, +/area/maintenance/research_port) +"fM" = ( +/obj/structure/ladder{ + icon_state = "ladder01"; + pixel_y = 16 + }, +/turf/simulated/open, +/area/maintenance/research_port) +"fN" = ( +/obj/structure/cable{ + icon_state = "12-0" + }, +/obj/structure/cable{ + d2 = 2; + icon_state = "0-2"; + pixel_y = 0 + }, +/obj/machinery/atmospherics/pipe/zpipe/up/scrubbers, +/obj/machinery/atmospherics/pipe/zpipe/up/supply, +/obj/effect/floor_decal/industrial/warning{ + icon_state = "warning"; + dir = 9 + }, +/turf/simulated/floor/plating{ + roof_type = null + }, +/area/maintenance/research_port) +"fO" = ( +/obj/structure/ladder/up{ + pixel_y = 16 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/turf/simulated/floor/plating{ + roof_type = null + }, +/area/maintenance/research_port) +"fP" = ( /obj/effect/decal/cleanable/dirt, /obj/machinery/door/blast/regular{ dir = 1; @@ -6180,77 +3293,119 @@ }, /turf/simulated/floor/plating, /area/bridge/selfdestruct) -"ng" = ( -/turf/simulated/wall/r_wall, -/area/bridge/selfdestruct) -"nh" = ( -/turf/simulated/wall/r_wall, -/area/bridge/selfdestruct) -"ni" = ( -/turf/simulated/wall/r_wall, -/area/bridge/selfdestruct) -"nj" = ( -/turf/simulated/wall/r_wall, -/area/bridge/selfdestruct) -"nk" = ( -/turf/simulated/wall/r_wall, -/area/bridge/selfdestruct) -"nl" = ( -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/plating, -/area/bridge/selfdestruct) -"nm" = ( -/turf/simulated/wall/r_wall, -/area/bridge/selfdestruct) -"nn" = ( -/turf/simulated/wall/r_wall, -/area/bridge/selfdestruct) -"no" = ( -/turf/simulated/wall/r_wall, -/area/bridge/selfdestruct) -"np" = ( -/turf/simulated/wall/r_wall, -/area/bridge/selfdestruct) -"nq" = ( -/turf/simulated/wall/r_wall, -/area/bridge/selfdestruct) -"nr" = ( -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/plating, -/area/bridge/selfdestruct) -"ns" = ( -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/plating, -/area/bridge/selfdestruct) -"nt" = ( -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/plating, -/area/bridge/selfdestruct) -"nu" = ( -/turf/simulated/wall/r_wall, -/area/bridge/selfdestruct) -"nv" = ( -/turf/simulated/wall/r_wall, -/area/bridge/selfdestruct) -"nw" = ( -/turf/simulated/wall/r_wall, -/area/bridge/selfdestruct) -"nx" = ( -/turf/simulated/wall/r_wall, -/area/bridge/selfdestruct) -"ny" = ( +"fQ" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, /obj/machinery/light/small/emergency{ dir = 8 }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/turf/simulated/floor/plating, +/area/maintenance/research_port) +"fR" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/meter, +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/turf/simulated/floor/plating, +/area/maintenance/research_port) +"fS" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/random/junk, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + icon_state = "intact-scrubbers"; + dir = 9 + }, +/obj/effect/floor_decal/industrial/warning/corner{ + icon_state = "warningcorner"; + dir = 1 + }, +/turf/simulated/floor/plating, +/area/maintenance/research_port) +"fT" = ( +/obj/machinery/light/small/emergency{ + icon_state = "bulb1"; + dir = 4 + }, +/turf/simulated/floor/plating, +/area/maintenance/research_port) +"fU" = ( /obj/effect/decal/cleanable/dirt, /turf/simulated/floor/plating, /area/bridge/selfdestruct) -"nz" = ( +"fV" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 + }, +/turf/simulated/floor/plating, +/area/maintenance/research_port) +"fW" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/meter, +/turf/simulated/floor/plating, +/area/maintenance/research_port) +"fX" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + icon_state = "intact-supply"; + dir = 9 + }, +/obj/machinery/power/apc{ + dir = 2; + name = "south bump"; + pixel_y = -24 + }, +/obj/structure/cable{ + d2 = 8; + icon_state = "0-8" + }, +/turf/simulated/floor/plating{ + roof_type = null + }, +/area/maintenance/research_port) +"fY" = ( +/obj/random/junk, +/turf/simulated/floor/plating, +/area/maintenance/research_port) +"fZ" = ( /obj/machinery/porta_turret/stationary, /obj/effect/decal/cleanable/dirt, /turf/simulated/floor/plating, /area/bridge/selfdestruct) -"nA" = ( +"ga" = ( /obj/machinery/alarm{ dir = 8; icon_state = "alarm0"; @@ -6266,114 +3421,14 @@ }, /turf/simulated/floor/plating, /area/bridge/selfdestruct) -"nB" = ( -/turf/simulated/wall/r_wall, -/area/bridge/selfdestruct) -"nC" = ( -/turf/simulated/wall/r_wall, -/area/bridge/selfdestruct) -"nD" = ( -/turf/simulated/wall/r_wall, -/area/bridge/selfdestruct) -"nE" = ( -/turf/simulated/wall/r_wall, -/area/bridge/selfdestruct) -"nF" = ( +"gb" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/sign/securearea{ pixel_y = -32 }, /turf/simulated/floor/plating, /area/bridge/selfdestruct) -"nG" = ( -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/plating, -/area/bridge/selfdestruct) -"nH" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/sign/securearea{ - pixel_y = -32 - }, -/turf/simulated/floor/plating, -/area/bridge/selfdestruct) -"nI" = ( -/turf/simulated/wall/r_wall, -/area/bridge/selfdestruct) -"nJ" = ( -/turf/simulated/wall/r_wall, -/area/bridge/selfdestruct) -"nK" = ( -/turf/simulated/wall/r_wall, -/area/bridge/selfdestruct) -"nL" = ( -/turf/simulated/wall/r_wall, -/area/bridge/selfdestruct) -"nM" = ( -/turf/simulated/wall/r_wall, -/area/bridge/selfdestruct) -"nN" = ( -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/plating, -/area/bridge/selfdestruct) -"nO" = ( -/turf/simulated/wall/r_wall, -/area/bridge/selfdestruct) -"nP" = ( -/turf/simulated/wall/r_wall, -/area/bridge/selfdestruct) -"nQ" = ( -/turf/simulated/wall/r_wall, -/area/bridge/selfdestruct) -"nR" = ( -/turf/simulated/wall/r_wall, -/area/bridge/selfdestruct) -"nS" = ( -/turf/simulated/wall/r_wall, -/area/bridge/selfdestruct) -"nT" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/door/blast/regular{ - dir = 1; - id = "sat_blast"; - name = "Blast Door" - }, -/turf/simulated/floor/plating, -/area/bridge/selfdestruct) -"nU" = ( -/turf/simulated/wall/r_wall, -/area/bridge/selfdestruct) -"nV" = ( -/turf/simulated/wall/r_wall, -/area/bridge/selfdestruct) -"nW" = ( -/turf/simulated/wall/r_wall, -/area/bridge/selfdestruct) -"nX" = ( -/turf/simulated/wall/r_wall, -/area/bridge/selfdestruct) -"nY" = ( -/obj/machinery/light/small/emergency{ - dir = 8 - }, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/plating, -/area/bridge/selfdestruct) -"nZ" = ( -/turf/simulated/wall/r_wall, -/area/bridge/selfdestruct) -"oa" = ( -/turf/simulated/wall/r_wall, -/area/bridge/selfdestruct) -"ob" = ( -/turf/simulated/wall/r_wall, -/area/bridge/selfdestruct) -"oc" = ( -/turf/simulated/wall/r_wall, -/area/bridge/selfdestruct) -"od" = ( -/turf/simulated/wall/r_wall, -/area/bridge/selfdestruct) -"oe" = ( +"gc" = ( /obj/machinery/button/remote/airlock{ id = "sat2"; name = "SAT Chamber Bolts"; @@ -6385,28 +3440,45 @@ /obj/effect/decal/cleanable/dirt, /turf/simulated/floor/plating, /area/bridge/selfdestruct) -"of" = ( +"gd" = ( /turf/simulated/wall/r_wall, -/area/bridge/selfdestruct) -"og" = ( -/turf/simulated/wall/r_wall, -/area/bridge/selfdestruct) -"oh" = ( -/turf/simulated/wall/r_wall, -/area/bridge/selfdestruct) -"oi" = ( -/turf/simulated/wall/r_wall, -/area/bridge/selfdestruct) -"oj" = ( -/turf/simulated/wall/r_wall, -/area/bridge/selfdestruct) -"ok" = ( -/turf/simulated/wall/r_wall, -/area/bridge/selfdestruct) -"ol" = ( -/turf/simulated/wall/r_wall, -/area/bridge/selfdestruct) -"om" = ( +/area/maintenance/arrivals) +"ge" = ( +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/window/reinforced{ + icon_state = "rwindow"; + dir = 8 + }, +/obj/structure/window/reinforced, +/obj/structure/grille, +/obj/machinery/door/firedoor, +/turf/simulated/floor/plating, +/area/maintenance/arrivals) +"gf" = ( +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/window/reinforced, +/obj/structure/grille, +/obj/machinery/door/firedoor, +/turf/simulated/floor/plating, +/area/maintenance/arrivals) +"gg" = ( +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/window/reinforced{ + icon_state = "rwindow"; + dir = 4 + }, +/obj/structure/window/reinforced, +/obj/structure/grille, +/obj/machinery/door/firedoor, +/turf/simulated/floor/plating, +/area/maintenance/arrivals) +"gh" = ( /obj/machinery/door/airlock/highsecurity{ icon_state = "door_locked"; id_tag = "sat2"; @@ -6417,46 +3489,30 @@ /obj/effect/decal/cleanable/dirt, /turf/simulated/floor/tiled/dark, /area/bridge/selfdestruct) -"on" = ( -/turf/simulated/wall/r_wall, -/area/bridge/selfdestruct) -"oo" = ( -/turf/simulated/wall/r_wall, -/area/bridge/selfdestruct) -"op" = ( -/turf/simulated/wall/r_wall, -/area/bridge/selfdestruct) -"oq" = ( -/turf/simulated/wall/r_wall, -/area/bridge/selfdestruct) -"or" = ( +"gi" = ( +/obj/effect/floor_decal/corner/paleblue/full{ + icon_state = "corner_white_full"; + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/maintenance/arrivals) +"gj" = ( +/turf/simulated/floor/tiled, +/area/maintenance/arrivals) +"gk" = ( +/obj/effect/floor_decal/corner/paleblue/full{ + icon_state = "corner_white_full"; + dir = 1 + }, +/obj/structure/sign/drop{ + pixel_x = 32 + }, +/turf/simulated/floor/tiled, +/area/maintenance/arrivals) +"gl" = ( /turf/simulated/wall, /area/maintenance/arrivals) -"os" = ( -/turf/simulated/wall, -/area/maintenance/arrivals) -"ot" = ( -/turf/simulated/wall, -/area/maintenance/arrivals) -"ou" = ( -/turf/simulated/wall, -/area/maintenance/arrivals) -"ov" = ( -/turf/simulated/wall, -/area/maintenance/arrivals) -"ow" = ( -/turf/simulated/wall/r_wall, -/area/bridge/selfdestruct) -"ox" = ( -/turf/simulated/wall/r_wall, -/area/bridge/selfdestruct) -"oy" = ( -/turf/simulated/wall/r_wall, -/area/bridge/selfdestruct) -"oz" = ( -/turf/simulated/wall/r_wall, -/area/bridge/selfdestruct) -"oA" = ( +"gm" = ( /obj/machinery/firealarm/north, /obj/item/device/radio/intercom{ dir = 4; @@ -6466,11 +3522,7 @@ /obj/effect/decal/cleanable/dirt, /turf/simulated/floor/tiled/dark, /area/bridge/selfdestruct) -"oB" = ( -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/tiled/dark, -/area/bridge/selfdestruct) -"oC" = ( +"gn" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/cobweb2, /obj/effect/decal/cleanable/cobweb2{ @@ -6479,58 +3531,29 @@ }, /turf/simulated/floor/tiled/dark, /area/bridge/selfdestruct) -"oD" = ( -/turf/simulated/wall/r_wall, -/area/bridge/selfdestruct) -"oE" = ( -/turf/simulated/wall/r_wall, -/area/bridge/selfdestruct) -"oF" = ( -/turf/simulated/wall/r_wall, -/area/bridge/selfdestruct) -"oG" = ( -/turf/simulated/wall/r_wall, -/area/bridge/selfdestruct) -"oH" = ( -/turf/simulated/wall, -/area/maintenance/arrivals) -"oI" = ( -/turf/simulated/wall, -/area/maintenance/arrivals) -"oJ" = ( -/turf/simulated/wall/r_wall, -/area/bridge/selfdestruct) -"oK" = ( -/turf/simulated/wall/r_wall, -/area/bridge/selfdestruct) -"oL" = ( +"go" = ( +/turf/simulated/open, +/area/turbolift/main_mid) +"gp" = ( /obj/structure/window/reinforced{ dir = 4 }, /turf/simulated/floor/plating, /area/bridge/selfdestruct) -"oM" = ( +"gq" = ( /obj/effect/floor_decal/industrial/warning{ dir = 8 }, /obj/effect/decal/cleanable/dirt, /turf/simulated/floor/tiled/dark, /area/bridge/selfdestruct) -"oN" = ( -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/tiled/dark, -/area/bridge/selfdestruct) -"oO" = ( +"gr" = ( /obj/machinery/hologram/holopad, /obj/effect/floor_decal/industrial/outline/yellow, /obj/effect/decal/cleanable/dirt, /turf/simulated/floor/tiled/dark, /area/bridge/selfdestruct) -"oP" = ( -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/tiled/dark, -/area/bridge/selfdestruct) -"oQ" = ( +"gs" = ( /obj/effect/floor_decal/industrial/warning{ icon_state = "warning"; dir = 4 @@ -6538,32 +3561,33 @@ /obj/effect/decal/cleanable/dirt, /turf/simulated/floor/tiled/dark, /area/bridge/selfdestruct) -"oR" = ( +"gt" = ( /obj/structure/window/reinforced{ icon_state = "rwindow"; dir = 8 }, /turf/simulated/floor/plating, /area/bridge/selfdestruct) -"oS" = ( -/turf/simulated/wall/r_wall, -/area/bridge/selfdestruct) -"oT" = ( -/turf/simulated/wall/r_wall, -/area/bridge/selfdestruct) -"oU" = ( -/turf/simulated/wall, +"gu" = ( +/obj/effect/floor_decal/corner/paleblue{ + icon_state = "corner_white"; + dir = 9 + }, +/obj/machinery/light{ + dir = 8; + icon_state = "tube1"; + pixel_x = 0 + }, +/turf/simulated/floor/tiled, /area/maintenance/arrivals) -"oV" = ( -/turf/simulated/wall, +"gv" = ( +/obj/effect/floor_decal/corner/paleblue{ + icon_state = "corner_white"; + dir = 6 + }, +/turf/simulated/floor/tiled, /area/maintenance/arrivals) -"oW" = ( -/turf/simulated/wall/r_wall, -/area/bridge/selfdestruct) -"oX" = ( -/turf/simulated/wall/r_wall, -/area/bridge/selfdestruct) -"oY" = ( +"gw" = ( /obj/structure/window/reinforced{ dir = 4 }, @@ -6575,34 +3599,7 @@ }, /turf/simulated/floor/plating, /area/bridge/selfdestruct) -"oZ" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 8 - }, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/tiled/dark, -/area/bridge/selfdestruct) -"pa" = ( -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/tiled/dark, -/area/bridge/selfdestruct) -"pb" = ( -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/tiled/dark, -/area/bridge/selfdestruct) -"pc" = ( -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/tiled/dark, -/area/bridge/selfdestruct) -"pd" = ( -/obj/effect/floor_decal/industrial/warning{ - icon_state = "warning"; - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/tiled/dark, -/area/bridge/selfdestruct) -"pe" = ( +"gx" = ( /obj/structure/window/reinforced{ icon_state = "rwindow"; dir = 8 @@ -6615,19 +3612,12 @@ }, /turf/simulated/floor/plating, /area/bridge/selfdestruct) -"pf" = ( -/turf/simulated/wall/r_wall, -/area/bridge/selfdestruct) -"pg" = ( -/turf/simulated/wall/r_wall, -/area/bridge/selfdestruct) -"ph" = ( -/turf/simulated/wall, -/area/maintenance/arrivals) -"pi" = ( -/turf/simulated/wall/r_wall, -/area/bridge/selfdestruct) -"pj" = ( +"gy" = ( +/turf/simulated/floor/airless{ + icon_state = "asteroidplating" + }, +/area/mine/unexplored) +"gz" = ( /obj/structure/cable/green{ d1 = 2; d2 = 4; @@ -6635,7 +3625,7 @@ }, /turf/simulated/wall/r_wall, /area/bridge/selfdestruct) -"pk" = ( +"gA" = ( /obj/structure/window/reinforced{ dir = 4 }, @@ -6646,7 +3636,7 @@ }, /turf/simulated/floor/plating, /area/bridge/selfdestruct) -"pl" = ( +"gB" = ( /obj/machinery/power/apc/high{ name = "south bump"; pixel_y = -24 @@ -6661,21 +3651,13 @@ /obj/effect/decal/cleanable/dirt, /turf/simulated/floor/tiled/dark, /area/bridge/selfdestruct) -"pm" = ( -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/tiled/dark, -/area/bridge/selfdestruct) -"pn" = ( +"gC" = ( /obj/machinery/nuclearbomb/station, /obj/effect/decal/warning_stripes, /obj/effect/decal/cleanable/dirt, /turf/simulated/floor/reinforced, /area/bridge/selfdestruct) -"po" = ( -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/tiled/dark, -/area/bridge/selfdestruct) -"pp" = ( +"gD" = ( /obj/machinery/alarm{ dir = 1; pixel_y = -22 @@ -6687,29 +3669,14 @@ /obj/effect/decal/cleanable/dirt, /turf/simulated/floor/tiled/dark, /area/bridge/selfdestruct) -"pq" = ( -/obj/structure/window/reinforced{ - icon_state = "rwindow"; - dir = 8 +"gE" = ( +/obj/effect/floor_decal/corner/paleblue{ + icon_state = "corner_white"; + dir = 9 }, -/turf/simulated/floor/plating, -/area/bridge/selfdestruct) -"pr" = ( -/turf/simulated/wall/r_wall, -/area/bridge/selfdestruct) -"ps" = ( -/turf/simulated/wall/r_wall, -/area/bridge/selfdestruct) -"pt" = ( -/turf/simulated/wall, +/turf/simulated/floor/tiled, /area/maintenance/arrivals) -"pu" = ( -/turf/simulated/wall, -/area/maintenance/arrivals) -"pv" = ( -/turf/simulated/wall/r_wall, -/area/bridge/selfdestruct) -"pw" = ( +"gF" = ( /obj/structure/cable/green{ d1 = 1; d2 = 2; @@ -6717,18 +3684,12 @@ }, /turf/simulated/wall/r_wall, /area/bridge/selfdestruct) -"px" = ( -/turf/simulated/wall/r_wall, -/area/bridge/selfdestruct) -"py" = ( -/turf/simulated/wall/r_wall, -/area/bridge/selfdestruct) -"pz" = ( +"gG" = ( /obj/structure/banner, /obj/effect/decal/cleanable/dirt, /turf/simulated/floor/tiled/dark, /area/bridge/selfdestruct) -"pA" = ( +"gH" = ( /obj/effect/decal/cleanable/dirt, /obj/machinery/camera/motion{ c_tag = "SAT Chamber - Motion"; @@ -6739,74 +3700,36 @@ }, /turf/simulated/floor/tiled/dark, /area/bridge/selfdestruct) -"pB" = ( -/obj/structure/banner, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/tiled/dark, -/area/bridge/selfdestruct) -"pC" = ( -/turf/simulated/wall/r_wall, -/area/bridge/selfdestruct) -"pD" = ( -/turf/simulated/wall/r_wall, -/area/bridge/selfdestruct) -"pE" = ( -/turf/simulated/wall/r_wall, -/area/bridge/selfdestruct) -"pF" = ( -/turf/simulated/wall/r_wall, -/area/bridge/selfdestruct) -"pG" = ( -/turf/simulated/wall, -/area/maintenance/arrivals) -"pH" = ( -/turf/simulated/wall, -/area/maintenance/arrivals) -"pI" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" +"gI" = ( +/obj/item/tape/engineering{ + icon_state = "engineering_door"; + layer = 4 }, -/turf/simulated/wall/r_wall, -/area/bridge/selfdestruct) -"pJ" = ( -/turf/simulated/wall/r_wall, -/area/bridge/selfdestruct) -"pK" = ( -/turf/simulated/wall/r_wall, -/area/bridge/selfdestruct) -"pL" = ( -/turf/simulated/wall/r_wall, -/area/bridge/selfdestruct) -"pM" = ( -/turf/simulated/wall/r_wall, -/area/bridge/selfdestruct) -"pN" = ( -/turf/simulated/wall/r_wall, -/area/bridge/selfdestruct) -"pO" = ( -/turf/simulated/wall/r_wall, -/area/bridge/selfdestruct) -"pP" = ( -/turf/simulated/wall/r_wall, -/area/bridge/selfdestruct) -"pQ" = ( -/turf/simulated/wall/r_wall, -/area/bridge/selfdestruct) -"pR" = ( -/turf/simulated/wall, +/obj/machinery/door/airlock/maintenance_hatch{ + icon_state = "door_locked"; + locked = 1; + name = "IT Department" + }, +/turf/simulated/floor/tiled, /area/maintenance/arrivals) -"pS" = ( -/turf/simulated/wall, +"gJ" = ( +/obj/effect/floor_decal/corner/pink{ + icon_state = "corner_white"; + dir = 9 + }, +/turf/simulated/floor/tiled, /area/maintenance/arrivals) -"pT" = ( -/turf/simulated/wall, +"gK" = ( +/obj/effect/floor_decal/corner/paleblue{ + icon_state = "corner_white"; + dir = 6 + }, +/obj/structure/sign/drop{ + pixel_x = 32 + }, +/turf/simulated/floor/tiled, /area/maintenance/arrivals) -"pU" = ( -/turf/simulated/wall, -/area/maintenance/arrivals) -"pV" = ( +"gL" = ( /obj/structure/cable/green{ d1 = 1; d2 = 2; @@ -6824,98 +3747,41 @@ icon_state = "asteroidfloor" }, /area/mine/unexplored) -"pW" = ( +"gM" = ( /turf/simulated/wall/r_wall, -/area/bridge/selfdestruct) -"pX" = ( -/turf/simulated/wall/r_wall, -/area/bridge/selfdestruct) -"pY" = ( -/turf/simulated/wall/r_wall, -/area/bridge/selfdestruct) -"pZ" = ( -/turf/simulated/wall/r_wall, -/area/bridge/selfdestruct) -"qa" = ( -/turf/simulated/wall/r_wall, -/area/bridge/selfdestruct) -"qb" = ( -/turf/simulated/wall, +/area/maintenance/maintcentral) +"gN" = ( +/turf/simulated/open, +/area/turbolift/main_mid_aux) +"gO" = ( +/obj/effect/floor_decal/corner/paleblue{ + icon_state = "corner_white"; + dir = 9 + }, +/obj/machinery/alarm{ + dir = 4; + icon_state = "alarm0"; + pixel_x = -22; + pixel_y = 0 + }, +/turf/simulated/floor/tiled, /area/maintenance/arrivals) -"qc" = ( -/turf/simulated/wall, -/area/maintenance/arrivals) -"qd" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/effect/floor_decal/industrial/warning/dust{ - icon_state = "warning_dust"; - dir = 8 - }, -/obj/effect/floor_decal/industrial/warning/dust{ - icon_state = "warning_dust"; - dir = 4 - }, -/turf/simulated/floor/tiled/airless{ - icon_state = "asteroidfloor" - }, -/area/mine/unexplored) -"qe" = ( -/turf/simulated/wall, -/area/maintenance/arrivals) -"qf" = ( -/turf/simulated/wall, -/area/maintenance/arrivals) -"qg" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/effect/floor_decal/industrial/warning/dust{ - icon_state = "warning_dust"; - dir = 8 - }, -/obj/effect/floor_decal/industrial/warning/dust{ - icon_state = "warning_dust"; - dir = 4 - }, -/turf/simulated/floor/tiled/airless{ - icon_state = "asteroidfloor" - }, -/area/mine/unexplored) -"qh" = ( +"gP" = ( /obj/structure/ladder{ icon_state = "ladder01"; pixel_y = 16 }, /turf/simulated/open, /area/maintenance/maintcentral) -"qi" = ( -/turf/simulated/wall, +"gQ" = ( +/obj/machinery/light{ + dir = 8; + icon_state = "tube1"; + pixel_x = 0 + }, +/turf/simulated/floor/tiled, /area/maintenance/arrivals) -"qj" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/effect/floor_decal/industrial/warning/dust{ - icon_state = "warning_dust"; - dir = 8 - }, -/obj/effect/floor_decal/industrial/warning/dust{ - icon_state = "warning_dust"; - dir = 4 - }, -/turf/simulated/floor/tiled/airless{ - icon_state = "asteroidfloor" - }, -/area/mine/unexplored) -"qk" = ( +"gR" = ( /obj/effect/floor_decal/industrial/warning{ icon_state = "warning"; dir = 8 @@ -6925,116 +3791,27 @@ }, /turf/simulated/floor/plating, /area/maintenance/maintcentral) -"ql" = ( -/turf/simulated/wall, -/area/maintenance/arrivals) -"qm" = ( -/turf/simulated/wall, -/area/maintenance/arrivals) -"qn" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/effect/floor_decal/industrial/warning/dust{ - icon_state = "warning_dust"; - dir = 8 - }, -/obj/effect/floor_decal/industrial/warning/dust{ - icon_state = "warning_dust"; - dir = 4 - }, -/turf/simulated/floor/tiled/airless{ - icon_state = "asteroidfloor" - }, -/area/mine/unexplored) -"qo" = ( -/obj/effect/floor_decal/industrial/warning{ - icon_state = "warning"; - dir = 8 - }, -/obj/effect/floor_decal/industrial/warning{ - dir = 4 - }, +"gS" = ( /turf/simulated/floor/plating, /area/maintenance/maintcentral) -"qp" = ( -/turf/simulated/wall, +"gT" = ( +/obj/effect/floor_decal/corner/paleblue/full, +/turf/simulated/floor/tiled, /area/maintenance/arrivals) -"qq" = ( -/turf/simulated/wall, -/area/maintenance/arrivals) -"qr" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/effect/floor_decal/industrial/warning/dust{ - icon_state = "warning_dust"; - dir = 8 - }, -/obj/effect/floor_decal/industrial/warning/dust{ - icon_state = "warning_dust"; +"gU" = ( +/obj/effect/floor_decal/corner/paleblue/full{ + icon_state = "corner_white_full"; dir = 4 }, -/turf/simulated/floor/tiled/airless{ - icon_state = "asteroidfloor" - }, -/area/mine/unexplored) -"qs" = ( -/turf/simulated/floor/plating, -/area/maintenance/maintcentral) -"qt" = ( -/turf/simulated/floor/plating, -/area/maintenance/maintcentral) -"qu" = ( -/turf/simulated/floor/plating, -/area/maintenance/maintcentral) -"qv" = ( -/turf/simulated/wall, +/turf/simulated/floor/tiled, /area/maintenance/arrivals) -"qw" = ( -/turf/simulated/wall, -/area/maintenance/arrivals) -"qx" = ( -/turf/simulated/wall, -/area/maintenance/arrivals) -"qy" = ( -/turf/simulated/wall, -/area/maintenance/arrivals) -"qz" = ( -/turf/simulated/wall, -/area/maintenance/arrivals) -"qA" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/effect/floor_decal/industrial/warning/dust{ - icon_state = "warning_dust"; - dir = 8 - }, -/obj/effect/floor_decal/industrial/warning/dust{ - icon_state = "warning_dust"; - dir = 4 - }, -/turf/simulated/floor/tiled/airless{ - icon_state = "asteroidfloor" - }, -/area/mine/unexplored) -"qB" = ( +"gV" = ( /obj/structure/table/rack, /obj/item/clothing/gloves/yellow, /obj/item/weapon/wirecutters, /turf/simulated/floor/plating, /area/maintenance/maintcentral) -"qC" = ( -/turf/simulated/floor/plating, -/area/maintenance/maintcentral) -"qD" = ( +"gW" = ( /obj/effect/floor_decal/industrial/warning{ dir = 4 }, @@ -7044,47 +3821,71 @@ }, /turf/simulated/floor/plating, /area/maintenance/maintcentral) -"qE" = ( -/turf/simulated/floor/plating, -/area/maintenance/maintcentral) -"qF" = ( +"gX" = ( /obj/structure/table/rack, /obj/item/weapon/storage/toolbox/emergency, /turf/simulated/floor/plating, /area/maintenance/maintcentral) -"qG" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/effect/floor_decal/industrial/warning/dust{ - icon_state = "warning_dust"; +"gY" = ( +/obj/effect/floor_decal/corner/yellow/full{ + icon_state = "corner_white_full"; dir = 8 }, -/obj/effect/floor_decal/industrial/warning/dust{ - icon_state = "warning_dust"; +/turf/simulated/floor/tiled, +/area/maintenance/arrivals) +"gZ" = ( +/obj/effect/floor_decal/corner/yellow{ + icon_state = "corner_white"; + dir = 5 + }, +/turf/simulated/floor/tiled, +/area/maintenance/arrivals) +"ha" = ( +/obj/machinery/light{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/maintenance/arrivals) +"hb" = ( +/obj/effect/floor_decal/corner/yellow/full{ + icon_state = "corner_white_full"; + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/maintenance/arrivals) +"hc" = ( +/obj/structure/grille, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/window/reinforced{ + icon_state = "rwindow"; + dir = 8 + }, +/obj/structure/window/reinforced{ + icon_state = "rwindow"; dir = 4 }, -/turf/simulated/floor/tiled/airless{ - icon_state = "asteroidfloor" +/obj/machinery/door/firedoor, +/turf/simulated/floor/plating, +/area/maintenance/arrivals) +"hd" = ( +/obj/machinery/access_button{ + command = "cycle_exterior"; + frequency = 1379; + master_tag = "fuckyou2"; + name = "exterior access button"; + pixel_x = -32; + pixel_y = -26 }, +/turf/simulated/floor/asteroid/ash/rocky, /area/mine/unexplored) -"qH" = ( +"he" = ( /obj/structure/table/steel, /obj/item/device/radio, /turf/simulated/floor/plating, /area/maintenance/maintcentral) -"qI" = ( -/turf/simulated/floor/plating, -/area/maintenance/maintcentral) -"qJ" = ( -/turf/simulated/floor/plating, -/area/maintenance/maintcentral) -"qK" = ( -/turf/simulated/floor/plating, -/area/maintenance/maintcentral) -"qL" = ( +"hf" = ( /obj/machinery/camera/motion{ c_tag = "Bunker - Emergency Exit Motion"; dir = 8; @@ -7094,30 +3895,64 @@ }, /turf/simulated/floor/plating, /area/maintenance/maintcentral) -"qM" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/effect/floor_decal/industrial/warning/dust{ - icon_state = "warning_dust"; +"hg" = ( +/obj/structure/grille, +/obj/structure/window/reinforced{ + icon_state = "rwindow"; dir = 8 }, -/obj/effect/floor_decal/industrial/warning/dust{ - icon_state = "warning_dust"; +/obj/structure/window/reinforced{ + icon_state = "rwindow"; dir = 4 }, -/turf/simulated/floor/tiled/airless{ - icon_state = "asteroidfloor" +/obj/machinery/door/firedoor, +/turf/simulated/floor/plating, +/area/maintenance/arrivals) +"hh" = ( +/obj/structure/grille, +/obj/structure/window/reinforced{ + dir = 4 }, -/area/mine/unexplored) -"qN" = ( +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/machinery/door/firedoor{ + dir = 2 + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/maintenance/maintcentral) +"hi" = ( +/obj/machinery/door/airlock/external{ + frequency = 1379; + icon_state = "door_locked"; + id_tag = "fuckyou2_outer"; + locked = 1 + }, +/turf/simulated/floor/plating, +/area/maintenance/maintcentral) +"hj" = ( +/obj/structure/grille, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/machinery/door/firedoor, +/turf/simulated/floor/plating, +/area/maintenance/maintcentral) +"hk" = ( /obj/structure/table/steel, /obj/item/device/flashlight/heavy, /turf/simulated/floor/plating, /area/maintenance/maintcentral) -"qO" = ( +"hl" = ( /obj/machinery/button/remote/airlock{ id = "bunker5"; name = "Emergency Exit Outer Bolts"; @@ -7136,17 +3971,7 @@ }, /turf/simulated/floor/plating, /area/maintenance/maintcentral) -"qP" = ( -/obj/effect/floor_decal/industrial/warning{ - icon_state = "warning"; - dir = 8 - }, -/obj/effect/floor_decal/industrial/warning{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/maintenance/maintcentral) -"qQ" = ( +"hm" = ( /obj/structure/sign/securearea{ name = "\improper EMERGENCY EXIT"; pixel_y = -32 @@ -7154,7 +3979,7 @@ /obj/machinery/light/small/emergency, /turf/simulated/floor/plating, /area/maintenance/maintcentral) -"qR" = ( +"hn" = ( /obj/machinery/button/remote/blast_door{ id = "escape_blast"; name = "Hatch Blast Doors"; @@ -7164,25 +3989,74 @@ }, /turf/simulated/floor/plating, /area/maintenance/maintcentral) -"qS" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" +"ho" = ( +/obj/effect/floor_decal/corner/yellow/full, +/turf/simulated/floor/tiled, +/area/maintenance/arrivals) +"hp" = ( +/obj/effect/floor_decal/corner/yellow{ + icon_state = "corner_white"; + dir = 10 }, -/obj/effect/floor_decal/industrial/warning/dust{ - icon_state = "warning_dust"; - dir = 8 - }, -/obj/effect/floor_decal/industrial/warning/dust{ - icon_state = "warning_dust"; +/turf/simulated/floor/tiled, +/area/maintenance/arrivals) +"hq" = ( +/obj/effect/floor_decal/corner/yellow/full{ + icon_state = "corner_white_full"; dir = 4 }, -/turf/simulated/floor/tiled/airless{ - icon_state = "asteroidfloor" +/turf/simulated/floor/tiled, +/area/maintenance/arrivals) +"hr" = ( +/obj/structure/grille, +/obj/structure/window/reinforced{ + icon_state = "rwindow"; + dir = 8 }, -/area/mine/unexplored) -"qT" = ( +/obj/structure/window/reinforced{ + icon_state = "rwindow"; + dir = 4 + }, +/obj/structure/window/reinforced, +/obj/machinery/door/firedoor, +/turf/simulated/floor/plating, +/area/maintenance/arrivals) +"hs" = ( +/obj/structure/grille, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/machinery/door/firedoor, +/turf/simulated/floor/plating, +/area/maintenance/maintcentral) +"ht" = ( +/obj/effect/decal/warning_stripes, +/obj/machinery/light/small/emergency{ + dir = 8 + }, +/obj/machinery/embedded_controller/radio/airlock/airlock_controller{ + id_tag = "fuckyou2"; + pixel_x = -32; + tag_airpump = "fuckyou2_pump"; + tag_chamber_sensor = "fuckyou2_sensor"; + tag_exterior_door = "fuckyou2_outer"; + tag_interior_door = "fuckyou2_inner" + }, +/obj/machinery/airlock_sensor{ + id_tag = "fuckyou2_sensor"; + pixel_x = 32 + }, +/obj/machinery/atmospherics/unary/vent_pump/high_volume{ + dir = 2; + frequency = 1379; + id_tag = "fuckyou2_pump" + }, +/turf/simulated/floor/plating, +/area/maintenance/maintcentral) +"hu" = ( /obj/machinery/door/blast/regular{ id = "escape_blast"; name = "Bunker Blast Door" @@ -7198,53 +4072,174 @@ }, /turf/simulated/floor/plating, /area/maintenance/maintcentral) -"qU" = ( -/turf/simulated/wall, +"hv" = ( +/obj/machinery/door/airlock/external, +/turf/simulated/floor/tiled, /area/maintenance/arrivals) -"qV" = ( -/turf/simulated/wall, -/area/maintenance/arrivals) -"qW" = ( -/turf/simulated/wall, -/area/maintenance/arrivals) -"qX" = ( -/turf/simulated/wall, -/area/maintenance/arrivals) -"qY" = ( -/turf/simulated/wall, -/area/maintenance/arrivals) -"qZ" = ( -/turf/simulated/wall, -/area/maintenance/arrivals) -"ra" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" +"hw" = ( +/obj/structure/grille, +/obj/structure/window/reinforced, +/obj/structure/window/reinforced{ + icon_state = "rwindow"; + dir = 1 }, -/obj/effect/floor_decal/industrial/warning/dust{ - icon_state = "warning_dust"; +/obj/structure/window/reinforced{ dir = 8 }, -/obj/effect/floor_decal/industrial/warning/dust{ - icon_state = "warning_dust"; +/obj/machinery/door/firedoor, +/turf/simulated/floor/plating, +/area/maintenance/maintcentral) +"hx" = ( +/obj/structure/grille, +/obj/structure/window/reinforced{ dir = 4 }, -/turf/simulated/floor/tiled/airless{ - icon_state = "asteroidfloor" - }, -/area/mine/unexplored) -"rb" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 4 - }, -/obj/effect/floor_decal/industrial/warning{ - icon_state = "warning"; - dir = 8 +/obj/structure/window/reinforced, +/obj/machinery/door/firedoor, +/turf/simulated/floor/plating, +/area/maintenance/maintcentral) +"hy" = ( +/obj/machinery/atmospherics/pipe/simple/hidden, +/obj/machinery/door/airlock/external{ + frequency = 1379; + icon_state = "door_locked"; + id_tag = "fuckyou2_inner"; + locked = 1 }, /turf/simulated/floor/plating, /area/maintenance/maintcentral) -"rc" = ( +"hz" = ( +/obj/structure/grille, +/obj/structure/window/reinforced, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/machinery/door/firedoor, +/turf/simulated/floor/plating, +/area/maintenance/maintcentral) +"hA" = ( +/obj/structure/grille, +/obj/structure/window/reinforced, +/obj/structure/window/reinforced{ + icon_state = "rwindow"; + dir = 1 + }, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/machinery/door/firedoor{ + dir = 2 + }, +/turf/simulated/floor/plating, +/area/maintenance/maintcentral) +"hB" = ( +/obj/machinery/portable_atmospherics/canister/air/airlock, +/obj/machinery/atmospherics/portables_connector{ + dir = 4 + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/window/reinforced, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/machinery/door/window/eastright, +/obj/effect/floor_decal/corner/yellow/full{ + icon_state = "corner_white_full"; + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/maintenance/arrivals) +"hC" = ( +/obj/effect/floor_decal/corner/yellow{ + icon_state = "corner_white"; + dir = 1 + }, +/obj/machinery/light{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 10; + icon_state = "intact" + }, +/turf/simulated/floor/tiled, +/area/maintenance/arrivals) +"hD" = ( +/obj/effect/floor_decal/corner/yellow{ + icon_state = "corner_white"; + dir = 4 + }, +/obj/machinery/light{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/maintenance/arrivals) +"hE" = ( +/obj/machinery/portable_atmospherics/canister/air/airlock, +/obj/machinery/atmospherics/portables_connector{ + dir = 4 + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/window/reinforced, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/machinery/door/window/eastright, +/obj/effect/floor_decal/corner/yellow/full{ + icon_state = "corner_white_full"; + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/maintenance/maintcentral) +"hF" = ( +/obj/effect/floor_decal/corner/yellow{ + icon_state = "corner_white"; + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 10; + icon_state = "intact" + }, +/turf/simulated/floor/tiled, +/area/maintenance/maintcentral) +"hG" = ( +/turf/simulated/floor/tiled, +/area/maintenance/maintcentral) +"hH" = ( +/obj/machinery/atmospherics/pipe/simple/hidden, +/obj/machinery/access_button{ + command = "cycle_interior"; + frequency = 1379; + master_tag = "fuckyou2"; + name = "interior access button"; + pixel_x = 32; + pixel_y = 26 + }, +/turf/simulated/floor/tiled, +/area/maintenance/maintcentral) +"hI" = ( +/obj/effect/floor_decal/corner/yellow{ + icon_state = "corner_white"; + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/maintenance/maintcentral) +"hJ" = ( +/obj/effect/floor_decal/corner/yellow/full{ + icon_state = "corner_white_full"; + dir = 1 + }, +/obj/machinery/alarm{ + dir = 8; + pixel_x = 25; + pixel_y = 0 + }, +/turf/simulated/floor/tiled, +/area/maintenance/maintcentral) +"hK" = ( /obj/structure/cable/green{ d1 = 1; d2 = 2; @@ -7252,7 +4247,7 @@ }, /turf/simulated/wall/r_wall, /area/maintenance/maintcentral) -"rd" = ( +"hL" = ( /obj/machinery/door/blast/regular{ id = "escape_blast"; name = "Bunker Blast Door" @@ -7268,10 +4263,227 @@ }, /turf/simulated/floor/plating, /area/maintenance/maintcentral) -"re" = ( +"hM" = ( +/obj/machinery/portable_atmospherics/canister/air/airlock, +/obj/machinery/atmospherics/portables_connector{ + dir = 4 + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/window/reinforced, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/machinery/door/window/eastright, +/obj/effect/floor_decal/corner/yellow{ + icon_state = "corner_white"; + dir = 9 + }, +/turf/simulated/floor/tiled, +/area/maintenance/arrivals) +"hN" = ( +/obj/machinery/atmospherics/pipe/manifold4w/hidden, +/turf/simulated/floor/tiled, +/area/maintenance/arrivals) +"hO" = ( +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/maintenance/arrivals) +"hP" = ( +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 10 + }, +/turf/simulated/floor/tiled, +/area/maintenance/arrivals) +"hQ" = ( +/obj/effect/floor_decal/corner/yellow{ + icon_state = "corner_white"; + dir = 6 + }, +/obj/machinery/alarm{ + dir = 8; + pixel_x = 25; + pixel_y = 0 + }, +/turf/simulated/floor/tiled, +/area/maintenance/arrivals) +"hR" = ( +/obj/machinery/portable_atmospherics/canister/air/airlock, +/obj/machinery/atmospherics/portables_connector{ + dir = 4 + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/window/reinforced, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/machinery/door/window/eastright, +/obj/effect/floor_decal/corner/yellow{ + icon_state = "corner_white"; + dir = 9 + }, +/turf/simulated/floor/tiled, +/area/maintenance/maintcentral) +"hS" = ( +/obj/machinery/atmospherics/pipe/manifold4w/hidden, +/turf/simulated/floor/tiled, +/area/maintenance/maintcentral) +"hT" = ( +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/maintenance/maintcentral) +"hU" = ( +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 9; + icon_state = "intact" + }, +/turf/simulated/floor/tiled, +/area/maintenance/maintcentral) +"hV" = ( +/obj/effect/floor_decal/corner/yellow{ + icon_state = "corner_white"; + dir = 6 + }, +/obj/structure/cable/green{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/turf/simulated/floor/tiled, +/area/maintenance/maintcentral) +"hW" = ( +/obj/machinery/door/airlock/maintenance{ + req_access = list(12) + }, +/obj/machinery/door/firedoor, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, /turf/simulated/floor/plating, /area/maintenance/maintcentral) -"rf" = ( +"hX" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/plating, +/area/maintenance/maintcentral) +"hY" = ( +/obj/structure/cable/green{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/structure/sign/securearea{ + name = "\improper NO ENTRY"; + pixel_x = 32; + pixel_y = 0 + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/plating, +/area/maintenance/maintcentral) +"hZ" = ( +/obj/machinery/portable_atmospherics/canister/air/airlock, +/obj/machinery/atmospherics/portables_connector{ + dir = 4 + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/window/reinforced, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/machinery/door/window/eastright, +/obj/effect/floor_decal/corner/yellow/full, +/turf/simulated/floor/tiled, +/area/maintenance/arrivals) +"ia" = ( +/obj/effect/floor_decal/corner/yellow{ + icon_state = "corner_white"; + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 9; + icon_state = "intact" + }, +/turf/simulated/floor/tiled, +/area/maintenance/arrivals) +"ib" = ( +/obj/machinery/atmospherics/pipe/simple/hidden, +/obj/machinery/access_button{ + command = "cycle_interior"; + frequency = 1379; + master_tag = "fuckyou1"; + name = "interior access button"; + pixel_x = 32; + pixel_y = -26 + }, +/turf/simulated/floor/tiled, +/area/maintenance/arrivals) +"ic" = ( +/obj/effect/floor_decal/corner/yellow, +/turf/simulated/floor/tiled, +/area/maintenance/arrivals) +"id" = ( +/obj/machinery/portable_atmospherics/canister/air/airlock, +/obj/machinery/atmospherics/portables_connector{ + dir = 4 + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/window/reinforced, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/machinery/door/window/eastright, +/obj/effect/floor_decal/corner/yellow/full, +/obj/structure/sign/drop{ + pixel_y = -32 + }, +/turf/simulated/floor/tiled, +/area/maintenance/maintcentral) +"ie" = ( +/obj/effect/floor_decal/corner/yellow{ + icon_state = "corner_white"; + dir = 8 + }, +/obj/machinery/light, +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 9; + icon_state = "intact" + }, +/turf/simulated/floor/tiled, +/area/maintenance/maintcentral) +"if" = ( +/obj/effect/floor_decal/corner/yellow, +/obj/machinery/light, +/turf/simulated/floor/tiled, +/area/maintenance/maintcentral) +"ig" = ( +/obj/effect/floor_decal/corner/yellow/full{ + icon_state = "corner_white_full"; + dir = 4 + }, +/obj/structure/cable/green, +/turf/simulated/floor/tiled, +/area/maintenance/maintcentral) +"ih" = ( /obj/structure/cable/green{ d1 = 1; d2 = 2; @@ -7287,7 +4499,7 @@ }, /turf/simulated/floor/plating, /area/maintenance/maintcentral) -"rg" = ( +"ii" = ( /obj/machinery/door/airlock/maintenance{ id_tag = "bunker6"; req_access = list(20) @@ -7299,7 +4511,7 @@ }, /turf/simulated/floor/plating, /area/maintenance/maintcentral) -"rh" = ( +"ij" = ( /obj/structure/cable/green{ d1 = 4; d2 = 8; @@ -7316,7 +4528,7 @@ /obj/machinery/light/small/emergency, /turf/simulated/floor/plating, /area/maintenance/maintcentral) -"ri" = ( +"ik" = ( /obj/structure/cable/green{ d1 = 4; d2 = 8; @@ -7329,7 +4541,7 @@ /obj/structure/grille, /turf/simulated/floor/plating, /area/maintenance/maintcentral) -"rj" = ( +"il" = ( /obj/structure/cable/green{ d1 = 4; d2 = 8; @@ -7342,7 +4554,7 @@ }, /turf/simulated/floor/plating, /area/maintenance/maintcentral) -"rk" = ( +"im" = ( /obj/structure/cable/green{ d2 = 8; icon_state = "0-8" @@ -7350,7 +4562,7 @@ /obj/structure/grille, /turf/simulated/floor/plating, /area/maintenance/maintcentral) -"rl" = ( +"in" = ( /obj/machinery/light/small/emergency, /obj/effect/floor_decal/industrial/warning{ icon_state = "warning"; @@ -7358,25 +4570,100 @@ }, /turf/simulated/floor/plating, /area/maintenance/maintcentral) -"rm" = ( -/turf/simulated/floor/plating, -/area/maintenance/maintcentral) -"rn" = ( -/turf/simulated/floor/plating, -/area/maintenance/maintcentral) -"ro" = ( -/turf/simulated/floor/plating, -/area/maintenance/maintcentral) -"rp" = ( -/turf/simulated/floor/plating, -/area/maintenance/maintcentral) -"rq" = ( +"io" = ( /obj/structure/sign/electricshock{ pixel_y = -32 }, /turf/simulated/floor/plating, /area/maintenance/maintcentral) -"rr" = ( +"ip" = ( +/obj/structure/grille, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/window/reinforced, +/obj/structure/window/reinforced{ + icon_state = "rwindow"; + dir = 1 + }, +/obj/machinery/door/firedoor{ + dir = 2 + }, +/turf/simulated/floor/plating, +/area/maintenance/arrivals) +"iq" = ( +/obj/structure/grille, +/obj/structure/window/reinforced, +/obj/structure/window/reinforced{ + icon_state = "rwindow"; + dir = 1 + }, +/obj/machinery/door/firedoor{ + dir = 2 + }, +/turf/simulated/floor/plating, +/area/maintenance/arrivals) +"ir" = ( +/obj/structure/grille, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/machinery/door/firedoor, +/turf/simulated/floor/plating, +/area/maintenance/arrivals) +"is" = ( +/obj/machinery/atmospherics/pipe/simple/hidden, +/obj/machinery/door/airlock/external{ + frequency = 1379; + icon_state = "door_locked"; + id_tag = "fuckyou1_inner"; + locked = 1 + }, +/turf/simulated/floor/plating, +/area/maintenance/arrivals) +"it" = ( +/obj/structure/grille, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/machinery/door/firedoor, +/turf/simulated/floor/plating, +/area/maintenance/arrivals) +"iu" = ( +/obj/structure/grille, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/window/reinforced, +/obj/machinery/door/firedoor{ + dir = 2 + }, +/turf/simulated/floor/plating, +/area/maintenance/arrivals) +"iv" = ( +/obj/structure/grille, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/window/reinforced, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/machinery/door/firedoor{ + dir = 2 + }, +/turf/simulated/floor/plating, +/area/maintenance/arrivals) +"iw" = ( +/turf/simulated/wall/r_wall, +/area/maintenance/library) +"ix" = ( /obj/structure/cable/green{ d1 = 1; d2 = 2; @@ -7389,41 +4676,728 @@ }, /turf/simulated/floor/plating, /area/maintenance/maintcentral) -"rs" = ( -/turf/simulated/wall, -/area/maintenance/library) -"rt" = ( -/obj/effect/floor_decal/corner/blue{ - icon_state = "corner_white"; - dir = 9 +"iy" = ( +/obj/structure/grille, +/obj/structure/window/reinforced{ + dir = 4 }, -/obj/machinery/light{ - dir = 8; - icon_state = "tube1"; - pixel_y = 0 +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/machinery/door/firedoor, +/turf/simulated/floor/plating, +/area/maintenance/arrivals) +"iz" = ( +/obj/effect/decal/warning_stripes, +/obj/machinery/light/small/emergency{ + dir = 8 + }, +/obj/machinery/embedded_controller/radio/airlock/airlock_controller{ + id_tag = "fuckyou1"; + pixel_x = -32; + tag_airpump = "fuckyou1_pump"; + tag_chamber_sensor = "fuckyou1_sensor"; + tag_exterior_door = "fuckyou1_outer"; + tag_interior_door = "fuckyou1_inner" + }, +/obj/machinery/airlock_sensor{ + id_tag = "fuckyou1_sensor"; + pixel_x = 32 + }, +/obj/machinery/atmospherics/unary/vent_pump/high_volume{ + dir = 1; + frequency = 1379; + id_tag = "fuckyou1_pump" + }, +/turf/simulated/floor/plating, +/area/maintenance/arrivals) +"iA" = ( +/turf/simulated/open, +/area/turbolift/command_mid) +"iB" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/plating, +/area/maintenance/maintcentral) +"iC" = ( +/obj/structure/grille, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/window/reinforced, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/machinery/door/firedoor, +/turf/simulated/floor/plating, +/area/maintenance/arrivals) +"iD" = ( +/obj/machinery/door/airlock/external{ + frequency = 1379; + icon_state = "door_locked"; + id_tag = "fuckyou1_outer"; + locked = 1 + }, +/turf/simulated/floor/plating, +/area/maintenance/arrivals) +"iE" = ( +/obj/machinery/access_button{ + command = "cycle_exterior"; + frequency = 1379; + master_tag = "fuckyou1"; + name = "exterior access button"; + pixel_x = -32; + pixel_y = 26 + }, +/turf/simulated/floor/asteroid/ash/rocky, +/area/mine/unexplored) +"iF" = ( +/obj/structure/cable/green{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/turf/simulated/floor/plating, +/area/maintenance/maintcentral) +"iG" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/turf/simulated/floor/plating, +/area/maintenance/maintcentral) +"iH" = ( +/obj/effect/decal/warning_stripes, +/obj/structure/ladder{ + icon_state = "ladder01"; + pixel_y = 16 + }, +/turf/simulated/open, +/area/maintenance/maintcentral) +"iI" = ( +/obj/machinery/light/small/emergency{ + dir = 1 + }, +/obj/random/junk, +/turf/simulated/floor/plating, +/area/maintenance/maintcentral) +"iJ" = ( +/obj/effect/decal/warning_stripes, +/obj/structure/ladder/up{ + pixel_y = 16 + }, +/obj/structure/sign/emerg_exitZ{ + dir = 1; + icon_state = "emerg_exitZ"; + pixel_x = 32; + tag = "icon-emerg_exitZ (NORTH)" + }, +/turf/simulated/floor/plating{ + roof_type = null + }, +/area/maintenance/maintcentral) +"iK" = ( +/obj/machinery/atmospherics/pipe/zpipe/up/scrubbers{ + icon_state = "up-scrubbers"; + dir = 4 + }, +/obj/machinery/atmospherics/pipe/zpipe/up/supply{ + icon_state = "up-supply"; + dir = 4 + }, +/obj/structure/cable/green{ + icon_state = "12-0" + }, +/obj/structure/cable/green{ + d2 = 4; + icon_state = "0-4" + }, +/turf/simulated/floor/plating{ + roof_type = null + }, +/area/maintenance/maintcentral) +"iL" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/cable/green{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/turf/simulated/floor/plating, +/area/maintenance/maintcentral) +"iM" = ( +/obj/machinery/atmospherics/pipe/zpipe/down/supply{ + icon_state = "down-supply"; + dir = 8 + }, +/obj/machinery/atmospherics/pipe/zpipe/down/scrubbers{ + icon_state = "down-scrubbers"; + dir = 8 + }, +/obj/structure/cable/green{ + d2 = 8; + icon_state = "11-8" + }, +/obj/structure/lattice, +/turf/simulated/open, +/area/maintenance/maintcentral) +"iN" = ( +/obj/machinery/door/airlock/maintenance{ + req_access = list(12) + }, +/obj/machinery/door/firedoor, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/plating, +/area/maintenance/maintcentral) +"iO" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/turf/simulated/floor/plating, +/area/maintenance/maintcentral) +"iP" = ( +/obj/machinery/atmospherics/portables_connector, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/window/reinforced{ + icon_state = "rwindow"; + dir = 1 + }, +/obj/machinery/portable_atmospherics/canister/air/airlock, +/obj/machinery/door/window/southleft, +/obj/effect/floor_decal/corner/yellow/full{ + icon_state = "corner_white_full"; + dir = 8 }, /turf/simulated/floor/tiled, -/area/security/range) -"ru" = ( -/obj/effect/floor_decal/industrial/loading, +/area/maintenance/library) +"iQ" = ( +/obj/machinery/atmospherics/portables_connector, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/window/reinforced{ + icon_state = "rwindow"; + dir = 1 + }, +/obj/machinery/portable_atmospherics/canister/air/airlock, +/obj/machinery/door/window/southleft, +/obj/effect/floor_decal/corner/yellow{ + icon_state = "corner_white"; + dir = 5 + }, +/turf/simulated/floor/tiled, +/area/maintenance/library) +"iR" = ( +/obj/machinery/atmospherics/portables_connector, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/window/reinforced{ + icon_state = "rwindow"; + dir = 1 + }, +/obj/machinery/portable_atmospherics/canister/air/airlock, +/obj/machinery/door/window/southleft, +/obj/effect/floor_decal/corner/yellow/full{ + icon_state = "corner_white_full"; + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/maintenance/library) +"iS" = ( +/obj/structure/grille, +/obj/machinery/door/firedoor, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/window/reinforced{ + dir = 1 + }, +/turf/simulated/floor/plating, +/area/maintenance/library) +"iT" = ( +/turf/simulated/open, +/area/turbolift/cargo_mid) +"iU" = ( /obj/machinery/light{ - icon_state = "tube1"; + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 5; + icon_state = "intact" + }, +/obj/effect/floor_decal/corner/yellow{ + icon_state = "corner_white"; + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/maintenance/library) +"iV" = ( +/obj/machinery/atmospherics/pipe/manifold4w/hidden, +/turf/simulated/floor/tiled, +/area/maintenance/library) +"iW" = ( +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 9; + icon_state = "intact" + }, +/obj/effect/floor_decal/corner/yellow{ + icon_state = "corner_white"; dir = 4 }, /turf/simulated/floor/tiled, -/area/security/range) -"rv" = ( -/obj/machinery/light, +/area/maintenance/library) +"iX" = ( +/obj/structure/grille, +/obj/machinery/door/firedoor, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/window/reinforced, +/turf/simulated/floor/plating, +/area/maintenance/library) +"iY" = ( +/obj/structure/grille, +/obj/machinery/door/firedoor, +/obj/structure/window/reinforced{ + icon_state = "rwindow"; + dir = 1 + }, +/obj/structure/window/reinforced, +/turf/simulated/floor/plating, +/area/maintenance/library) +"iZ" = ( +/obj/structure/grille, +/obj/machinery/door/firedoor, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/window/reinforced{ + icon_state = "rwindow"; + dir = 1 + }, +/obj/structure/window/reinforced, +/turf/simulated/floor/plating, +/area/maintenance/library) +"ja" = ( /turf/simulated/floor/tiled, -/area/security/investigations) -"rw" = ( -/obj/machinery/light{ +/area/maintenance/library) +"jb" = ( +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 5; + icon_state = "intact" + }, +/turf/simulated/floor/tiled, +/area/maintenance/library) +"jc" = ( +/obj/machinery/access_button{ + command = "cycle_interior"; + frequency = 1379; + master_tag = "fuckyou3"; + name = "interior access button"; + pixel_x = 32; + pixel_y = -26 + }, +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/maintenance/library) +"jd" = ( +/obj/machinery/door/airlock/external{ + frequency = 1379; + icon_state = "door_locked"; + id_tag = "fuckyou3_inner"; + locked = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 4; + icon_state = "intact" + }, +/turf/simulated/floor/plating, +/area/maintenance/library) +"je" = ( +/obj/effect/decal/warning_stripes, +/obj/machinery/embedded_controller/radio/airlock/airlock_controller{ + id_tag = "fuckyou3"; + pixel_x = 0; + pixel_y = -32; + tag_airpump = "fuckyou3_pump"; + tag_chamber_sensor = "fuckyou3_sensor"; + tag_exterior_door = "fuckyou3_outer"; + tag_interior_door = "fuckyou3_inner" + }, +/obj/machinery/airlock_sensor{ + id_tag = "fuckyou3_sensor"; + pixel_x = 0; + pixel_y = 32 + }, +/obj/machinery/atmospherics/unary/vent_pump/high_volume{ dir = 8; - icon_state = "tube1"; + frequency = 1379; + id_tag = "fuckyou3_pump" + }, +/obj/machinery/light/small/emergency, +/turf/simulated/floor/plating, +/area/maintenance/library) +"jf" = ( +/obj/machinery/door/airlock/external{ + frequency = 1379; + icon_state = "door_locked"; + id_tag = "fuckyou3_outer"; + locked = 1 + }, +/turf/simulated/floor/plating, +/area/maintenance/library) +"jg" = ( +/obj/machinery/access_button{ + command = "cycle_exterior"; + frequency = 1379; + master_tag = "fuckyou3"; + name = "exterior access button"; + pixel_x = -32; + pixel_y = 26 + }, +/turf/simulated/floor/asteroid/ash/rocky, +/area/mine/unexplored) +"jh" = ( +/obj/structure/grille, +/obj/machinery/door/firedoor, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/window/reinforced{ + icon_state = "rwindow"; + dir = 1 + }, +/turf/simulated/floor/plating, +/area/maintenance/library) +"ji" = ( +/obj/structure/grille, +/obj/machinery/door/firedoor, +/obj/structure/window/reinforced, +/obj/structure/window/reinforced{ + icon_state = "rwindow"; + dir = 1 + }, +/turf/simulated/floor/plating, +/area/maintenance/library) +"jj" = ( +/obj/structure/grille, +/obj/machinery/door/firedoor, +/obj/structure/window/reinforced, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/window/reinforced{ + icon_state = "rwindow"; + dir = 1 + }, +/turf/simulated/floor/plating, +/area/maintenance/library) +"jk" = ( +/obj/structure/grille, +/obj/machinery/door/firedoor, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/maintenance/library) +"jl" = ( +/obj/machinery/light{ + dir = 8 + }, +/obj/effect/floor_decal/corner/yellow{ + icon_state = "corner_white"; + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/maintenance/library) +"jm" = ( +/obj/effect/floor_decal/corner/yellow, +/turf/simulated/floor/tiled, +/area/maintenance/library) +"jn" = ( +/obj/effect/floor_decal/corner/yellow/full, +/obj/machinery/alarm{ + dir = 1; + pixel_y = -25 + }, +/obj/structure/sign/drop{ + pixel_x = -32 + }, +/turf/simulated/floor/tiled, +/area/maintenance/library) +"jo" = ( +/obj/effect/floor_decal/corner/yellow{ + icon_state = "corner_white"; + dir = 10 + }, +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/turf/simulated/floor/tiled, +/area/maintenance/library) +"jp" = ( +/obj/effect/floor_decal/corner/yellow/full{ + icon_state = "corner_white_full"; + dir = 4 + }, +/obj/machinery/power/apc{ + dir = 2; + name = "south bump"; + pixel_y = -24 + }, +/obj/structure/cable{ + d2 = 8; + icon_state = "0-8" + }, +/turf/simulated/floor/tiled, +/area/maintenance/library) +"jq" = ( +/obj/structure/grille, +/obj/machinery/door/firedoor, +/obj/structure/window/reinforced, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/maintenance/library) +"jr" = ( +/obj/machinery/door/airlock/maintenance{ + req_access = list(50) + }, +/obj/machinery/door/firedoor, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2"; pixel_y = 0 }, +/turf/simulated/floor/plating, +/area/maintenance/library) +"js" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2"; + pixel_y = 0 + }, +/turf/simulated/floor/plating, +/area/maintenance/library) +"jt" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/turf/simulated/floor/plating, +/area/maintenance/library) +"ju" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/plating, +/area/maintenance/library) +"jv" = ( +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/turf/simulated/floor/plating, +/area/maintenance/library) +"jw" = ( +/turf/simulated/wall, +/area/maintenance/library) +"jx" = ( +/obj/machinery/door/airlock/maintenance{ + req_access = list(12) + }, +/obj/machinery/door/firedoor, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2"; + pixel_y = 0 + }, +/turf/simulated/floor/plating, +/area/maintenance/library) +"jy" = ( +/obj/effect/decal/warning_stripes, +/obj/structure/ladder/up{ + pixel_y = 16 + }, +/turf/simulated/floor/plating{ + roof_type = null + }, +/area/maintenance/library) +"jz" = ( +/obj/effect/decal/warning_stripes, +/obj/structure/ladder{ + icon_state = "ladder01"; + pixel_y = 16 + }, /turf/simulated/open, -/area/security/training) +/area/maintenance/library) +"jA" = ( +/obj/structure/disposalpipe/down{ + icon_state = "pipe-d"; + dir = 4 + }, +/obj/structure/lattice/catwalk, +/turf/simulated/open, +/area/maintenance/library) +"jB" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2"; + pixel_y = 0 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/maintenance/library) +"jC" = ( +/obj/structure/disposalpipe/up{ + icon_state = "pipe-u"; + dir = 8 + }, +/turf/simulated/floor/plating{ + roof_type = null + }, +/area/maintenance/library) +"jD" = ( +/obj/machinery/atmospherics/pipe/zpipe/up/scrubbers{ + icon_state = "up-scrubbers"; + dir = 4 + }, +/obj/machinery/atmospherics/pipe/zpipe/up/supply{ + icon_state = "up-supply"; + dir = 4 + }, +/obj/structure/disposalpipe/up{ + icon_state = "pipe-u"; + dir = 4 + }, +/obj/structure/cable{ + icon_state = "12-0" + }, +/obj/structure/cable{ + icon_state = "0-4"; + d2 = 4 + }, +/turf/simulated/floor/plating{ + roof_type = null + }, +/area/maintenance/library) +"jE" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/light/small/emergency, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/turf/simulated/floor/plating, +/area/maintenance/library) +"jF" = ( +/obj/structure/disposalpipe/down{ + icon_state = "pipe-d"; + dir = 8 + }, +/obj/structure/cable{ + d2 = 8; + icon_state = "11-8" + }, +/obj/machinery/atmospherics/pipe/zpipe/down/supply{ + icon_state = "down-supply"; + dir = 8 + }, +/obj/machinery/atmospherics/pipe/zpipe/down/scrubbers{ + icon_state = "down-scrubbers"; + dir = 8 + }, +/obj/structure/lattice/catwalk, +/turf/simulated/open, +/area/maintenance/library) +"jG" = ( +/obj/effect/floor_decal/industrial/warning/dust{ + icon_state = "warning_dust"; + dir = 8 + }, +/turf/simulated/floor/tiled/airless{ + icon_state = "asteroidfloor" + }, +/area/mine/unexplored) +"jH" = ( +/turf/simulated/floor/tiled/airless{ + icon_state = "asteroidfloor" + }, +/area/mine/unexplored) +"jI" = ( +/obj/structure/ladder, +/turf/simulated/open/airless, +/area/mine/unexplored) (1,1,1) = {" aa @@ -15243,7 +13217,7 @@ ab ab ab ab -ac +cI ab ab aa @@ -15503,7 +13477,7 @@ ab ab ab ab -ac +cI aa aa aa @@ -15739,7 +13713,7 @@ aa aa aa ab -ac +cI ab ab ab @@ -15758,7 +13732,7 @@ ab ab ab ab -ac +cI ab ab ab @@ -16004,14 +13978,14 @@ ab ab ab ab -ac +cI ab ab ab ab ab ab -ac +cI ab ab ab @@ -16260,9 +14234,9 @@ ab ab ab ab -ac +cI ab -ac +cI ab ab ab @@ -17030,14 +15004,14 @@ ab ab ab ab -ac +cI ab ab aa ab ab ab -ac +cI ab ab ab @@ -17288,11 +15262,11 @@ ab ab ab aa -ad +dO aa aa aa -ad +dO aa ab ab @@ -17554,7 +15528,7 @@ aa aa aa ab -ac +cI ab ab ab @@ -18055,7 +16029,7 @@ aa aa aa aa -ad +dO aa aa aa @@ -18067,7 +16041,7 @@ aa aa aa aa -ad +dO ab ab ab @@ -18318,7 +16292,7 @@ aa aa aa aa -ad +dO aa aa aa @@ -18330,7 +16304,7 @@ ab ab ab ab -ac +cI aa aa aa @@ -18574,9 +16548,9 @@ aa aa aa aa -ad -ad -ad +dO +dO +dO aa aa aa @@ -18832,7 +16806,7 @@ aa aa aa aa -ad +dO aa aa aa @@ -19083,7 +17057,7 @@ aa aa aa aa -ad +dO aa aa aa @@ -19095,8 +17069,8 @@ aa aa aa aa -ad -ac +dO +cI ab ab ab @@ -19858,11 +17832,11 @@ aa aa aa aa -ad +dO aa aa aa -ad +dO aa aa aa @@ -20387,7 +18361,7 @@ ab ab ab ab -ac +cI aa aa aa @@ -20637,7 +18611,7 @@ ab ab ab ab -ac +cI ab ab ab @@ -20645,11 +18619,11 @@ ab ab ab ab -ae -ae -ae -ae -ae +fJ +fJ +fJ +fJ +fJ aa aa aa @@ -20902,11 +18876,11 @@ ab ab ab ab -ae -af -aj -an -ae +fJ +fL +fQ +fV +fJ aa aa aa @@ -21159,11 +19133,11 @@ ab ab ab ab -ae -ag -ak -ao -ae +fJ +fM +fR +fW +fJ aa aa aa @@ -21416,11 +19390,11 @@ ab ab ab ab -ae -ah -al -ap -ae +fJ +fN +fS +fX +fJ aa aa aa @@ -21657,7 +19631,7 @@ aa aa ab ab -ac +cI aa aa aa @@ -21673,11 +19647,11 @@ ab ab ab aa -ae -ai -am -aq -ae +fJ +fO +fT +fY +fJ aa aa aa @@ -21922,7 +19896,7 @@ aa aa ab ab -ac +cI ab ab ab @@ -21930,11 +19904,11 @@ ab ab ab aa -ae -ae -ae -ae -ae +fJ +fJ +fJ +fJ +fJ aa aa aa @@ -29735,11 +27709,11 @@ aa aa aa aa -aa -aa -aa -aa -aa +ab +ab +ab +ab +ab aa aa aa @@ -29991,14 +27965,14 @@ aa aa aa aa -aa -aa -aa -aa -aa -aa -aa -aa +ab +ab +ab +ab +ab +ab +ab +ab aa aa aa @@ -30218,24 +28192,14 @@ aa aa aa aa -bU -aa -bU -aa -aa -bU -aa -bU -aa -aa -aa -aa -aa -aa +iw aa +iw aa aa +iw aa +iw aa aa aa @@ -30257,6 +28221,16 @@ aa aa aa aa +ab +ab +dO +gy +jG +jG +jG +dO +ab +ab aa aa aa @@ -30474,26 +28448,16 @@ aa aa aa aa -bU -bU -bU -bU -bU -bU -bU -bU -bU -bU -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa +iw +iw +iw +iw +iw +iw +iw +iw +iw +iw aa aa aa @@ -30514,6 +28478,16 @@ aa aa aa aa +ab +ab +dO +gy +gy +jH +jI +dO +ab +ab aa aa aa @@ -30732,24 +28706,14 @@ aa aa aa aa -bU -cp -cp -cp -cp -cp -cp -bU -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa +iw +iT +iT +iT +iT +iT +iT +iw aa aa aa @@ -30771,6 +28735,16 @@ aa aa aa aa +ab +ab +dO +gy +jH +jH +gy +dO +ab +ab aa aa aa @@ -30988,26 +28962,16 @@ aa aa aa aa -bU -bU -cp -cp -cp -cp -cp -cp -bU -bU -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa +iw +iw +iT +iT +iT +iT +iT +iT +iw +iw aa aa aa @@ -31028,6 +28992,16 @@ aa aa aa aa +ab +ab +dO +dO +gy +gy +gy +dO +ab +ab aa aa aa @@ -31246,23 +29220,14 @@ aa aa aa aa -bU -cp -cp -cp -cp -cp -cp -bU -aa -aa -aa -aa -aa -aa -aa -aa -aa +iw +iT +iT +iT +iT +iT +iT +iw aa aa aa @@ -31285,6 +29250,15 @@ aa aa aa aa +ab +ab +dO +dO +dO +dO +dO +ab +ab aa aa aa @@ -31503,22 +29477,14 @@ aa aa aa aa -bU -cp -cp -cp -cp -cp -cp -bU -aa -aa -aa -aa -aa -aa -aa -aa +iw +iT +iT +iT +iT +iT +iT +iw aa aa aa @@ -31541,6 +29507,14 @@ aa aa aa aa +ab +ab +ab +ab +ab +ab +ab +ab aa aa aa @@ -31759,23 +29733,16 @@ aa aa aa aa -bU -bU -cp -cp -cp -cp -cp -cp -bU -bU -aa -aa -aa -aa -aa -aa -aa +iw +iw +iT +iT +iT +iT +iT +iT +iw +iw aa aa aa @@ -31797,6 +29764,13 @@ aa aa aa aa +ab +ab +ab +ab +ab +ab +ab aa aa aa @@ -32017,18 +29991,14 @@ aa aa aa aa -bU -cp -cp -cp -cp -cp -cp -bU -aa -aa -aa -aa +iw +iT +iT +iT +iT +iT +iT +iw aa aa aa @@ -32050,6 +30020,10 @@ aa aa aa aa +ab +ab +ab +ab aa aa aa @@ -32273,20 +30247,16 @@ aa aa aa aa -bU -bU -bU -bU -bU -bU -bU -bU -bU -bU -aa -aa -aa -aa +iw +iw +iw +iw +iw +iw +iw +iw +iw +iw aa aa aa @@ -32307,6 +30277,10 @@ aa aa aa aa +ab +ab +ab +ab aa aa aa @@ -32530,26 +30504,22 @@ aa aa aa aa -bU -cl -cq -cw -cw -cw -cw -cH -cJ -bU -bU -bU -bU -bU -bU -bU -aa -aa -aa -aa +iw +iP +iU +ja +ja +ja +ja +jl +jn +iw +iw +iw +iw +iw +iw +iw aa aa aa @@ -32564,6 +30534,10 @@ aa aa aa aa +ab +ab +ab +ab aa aa aa @@ -32740,7 +30714,7 @@ aa aa aa aa -aB +gy aa aa aa @@ -32787,26 +30761,22 @@ aa aa aa aa -bU -cm -cr -cx -cw -cw -cw -cw -cK -da -cO -cO -cO -cO -cP -bU -aa -aa -aa -aa +iw +iQ +iV +jb +ja +ja +ja +ja +jo +jr +js +js +js +js +jt +iw aa aa aa @@ -32821,6 +30791,10 @@ aa aa aa aa +ab +ab +ab +ab aa aa aa @@ -32995,13 +30969,13 @@ aa aa aa aa -aB +gy aa aa aa aa -ad -aB +dO +gy aa aa aa @@ -33044,26 +31018,22 @@ aa aa aa aa -bU -cn -cs -cy -cw -cw -cw -cI -cL -bU -bU -bU -bU -bU -cQ -bU -aa -aa -aa -aa +iw +iR +iW +jc +ja +ja +ja +jm +jp +iw +iw +iw +iw +iw +ju +iw aa aa aa @@ -33078,6 +31048,10 @@ aa aa aa aa +ab +ab +ab +ab aa aa aa @@ -33253,11 +31227,11 @@ aa aa aa aa -ad -aB -aB -aB -aB +dO +gy +gy +gy +gy aa aa aa @@ -33301,27 +31275,22 @@ aa aa aa aa -bU -co -ct -cz -cD -cG -cG -cG -cM -bU -aa -aa -aa -bU -cQ -bU -aa -aa -aa -aa -aa +iw +iS +iX +jd +jh +jk +jk +jk +jq +iw +ab +ab +ab +iw +ju +iw aa aa aa @@ -33335,6 +31304,11 @@ aa aa aa aa +ab +ab +ab +ab +ab aa aa aa @@ -33509,15 +31483,15 @@ aa aa aa aa -aB -aB -aB -aB -aB -aB +gy +gy +gy +gy +gy +gy aa aa -aB +gy aa aa aa @@ -33560,25 +31534,20 @@ aa ab ab ab -cu -cA -cE +iY +je +ji ab ab ab ab ab -aa -aa -aa -bU -cQ -bU -aa -aa -aa -aa -aa +ab +ab +ab +iw +ju +iw aa aa aa @@ -33592,6 +31561,11 @@ aa aa aa aa +ab +ab +ab +ab +ab aa aa aa @@ -33767,12 +31741,12 @@ aa aa aa aa -ar -ar -aD -ar -ar -aB +gd +gd +gI +gd +gd +gy aa aa aa @@ -33817,24 +31791,20 @@ aa aa ab ab -cv -cB -cF +iZ +jf +jj ab ab ab ab aa -aa -aa -aa -bU -cQ -bU -aa -aa -aa -aa +ab +ab +ab +iw +ju +iw aa aa aa @@ -33848,6 +31818,10 @@ aa aa aa aa +ab +ab +ab +ab aa aa aa @@ -34019,24 +31993,24 @@ aa aa ab ab -ar -ar -ar -ar -ar -ar -aw -aE -aw -ar -ar -ar -ar -ar -ar -ar -ar -ar +gd +gd +gd +gd +gd +gd +gj +gJ +gj +gd +gd +gd +gd +gd +gd +gd +gd +gd aa aa aa @@ -34075,7 +32049,7 @@ aa ab ab ab -cC +jg ab ab ab @@ -34084,15 +32058,10 @@ aa aa aa aa -aa -bU -cQ -bU -aa -aa -aa -aa -aa +ab +iw +ju +iw aa aa aa @@ -34104,6 +32073,11 @@ aa aa aa aa +ab +ab +ab +ab +ab aa aa aa @@ -34276,24 +32250,24 @@ aa aa ab ab -as -av -aw -az -aw -aC -aw -aw -aw -aH -aI -aC -aw -aJ -aL -aw -aV -ar +ge +gi +gj +gu +gj +gE +gj +gj +gj +gO +gQ +gE +gj +gT +gY +gj +ho +gd aa aa aa @@ -34341,15 +32315,10 @@ aa aa aa aa -aa -bU -cQ -bU -aa -aa -aa -aa -aa +ab +iw +ju +iw aa aa aa @@ -34360,6 +32329,11 @@ aa aa aa aa +ab +ab +ab +ab +ab aa aa aa @@ -34533,24 +32507,24 @@ aa aa ab ab -at -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -ar +gf +gj +gj +gj +gj +gj +gj +gj +gj +gj +gj +gj +gj +gj +gj +gj +gj +gd aa aa aa @@ -34598,24 +32572,24 @@ aa aa aa aa -aa -bU -cQ -bU -bU -bU -bU -bU -aa -aa -aa -aa -aa +ab +iw +ju +iw +iw +iw +iw +iw aa aa aa aa aa +ab +ab +ab +ab +ab aa aa aa @@ -34790,28 +32764,28 @@ aa aa aa ab -au -ax -aw -aA -aw -aA -aw -aF -aw -aA -aw -aA -aw -aK -aM -aw -aW -ar -ar -ar -ar -ar +gg +gk +gj +gv +gj +gv +gj +gK +gj +gv +gj +gv +gj +gU +gZ +gj +hp +gd +gd +gd +gd +gd ab aa aa @@ -34855,23 +32829,23 @@ aa aa aa aa -aa -bU -cQ -rs -cS -cU -cX -bU -aa -aa -aa -aa -aa -aa +ab +iw +ju +jw +jy +jA +jD +iw aa aa aa +ab +ab +ab +ab +ab +ab aa aa aa @@ -35046,29 +33020,29 @@ aa aa aa aa -ad -ar -ar -or -or -or -or -or -ar -or -or -or -or -or -ar -aN -aw -aw -or -bi -br -bE -bN +dO +gd +gd +gl +gl +gl +gl +gl +gd +gl +gl +gl +gl +gl +gd +ha +gj +gj +gl +hB +hM +hZ +ip ab ab ab @@ -35112,22 +33086,22 @@ aa aa aa aa -aa -bU -cR -cN -cO -cV -cY -bU -aa -aa -aa -aa -aa -aa +ab +iw +jv +jx +js +jB +jE +iw aa aa +ab +ab +ab +ab +ab +ab aa aa aa @@ -35304,28 +33278,28 @@ aa aa aa aa -ar -or -ay -ay -ay -ay -ay -or -aG -aG -aG -aG -aG -or -aM -aw -aW -or -bj -bs -bF -bO +gd +gl +go +go +go +go +go +gl +gN +gN +gN +gN +gN +gl +gZ +gj +hp +gl +hC +hN +ia +iq ab ab ab @@ -35369,20 +33343,20 @@ aa aa aa aa +ab +iw +iw +iw +jz +jC +jF +iw aa -bU -bU -bU -cT -cW -cZ -bU -aa -aa -aa -aa -aa -aa +ab +ab +ab +ab +ab aa aa aa @@ -35561,30 +33535,30 @@ aa aa aa aa -ar -or -ay -ay -ay -ay -ay -or -aG -aG -aG -aG -aG -or -aw -aw -aw -or -aw -bt -aw -bP -bV -bY +gd +gl +go +go +go +go +go +gl +gN +gN +gN +gN +gN +gl +gj +gj +gj +gl +gj +hO +gj +ir +iy +iC ab ab aa @@ -35626,18 +33600,18 @@ aa aa aa aa +ab +ab +ab +iw +iw +iw +iw +iw aa -aa -aa -bU -bU -bU -bU -bU -aa -aa -aa -aa +ab +ab +ab aa aa aa @@ -35817,32 +33791,32 @@ aa aa aa aa -ad -ar -or -ay -ay -ay -ay -ay -ar -aG -aG -aG -aG -aG -or -aM -aw -aW -bb -aw -bu -bG -bQ -bW -bZ -ca +dO +gd +gl +go +go +go +go +go +gd +gN +gN +gN +gN +gN +gl +gZ +gj +hp +hv +gj +hP +ib +is +iz +iD +iE ab aa aa @@ -35885,15 +33859,15 @@ aa aa aa aa -aa -aa -aa -aa -aa -aa -aa -aa -aa +ab +ab +ab +ab +ab +ab +ab +ab +ab aa aa aa @@ -36075,30 +34049,30 @@ aa aa aa aa -ar -or -ay -ay -ay -ay -ay -or -aG -aG -aG -aG -aG -or -aw -aw -aw -or -aw -aw -aw -bR -bV -bY +gd +gl +go +go +go +go +go +gl +gN +gN +gN +gN +gN +gl +gj +gj +gj +gl +gj +gj +gj +it +iy +iC ab ab aa @@ -36146,10 +34120,10 @@ aa aa aa aa -aa -aa -aa -aa +ab +ab +ab +ab aa aa aa @@ -36332,28 +34306,28 @@ aa aa aa aa -ar -or -ay -ay -ay -ay -ay -or -aG -aG -aG -aG -aG -or -aM -aw -aW -or -bk -aw -bH -bS +gd +gl +go +go +go +go +go +gl +gN +gN +gN +gN +gN +gl +gZ +gj +hp +gl +hD +gj +ic +iu ab ab ab @@ -36588,29 +34562,29 @@ aa aa aa aa -ad -ar -ar -or -or -ar -or -or -ar -or -or -ar -or -or -ar -aN -aw -aw -or -aO -bv -aX -bT +dO +gd +gd +gl +gl +gd +gl +gl +gd +gl +gl +gd +gl +gl +gd +ha +gj +gj +gl +hb +hQ +hq +iv ab ab aa @@ -36846,28 +34820,28 @@ aa aa aa aa -ar -ar -ar -ar -ar -ar -ar -ar -ar -ar -ar -ar -ar -ar -aO -aw -aX -ar -ar -ar -ar -ar +gd +gd +gd +gd +gd +gd +gd +gd +gd +gd +gd +gd +gd +gd +hb +gj +hq +gd +gd +gd +gd +gd ab aa aa @@ -37104,23 +35078,23 @@ aa aa aa aa -ad +dO aa aa aa -ad +dO aa aa aa -ad +dO aa aa aa -ar -aP -aR -aY -ar +gd +hc +hg +hr +gd ab ab aa @@ -39112,15 +37086,15 @@ aa aa aa aa -db -dn -dz -dR -db -dn -dz -dR -db +ac +ae +ap +ay +ac +ae +ap +ay +ac aa aa aa @@ -39369,15 +37343,15 @@ aa aa aa aa -db -do -dA -dA -ek -rt -dA -fm -db +ac +af +aq +aq +aK +aT +aq +bo +ac aa aa aa @@ -39626,28 +37600,28 @@ aa aa aa aa -db -dp -dB -dT -db -en -eV -en -db -dk -dk -dk -dk -dk -hI -ij -dk -jl -dk -hI -ij -dk +ac +ag +ar +az +ac +aM +bf +aM +ac +ad +ad +ad +ad +ad +cJ +df +ad +dP +ad +cJ +df +ad aa aa aa @@ -39883,28 +37857,28 @@ aa aa aa aa -db -dq -dC -dU -em -eE -eF -fo -db -fW -gm -gC -gS -dk -hJ -ik -iL -jm -jN -ko -kO -dk +ac +ah +as +aA +aL +aU +aV +bp +ac +bC +bO +cc +co +ad +cK +dg +dz +dQ +ej +eB +eR +ad aa aa aa @@ -40140,28 +38114,28 @@ aa aa aa aa -db -dr -dC -dU -en -eF -eF -fp -db -fX -gn -gD -gT -dk -hK -il -iM -jn -jO -kp -kP -dk +ac +ai +as +aA +aM +aV +aV +bq +ac +bD +bP +cd +cp +ad +cL +dh +dA +dR +ek +eC +eS +ad aa aa aa @@ -40397,28 +38371,28 @@ aa aa aa aa -db -ds -dC -dU -em -eE -eF -fo -db -fX -go -gE -gU -dk -hL -im -iM -jo -jP -kq -kQ -dk +ac +aj +as +aA +aL +aU +aV +bp +ac +bD +bQ +ce +cq +ad +cM +di +dA +dS +el +eD +eT +ad aa aa aa @@ -40654,28 +38628,28 @@ aa aa aa aa -db -dt -dF -dU -en -eF -eF -fr -db -fZ -gp -gF -gV -dk -hM -in -iO -jn -jO -kr -kR -dk +ac +ak +at +aA +aM +aV +aV +br +ac +bE +bR +cf +cr +ad +cN +dj +dB +dR +ek +eE +eU +ad aa aa aa @@ -40911,28 +38885,28 @@ aa aa aa aa -db -du -dG -dU +ac +al +au +aA +aL +aW +bg +bp +ac +bF +bS +cg +cs +ad +cK +dj +dC +dT em -ru -fa -fo -db -ga -gq -gG -gW -dk -hJ -in -iP -jq -jR -ks -kS -dk +eF +eV +ad aa aa aa @@ -41168,28 +39142,28 @@ aa aa aa aa -db -dv -dH -dZ -db -db -db -db -db -gb -gr -gH -gb +ac +am +av +aB +ac +ac +ac +ac +ac +bG +bT +ch +bG +ad +cO dk -hO -ip -ip -eu -dk -kt -kT dk +aO +ad +eG +eW +ad aa aa aa @@ -41425,31 +39399,31 @@ aa aa aa aa -dk -dw -dI -ea -es -eK -fc -fu -eK -gc -gs -eK -eK -ho -eK -eK -eK -js -jT -gs -kU -dk -dk -dk -dk +ad +an +aw +aC +aN +aX +bh +bs +aX +bH +bU +aX +aX +cy +aX +aX +aX +dU +en +bU +eX +ad +ad +ad +ad aa aa aa @@ -41682,31 +39656,31 @@ aa aa aa aa -dk -dx -dJ -eb -eb -eL -fd -eb -fN -eb -gt -eb -eb -hp -eb -eb -iS -jt -jU -kv -kV -lv -rw -lP -dk +ad +ao +ax +aD +aD +aY +bi +aD +by +aD +bV +aD +aD +cz +aD +aD +dD +dV +eo +eH +eY +fk +fu +fv +ad aa aa aa @@ -41939,31 +39913,31 @@ aa aa aa aa -dk -dk -dk -ec -eu -eM -fe -eu -fO -ge -gu -gK -fO -ge -gu -gK -dk -ju -jV -kw -kW -lw -lP -lP -dk +ad +ad +ad +aE +aO +aZ +bj +aO +bz +bI +bW +ci +bz +bI +bW +ci +ad +dW +ep +eI +eZ +fl +fv +fv +ad aa aa aa @@ -42198,29 +40172,29 @@ aa aa aa aa -dk -ed -ev -eN -ff -fx -fP -gf -gv -gL -hb -hr -hS -it -dk -dk -dk -dk -dk -lx -dk -dk -dk +ad +aF +aP +ba +bk +bt +bA +bJ +bX +cj +ct +cA +cP +dl +ad +ad +ad +ad +ad +fm +ad +ad +ad aa aa aa @@ -42455,27 +40429,27 @@ aa aa aa aa -dk -ee -ew -eO -fg -fy -fQ -gg -gw -gM -hc -hs -hT -iu -dk -jw -jX -ky -kY -ly -dk +ad +aG +aQ +bb +bl +bu +bB +bK +bY +ck +cu +cB +cQ +dm +ad +dX +eq +eJ +fa +fn +ad aa aa aa @@ -42712,27 +40686,27 @@ aa aa aa aa -dk -ef -ex -eP -fg -fz -fO -gh -gx -gN -hd -hf -hU -iv -dk -dk -jY -dk -dk -dk -dk +ad +aH +aR +bc +bl +bv +bz +bL +bZ +cl +cv +cx +cR +dn +ad +ad +er +ad +ad +ad +ad aa aa aa @@ -42969,26 +40943,26 @@ aa aa aa aa -dk -eg -ey -eQ -fi -fA -fP -gi -gy -gO -he -hf -hV -iw -iX -jy -jZ -iX -la -lA +ad +aI +aS +bd +bm +bw +bA +bM +ca +cm +cw +cx +cS +do +dE +dY +es +dE +fb +fo ab ab aa @@ -43226,26 +41200,26 @@ aa aa aa aa -dk -eh -eh -eR -fj -fB -fQ -gj -gz -gP -hf -hv -hW -ix -iX -jz -ka -iX -la -lB +ad +aJ +aJ +be +bn +bx +bB +bN +cb +cn +cx +cC +cT +dp +dE +dZ +et +dE +fb +fp ab ab ab @@ -43483,26 +41457,26 @@ aa aa aa aa -dk -dk -dk -dk -dk -dk -fO -ge -gu -gu -gK -fO -hX -iy -iX -iX -kb -iX -rv -iX +ad +ad +ad +ad +ad +ad +bz +bI +bW +bW +ci +bz +cU +dq +dE +dE +eu +dE +fc +dE ab ab ab @@ -43751,15 +41725,15 @@ ab ab ab ab -hx -hY -iz -ja -jB -kc -kD -ld -lA +cD +cV +dr +dF +ea +ev +eK +fd +fo ab ab ab @@ -44008,15 +41982,15 @@ ab ab ab ab -hy -hZ -iA -jb -jC -kd -iA -le -lB +cE +cW +ds +dG +eb +ew +ds +fe +fp ab ab ab @@ -44265,17 +42239,17 @@ ab ab ab ab -hz -ia -iB -jc -hz -hz -hz -hz -hz -lT -hz +cF +cX +dt +dH +cF +cF +cF +cF +cF +fw +cF ab ab aa @@ -44522,17 +42496,17 @@ aa ab ab ab -hA -ib -iC -jd -jE -kf -kG -lg -lG -lU -hA +cG +cY +du +dI +ec +ex +eL +ff +fq +fx +cG ab ab aa @@ -44779,17 +42753,17 @@ aa aa ab ab -hB -ic -iD -je -jF -kg -kH -lh -kH -lV -mh +cH +cZ +dv +dJ +ed +ey +eM +fg +eM +fy +fA ab ab aa @@ -45036,17 +43010,17 @@ aa ab ab ab -hz -id -iC -jf -jG -kh -kI -li -lI -lW -hB +cF +da +du +dK +ee +ez +eN +fh +fr +fz +cH ab ab aa @@ -45293,17 +43267,17 @@ aa aa ab ab -hz -ie -iC -jg -jH -ki -kJ -lj -lJ -hz -hz +cF +db +du +dL +ef +eA +eO +fi +fs +cF +cF ab ab aa @@ -45550,16 +43524,16 @@ aa aa ab ab -hz -if -iC -jg -jI -hz -kK -lj -lj -hA +cF +dc +du +dL +eg +cF +eP +fi +fi +cG ab ab ab @@ -45807,16 +43781,16 @@ aa ab ab ab -hA -ig -iH -ji -jJ -hz -kL -ll -lL -hB +cG +dd +dw +dM +eh +cF +eQ +fj +ft +cH ab ab ab @@ -46064,16 +44038,16 @@ aa aa ab ab -hB -ih -iI -jj -jK -hz -ia -iJ -iB -hz +cH +de +dx +dN +ei +cF +cX +dy +dt +cF ab ab ab @@ -46321,12 +44295,12 @@ aa aa ab ab -hz -ia -iJ -iJ -iB -hz +cF +cX +dy +dy +dt +cF ab ab ab @@ -51769,17 +49743,17 @@ aa aa aa aa -bc -bc -bc -bc -bU +gM +gM +gM +gM +iw aa aa -bU +iw aa aa -bU +iw aa aa aa @@ -52026,18 +50000,18 @@ aa aa ab ab -bc -bl -bw -bI -bU -bU -bU -bU -bU -bU -bU -bU +gM +hE +hR +id +iw +iw +iw +iw +iw +iw +iw +iw aa aa aa @@ -52283,27 +50257,27 @@ ab ab ab ab -bd -bm -bx -bJ -bU -bX -bX -bX -bX -bX -bU +hw +hF +hS +ie +iw +iA +iA +iA +iA +iA +iw aa aa aa aa aa aa -bc -bc -bc -bc +gM +gM +gM +gM aa aa aa @@ -52538,31 +50512,31 @@ aa aa ab ab -aS -aZ -be -bn -by -bn -bU -bX -bX -bX -bX -bX -bU +hh +hs +hx +hG +hT +hG +iw +iA +iA +iA +iA +iA +iw aa aa aa aa aa aa -bc -cd -cg -bc -bc -bc +gM +iH +iK +gM +gM +gM aa aa aa @@ -52794,32 +50768,32 @@ aa aa aa ab -aQ -aT -ba -bf -bo -bz -bn -bU -bX -bX -bX -bX -bX -bU -bU +hd +hi +ht +hy +hH +hU +hG +iw +iA +iA +iA +iA +iA +iw +iw aa aa aa aa aa -bc -ce -ch -cj -ck -bc +gM +iI +iL +iN +iO +gM aa aa aa @@ -53052,31 +51026,31 @@ aa aa ab ab -aU -aZ -bg -bn -bn -bn -bU -bX -bX -bX -bX -bX -bU +hj +hs +hz +hG +hG +hG +iw +iA +iA +iA +iA +iA +iw aa aa aa aa aa aa -bc -cf -ci -bc -bC -bc +gM +iJ +iM +gM +hX +gM aa aa aa @@ -53311,29 +51285,29 @@ aa ab ab ab -bh -bp -bn -bK -bU -bX -bX -bX -bX -bX -bU -bc -bc -bc -bc -bc -bc -bc -bc -bc -bc -bC -bc +hA +hI +hG +if +iw +iA +iA +iA +iA +iA +iw +gM +gM +gM +gM +gM +gM +gM +gM +gM +gM +hX +gM aa aa aa @@ -53568,29 +51542,29 @@ aa ab ab ab -bc -bq -bA -bL -bU -bU -bU -bU -bU -bU -bU -bc -cb -bM -bM -bM -bM -bM -bM -bM -bM -cc -bc +gM +hJ +hV +ig +iw +iw +iw +iw +iw +iw +iw +gM +iF +iB +iB +iB +iB +iB +iB +iB +iB +iG +gM aa aa aa @@ -53825,29 +51799,29 @@ aa aa aa aa -bc -bc -bB -bc -bU +gM +gM +hW +gM +iw aa aa -bU +iw aa aa -bU -bc -bC -bc -bc -bc -bc -bc -bc -bc -bc -bc -bc +iw +gM +hX +gM +gM +gM +gM +gM +gM +gM +gM +gM +gM aa aa aa @@ -54066,11 +52040,11 @@ aa aa aa aa -mo -mo -mo -mo -mo +fB +fB +fB +fB +fB aa aa aa @@ -54083,19 +52057,19 @@ aa aa aa aa -bc -bC -bc -bc -bc -bc -bc -bc -bc -bc -bc -bC -bc +gM +hX +gM +gM +gM +gM +gM +gM +gM +gM +gM +hX +gM aa aa aa @@ -54322,37 +52296,37 @@ aa aa aa aa -mo -mo -mo -mo -pj -pw -pw -pV -pV -pV -pV -pV -pV -pV -pV -pV -pV -pV -rc -bD -rf -rr -bM -bM -bM -bM -bM -bM -bM -cc -bc +fB +fB +fB +fB +gz +gF +gF +gL +gL +gL +gL +gL +gL +gL +gL +gL +gL +gL +hK +hY +ih +ix +iB +iB +iB +iB +iB +iB +iB +iG +gM aa aa aa @@ -54565,27 +52539,27 @@ aa aa aa aa -mo -mo -mo -mo +fB +fB +fB +fB aa aa -mo -mo -mo -mo -mo +fB +fB +fB +fB +fB aa aa -mo -mo -mo -oL -oY -pk -mo -mo +fB +fB +fB +gp +gw +gA +fB +fB aa aa aa @@ -54597,19 +52571,19 @@ aa aa aa aa -bc -bc -rg -bc -bc -bc -bc -bc -bc -bc -bc -bc -bc +gM +gM +ii +gM +gM +gM +gM +gM +gM +gM +gM +gM +gM aa aa aa @@ -54821,29 +52795,29 @@ aa aa aa aa -mo -mo -mo -mo -mo -mo -mo -mo -mo -mo -mo -mo -mo -mo -mo -mo -mo -oM -oM -pl -mo -mo -mo +fB +fB +fB +fB +fB +fB +fB +fB +fB +fB +fB +fB +fB +fB +fB +fB +fB +gq +gq +gB +fB +fB +fB aa aa aa @@ -54855,9 +52829,9 @@ aa aa aa aa -bc -rh -bc +gM +ij +gM aa aa aa @@ -55077,30 +53051,30 @@ aa aa aa aa -mo -mo -mo -mF -mM -mo -mo -mo -mo -nl -na -nF -mo -mo -mo -mo -mo -oA -mG -mG -mG -pz -mo -mo +fB +fB +fB +fD +fG +fB +fB +fB +fB +fU +fK +gb +fB +fB +fB +fB +fB +gm +fE +fE +fE +gG +fB +fB aa aa aa @@ -55112,9 +53086,9 @@ aa aa aa aa -bc -bC -bc +gM +hX +gM aa aa aa @@ -55334,30 +53308,30 @@ aa aa aa aa -mo -mo -mz -mG -mG -mU -na -nf -nl -nl -nz -nl -nl -nf -na -oe -om -mG -oO -mG -pn -pA -mo -mo +fB +fB +fC +fE +fE +fI +fK +fP +fU +fU +fZ +fU +fU +fP +fK +gc +gh +fE +gr +fE +gC +gH +fB +fB aa aa aa @@ -55369,9 +53343,9 @@ aa aa aa aa -bc -bC -bc +gM +hX +gM aa aa aa @@ -55591,30 +53565,30 @@ aa aa aa aa -mo -mo -mo -mG -mO -mo -mo -mo -mo -nl -nA -nF -mo -mo -mo -mo -mo -oC -mG -mG -mG -pz -mo -mo +fB +fB +fB +fF +fH +fB +fB +fB +fB +fU +ga +gb +fB +fB +fB +fB +fB +gn +fE +fE +fE +gG +fB +fB aa aa aa @@ -55626,9 +53600,9 @@ aa aa aa aa -bc -bC -bc +gM +hX +gM aa aa aa @@ -55849,29 +53823,29 @@ aa aa aa aa -mo -mo -mo -mo -mo -mo -mo -mo -mo -mo -mo -mo -mo -mo -mo -mo -mo -oQ -oQ -pp -mo -mo -mo +fB +fB +fB +fB +fB +fB +fB +fB +fB +fB +fB +fB +fB +fB +fB +fB +fB +gs +gs +gD +fB +fB +fB aa aa aa @@ -55883,9 +53857,9 @@ aa aa aa aa -bc -bC -bc +gM +hX +gM aa aa aa @@ -56107,27 +54081,27 @@ aa aa aa aa -mo -mo -mo -mo +fB +fB +fB +fB aa aa -mo -mo -mo -mo -mo +fB +fB +fB +fB +fB aa aa -mo -mo -mo -oR -pe -oR -mo -mo +fB +fB +fB +gt +gx +gt +fB +fB aa aa aa @@ -56140,9 +54114,9 @@ aa aa aa aa -bc -ri -bc +gM +ik +gM aa aa aa @@ -56378,13 +54352,13 @@ aa aa aa aa -mo -mo -mo -mo -mo -mo -mo +fB +fB +fB +fB +fB +fB +fB aa aa aa @@ -56397,9 +54371,9 @@ aa aa aa aa -bc -rj -bc +gM +il +gM aa aa aa @@ -56636,11 +54610,11 @@ aa aa aa aa -mo -mo -mo -mo -mo +fB +fB +fB +fB +fB aa aa aa @@ -56654,9 +54628,9 @@ aa aa aa aa -bc -bC -bc +gM +hX +gM aa aa aa @@ -56911,9 +54885,9 @@ aa aa aa aa -bc -bC -bc +gM +hX +gM aa aa aa @@ -57168,9 +55142,9 @@ aa aa aa aa -bc -bC -bc +gM +hX +gM aa aa aa @@ -57425,9 +55399,9 @@ aa aa aa aa -bc -bC -bc +gM +hX +gM aa aa aa @@ -57682,9 +55656,9 @@ aa aa aa aa -bc -rk -bc +gM +im +gM aa aa aa @@ -57939,9 +55913,9 @@ aa aa aa aa -bc -rl -bc +gM +in +gM aa aa aa @@ -58189,16 +56163,16 @@ aa aa aa aa -bc -bc -bc -bc -bc +gM +gM +gM +gM +gM aa aa -bc -qs -bc +gM +gS +gM aa aa aa @@ -58445,17 +56419,17 @@ aa aa aa aa -bc -bc -bc -bc -bc -bc -bc +gM +gM +gM +gM +gM +gM +gM aa -bc -qs -bc +gM +gS +gM aa aa aa @@ -58699,20 +56673,20 @@ aa aa aa aa -bc -bc -bc -bc -bc -qB -qH -qN -bc -bc -bc -bc -qs -bc +gM +gM +gM +gM +gM +gV +he +hk +gM +gM +gM +gM +gS +gM aa aa aa @@ -58955,21 +56929,21 @@ aa aa aa aa -bc -bc -bc -bc -bc -qs -qs -qs -qO -bc -bc -bc -bc -qs -bc +gM +gM +gM +gM +gM +gS +gS +gS +hl +gM +gM +gM +gM +gS +gM aa aa aa @@ -59212,21 +57186,21 @@ aa aa aa aa -bc -bc -qh -qk -qk -qs -qD -qs -qk -qT -qD -rd -qs -rq -bc +gM +gM +gP +gR +gR +gS +gW +gS +gR +hu +gW +hL +gS +io +gM aa aa aa @@ -59469,21 +57443,21 @@ aa aa aa aa -bc -bc -bc -bc -bc -qs -qs -qs -qQ -bc -bc -bc -bc -bc -bc +gM +gM +gM +gM +gM +gS +gS +gS +hm +gM +gM +gM +gM +gM +gM aa aa aa @@ -59727,17 +57701,17 @@ aa aa aa aa -bc -bc -bc -bc -bc -qF -qL -qR -bc -bc -bc +gM +gM +gM +gM +gM +gX +hf +hn +gM +gM +gM aa aa aa @@ -59987,13 +57961,13 @@ aa aa aa aa -bc -bc -bc -bc -bc -bc -bc +gM +gM +gM +gM +gM +gM +gM aa aa aa @@ -60245,11 +58219,11 @@ aa aa aa aa -bc -bc -bc -bc -bc +gM +gM +gM +gM +gM aa aa aa diff --git a/maps/exodus/exodus-5_asteroid.dmm b/maps/exodus/exodus-5_asteroid.dmm index fdf0e0668dd..ca30e5e0878 100644 --- a/maps/exodus/exodus-5_asteroid.dmm +++ b/maps/exodus/exodus-5_asteroid.dmm @@ -1041,29 +1041,17 @@ /turf/simulated/shuttle/wall, /area/shuttle/alien/mine) "cq" = ( -/turf/simulated/shuttle/wall{ - icon_state = "pwall"; - dir = 1 - }, -/area/shuttle/alien/mine) -"cr" = ( -/turf/simulated/shuttle/wall{ - icon_state = "pwall"; - dir = 10 - }, -/area/shuttle/alien/mine) -"cs" = ( /obj/item/stack/rods, /turf/simulated/floor/tiled/airless{ icon_state = "steel_burned0" }, /area/outpost/abandoned) -"ct" = ( +"cr" = ( /turf/simulated/floor/tiled/airless{ icon_state = "steel_burned0" }, /area/outpost/abandoned) -"cu" = ( +"cs" = ( /obj/machinery/atmospherics/unary/vent_pump/on{ dir = 4 }, @@ -1072,7 +1060,7 @@ }, /turf/simulated/floor/tiled/white, /area/outpost/research/analysis) -"cv" = ( +"ct" = ( /obj/machinery/light{ icon_state = "tube1"; dir = 4 @@ -1096,14 +1084,14 @@ }, /turf/simulated/floor/tiled/white, /area/outpost/research/analysis) -"cw" = ( +"cu" = ( /obj/machinery/chem_master, /obj/effect/floor_decal/corner/blue{ dir = 10 }, /turf/simulated/floor/tiled/white, /area/outpost/research/chemistry) -"cx" = ( +"cv" = ( /obj/item/weapon/reagent_containers/glass/beaker/large, /obj/item/weapon/reagent_containers/dropper{ pixel_y = -4 @@ -1114,7 +1102,7 @@ }, /turf/simulated/floor/tiled/white, /area/outpost/research/chemistry) -"cy" = ( +"cw" = ( /obj/item/weapon/reagent_containers/glass/beaker/water, /obj/item/weapon/reagent_containers/glass/beaker/fuel, /obj/item/weapon/reagent_containers/glass/bottle/toxin, @@ -1131,7 +1119,7 @@ }, /turf/simulated/floor/tiled/white, /area/outpost/research/chemistry) -"cz" = ( +"cx" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/structure/cable/blue{ d1 = 1; @@ -1143,13 +1131,13 @@ }, /turf/simulated/floor/tiled/white, /area/outpost/research/chemistry) -"cA" = ( +"cy" = ( /obj/effect/floor_decal/corner/blue{ dir = 10 }, /turf/simulated/floor/tiled/white, /area/outpost/research/chemistry) -"cB" = ( +"cz" = ( /obj/machinery/door/firedoor{ dir = 4; name = "Firelock" @@ -1160,7 +1148,7 @@ }, /turf/simulated/floor/tiled/white, /area/outpost/research/chemistry) -"cC" = ( +"cA" = ( /obj/structure/disposalpipe/segment, /obj/structure/cable/blue{ d2 = 2; @@ -1175,7 +1163,7 @@ /obj/effect/floor_decal/corner/purple, /turf/simulated/floor/tiled/white, /area/outpost/research/lab) -"cD" = ( +"cB" = ( /obj/machinery/alarm{ dir = 2; pixel_y = 25 @@ -1185,7 +1173,7 @@ }, /turf/simulated/floor/tiled/white, /area/outpost/research/lab) -"cE" = ( +"cC" = ( /obj/machinery/atmospherics/pipe/manifold/hidden/supply{ dir = 8 }, @@ -1195,7 +1183,7 @@ }, /turf/simulated/floor/tiled/white, /area/outpost/research/lab) -"cF" = ( +"cD" = ( /obj/structure/sign/nosmoking_2{ pixel_x = 0; pixel_y = 32 @@ -1208,7 +1196,7 @@ }, /turf/simulated/floor/tiled/white, /area/outpost/research/lab) -"cG" = ( +"cE" = ( /obj/machinery/light{ dir = 1 }, @@ -1220,7 +1208,7 @@ }, /turf/simulated/floor/tiled/white, /area/outpost/research/lab) -"cH" = ( +"cF" = ( /obj/machinery/conveyor{ dir = 1; id = "anolaser" @@ -1231,7 +1219,7 @@ }, /turf/simulated/floor/tiled, /area/outpost/research/lab) -"cI" = ( +"cG" = ( /obj/machinery/door/firedoor{ dir = 1; name = "Firelock North" @@ -1249,7 +1237,7 @@ }, /turf/simulated/floor/tiled, /area/outpost/research/hallway) -"cJ" = ( +"cH" = ( /obj/machinery/door/firedoor{ dir = 1; name = "Firelock North" @@ -1260,7 +1248,7 @@ }, /turf/simulated/floor/tiled, /area/outpost/research/hallway) -"cK" = ( +"cI" = ( /obj/structure/grille, /obj/structure/window/reinforced{ dir = 1 @@ -1277,12 +1265,12 @@ }, /turf/simulated/floor/plating, /area/outpost/research/hallway) -"cL" = ( +"cJ" = ( /obj/machinery/hologram/holopad, /obj/effect/floor_decal/corner/white/diagonal, /turf/simulated/floor/tiled, /area/outpost/research/kitchen) -"cM" = ( +"cK" = ( /obj/machinery/camera/network/research_outpost{ c_tag = "Research Outpost Kitchen"; dir = 8 @@ -1290,14 +1278,14 @@ /obj/effect/floor_decal/corner/white/diagonal, /turf/simulated/floor/tiled, /area/outpost/research/kitchen) -"cN" = ( +"cL" = ( /obj/structure/disposalpipe/trunk, /obj/structure/disposaloutlet{ dir = 1 }, /turf/simulated/floor/asteroid/ash, /area/mine/explored) -"cO" = ( +"cM" = ( /obj/structure/window/reinforced/tinted{ dir = 4; icon_state = "twindow" @@ -1308,18 +1296,18 @@ }, /turf/simulated/shuttle/wall, /area/shuttle/alien/mine) -"cP" = ( +"cN" = ( /turf/simulated/shuttle/floor{ icon_state = "floor2" }, /area/shuttle/alien/mine) -"cQ" = ( +"cO" = ( /obj/machinery/door/airlock/hatch, /turf/simulated/shuttle/floor{ icon_state = "floor2" }, /area/shuttle/alien/mine) -"cR" = ( +"cP" = ( /obj/item/weapon/material/shard{ icon_state = "medium" }, @@ -1327,12 +1315,12 @@ icon_state = "steel_broken0" }, /area/outpost/abandoned) -"cS" = ( +"cQ" = ( /turf/simulated/floor/tiled/airless{ icon_state = "steel_broken0" }, /area/outpost/abandoned) -"cT" = ( +"cR" = ( /obj/structure/grille, /obj/structure/window/reinforced{ dir = 4 @@ -1343,10 +1331,10 @@ /obj/structure/window/reinforced, /turf/simulated/floor/plating, /area/outpost/abandoned) -"cU" = ( +"cS" = ( /turf/unsimulated/mask, /area/mine/explored) -"cV" = ( +"cT" = ( /obj/structure/sign/securearea{ desc = "A warning sign which reads 'KEEP CLEAR OF DOCKING AREA'."; name = "KEEP CLEAR: DOCKING AREA"; @@ -1356,7 +1344,7 @@ /obj/structure/lattice, /turf/template_noop, /area/template_noop) -"cW" = ( +"cU" = ( /obj/machinery/door/firedoor{ dir = 4; name = "Firelock" @@ -1374,7 +1362,7 @@ }, /turf/simulated/floor/tiled/white, /area/outpost/research/hallway) -"cX" = ( +"cV" = ( /obj/machinery/door/firedoor{ dir = 4; name = "Firelock" @@ -1391,7 +1379,7 @@ }, /turf/simulated/floor/tiled/white, /area/outpost/research/hallway) -"cY" = ( +"cW" = ( /obj/structure/disposalpipe/segment, /obj/machinery/atmospherics/unary/vent_scrubber/on{ dir = 4 @@ -1411,7 +1399,7 @@ }, /turf/simulated/floor/tiled/white, /area/outpost/research/lab) -"cZ" = ( +"cX" = ( /obj/structure/table/standard, /obj/item/weapon/flame/lighter/random, /obj/item/weapon/crowbar, @@ -1420,7 +1408,7 @@ }, /turf/simulated/floor/tiled/white, /area/outpost/research/lab) -"da" = ( +"cY" = ( /obj/machinery/artifact_analyser, /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ @@ -1428,17 +1416,17 @@ }, /turf/simulated/floor/tiled/white, /area/outpost/research/lab) -"db" = ( +"cZ" = ( /obj/machinery/artifact_scanpad, /turf/simulated/floor/tiled/white, /area/outpost/research/lab) -"dc" = ( +"da" = ( /obj/machinery/conveyor_switch{ id = "anolaser" }, /turf/simulated/floor/tiled/white, /area/outpost/research/lab) -"dd" = ( +"db" = ( /obj/machinery/conveyor{ dir = 1; id = "anolaser" @@ -1453,7 +1441,7 @@ }, /turf/simulated/floor/tiled, /area/outpost/research/lab) -"de" = ( +"dc" = ( /obj/machinery/atmospherics/pipe/manifold/hidden/supply{ dir = 8 }, @@ -1470,13 +1458,13 @@ /obj/machinery/firealarm/west, /turf/simulated/floor/tiled, /area/outpost/research/hallway) -"df" = ( +"dd" = ( /obj/machinery/atmospherics/unary/vent_pump/on{ dir = 8 }, /turf/simulated/floor/tiled/white, /area/outpost/research/hallway) -"dg" = ( +"de" = ( /obj/structure/grille, /obj/structure/window/reinforced{ dir = 4 @@ -1490,19 +1478,19 @@ }, /turf/simulated/floor/plating, /area/outpost/research/hallway) -"dh" = ( +"df" = ( /turf/simulated/floor/wood, /area/outpost/research/kitchen) -"di" = ( +"dg" = ( /obj/structure/table/standard, /turf/simulated/floor/wood, /area/outpost/research/kitchen) -"dj" = ( +"dh" = ( /obj/structure/table/standard, /obj/item/weapon/storage/box/donkpockets, /turf/simulated/floor/wood, /area/outpost/research/kitchen) -"dk" = ( +"di" = ( /obj/structure/disposalpipe/trunk{ dir = 4 }, @@ -1512,45 +1500,32 @@ }, /turf/simulated/floor/wood, /area/outpost/research/kitchen) -"dl" = ( +"dj" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, /turf/simulated/wall/r_wall, /area/outpost/research/kitchen) -"dm" = ( +"dk" = ( /obj/structure/disposalpipe/segment{ dir = 8; icon_state = "pipe-c" }, /turf/simulated/floor/asteroid/ash, /area/mine/explored) -"dn" = ( -/turf/template_noop, -/turf/simulated/shuttle/wall{ - icon_state = "pwall"; - dir = 5 - }, -/area/shuttle/alien/mine) -"do" = ( -/turf/simulated/shuttle/wall{ - icon_state = "pwall"; - dir = 6 - }, -/area/shuttle/alien/mine) -"dp" = ( +"dl" = ( /obj/item/weapon/material/shard, /turf/simulated/floor/tiled/airless{ icon_state = "steel_burned0" }, /area/outpost/abandoned) -"dq" = ( +"dm" = ( /turf/simulated/wall, /area/outpost/abandoned) -"dr" = ( +"dn" = ( /turf/template_noop, /area/shuttle/research/outpost) -"ds" = ( +"do" = ( /obj/machinery/requests_console{ department = "Science"; departmentType = 2; @@ -1567,7 +1542,7 @@ /obj/machinery/firealarm/north, /turf/simulated/floor/tiled/white, /area/outpost/research/hallway) -"dt" = ( +"dp" = ( /obj/structure/noticeboard/anomaly{ icon_state = "nboard05"; pixel_y = 32 @@ -1580,7 +1555,7 @@ }, /turf/simulated/floor/tiled/white, /area/outpost/research/hallway) -"du" = ( +"dq" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, @@ -1589,7 +1564,7 @@ }, /turf/simulated/floor/tiled/white, /area/outpost/research/hallway) -"dv" = ( +"dr" = ( /obj/machinery/light{ dir = 1 }, @@ -1614,7 +1589,7 @@ }, /turf/simulated/floor/tiled/white, /area/outpost/research/hallway) -"dw" = ( +"ds" = ( /obj/structure/sign/science{ desc = "A warning sign which reads 'MASS SPECTROMETRY'"; name = "\improper MASS SPECTROMETRY"; @@ -1633,7 +1608,7 @@ }, /turf/simulated/floor/tiled/white, /area/outpost/research/hallway) -"dx" = ( +"dt" = ( /obj/machinery/atmospherics/pipe/manifold4w/hidden/supply, /obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, /obj/structure/cable/blue{ @@ -1647,7 +1622,7 @@ }, /turf/simulated/floor/tiled/white, /area/outpost/research/hallway) -"dy" = ( +"du" = ( /obj/machinery/alarm{ dir = 2; pixel_y = 25 @@ -1660,7 +1635,7 @@ }, /turf/simulated/floor/tiled/white, /area/outpost/research/hallway) -"dz" = ( +"dv" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, @@ -1670,7 +1645,7 @@ /obj/machinery/firealarm/north, /turf/simulated/floor/tiled/white, /area/outpost/research/hallway) -"dA" = ( +"dw" = ( /obj/structure/closet/walllocker/emerglocker/north, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 @@ -1683,7 +1658,7 @@ }, /turf/simulated/floor/tiled/white, /area/outpost/research/hallway) -"dB" = ( +"dx" = ( /obj/machinery/door/firedoor{ dir = 4; name = "Firelock East" @@ -1699,7 +1674,7 @@ }, /turf/simulated/floor/tiled/white, /area/outpost/research/hallway) -"dC" = ( +"dy" = ( /obj/machinery/atmospherics/pipe/manifold/hidden/supply{ dir = 4 }, @@ -1716,7 +1691,7 @@ }, /turf/simulated/floor/tiled/white, /area/outpost/research/hallway) -"dD" = ( +"dz" = ( /obj/structure/sign/chemistry{ desc = "A warning sign which reads 'SAMPLE PREPARATION'"; name = "\improper SAMPLE PREPARATION"; @@ -1738,7 +1713,7 @@ }, /turf/simulated/floor/tiled/white, /area/outpost/research/hallway) -"dE" = ( +"dA" = ( /obj/structure/disposalpipe/segment, /obj/machinery/light/small{ dir = 8 @@ -1757,11 +1732,11 @@ }, /turf/simulated/floor/tiled/white, /area/outpost/research/lab) -"dF" = ( +"dB" = ( /obj/item/weapon/stool/padded, /turf/simulated/floor/tiled/white, /area/outpost/research/lab) -"dG" = ( +"dC" = ( /obj/structure/table/standard, /obj/item/weapon/reagent_containers/dropper{ pixel_y = -4 @@ -1770,10 +1745,10 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/tiled/white, /area/outpost/research/lab) -"dH" = ( +"dD" = ( /turf/simulated/floor/tiled/white, /area/outpost/research/lab) -"dI" = ( +"dE" = ( /obj/machinery/power/emitter{ anchored = 1; dir = 4; @@ -1786,7 +1761,7 @@ /obj/effect/floor_decal/industrial/hatch/yellow, /turf/simulated/floor/tiled, /area/outpost/research/lab) -"dJ" = ( +"dF" = ( /obj/machinery/conveyor{ dir = 1; id = "anolaser" @@ -1806,7 +1781,7 @@ }, /turf/simulated/floor/tiled, /area/outpost/research/lab) -"dK" = ( +"dG" = ( /obj/structure/extinguisher_cabinet{ pixel_x = -25; pixel_y = 0 @@ -1823,10 +1798,10 @@ }, /turf/simulated/floor/tiled/white, /area/outpost/research/hallway) -"dL" = ( +"dH" = ( /turf/simulated/floor/tiled/white, /area/outpost/research/hallway) -"dM" = ( +"dI" = ( /obj/item/stack/rods, /obj/structure/window/reinforced{ dir = 4 @@ -1836,7 +1811,7 @@ icon_state = "dmg2" }, /area/outpost/abandoned) -"dN" = ( +"dJ" = ( /obj/structure/grille, /obj/structure/window/reinforced{ dir = 8 @@ -1852,12 +1827,12 @@ }, /turf/simulated/floor/plating, /area/outpost/research/hallway) -"dO" = ( +"dK" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/tiled/white, /area/outpost/research/hallway) -"dP" = ( +"dL" = ( /obj/structure/cable/blue{ d1 = 2; d2 = 4; @@ -1865,7 +1840,7 @@ }, /turf/simulated/floor/tiled/white, /area/outpost/research/hallway) -"dQ" = ( +"dM" = ( /obj/machinery/atmospherics/unary/vent_scrubber/on{ dir = 1 }, @@ -1876,7 +1851,7 @@ }, /turf/simulated/floor/tiled/white, /area/outpost/research/hallway) -"dR" = ( +"dN" = ( /obj/structure/cable/blue{ d1 = 4; d2 = 8; @@ -1884,7 +1859,7 @@ }, /turf/simulated/floor/tiled/white, /area/outpost/research/hallway) -"dS" = ( +"dO" = ( /obj/machinery/atmospherics/unary/vent_pump/on{ dir = 1 }, @@ -1900,7 +1875,7 @@ }, /turf/simulated/floor/tiled/white, /area/outpost/research/hallway) -"dT" = ( +"dP" = ( /obj/machinery/hologram/holopad, /obj/structure/cable/blue{ d1 = 4; @@ -1909,7 +1884,7 @@ }, /turf/simulated/floor/tiled/white, /area/outpost/research/hallway) -"dU" = ( +"dQ" = ( /obj/machinery/door/firedoor{ dir = 4; name = "Firelock East" @@ -1924,7 +1899,7 @@ }, /turf/simulated/floor/tiled/white, /area/outpost/research/hallway) -"dV" = ( +"dR" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/structure/cable/blue{ @@ -1942,13 +1917,13 @@ }, /turf/simulated/floor/tiled/white, /area/outpost/research/hallway) -"dW" = ( +"dS" = ( /obj/effect/floor_decal/corner/blue/diagonal{ dir = 4 }, /turf/simulated/floor/tiled/white, /area/outpost/research/hallway) -"dX" = ( +"dT" = ( /obj/machinery/door/firedoor{ dir = 4; name = "Firelock" @@ -1959,7 +1934,7 @@ }, /turf/simulated/floor/tiled/white, /area/outpost/research/hallway) -"dY" = ( +"dU" = ( /obj/structure/disposalpipe/segment, /obj/structure/cable/blue{ d1 = 1; @@ -1971,7 +1946,7 @@ }, /turf/simulated/floor/tiled/white, /area/outpost/research/lab) -"dZ" = ( +"dV" = ( /obj/structure/cable/blue{ d1 = 4; d2 = 8; @@ -1982,7 +1957,7 @@ }, /turf/simulated/floor/tiled/white, /area/outpost/research/lab) -"ea" = ( +"dW" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 5 }, @@ -1999,7 +1974,7 @@ }, /turf/simulated/floor/tiled/white, /area/outpost/research/lab) -"eb" = ( +"dX" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, @@ -2016,7 +1991,7 @@ }, /turf/simulated/floor/tiled/white, /area/outpost/research/lab) -"ec" = ( +"dY" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, @@ -2038,7 +2013,7 @@ }, /turf/simulated/floor/tiled/white, /area/outpost/research/lab) -"ed" = ( +"dZ" = ( /obj/machinery/atmospherics/pipe/manifold/hidden/supply{ dir = 1 }, @@ -2055,7 +2030,7 @@ }, /turf/simulated/floor/tiled/white, /area/outpost/research/lab) -"ee" = ( +"ea" = ( /obj/machinery/door/firedoor{ dir = 4; name = "Firelock" @@ -2077,7 +2052,7 @@ }, /turf/simulated/floor/tiled/white, /area/outpost/research/hallway) -"ef" = ( +"eb" = ( /obj/machinery/atmospherics/pipe/manifold/hidden/supply{ dir = 4 }, @@ -2099,14 +2074,14 @@ }, /turf/simulated/floor/tiled/white, /area/outpost/research/hallway) -"eg" = ( +"ec" = ( /obj/machinery/light{ icon_state = "tube1"; dir = 4 }, /turf/simulated/floor/tiled/white, /area/outpost/research/hallway) -"eh" = ( +"ed" = ( /obj/structure/grille, /obj/structure/window/reinforced{ dir = 4 @@ -2121,33 +2096,33 @@ }, /turf/simulated/floor/plating, /area/outpost/research/hallway) -"ei" = ( +"ee" = ( /obj/machinery/vending/coffee, /turf/simulated/floor/wood, /area/outpost/research/kitchen) -"ej" = ( +"ef" = ( /obj/machinery/vending/snack, /turf/simulated/floor/wood, /area/outpost/research/kitchen) -"ek" = ( +"eg" = ( /obj/structure/table/standard, /obj/item/weapon/storage/box/donkpockets, /obj/machinery/light, /turf/simulated/floor/wood, /area/outpost/research/kitchen) -"el" = ( +"eh" = ( /obj/structure/table/standard, /obj/machinery/microwave, /turf/simulated/floor/wood, /area/outpost/research/kitchen) -"em" = ( +"ei" = ( /obj/structure/lattice, /obj/item/weapon/material/shard{ icon_state = "medium" }, /turf/template_noop, /area/template_noop) -"en" = ( +"ej" = ( /obj/structure/grille, /obj/structure/window/reinforced{ dir = 4 @@ -2157,7 +2132,7 @@ icon_state = "dmg2" }, /area/outpost/abandoned) -"eo" = ( +"ek" = ( /obj/structure/grille, /obj/structure/window/reinforced{ dir = 8 @@ -2170,7 +2145,7 @@ }, /turf/simulated/floor/plating, /area/outpost/research/hallway) -"ep" = ( +"el" = ( /obj/structure/cable/blue{ d1 = 1; d2 = 2; @@ -2178,23 +2153,23 @@ }, /turf/simulated/floor/tiled/white, /area/outpost/research/hallway) -"eq" = ( +"em" = ( /obj/structure/window/reinforced{ dir = 8 }, /turf/simulated/floor/wood, /area/outpost/research/hallway) -"er" = ( +"en" = ( /obj/structure/bed/chair{ dir = 4 }, /turf/simulated/floor/wood, /area/outpost/research/hallway) -"es" = ( +"eo" = ( /obj/structure/table/standard, /turf/simulated/floor/wood, /area/outpost/research/hallway) -"et" = ( +"ep" = ( /obj/structure/table/standard, /obj/item/weapon/storage/box/drinkingglasses{ pixel_x = 1; @@ -2202,16 +2177,16 @@ }, /turf/simulated/floor/wood, /area/outpost/research/hallway) -"eu" = ( +"eq" = ( /obj/structure/bed/chair{ dir = 8 }, /turf/simulated/floor/wood, /area/outpost/research/hallway) -"ev" = ( +"er" = ( /turf/simulated/floor/wood, /area/outpost/research/hallway) -"ew" = ( +"es" = ( /obj/machinery/vending/cola, /obj/machinery/status_display{ layer = 4; @@ -2220,7 +2195,7 @@ }, /turf/simulated/floor/wood, /area/outpost/research/hallway) -"ex" = ( +"et" = ( /obj/machinery/atmospherics/pipe/manifold/hidden/supply{ dir = 8 }, @@ -2235,7 +2210,7 @@ }, /turf/simulated/floor/tiled/white, /area/outpost/research/hallway) -"ey" = ( +"eu" = ( /obj/structure/sign/science{ desc = "A warning sign which reads 'ANOMALOUS MATERIALS'"; name = "\improper ANOMALOUS MATERIALS"; @@ -2249,15 +2224,15 @@ }, /turf/simulated/floor/tiled/white, /area/outpost/research/hallway) -"ez" = ( +"ev" = ( /obj/structure/disposalpipe/segment, /turf/simulated/floor/tiled/white, /area/outpost/research/lab) -"eA" = ( +"ew" = ( /obj/machinery/firealarm/south, /turf/simulated/floor/tiled/white, /area/outpost/research/lab) -"eB" = ( +"ex" = ( /obj/structure/table/rack, /obj/item/clothing/head/welding, /obj/item/weapon/weldingtool, @@ -2266,7 +2241,7 @@ }, /turf/simulated/floor/tiled/white, /area/outpost/research/lab) -"eC" = ( +"ey" = ( /obj/structure/table/standard, /obj/machinery/cell_charger, /obj/item/weapon/screwdriver{ @@ -2275,12 +2250,12 @@ /obj/item/weapon/melee/baton/loaded, /turf/simulated/floor/tiled/white, /area/outpost/research/lab) -"eD" = ( +"ez" = ( /obj/machinery/light/small, /obj/machinery/hologram/holopad, /turf/simulated/floor/tiled/white, /area/outpost/research/lab) -"eE" = ( +"eA" = ( /obj/machinery/atmospherics/unary/vent_pump/on{ dir = 1 }, @@ -2290,7 +2265,7 @@ }, /turf/simulated/floor/tiled/white, /area/outpost/research/lab) -"eF" = ( +"eB" = ( /obj/structure/sign/science{ desc = "A warning sign which reads 'ANOMALOUS MATERIALS'"; name = "\improper ANOMALOUS MATERIALS"; @@ -2308,7 +2283,7 @@ }, /turf/simulated/floor/tiled/white, /area/outpost/research/hallway) -"eG" = ( +"eC" = ( /obj/machinery/alarm{ dir = 8; icon_state = "alarm0"; @@ -2316,23 +2291,23 @@ }, /turf/simulated/floor/tiled/white, /area/outpost/research/hallway) -"eH" = ( +"eD" = ( /turf/simulated/wall, /area/outpost/research/disposal) -"eI" = ( +"eE" = ( /obj/structure/disposalpipe/segment{ dir = 4; icon_state = "pipe-c" }, /turf/simulated/wall/r_wall, /area/outpost/research/disposal) -"eJ" = ( +"eF" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, /turf/simulated/floor/asteroid/ash, /area/outpost/research/disposal) -"eK" = ( +"eG" = ( /obj/structure/disposaloutlet{ dir = 2 }, @@ -2341,7 +2316,7 @@ }, /turf/simulated/floor/asteroid/ash, /area/outpost/research/disposal) -"eL" = ( +"eH" = ( /obj/structure/grille, /obj/structure/window/reinforced{ dir = 8 @@ -2353,7 +2328,7 @@ icon_state = "dmg2" }, /area/outpost/abandoned) -"eM" = ( +"eI" = ( /obj/structure/grille, /obj/structure/window/reinforced{ dir = 1 @@ -2363,7 +2338,7 @@ icon_state = "dmg2" }, /area/outpost/abandoned) -"eN" = ( +"eJ" = ( /obj/structure/grille, /obj/structure/window/reinforced, /obj/structure/window/reinforced{ @@ -2376,13 +2351,13 @@ icon_state = "dmg2" }, /area/outpost/abandoned) -"eO" = ( +"eK" = ( /obj/effect/decal/remains/xeno, /turf/simulated/floor/tiled/airless{ icon_state = "steel_burned0" }, /area/outpost/abandoned) -"eP" = ( +"eL" = ( /obj/structure/table/standard, /obj/item/weapon/paper_bin{ pixel_x = -2; @@ -2393,21 +2368,21 @@ /obj/item/weapon/tape_roll, /turf/simulated/floor/wood, /area/outpost/research/hallway) -"eQ" = ( +"eM" = ( /obj/structure/table/standard, /obj/item/device/camera, /obj/item/weapon/stamp, /obj/item/weapon/folder, /turf/simulated/floor/wood, /area/outpost/research/hallway) -"eR" = ( +"eN" = ( /obj/machinery/vending/snack, /obj/machinery/light{ dir = 4 }, /turf/simulated/floor/wood, /area/outpost/research/hallway) -"eS" = ( +"eO" = ( /obj/machinery/door/firedoor{ dir = 4; name = "Firelock" @@ -2421,7 +2396,7 @@ }, /turf/simulated/floor/tiled/white, /area/outpost/research/hallway) -"eT" = ( +"eP" = ( /obj/machinery/light{ icon_state = "tube1"; dir = 4 @@ -2435,7 +2410,7 @@ }, /turf/simulated/floor/tiled/white, /area/outpost/research/hallway) -"eU" = ( +"eQ" = ( /obj/machinery/door/firedoor{ dir = 4; name = "Firelock" @@ -2447,7 +2422,7 @@ }, /turf/simulated/floor/tiled/white, /area/outpost/research/hallway) -"eV" = ( +"eR" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/structure/cable/blue{ @@ -2461,7 +2436,7 @@ }, /turf/simulated/floor/tiled/white, /area/outpost/research/hallway) -"eW" = ( +"eS" = ( /obj/structure/table/rack, /obj/item/weapon/storage/toolbox/emergency{ pixel_x = 5; @@ -2469,23 +2444,23 @@ }, /turf/simulated/floor/plating, /area/outpost/research/disposal) -"eX" = ( +"eT" = ( /obj/structure/table/rack, /obj/item/weapon/storage/box/lights/mixed, /turf/simulated/floor/plating, /area/outpost/research/disposal) -"eY" = ( +"eU" = ( /obj/machinery/alarm{ frequency = 1439; pixel_y = 22 }, /turf/simulated/floor/plating, /area/outpost/research/disposal) -"eZ" = ( +"eV" = ( /obj/machinery/space_heater, /turf/simulated/floor/plating, /area/outpost/research/disposal) -"fa" = ( +"eW" = ( /obj/structure/grille, /obj/structure/window/reinforced{ dir = 4 @@ -2502,34 +2477,34 @@ }, /turf/simulated/floor/plating, /area/outpost/research/disposal) -"fb" = ( +"eX" = ( /turf/simulated/floor/asteroid/ash, /area/outpost/research/disposal) -"fc" = ( +"eY" = ( /obj/machinery/mass_driver{ dir = 4; id = "research" }, /turf/simulated/floor/asteroid/ash, /area/outpost/research/disposal) -"fd" = ( +"eZ" = ( /obj/item/stack/rods, /obj/structure/lattice, /turf/template_noop, /area/template_noop) -"fe" = ( +"fa" = ( /obj/item/weapon/material/shard, /obj/item/stack/rods, /turf/simulated/floor/airless{ icon_state = "dmg2" }, /area/outpost/abandoned) -"ff" = ( +"fb" = ( /turf/simulated/floor/airless{ icon_state = "dmg2" }, /area/outpost/abandoned) -"fg" = ( +"fc" = ( /obj/structure/grille, /obj/structure/window/reinforced{ dir = 4 @@ -2538,13 +2513,13 @@ icon_state = "dmg2" }, /area/outpost/abandoned) -"fh" = ( +"fd" = ( /obj/structure/table/standard, /turf/simulated/floor/tiled/airless{ icon_state = "steel_burned0" }, /area/outpost/abandoned) -"fi" = ( +"fe" = ( /obj/structure/grille, /obj/structure/window/reinforced{ dir = 4 @@ -2559,10 +2534,10 @@ icon_state = "dmg2" }, /area/outpost/abandoned) -"fj" = ( +"ff" = ( /turf/simulated/floor/plating, /area/outpost/abandoned) -"fk" = ( +"fg" = ( /obj/structure/extinguisher_cabinet{ pixel_x = -25; pixel_y = 0 @@ -2573,7 +2548,7 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/tiled/white, /area/outpost/research/hallway) -"fl" = ( +"fh" = ( /obj/machinery/atmospherics/unary/vent_pump/on{ dir = 8 }, @@ -2584,18 +2559,18 @@ }, /turf/simulated/floor/tiled/white, /area/outpost/research/hallway) -"fm" = ( +"fi" = ( /obj/structure/window/reinforced{ dir = 8 }, /obj/structure/reagent_dispensers/water_cooler, /turf/simulated/floor/wood, /area/outpost/research/hallway) -"fn" = ( +"fj" = ( /obj/structure/bookcase/manuals/xenoarchaeology, /turf/simulated/floor/wood, /area/outpost/research/hallway) -"fo" = ( +"fk" = ( /obj/machinery/newscaster{ layer = 3.3; pixel_x = 0; @@ -2603,11 +2578,11 @@ }, /turf/simulated/floor/wood, /area/outpost/research/hallway) -"fp" = ( +"fl" = ( /obj/machinery/vending/coffee, /turf/simulated/floor/wood, /area/outpost/research/hallway) -"fq" = ( +"fm" = ( /obj/machinery/atmospherics/pipe/manifold/hidden/supply{ dir = 8 }, @@ -2623,20 +2598,20 @@ /obj/machinery/firealarm/west, /turf/simulated/floor/tiled/white, /area/outpost/research/hallway) -"fr" = ( +"fn" = ( /obj/structure/window/reinforced{ dir = 8 }, /turf/simulated/floor/tiled, /area/outpost/research/hallway) -"fs" = ( +"fo" = ( /obj/structure/disposalpipe/segment, /obj/machinery/atmospherics/unary/vent_pump/on{ dir = 4 }, /turf/simulated/floor/tiled, /area/outpost/research/hallway) -"ft" = ( +"fp" = ( /obj/machinery/light{ dir = 1 }, @@ -2646,7 +2621,7 @@ /obj/machinery/washing_machine, /turf/simulated/floor/tiled, /area/outpost/research/hallway) -"fu" = ( +"fq" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, @@ -2656,7 +2631,7 @@ }, /turf/simulated/floor/tiled, /area/outpost/research/hallway) -"fv" = ( +"fr" = ( /obj/structure/table/rack, /obj/item/clothing/suit/bio_suit/anomaly, /obj/item/clothing/head/bio_hood/anomaly, @@ -2674,14 +2649,14 @@ /obj/effect/floor_decal/industrial/hatch/yellow, /turf/simulated/floor/tiled, /area/outpost/research/hallway) -"fw" = ( +"fs" = ( /obj/machinery/atmospherics/unary/vent_pump/on{ dir = 4 }, /mob/living/carbon/human/monkey, /turf/simulated/floor/tiled/white, /area/outpost/research/hallway) -"fx" = ( +"ft" = ( /obj/machinery/door/window/westleft{ dir = 4; name = "Monkey Pen"; @@ -2696,7 +2671,7 @@ /mob/living/carbon/human/monkey, /turf/simulated/floor/tiled/white, /area/outpost/research/hallway) -"fy" = ( +"fu" = ( /obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ dir = 4 }, @@ -2710,25 +2685,25 @@ }, /turf/simulated/floor/tiled/white, /area/outpost/research/hallway) -"fz" = ( +"fv" = ( /obj/machinery/portable_atmospherics/canister/air, /turf/simulated/floor/plating, /area/outpost/research/disposal) -"fA" = ( +"fw" = ( /obj/machinery/atmospherics/unary/vent_scrubber/on, /turf/simulated/floor/plating, /area/outpost/research/disposal) -"fB" = ( +"fx" = ( /obj/machinery/conveyor_switch{ id = "archgunc" }, /turf/simulated/floor/plating, /area/outpost/research/disposal) -"fC" = ( +"fy" = ( /obj/machinery/portable_atmospherics/powered/scrubber, /turf/simulated/floor/plating, /area/outpost/research/disposal) -"fD" = ( +"fz" = ( /obj/structure/grille, /obj/structure/window/reinforced{ dir = 8 @@ -2743,13 +2718,13 @@ }, /turf/simulated/floor/plating, /area/outpost/research/disposal) -"fE" = ( +"fA" = ( /obj/item/stack/rods, /turf/simulated/floor/airless{ icon_state = "dmg2" }, /area/outpost/abandoned) -"fF" = ( +"fB" = ( /obj/item/weapon/material/shard{ icon_state = "small" }, @@ -2758,17 +2733,17 @@ icon_state = "dmg2" }, /area/outpost/abandoned) -"fG" = ( +"fC" = ( /turf/simulated/floor/tiled/airless{ icon_state = "steel_broken1" }, /area/outpost/abandoned) -"fH" = ( +"fD" = ( /turf/simulated/floor/tiled/airless{ icon_state = "steel_broken2" }, /area/outpost/abandoned) -"fI" = ( +"fE" = ( /obj/structure/grille, /obj/structure/window/reinforced, /obj/structure/window/reinforced{ @@ -2781,7 +2756,7 @@ icon_state = "dmg2" }, /area/outpost/abandoned) -"fJ" = ( +"fF" = ( /obj/structure/sign/securearea{ desc = "A warning sign which reads 'KEEP CLEAR OF DOCKING AREA'."; name = "KEEP CLEAR: DOCKING AREA"; @@ -2789,7 +2764,7 @@ }, /turf/simulated/wall, /area/outpost/research/dock) -"fK" = ( +"fG" = ( /obj/structure/grille, /obj/structure/window/reinforced{ dir = 8 @@ -2803,7 +2778,7 @@ }, /turf/simulated/floor/plating, /area/outpost/research/dock) -"fL" = ( +"fH" = ( /obj/structure/grille, /obj/structure/window/reinforced{ dir = 1 @@ -2814,7 +2789,7 @@ }, /turf/simulated/floor/plating, /area/outpost/research/dock) -"fM" = ( +"fI" = ( /obj/structure/grille, /obj/structure/window/reinforced{ dir = 4 @@ -2828,7 +2803,7 @@ }, /turf/simulated/floor/plating, /area/outpost/research/dock) -"fN" = ( +"fJ" = ( /obj/machinery/door/firedoor{ dir = 2 }, @@ -2842,7 +2817,7 @@ }, /turf/simulated/floor/plating, /area/outpost/research/dock) -"fO" = ( +"fK" = ( /obj/structure/grille, /obj/structure/window/reinforced{ dir = 4 @@ -2855,11 +2830,11 @@ }, /turf/simulated/floor/plating, /area/outpost/research/dock) -"fP" = ( +"fL" = ( /obj/structure/sign/science, /turf/simulated/wall, /area/outpost/research/dock) -"fQ" = ( +"fM" = ( /obj/machinery/door/firedoor{ dir = 4; name = "Firelock" @@ -2872,7 +2847,7 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/tiled/white, /area/outpost/research/dock) -"fR" = ( +"fN" = ( /obj/machinery/door/firedoor{ dir = 4; name = "Firelock" @@ -2888,7 +2863,7 @@ }, /turf/simulated/floor/tiled/white, /area/outpost/research/dock) -"fS" = ( +"fO" = ( /obj/structure/window/reinforced{ dir = 5 }, @@ -2898,10 +2873,10 @@ }, /turf/simulated/floor/wood, /area/outpost/research/medical) -"fT" = ( +"fP" = ( /turf/simulated/wall/r_wall, /area/outpost/research/eva) -"fU" = ( +"fQ" = ( /obj/structure/extinguisher_cabinet{ pixel_x = -25; pixel_y = 0 @@ -2918,7 +2893,7 @@ }, /turf/simulated/floor/tiled/white, /area/outpost/research/hallway) -"fV" = ( +"fR" = ( /obj/machinery/door/window/westleft{ dir = 8; name = "Locker room"; @@ -2927,18 +2902,18 @@ }, /turf/simulated/floor/tiled, /area/outpost/research/hallway) -"fW" = ( +"fS" = ( /obj/structure/disposalpipe/segment, /turf/simulated/floor/tiled, /area/outpost/research/hallway) -"fX" = ( +"fT" = ( /obj/effect/floor_decal/industrial/warning{ icon_state = "warning"; dir = 4 }, /turf/simulated/floor/tiled, /area/outpost/research/hallway) -"fY" = ( +"fU" = ( /obj/structure/table/rack, /obj/item/clothing/suit/bio_suit/anomaly, /obj/item/clothing/head/bio_hood/anomaly, @@ -2949,7 +2924,7 @@ /obj/effect/floor_decal/industrial/hatch/yellow, /turf/simulated/floor/tiled, /area/outpost/research/hallway) -"fZ" = ( +"fV" = ( /obj/machinery/alarm{ dir = 4; pixel_x = -25; @@ -2958,7 +2933,7 @@ /mob/living/carbon/human/monkey, /turf/simulated/floor/tiled/white, /area/outpost/research/hallway) -"ga" = ( +"fW" = ( /obj/structure/window/reinforced{ dir = 4 }, @@ -2966,7 +2941,7 @@ /mob/living/carbon/human/monkey, /turf/simulated/floor/tiled/white, /area/outpost/research/hallway) -"gb" = ( +"fX" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ dir = 8 @@ -2978,13 +2953,13 @@ }, /turf/simulated/floor/tiled/white, /area/outpost/research/hallway) -"gc" = ( +"fY" = ( /obj/machinery/atmospherics/unary/vent_scrubber/on{ dir = 8 }, /turf/simulated/floor/tiled/white, /area/outpost/research/hallway) -"gd" = ( +"fZ" = ( /obj/structure/cable/blue{ d2 = 4; icon_state = "0-4" @@ -2999,7 +2974,7 @@ }, /turf/simulated/floor/plating, /area/outpost/research/disposal) -"ge" = ( +"ga" = ( /obj/structure/cable/blue{ d1 = 2; d2 = 8; @@ -3016,7 +2991,7 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/plating, /area/outpost/research/disposal) -"gf" = ( +"gb" = ( /obj/machinery/conveyor{ dir = 4; id = "archgunc" @@ -3027,7 +3002,7 @@ }, /turf/simulated/floor/plating, /area/outpost/research/disposal) -"gg" = ( +"gc" = ( /obj/structure/sign/deathsposal{ pixel_x = 32 }, @@ -3047,14 +3022,14 @@ }, /turf/simulated/floor/plating, /area/outpost/research/disposal) -"gh" = ( +"gd" = ( /obj/structure/disposalpipe/segment{ dir = 8; icon_state = "pipe-c" }, /turf/simulated/wall/r_wall, /area/outpost/research/disposal) -"gi" = ( +"ge" = ( /obj/structure/grille, /obj/structure/window/reinforced{ dir = 8 @@ -3068,15 +3043,15 @@ }, /turf/simulated/floor/plating, /area/outpost/research/hallway) -"gj" = ( +"gf" = ( /turf/simulated/wall/r_wall, /area/outpost/research/anomaly_analysis) -"gk" = ( +"gg" = ( /obj/item/weapon/material/shard, /obj/structure/lattice, /turf/template_noop, /area/template_noop) -"gl" = ( +"gh" = ( /obj/item/weapon/material/shard{ icon_state = "small" }, @@ -3084,26 +3059,26 @@ icon_state = "dmg2" }, /area/outpost/abandoned) -"gm" = ( +"gi" = ( /obj/effect/gibspawner/robot, /turf/simulated/floor/tiled/airless{ icon_state = "steel_broken0" }, /area/outpost/abandoned) -"gn" = ( +"gj" = ( /obj/effect/gibspawner/human, /turf/simulated/floor/tiled/airless{ icon_state = "steel_broken1" }, /area/outpost/abandoned) -"go" = ( +"gk" = ( /obj/effect/decal/remains/xeno, /turf/simulated/floor/plating, /area/outpost/abandoned) -"gp" = ( +"gl" = ( /turf/unsimulated/mask, /area/template_noop) -"gq" = ( +"gm" = ( /obj/structure/grille, /obj/structure/window/reinforced{ dir = 8 @@ -3119,15 +3094,15 @@ }, /turf/simulated/floor/plating, /area/outpost/research/dock) -"gr" = ( +"gn" = ( /obj/machinery/computer/shuttle_control/research, /obj/machinery/atmospherics/unary/vent_scrubber/on, /turf/simulated/floor/tiled, /area/outpost/research/dock) -"gs" = ( +"go" = ( /turf/simulated/floor/tiled, /area/outpost/research/dock) -"gt" = ( +"gp" = ( /obj/machinery/embedded_controller/radio/simple_docking_controller{ frequency = 1380; id_tag = "research_outpost_dock"; @@ -3142,14 +3117,14 @@ }, /turf/simulated/floor/tiled, /area/outpost/research/dock) -"gu" = ( +"gq" = ( /obj/effect/floor_decal/industrial/warning{ icon_state = "warning"; dir = 1 }, /turf/simulated/floor/tiled, /area/outpost/research/dock) -"gv" = ( +"gr" = ( /obj/structure/sign/securearea{ desc = "A warning sign which reads 'VACUUM'"; icon_state = "space"; @@ -3164,7 +3139,7 @@ }, /turf/simulated/floor/tiled, /area/outpost/research/dock) -"gw" = ( +"gs" = ( /obj/structure/grille, /obj/structure/window/reinforced{ dir = 4 @@ -3178,20 +3153,20 @@ }, /turf/simulated/floor/plating, /area/outpost/research/dock) -"gx" = ( +"gt" = ( /obj/machinery/atmospherics/unary/vent_pump/on{ dir = 4 }, /turf/simulated/floor/tiled, /area/outpost/research/dock) -"gy" = ( +"gu" = ( /obj/machinery/atmospherics/pipe/manifold/hidden/supply{ dir = 4 }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/tiled, /area/outpost/research/dock) -"gz" = ( +"gv" = ( /obj/structure/cable/blue{ d1 = 1; d2 = 2; @@ -3199,7 +3174,7 @@ }, /turf/simulated/floor/tiled, /area/outpost/research/dock) -"gA" = ( +"gw" = ( /obj/structure/window/reinforced{ dir = 5; health = 1e+007 @@ -3210,13 +3185,13 @@ }, /turf/simulated/floor/tiled, /area/outpost/research/medical) -"gB" = ( +"gx" = ( /obj/structure/table/standard, /obj/item/weapon/storage/firstaid/regular, /obj/item/weapon/storage/firstaid/toxin, /turf/simulated/floor/tiled, /area/outpost/research/medical) -"gC" = ( +"gy" = ( /obj/structure/table/standard, /obj/item/weapon/storage/firstaid/o2{ pixel_x = 2; @@ -3234,18 +3209,18 @@ /obj/machinery/atmospherics/unary/vent_pump/on, /turf/simulated/floor/tiled, /area/outpost/research/medical) -"gD" = ( +"gz" = ( /obj/machinery/alarm{ pixel_y = 22 }, /obj/effect/floor_decal/industrial/outline/grey, /turf/simulated/floor/tiled/dark, /area/outpost/research/eva) -"gE" = ( +"gA" = ( /obj/effect/floor_decal/industrial/outline/grey, /turf/simulated/floor/tiled/dark, /area/outpost/research/eva) -"gF" = ( +"gB" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/machinery/alarm{ @@ -3267,7 +3242,7 @@ }, /turf/simulated/floor/tiled/white, /area/outpost/research/hallway) -"gG" = ( +"gC" = ( /obj/structure/window/reinforced{ dir = 8 }, @@ -3277,7 +3252,7 @@ /obj/structure/window/reinforced, /turf/simulated/floor/tiled, /area/outpost/research/hallway) -"gH" = ( +"gD" = ( /obj/structure/closet/secure_closet/xenoarchaeologist{ req_access = list(47) }, @@ -3285,12 +3260,12 @@ /obj/structure/window/reinforced, /turf/simulated/floor/tiled, /area/outpost/research/hallway) -"gI" = ( +"gE" = ( /obj/structure/closet/secure_closet/scientist, /obj/structure/window/reinforced, /turf/simulated/floor/tiled, /area/outpost/research/hallway) -"gJ" = ( +"gF" = ( /obj/machinery/door/window/westleft{ dir = 2; name = "Locker room"; @@ -3306,7 +3281,7 @@ }, /turf/simulated/floor/tiled, /area/outpost/research/hallway) -"gK" = ( +"gG" = ( /obj/structure/table/rack, /obj/item/clothing/suit/bio_suit/anomaly, /obj/item/clothing/head/bio_hood/anomaly, @@ -3326,7 +3301,7 @@ /obj/effect/floor_decal/industrial/hatch/yellow, /turf/simulated/floor/tiled, /area/outpost/research/hallway) -"gL" = ( +"gH" = ( /obj/machinery/door/window/westleft{ dir = 2; name = "Monkey Pen"; @@ -3334,7 +3309,7 @@ }, /turf/simulated/floor/tiled/white, /area/outpost/research/hallway) -"gM" = ( +"gI" = ( /obj/structure/window/reinforced, /obj/structure/window/reinforced{ dir = 4 @@ -3344,7 +3319,7 @@ }, /turf/simulated/floor/tiled/white, /area/outpost/research/hallway) -"gN" = ( +"gJ" = ( /obj/machinery/door/firedoor{ name = "\improper Firelock South" }, @@ -3357,13 +3332,13 @@ }, /turf/simulated/floor/tiled/white, /area/outpost/research/hallway) -"gO" = ( +"gK" = ( /obj/machinery/door/firedoor{ name = "\improper Firelock South" }, /turf/simulated/floor/tiled/white, /area/outpost/research/hallway) -"gP" = ( +"gL" = ( /obj/machinery/door/firedoor{ dir = 4; name = "Firelock" @@ -3381,13 +3356,13 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/plating, /area/outpost/research/hallway) -"gQ" = ( +"gM" = ( /obj/effect/floor_decal/corner/purple{ dir = 6 }, /turf/simulated/floor/tiled/white, /area/outpost/research/hallway) -"gR" = ( +"gN" = ( /obj/structure/window/reinforced{ dir = 4 }, @@ -3404,7 +3379,7 @@ }, /turf/simulated/floor/plating, /area/outpost/research/anomaly_analysis) -"gS" = ( +"gO" = ( /obj/structure/grille, /obj/structure/window/reinforced{ dir = 8 @@ -3413,13 +3388,13 @@ icon_state = "dmg2" }, /area/outpost/abandoned) -"gT" = ( +"gP" = ( /obj/item/weapon/material/shard, /turf/simulated/floor/airless{ icon_state = "dmg2" }, /area/outpost/abandoned) -"gU" = ( +"gQ" = ( /obj/structure/lattice, /obj/item/weapon/material/shard{ icon_state = "small" @@ -3428,17 +3403,17 @@ icon_state = "dmg2" }, /area/outpost/abandoned) -"gV" = ( +"gR" = ( /obj/structure/lattice, /turf/simulated/floor/airless{ icon_state = "dmg2" }, /area/outpost/abandoned) -"gW" = ( +"gS" = ( /obj/machinery/door/airlock, /turf/simulated/floor, /area/outpost/abandoned) -"gX" = ( +"gT" = ( /obj/structure/grille, /obj/structure/window/reinforced{ dir = 8 @@ -3451,19 +3426,19 @@ }, /turf/simulated/floor/plating, /area/outpost/research/dock) -"gY" = ( +"gU" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 5 }, /turf/simulated/floor/tiled, /area/outpost/research/dock) -"gZ" = ( +"gV" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 }, /turf/simulated/floor/tiled, /area/outpost/research/dock) -"ha" = ( +"gW" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 6 }, @@ -3472,7 +3447,7 @@ }, /turf/simulated/floor/tiled, /area/outpost/research/dock) -"hb" = ( +"gX" = ( /obj/machinery/door/firedoor{ dir = 4; name = "Firelock" @@ -3489,7 +3464,7 @@ }, /turf/simulated/floor/tiled, /area/outpost/research/dock) -"hc" = ( +"gY" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, @@ -3498,12 +3473,12 @@ }, /turf/simulated/floor/tiled, /area/outpost/research/dock) -"hd" = ( +"gZ" = ( /obj/machinery/atmospherics/pipe/manifold4w/hidden/supply, /obj/machinery/atmospherics/pipe/manifold4w/hidden/scrubbers, /turf/simulated/floor/tiled, /area/outpost/research/dock) -"he" = ( +"ha" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, @@ -3522,7 +3497,7 @@ }, /turf/simulated/floor/tiled, /area/outpost/research/dock) -"hf" = ( +"hb" = ( /obj/machinery/door/firedoor{ dir = 4; name = "Firelock" @@ -3544,7 +3519,7 @@ }, /turf/simulated/floor/tiled, /area/outpost/research/medical) -"hg" = ( +"hc" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, @@ -3558,7 +3533,7 @@ }, /turf/simulated/floor/tiled, /area/outpost/research/medical) -"hh" = ( +"hd" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 9; pixel_y = 0 @@ -3575,7 +3550,7 @@ }, /turf/simulated/floor/tiled, /area/outpost/research/medical) -"hi" = ( +"he" = ( /obj/machinery/conveyor_switch{ id = "anotempload"; name = "conveyor switch"; @@ -3588,16 +3563,16 @@ }, /turf/simulated/floor/tiled/dark, /area/outpost/research/eva) -"hj" = ( +"hf" = ( /turf/simulated/floor/tiled/dark, /area/outpost/research/eva) -"hk" = ( +"hg" = ( /obj/machinery/atmospherics/unary/vent_pump/on{ dir = 4 }, /turf/simulated/floor/tiled/dark, /area/outpost/research/eva) -"hl" = ( +"hh" = ( /obj/machinery/door/firedoor{ dir = 4; name = "Firelock" @@ -3611,7 +3586,7 @@ }, /turf/simulated/floor/tiled, /area/outpost/research/eva) -"hm" = ( +"hi" = ( /obj/machinery/atmospherics/pipe/manifold/hidden/supply{ dir = 4 }, @@ -3628,33 +3603,33 @@ }, /turf/simulated/floor/tiled/white, /area/outpost/research/hallway) -"hn" = ( +"hj" = ( /obj/machinery/door/firedoor{ dir = 8; name = "Firelock West" }, /turf/simulated/floor/tiled/white, /area/outpost/research/hallway) -"ho" = ( +"hk" = ( /obj/structure/disposalpipe/segment, /obj/machinery/atmospherics/unary/vent_scrubber/on, /turf/simulated/floor/tiled/white, /area/outpost/research/hallway) -"hp" = ( +"hl" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/machinery/atmospherics/pipe/manifold/hidden/supply{ dir = 8 }, /turf/simulated/floor/tiled/white, /area/outpost/research/hallway) -"hq" = ( +"hm" = ( /obj/machinery/alarm{ dir = 2; pixel_y = 25 }, /turf/simulated/floor/tiled/white, /area/outpost/research/hallway) -"hr" = ( +"hn" = ( /obj/machinery/light{ dir = 1 }, @@ -3664,7 +3639,7 @@ }, /turf/simulated/floor/tiled/white, /area/outpost/research/hallway) -"hs" = ( +"ho" = ( /obj/structure/cable/blue{ d1 = 1; d2 = 2; @@ -3674,18 +3649,18 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/tiled/white, /area/outpost/research/hallway) -"ht" = ( +"hp" = ( /obj/machinery/atmospherics/unary/vent_pump/on, /turf/simulated/floor/tiled/white, /area/outpost/research/hallway) -"hu" = ( +"hq" = ( /obj/machinery/door/firedoor{ dir = 4; name = "Firelock" }, /turf/simulated/floor/tiled/white, /area/outpost/research/hallway) -"hv" = ( +"hr" = ( /obj/machinery/atmospherics/unary/vent_pump/on, /obj/machinery/alarm{ pixel_y = 22 @@ -3695,7 +3670,7 @@ }, /turf/simulated/floor/tiled/white, /area/outpost/research/hallway) -"hw" = ( +"hs" = ( /obj/machinery/light{ icon_state = "tube1"; dir = 4 @@ -3713,14 +3688,14 @@ }, /turf/simulated/floor/tiled/white, /area/outpost/research/hallway) -"hx" = ( +"ht" = ( /obj/machinery/light/small{ dir = 1 }, /obj/machinery/atmospherics/unary/vent_scrubber/on, /turf/simulated/floor/tiled, /area/outpost/research/anomaly_analysis) -"hy" = ( +"hu" = ( /obj/structure/cable/blue{ d2 = 2; icon_state = "0-2" @@ -3733,29 +3708,29 @@ }, /turf/simulated/floor/tiled, /area/outpost/research/anomaly_analysis) -"hz" = ( +"hv" = ( /obj/effect/floor_decal/industrial/warning{ icon_state = "warning"; dir = 4 }, /turf/simulated/floor/tiled, /area/outpost/research/anomaly_analysis) -"hA" = ( +"hw" = ( /obj/machinery/light/small{ dir = 1 }, /obj/machinery/atmospherics/unary/vent_pump/on, /turf/simulated/floor/tiled/dark, /area/outpost/research/anomaly_analysis) -"hB" = ( +"hx" = ( /obj/machinery/artifact_scanpad, /turf/simulated/floor/bluegrid, /area/outpost/research/anomaly_analysis) -"hC" = ( +"hy" = ( /obj/machinery/artifact_harvester, /turf/simulated/floor/bluegrid, /area/outpost/research/anomaly_analysis) -"hD" = ( +"hz" = ( /obj/structure/grille, /obj/structure/window/reinforced, /obj/structure/window/reinforced{ @@ -3768,7 +3743,7 @@ icon_state = "dmg2" }, /area/outpost/abandoned) -"hE" = ( +"hA" = ( /obj/structure/grille, /obj/structure/window/reinforced, /obj/structure/window/reinforced{ @@ -3778,28 +3753,28 @@ icon_state = "dmg2" }, /area/outpost/abandoned) -"hF" = ( +"hB" = ( /obj/effect/decal/remains/xeno, /turf/simulated/floor/tiled/airless{ icon_state = "steel_broken2" }, /area/outpost/abandoned) -"hG" = ( +"hC" = ( /turf/simulated/floor/airless, /area/outpost/abandoned) -"hH" = ( +"hD" = ( /obj/structure/table/standard, /turf/simulated/floor/airless, /area/outpost/abandoned) -"hI" = ( +"hE" = ( /obj/structure/table/rack, /turf/simulated/floor/airless, /area/outpost/abandoned) -"hJ" = ( +"hF" = ( /obj/machinery/hologram/holopad, /turf/simulated/floor/tiled, /area/outpost/research/dock) -"hK" = ( +"hG" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/camera/network/research_outpost{ c_tag = "Research Outpost Shuttle Dock"; @@ -3807,7 +3782,7 @@ }, /turf/simulated/floor/tiled, /area/outpost/research/dock) -"hL" = ( +"hH" = ( /obj/structure/grille, /obj/structure/window/reinforced{ dir = 4 @@ -3823,12 +3798,12 @@ }, /turf/simulated/floor/plating, /area/outpost/research/dock) -"hM" = ( +"hI" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/tiled, /area/outpost/research/dock) -"hN" = ( +"hJ" = ( /obj/structure/window/reinforced{ dir = 5; health = 1e+007 @@ -3840,13 +3815,13 @@ }, /turf/simulated/floor/tiled, /area/outpost/research/medical) -"hO" = ( +"hK" = ( /obj/machinery/atmospherics/unary/vent_scrubber/on{ dir = 1 }, /turf/simulated/floor/tiled, /area/outpost/research/medical) -"hP" = ( +"hL" = ( /obj/structure/cable/blue, /obj/machinery/power/apc{ dir = 4; @@ -3855,7 +3830,7 @@ }, /turf/simulated/floor/tiled, /area/outpost/research/medical) -"hQ" = ( +"hM" = ( /obj/structure/window/reinforced{ dir = 1 }, @@ -3869,7 +3844,7 @@ }, /turf/simulated/floor/plating, /area/outpost/research/eva) -"hR" = ( +"hN" = ( /obj/structure/disposalpipe/trunk{ dir = 4 }, @@ -3886,13 +3861,13 @@ }, /turf/simulated/floor/plating, /area/outpost/research/eva) -"hS" = ( +"hO" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, /turf/simulated/wall/r_wall, /area/outpost/research/eva) -"hT" = ( +"hP" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, @@ -3912,7 +3887,7 @@ }, /turf/simulated/floor/tiled/white, /area/outpost/research/hallway) -"hU" = ( +"hQ" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, @@ -3940,7 +3915,7 @@ }, /turf/simulated/floor/tiled/white, /area/outpost/research/hallway) -"hV" = ( +"hR" = ( /obj/machinery/door/firedoor{ dir = 8; name = "Firelock West" @@ -3964,7 +3939,7 @@ }, /turf/simulated/floor/tiled/white, /area/outpost/research/hallway) -"hW" = ( +"hS" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, @@ -3988,7 +3963,7 @@ }, /turf/simulated/floor/tiled/white, /area/outpost/research/hallway) -"hX" = ( +"hT" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, @@ -4010,7 +3985,7 @@ /obj/effect/floor_decal/corner/purple, /turf/simulated/floor/tiled/white, /area/outpost/research/hallway) -"hY" = ( +"hU" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, @@ -4030,7 +4005,7 @@ }, /turf/simulated/floor/tiled/white, /area/outpost/research/hallway) -"hZ" = ( +"hV" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, @@ -4046,7 +4021,7 @@ }, /turf/simulated/floor/tiled/white, /area/outpost/research/hallway) -"ia" = ( +"hW" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, @@ -4070,7 +4045,7 @@ }, /turf/simulated/floor/tiled/white, /area/outpost/research/hallway) -"ib" = ( +"hX" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, @@ -4095,7 +4070,7 @@ }, /turf/simulated/floor/tiled/white, /area/outpost/research/hallway) -"ic" = ( +"hY" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, @@ -4119,7 +4094,7 @@ }, /turf/simulated/floor/tiled/white, /area/outpost/research/hallway) -"id" = ( +"hZ" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, @@ -4140,7 +4115,7 @@ }, /turf/simulated/floor/tiled/white, /area/outpost/research/hallway) -"ie" = ( +"ia" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, @@ -4161,7 +4136,7 @@ }, /turf/simulated/floor/tiled/white, /area/outpost/research/hallway) -"if" = ( +"ib" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, @@ -4179,7 +4154,7 @@ }, /turf/simulated/floor/tiled/white, /area/outpost/research/hallway) -"ig" = ( +"ic" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, @@ -4203,7 +4178,7 @@ }, /turf/simulated/floor/tiled/white, /area/outpost/research/hallway) -"ih" = ( +"id" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, @@ -4223,7 +4198,7 @@ }, /turf/simulated/floor/tiled/white, /area/outpost/research/hallway) -"ii" = ( +"ie" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, @@ -4241,7 +4216,7 @@ /obj/machinery/firealarm/south, /turf/simulated/floor/tiled/white, /area/outpost/research/hallway) -"ij" = ( +"if" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, @@ -4262,7 +4237,7 @@ /obj/effect/floor_decal/corner/purple, /turf/simulated/floor/tiled/white, /area/outpost/research/hallway) -"ik" = ( +"ig" = ( /obj/structure/disposalpipe/segment{ dir = 2; icon_state = "pipe-c" @@ -4286,7 +4261,7 @@ }, /turf/simulated/floor/tiled/white, /area/outpost/research/hallway) -"il" = ( +"ih" = ( /obj/machinery/door/firedoor{ dir = 4; name = "Firelock" @@ -4308,7 +4283,7 @@ }, /turf/simulated/floor/tiled, /area/outpost/research/anomaly_analysis) -"im" = ( +"ii" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, @@ -4324,7 +4299,7 @@ }, /turf/simulated/floor/tiled, /area/outpost/research/anomaly_analysis) -"in" = ( +"ij" = ( /obj/machinery/atmospherics/pipe/manifold/hidden/supply{ dir = 1 }, @@ -4342,7 +4317,7 @@ }, /turf/simulated/floor/tiled, /area/outpost/research/anomaly_analysis) -"io" = ( +"ik" = ( /obj/machinery/door/firedoor{ dir = 4; name = "Firelock" @@ -4359,7 +4334,7 @@ }, /turf/simulated/floor/tiled, /area/outpost/research/anomaly_analysis) -"ip" = ( +"il" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, @@ -4372,7 +4347,7 @@ }, /turf/simulated/floor/tiled, /area/outpost/research/anomaly_analysis) -"iq" = ( +"im" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 9; pixel_y = 0 @@ -4382,13 +4357,13 @@ }, /turf/simulated/floor/tiled/dark, /area/outpost/research/anomaly_analysis) -"ir" = ( +"in" = ( /obj/effect/landmark{ name = "bluespacerift" }, /turf/simulated/floor/tiled/dark, /area/outpost/research/anomaly_analysis) -"is" = ( +"io" = ( /obj/item/weapon/anodevice{ pixel_x = 3; pixel_y = 3 @@ -4397,22 +4372,22 @@ /obj/structure/table/steel, /turf/simulated/floor/tiled/dark, /area/outpost/research/anomaly_analysis) -"it" = ( +"ip" = ( /obj/effect/decal/remains/human, /turf/simulated/floor/tiled/airless{ icon_state = "steel_burned0" }, /area/outpost/abandoned) -"iu" = ( +"iq" = ( /obj/structure/table/rack, /turf/simulated/floor/tiled/airless{ icon_state = "steel_burned0" }, /area/outpost/abandoned) -"iv" = ( +"ir" = ( /turf/simulated/wall, /area/mine/unexplored) -"iw" = ( +"is" = ( /obj/structure/sign/securearea{ desc = "A warning sign which reads 'INTERNALS REQUIRED'."; name = "INTERNALS REQUIRED"; @@ -4421,7 +4396,7 @@ }, /turf/template_noop, /area/template_noop) -"ix" = ( +"it" = ( /obj/structure/grille, /obj/structure/window/reinforced{ dir = 8 @@ -4435,11 +4410,11 @@ }, /turf/simulated/floor/plating, /area/outpost/research/dock) -"iy" = ( +"iu" = ( /obj/machinery/light, /turf/simulated/floor/tiled, /area/outpost/research/dock) -"iz" = ( +"iv" = ( /obj/structure/closet/emcloset, /obj/machinery/status_display{ layer = 4; @@ -4448,7 +4423,7 @@ }, /turf/simulated/floor/tiled, /area/outpost/research/dock) -"iA" = ( +"iw" = ( /obj/structure/table/standard, /obj/machinery/alarm{ dir = 1; @@ -4456,7 +4431,7 @@ }, /turf/simulated/floor/tiled, /area/outpost/research/dock) -"iB" = ( +"ix" = ( /obj/structure/table/standard, /obj/item/weapon/storage/toolbox/mechanical, /obj/machinery/atmospherics/unary/vent_pump/on{ @@ -4468,7 +4443,7 @@ }, /turf/simulated/floor/tiled, /area/outpost/research/dock) -"iC" = ( +"iy" = ( /obj/structure/closet/emcloset, /obj/machinery/alarm{ dir = 1; @@ -4476,7 +4451,7 @@ }, /turf/simulated/floor/tiled, /area/outpost/research/dock) -"iD" = ( +"iz" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ dir = 8 @@ -4488,7 +4463,7 @@ }, /turf/simulated/floor/tiled, /area/outpost/research/dock) -"iE" = ( +"iA" = ( /obj/machinery/atmospherics/unary/vent_scrubber/on{ dir = 8 }, @@ -4504,7 +4479,7 @@ }, /turf/simulated/floor/tiled, /area/outpost/research/dock) -"iF" = ( +"iB" = ( /obj/structure/window/reinforced{ dir = 5; health = 1e+007 @@ -4519,7 +4494,7 @@ }, /turf/simulated/floor/tiled, /area/outpost/research/medical) -"iG" = ( +"iC" = ( /obj/machinery/sleeper{ dir = 1 }, @@ -4529,21 +4504,21 @@ }, /turf/simulated/floor/tiled, /area/outpost/research/medical) -"iH" = ( +"iD" = ( /obj/machinery/light/small, /obj/machinery/firealarm/east, /turf/simulated/floor/tiled, /area/outpost/research/medical) -"iI" = ( +"iE" = ( /obj/machinery/atmospherics/unary/vent_scrubber/on, /turf/simulated/floor/tiled/dark, /area/outpost/research/eva) -"iJ" = ( +"iF" = ( /obj/machinery/door/window/westleft, /obj/effect/floor_decal/industrial/outline/grey, /turf/simulated/floor/tiled/dark, /area/outpost/research/eva) -"iK" = ( +"iG" = ( /obj/machinery/conveyor{ dir = 9; id = "anotempload" @@ -4555,10 +4530,10 @@ }, /turf/simulated/floor/tiled, /area/outpost/research/eva) -"iL" = ( +"iH" = ( /turf/simulated/wall/r_wall, /area/outpost/research/power) -"iM" = ( +"iI" = ( /obj/structure/disposalpipe/segment, /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, @@ -4573,10 +4548,10 @@ }, /turf/simulated/floor/plating, /area/outpost/research/power) -"iN" = ( +"iJ" = ( /turf/simulated/wall/r_wall, /area/outpost/research/isolation_monitoring) -"iO" = ( +"iK" = ( /obj/structure/grille, /obj/structure/window/reinforced, /obj/structure/window/reinforced{ @@ -4591,7 +4566,7 @@ }, /turf/simulated/floor/plating, /area/outpost/research/isolation_monitoring) -"iP" = ( +"iL" = ( /obj/structure/grille, /obj/structure/window/reinforced, /obj/structure/window/reinforced{ @@ -4606,7 +4581,7 @@ }, /turf/simulated/floor/plating, /area/outpost/research/isolation_monitoring) -"iQ" = ( +"iM" = ( /obj/machinery/door/airlock/research{ name = "Anomaly Isolation"; req_access = list(65) @@ -4622,7 +4597,7 @@ }, /turf/simulated/floor, /area/outpost/research/isolation_monitoring) -"iR" = ( +"iN" = ( /obj/structure/grille, /obj/structure/window/reinforced, /obj/structure/window/reinforced{ @@ -4639,7 +4614,7 @@ }, /turf/simulated/floor/plating, /area/outpost/research/isolation_monitoring) -"iS" = ( +"iO" = ( /obj/structure/grille, /obj/structure/window/reinforced, /obj/structure/window/reinforced{ @@ -4651,7 +4626,7 @@ }, /turf/simulated/floor/plating, /area/outpost/research/isolation_monitoring) -"iT" = ( +"iP" = ( /obj/machinery/door/airlock/maintenance{ name = "Maintenance Storage"; req_one_access = list(12,65) @@ -4665,10 +4640,10 @@ }, /turf/simulated/floor/plating, /area/outpost/research/emergency_storage) -"iU" = ( +"iQ" = ( /turf/simulated/wall/r_wall, /area/outpost/research/emergency_storage) -"iV" = ( +"iR" = ( /obj/structure/disposalpipe/segment, /obj/machinery/door/firedoor{ dir = 4; @@ -4687,21 +4662,21 @@ }, /turf/simulated/floor/tiled/dark, /area/outpost/research/anomaly_storage) -"iW" = ( +"iS" = ( /obj/machinery/alarm{ dir = 1; pixel_y = -25 }, /turf/simulated/floor/tiled, /area/outpost/research/anomaly_analysis) -"iX" = ( +"iT" = ( /obj/machinery/atmospherics/unary/vent_pump/on{ dir = 1 }, /obj/machinery/firealarm/south, /turf/simulated/floor/tiled, /area/outpost/research/anomaly_analysis) -"iY" = ( +"iU" = ( /obj/structure/sign/securearea{ desc = "A warning sign which reads 'RADIOACTIVE AREA'"; icon_state = "radiation"; @@ -4715,14 +4690,14 @@ }, /turf/simulated/floor/tiled, /area/outpost/research/anomaly_analysis) -"iZ" = ( +"iV" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/tiled/dark, /area/outpost/research/anomaly_analysis) -"ja" = ( +"iW" = ( /turf/simulated/floor/tiled/dark, /area/outpost/research/anomaly_analysis) -"jb" = ( +"iX" = ( /obj/item/weapon/anobattery{ pixel_x = -6; pixel_y = 2 @@ -4745,31 +4720,31 @@ /obj/structure/table/steel, /turf/simulated/floor/tiled/dark, /area/outpost/research/anomaly_analysis) -"jc" = ( +"iY" = ( /obj/item/weapon/material/shard, /turf/simulated/floor/tiled/airless{ icon_state = "steel_broken0" }, /area/outpost/abandoned) -"jd" = ( +"iZ" = ( /obj/item/weapon/material/shard{ icon_state = "small" }, /turf/simulated/floor/airless, /area/outpost/abandoned) -"je" = ( +"ja" = ( /turf/simulated/floor/asteroid/ash, /area/mine/explored) -"jf" = ( +"jb" = ( /obj/machinery/light/small{ dir = 8 }, /turf/simulated/floor/asteroid/ash, /area/mine/explored) -"jg" = ( +"jc" = ( /turf/simulated/wall, /area/outpost/research/dock) -"jh" = ( +"jd" = ( /obj/machinery/door/firedoor{ dir = 4; name = "Firelock" @@ -4787,14 +4762,14 @@ }, /turf/simulated/floor, /area/outpost/research/dock) -"ji" = ( +"je" = ( /turf/simulated/wall, /area/outpost/research/medical) -"jj" = ( +"jf" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/tiled/dark, /area/outpost/research/eva) -"jk" = ( +"jg" = ( /obj/machinery/conveyor{ dir = 2; id = "anotempload" @@ -4810,7 +4785,7 @@ }, /turf/simulated/floor/plating, /area/outpost/research/eva) -"jl" = ( +"jh" = ( /obj/machinery/conveyor{ dir = 5; id = "anosample" @@ -4825,7 +4800,7 @@ }, /turf/simulated/floor/plating, /area/outpost/research/eva) -"jm" = ( +"ji" = ( /obj/machinery/disposal/deliveryChute{ dir = 8 }, @@ -4836,7 +4811,7 @@ /obj/structure/disposalpipe/trunk, /turf/simulated/floor/plating, /area/outpost/research/eva) -"jn" = ( +"jj" = ( /obj/machinery/atmospherics/unary/vent_pump/on{ dir = 4 }, @@ -4852,7 +4827,7 @@ }, /turf/simulated/floor/plating, /area/outpost/research/power) -"jo" = ( +"jk" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/structure/disposalpipe/segment, /obj/machinery/atmospherics/pipe/manifold/hidden/supply{ @@ -4865,22 +4840,22 @@ }, /turf/simulated/floor/plating, /area/outpost/research/power) -"jp" = ( +"jl" = ( /obj/machinery/portable_atmospherics/canister/air, /turf/simulated/floor/tiled, /area/outpost/research/isolation_monitoring) -"jq" = ( +"jm" = ( /obj/machinery/portable_atmospherics/canister/carbon_dioxide, /turf/simulated/floor/tiled, /area/outpost/research/isolation_monitoring) -"jr" = ( +"jn" = ( /obj/machinery/portable_atmospherics/canister/nitrogen, /obj/structure/window/reinforced{ dir = 4 }, /turf/simulated/floor/tiled, /area/outpost/research/isolation_monitoring) -"js" = ( +"jo" = ( /obj/structure/cable/blue{ d1 = 1; d2 = 2; @@ -4893,7 +4868,7 @@ }, /turf/simulated/floor/tiled, /area/outpost/research/isolation_monitoring) -"jt" = ( +"jp" = ( /obj/structure/cable/blue{ d2 = 8; icon_state = "0-8" @@ -4906,21 +4881,21 @@ }, /turf/simulated/floor/tiled, /area/outpost/research/isolation_monitoring) -"ju" = ( +"jq" = ( /obj/machinery/atmospherics/pipe/simple/visible/scrubbers, /obj/machinery/atmospherics/pipe/simple/visible/supply, /turf/simulated/floor/tiled, /area/outpost/research/isolation_monitoring) -"jv" = ( +"jr" = ( /obj/structure/table/standard, /obj/item/weapon/paper_bin, /obj/item/weapon/tape_roll, /turf/simulated/floor/tiled, /area/outpost/research/isolation_monitoring) -"jw" = ( +"js" = ( /turf/simulated/floor/tiled, /area/outpost/research/isolation_monitoring) -"jx" = ( +"jt" = ( /obj/item/device/radio/intercom{ dir = 4; name = "Station Intercom (General)"; @@ -4928,7 +4903,7 @@ }, /turf/simulated/floor/tiled, /area/outpost/research/isolation_monitoring) -"jy" = ( +"ju" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 5 }, @@ -4941,14 +4916,14 @@ }, /turf/simulated/floor/plating, /area/outpost/research/emergency_storage) -"jz" = ( +"jv" = ( /obj/structure/bed, /obj/machinery/atmospherics/unary/vent_scrubber/on{ dir = 8 }, /turf/simulated/floor/plating, /area/outpost/research/emergency_storage) -"jA" = ( +"jw" = ( /obj/structure/disposalpipe/segment, /obj/machinery/alarm{ dir = 4; @@ -4964,10 +4939,10 @@ }, /turf/simulated/floor/tiled/dark, /area/outpost/research/anomaly_storage) -"jB" = ( +"jx" = ( /turf/simulated/wall/r_wall, /area/outpost/research/anomaly_storage) -"jC" = ( +"jy" = ( /obj/structure/sign/nosmoking_2{ pixel_y = -32 }, @@ -4981,7 +4956,7 @@ }, /turf/simulated/floor/tiled, /area/outpost/research/anomaly_analysis) -"jD" = ( +"jz" = ( /obj/machinery/alarm{ dir = 1; pixel_y = -24 @@ -4991,12 +4966,12 @@ }, /turf/simulated/floor/tiled/dark, /area/outpost/research/anomaly_analysis) -"jE" = ( +"jA" = ( /obj/machinery/artifact_scanpad, /obj/machinery/light/small, /turf/simulated/floor/bluegrid, /area/outpost/research/anomaly_analysis) -"jF" = ( +"jB" = ( /obj/machinery/portable_atmospherics/hydroponics{ closed_system = 1; name = "isolation tray" @@ -5005,19 +4980,19 @@ icon_state = "steel_burned1" }, /area/outpost/abandoned) -"jG" = ( +"jC" = ( /turf/simulated/floor/tiled/airless{ icon_state = "steel_burned1" }, /area/outpost/abandoned) -"jH" = ( +"jD" = ( /obj/structure/table/standard, /obj/item/weapon/paper/crumpled, /turf/simulated/floor/tiled/airless{ icon_state = "steel_burned1" }, /area/outpost/abandoned) -"jI" = ( +"jE" = ( /obj/structure/grille, /obj/structure/window/reinforced, /obj/item/weapon/material/shard{ @@ -5027,7 +5002,7 @@ icon_state = "dmg2" }, /area/outpost/abandoned) -"jJ" = ( +"jF" = ( /obj/structure/grille, /obj/structure/window/reinforced, /obj/structure/window/reinforced{ @@ -5037,7 +5012,7 @@ icon_state = "dmg2" }, /area/outpost/abandoned) -"jK" = ( +"jG" = ( /obj/structure/grille, /obj/structure/window/reinforced, /obj/structure/window/reinforced{ @@ -5047,7 +5022,7 @@ icon_state = "dmg2" }, /area/outpost/abandoned) -"jL" = ( +"jH" = ( /obj/structure/grille, /obj/structure/window/reinforced, /obj/structure/window/reinforced{ @@ -5060,17 +5035,17 @@ icon_state = "dmg2" }, /area/outpost/abandoned) -"jM" = ( +"jI" = ( /turf/simulated/wall, /area/outpost/research/eva) -"jN" = ( +"jJ" = ( /obj/structure/closet/excavation, /obj/machinery/atmospherics/unary/vent_pump/on{ dir = 4 }, /turf/simulated/floor/tiled, /area/outpost/research/eva) -"jO" = ( +"jK" = ( /obj/machinery/light/small{ dir = 1 }, @@ -5079,7 +5054,7 @@ }, /turf/simulated/floor/tiled, /area/outpost/research/eva) -"jP" = ( +"jL" = ( /obj/structure/table/rack, /obj/item/weapon/storage/belt/archaeology, /obj/item/clothing/suit/space/anomaly, @@ -5090,7 +5065,7 @@ }, /turf/simulated/floor/tiled, /area/outpost/research/eva) -"jQ" = ( +"jM" = ( /obj/structure/grille, /obj/structure/window/reinforced{ dir = 4 @@ -5106,7 +5081,7 @@ }, /turf/simulated/floor/plating, /area/outpost/research/eva) -"jR" = ( +"jN" = ( /obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ dir = 8 }, @@ -5120,7 +5095,7 @@ }, /turf/simulated/floor/tiled, /area/outpost/research/eva) -"jS" = ( +"jO" = ( /obj/machinery/light{ dir = 1 }, @@ -5135,7 +5110,7 @@ }, /turf/simulated/floor/tiled, /area/outpost/research/eva) -"jT" = ( +"jP" = ( /obj/item/device/radio/intercom{ name = "Station Intercom (General)"; pixel_y = 22 @@ -5151,7 +5126,7 @@ }, /turf/simulated/floor/tiled, /area/outpost/research/eva) -"jU" = ( +"jQ" = ( /obj/machinery/door/firedoor{ dir = 4; name = "Firelock" @@ -5165,7 +5140,7 @@ }, /turf/simulated/floor/tiled, /area/outpost/research/eva) -"jV" = ( +"jR" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 }, @@ -5174,13 +5149,13 @@ }, /turf/simulated/floor/tiled, /area/outpost/research/eva) -"jW" = ( +"jS" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 }, /turf/simulated/floor/tiled, /area/outpost/research/eva) -"jX" = ( +"jT" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 9 }, @@ -5190,14 +5165,14 @@ }, /turf/simulated/floor/tiled, /area/outpost/research/eva) -"jY" = ( +"jU" = ( /obj/effect/floor_decal/industrial/warning{ icon_state = "warning"; dir = 4 }, /turf/simulated/floor/plating, /area/outpost/research/eva) -"jZ" = ( +"jV" = ( /obj/machinery/conveyor{ dir = 2; id = "anotempload" @@ -5208,14 +5183,14 @@ }, /turf/simulated/floor/plating, /area/outpost/research/eva) -"ka" = ( +"jW" = ( /obj/machinery/conveyor{ dir = 1; id = "anosample" }, /turf/simulated/floor/plating, /area/outpost/research/eva) -"kb" = ( +"jX" = ( /obj/machinery/conveyor_switch{ id = "anosample"; pixel_x = -8; @@ -5231,7 +5206,7 @@ }, /turf/simulated/floor/plating, /area/outpost/research/eva) -"kc" = ( +"jY" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, @@ -5240,7 +5215,7 @@ }, /turf/simulated/floor/plating, /area/outpost/research/power) -"kd" = ( +"jZ" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, @@ -5253,7 +5228,7 @@ }, /turf/simulated/floor/plating, /area/outpost/research/power) -"ke" = ( +"ka" = ( /obj/structure/disposalpipe/segment{ dir = 8; icon_state = "pipe-c" @@ -5269,7 +5244,7 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/plating, /area/outpost/research/power) -"kf" = ( +"kb" = ( /obj/machinery/portable_atmospherics/canister/phoron, /obj/machinery/light{ icon_state = "tube1"; @@ -5277,18 +5252,18 @@ }, /turf/simulated/floor/tiled, /area/outpost/research/isolation_monitoring) -"kg" = ( +"kc" = ( /obj/machinery/portable_atmospherics/canister/sleeping_agent, /turf/simulated/floor/tiled, /area/outpost/research/isolation_monitoring) -"kh" = ( +"kd" = ( /obj/machinery/portable_atmospherics/canister/oxygen, /obj/structure/window/reinforced{ dir = 4 }, /turf/simulated/floor/tiled, /area/outpost/research/isolation_monitoring) -"ki" = ( +"ke" = ( /obj/structure/cable/blue{ d1 = 1; d2 = 2; @@ -5296,31 +5271,31 @@ }, /turf/simulated/floor/tiled, /area/outpost/research/isolation_monitoring) -"kj" = ( +"kf" = ( /obj/structure/table/standard, /turf/simulated/floor/tiled, /area/outpost/research/isolation_monitoring) -"kk" = ( +"kg" = ( /obj/structure/bed/chair/office/light, /turf/simulated/floor/tiled, /area/outpost/research/isolation_monitoring) -"kl" = ( +"kh" = ( /obj/machinery/light{ icon_state = "tube1"; dir = 4 }, /turf/simulated/floor/tiled, /area/outpost/research/isolation_monitoring) -"km" = ( +"ki" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/structure/closet/walllocker/emerglocker/west, /turf/simulated/floor/plating, /area/outpost/research/emergency_storage) -"kn" = ( +"kj" = ( /obj/machinery/portable_atmospherics/canister/air, /turf/simulated/floor/plating, /area/outpost/research/emergency_storage) -"ko" = ( +"kk" = ( /obj/structure/disposalpipe/segment{ dir = 1; icon_state = "pipe-c" @@ -5336,7 +5311,7 @@ }, /turf/simulated/floor/tiled/dark, /area/outpost/research/anomaly_storage) -"kp" = ( +"kl" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, @@ -5355,7 +5330,7 @@ }, /turf/simulated/floor/tiled/dark, /area/outpost/research/anomaly_storage) -"kq" = ( +"km" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, @@ -5367,7 +5342,7 @@ }, /turf/simulated/floor/tiled/dark, /area/outpost/research/anomaly_storage) -"kr" = ( +"kn" = ( /obj/structure/disposaloutlet{ dir = 2 }, @@ -5376,31 +5351,31 @@ }, /turf/simulated/floor/tiled, /area/outpost/research/anomaly_storage) -"ks" = ( +"ko" = ( /obj/machinery/door/airlock, /turf/simulated/floor/tiled/airless{ icon_state = "steel_broken2" }, /area/outpost/abandoned) -"kt" = ( +"kp" = ( /obj/effect/decal/remains/xeno, /turf/simulated/floor, /area/outpost/abandoned) -"ku" = ( +"kq" = ( /obj/structure/ore_box, /turf/simulated/floor/asteroid/ash, /area/mine/explored) -"kv" = ( +"kr" = ( /turf/simulated/wall, /area/mine/explored) -"kw" = ( +"ks" = ( /obj/structure/closet/excavation, /turf/simulated/floor/tiled, /area/outpost/research/eva) -"kx" = ( +"kt" = ( /turf/simulated/floor/tiled, /area/outpost/research/eva) -"ky" = ( +"ku" = ( /obj/structure/table/rack, /obj/item/weapon/storage/belt/archaeology, /obj/item/clothing/suit/space/anomaly, @@ -5409,7 +5384,7 @@ /obj/machinery/atmospherics/pipe/simple/hidden/supply, /turf/simulated/floor/tiled, /area/outpost/research/eva) -"kz" = ( +"kv" = ( /obj/structure/grille, /obj/structure/window/reinforced, /obj/structure/window/reinforced{ @@ -5423,7 +5398,7 @@ }, /turf/simulated/floor/plating, /area/outpost/research/eva) -"kA" = ( +"kw" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/structure/cable/blue{ @@ -5433,7 +5408,7 @@ }, /turf/simulated/floor/tiled, /area/outpost/research/eva) -"kB" = ( +"kx" = ( /obj/structure/cable/blue{ d1 = 4; d2 = 8; @@ -5444,7 +5419,7 @@ }, /turf/simulated/floor/tiled, /area/outpost/research/eva) -"kC" = ( +"ky" = ( /obj/structure/cable/blue{ d2 = 8; icon_state = "0-8" @@ -5457,7 +5432,7 @@ /obj/machinery/atmospherics/pipe/simple/hidden/universal, /turf/simulated/floor/tiled, /area/outpost/research/eva) -"kD" = ( +"kz" = ( /obj/machinery/conveyor_switch/oneway{ dir = 2; id = "anominerals"; @@ -5470,7 +5445,7 @@ }, /turf/simulated/floor/tiled, /area/outpost/research/eva) -"kE" = ( +"kA" = ( /obj/structure/plasticflaps/mining, /obj/machinery/conveyor{ dir = 2; @@ -5478,7 +5453,7 @@ }, /turf/simulated/floor/plating, /area/outpost/research/eva) -"kF" = ( +"kB" = ( /obj/machinery/conveyor{ dir = 1; id = "anosample" @@ -5486,7 +5461,7 @@ /obj/structure/plasticflaps/mining, /turf/simulated/floor/plating, /area/outpost/research/eva) -"kG" = ( +"kC" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/meter, /obj/effect/floor_decal/industrial/warning/corner{ @@ -5495,7 +5470,7 @@ }, /turf/simulated/floor/plating, /area/outpost/research/power) -"kH" = ( +"kD" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/machinery/light{ icon_state = "tube1"; @@ -5509,26 +5484,26 @@ /obj/machinery/meter, /turf/simulated/floor/plating, /area/outpost/research/power) -"kI" = ( +"kE" = ( /obj/machinery/atmospherics/portables_connector{ dir = 4 }, /turf/simulated/floor/tiled, /area/outpost/research/isolation_monitoring) -"kJ" = ( +"kF" = ( /obj/machinery/atmospherics/binary/pump{ dir = 4 }, /turf/simulated/floor/tiled, /area/outpost/research/isolation_monitoring) -"kK" = ( +"kG" = ( /obj/machinery/atmospherics/pipe/manifold/visible/yellow{ icon_state = "map"; dir = 1 }, /turf/simulated/floor/tiled, /area/outpost/research/isolation_monitoring) -"kL" = ( +"kH" = ( /obj/machinery/atmospherics/binary/pump{ dir = 8 }, @@ -5539,18 +5514,18 @@ }, /turf/simulated/floor/tiled, /area/outpost/research/isolation_monitoring) -"kM" = ( +"kI" = ( /obj/machinery/atmospherics/pipe/simple/visible/universal{ dir = 4 }, /turf/simulated/floor/tiled, /area/outpost/research/isolation_monitoring) -"kN" = ( +"kJ" = ( /obj/machinery/atmospherics/pipe/simple/visible/scrubbers, /obj/machinery/atmospherics/pipe/manifold/visible/supply, /turf/simulated/floor/tiled, /area/outpost/research/isolation_monitoring) -"kO" = ( +"kK" = ( /obj/structure/table/standard, /obj/item/device/flashlight/lamp, /obj/machinery/atmospherics/unary/vent_pump/on{ @@ -5558,12 +5533,12 @@ }, /turf/simulated/floor/tiled, /area/outpost/research/isolation_monitoring) -"kP" = ( +"kL" = ( /obj/structure/table/standard, /obj/item/clothing/gloves/latex, /turf/simulated/floor/tiled, /area/outpost/research/isolation_monitoring) -"kQ" = ( +"kM" = ( /obj/structure/table/standard, /obj/machinery/computer/atmoscontrol/laptop{ monitored_alarm_ids = list("isolation_one","isolation_two","isolation_three"); @@ -5571,21 +5546,21 @@ }, /turf/simulated/floor/tiled, /area/outpost/research/isolation_monitoring) -"kR" = ( +"kN" = ( /obj/structure/table/standard, /obj/item/weapon/folder, /obj/item/device/camera, /obj/item/weapon/pen, /turf/simulated/floor/tiled, /area/outpost/research/isolation_monitoring) -"kS" = ( +"kO" = ( /obj/structure/closet/medical_wall{ pixel_x = 28; pixel_y = 0 }, /turf/simulated/floor/tiled, /area/outpost/research/isolation_monitoring) -"kT" = ( +"kP" = ( /obj/machinery/light{ icon_state = "tube1"; dir = 8 @@ -5593,42 +5568,42 @@ /obj/machinery/atmospherics/pipe/simple/hidden/supply, /turf/simulated/floor/plating, /area/outpost/research/emergency_storage) -"kU" = ( +"kQ" = ( /obj/machinery/space_heater, /turf/simulated/floor/plating, /area/outpost/research/emergency_storage) -"kV" = ( +"kR" = ( /obj/machinery/atmospherics/unary/vent_pump/on{ dir = 1 }, /turf/simulated/floor/tiled/dark, /area/outpost/research/anomaly_storage) -"kW" = ( +"kS" = ( /turf/simulated/floor/tiled/dark, /area/outpost/research/anomaly_storage) -"kX" = ( +"kT" = ( /obj/effect/floor_decal/industrial/outline/yellow, /turf/simulated/floor/tiled, /area/outpost/research/anomaly_storage) -"kY" = ( +"kU" = ( /obj/machinery/portable_atmospherics/hydroponics, /turf/simulated/floor/tiled/airless{ icon_state = "steel_burned1" }, /area/outpost/abandoned) -"kZ" = ( +"kV" = ( /obj/machinery/door/airlock, /turf/simulated/floor/airless{ icon_state = "floorscorched1" }, /area/outpost/abandoned) -"la" = ( +"kW" = ( /obj/effect/gibspawner/human, /turf/simulated/floor/tiled/airless{ icon_state = "steel_burned1" }, /area/outpost/abandoned) -"lb" = ( +"kX" = ( /obj/structure/sign/securearea{ desc = "A warning sign which reads 'VACUUM'"; icon_state = "space"; @@ -5642,7 +5617,7 @@ }, /turf/simulated/floor/asteroid/ash, /area/mine/explored) -"lc" = ( +"kY" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 6 }, @@ -5651,7 +5626,7 @@ }, /turf/simulated/floor/tiled, /area/outpost/research/eva) -"ld" = ( +"kZ" = ( /obj/machinery/door/airlock/glass_mining{ name = "Equipment storage"; req_access = list(65) @@ -5664,36 +5639,36 @@ }, /turf/simulated/floor/tiled, /area/outpost/research/eva) -"le" = ( +"la" = ( /obj/machinery/atmospherics/pipe/manifold/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 9 }, /turf/simulated/floor/tiled, /area/outpost/research/eva) -"lf" = ( +"lb" = ( /obj/machinery/atmospherics/unary/vent_pump/on{ dir = 8 }, /turf/simulated/floor/tiled, /area/outpost/research/eva) -"lg" = ( +"lc" = ( /obj/machinery/atmospherics/binary/pump/on{ dir = 2; target_pressure = 200 }, /turf/simulated/floor/tiled, /area/outpost/research/eva) -"lh" = ( +"ld" = ( /obj/machinery/recharge_station, /turf/simulated/floor, /area/outpost/research/eva) -"li" = ( +"le" = ( /obj/machinery/mineral/input, /obj/effect/floor_decal/industrial/loading, /turf/simulated/floor/tiled, /area/outpost/research/eva) -"lj" = ( +"lf" = ( /obj/machinery/conveyor{ dir = 2; id = "anotempload" @@ -5706,7 +5681,7 @@ icon_state = "asteroidfloor" }, /area/mine/explored) -"lk" = ( +"lg" = ( /obj/machinery/conveyor{ dir = 1; id = "anosample" @@ -5719,7 +5694,7 @@ icon_state = "asteroidfloor" }, /area/mine/explored) -"ll" = ( +"lh" = ( /obj/machinery/alarm{ dir = 4; icon_state = "alarm0"; @@ -5738,7 +5713,7 @@ }, /turf/simulated/floor/plating, /area/outpost/research/power) -"lm" = ( +"li" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 9 }, @@ -5752,7 +5727,7 @@ }, /turf/simulated/floor/plating, /area/outpost/research/power) -"ln" = ( +"lj" = ( /obj/structure/cable/blue{ d1 = 1; d2 = 8; @@ -5763,7 +5738,7 @@ }, /turf/simulated/floor/plating, /area/outpost/research/power) -"lo" = ( +"lk" = ( /obj/machinery/atmospherics/portables_connector{ dir = 4 }, @@ -5774,17 +5749,17 @@ /obj/machinery/firealarm/west, /turf/simulated/floor/tiled, /area/outpost/research/isolation_monitoring) -"lp" = ( +"ll" = ( /obj/machinery/atmospherics/binary/pump{ dir = 8 }, /turf/simulated/floor/tiled, /area/outpost/research/isolation_monitoring) -"lq" = ( +"lm" = ( /obj/machinery/atmospherics/pipe/manifold4w/visible/yellow, /turf/simulated/floor/tiled, /area/outpost/research/isolation_monitoring) -"lr" = ( +"ln" = ( /obj/machinery/atmospherics/binary/pump{ dir = 4 }, @@ -5795,19 +5770,19 @@ }, /turf/simulated/floor/tiled, /area/outpost/research/isolation_monitoring) -"ls" = ( +"lo" = ( /obj/machinery/atmospherics/pipe/simple/visible/universal{ dir = 4 }, /obj/effect/floor_decal/industrial/warning/corner, /turf/simulated/floor/tiled, /area/outpost/research/isolation_monitoring) -"lt" = ( +"lp" = ( /obj/machinery/atmospherics/pipe/manifold/visible/scrubbers, /obj/effect/floor_decal/industrial/warning, /turf/simulated/floor/tiled, /area/outpost/research/isolation_monitoring) -"lu" = ( +"lq" = ( /obj/machinery/atmospherics/unary/vent_scrubber/on{ dir = 8 }, @@ -5817,7 +5792,7 @@ }, /turf/simulated/floor/tiled, /area/outpost/research/isolation_monitoring) -"lv" = ( +"lr" = ( /obj/machinery/atmospherics/omni/filter{ tag_east = 1; tag_south = 2; @@ -5825,13 +5800,13 @@ }, /turf/simulated/floor/tiled, /area/outpost/research/isolation_monitoring) -"lw" = ( +"ls" = ( /obj/machinery/atmospherics/portables_connector{ dir = 8 }, /turf/simulated/floor/tiled, /area/outpost/research/isolation_monitoring) -"lx" = ( +"lt" = ( /obj/machinery/alarm{ dir = 8; icon_state = "alarm0"; @@ -5843,11 +5818,11 @@ }, /turf/simulated/floor/tiled, /area/outpost/research/isolation_monitoring) -"ly" = ( +"lu" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /turf/simulated/floor/plating, /area/outpost/research/emergency_storage) -"lz" = ( +"lv" = ( /obj/structure/dispenser, /obj/machinery/alarm{ dir = 8; @@ -5856,23 +5831,23 @@ }, /turf/simulated/floor/plating, /area/outpost/research/emergency_storage) -"lA" = ( +"lw" = ( /obj/effect/floor_decal/industrial/outline/grey, /turf/simulated/floor/tiled/dark, /area/outpost/research/anomaly_storage) -"lB" = ( +"lx" = ( /obj/effect/decal/remains/human, /turf/simulated/floor/tiled/airless{ icon_state = "steel_broken2" }, /area/outpost/abandoned) -"lC" = ( +"ly" = ( /obj/structure/table/standard, /turf/simulated/floor/tiled/airless{ icon_state = "steel_burned1" }, /area/outpost/abandoned) -"lD" = ( +"lz" = ( /obj/structure/grille, /obj/structure/window/reinforced, /obj/structure/window/reinforced{ @@ -5883,7 +5858,7 @@ }, /turf/simulated/floor/plating, /area/outpost/abandoned) -"lE" = ( +"lA" = ( /obj/structure/grille, /obj/structure/window/reinforced, /obj/structure/window/reinforced{ @@ -5894,14 +5869,14 @@ }, /turf/simulated/floor/plating, /area/outpost/abandoned) -"lF" = ( +"lB" = ( /obj/structure/ore_box, /obj/machinery/light_construct/small{ dir = 1 }, /turf/simulated/floor/asteroid/ash, /area/mine/explored) -"lG" = ( +"lC" = ( /obj/machinery/alarm{ dir = 4; icon_state = "alarm0"; @@ -5911,12 +5886,12 @@ /obj/structure/dispenser/oxygen, /turf/simulated/floor/tiled, /area/outpost/research/eva) -"lH" = ( +"lD" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/machinery/floodlight, /turf/simulated/floor/tiled, /area/outpost/research/eva) -"lI" = ( +"lE" = ( /obj/structure/window/reinforced{ dir = 1 }, @@ -5931,20 +5906,20 @@ /obj/machinery/portable_atmospherics/canister/air/airlock, /turf/simulated/floor/tiled, /area/outpost/research/eva) -"lJ" = ( +"lF" = ( /obj/machinery/atmospherics/pipe/simple/hidden{ dir = 4 }, /turf/simulated/floor/tiled, /area/outpost/research/eva) -"lK" = ( +"lG" = ( /obj/machinery/atmospherics/pipe/manifold/hidden{ dir = 4; icon_state = "map" }, /turf/simulated/floor/tiled, /area/outpost/research/eva) -"lL" = ( +"lH" = ( /obj/item/weapon/storage/box/excavation, /obj/item/weapon/pickaxe, /obj/machinery/status_display{ @@ -5958,16 +5933,16 @@ /obj/structure/table/steel, /turf/simulated/floor, /area/outpost/research/eva) -"lM" = ( +"lI" = ( /obj/machinery/mineral/unloading_machine, /turf/simulated/floor/tiled, /area/outpost/research/eva) -"lN" = ( +"lJ" = ( /turf/simulated/floor/tiled/airless{ icon_state = "asteroidfloor" }, /area/mine/explored) -"lO" = ( +"lK" = ( /obj/machinery/conveyor{ dir = 2; id = "anotempload" @@ -5980,7 +5955,7 @@ icon_state = "asteroidfloor" }, /area/mine/explored) -"lP" = ( +"lL" = ( /obj/machinery/conveyor{ dir = 1; id = "anosample" @@ -5993,7 +5968,7 @@ icon_state = "asteroidfloor" }, /area/mine/explored) -"lQ" = ( +"lM" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/structure/cable/blue{ @@ -6009,7 +5984,7 @@ /obj/effect/floor_decal/industrial/warning, /turf/simulated/floor/plating, /area/outpost/research/power) -"lR" = ( +"lN" = ( /obj/structure/cable/blue{ d2 = 8; icon_state = "0-8" @@ -6025,32 +6000,32 @@ }, /turf/simulated/floor/plating, /area/outpost/research/power) -"lS" = ( +"lO" = ( /obj/machinery/atmospherics/unary/vent_scrubber/on{ dir = 1 }, /turf/simulated/floor/plating, /area/outpost/research/power) -"lT" = ( +"lP" = ( /obj/machinery/atmospherics/unary/heater{ dir = 4 }, /turf/simulated/floor/tiled, /area/outpost/research/isolation_monitoring) -"lU" = ( +"lQ" = ( /obj/machinery/atmospherics/pipe/simple/visible/yellow{ dir = 4 }, /turf/simulated/floor/tiled, /area/outpost/research/isolation_monitoring) -"lV" = ( +"lR" = ( /obj/machinery/atmospherics/pipe/manifold/visible/yellow{ icon_state = "map"; dir = 4 }, /turf/simulated/floor/tiled, /area/outpost/research/isolation_monitoring) -"lW" = ( +"lS" = ( /obj/structure/cable/blue{ d1 = 4; d2 = 8; @@ -6062,7 +6037,7 @@ }, /turf/simulated/floor/tiled, /area/outpost/research/isolation_monitoring) -"lX" = ( +"lT" = ( /obj/machinery/power/emitter{ anchored = 1 }, @@ -6073,20 +6048,20 @@ /obj/effect/floor_decal/industrial/hatch/yellow, /turf/simulated/floor/tiled, /area/outpost/research/isolation_monitoring) -"lY" = ( +"lU" = ( /obj/effect/floor_decal/industrial/warning{ icon_state = "warning"; dir = 8 }, /turf/simulated/floor/tiled, /area/outpost/research/isolation_monitoring) -"lZ" = ( +"lV" = ( /obj/machinery/atmospherics/portables_connector{ dir = 1 }, /turf/simulated/floor/tiled, /area/outpost/research/isolation_monitoring) -"ma" = ( +"lW" = ( /obj/structure/closet/hydrant{ pixel_x = -32 }, @@ -6095,7 +6070,7 @@ }, /turf/simulated/floor/plating, /area/outpost/research/emergency_storage) -"mb" = ( +"lX" = ( /obj/structure/table/rack, /obj/item/weapon/storage/box/gloves{ pixel_x = 4; @@ -6111,7 +6086,7 @@ }, /turf/simulated/floor/plating, /area/outpost/research/emergency_storage) -"mc" = ( +"lY" = ( /obj/structure/grille, /obj/structure/window/reinforced, /obj/structure/window/reinforced{ @@ -6124,7 +6099,7 @@ icon_state = "dmg2" }, /area/outpost/abandoned) -"md" = ( +"lZ" = ( /obj/structure/grille, /obj/structure/window/reinforced{ dir = 1 @@ -6137,7 +6112,7 @@ icon_state = "dmg2" }, /area/outpost/abandoned) -"me" = ( +"ma" = ( /obj/machinery/door/airlock/glass{ name = "Glass Airlock" }, @@ -6145,7 +6120,7 @@ icon_state = "steel_burned0" }, /area/outpost/abandoned) -"mf" = ( +"mb" = ( /obj/structure/grille, /obj/structure/window/reinforced, /obj/structure/window/reinforced{ @@ -6161,22 +6136,22 @@ icon_state = "dmg2" }, /area/outpost/abandoned) -"mg" = ( +"mc" = ( /obj/machinery/portable_atmospherics/canister/oxygen, /turf/simulated/floor/tiled, /area/outpost/research/eva) -"mh" = ( +"md" = ( /obj/machinery/suspension_gen, /turf/simulated/floor/tiled, /area/outpost/research/eva) -"mi" = ( +"me" = ( /obj/machinery/floodlight, /obj/machinery/atmospherics/unary/vent_scrubber/on{ dir = 1 }, /turf/simulated/floor/tiled, /area/outpost/research/eva) -"mj" = ( +"mf" = ( /obj/machinery/door/window{ dir = 4; name = "Air Tank Access"; @@ -6188,7 +6163,7 @@ /obj/machinery/portable_atmospherics/canister/air/airlock, /turf/simulated/floor/tiled, /area/outpost/research/eva) -"mk" = ( +"mg" = ( /obj/machinery/access_button{ command = "cycle_interior"; frequency = 1379; @@ -6204,7 +6179,7 @@ }, /turf/simulated/floor/tiled, /area/outpost/research/eva) -"ml" = ( +"mh" = ( /obj/item/weapon/storage/box/excavation, /obj/item/weapon/pickaxe, /obj/item/weapon/wrench, @@ -6213,7 +6188,7 @@ /obj/structure/table/steel, /turf/simulated/floor, /area/outpost/research/eva) -"mm" = ( +"mi" = ( /obj/machinery/conveyor{ dir = 2; id = "anominerals" @@ -6221,7 +6196,7 @@ /obj/machinery/mineral/output, /turf/simulated/floor/tiled, /area/outpost/research/eva) -"mn" = ( +"mj" = ( /obj/machinery/light{ dir = 8 }, @@ -6229,7 +6204,7 @@ icon_state = "asteroidfloor" }, /area/mine/explored) -"mo" = ( +"mk" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/door/airlock/research{ @@ -6243,11 +6218,11 @@ }, /turf/simulated/floor/tiled, /area/outpost/research/power) -"mp" = ( +"ml" = ( /obj/structure/sign/electricshock, /turf/simulated/wall/r_wall, /area/outpost/research/power) -"mq" = ( +"mm" = ( /obj/machinery/atmospherics/unary/freezer{ dir = 4; icon_state = "freezer" @@ -6258,11 +6233,11 @@ }, /turf/simulated/floor/tiled, /area/outpost/research/isolation_monitoring) -"mr" = ( +"mn" = ( /obj/machinery/atmospherics/pipe/manifold/visible/yellow, /turf/simulated/floor/tiled, /area/outpost/research/isolation_monitoring) -"ms" = ( +"mo" = ( /obj/machinery/atmospherics/pipe/simple/visible/yellow{ dir = 4 }, @@ -6273,7 +6248,7 @@ }, /turf/simulated/floor/tiled, /area/outpost/research/isolation_monitoring) -"mt" = ( +"mp" = ( /obj/machinery/atmospherics/pipe/simple/visible/yellow{ dir = 4 }, @@ -6283,7 +6258,7 @@ }, /turf/simulated/floor/tiled, /area/outpost/research/isolation_monitoring) -"mu" = ( +"mq" = ( /obj/machinery/atmospherics/pipe/manifold/visible/yellow{ icon_state = "map"; dir = 1 @@ -6291,7 +6266,7 @@ /obj/effect/floor_decal/industrial/hatch/yellow, /turf/simulated/floor/tiled, /area/outpost/research/isolation_monitoring) -"mv" = ( +"mr" = ( /obj/machinery/atmospherics/pipe/simple/visible/yellow{ dir = 4 }, @@ -6301,14 +6276,14 @@ }, /turf/simulated/floor/tiled, /area/outpost/research/isolation_monitoring) -"mw" = ( +"ms" = ( /obj/machinery/atmospherics/pipe/simple/visible/yellow{ icon_state = "intact"; dir = 10 }, /turf/simulated/floor/tiled, /area/outpost/research/isolation_monitoring) -"mx" = ( +"mt" = ( /obj/structure/table/rack, /obj/item/weapon/storage/box/monkeycubes, /obj/item/weapon/storage/box/monkeycubes, @@ -6316,7 +6291,7 @@ /obj/item/weapon/reagent_containers/spray/cleaner, /turf/simulated/floor/plating, /area/outpost/research/emergency_storage) -"my" = ( +"mu" = ( /obj/structure/table/rack, /obj/item/weapon/storage/box/lights/bulbs{ pixel_x = 5; @@ -6330,30 +6305,30 @@ /obj/machinery/light/small, /turf/simulated/floor/plating, /area/outpost/research/emergency_storage) -"mz" = ( +"mv" = ( /obj/effect/decal/remains/human, /turf/simulated/floor/tiled/airless{ icon_state = "steel_burned1" }, /area/outpost/abandoned) -"mA" = ( +"mw" = ( /obj/structure/table, /turf/simulated/floor/airless, /area/outpost/abandoned) -"mB" = ( +"mx" = ( /obj/structure/table/rack, /turf/simulated/floor/tiled/airless{ icon_state = "steel_broken2" }, /area/outpost/abandoned) -"mC" = ( +"my" = ( /turf/simulated/floor/asteroid/ash, /area/mine/unexplored) -"mD" = ( +"mz" = ( /obj/structure/closet, /turf/simulated/floor/asteroid/ash, /area/mine/explored) -"mE" = ( +"mA" = ( /obj/structure/grille, /obj/structure/window/reinforced, /obj/structure/window/reinforced{ @@ -6367,7 +6342,7 @@ }, /turf/simulated/floor/plating, /area/outpost/research/eva) -"mF" = ( +"mB" = ( /obj/structure/grille, /obj/structure/window/reinforced, /obj/structure/window/reinforced{ @@ -6381,7 +6356,7 @@ }, /turf/simulated/floor/plating, /area/outpost/research/eva) -"mG" = ( +"mC" = ( /obj/structure/window/reinforced{ dir = 4 }, @@ -6398,7 +6373,7 @@ }, /turf/simulated/floor/plating, /area/outpost/research/eva) -"mH" = ( +"mD" = ( /obj/machinery/door/firedoor{ dir = 2 }, @@ -6412,14 +6387,14 @@ /obj/machinery/atmospherics/pipe/simple/hidden, /turf/simulated/floor/tiled, /area/outpost/research/eva) -"mI" = ( +"mE" = ( /obj/machinery/disposal/deliveryChute{ dir = 1 }, /obj/structure/disposalpipe/trunk, /turf/simulated/floor/tiled, /area/outpost/research/eva) -"mJ" = ( +"mF" = ( /obj/effect/floor_decal/industrial/warning/dust{ icon_state = "warning_dust"; dir = 10 @@ -6428,7 +6403,7 @@ icon_state = "asteroidfloor" }, /area/mine/explored) -"mK" = ( +"mG" = ( /obj/structure/sign/securearea{ desc = "A warning sign which reads 'MOVING PARTS'."; name = "\improper MOVING PARTS"; @@ -6443,7 +6418,7 @@ icon_state = "asteroidfloor" }, /area/mine/explored) -"mL" = ( +"mH" = ( /obj/machinery/atmospherics/pipe/simple/visible/supply{ icon_state = "intact-supply"; dir = 5 @@ -6459,7 +6434,7 @@ }, /turf/simulated/floor/tiled, /area/outpost/research/power) -"mM" = ( +"mI" = ( /obj/machinery/atmospherics/pipe/simple/visible/supply{ dir = 10 }, @@ -6471,14 +6446,14 @@ }, /turf/simulated/floor/tiled, /area/outpost/research/power) -"mN" = ( +"mJ" = ( /obj/machinery/atmospherics/pipe/simple/visible/scrubbers{ icon_state = "intact-scrubbers"; dir = 10 }, /turf/simulated/floor/tiled, /area/outpost/research/power) -"mO" = ( +"mK" = ( /obj/machinery/button/remote/airlock{ id = "riso1"; name = "Door Bolt Control"; @@ -6493,7 +6468,7 @@ }, /turf/simulated/floor/tiled, /area/outpost/research/isolation_monitoring) -"mP" = ( +"mL" = ( /obj/machinery/atmospherics/valve/digital/open, /obj/structure/cable/blue{ d1 = 4; @@ -6502,7 +6477,7 @@ }, /turf/simulated/floor/tiled, /area/outpost/research/isolation_monitoring) -"mQ" = ( +"mM" = ( /obj/structure/cable/blue{ d1 = 4; d2 = 8; @@ -6510,7 +6485,7 @@ }, /turf/simulated/floor/tiled, /area/outpost/research/isolation_monitoring) -"mR" = ( +"mN" = ( /obj/machinery/button/remote/airlock{ id = "riso2"; name = "Door Bolt Control"; @@ -6530,7 +6505,7 @@ }, /turf/simulated/floor/tiled, /area/outpost/research/isolation_monitoring) -"mS" = ( +"mO" = ( /obj/structure/cable/blue{ d1 = 2; d2 = 8; @@ -6547,7 +6522,7 @@ }, /turf/simulated/floor/tiled, /area/outpost/research/isolation_monitoring) -"mT" = ( +"mP" = ( /obj/machinery/atmospherics/valve/digital/open, /obj/structure/cable/blue{ d1 = 4; @@ -6557,7 +6532,7 @@ /obj/effect/floor_decal/industrial/hatch/yellow, /turf/simulated/floor/tiled, /area/outpost/research/isolation_monitoring) -"mU" = ( +"mQ" = ( /obj/structure/cable/blue{ d1 = 4; d2 = 8; @@ -6569,7 +6544,7 @@ }, /turf/simulated/floor/tiled, /area/outpost/research/isolation_monitoring) -"mV" = ( +"mR" = ( /obj/machinery/button/remote/airlock{ id = "riso3"; name = "Door Bolt Control"; @@ -6584,7 +6559,7 @@ }, /turf/simulated/floor/tiled, /area/outpost/research/isolation_monitoring) -"mW" = ( +"mS" = ( /obj/structure/cable/blue{ d1 = 2; d2 = 8; @@ -6592,41 +6567,41 @@ }, /turf/simulated/floor/tiled, /area/outpost/research/isolation_monitoring) -"mX" = ( +"mT" = ( /obj/machinery/atmospherics/valve/digital/open, /turf/simulated/floor/tiled, /area/outpost/research/isolation_monitoring) -"mY" = ( +"mU" = ( /obj/structure/girder/displaced, /turf/simulated/floor/airless{ icon_state = "dmg2" }, /area/outpost/abandoned) -"mZ" = ( +"mV" = ( /obj/structure/table/steel, /turf/simulated/floor/asteroid/ash, /area/mine/explored) -"na" = ( +"mW" = ( /obj/structure/bed/chair{ dir = 8 }, /turf/simulated/floor/asteroid/ash, /area/mine/explored) -"nb" = ( +"mX" = ( /obj/structure/bed/chair{ dir = 4 }, /turf/simulated/floor/asteroid/ash, /area/mine/explored) -"nc" = ( +"mY" = ( /obj/structure/table/rack, /turf/simulated/floor/asteroid/ash, /area/mine/explored) -"nd" = ( +"mZ" = ( /obj/structure/lattice, /turf/template_noop, /area/mine/explored) -"ne" = ( +"na" = ( /obj/structure/window/reinforced{ dir = 8 }, @@ -6635,13 +6610,13 @@ icon_state = "asteroidfloor" }, /area/mine/explored) -"nf" = ( +"nb" = ( /obj/machinery/mech_recharger, /turf/simulated/floor/tiled/airless{ icon_state = "asteroidfloor" }, /area/mine/explored) -"ng" = ( +"nc" = ( /obj/machinery/light/small{ dir = 8 }, @@ -6662,11 +6637,11 @@ }, /turf/simulated/floor/tiled, /area/outpost/research/eva) -"nh" = ( +"nd" = ( /obj/machinery/atmospherics/pipe/manifold4w/hidden, /turf/simulated/floor/tiled, /area/outpost/research/eva) -"ni" = ( +"ne" = ( /obj/machinery/atmospherics/unary/vent_pump/high_volume{ dir = 8; frequency = 1379; @@ -6675,7 +6650,7 @@ /obj/structure/closet/walllocker/emerglocker/east, /turf/simulated/floor/tiled, /area/outpost/research/eva) -"nj" = ( +"nf" = ( /obj/structure/window/reinforced{ dir = 4 }, @@ -6689,7 +6664,7 @@ }, /turf/simulated/floor/plating, /area/outpost/research/eva) -"nk" = ( +"ng" = ( /obj/machinery/conveyor_switch{ id = "anotempload"; name = "conveyor switch"; @@ -6699,14 +6674,14 @@ }, /turf/simulated/floor/asteroid/ash, /area/mine/explored) -"nl" = ( +"nh" = ( /obj/machinery/conveyor_switch{ id = "anosample"; req_access = list(65) }, /turf/simulated/floor/asteroid/ash, /area/mine/explored) -"nm" = ( +"ni" = ( /obj/structure/cable/blue{ d2 = 2; icon_state = "0-2" @@ -6718,14 +6693,14 @@ }, /turf/simulated/floor/tiled, /area/outpost/research/power) -"nn" = ( +"nj" = ( /obj/machinery/atmospherics/pipe/simple/visible/universal, /turf/simulated/floor/tiled, /area/outpost/research/power) -"no" = ( +"nk" = ( /turf/simulated/wall/r_wall, /area/outpost/research/isolation_a) -"np" = ( +"nl" = ( /obj/machinery/door/airlock/external{ id_tag = "riso1"; name = "Access Airlock"; @@ -6738,7 +6713,7 @@ }, /turf/simulated/floor/tiled, /area/outpost/research/isolation_a) -"nq" = ( +"nm" = ( /obj/structure/window/reinforced, /obj/structure/window/reinforced{ dir = 1 @@ -6750,7 +6725,7 @@ /obj/machinery/atmospherics/pipe/simple/visible/yellow, /turf/simulated/floor/plating, /area/outpost/research/isolation_a) -"nr" = ( +"nn" = ( /obj/structure/window/reinforced, /obj/structure/window/reinforced{ dir = 4 @@ -6761,7 +6736,7 @@ /obj/structure/grille, /turf/simulated/floor/plating, /area/outpost/research/isolation_a) -"ns" = ( +"no" = ( /obj/machinery/door/airlock/external{ id_tag = "riso2"; name = "Access Airlock"; @@ -6774,7 +6749,7 @@ }, /turf/simulated/floor/tiled, /area/outpost/research/isolation_b) -"nt" = ( +"np" = ( /obj/structure/window/reinforced, /obj/structure/window/reinforced{ dir = 1 @@ -6786,7 +6761,7 @@ /obj/machinery/atmospherics/pipe/simple/visible/yellow, /turf/simulated/floor/plating, /area/outpost/research/isolation_b) -"nu" = ( +"nq" = ( /obj/structure/window/reinforced, /obj/structure/window/reinforced{ dir = 4 @@ -6797,10 +6772,10 @@ /obj/structure/grille, /turf/simulated/floor/plating, /area/outpost/research/isolation_b) -"nv" = ( +"nr" = ( /turf/simulated/wall/r_wall, /area/outpost/research/isolation_c) -"nw" = ( +"ns" = ( /obj/machinery/door/airlock/external{ id_tag = "riso3"; name = "Access Airlock"; @@ -6813,7 +6788,7 @@ }, /turf/simulated/floor/tiled, /area/outpost/research/isolation_c) -"nx" = ( +"nt" = ( /obj/structure/window/reinforced, /obj/structure/window/reinforced{ dir = 1 @@ -6825,7 +6800,7 @@ /obj/machinery/atmospherics/pipe/simple/visible/yellow, /turf/simulated/floor/plating, /area/outpost/research/isolation_c) -"ny" = ( +"nu" = ( /obj/structure/window/reinforced, /obj/structure/window/reinforced{ dir = 4 @@ -6836,13 +6811,13 @@ /obj/structure/grille, /turf/simulated/floor/plating, /area/outpost/research/isolation_c) -"nz" = ( +"nv" = ( /obj/structure/girder, /turf/simulated/floor/airless{ icon_state = "dmg2" }, /area/outpost/abandoned) -"nA" = ( +"nw" = ( /obj/structure/grille, /obj/structure/window/reinforced, /obj/structure/window/reinforced{ @@ -6853,7 +6828,7 @@ }, /turf/simulated/floor/plating, /area/mine/explored) -"nB" = ( +"nx" = ( /obj/structure/grille, /obj/structure/window/reinforced, /obj/structure/window/reinforced{ @@ -6864,17 +6839,17 @@ }, /turf/simulated/floor/plating, /area/mine/explored) -"nC" = ( +"ny" = ( /obj/structure/window/reinforced, /obj/structure/lattice, /turf/template_noop, /area/mine/explored) -"nD" = ( +"nz" = ( /obj/structure/lattice, /obj/structure/window/reinforced, /turf/template_noop, /area/mine/explored) -"nE" = ( +"nA" = ( /obj/structure/lattice, /obj/structure/window/reinforced, /obj/machinery/light{ @@ -6883,7 +6858,7 @@ }, /turf/template_noop, /area/mine/explored) -"nF" = ( +"nB" = ( /obj/machinery/airlock_sensor{ frequency = 1379; id_tag = "research_sensor"; @@ -6898,12 +6873,12 @@ /obj/effect/floor_decal/industrial/warning, /turf/simulated/floor/tiled, /area/outpost/research/eva) -"nG" = ( +"nC" = ( /obj/machinery/atmospherics/pipe/manifold/hidden, /obj/effect/floor_decal/industrial/warning, /turf/simulated/floor/tiled, /area/outpost/research/eva) -"nH" = ( +"nD" = ( /obj/structure/ore_box, /obj/machinery/atmospherics/unary/vent_pump/high_volume{ dir = 8; @@ -6916,7 +6891,7 @@ /obj/effect/floor_decal/industrial/warning, /turf/simulated/floor/tiled, /area/outpost/research/eva) -"nI" = ( +"nE" = ( /obj/structure/window/reinforced{ dir = 4 }, @@ -6927,7 +6902,7 @@ }, /turf/simulated/floor/plating, /area/outpost/research/eva) -"nJ" = ( +"nF" = ( /obj/machinery/power/smes/buildable/outpost_substation{ charge = 500000; input_attempt = 1; @@ -6939,11 +6914,11 @@ /obj/structure/cable/blue, /turf/simulated/floor, /area/outpost/research/power) -"nK" = ( +"nG" = ( /obj/machinery/atmospherics/valve/digital/open, /turf/simulated/floor/tiled, /area/outpost/research/power) -"nL" = ( +"nH" = ( /obj/machinery/atmospherics/valve/digital/open, /obj/machinery/light{ icon_state = "tube1"; @@ -6951,7 +6926,7 @@ }, /turf/simulated/floor/tiled, /area/outpost/research/power) -"nM" = ( +"nI" = ( /obj/machinery/atmospherics/unary/vent_pump{ dir = 4; use_power = 0 @@ -6964,11 +6939,11 @@ }, /turf/simulated/floor/tiled, /area/outpost/research/isolation_a) -"nN" = ( +"nJ" = ( /obj/machinery/atmospherics/pipe/manifold/visible/yellow, /turf/simulated/floor/tiled, /area/outpost/research/isolation_a) -"nO" = ( +"nK" = ( /obj/machinery/alarm/monitor/isolation{ alarm_id = "isolation_one"; dir = 8; @@ -6980,7 +6955,7 @@ }, /turf/simulated/floor/tiled, /area/outpost/research/isolation_a) -"nP" = ( +"nL" = ( /obj/machinery/atmospherics/unary/vent_pump{ dir = 4; use_power = 0 @@ -6993,11 +6968,11 @@ }, /turf/simulated/floor/tiled, /area/outpost/research/isolation_b) -"nQ" = ( +"nM" = ( /obj/machinery/atmospherics/pipe/manifold/visible/yellow, /turf/simulated/floor/tiled, /area/outpost/research/isolation_b) -"nR" = ( +"nN" = ( /obj/machinery/alarm/monitor/isolation{ alarm_id = "isolation_two"; dir = 8; @@ -7009,7 +6984,7 @@ }, /turf/simulated/floor/tiled, /area/outpost/research/isolation_b) -"nS" = ( +"nO" = ( /obj/machinery/atmospherics/unary/vent_pump{ dir = 4; use_power = 0 @@ -7022,11 +6997,11 @@ }, /turf/simulated/floor/tiled, /area/outpost/research/isolation_c) -"nT" = ( +"nP" = ( /obj/machinery/atmospherics/pipe/manifold/visible/yellow, /turf/simulated/floor/tiled, /area/outpost/research/isolation_c) -"nU" = ( +"nQ" = ( /obj/machinery/alarm/monitor/isolation{ alarm_id = "isolation_three"; dir = 8; @@ -7038,32 +7013,32 @@ }, /turf/simulated/floor/tiled, /area/outpost/research/isolation_c) -"nV" = ( +"nR" = ( /turf/template_noop, /area/mine/unexplored) -"nW" = ( +"nS" = ( /obj/structure/closet/crate, /turf/simulated/floor/asteroid/ash, /area/mine/explored) -"nX" = ( +"nT" = ( /obj/machinery/floodlight, /turf/simulated/floor/asteroid/ash, /area/mine/explored) -"nY" = ( +"nU" = ( /obj/machinery/door/airlock/external{ name = "Mining Bridge"; req_one_access = list(54,65) }, /turf/simulated/floor/airless, /area/mine/explored) -"nZ" = ( +"nV" = ( /obj/structure/window/reinforced, /obj/structure/window/reinforced{ dir = 1 }, /turf/simulated/floor/airless, /area/mine/explored) -"oa" = ( +"nW" = ( /obj/structure/window/reinforced{ dir = 4 }, @@ -7084,7 +7059,7 @@ }, /turf/simulated/floor/plating, /area/outpost/research/eva) -"ob" = ( +"nX" = ( /obj/machinery/door/firedoor{ dir = 2 }, @@ -7098,7 +7073,7 @@ }, /turf/simulated/floor/plating, /area/outpost/research/eva) -"oc" = ( +"nY" = ( /obj/structure/disposalpipe/segment, /obj/structure/window/reinforced{ dir = 4 @@ -7110,7 +7085,7 @@ }, /turf/simulated/floor/plating, /area/outpost/research/eva) -"od" = ( +"nZ" = ( /obj/effect/floor_decal/industrial/warning/dust{ icon_state = "warning_dust"; dir = 5 @@ -7119,7 +7094,7 @@ icon_state = "asteroidfloor" }, /area/mine/explored) -"oe" = ( +"oa" = ( /obj/structure/sign/securearea{ desc = "A warning sign which reads 'HIGH VOLTAGE'"; icon_state = "shock"; @@ -7127,7 +7102,7 @@ }, /turf/simulated/wall/r_wall, /area/outpost/research/power) -"of" = ( +"ob" = ( /obj/structure/cable{ d2 = 2; icon_state = "0-2"; @@ -7139,7 +7114,7 @@ }, /turf/simulated/floor/tiled, /area/outpost/research/power) -"og" = ( +"oc" = ( /obj/item/device/radio/intercom{ frequency = 1459; name = "Station Intercom (General)"; @@ -7151,14 +7126,14 @@ }, /turf/simulated/floor/tiled/dark, /area/outpost/research/isolation_a) -"oh" = ( +"od" = ( /obj/effect/floor_decal/industrial/warning{ icon_state = "warning"; dir = 1 }, /turf/simulated/floor/tiled/dark, /area/outpost/research/isolation_a) -"oi" = ( +"oe" = ( /obj/machinery/camera/network/research_outpost{ c_tag = "Research Outpost Isolation Cell A"; dir = 8 @@ -7172,7 +7147,7 @@ }, /turf/simulated/floor/tiled/dark, /area/outpost/research/isolation_a) -"oj" = ( +"of" = ( /obj/item/device/radio/intercom{ frequency = 1459; name = "Station Intercom (General)"; @@ -7184,7 +7159,7 @@ }, /turf/simulated/floor/tiled/dark, /area/outpost/research/isolation_b) -"ok" = ( +"og" = ( /obj/effect/landmark{ name = "bluespacerift" }, @@ -7194,7 +7169,7 @@ }, /turf/simulated/floor/tiled/dark, /area/outpost/research/isolation_b) -"ol" = ( +"oh" = ( /obj/machinery/camera/network/research_outpost{ c_tag = "Research Outpost Isolation Cell B"; dir = 8 @@ -7208,7 +7183,7 @@ }, /turf/simulated/floor/tiled/dark, /area/outpost/research/isolation_b) -"om" = ( +"oi" = ( /obj/item/device/radio/intercom{ frequency = 1459; name = "Station Intercom (General)"; @@ -7220,14 +7195,14 @@ }, /turf/simulated/floor/tiled/dark, /area/outpost/research/isolation_c) -"on" = ( +"oj" = ( /obj/effect/floor_decal/industrial/warning{ icon_state = "warning"; dir = 1 }, /turf/simulated/floor/tiled/dark, /area/outpost/research/isolation_c) -"oo" = ( +"ok" = ( /obj/machinery/camera/network/research_outpost{ c_tag = "Research Outpost Isolation Cell C"; dir = 8 @@ -7241,7 +7216,7 @@ }, /turf/simulated/floor/tiled/dark, /area/outpost/research/isolation_c) -"op" = ( +"ol" = ( /obj/machinery/door/airlock/external{ name = "External Airlock" }, @@ -7250,7 +7225,7 @@ icon_state = "asteroidfloor" }, /area/outpost/abandoned) -"oq" = ( +"om" = ( /obj/structure/window/reinforced, /obj/structure/window/reinforced{ dir = 8 @@ -7264,7 +7239,7 @@ icon_state = "dmg2" }, /area/outpost/abandoned) -"or" = ( +"on" = ( /obj/structure/lattice, /obj/structure/window/reinforced{ dir = 1 @@ -7275,14 +7250,14 @@ }, /turf/template_noop, /area/mine/explored) -"os" = ( +"oo" = ( /obj/structure/lattice, /obj/structure/window/reinforced{ dir = 1 }, /turf/template_noop, /area/mine/explored) -"ot" = ( +"op" = ( /obj/structure/sign/science{ desc = "A warning sign which reads 'ANOMALOUS MATERIALS'"; name = "\improper ANOMALOUS MATERIALS"; @@ -7291,7 +7266,7 @@ }, /turf/simulated/floor/asteroid/ash, /area/mine/explored) -"ou" = ( +"oq" = ( /obj/machinery/access_button{ command = "cycle_exterior"; frequency = 1379; @@ -7306,7 +7281,7 @@ icon_state = "asteroidfloor" }, /area/mine/explored) -"ov" = ( +"or" = ( /obj/effect/floor_decal/industrial/warning/dust{ icon_state = "warning_dust"; dir = 6 @@ -7315,7 +7290,7 @@ icon_state = "asteroidfloor" }, /area/mine/explored) -"ow" = ( +"os" = ( /obj/machinery/light{ dir = 1 }, @@ -7333,7 +7308,7 @@ icon_state = "asteroidfloor" }, /area/mine/explored) -"ox" = ( +"ot" = ( /obj/structure/disposalpipe/segment, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 6 @@ -7350,7 +7325,7 @@ icon_state = "asteroidfloor" }, /area/mine/explored) -"oy" = ( +"ou" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, @@ -7371,7 +7346,7 @@ icon_state = "asteroidfloor" }, /area/mine/explored) -"oz" = ( +"ov" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, @@ -7386,7 +7361,7 @@ }, /turf/simulated/floor/asteroid/ash, /area/mine/explored) -"oA" = ( +"ow" = ( /obj/structure/window/reinforced, /obj/structure/window/reinforced{ dir = 4 @@ -7414,7 +7389,7 @@ }, /turf/simulated/floor/plating, /area/outpost/research/power) -"oB" = ( +"ox" = ( /obj/machinery/atmospherics/pipe/simple/visible/scrubbers{ dir = 4 }, @@ -7428,7 +7403,7 @@ }, /turf/simulated/floor/tiled, /area/outpost/research/power) -"oC" = ( +"oy" = ( /obj/machinery/atmospherics/pipe/simple/visible/scrubbers{ dir = 4 }, @@ -7438,55 +7413,55 @@ }, /turf/simulated/floor/tiled, /area/outpost/research/power) -"oD" = ( +"oz" = ( /obj/machinery/atmospherics/pipe/simple/visible/scrubbers{ icon_state = "intact-scrubbers"; dir = 9 }, /turf/simulated/floor/tiled, /area/outpost/research/power) -"oE" = ( +"oA" = ( /obj/structure/table/standard, /obj/item/device/flashlight/lamp, /turf/simulated/floor/tiled/dark, /area/outpost/research/isolation_a) -"oF" = ( +"oB" = ( /obj/machinery/light, /turf/simulated/floor/bluegrid, /area/outpost/research/isolation_a) -"oG" = ( +"oC" = ( /obj/machinery/artifact_analyser, /turf/simulated/floor/bluegrid, /area/outpost/research/isolation_a) -"oH" = ( +"oD" = ( /obj/structure/table/standard, /obj/item/device/flashlight/lamp, /turf/simulated/floor/tiled/dark, /area/outpost/research/isolation_b) -"oI" = ( +"oE" = ( /obj/machinery/artifact_scanpad, /turf/simulated/floor/bluegrid, /area/outpost/research/isolation_b) -"oJ" = ( +"oF" = ( /obj/machinery/artifact_analyser, /turf/simulated/floor/bluegrid, /area/outpost/research/isolation_b) -"oK" = ( +"oG" = ( /obj/structure/bed/chair{ dir = 1 }, /turf/simulated/floor/tiled/dark, /area/outpost/research/isolation_c) -"oL" = ( +"oH" = ( /obj/structure/table/standard, /obj/item/device/flashlight/lamp, /turf/simulated/floor/tiled/dark, /area/outpost/research/isolation_c) -"oM" = ( +"oI" = ( /obj/structure/bed, /turf/simulated/floor/tiled/dark, /area/outpost/research/isolation_c) -"oN" = ( +"oJ" = ( /obj/structure/disposalpipe/segment, /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, @@ -7500,10 +7475,10 @@ icon_state = "asteroidfloor" }, /area/mine/explored) -"oO" = ( +"oK" = ( /turf/simulated/wall/r_wall, /area/outpost/research/isolation_b) -"oP" = ( +"oL" = ( /obj/item/weapon/material/shard{ icon_state = "medium" }, @@ -7511,7 +7486,7 @@ icon_state = "steel_burned0" }, /area/outpost/abandoned) -"oQ" = ( +"oM" = ( /obj/structure/disposalpipe/segment, /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, @@ -7522,7 +7497,7 @@ }, /turf/simulated/floor/asteroid/ash, /area/mine/explored) -"oR" = ( +"oN" = ( /obj/structure/window/reinforced{ dir = 8 }, @@ -7536,7 +7511,7 @@ icon_state = "dmg2" }, /area/outpost/abandoned) -"oS" = ( +"oO" = ( /obj/machinery/door/airlock/external{ name = "External Airlock" }, @@ -7544,17 +7519,17 @@ icon_state = "steel_burned0" }, /area/outpost/abandoned) -"oT" = ( +"oP" = ( /obj/structure/table/rack, /obj/item/weapon/storage/toolbox/mechanical, /turf/simulated/floor/asteroid/ash, /area/mine/explored) -"oU" = ( +"oQ" = ( /obj/structure/table/rack, /obj/item/weapon/pickaxe, /turf/simulated/floor/asteroid/ash, /area/mine/explored) -"oV" = ( +"oR" = ( /obj/machinery/light_construct/small, /obj/structure/table/rack, /obj/item/stack/material/steel{ @@ -7562,12 +7537,12 @@ }, /turf/simulated/floor/asteroid/ash, /area/mine/explored) -"oW" = ( +"oS" = ( /turf/simulated/floor/tiled/airless{ icon_state = "steel_burned0" }, /area/mine/unexplored) -"oX" = ( +"oT" = ( /obj/structure/disposalpipe/segment{ dir = 1; icon_state = "pipe-c" @@ -7585,7 +7560,7 @@ }, /turf/simulated/floor/asteroid/ash, /area/mine/explored) -"oY" = ( +"oU" = ( /obj/structure/disposalpipe/segment{ dir = 2; icon_state = "pipe-c" @@ -7603,17 +7578,17 @@ }, /turf/simulated/floor/asteroid/ash, /area/mine/explored) -"oZ" = ( +"oV" = ( /obj/machinery/light{ icon_state = "tube1"; dir = 4 }, /turf/simulated/floor/asteroid/ash, /area/mine/explored) -"pa" = ( +"oW" = ( /turf/simulated/wall, /area/outpost/mining_north) -"pb" = ( +"oX" = ( /obj/effect/floor_decal/industrial/warning/dust{ icon_state = "warning_dust"; dir = 9 @@ -7622,7 +7597,7 @@ icon_state = "asteroidfloor" }, /area/mine/explored) -"pc" = ( +"oY" = ( /obj/structure/grille, /obj/structure/window/reinforced, /obj/structure/window/reinforced{ @@ -7642,7 +7617,7 @@ }, /turf/simulated/floor/plating, /area/outpost/mining_north) -"pd" = ( +"oZ" = ( /obj/machinery/embedded_controller/radio/airlock/airlock_controller{ frequency = 1379; id_tag = "mining_north_outpost_airlock"; @@ -7661,7 +7636,7 @@ /obj/effect/decal/cleanable/dirt, /turf/simulated/floor/tiled, /area/outpost/mining_north) -"pe" = ( +"pa" = ( /obj/machinery/airlock_sensor{ frequency = 1379; id_tag = "mining_north_outpost_sensor"; @@ -7676,7 +7651,7 @@ /obj/effect/decal/cleanable/dirt, /turf/simulated/floor/tiled, /area/outpost/mining_north) -"pf" = ( +"pb" = ( /obj/structure/grille, /obj/structure/window/reinforced, /obj/structure/window/reinforced{ @@ -7693,13 +7668,13 @@ }, /turf/simulated/floor/plating, /area/outpost/mining_north) -"pg" = ( +"pc" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 6 }, /turf/simulated/floor/tiled, /area/outpost/mining_north) -"ph" = ( +"pd" = ( /obj/machinery/atmospherics/pipe/simple/hidden/universal{ dir = 4 }, @@ -7707,7 +7682,7 @@ /obj/item/weapon/storage/box/donkpockets, /turf/simulated/floor/tiled, /area/outpost/mining_north) -"pi" = ( +"pe" = ( /obj/machinery/atmospherics/binary/pump/on{ dir = 4; target_pressure = 200 @@ -7715,7 +7690,7 @@ /obj/machinery/recharge_station, /turf/simulated/floor/tiled, /area/outpost/mining_north) -"pj" = ( +"pf" = ( /obj/structure/table/standard, /obj/effect/decal/cleanable/cobweb2, /obj/machinery/microwave{ @@ -7727,7 +7702,7 @@ }, /turf/simulated/floor/tiled, /area/outpost/mining_north) -"pk" = ( +"pg" = ( /obj/effect/decal/cleanable/cobweb, /obj/item/stack/material/steel{ amount = 10 @@ -7738,11 +7713,11 @@ /obj/machinery/atmospherics/unary/vent_scrubber/on, /turf/simulated/floor/plating, /area/outpost/mining_north) -"pl" = ( +"ph" = ( /obj/machinery/atmospherics/unary/vent_pump/on, /turf/simulated/floor/plating, /area/outpost/mining_north) -"pm" = ( +"pi" = ( /obj/structure/disposalpipe/segment, /obj/structure/cable{ d1 = 1; @@ -7762,7 +7737,7 @@ }, /turf/simulated/floor/asteroid/ash, /area/mine/explored) -"pn" = ( +"pj" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 }, @@ -7777,7 +7752,7 @@ }, /turf/simulated/floor/asteroid/ash, /area/mine/explored) -"po" = ( +"pk" = ( /obj/machinery/access_button{ command = "cycle_exterior"; frequency = 1379; @@ -7808,7 +7783,7 @@ icon_state = "asteroidfloor" }, /area/mine/explored) -"pp" = ( +"pl" = ( /obj/machinery/door/airlock/external{ frequency = 1379; icon_state = "door_locked"; @@ -7832,7 +7807,7 @@ }, /turf/simulated/floor/tiled, /area/outpost/mining_north) -"pq" = ( +"pm" = ( /obj/structure/closet/walllocker/emerglocker/south, /obj/machinery/atmospherics/pipe/simple/hidden{ dir = 5; @@ -7853,7 +7828,7 @@ }, /turf/simulated/floor/tiled, /area/outpost/mining_north) -"pr" = ( +"pn" = ( /obj/machinery/atmospherics/pipe/manifold/hidden, /obj/effect/decal/cleanable/dirt, /obj/machinery/light/small, @@ -7874,7 +7849,7 @@ }, /turf/simulated/floor/tiled, /area/outpost/mining_north) -"ps" = ( +"po" = ( /obj/machinery/door/airlock/external{ frequency = 1379; icon_state = "door_locked"; @@ -7900,7 +7875,7 @@ }, /turf/simulated/floor/tiled, /area/outpost/mining_north) -"pt" = ( +"pp" = ( /obj/machinery/access_button{ command = "cycle_interior"; frequency = 1379; @@ -7931,7 +7906,7 @@ }, /turf/simulated/floor/tiled, /area/outpost/mining_north) -"pu" = ( +"pq" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/cable{ d1 = 4; @@ -7950,7 +7925,7 @@ }, /turf/simulated/floor/tiled, /area/outpost/mining_north) -"pv" = ( +"pr" = ( /obj/structure/cable{ d1 = 4; d2 = 8; @@ -7962,7 +7937,7 @@ }, /turf/simulated/floor/tiled, /area/outpost/mining_north) -"pw" = ( +"ps" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/cable{ d1 = 2; @@ -7978,7 +7953,7 @@ /obj/machinery/atmospherics/pipe/manifold/hidden, /turf/simulated/floor/tiled, /area/outpost/mining_north) -"px" = ( +"pt" = ( /obj/machinery/door/airlock/maintenance{ name = "Mining Station Maintenance"; req_access = list(54) @@ -7995,7 +7970,7 @@ }, /turf/simulated/floor/tiled, /area/outpost/mining_north) -"py" = ( +"pu" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, @@ -8008,7 +7983,7 @@ }, /turf/simulated/floor/plating, /area/outpost/mining_north) -"pz" = ( +"pv" = ( /obj/machinery/alarm{ dir = 8; icon_state = "alarm0"; @@ -8020,7 +7995,7 @@ }, /turf/simulated/floor/plating, /area/outpost/mining_north) -"pA" = ( +"pw" = ( /obj/structure/disposalpipe/segment, /obj/structure/cable{ d1 = 1; @@ -8031,7 +8006,7 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/asteroid/ash, /area/mine/explored) -"pB" = ( +"px" = ( /obj/machinery/conveyor_switch{ id = "mining_north"; pixel_x = -5 @@ -8048,7 +8023,7 @@ }, /turf/simulated/floor/tiled, /area/outpost/mining_north) -"pC" = ( +"py" = ( /obj/machinery/atmospherics/pipe/manifold/hidden/supply{ dir = 1 }, @@ -8057,7 +8032,7 @@ }, /turf/simulated/floor/tiled, /area/outpost/mining_north) -"pD" = ( +"pz" = ( /obj/machinery/power/apc{ dir = 4; name = "east bump"; @@ -8078,7 +8053,7 @@ }, /turf/simulated/floor/tiled, /area/outpost/mining_north) -"pE" = ( +"pA" = ( /obj/effect/decal/cleanable/dirt, /obj/machinery/atmospherics/portables_connector{ dir = 1 @@ -8086,13 +8061,13 @@ /obj/machinery/portable_atmospherics/canister/air/airlock, /turf/simulated/floor/plating, /area/outpost/mining_north) -"pF" = ( +"pB" = ( /obj/machinery/light/small{ dir = 4 }, /turf/simulated/floor/plating, /area/outpost/mining_north) -"pG" = ( +"pC" = ( /obj/structure/disposalpipe/segment{ dir = 1; icon_state = "pipe-c" @@ -8110,7 +8085,7 @@ }, /turf/simulated/floor/asteroid/ash, /area/mine/explored) -"pH" = ( +"pD" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, @@ -8128,7 +8103,7 @@ }, /turf/simulated/floor/asteroid/ash, /area/mine/explored) -"pI" = ( +"pE" = ( /obj/structure/disposalpipe/junction/yjunction, /obj/structure/cable{ d1 = 2; @@ -8143,13 +8118,13 @@ }, /turf/simulated/floor/asteroid/ash, /area/mine/explored) -"pJ" = ( +"pF" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, /turf/simulated/floor/asteroid/ash, /area/mine/explored) -"pK" = ( +"pG" = ( /obj/structure/grille, /obj/structure/window/reinforced, /obj/structure/window/reinforced{ @@ -8169,7 +8144,7 @@ }, /turf/simulated/floor/plating, /area/outpost/mining_north) -"pL" = ( +"pH" = ( /obj/structure/disposalpipe/trunk{ dir = 8 }, @@ -8178,7 +8153,7 @@ }, /turf/simulated/floor/tiled, /area/outpost/mining_north) -"pM" = ( +"pI" = ( /obj/machinery/mineral/output, /obj/machinery/conveyor{ dir = 4; @@ -8186,13 +8161,13 @@ }, /turf/simulated/floor/tiled, /area/outpost/mining_north) -"pN" = ( +"pJ" = ( /obj/machinery/mineral/unloading_machine{ icon_state = "unloader-corner" }, /turf/simulated/floor/tiled, /area/outpost/mining_north) -"pO" = ( +"pK" = ( /obj/machinery/mineral/input, /obj/machinery/conveyor{ backwards = 2; @@ -8202,7 +8177,7 @@ }, /turf/simulated/floor/tiled, /area/outpost/mining_north) -"pP" = ( +"pL" = ( /obj/machinery/door/firedoor{ dir = 2 }, @@ -8214,7 +8189,7 @@ }, /turf/simulated/floor/tiled, /area/outpost/mining_north) -"pQ" = ( +"pM" = ( /obj/effect/decal/cleanable/dirt, /obj/item/device/radio/intercom{ name = "Station Intercom (General)"; @@ -8225,14 +8200,14 @@ }, /turf/simulated/floor/tiled, /area/outpost/mining_north) -"pR" = ( +"pN" = ( /obj/effect/decal/cleanable/dirt, /obj/machinery/atmospherics/unary/vent_pump/on{ dir = 1 }, /turf/simulated/floor/tiled, /area/outpost/mining_north) -"pS" = ( +"pO" = ( /obj/structure/table, /obj/structure/table/rack, /obj/item/stack/material/glass/reinforced{ @@ -8243,21 +8218,21 @@ }, /turf/simulated/floor/tiled, /area/outpost/mining_north) -"pT" = ( +"pP" = ( /obj/structure/girder, /turf/simulated/floor/tiled, /area/outpost/mining_north) -"pU" = ( +"pQ" = ( /obj/machinery/portable_atmospherics/canister/oxygen, /obj/effect/decal/cleanable/dirt, /turf/simulated/floor/plating, /area/outpost/mining_north) -"pV" = ( +"pR" = ( /obj/item/weapon/shovel, /obj/item/weapon/pickaxe, /turf/simulated/floor/plating, /area/outpost/mining_north) -"pW" = ( +"pS" = ( /obj/structure/plasticflaps/mining, /obj/machinery/conveyor{ backwards = 2; @@ -8267,13 +8242,13 @@ }, /turf/simulated/floor/tiled, /area/outpost/mining_north) -"pX" = ( +"pT" = ( /obj/machinery/light/small{ dir = 1 }, /turf/simulated/floor/asteroid/ash, /area/mine/explored) -"pY" = ( +"pU" = ( /obj/structure/sign/securearea{ desc = "A warning sign which reads 'MOVING PARTS'."; name = "\improper MOVING PARTS"; @@ -8291,13 +8266,13 @@ icon_state = "asteroidfloor" }, /area/mine/explored) -"pZ" = ( +"pV" = ( /obj/effect/floor_decal/industrial/warning/dust, /turf/simulated/floor/tiled/airless{ icon_state = "asteroidfloor" }, /area/mine/explored) -"qa" = ( +"pW" = ( /obj/structure/disposalpipe/segment, /obj/structure/cable{ d1 = 1; @@ -8314,7 +8289,7 @@ icon_state = "asteroidfloor" }, /area/mine/explored) -"qb" = ( +"pX" = ( /obj/structure/disposalpipe/segment, /obj/structure/cable{ d1 = 1; @@ -8328,7 +8303,7 @@ icon_state = "asteroidfloor" }, /area/mine/explored) -"qc" = ( +"pY" = ( /obj/structure/disposalpipe/segment{ dir = 2; icon_state = "pipe-c" @@ -8346,10 +8321,10 @@ }, /turf/simulated/floor/asteroid/ash, /area/mine/explored) -"qd" = ( +"pZ" = ( /turf/simulated/floor/airless, /area/template_noop) -"qe" = ( +"qa" = ( /obj/structure/disposalpipe/segment{ dir = 4; icon_state = "pipe-c" @@ -8367,7 +8342,7 @@ }, /turf/simulated/floor/asteroid/ash, /area/mine/explored) -"qf" = ( +"qb" = ( /obj/structure/disposalpipe/segment{ dir = 8; icon_state = "pipe-c" @@ -8385,18 +8360,18 @@ }, /turf/simulated/floor/asteroid/ash, /area/mine/explored) -"qg" = ( +"qc" = ( /obj/machinery/light_construct/small{ dir = 4 }, /turf/simulated/floor/asteroid/ash, /area/mine/explored) -"qh" = ( +"qd" = ( /obj/structure/grille, /obj/structure/lattice, /turf/template_noop, /area/template_noop) -"qi" = ( +"qe" = ( /obj/machinery/power/solar, /obj/structure/cable/yellow{ d2 = 4; @@ -8404,7 +8379,7 @@ }, /turf/simulated/floor/airless, /area/template_noop) -"qj" = ( +"qf" = ( /obj/structure/cable/yellow{ d1 = 2; d2 = 4; @@ -8417,7 +8392,7 @@ }, /turf/simulated/floor/airless, /area/template_noop) -"qk" = ( +"qg" = ( /obj/machinery/power/solar, /obj/structure/cable/yellow{ d2 = 8; @@ -8425,7 +8400,7 @@ }, /turf/simulated/floor/airless, /area/template_noop) -"ql" = ( +"qh" = ( /obj/structure/cable/yellow{ d1 = 2; d2 = 4; @@ -8443,7 +8418,7 @@ }, /turf/simulated/floor/airless, /area/template_noop) -"qm" = ( +"qi" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, @@ -8467,7 +8442,7 @@ icon_state = "asteroidfloor" }, /area/mine/explored) -"qn" = ( +"qj" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, @@ -8491,10 +8466,10 @@ icon_state = "asteroidfloor" }, /area/mine/explored) -"qo" = ( +"qk" = ( /turf/simulated/wall, /area/outpost/engineering/meeting) -"qp" = ( +"ql" = ( /obj/structure/sink{ icon_state = "sink"; dir = 8; @@ -8511,7 +8486,7 @@ }, /turf/simulated/floor/tiled/white, /area/outpost/engineering/meeting) -"qq" = ( +"qm" = ( /obj/machinery/light{ dir = 1 }, @@ -8521,7 +8496,7 @@ }, /turf/simulated/floor/tiled/white, /area/outpost/engineering/meeting) -"qr" = ( +"qn" = ( /obj/machinery/alarm{ frequency = 1439; pixel_y = 22 @@ -8531,7 +8506,7 @@ }, /turf/simulated/floor/tiled/white, /area/outpost/engineering/meeting) -"qs" = ( +"qo" = ( /obj/machinery/shower{ dir = 8; icon_state = "shower"; @@ -8549,11 +8524,11 @@ }, /turf/simulated/floor/tiled/freezer, /area/outpost/engineering/meeting) -"qt" = ( +"qp" = ( /obj/machinery/light/small, /turf/simulated/floor/asteroid/ash, /area/mine/explored) -"qu" = ( +"qq" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 6 }, @@ -8563,7 +8538,7 @@ }, /turf/simulated/floor/tiled/white, /area/outpost/engineering/meeting) -"qv" = ( +"qr" = ( /obj/machinery/atmospherics/unary/vent_pump/on{ dir = 8 }, @@ -8576,7 +8551,7 @@ }, /turf/simulated/floor/tiled/white, /area/outpost/engineering/meeting) -"qw" = ( +"qs" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/effect/floor_decal/corner/blue/diagonal{ @@ -8584,13 +8559,13 @@ }, /turf/simulated/floor/tiled/white, /area/outpost/engineering/meeting) -"qx" = ( +"qt" = ( /obj/effect/floor_decal/corner/blue/diagonal{ dir = 4 }, /turf/simulated/floor/tiled/white, /area/outpost/engineering/meeting) -"qy" = ( +"qu" = ( /obj/machinery/door/airlock/engineering{ name = "Restrooms"; req_access = list(10) @@ -8600,7 +8575,7 @@ }, /turf/simulated/floor/tiled/white, /area/outpost/engineering/meeting) -"qz" = ( +"qv" = ( /obj/structure/toilet{ dir = 8 }, @@ -8612,10 +8587,10 @@ }, /turf/simulated/floor/tiled/white, /area/outpost/engineering/meeting) -"qA" = ( +"qw" = ( /turf/simulated/wall, /area/outpost/engineering/storage) -"qB" = ( +"qx" = ( /obj/machinery/door/airlock/engineering{ name = "Restrooms"; req_access = list(10) @@ -8624,10 +8599,10 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/tiled, /area/outpost/engineering/meeting) -"qC" = ( +"qy" = ( /turf/simulated/wall/r_wall, /area/outpost/engineering/meeting) -"qD" = ( +"qz" = ( /obj/structure/table/rack, /obj/random/tech_supply, /obj/random/tech_supply, @@ -8639,7 +8614,7 @@ }, /turf/simulated/floor/tiled, /area/outpost/engineering/storage) -"qE" = ( +"qA" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 6 }, @@ -8648,7 +8623,7 @@ }, /turf/simulated/floor/tiled, /area/outpost/engineering/storage) -"qF" = ( +"qB" = ( /obj/structure/cable/blue{ d1 = 2; d2 = 4; @@ -8666,7 +8641,7 @@ }, /turf/simulated/floor/tiled, /area/outpost/engineering/storage) -"qG" = ( +"qC" = ( /obj/structure/cable/blue{ d1 = 4; d2 = 8; @@ -8688,7 +8663,7 @@ }, /turf/simulated/floor/tiled, /area/outpost/engineering/storage) -"qH" = ( +"qD" = ( /obj/structure/cable/blue{ d1 = 4; d2 = 8; @@ -8706,7 +8681,7 @@ }, /turf/simulated/floor/wood, /area/outpost/engineering/meeting) -"qI" = ( +"qE" = ( /obj/structure/cable/blue{ d1 = 4; d2 = 8; @@ -8716,7 +8691,7 @@ /obj/machinery/atmospherics/pipe/manifold/hidden/supply, /turf/simulated/floor/wood, /area/outpost/engineering/meeting) -"qJ" = ( +"qF" = ( /obj/structure/cable/blue{ d1 = 4; d2 = 8; @@ -8734,7 +8709,7 @@ /obj/machinery/firealarm/north, /turf/simulated/floor/wood, /area/outpost/engineering/meeting) -"qK" = ( +"qG" = ( /obj/structure/cable/blue{ d1 = 2; d2 = 8; @@ -8755,7 +8730,7 @@ /obj/machinery/computer/station_alert/engineering, /turf/simulated/floor/wood, /area/outpost/engineering/meeting) -"qL" = ( +"qH" = ( /obj/item/device/radio/intercom{ broadcasting = 0; listening = 1; @@ -8766,19 +8741,19 @@ /obj/random/tech_supply, /turf/simulated/floor/wood, /area/outpost/engineering/meeting) -"qM" = ( +"qI" = ( /obj/structure/table/standard, /obj/random/tech_supply, /turf/simulated/floor/wood, /area/outpost/engineering/meeting) -"qN" = ( +"qJ" = ( /obj/structure/disposaloutlet{ dir = 1 }, /obj/structure/disposalpipe/trunk, /turf/simulated/floor/asteroid/ash, /area/mine/explored) -"qO" = ( +"qK" = ( /obj/structure/table/rack, /obj/random/tech_supply, /obj/random/tech_supply, @@ -8788,13 +8763,13 @@ /obj/item/stack/cable_coil, /turf/simulated/floor/tiled, /area/outpost/engineering/storage) -"qP" = ( +"qL" = ( /obj/machinery/atmospherics/unary/vent_scrubber/on{ dir = 1 }, /turf/simulated/floor/tiled, /area/outpost/engineering/storage) -"qQ" = ( +"qM" = ( /obj/structure/cable/blue, /obj/machinery/power/apc{ dir = 4; @@ -8808,14 +8783,14 @@ /obj/item/weapon/pickaxe, /turf/simulated/floor/tiled, /area/outpost/engineering/storage) -"qR" = ( +"qN" = ( /obj/machinery/floodlight, /turf/simulated/floor/wood, /area/outpost/engineering/meeting) -"qS" = ( +"qO" = ( /turf/simulated/floor/wood, /area/outpost/engineering/meeting) -"qT" = ( +"qP" = ( /obj/effect/floor_decal/carpet{ icon_state = "carpet_edges"; dir = 1 @@ -8830,7 +8805,7 @@ }, /turf/simulated/floor/carpet, /area/outpost/engineering/meeting) -"qU" = ( +"qQ" = ( /obj/structure/cable/blue{ d1 = 1; d2 = 2; @@ -8845,7 +8820,7 @@ }, /turf/simulated/floor/carpet, /area/outpost/engineering/meeting) -"qV" = ( +"qR" = ( /obj/structure/bed/chair, /obj/effect/floor_decal/carpet{ icon_state = "carpet_edges"; @@ -8853,7 +8828,7 @@ }, /turf/simulated/floor/carpet, /area/outpost/engineering/meeting) -"qW" = ( +"qS" = ( /obj/effect/floor_decal/carpet{ icon_state = "carpet_edges"; dir = 4 @@ -8868,7 +8843,7 @@ }, /turf/simulated/floor/carpet, /area/outpost/engineering/meeting) -"qX" = ( +"qT" = ( /obj/structure/sign/deathsposal{ pixel_x = 32 }, @@ -8878,13 +8853,13 @@ }, /turf/simulated/floor/wood, /area/outpost/engineering/meeting) -"qY" = ( +"qU" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, /turf/simulated/wall/r_wall, /area/outpost/engineering/meeting) -"qZ" = ( +"qV" = ( /obj/structure/table/rack, /obj/random/tech_supply, /obj/random/tech_supply, @@ -8892,10 +8867,10 @@ /obj/random/tech_supply, /turf/simulated/floor/tiled, /area/outpost/engineering/storage) -"ra" = ( +"qW" = ( /turf/simulated/floor/tiled, /area/outpost/engineering/storage) -"rb" = ( +"qX" = ( /obj/item/stack/material/plasteel{ amount = 10 }, @@ -8908,7 +8883,7 @@ /obj/structure/table/steel, /turf/simulated/floor/tiled, /area/outpost/engineering/storage) -"rc" = ( +"qY" = ( /obj/structure/grille, /obj/structure/window/reinforced{ dir = 4 @@ -8925,11 +8900,11 @@ }, /turf/simulated/floor/plating, /area/outpost/engineering/storage) -"rd" = ( +"qZ" = ( /obj/machinery/vending/snack, /turf/simulated/floor/wood, /area/outpost/engineering/meeting) -"re" = ( +"ra" = ( /obj/structure/bed/chair{ dir = 4 }, @@ -8939,7 +8914,7 @@ }, /turf/simulated/floor/carpet, /area/outpost/engineering/meeting) -"rf" = ( +"rb" = ( /obj/structure/cable/blue{ d1 = 1; d2 = 2; @@ -8950,12 +8925,12 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/carpet, /area/outpost/engineering/meeting) -"rg" = ( +"rc" = ( /obj/structure/table/standard, /obj/item/weapon/storage/box/donkpockets, /turf/simulated/floor/carpet, /area/outpost/engineering/meeting) -"rh" = ( +"rd" = ( /obj/structure/bed/chair{ dir = 8 }, @@ -8965,16 +8940,16 @@ }, /turf/simulated/floor/carpet, /area/outpost/engineering/meeting) -"ri" = ( +"re" = ( /obj/structure/flora/pottedplant{ icon_state = "plant-21" }, /turf/simulated/floor/wood, /area/outpost/engineering/meeting) -"rj" = ( +"rf" = ( /turf/simulated/wall/r_wall, /area/outpost/engineering/power) -"rk" = ( +"rg" = ( /obj/structure/window/reinforced{ dir = 8 }, @@ -8989,7 +8964,7 @@ }, /turf/simulated/floor/plating, /area/outpost/engineering/hallway) -"rl" = ( +"rh" = ( /obj/structure/window/reinforced{ dir = 1 }, @@ -9001,7 +8976,7 @@ }, /turf/simulated/floor/plating, /area/outpost/engineering/hallway) -"rm" = ( +"ri" = ( /obj/structure/window/reinforced{ dir = 1 }, @@ -9016,23 +8991,23 @@ }, /turf/simulated/floor/plating, /area/outpost/engineering/hallway) -"rn" = ( +"rj" = ( /turf/simulated/wall, /area/outpost/engineering/hallway) -"ro" = ( +"rk" = ( /obj/machinery/light_construct/small, /turf/simulated/floor/asteroid/ash, /area/mine/explored) -"rp" = ( +"rl" = ( /turf/simulated/wall/r_wall, /area/mine/explored) -"rq" = ( +"rm" = ( /turf/simulated/wall/r_wall, /area/outpost/engineering/telecomms) -"rr" = ( +"rn" = ( /turf/simulated/wall/r_wall, /area/outpost/engineering/storage) -"rs" = ( +"ro" = ( /obj/structure/table/rack, /obj/random/tech_supply, /obj/random/tech_supply, @@ -9044,7 +9019,7 @@ }, /turf/simulated/floor/tiled, /area/outpost/engineering/storage) -"rt" = ( +"rp" = ( /obj/item/stack/material/glass{ amount = 50 }, @@ -9057,7 +9032,7 @@ /obj/structure/table/steel, /turf/simulated/floor/tiled, /area/outpost/engineering/storage) -"ru" = ( +"rq" = ( /obj/structure/grille, /obj/structure/window/reinforced{ dir = 4 @@ -9071,22 +9046,22 @@ }, /turf/simulated/floor/plating, /area/outpost/engineering/storage) -"rv" = ( +"rr" = ( /obj/machinery/vending/coffee, /turf/simulated/floor/wood, /area/outpost/engineering/meeting) -"rw" = ( +"rs" = ( /obj/machinery/hologram/holopad, /turf/simulated/floor/wood, /area/outpost/engineering/meeting) -"rx" = ( +"rt" = ( /obj/effect/floor_decal/carpet{ icon_state = "carpet_edges"; dir = 8 }, /turf/simulated/floor/carpet, /area/outpost/engineering/meeting) -"ry" = ( +"ru" = ( /obj/structure/cable/blue{ d1 = 1; d2 = 2; @@ -9099,14 +9074,14 @@ }, /turf/simulated/floor/carpet, /area/outpost/engineering/meeting) -"rz" = ( +"rv" = ( /obj/structure/table/standard, /obj/machinery/atmospherics/unary/vent_scrubber/on{ dir = 8 }, /turf/simulated/floor/carpet, /area/outpost/engineering/meeting) -"rA" = ( +"rw" = ( /obj/machinery/light{ icon_state = "tube1"; dir = 4 @@ -9114,7 +9089,7 @@ /obj/machinery/pipedispenser, /turf/simulated/floor/wood, /area/outpost/engineering/meeting) -"rB" = ( +"rx" = ( /obj/structure/cable{ icon_state = "0-4"; d2 = 4 @@ -9122,7 +9097,7 @@ /obj/machinery/power/terminal, /turf/simulated/floor/tiled, /area/outpost/engineering/power) -"rC" = ( +"ry" = ( /obj/machinery/atmospherics/unary/vent_scrubber/on, /obj/structure/cable{ d2 = 8; @@ -9143,7 +9118,7 @@ }, /turf/simulated/floor/tiled, /area/outpost/engineering/power) -"rD" = ( +"rz" = ( /obj/structure/cable{ d1 = 4; d2 = 8; @@ -9163,7 +9138,7 @@ }, /turf/simulated/floor/tiled, /area/outpost/engineering/power) -"rE" = ( +"rA" = ( /obj/structure/cable{ d2 = 8; icon_state = "0-8" @@ -9181,7 +9156,7 @@ }, /turf/simulated/floor/tiled, /area/outpost/engineering/power) -"rF" = ( +"rB" = ( /obj/structure/window/reinforced{ dir = 8 }, @@ -9198,7 +9173,7 @@ }, /turf/simulated/floor/plating, /area/outpost/engineering/power) -"rG" = ( +"rC" = ( /obj/structure/cable/yellow{ d2 = 2; icon_state = "0-2" @@ -9208,17 +9183,17 @@ }, /turf/simulated/floor/tiled, /area/outpost/engineering/hallway) -"rH" = ( +"rD" = ( /turf/simulated/floor/tiled, /area/outpost/engineering/hallway) -"rI" = ( +"rE" = ( /obj/machinery/atmospherics/portables_connector{ dir = 4 }, /obj/machinery/portable_atmospherics/canister/air/airlock, /turf/simulated/floor/tiled, /area/outpost/engineering/hallway) -"rJ" = ( +"rF" = ( /obj/structure/window/reinforced{ dir = 8 }, @@ -9239,25 +9214,25 @@ }, /turf/simulated/floor/plating, /area/outpost/engineering/hallway) -"rK" = ( +"rG" = ( /obj/machinery/atmospherics/pipe/simple/hidden/cyan{ icon_state = "intact"; dir = 10 }, /turf/simulated/floor/tiled, /area/outpost/engineering/hallway) -"rL" = ( +"rH" = ( /obj/effect/floor_decal/industrial/warning{ icon_state = "warning"; dir = 9 }, /turf/simulated/floor/tiled, /area/outpost/engineering/hallway) -"rM" = ( +"rI" = ( /obj/structure/cable/yellow, /turf/simulated/floor/airless, /area/template_noop) -"rN" = ( +"rJ" = ( /obj/effect/floor_decal/industrial/warning/dust{ icon_state = "warning_dust"; dir = 8 @@ -9266,7 +9241,7 @@ icon_state = "asteroidfloor" }, /area/mine/explored) -"rO" = ( +"rK" = ( /obj/structure/cable{ d2 = 2; icon_state = "0-2"; @@ -9280,7 +9255,7 @@ icon_state = "asteroidfloor" }, /area/mine/explored) -"rP" = ( +"rL" = ( /obj/machinery/cell_charger, /obj/random/tech_supply, /obj/random/tech_supply, @@ -9289,7 +9264,7 @@ icon_state = "asteroidfloor" }, /area/mine/explored) -"rQ" = ( +"rM" = ( /obj/machinery/atmospherics/unary/vent_pump/on, /turf/simulated/floor/bluegrid{ name = "Mainframe Base"; @@ -9298,14 +9273,14 @@ temperature = 293.15 }, /area/outpost/engineering/telecomms) -"rR" = ( +"rN" = ( /obj/machinery/telecomms/relay/preset/mining, /obj/machinery/light{ dir = 1 }, /turf/simulated/floor/tiled/dark, /area/outpost/engineering/telecomms) -"rS" = ( +"rO" = ( /obj/machinery/atmospherics/unary/vent_scrubber/on, /obj/machinery/alarm{ frequency = 1439; @@ -9318,11 +9293,11 @@ temperature = 293.15 }, /area/outpost/engineering/telecomms) -"rT" = ( +"rP" = ( /obj/structure/dispenser/oxygen, /turf/simulated/floor/tiled, /area/outpost/engineering/storage) -"rU" = ( +"rQ" = ( /obj/item/stack/material/steel{ amount = 50 }, @@ -9335,7 +9310,7 @@ /obj/structure/table/steel, /turf/simulated/floor/tiled, /area/outpost/engineering/storage) -"rV" = ( +"rR" = ( /obj/structure/grille, /obj/structure/window/reinforced, /obj/structure/window/reinforced{ @@ -9350,12 +9325,12 @@ }, /turf/simulated/floor/plating, /area/outpost/engineering/storage) -"rW" = ( +"rS" = ( /obj/structure/table/standard, /obj/item/weapon/storage/box/lights/mixed, /turf/simulated/floor/wood, /area/outpost/engineering/meeting) -"rX" = ( +"rT" = ( /obj/effect/floor_decal/carpet, /obj/effect/floor_decal/carpet{ icon_state = "carpet_edges"; @@ -9367,7 +9342,7 @@ }, /turf/simulated/floor/carpet, /area/outpost/engineering/meeting) -"rY" = ( +"rU" = ( /obj/structure/cable/blue{ d1 = 1; d2 = 2; @@ -9380,14 +9355,14 @@ /obj/effect/floor_decal/carpet, /turf/simulated/floor/carpet, /area/outpost/engineering/meeting) -"rZ" = ( +"rV" = ( /obj/machinery/atmospherics/unary/vent_pump/on{ dir = 8 }, /obj/effect/floor_decal/carpet, /turf/simulated/floor/carpet, /area/outpost/engineering/meeting) -"sa" = ( +"rW" = ( /obj/effect/floor_decal/carpet, /obj/effect/floor_decal/carpet{ icon_state = "carpet_edges"; @@ -9399,11 +9374,11 @@ }, /turf/simulated/floor/carpet, /area/outpost/engineering/meeting) -"sb" = ( +"rX" = ( /obj/machinery/pipedispenser/disposal, /turf/simulated/floor/wood, /area/outpost/engineering/meeting) -"sc" = ( +"rY" = ( /obj/machinery/power/smes/buildable/outpost_substation{ charge = 500000; input_attempt = 1; @@ -9418,7 +9393,7 @@ }, /turf/simulated/floor/tiled, /area/outpost/engineering/power) -"sd" = ( +"rZ" = ( /obj/structure/cable{ d1 = 1; d2 = 2; @@ -9429,7 +9404,7 @@ }, /turf/simulated/floor/tiled, /area/outpost/engineering/power) -"se" = ( +"sa" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 }, @@ -9438,7 +9413,7 @@ }, /turf/simulated/floor/tiled, /area/outpost/engineering/power) -"sf" = ( +"sb" = ( /obj/structure/cable/yellow{ d2 = 4; icon_state = "0-4" @@ -9455,7 +9430,7 @@ }, /turf/simulated/floor/tiled, /area/outpost/engineering/power) -"sg" = ( +"sc" = ( /obj/structure/cable/yellow{ d1 = 4; d2 = 8; @@ -9474,7 +9449,7 @@ }, /turf/simulated/floor/plating, /area/outpost/engineering/power) -"sh" = ( +"sd" = ( /obj/structure/cable/yellow{ d1 = 2; d2 = 8; @@ -9492,7 +9467,7 @@ }, /turf/simulated/floor/tiled, /area/outpost/engineering/hallway) -"si" = ( +"se" = ( /obj/structure/cable/yellow{ d1 = 1; d2 = 8; @@ -9500,7 +9475,7 @@ }, /turf/simulated/floor/tiled, /area/outpost/engineering/hallway) -"sj" = ( +"sf" = ( /obj/structure/window/reinforced{ dir = 8 }, @@ -9518,11 +9493,11 @@ }, /turf/simulated/floor/plating, /area/outpost/engineering/hallway) -"sk" = ( +"sg" = ( /obj/machinery/atmospherics/pipe/manifold4w/hidden/cyan, /turf/simulated/floor/tiled, /area/outpost/engineering/hallway) -"sl" = ( +"sh" = ( /obj/structure/cable/yellow{ d1 = 2; d2 = 4; @@ -9547,7 +9522,7 @@ }, /turf/simulated/floor/tiled, /area/outpost/engineering/hallway) -"sm" = ( +"si" = ( /obj/structure/cable/yellow{ d1 = 4; d2 = 8; @@ -9566,7 +9541,7 @@ }, /turf/simulated/floor/plating, /area/outpost/engineering/hallway) -"sn" = ( +"sj" = ( /obj/structure/cable/yellow{ d1 = 4; d2 = 8; @@ -9602,7 +9577,7 @@ }, /turf/simulated/floor/plating, /area/outpost/engineering/hallway) -"so" = ( +"sk" = ( /obj/structure/cable/yellow{ d1 = 4; d2 = 8; @@ -9617,7 +9592,7 @@ }, /turf/simulated/floor/plating, /area/outpost/engineering/hallway) -"sp" = ( +"sl" = ( /obj/structure/cable/yellow{ d1 = 4; d2 = 8; @@ -9634,21 +9609,21 @@ }, /turf/simulated/floor/airless, /area/outpost/engineering/hallway) -"sq" = ( +"sm" = ( /obj/structure/cable/yellow{ d2 = 8; icon_state = "0-8" }, /turf/simulated/floor/airless, /area/template_noop) -"sr" = ( +"sn" = ( /obj/structure/cable/yellow{ d2 = 4; icon_state = "0-4" }, /turf/simulated/floor/airless, /area/template_noop) -"ss" = ( +"so" = ( /obj/structure/cable/yellow{ d1 = 4; d2 = 8; @@ -9656,7 +9631,7 @@ }, /turf/simulated/floor/airless, /area/template_noop) -"st" = ( +"sp" = ( /obj/machinery/power/tracker, /obj/structure/cable/yellow{ d2 = 8; @@ -9664,7 +9639,7 @@ }, /turf/simulated/floor/airless, /area/template_noop) -"su" = ( +"sq" = ( /obj/structure/cable{ d1 = 1; d2 = 2; @@ -9674,7 +9649,7 @@ icon_state = "asteroidfloor" }, /area/mine/explored) -"sv" = ( +"sr" = ( /obj/item/weapon/cell/high{ charge = 100; maxcharge = 15000 @@ -9686,10 +9661,10 @@ icon_state = "asteroidfloor" }, /area/mine/explored) -"sw" = ( +"ss" = ( /turf/simulated/wall/r_wall, /area/outpost/engineering/hallway) -"sx" = ( +"st" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 5 }, @@ -9709,7 +9684,7 @@ temperature = 293.15 }, /area/outpost/engineering/telecomms) -"sy" = ( +"su" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 10 }, @@ -9723,7 +9698,7 @@ }, /turf/simulated/floor/tiled/dark, /area/outpost/engineering/telecomms) -"sz" = ( +"sv" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 9 }, @@ -9738,11 +9713,11 @@ temperature = 293.15 }, /area/outpost/engineering/telecomms) -"sA" = ( +"sw" = ( /obj/machinery/portable_atmospherics/canister/oxygen, /turf/simulated/floor/tiled, /area/outpost/engineering/storage) -"sB" = ( +"sx" = ( /obj/machinery/alarm{ dir = 1; icon_state = "alarm0"; @@ -9750,7 +9725,7 @@ }, /turf/simulated/floor/tiled, /area/outpost/engineering/storage) -"sC" = ( +"sy" = ( /obj/structure/table/rack, /obj/item/clothing/head/helmet/space/void/engineering, /obj/item/clothing/suit/space/void/engineering, @@ -9764,7 +9739,7 @@ /obj/machinery/firealarm/east, /turf/simulated/floor/tiled, /area/outpost/engineering/storage) -"sD" = ( +"sz" = ( /obj/machinery/light{ dir = 8 }, @@ -9772,7 +9747,7 @@ /obj/machinery/microwave, /turf/simulated/floor/wood, /area/outpost/engineering/meeting) -"sE" = ( +"sA" = ( /obj/machinery/alarm{ dir = 1; icon_state = "alarm0"; @@ -9780,7 +9755,7 @@ }, /turf/simulated/floor/wood, /area/outpost/engineering/meeting) -"sF" = ( +"sB" = ( /obj/structure/cable/blue{ d1 = 1; d2 = 2; @@ -9795,7 +9770,7 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/wood, /area/outpost/engineering/meeting) -"sG" = ( +"sC" = ( /obj/structure/cable/blue{ d2 = 8; icon_state = "0-8" @@ -9807,11 +9782,11 @@ }, /turf/simulated/floor/wood, /area/outpost/engineering/meeting) -"sH" = ( +"sD" = ( /obj/machinery/vending/cigarette, /turf/simulated/floor/wood, /area/outpost/engineering/meeting) -"sI" = ( +"sE" = ( /obj/structure/cable/blue, /obj/structure/cable/blue{ d2 = 2; @@ -9827,7 +9802,7 @@ }, /turf/simulated/floor/tiled, /area/outpost/engineering/power) -"sJ" = ( +"sF" = ( /obj/structure/cable{ d1 = 1; d2 = 2; @@ -9840,7 +9815,7 @@ }, /turf/simulated/floor/tiled, /area/outpost/engineering/power) -"sK" = ( +"sG" = ( /obj/structure/cable/blue{ d2 = 8; icon_state = "0-8" @@ -9852,12 +9827,12 @@ }, /turf/simulated/floor/tiled, /area/outpost/engineering/power) -"sL" = ( +"sH" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/tiled, /area/outpost/engineering/power) -"sM" = ( +"sI" = ( /obj/structure/window/reinforced{ dir = 8 }, @@ -9872,7 +9847,7 @@ }, /turf/simulated/floor/plating, /area/outpost/engineering/power) -"sN" = ( +"sJ" = ( /obj/structure/cable/yellow{ d1 = 1; d2 = 2; @@ -9880,23 +9855,23 @@ }, /turf/simulated/floor/tiled, /area/outpost/engineering/hallway) -"sO" = ( +"sK" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 6 }, /turf/simulated/floor/tiled, /area/outpost/engineering/hallway) -"sP" = ( +"sL" = ( /obj/machinery/atmospherics/unary/vent_scrubber/on{ dir = 8 }, /turf/simulated/floor/tiled, /area/outpost/engineering/hallway) -"sQ" = ( +"sM" = ( /obj/machinery/computer/shuttle_control/engineering, /turf/simulated/floor/tiled, /area/outpost/engineering/hallway) -"sR" = ( +"sN" = ( /obj/structure/window/reinforced{ dir = 8 }, @@ -9911,11 +9886,11 @@ }, /turf/simulated/floor/plating, /area/outpost/engineering/hallway) -"sS" = ( +"sO" = ( /obj/machinery/atmospherics/pipe/simple/hidden/cyan, /turf/simulated/floor/tiled, /area/outpost/engineering/hallway) -"sT" = ( +"sP" = ( /obj/structure/cable/yellow{ d1 = 1; d2 = 2; @@ -9927,14 +9902,14 @@ }, /turf/simulated/floor/tiled, /area/outpost/engineering/hallway) -"sU" = ( +"sQ" = ( /obj/structure/cable/yellow{ d2 = 2; icon_state = "0-2" }, /turf/simulated/floor/airless, /area/template_noop) -"sV" = ( +"sR" = ( /obj/structure/disposalpipe/segment, /obj/structure/cable{ d1 = 1; @@ -9945,7 +9920,7 @@ /obj/machinery/atmospherics/pipe/simple/hidden/supply, /turf/simulated/floor/asteroid/ash, /area/mine/explored) -"sW" = ( +"sS" = ( /obj/machinery/light/small{ dir = 4 }, @@ -9957,12 +9932,12 @@ icon_state = "asteroidfloor" }, /area/mine/explored) -"sX" = ( +"sT" = ( /obj/machinery/atmospherics/portables_connector, /obj/machinery/portable_atmospherics/canister/air/airlock, /turf/simulated/floor/tiled, /area/outpost/engineering/hallway) -"sY" = ( +"sU" = ( /obj/machinery/atmospherics/portables_connector, /obj/machinery/portable_atmospherics/canister/air/airlock, /obj/machinery/light{ @@ -9970,7 +9945,7 @@ }, /turf/simulated/floor/tiled, /area/outpost/engineering/hallway) -"sZ" = ( +"sV" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/structure/cable/blue{ @@ -9988,7 +9963,7 @@ }, /turf/simulated/floor/tiled/dark, /area/outpost/engineering/hallway) -"ta" = ( +"sW" = ( /obj/structure/window/reinforced{ dir = 1 }, @@ -10003,7 +9978,7 @@ }, /turf/simulated/floor/plating, /area/outpost/engineering/hallway) -"tb" = ( +"sX" = ( /obj/structure/cable/blue{ d1 = 1; d2 = 2; @@ -10021,7 +9996,7 @@ }, /turf/simulated/floor/tiled, /area/outpost/engineering/hallway) -"tc" = ( +"sY" = ( /obj/structure/cable/blue{ d1 = 1; d2 = 2; @@ -10041,7 +10016,7 @@ }, /turf/simulated/floor/plating, /area/outpost/engineering/hallway) -"td" = ( +"sZ" = ( /obj/structure/cable{ d1 = 1; d2 = 2; @@ -10061,7 +10036,7 @@ }, /turf/simulated/floor/plating, /area/outpost/engineering/hallway) -"te" = ( +"ta" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/machinery/door/firedoor{ @@ -10074,11 +10049,11 @@ }, /turf/simulated/floor/tiled, /area/outpost/engineering/hallway) -"tf" = ( +"tb" = ( /obj/structure/sign/electricshock, /turf/simulated/wall, /area/outpost/engineering/hallway) -"tg" = ( +"tc" = ( /obj/structure/cable/yellow{ d1 = 1; d2 = 2; @@ -10089,20 +10064,20 @@ }, /turf/simulated/floor/tiled, /area/outpost/engineering/hallway) -"th" = ( +"td" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 6 }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/tiled, /area/outpost/engineering/hallway) -"ti" = ( +"te" = ( /obj/machinery/atmospherics/unary/vent_pump/on{ dir = 8 }, /turf/simulated/floor/tiled, /area/outpost/engineering/hallway) -"tj" = ( +"tf" = ( /obj/machinery/power/solar_control, /obj/structure/cable/yellow{ d2 = 2; @@ -10110,14 +10085,14 @@ }, /turf/simulated/floor/tiled, /area/outpost/engineering/hallway) -"tk" = ( +"tg" = ( /obj/machinery/atmospherics/pipe/simple/hidden/cyan, /obj/machinery/light{ dir = 8 }, /turf/simulated/floor/tiled, /area/outpost/engineering/hallway) -"tl" = ( +"th" = ( /obj/structure/cable/yellow{ d1 = 1; d2 = 2; @@ -10128,7 +10103,7 @@ }, /turf/simulated/floor/tiled, /area/outpost/engineering/hallway) -"tm" = ( +"ti" = ( /obj/structure/cable/yellow{ d1 = 1; d2 = 4; @@ -10146,7 +10121,7 @@ }, /turf/simulated/floor/airless, /area/template_noop) -"tn" = ( +"tj" = ( /obj/structure/disposalpipe/segment, /obj/structure/cable{ d1 = 1; @@ -10163,7 +10138,7 @@ icon_state = "asteroidfloor" }, /area/mine/explored) -"to" = ( +"tk" = ( /obj/structure/cable{ d1 = 1; d2 = 2; @@ -10174,7 +10149,7 @@ icon_state = "asteroidfloor" }, /area/mine/explored) -"tp" = ( +"tl" = ( /obj/machinery/door/airlock/external{ frequency = 1379; icon_state = "door_locked"; @@ -10184,7 +10159,7 @@ }, /turf/simulated/floor/tiled, /area/outpost/engineering/hallway) -"tq" = ( +"tm" = ( /obj/machinery/atmospherics/pipe/simple/hidden/cyan{ dir = 6; icon_state = "intact" @@ -10195,7 +10170,7 @@ /obj/structure/closet/walllocker/emerglocker/north, /turf/simulated/floor/tiled, /area/outpost/engineering/hallway) -"tr" = ( +"tn" = ( /obj/machinery/atmospherics/pipe/manifold/hidden/cyan{ dir = 1; icon_state = "map" @@ -10208,7 +10183,7 @@ }, /turf/simulated/floor/tiled, /area/outpost/engineering/hallway) -"ts" = ( +"to" = ( /obj/machinery/atmospherics/pipe/simple/hidden/cyan{ dir = 4; icon_state = "intact" @@ -10226,7 +10201,7 @@ }, /turf/simulated/floor/tiled, /area/outpost/engineering/hallway) -"tt" = ( +"tp" = ( /obj/machinery/atmospherics/pipe/manifold/hidden/cyan, /obj/effect/floor_decal/industrial/warning{ icon_state = "warning"; @@ -10234,11 +10209,11 @@ }, /turf/simulated/floor/tiled, /area/outpost/engineering/hallway) -"tu" = ( +"tq" = ( /obj/machinery/atmospherics/pipe/manifold/hidden/cyan, /turf/simulated/floor/tiled, /area/outpost/engineering/hallway) -"tv" = ( +"tr" = ( /obj/item/device/radio/intercom{ broadcasting = 0; listening = 1; @@ -10251,7 +10226,7 @@ }, /turf/simulated/floor/tiled, /area/outpost/engineering/hallway) -"tw" = ( +"ts" = ( /obj/structure/extinguisher_cabinet{ pixel_x = 0; pixel_y = 28 @@ -10261,18 +10236,18 @@ }, /turf/simulated/floor/tiled, /area/outpost/engineering/hallway) -"tx" = ( +"tt" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 10 }, /obj/machinery/firealarm/north, /turf/simulated/floor/tiled, /area/outpost/engineering/hallway) -"ty" = ( +"tu" = ( /obj/machinery/atmospherics/unary/vent_scrubber/on, /turf/simulated/floor/tiled, /area/outpost/engineering/hallway) -"tz" = ( +"tv" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/structure/cable/blue{ @@ -10282,7 +10257,7 @@ }, /turf/simulated/floor/tiled, /area/outpost/engineering/hallway) -"tA" = ( +"tw" = ( /obj/machinery/atmospherics/unary/vent_pump/on, /obj/structure/cable/blue{ d1 = 4; @@ -10291,7 +10266,7 @@ }, /turf/simulated/floor/tiled, /area/outpost/engineering/hallway) -"tB" = ( +"tx" = ( /obj/structure/cable/blue{ d1 = 4; d2 = 8; @@ -10303,7 +10278,7 @@ }, /turf/simulated/floor/tiled, /area/outpost/engineering/hallway) -"tC" = ( +"ty" = ( /obj/machinery/light{ dir = 1 }, @@ -10314,7 +10289,7 @@ }, /turf/simulated/floor/tiled, /area/outpost/engineering/hallway) -"tD" = ( +"tz" = ( /obj/structure/cable/blue{ d1 = 4; d2 = 8; @@ -10322,7 +10297,7 @@ }, /turf/simulated/floor/tiled, /area/outpost/engineering/hallway) -"tE" = ( +"tA" = ( /obj/machinery/door/firedoor{ dir = 4; name = "Firelock" @@ -10334,7 +10309,7 @@ }, /turf/simulated/floor/tiled, /area/outpost/engineering/hallway) -"tF" = ( +"tB" = ( /obj/structure/cable/blue{ d1 = 2; d2 = 4; @@ -10347,7 +10322,7 @@ }, /turf/simulated/floor/tiled, /area/outpost/engineering/hallway) -"tG" = ( +"tC" = ( /obj/structure/cable/blue{ d1 = 4; d2 = 8; @@ -10362,7 +10337,7 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/tiled, /area/outpost/engineering/hallway) -"tH" = ( +"tD" = ( /obj/structure/cable/blue{ d1 = 4; d2 = 8; @@ -10373,7 +10348,7 @@ }, /turf/simulated/floor/tiled, /area/outpost/engineering/hallway) -"tI" = ( +"tE" = ( /obj/structure/cable/blue{ d1 = 4; d2 = 8; @@ -10388,7 +10363,7 @@ }, /turf/simulated/floor/tiled, /area/outpost/engineering/hallway) -"tJ" = ( +"tF" = ( /obj/structure/cable/blue{ d1 = 1; d2 = 8; @@ -10402,7 +10377,7 @@ /obj/machinery/atmospherics/unary/vent_pump/on, /turf/simulated/floor/tiled, /area/outpost/engineering/hallway) -"tK" = ( +"tG" = ( /obj/structure/cable{ d1 = 1; d2 = 2; @@ -10415,7 +10390,7 @@ }, /turf/simulated/floor/tiled, /area/outpost/engineering/hallway) -"tL" = ( +"tH" = ( /obj/structure/cable/blue{ d2 = 8; icon_state = "0-8" @@ -10428,19 +10403,19 @@ }, /turf/simulated/floor/tiled, /area/outpost/engineering/hallway) -"tM" = ( +"tI" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/tiled, /area/outpost/engineering/hallway) -"tN" = ( +"tJ" = ( /obj/machinery/door/firedoor{ dir = 4; name = "Firelock" }, /turf/simulated/floor/tiled, /area/outpost/engineering/hallway) -"tO" = ( +"tK" = ( /obj/structure/cable/yellow{ d1 = 1; d2 = 4; @@ -10448,7 +10423,7 @@ }, /turf/simulated/floor/tiled, /area/outpost/engineering/hallway) -"tP" = ( +"tL" = ( /obj/structure/cable/yellow{ d1 = 4; d2 = 8; @@ -10460,7 +10435,7 @@ }, /turf/simulated/floor/tiled, /area/outpost/engineering/hallway) -"tQ" = ( +"tM" = ( /obj/structure/cable/yellow{ d1 = 4; d2 = 8; @@ -10471,7 +10446,7 @@ }, /turf/simulated/floor/tiled, /area/outpost/engineering/hallway) -"tR" = ( +"tN" = ( /obj/structure/cable/yellow{ d1 = 4; d2 = 8; @@ -10487,7 +10462,7 @@ }, /turf/simulated/floor/tiled, /area/outpost/engineering/hallway) -"tS" = ( +"tO" = ( /obj/structure/cable/yellow{ d1 = 4; d2 = 8; @@ -10506,7 +10481,7 @@ }, /turf/simulated/floor/tiled, /area/outpost/engineering/hallway) -"tT" = ( +"tP" = ( /obj/structure/cable/yellow{ d1 = 4; d2 = 8; @@ -10522,7 +10497,7 @@ }, /turf/simulated/floor/tiled, /area/outpost/engineering/hallway) -"tU" = ( +"tQ" = ( /obj/structure/window/reinforced{ dir = 8 }, @@ -10539,7 +10514,7 @@ }, /turf/simulated/floor/plating, /area/outpost/engineering/hallway) -"tV" = ( +"tR" = ( /obj/structure/disposalpipe/segment, /obj/structure/cable{ d1 = 2; @@ -10561,7 +10536,7 @@ icon_state = "asteroidfloor" }, /area/mine/explored) -"tW" = ( +"tS" = ( /obj/structure/cable{ d1 = 4; d2 = 8; @@ -10582,7 +10557,7 @@ icon_state = "asteroidfloor" }, /area/mine/explored) -"tX" = ( +"tT" = ( /obj/structure/cable{ d1 = 4; d2 = 8; @@ -10597,7 +10572,7 @@ }, /turf/simulated/floor/asteroid/ash, /area/mine/explored) -"tY" = ( +"tU" = ( /obj/structure/cable{ d1 = 4; d2 = 8; @@ -10617,7 +10592,7 @@ }, /turf/simulated/floor/asteroid/ash, /area/mine/explored) -"tZ" = ( +"tV" = ( /obj/structure/cable{ d1 = 4; d2 = 8; @@ -10641,7 +10616,7 @@ }, /turf/simulated/floor/asteroid/ash, /area/mine/explored) -"ua" = ( +"tW" = ( /obj/structure/cable{ d1 = 4; d2 = 8; @@ -10663,7 +10638,7 @@ }, /turf/simulated/floor/tiled, /area/outpost/engineering/hallway) -"ub" = ( +"tX" = ( /obj/structure/cable{ d1 = 4; d2 = 8; @@ -10687,7 +10662,7 @@ }, /turf/simulated/floor/tiled, /area/outpost/engineering/hallway) -"uc" = ( +"tY" = ( /obj/structure/cable{ d1 = 4; d2 = 8; @@ -10718,7 +10693,7 @@ }, /turf/simulated/floor/tiled, /area/outpost/engineering/hallway) -"ud" = ( +"tZ" = ( /obj/structure/cable{ d1 = 4; d2 = 8; @@ -10744,7 +10719,7 @@ }, /turf/simulated/floor/tiled, /area/outpost/engineering/hallway) -"ue" = ( +"ua" = ( /obj/structure/cable{ d1 = 4; d2 = 8; @@ -10775,7 +10750,7 @@ }, /turf/simulated/floor/tiled, /area/outpost/engineering/hallway) -"uf" = ( +"ub" = ( /obj/structure/cable{ d1 = 4; d2 = 8; @@ -10790,7 +10765,7 @@ }, /turf/simulated/floor/tiled, /area/outpost/engineering/hallway) -"ug" = ( +"uc" = ( /obj/structure/cable{ d1 = 4; d2 = 8; @@ -10807,7 +10782,7 @@ /obj/machinery/atmospherics/pipe/manifold/hidden/supply, /turf/simulated/floor/tiled, /area/outpost/engineering/hallway) -"uh" = ( +"ud" = ( /obj/structure/cable{ d1 = 4; d2 = 8; @@ -10820,7 +10795,7 @@ /obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, /turf/simulated/floor/tiled, /area/outpost/engineering/hallway) -"ui" = ( +"ue" = ( /obj/structure/cable{ d1 = 4; d2 = 8; @@ -10831,7 +10806,7 @@ /obj/machinery/atmospherics/pipe/manifold/hidden/supply, /turf/simulated/floor/tiled, /area/outpost/engineering/hallway) -"uj" = ( +"uf" = ( /obj/structure/cable{ d1 = 4; d2 = 8; @@ -10844,7 +10819,7 @@ }, /turf/simulated/floor/tiled, /area/outpost/engineering/hallway) -"uk" = ( +"ug" = ( /obj/structure/cable{ d1 = 4; d2 = 8; @@ -10859,7 +10834,7 @@ }, /turf/simulated/floor/tiled, /area/outpost/engineering/hallway) -"ul" = ( +"uh" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 }, @@ -10878,7 +10853,7 @@ }, /turf/simulated/floor/tiled, /area/outpost/engineering/hallway) -"um" = ( +"ui" = ( /obj/machinery/atmospherics/pipe/manifold/hidden/supply{ dir = 1 }, @@ -10898,7 +10873,7 @@ }, /turf/simulated/floor/tiled, /area/outpost/engineering/hallway) -"un" = ( +"uj" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 }, @@ -10913,7 +10888,7 @@ }, /turf/simulated/floor/tiled, /area/outpost/engineering/hallway) -"uo" = ( +"uk" = ( /obj/structure/cable{ d1 = 4; d2 = 8; @@ -10928,7 +10903,7 @@ }, /turf/simulated/floor/tiled, /area/outpost/engineering/hallway) -"up" = ( +"ul" = ( /obj/structure/cable{ d1 = 4; d2 = 8; @@ -10944,7 +10919,7 @@ /obj/machinery/firealarm/south, /turf/simulated/floor/tiled, /area/outpost/engineering/hallway) -"uq" = ( +"um" = ( /obj/structure/cable{ d1 = 4; d2 = 8; @@ -10968,7 +10943,7 @@ }, /turf/simulated/floor/tiled, /area/outpost/engineering/hallway) -"ur" = ( +"un" = ( /obj/structure/cable{ d1 = 4; d2 = 8; @@ -10981,7 +10956,7 @@ }, /turf/simulated/floor/tiled, /area/outpost/engineering/hallway) -"us" = ( +"uo" = ( /obj/structure/cable{ d1 = 4; d2 = 8; @@ -10994,7 +10969,7 @@ }, /turf/simulated/floor/tiled, /area/outpost/engineering/hallway) -"ut" = ( +"up" = ( /obj/structure/cable{ d1 = 1; d2 = 8; @@ -11008,7 +10983,7 @@ }, /turf/simulated/floor/tiled, /area/outpost/engineering/hallway) -"uu" = ( +"uq" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, @@ -11017,13 +10992,13 @@ }, /turf/simulated/floor/tiled, /area/outpost/engineering/hallway) -"uv" = ( +"ur" = ( /obj/machinery/atmospherics/pipe/manifold/hidden/supply, /obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, /obj/machinery/light, /turf/simulated/floor/tiled, /area/outpost/engineering/hallway) -"uw" = ( +"us" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, @@ -11036,7 +11011,7 @@ }, /turf/simulated/floor/tiled, /area/outpost/engineering/hallway) -"ux" = ( +"ut" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 9 }, @@ -11045,7 +11020,7 @@ }, /turf/simulated/floor/tiled, /area/outpost/engineering/hallway) -"uy" = ( +"uu" = ( /obj/machinery/light, /obj/item/device/radio/intercom{ broadcasting = 0; @@ -11056,7 +11031,7 @@ }, /turf/simulated/floor/tiled, /area/outpost/engineering/hallway) -"uz" = ( +"uv" = ( /obj/structure/cable/yellow{ d1 = 1; d2 = 2; @@ -11078,14 +11053,14 @@ }, /turf/simulated/floor/tiled, /area/outpost/engineering/hallway) -"uA" = ( +"uw" = ( /obj/effect/floor_decal/industrial/warning{ icon_state = "warning"; dir = 5 }, /turf/simulated/floor/tiled, /area/outpost/engineering/hallway) -"uB" = ( +"ux" = ( /obj/structure/disposalpipe/segment, /obj/structure/cable{ d1 = 1; @@ -11099,7 +11074,7 @@ icon_state = "asteroidfloor" }, /area/mine/explored) -"uC" = ( +"uy" = ( /obj/effect/floor_decal/industrial/warning/dust{ icon_state = "warning_dust"; dir = 1 @@ -11108,7 +11083,7 @@ icon_state = "asteroidfloor" }, /area/mine/explored) -"uD" = ( +"uz" = ( /obj/machinery/light/small{ dir = 4 }, @@ -11120,7 +11095,7 @@ icon_state = "asteroidfloor" }, /area/mine/explored) -"uE" = ( +"uA" = ( /obj/structure/grille, /obj/structure/window/reinforced{ dir = 1 @@ -11135,7 +11110,7 @@ }, /turf/simulated/floor/plating, /area/outpost/engineering/hallway) -"uF" = ( +"uB" = ( /obj/structure/grille, /obj/structure/window/reinforced{ dir = 1 @@ -11147,7 +11122,7 @@ }, /turf/simulated/floor/plating, /area/outpost/engineering/hallway) -"uG" = ( +"uC" = ( /obj/structure/grille, /obj/structure/window/reinforced{ dir = 1 @@ -11160,7 +11135,7 @@ }, /turf/simulated/floor/plating, /area/outpost/engineering/hallway) -"uH" = ( +"uD" = ( /obj/structure/grille, /obj/structure/window/reinforced{ dir = 1 @@ -11173,7 +11148,7 @@ }, /turf/simulated/floor/plating, /area/outpost/engineering/hallway) -"uI" = ( +"uE" = ( /obj/structure/grille, /obj/structure/window/reinforced{ dir = 1 @@ -11188,7 +11163,7 @@ }, /turf/simulated/floor/plating, /area/outpost/engineering/hallway) -"uJ" = ( +"uF" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/structure/cable/blue{ @@ -11206,7 +11181,7 @@ }, /turf/simulated/floor/tiled, /area/outpost/engineering/hallway) -"uK" = ( +"uG" = ( /obj/structure/grille, /obj/structure/window/reinforced{ dir = 1 @@ -11224,7 +11199,7 @@ }, /turf/simulated/floor/plating, /area/outpost/engineering/hallway) -"uL" = ( +"uH" = ( /obj/structure/cable/yellow{ d1 = 1; d2 = 2; @@ -11244,7 +11219,7 @@ }, /turf/simulated/floor/tiled, /area/outpost/engineering/hallway) -"uM" = ( +"uI" = ( /obj/machinery/door/airlock/external{ frequency = 1380; icon_state = "door_locked"; @@ -11258,23 +11233,23 @@ }, /turf/simulated/floor/tiled, /area/outpost/engineering/hallway) -"uN" = ( +"uJ" = ( /turf/simulated/wall/r_wall, /area/outpost/engineering/atmospherics) -"uO" = ( +"uK" = ( /obj/machinery/atmospherics/portables_connector{ dir = 4 }, /obj/machinery/portable_atmospherics/canister/air, /turf/simulated/floor/tiled, /area/outpost/engineering/atmospherics) -"uP" = ( +"uL" = ( /obj/machinery/atmospherics/pipe/manifold/visible/cyan{ dir = 1 }, /turf/simulated/floor/tiled, /area/outpost/engineering/atmospherics) -"uQ" = ( +"uM" = ( /obj/machinery/atmospherics/pipe/simple/visible/cyan{ dir = 4; icon_state = "intact" @@ -11282,7 +11257,7 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/tiled, /area/outpost/engineering/atmospherics) -"uR" = ( +"uN" = ( /obj/machinery/atmospherics/pipe/simple/visible/cyan{ dir = 4; icon_state = "intact" @@ -11290,13 +11265,13 @@ /obj/machinery/atmospherics/pipe/simple/hidden/supply, /turf/simulated/floor/tiled, /area/outpost/engineering/atmospherics) -"uS" = ( +"uO" = ( /obj/machinery/atmospherics/binary/pump/on{ dir = 4 }, /turf/simulated/floor/tiled, /area/outpost/engineering/atmospherics) -"uT" = ( +"uP" = ( /obj/machinery/atmospherics/pipe/simple/visible/universal{ dir = 4 }, @@ -11305,7 +11280,7 @@ }, /turf/simulated/floor/tiled, /area/outpost/engineering/atmospherics) -"uU" = ( +"uQ" = ( /obj/machinery/meter, /obj/machinery/atmospherics/pipe/simple/visible/supply{ dir = 4 @@ -11322,7 +11297,7 @@ }, /turf/simulated/floor/tiled, /area/outpost/engineering/atmospherics) -"uV" = ( +"uR" = ( /obj/machinery/atmospherics/pipe/simple/visible/supply{ icon_state = "intact-supply"; dir = 9 @@ -11338,7 +11313,7 @@ }, /turf/simulated/floor/tiled, /area/outpost/engineering/atmospherics) -"uW" = ( +"uS" = ( /obj/machinery/atmospherics/pipe/simple/visible/universal{ dir = 4 }, @@ -11348,7 +11323,7 @@ }, /turf/simulated/floor/tiled, /area/outpost/engineering/atmospherics) -"uX" = ( +"uT" = ( /obj/machinery/atmospherics/pipe/simple/visible/red{ icon_state = "intact"; dir = 10 @@ -11356,7 +11331,7 @@ /obj/machinery/meter, /turf/simulated/floor/tiled, /area/outpost/engineering/atmospherics) -"uY" = ( +"uU" = ( /obj/structure/window/reinforced{ dir = 4 }, @@ -11373,7 +11348,7 @@ }, /turf/simulated/floor/plating, /area/outpost/engineering/hallway) -"uZ" = ( +"uV" = ( /obj/structure/cable/yellow{ d1 = 1; d2 = 2; @@ -11385,7 +11360,7 @@ }, /turf/simulated/floor/plating, /area/outpost/engineering/hallway) -"va" = ( +"uW" = ( /obj/machinery/light/small{ dir = 4 }, @@ -11402,7 +11377,7 @@ }, /turf/simulated/floor/plating, /area/outpost/engineering/hallway) -"vb" = ( +"uX" = ( /obj/machinery/power/emitter{ anchored = 0; dir = 4; @@ -11412,42 +11387,42 @@ icon_state = "asteroidfloor" }, /area/mine/explored) -"vc" = ( +"uY" = ( /obj/machinery/atmospherics/pipe/manifold/visible/cyan{ icon_state = "map"; dir = 4 }, /turf/simulated/floor/tiled, /area/outpost/engineering/atmospherics) -"vd" = ( +"uZ" = ( /obj/machinery/atmospherics/unary/vent_scrubber/on{ dir = 1 }, /turf/simulated/floor/tiled, /area/outpost/engineering/atmospherics) -"ve" = ( +"va" = ( /obj/machinery/atmospherics/unary/vent_pump/on{ dir = 1 }, /turf/simulated/floor/tiled, /area/outpost/engineering/atmospherics) -"vf" = ( +"vb" = ( /turf/simulated/floor/tiled, /area/outpost/engineering/atmospherics) -"vg" = ( +"vc" = ( /obj/machinery/atmospherics/pipe/simple/visible/red{ icon_state = "intact"; dir = 6 }, /turf/simulated/floor/tiled, /area/outpost/engineering/atmospherics) -"vh" = ( +"vd" = ( /obj/machinery/atmospherics/binary/pump/on{ dir = 8 }, /turf/simulated/floor/tiled, /area/outpost/engineering/atmospherics) -"vi" = ( +"ve" = ( /obj/machinery/atmospherics/pipe/simple/visible/red{ icon_state = "intact"; dir = 9 @@ -11459,7 +11434,7 @@ }, /turf/simulated/floor/tiled, /area/outpost/engineering/atmospherics) -"vj" = ( +"vf" = ( /obj/structure/window/reinforced, /obj/structure/window/reinforced{ dir = 4 @@ -11474,7 +11449,7 @@ }, /turf/simulated/floor/plating, /area/outpost/engineering/hallway) -"vk" = ( +"vg" = ( /obj/structure/cable/yellow{ d1 = 1; d2 = 2; @@ -11486,7 +11461,7 @@ }, /turf/simulated/floor/plating, /area/outpost/engineering/hallway) -"vl" = ( +"vh" = ( /obj/machinery/embedded_controller/radio/airlock/docking_port{ frequency = 1380; id_tag = "edock_airlock"; @@ -11505,26 +11480,26 @@ }, /turf/simulated/floor/plating, /area/outpost/engineering/hallway) -"vm" = ( +"vi" = ( /obj/machinery/atmospherics/pipe/manifold4w/visible/cyan, /obj/machinery/meter, /turf/simulated/floor/tiled, /area/outpost/engineering/atmospherics) -"vn" = ( +"vj" = ( /obj/machinery/atmospherics/pipe/simple/visible/cyan{ dir = 4; icon_state = "intact" }, /turf/simulated/floor/tiled, /area/outpost/engineering/atmospherics) -"vo" = ( +"vk" = ( /obj/machinery/atmospherics/binary/pump/on{ dir = 8; target_pressure = 15000 }, /turf/simulated/floor/tiled, /area/outpost/engineering/atmospherics) -"vp" = ( +"vl" = ( /obj/machinery/atmospherics/omni/mixer{ tag_east = 1; tag_east_con = 0.79; @@ -11534,7 +11509,7 @@ }, /turf/simulated/floor/tiled, /area/outpost/engineering/atmospherics) -"vq" = ( +"vm" = ( /obj/machinery/atmospherics/pipe/simple/visible/blue{ icon_state = "intact"; dir = 4 @@ -11542,7 +11517,7 @@ /obj/machinery/meter, /turf/simulated/floor/tiled, /area/outpost/engineering/atmospherics) -"vr" = ( +"vn" = ( /obj/machinery/atmospherics/pipe/simple/visible/red{ icon_state = "intact"; dir = 1 @@ -11553,14 +11528,14 @@ }, /turf/simulated/floor/tiled, /area/outpost/engineering/atmospherics) -"vs" = ( +"vo" = ( /obj/machinery/atmospherics/pipe/simple/visible/blue{ icon_state = "intact"; dir = 4 }, /turf/simulated/floor/tiled, /area/outpost/engineering/atmospherics) -"vt" = ( +"vp" = ( /obj/machinery/atmospherics/pipe/simple/visible/blue{ icon_state = "intact"; dir = 10 @@ -11572,7 +11547,7 @@ /obj/machinery/firealarm/east, /turf/simulated/floor/tiled, /area/outpost/engineering/atmospherics) -"vu" = ( +"vq" = ( /obj/structure/sign/securearea{ desc = "A warning sign which reads 'KEEP CLEAR OF DOCKING AREA'."; name = "KEEP CLEAR: DOCKING AREA"; @@ -11580,7 +11555,7 @@ }, /turf/simulated/wall, /area/outpost/engineering/hallway) -"vv" = ( +"vr" = ( /obj/structure/cable/yellow{ d1 = 1; d2 = 2; @@ -11595,7 +11570,7 @@ }, /turf/simulated/floor/plating, /area/outpost/engineering/hallway) -"vw" = ( +"vs" = ( /obj/machinery/door/airlock/external{ frequency = 1380; icon_state = "door_locked"; @@ -11605,7 +11580,7 @@ }, /turf/simulated/floor/plating, /area/outpost/engineering/hallway) -"vx" = ( +"vt" = ( /obj/machinery/access_button{ command = "cycle_exterior"; frequency = 1380; @@ -11617,7 +11592,7 @@ }, /turf/template_noop, /area/template_noop) -"vy" = ( +"vu" = ( /obj/structure/lattice, /obj/structure/grille, /obj/structure/sign/securearea{ @@ -11627,7 +11602,7 @@ }, /turf/template_noop, /area/template_noop) -"vz" = ( +"vv" = ( /obj/structure/disposalpipe/segment{ dir = 8; icon_state = "pipe-c" @@ -11646,19 +11621,19 @@ }, /turf/simulated/floor/asteroid/ash, /area/mine/explored) -"vA" = ( +"vw" = ( /obj/machinery/atmospherics/pipe/simple/visible/cyan{ icon_state = "intact"; dir = 9 }, /turf/simulated/floor/tiled, /area/outpost/engineering/atmospherics) -"vB" = ( +"vx" = ( /obj/machinery/atmospherics/pipe/simple/visible/blue, /obj/machinery/meter, /turf/simulated/floor/tiled, /area/outpost/engineering/atmospherics) -"vC" = ( +"vy" = ( /obj/machinery/meter, /obj/machinery/atmospherics/pipe/simple/visible/red{ icon_state = "intact"; @@ -11666,7 +11641,7 @@ }, /turf/simulated/floor/tiled, /area/outpost/engineering/atmospherics) -"vD" = ( +"vz" = ( /obj/machinery/atmospherics/omni/filter{ power_rating = 15000; tag_east = 4; @@ -11676,7 +11651,7 @@ }, /turf/simulated/floor/tiled, /area/outpost/engineering/atmospherics) -"vE" = ( +"vA" = ( /obj/machinery/meter, /obj/machinery/atmospherics/pipe/simple/visible/red{ icon_state = "intact"; @@ -11684,7 +11659,7 @@ }, /turf/simulated/floor/tiled, /area/outpost/engineering/atmospherics) -"vF" = ( +"vB" = ( /obj/machinery/atmospherics/pipe/simple/visible/blue, /obj/structure/extinguisher_cabinet{ pixel_x = 25; @@ -11692,16 +11667,16 @@ }, /turf/simulated/floor/tiled, /area/outpost/engineering/atmospherics) -"vG" = ( +"vC" = ( /turf/template_noop, /area/shuttle/constructionsite/site) -"vH" = ( +"vD" = ( /obj/machinery/light{ dir = 8 }, /turf/simulated/floor/tiled, /area/outpost/engineering/atmospherics) -"vI" = ( +"vE" = ( /obj/machinery/atmospherics/pipe/simple/visible/red{ icon_state = "intact"; dir = 6 @@ -11709,14 +11684,14 @@ /obj/machinery/meter, /turf/simulated/floor/tiled, /area/outpost/engineering/atmospherics) -"vJ" = ( +"vF" = ( /obj/machinery/atmospherics/pipe/simple/visible/red{ icon_state = "intact"; dir = 4 }, /turf/simulated/floor/tiled, /area/outpost/engineering/atmospherics) -"vK" = ( +"vG" = ( /obj/machinery/atmospherics/pipe/simple/visible/red{ icon_state = "intact"; dir = 4 @@ -11734,7 +11709,7 @@ }, /turf/simulated/floor/tiled, /area/outpost/engineering/atmospherics) -"vL" = ( +"vH" = ( /obj/machinery/atmospherics/pipe/simple/visible/red{ icon_state = "intact"; dir = 4 @@ -11742,7 +11717,7 @@ /obj/machinery/atmospherics/pipe/simple/visible/blue, /turf/simulated/floor/tiled, /area/outpost/engineering/atmospherics) -"vM" = ( +"vI" = ( /obj/machinery/atmospherics/pipe/simple/visible/red{ icon_state = "intact"; dir = 4 @@ -11750,7 +11725,7 @@ /obj/machinery/atmospherics/pipe/simple/visible/red, /turf/simulated/floor/tiled, /area/outpost/engineering/atmospherics) -"vN" = ( +"vJ" = ( /obj/machinery/atmospherics/pipe/simple/visible/red{ icon_state = "intact"; dir = 9 @@ -11770,15 +11745,15 @@ /obj/machinery/light, /turf/simulated/floor/tiled, /area/outpost/engineering/atmospherics) -"vO" = ( +"vK" = ( /obj/machinery/atmospherics/pipe/simple/visible/red, /turf/simulated/floor/tiled, /area/outpost/engineering/atmospherics) -"vP" = ( +"vL" = ( /obj/machinery/atmospherics/pipe/simple/visible/blue, /turf/simulated/floor/tiled, /area/outpost/engineering/atmospherics) -"vQ" = ( +"vM" = ( /obj/machinery/atmospherics/omni/filter{ power_rating = 15000; tag_east = 5; @@ -11788,78 +11763,78 @@ }, /turf/simulated/floor/tiled, /area/outpost/engineering/atmospherics) -"vR" = ( +"vN" = ( /obj/machinery/atmospherics/pipe/simple/visible/red{ icon_state = "intact"; dir = 10 }, /turf/simulated/floor/tiled, /area/outpost/engineering/atmospherics) +"vO" = ( +/obj/machinery/atmospherics/pipe/simple/visible/blue, +/obj/structure/grille, +/obj/structure/window/reinforced, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/machinery/door/firedoor{ + dir = 4; + name = "Firelock" + }, +/turf/simulated/floor/plating, +/area/outpost/engineering/atmospherics) +"vP" = ( +/obj/structure/grille, +/obj/structure/window/reinforced, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/machinery/door/firedoor{ + dir = 4; + name = "Firelock" + }, +/obj/machinery/atmospherics/pipe/simple/visible/red, +/turf/simulated/floor/plating, +/area/outpost/engineering/atmospherics) +"vQ" = ( +/obj/structure/grille, +/obj/structure/window/reinforced, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/machinery/door/firedoor{ + dir = 4; + name = "Firelock" + }, +/obj/machinery/atmospherics/pipe/simple/visible/red, +/turf/simulated/floor/plating, +/area/outpost/engineering/atmospherics) +"vR" = ( +/obj/machinery/atmospherics/pipe/simple/visible/blue, +/obj/structure/grille, +/obj/structure/window/reinforced, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/machinery/door/firedoor{ + dir = 4; + name = "Firelock" + }, +/turf/simulated/floor/plating, +/area/outpost/engineering/atmospherics) "vS" = ( -/obj/machinery/atmospherics/pipe/simple/visible/blue, -/obj/structure/grille, -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/machinery/door/firedoor{ - dir = 4; - name = "Firelock" - }, -/turf/simulated/floor/plating, -/area/outpost/engineering/atmospherics) -"vT" = ( -/obj/structure/grille, -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/machinery/door/firedoor{ - dir = 4; - name = "Firelock" - }, -/obj/machinery/atmospherics/pipe/simple/visible/red, -/turf/simulated/floor/plating, -/area/outpost/engineering/atmospherics) -"vU" = ( -/obj/structure/grille, -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/machinery/door/firedoor{ - dir = 4; - name = "Firelock" - }, -/obj/machinery/atmospherics/pipe/simple/visible/red, -/turf/simulated/floor/plating, -/area/outpost/engineering/atmospherics) -"vV" = ( -/obj/machinery/atmospherics/pipe/simple/visible/blue, -/obj/structure/grille, -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/machinery/door/firedoor{ - dir = 4; - name = "Firelock" - }, -/turf/simulated/floor/plating, -/area/outpost/engineering/atmospherics) -"vW" = ( /obj/structure/cable/yellow{ d1 = 1; d2 = 4; @@ -11872,28 +11847,28 @@ }, /turf/simulated/floor/airless, /area/template_noop) -"vX" = ( +"vT" = ( /obj/machinery/atmospherics/portables_connector{ dir = 1 }, /obj/machinery/portable_atmospherics/canister/empty/phoron, /turf/simulated/floor/tiled, /area/outpost/engineering/atmospherics) -"vY" = ( +"vU" = ( /obj/machinery/atmospherics/portables_connector{ dir = 1 }, /obj/machinery/portable_atmospherics/canister/empty/sleeping_agent, /turf/simulated/floor/tiled, /area/outpost/engineering/atmospherics) -"vZ" = ( +"vV" = ( /obj/machinery/atmospherics/portables_connector{ dir = 1 }, /obj/machinery/portable_atmospherics/canister/empty/carbon_dioxide, /turf/simulated/floor/tiled, /area/outpost/engineering/atmospherics) -"wa" = ( +"vW" = ( /obj/machinery/atmospherics/unary/vent_pump/siphon/on/atmos{ dir = 1; frequency = 1441; @@ -11901,7 +11876,7 @@ }, /turf/simulated/floor/reinforced/oxygen, /area/outpost/engineering/atmospherics) -"wb" = ( +"vX" = ( /obj/machinery/atmospherics/unary/outlet_injector{ dir = 1; frequency = 1441; @@ -11912,7 +11887,7 @@ }, /turf/simulated/floor/reinforced/oxygen, /area/outpost/engineering/atmospherics) -"wc" = ( +"vY" = ( /obj/machinery/atmospherics/unary/outlet_injector{ dir = 1; frequency = 1441; @@ -11923,7 +11898,7 @@ }, /turf/simulated/floor/reinforced/nitrogen, /area/outpost/engineering/atmospherics) -"wd" = ( +"vZ" = ( /obj/machinery/atmospherics/unary/vent_pump/siphon/on/atmos{ dir = 1; frequency = 1441; @@ -11931,27 +11906,27 @@ }, /turf/simulated/floor/reinforced/nitrogen, /area/outpost/engineering/atmospherics) -"we" = ( +"wa" = ( /obj/machinery/air_sensor{ frequency = 1441; id_tag = "outpost_o2_sensor" }, /turf/simulated/floor/reinforced/oxygen, /area/outpost/engineering/atmospherics) -"wf" = ( +"wb" = ( /turf/simulated/floor/reinforced/oxygen, /area/outpost/engineering/atmospherics) -"wg" = ( +"wc" = ( /turf/simulated/floor/reinforced/nitrogen, /area/outpost/engineering/atmospherics) -"wh" = ( +"wd" = ( /obj/machinery/air_sensor{ frequency = 1441; id_tag = "outpost_n2_sensor" }, /turf/simulated/floor/reinforced/nitrogen, /area/outpost/engineering/atmospherics) -"wi" = ( +"we" = ( /obj/structure/grille, /obj/structure/lattice, /obj/structure/sign/securearea{ @@ -11961,7 +11936,7 @@ }, /turf/template_noop, /area/template_noop) -"wj" = ( +"wf" = ( /obj/structure/grille, /obj/structure/window/reinforced{ dir = 4 @@ -11974,7 +11949,7 @@ }, /turf/simulated/floor/plating, /area/mine/explored) -"wk" = ( +"wg" = ( /obj/structure/grille, /obj/structure/window/reinforced, /obj/structure/window/reinforced{ @@ -11985,21 +11960,21 @@ }, /turf/simulated/floor/plating, /area/mine/explored) -"wl" = ( +"wh" = ( /obj/machinery/door/airlock/external{ name = "Mining Bridge"; req_access = list(54) }, /turf/simulated/floor/asteroid/ash, /area/mine/explored) -"wm" = ( +"wi" = ( /obj/structure/lattice, /obj/structure/window/reinforced{ dir = 4 }, /turf/template_noop, /area/mine/explored) -"wn" = ( +"wj" = ( /obj/structure/window/reinforced{ dir = 4 }, @@ -12008,7 +11983,7 @@ }, /turf/simulated/floor/airless, /area/mine/explored) -"wo" = ( +"wk" = ( /obj/structure/lattice, /obj/structure/window/reinforced{ dir = 8 @@ -12018,14 +11993,14 @@ }, /turf/template_noop, /area/mine/explored) -"wp" = ( +"wl" = ( /obj/structure/lattice, /obj/structure/window/reinforced{ dir = 8 }, /turf/template_noop, /area/mine/explored) -"wq" = ( +"wm" = ( /obj/structure/lattice, /obj/structure/window/reinforced, /obj/machinery/light{ @@ -12034,7 +12009,7 @@ }, /turf/template_noop, /area/mine/explored) -"wr" = ( +"wn" = ( /obj/structure/lattice, /obj/structure/window/reinforced, /obj/structure/window/reinforced{ @@ -12042,27 +12017,27 @@ }, /turf/template_noop, /area/mine/explored) -"ws" = ( +"wo" = ( /obj/structure/window/reinforced{ dir = 1 }, /obj/structure/window/reinforced, /turf/simulated/floor/airless, /area/mine/explored) -"wt" = ( +"wp" = ( /obj/structure/window/reinforced{ dir = 1 }, /turf/simulated/floor/airless, /area/mine/explored) -"wu" = ( +"wq" = ( /obj/structure/window/reinforced, /obj/structure/window/reinforced{ dir = 4 }, /turf/simulated/floor/airless, /area/mine/explored) -"wv" = ( +"wr" = ( /obj/structure/grille, /obj/structure/window/reinforced, /obj/structure/window/reinforced, @@ -12074,7 +12049,7 @@ }, /turf/simulated/floor/plating, /area/mine/explored) -"ww" = ( +"ws" = ( /obj/structure/lattice, /obj/structure/window/reinforced{ dir = 1 @@ -12084,7 +12059,7 @@ }, /turf/template_noop, /area/mine/explored) -"wx" = ( +"wt" = ( /obj/structure/lattice, /obj/structure/lattice, /obj/structure/window/reinforced{ @@ -12095,41 +12070,41 @@ }, /turf/template_noop, /area/mine/explored) -"wy" = ( +"wu" = ( /turf/simulated/floor/airless{ icon_state = "asteroidplating" }, /area/mine/explored) -"wz" = ( +"wv" = ( /obj/item/weapon/reagent_containers/food/snacks/grown/ambrosiavulgaris, /obj/item/weapon/reagent_containers/food/snacks/grown/ambrosiavulgaris, /turf/simulated/floor/airless{ icon_state = "asteroidplating" }, /area/mine/explored) -"wA" = ( +"ww" = ( /obj/item/weapon/reagent_containers/food/snacks/grown/mushroom/libertycap, /turf/simulated/floor/airless{ icon_state = "asteroidplating" }, /area/mine/explored) -"wB" = ( +"wx" = ( /turf/simulated/wall, /area/outpost/mining_main/dorms) -"wC" = ( +"wy" = ( /obj/item/clothing/under/rank/miner, /obj/effect/decal/remains/human, /turf/simulated/floor/airless{ icon_state = "asteroidplating" }, /area/mine/explored) -"wD" = ( +"wz" = ( /obj/item/weapon/reagent_containers/food/snacks/grown/ambrosiavulgaris, /turf/simulated/floor/tiled/airless{ icon_state = "asteroidfloor" }, /area/mine/explored) -"wE" = ( +"wA" = ( /obj/structure/bed, /obj/item/weapon/bedsheet/brown, /obj/effect/floor_decal/carpet{ @@ -12146,7 +12121,7 @@ }, /turf/simulated/floor/carpet, /area/outpost/mining_main/dorms) -"wF" = ( +"wB" = ( /obj/machinery/light/small{ dir = 4 }, @@ -12172,10 +12147,10 @@ }, /turf/simulated/floor/carpet, /area/outpost/mining_main/dorms) -"wG" = ( +"wC" = ( /turf/simulated/floor/tiled, /area/outpost/mining_main/dorms) -"wH" = ( +"wD" = ( /obj/structure/lattice, /obj/structure/window/reinforced{ dir = 4 @@ -12183,7 +12158,7 @@ /obj/machinery/light, /turf/template_noop, /area/mine/explored) -"wI" = ( +"wE" = ( /obj/structure/table/standard, /obj/machinery/atmospherics/unary/vent_scrubber/on{ dir = 4 @@ -12199,7 +12174,7 @@ }, /turf/simulated/floor/carpet, /area/outpost/mining_main/dorms) -"wJ" = ( +"wF" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 5 }, @@ -12217,7 +12192,7 @@ }, /turf/simulated/floor/carpet, /area/outpost/mining_main/dorms) -"wK" = ( +"wG" = ( /obj/machinery/door/airlock{ id_tag = "miningdorm1"; name = "Room 1" @@ -12230,7 +12205,7 @@ }, /turf/simulated/floor/tiled, /area/outpost/mining_main/dorms) -"wL" = ( +"wH" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 10 }, @@ -12239,7 +12214,7 @@ }, /turf/simulated/floor/tiled, /area/outpost/mining_main/dorms) -"wM" = ( +"wI" = ( /obj/structure/disposalpipe/trunk, /obj/structure/disposaloutlet{ dir = 1 @@ -12248,7 +12223,7 @@ icon_state = "asteroidfloor" }, /area/mine/explored) -"wN" = ( +"wJ" = ( /obj/machinery/light/small{ dir = 4 }, @@ -12256,11 +12231,11 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/tiled, /area/outpost/mining_main/dorms) -"wO" = ( +"wK" = ( /obj/structure/disposalpipe/segment, /turf/unsimulated/mask, /area/mine/unexplored) -"wP" = ( +"wL" = ( /obj/machinery/light/small{ dir = 4 }, @@ -12286,12 +12261,12 @@ }, /turf/simulated/floor/carpet, /area/outpost/mining_main/dorms) -"wQ" = ( +"wM" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/tiled, /area/outpost/mining_main/dorms) -"wR" = ( +"wN" = ( /obj/structure/grille, /obj/structure/window/reinforced{ dir = 1 @@ -12307,10 +12282,10 @@ }, /turf/simulated/floor/plating, /area/outpost/mining_main/dorms) -"wS" = ( +"wO" = ( /turf/simulated/floor/asteroid/ash, /area/outpost/mining_west) -"wT" = ( +"wP" = ( /obj/machinery/door/airlock{ id_tag = "miningdorm2"; name = "Room 2" @@ -12323,7 +12298,7 @@ }, /turf/simulated/floor/tiled, /area/outpost/mining_main/dorms) -"wU" = ( +"wQ" = ( /obj/machinery/atmospherics/pipe/manifold/hidden/supply{ dir = 4 }, @@ -12332,7 +12307,7 @@ }, /turf/simulated/floor/tiled, /area/outpost/mining_main/dorms) -"wV" = ( +"wR" = ( /obj/structure/grille, /obj/structure/window/reinforced{ dir = 8 @@ -12345,7 +12320,7 @@ }, /turf/simulated/floor/plating, /area/outpost/mining_main/dorms) -"wW" = ( +"wS" = ( /obj/structure/window/reinforced{ dir = 8 }, @@ -12354,12 +12329,12 @@ icon_state = "asteroidfloor" }, /area/outpost/mining_west) -"wX" = ( +"wT" = ( /turf/simulated/floor/tiled/airless{ icon_state = "asteroidfloor" }, /area/outpost/mining_west) -"wY" = ( +"wU" = ( /obj/structure/window/reinforced{ dir = 4 }, @@ -12368,12 +12343,12 @@ icon_state = "asteroidfloor" }, /area/outpost/mining_west) -"wZ" = ( +"wV" = ( /obj/structure/disposalpipe/segment, /obj/structure/sign/deathsposal, /turf/simulated/wall, /area/outpost/mining_main/dorms) -"xa" = ( +"wW" = ( /obj/structure/grille, /obj/structure/window/reinforced{ dir = 8 @@ -12387,7 +12362,7 @@ }, /turf/simulated/floor/plating, /area/outpost/mining_main/dorms) -"xb" = ( +"wX" = ( /obj/machinery/light{ dir = 1 }, @@ -12403,7 +12378,7 @@ icon_state = "asteroidfloor" }, /area/mine/explored) -"xc" = ( +"wY" = ( /obj/effect/floor_decal/industrial/warning/dust{ icon_state = "warning_dust"; dir = 1 @@ -12413,7 +12388,7 @@ icon_state = "asteroidfloor" }, /area/mine/explored) -"xd" = ( +"wZ" = ( /obj/effect/floor_decal/industrial/warning/dust{ icon_state = "warning_dust"; dir = 1 @@ -12423,7 +12398,7 @@ icon_state = "asteroidfloor" }, /area/mine/explored) -"xe" = ( +"xa" = ( /obj/machinery/light{ dir = 1 }, @@ -12436,10 +12411,10 @@ icon_state = "asteroidfloor" }, /area/mine/explored) -"xf" = ( +"xb" = ( /turf/simulated/wall, /area/outpost/mining_west) -"xg" = ( +"xc" = ( /obj/structure/grille, /obj/structure/window/reinforced, /obj/structure/window/reinforced{ @@ -12453,7 +12428,7 @@ }, /turf/simulated/floor/plating, /area/outpost/mining_west) -"xh" = ( +"xd" = ( /obj/structure/grille, /obj/structure/window/reinforced, /obj/structure/window/reinforced{ @@ -12464,7 +12439,7 @@ }, /turf/simulated/floor/plating, /area/outpost/mining_west) -"xi" = ( +"xe" = ( /obj/structure/grille, /obj/structure/window/reinforced, /obj/structure/window/reinforced{ @@ -12478,7 +12453,7 @@ }, /turf/simulated/floor/plating, /area/outpost/mining_west) -"xj" = ( +"xf" = ( /obj/machinery/disposal, /obj/structure/disposalpipe/trunk{ dir = 1 @@ -12486,17 +12461,17 @@ /obj/effect/floor_decal/corner/red/diagonal, /turf/simulated/floor/tiled, /area/outpost/mining_main/dorms) -"xk" = ( +"xg" = ( /obj/machinery/vending/cigarette, /obj/effect/floor_decal/corner/red/diagonal, /turf/simulated/floor/tiled, /area/outpost/mining_main/dorms) -"xl" = ( +"xh" = ( /obj/machinery/vending/snack, /obj/effect/floor_decal/corner/red/diagonal, /turf/simulated/floor/tiled, /area/outpost/mining_main/dorms) -"xm" = ( +"xi" = ( /obj/machinery/light/small{ dir = 4 }, @@ -12522,10 +12497,10 @@ }, /turf/simulated/floor/carpet, /area/outpost/mining_main/dorms) -"xn" = ( +"xj" = ( /turf/simulated/wall, /area/outpost/mining_main/west_hall) -"xo" = ( +"xk" = ( /obj/structure/grille, /obj/structure/window/reinforced{ dir = 1 @@ -12539,7 +12514,7 @@ }, /turf/simulated/floor/plating, /area/outpost/mining_main/west_hall) -"xp" = ( +"xl" = ( /obj/structure/grille, /obj/structure/window/reinforced{ dir = 1 @@ -12550,7 +12525,7 @@ }, /turf/simulated/floor/plating, /area/outpost/mining_main/west_hall) -"xq" = ( +"xm" = ( /obj/structure/grille, /obj/structure/window/reinforced{ dir = 1 @@ -12564,7 +12539,7 @@ }, /turf/simulated/floor/plating, /area/outpost/mining_main/west_hall) -"xr" = ( +"xn" = ( /obj/item/weapon/cell/high{ charge = 100; maxcharge = 15000 @@ -12582,13 +12557,13 @@ icon_state = "asteroidfloor" }, /area/mine/explored) -"xs" = ( +"xo" = ( /obj/machinery/mining/brace, /turf/simulated/floor/tiled/airless{ icon_state = "asteroidfloor" }, /area/mine/explored) -"xt" = ( +"xp" = ( /obj/effect/floor_decal/industrial/warning/dust{ icon_state = "warning_dust"; dir = 4 @@ -12598,7 +12573,7 @@ icon_state = "asteroidfloor" }, /area/mine/explored) -"xu" = ( +"xq" = ( /obj/structure/disposalpipe/segment, /obj/structure/cable{ d1 = 1; @@ -12615,7 +12590,7 @@ icon_state = "asteroidfloor" }, /area/mine/explored) -"xv" = ( +"xr" = ( /obj/structure/cable{ d1 = 4; d2 = 8; @@ -12636,7 +12611,7 @@ icon_state = "asteroidfloor" }, /area/mine/explored) -"xw" = ( +"xs" = ( /obj/structure/cable{ d1 = 4; d2 = 8; @@ -12657,7 +12632,7 @@ icon_state = "asteroidfloor" }, /area/mine/explored) -"xx" = ( +"xt" = ( /obj/structure/cable{ d1 = 2; d2 = 8; @@ -12677,23 +12652,23 @@ icon_state = "asteroidfloor" }, /area/mine/explored) -"xy" = ( +"xu" = ( /obj/item/weapon/pickaxe, /obj/structure/table/steel, /turf/simulated/floor/tiled, /area/outpost/mining_west) -"xz" = ( +"xv" = ( /obj/machinery/alarm{ pixel_y = 22 }, /turf/simulated/floor/tiled, /area/outpost/mining_west) -"xA" = ( +"xw" = ( /obj/structure/table/standard, /obj/machinery/microwave, /turf/simulated/floor/tiled, /area/outpost/mining_west) -"xB" = ( +"xx" = ( /obj/structure/grille, /obj/structure/window/reinforced{ dir = 8 @@ -12709,7 +12684,7 @@ }, /turf/simulated/floor/plating, /area/outpost/mining_west) -"xC" = ( +"xy" = ( /obj/machinery/recharge_station, /obj/machinery/status_display{ layer = 4; @@ -12718,27 +12693,27 @@ }, /turf/simulated/floor/tiled, /area/outpost/mining_west) -"xD" = ( +"xz" = ( /obj/structure/dispenser/oxygen, /turf/simulated/floor/tiled, /area/outpost/mining_west) -"xE" = ( +"xA" = ( /obj/machinery/light{ dir = 1 }, /obj/machinery/portable_atmospherics/canister/oxygen, /turf/simulated/floor/tiled, /area/outpost/mining_west) -"xF" = ( +"xB" = ( /obj/structure/table/rack, /turf/simulated/floor/tiled, /area/outpost/mining_west) -"xG" = ( +"xC" = ( /obj/machinery/atmospherics/portables_connector, /obj/machinery/portable_atmospherics/canister/air/airlock, /turf/simulated/floor/tiled, /area/outpost/mining_west) -"xH" = ( +"xD" = ( /obj/structure/grille, /obj/structure/window/reinforced, /obj/structure/window/reinforced{ @@ -12755,7 +12730,7 @@ }, /turf/simulated/floor/plating, /area/outpost/mining_west) -"xI" = ( +"xE" = ( /obj/machinery/light/small{ dir = 1 }, @@ -12769,7 +12744,7 @@ }, /turf/simulated/floor/tiled, /area/outpost/mining_west) -"xJ" = ( +"xF" = ( /obj/machinery/atmospherics/unary/vent_pump/high_volume{ dir = 2; frequency = 1379; @@ -12782,7 +12757,7 @@ }, /turf/simulated/floor/tiled, /area/outpost/mining_west) -"xK" = ( +"xG" = ( /obj/structure/grille, /obj/structure/window/reinforced{ dir = 1 @@ -12799,7 +12774,7 @@ }, /turf/simulated/floor/plating, /area/outpost/mining_west) -"xL" = ( +"xH" = ( /obj/structure/table/standard, /obj/machinery/microwave{ pixel_y = 6 @@ -12807,11 +12782,11 @@ /obj/effect/floor_decal/corner/red/diagonal, /turf/simulated/floor/tiled, /area/outpost/mining_main/dorms) -"xM" = ( +"xI" = ( /obj/effect/floor_decal/corner/red/diagonal, /turf/simulated/floor/tiled, /area/outpost/mining_main/dorms) -"xN" = ( +"xJ" = ( /obj/machinery/status_display{ layer = 4; pixel_x = 0; @@ -12820,22 +12795,22 @@ /obj/effect/floor_decal/corner/red/diagonal, /turf/simulated/floor/tiled, /area/outpost/mining_main/dorms) -"xO" = ( +"xK" = ( /obj/structure/bed/chair, /obj/effect/floor_decal/corner/red/diagonal, /turf/simulated/floor/tiled, /area/outpost/mining_main/dorms) -"xP" = ( +"xL" = ( /obj/machinery/atmospherics/unary/vent_pump/on, /obj/effect/floor_decal/corner/red/diagonal, /turf/simulated/floor/tiled, /area/outpost/mining_main/dorms) -"xQ" = ( +"xM" = ( /obj/machinery/atmospherics/unary/vent_scrubber/on, /obj/effect/floor_decal/corner/red/diagonal, /turf/simulated/floor/tiled, /area/outpost/mining_main/dorms) -"xR" = ( +"xN" = ( /obj/machinery/door/airlock{ id_tag = "miningdorm3"; name = "Room 3" @@ -12848,27 +12823,27 @@ }, /turf/simulated/floor/tiled, /area/outpost/mining_main/dorms) -"xS" = ( +"xO" = ( /obj/structure/ore_box, /turf/simulated/floor/tiled, /area/outpost/mining_main/west_hall) -"xT" = ( +"xP" = ( /obj/machinery/recharge_station, /obj/machinery/light/small{ dir = 1 }, /turf/simulated/floor/tiled, /area/outpost/mining_main/west_hall) -"xU" = ( +"xQ" = ( /obj/structure/closet/secure_closet/miner, /turf/simulated/floor/tiled, /area/outpost/mining_main/west_hall) -"xV" = ( +"xR" = ( /obj/structure/closet/secure_closet/miner, /obj/machinery/atmospherics/unary/vent_pump/on, /turf/simulated/floor/tiled, /area/outpost/mining_main/west_hall) -"xW" = ( +"xS" = ( /obj/structure/grille, /obj/structure/window/reinforced{ dir = 1 @@ -12884,7 +12859,7 @@ }, /turf/simulated/floor/plating, /area/outpost/mining_main/west_hall) -"xX" = ( +"xT" = ( /obj/machinery/cell_charger, /obj/structure/table/reinforced/steel, /obj/effect/floor_decal/industrial/warning/dust{ @@ -12895,14 +12870,14 @@ icon_state = "asteroidfloor" }, /area/mine/explored) -"xY" = ( +"xU" = ( /obj/effect/floor_decal/industrial/warning/dust, /obj/machinery/mining/brace, /turf/simulated/floor/tiled/airless{ icon_state = "asteroidfloor" }, /area/mine/explored) -"xZ" = ( +"xV" = ( /obj/effect/floor_decal/industrial/warning/dust{ icon_state = "warning_dust"; dir = 6 @@ -12912,14 +12887,14 @@ icon_state = "asteroidfloor" }, /area/mine/explored) -"ya" = ( +"xW" = ( /obj/structure/disposalpipe/segment, /turf/simulated/wall, /area/outpost/mining_main/eva) -"yb" = ( +"xX" = ( /turf/simulated/wall, /area/outpost/mining_main/eva) -"yc" = ( +"xY" = ( /obj/structure/grille, /obj/structure/window/reinforced, /obj/structure/window/reinforced{ @@ -12933,7 +12908,7 @@ }, /turf/simulated/floor/plating, /area/outpost/mining_main/eva) -"yd" = ( +"xZ" = ( /obj/structure/grille, /obj/structure/window/reinforced, /obj/structure/window/reinforced{ @@ -12947,7 +12922,7 @@ }, /turf/simulated/floor/plating, /area/outpost/mining_main/eva) -"ye" = ( +"ya" = ( /obj/structure/cable{ d1 = 1; d2 = 2; @@ -12963,20 +12938,20 @@ icon_state = "asteroidfloor" }, /area/mine/explored) -"yf" = ( +"yb" = ( /obj/item/weapon/shovel, /obj/structure/table/steel, /turf/simulated/floor/tiled, /area/outpost/mining_west) -"yg" = ( +"yc" = ( /turf/simulated/floor/tiled, /area/outpost/mining_west) -"yh" = ( +"yd" = ( /obj/structure/table/standard, /obj/item/weapon/storage/box/donkpockets, /turf/simulated/floor/tiled, /area/outpost/mining_west) -"yi" = ( +"ye" = ( /obj/structure/grille, /obj/structure/window/reinforced, /obj/structure/window/reinforced{ @@ -12990,7 +12965,7 @@ }, /turf/simulated/floor/plating, /area/outpost/mining_west) -"yj" = ( +"yf" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 6 }, @@ -12999,7 +12974,7 @@ }, /turf/simulated/floor/tiled, /area/outpost/mining_west) -"yk" = ( +"yg" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 }, @@ -13013,7 +12988,7 @@ }, /turf/simulated/floor/tiled, /area/outpost/mining_west) -"yl" = ( +"yh" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 }, @@ -13028,7 +13003,7 @@ }, /turf/simulated/floor/tiled, /area/outpost/mining_west) -"ym" = ( +"yi" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 }, @@ -13046,7 +13021,7 @@ }, /turf/simulated/floor/tiled, /area/outpost/mining_west) -"yn" = ( +"yj" = ( /obj/machinery/access_button{ command = "cycle_interior"; frequency = 1379; @@ -13070,7 +13045,7 @@ /obj/machinery/atmospherics/pipe/manifold4w/hidden, /turf/simulated/floor/tiled, /area/outpost/mining_west) -"yo" = ( +"yk" = ( /obj/machinery/door/firedoor{ dir = 2 }, @@ -13098,7 +13073,7 @@ }, /turf/simulated/floor/tiled, /area/outpost/mining_west) -"yp" = ( +"yl" = ( /obj/machinery/atmospherics/pipe/manifold4w/hidden, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 @@ -13114,7 +13089,7 @@ }, /turf/simulated/floor/tiled, /area/outpost/mining_west) -"yq" = ( +"ym" = ( /obj/machinery/atmospherics/pipe/manifold/hidden{ dir = 4; icon_state = "map" @@ -13137,7 +13112,7 @@ }, /turf/simulated/floor/tiled, /area/outpost/mining_west) -"yr" = ( +"yn" = ( /obj/machinery/door/firedoor{ dir = 2 }, @@ -13163,7 +13138,7 @@ }, /turf/simulated/floor/tiled, /area/outpost/mining_west) -"ys" = ( +"yo" = ( /obj/machinery/access_button{ command = "cycle_exterior"; frequency = 1379; @@ -13188,7 +13163,7 @@ icon_state = "asteroidfloor" }, /area/mine/explored) -"yt" = ( +"yp" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 10 }, @@ -13204,7 +13179,7 @@ icon_state = "asteroidfloor" }, /area/mine/explored) -"yu" = ( +"yq" = ( /obj/effect/floor_decal/industrial/warning/dust{ icon_state = "warning_dust"; dir = 4 @@ -13213,19 +13188,19 @@ icon_state = "asteroidfloor" }, /area/mine/explored) -"yv" = ( +"yr" = ( /obj/structure/table/standard, /obj/effect/floor_decal/corner/red/diagonal, /turf/simulated/floor/tiled, /area/outpost/mining_main/dorms) -"yw" = ( +"ys" = ( /obj/structure/bed/chair{ dir = 4 }, /obj/effect/floor_decal/corner/red/diagonal, /turf/simulated/floor/tiled, /area/outpost/mining_main/dorms) -"yx" = ( +"yt" = ( /obj/structure/bed/chair{ dir = 8 }, @@ -13233,7 +13208,7 @@ /obj/effect/floor_decal/corner/red/diagonal, /turf/simulated/floor/tiled, /area/outpost/mining_main/dorms) -"yy" = ( +"yu" = ( /obj/machinery/light{ dir = 4 }, @@ -13241,23 +13216,23 @@ /obj/effect/floor_decal/corner/red/diagonal, /turf/simulated/floor/tiled, /area/outpost/mining_main/dorms) -"yz" = ( +"yv" = ( /turf/simulated/floor/tiled, /area/outpost/mining_main/west_hall) -"yA" = ( +"yw" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 6 }, /turf/simulated/floor/tiled, /area/outpost/mining_main/west_hall) -"yB" = ( +"yx" = ( /obj/machinery/atmospherics/unary/vent_scrubber/on{ dir = 8 }, /turf/simulated/floor/tiled, /area/outpost/mining_main/west_hall) -"yC" = ( +"yy" = ( /obj/structure/grille, /obj/structure/window/reinforced{ dir = 8 @@ -13270,7 +13245,7 @@ }, /turf/simulated/floor/plating, /area/outpost/mining_main/west_hall) -"yD" = ( +"yz" = ( /obj/structure/table/rack, /obj/item/clothing/suit/space/void/mining, /obj/item/clothing/mask/breath, @@ -13278,11 +13253,11 @@ /obj/item/weapon/mining_scanner, /turf/simulated/floor/tiled, /area/outpost/mining_main/eva) -"yE" = ( +"yA" = ( /obj/machinery/suit_cycler/mining, /turf/simulated/floor/tiled, /area/outpost/mining_main/eva) -"yF" = ( +"yB" = ( /obj/structure/cable{ d1 = 1; d2 = 4; @@ -13302,7 +13277,7 @@ icon_state = "asteroidfloor" }, /area/mine/explored) -"yG" = ( +"yC" = ( /obj/machinery/light, /obj/structure/cable{ d1 = 4; @@ -13324,7 +13299,7 @@ icon_state = "asteroidfloor" }, /area/mine/explored) -"yH" = ( +"yD" = ( /obj/item/weapon/storage/backpack/satchel, /obj/item/clothing/glasses/meson, /obj/machinery/light/small{ @@ -13333,13 +13308,13 @@ /obj/structure/table/steel, /turf/simulated/floor/tiled, /area/outpost/mining_west) -"yI" = ( +"yE" = ( /obj/machinery/atmospherics/unary/vent_pump/on{ dir = 4 }, /turf/simulated/floor/tiled, /area/outpost/mining_west) -"yJ" = ( +"yF" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, @@ -13348,7 +13323,7 @@ }, /turf/simulated/floor/tiled, /area/outpost/mining_west) -"yK" = ( +"yG" = ( /obj/machinery/door/airlock/glass_mining{ name = "Break Room"; req_access = list(54) @@ -13361,12 +13336,12 @@ }, /turf/simulated/floor/tiled, /area/outpost/mining_west) -"yL" = ( +"yH" = ( /obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, /obj/machinery/atmospherics/pipe/manifold4w/hidden/supply, /turf/simulated/floor/tiled, /area/outpost/mining_west) -"yM" = ( +"yI" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, @@ -13380,24 +13355,24 @@ }, /turf/simulated/floor/tiled, /area/outpost/mining_west) -"yN" = ( +"yJ" = ( /obj/machinery/atmospherics/unary/vent_pump/on{ dir = 8 }, /turf/simulated/floor/tiled, /area/outpost/mining_west) -"yO" = ( +"yK" = ( /obj/machinery/atmospherics/pipe/simple/hidden, /turf/simulated/floor/tiled, /area/outpost/mining_west) -"yP" = ( +"yL" = ( /obj/machinery/atmospherics/portables_connector{ dir = 1 }, /obj/machinery/portable_atmospherics/canister/air/airlock, /turf/simulated/floor/tiled, /area/outpost/mining_west) -"yQ" = ( +"yM" = ( /obj/machinery/embedded_controller/radio/airlock/airlock_controller{ tag_airpump = "mining_west_outpost_pump"; tag_exterior_door = "mining_west_outpost_outer"; @@ -13415,7 +13390,7 @@ }, /turf/simulated/floor/tiled, /area/outpost/mining_west) -"yR" = ( +"yN" = ( /obj/structure/ore_box, /obj/machinery/airlock_sensor{ frequency = 1379; @@ -13434,7 +13409,7 @@ }, /turf/simulated/floor/tiled, /area/outpost/mining_west) -"yS" = ( +"yO" = ( /obj/structure/grille, /obj/structure/window/reinforced{ dir = 1 @@ -13455,13 +13430,13 @@ }, /turf/simulated/floor/plating, /area/outpost/mining_west) -"yT" = ( +"yP" = ( /obj/structure/ore_box, /turf/simulated/floor/tiled/airless{ icon_state = "asteroidfloor" }, /area/mine/explored) -"yU" = ( +"yQ" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/structure/cable{ @@ -13473,13 +13448,13 @@ icon_state = "asteroidfloor" }, /area/mine/explored) -"yV" = ( +"yR" = ( /obj/structure/table/standard, /obj/item/weapon/storage/box/donkpockets, /obj/effect/floor_decal/corner/red/diagonal, /turf/simulated/floor/tiled, /area/outpost/mining_main/dorms) -"yW" = ( +"yS" = ( /obj/structure/cable/blue{ d2 = 4; icon_state = "0-4" @@ -13492,7 +13467,7 @@ /obj/effect/floor_decal/corner/red/diagonal, /turf/simulated/floor/tiled, /area/outpost/mining_main/dorms) -"yX" = ( +"yT" = ( /obj/structure/cable/blue{ d1 = 4; d2 = 8; @@ -13505,7 +13480,7 @@ /obj/effect/floor_decal/corner/red/diagonal, /turf/simulated/floor/tiled, /area/outpost/mining_main/dorms) -"yY" = ( +"yU" = ( /obj/item/device/radio/intercom{ name = "Station Intercom (General)"; pixel_y = -29 @@ -13518,7 +13493,7 @@ /obj/effect/floor_decal/corner/red/diagonal, /turf/simulated/floor/tiled, /area/outpost/mining_main/dorms) -"yZ" = ( +"yV" = ( /obj/item/weapon/cigbutt, /obj/structure/cable/blue{ d1 = 4; @@ -13531,7 +13506,7 @@ /obj/effect/floor_decal/corner/red/diagonal, /turf/simulated/floor/tiled, /area/outpost/mining_main/dorms) -"za" = ( +"yW" = ( /obj/structure/cable/blue{ d1 = 4; d2 = 8; @@ -13546,7 +13521,7 @@ /obj/effect/floor_decal/corner/red/diagonal, /turf/simulated/floor/tiled, /area/outpost/mining_main/dorms) -"zb" = ( +"yX" = ( /obj/machinery/alarm{ pixel_y = 24 }, @@ -13563,7 +13538,7 @@ }, /turf/simulated/floor/tiled, /area/outpost/mining_main/dorms) -"zc" = ( +"yY" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, @@ -13577,7 +13552,7 @@ }, /turf/simulated/floor/tiled, /area/outpost/mining_main/dorms) -"zd" = ( +"yZ" = ( /obj/machinery/atmospherics/pipe/manifold/hidden/supply{ dir = 1 }, @@ -13591,7 +13566,7 @@ }, /turf/simulated/floor/tiled, /area/outpost/mining_main/dorms) -"ze" = ( +"za" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, @@ -13600,7 +13575,7 @@ }, /turf/simulated/floor/tiled, /area/outpost/mining_main/dorms) -"zf" = ( +"zb" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 9; pixel_y = 0 @@ -13610,19 +13585,19 @@ }, /turf/simulated/floor/tiled, /area/outpost/mining_main/dorms) -"zg" = ( +"zc" = ( /obj/machinery/camera/network/mining{ c_tag = "Mining Outpost Storage Room"; dir = 1 }, /turf/simulated/floor/tiled, /area/outpost/mining_main/west_hall) -"zh" = ( +"zd" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/tiled, /area/outpost/mining_main/west_hall) -"zi" = ( +"ze" = ( /obj/machinery/alarm{ dir = 1; icon_state = "alarm0"; @@ -13632,7 +13607,7 @@ /obj/item/weapon/rig/industrial/equipped, /turf/simulated/floor/tiled, /area/outpost/mining_main/west_hall) -"zj" = ( +"zf" = ( /obj/structure/grille, /obj/structure/window/reinforced{ dir = 8 @@ -13646,10 +13621,10 @@ }, /turf/simulated/floor/plating, /area/outpost/mining_main/west_hall) -"zk" = ( +"zg" = ( /turf/simulated/wall, /area/outpost/mining_main/east_hall) -"zl" = ( +"zh" = ( /obj/structure/grille, /obj/structure/window/reinforced, /obj/structure/window/reinforced{ @@ -13663,7 +13638,7 @@ }, /turf/simulated/floor/plating, /area/outpost/mining_main/east_hall) -"zm" = ( +"zi" = ( /obj/structure/grille, /obj/structure/window/reinforced, /obj/structure/window/reinforced{ @@ -13677,7 +13652,7 @@ }, /turf/simulated/floor/plating, /area/outpost/mining_main/east_hall) -"zn" = ( +"zj" = ( /obj/machinery/alarm{ dir = 4; pixel_x = -23; @@ -13693,16 +13668,16 @@ }, /turf/simulated/floor/tiled, /area/outpost/mining_main/eva) -"zo" = ( +"zk" = ( /turf/simulated/floor/tiled, /area/outpost/mining_main/eva) -"zp" = ( +"zl" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 6 }, /turf/simulated/floor/tiled, /area/outpost/mining_main/eva) -"zq" = ( +"zm" = ( /obj/machinery/light_switch{ pixel_x = 25; pixel_y = -9 @@ -13717,7 +13692,7 @@ }, /turf/simulated/floor/tiled, /area/outpost/mining_main/eva) -"zr" = ( +"zn" = ( /obj/structure/cable{ d1 = 1; d2 = 2; @@ -13733,28 +13708,28 @@ icon_state = "asteroidfloor" }, /area/mine/explored) -"zs" = ( +"zo" = ( /obj/item/weapon/storage/toolbox/mechanical, /obj/structure/table/steel, /turf/simulated/floor/tiled, /area/outpost/mining_west) -"zt" = ( +"zp" = ( /obj/machinery/atmospherics/unary/vent_scrubber/on{ dir = 4 }, /turf/simulated/floor/tiled, /area/outpost/mining_west) -"zu" = ( +"zq" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 9 }, /turf/simulated/floor/tiled, /area/outpost/mining_west) -"zv" = ( +"zr" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /turf/simulated/floor/tiled, /area/outpost/mining_west) -"zw" = ( +"zs" = ( /obj/structure/cable{ d1 = 1; d2 = 2; @@ -13765,7 +13740,7 @@ }, /turf/simulated/floor/tiled, /area/outpost/mining_west) -"zx" = ( +"zt" = ( /obj/machinery/conveyor_switch{ id = "mining_west"; pixel_x = 5 @@ -13773,7 +13748,7 @@ /obj/machinery/atmospherics/pipe/simple/hidden, /turf/simulated/floor/tiled, /area/outpost/mining_west) -"zy" = ( +"zu" = ( /obj/structure/grille, /obj/structure/window/reinforced, /obj/structure/window/reinforced{ @@ -13787,7 +13762,7 @@ }, /turf/simulated/floor/plating, /area/outpost/mining_main/dorms) -"zz" = ( +"zv" = ( /obj/structure/grille, /obj/structure/window/reinforced, /obj/structure/window/reinforced{ @@ -13801,7 +13776,7 @@ }, /turf/simulated/floor/plating, /area/outpost/mining_main/dorms) -"zA" = ( +"zw" = ( /obj/machinery/door/airlock/glass{ name = "Crew Area"; req_access = list(48) @@ -13815,7 +13790,7 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/tiled, /area/outpost/mining_main/dorms) -"zB" = ( +"zx" = ( /obj/machinery/door/airlock/mining{ name = "Mining Station Storage"; req_access = list(48) @@ -13824,7 +13799,7 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/tiled, /area/outpost/mining_main/west_hall) -"zC" = ( +"zy" = ( /obj/structure/grille, /obj/structure/window/reinforced{ dir = 1 @@ -13838,7 +13813,7 @@ }, /turf/simulated/floor/plating, /area/outpost/mining_main/west_hall) -"zD" = ( +"zz" = ( /obj/structure/grille, /obj/structure/window/reinforced{ dir = 1 @@ -13851,7 +13826,7 @@ }, /turf/simulated/floor/plating, /area/outpost/mining_main/west_hall) -"zE" = ( +"zA" = ( /obj/structure/grille, /obj/structure/window/reinforced{ dir = 1 @@ -13864,7 +13839,7 @@ }, /turf/simulated/floor/plating, /area/outpost/mining_main/east_hall) -"zF" = ( +"zB" = ( /obj/machinery/alarm{ pixel_y = 24 }, @@ -13880,7 +13855,7 @@ /obj/structure/table/steel, /turf/simulated/floor/tiled, /area/outpost/mining_main/east_hall) -"zG" = ( +"zC" = ( /obj/item/weapon/storage/backpack/satchel, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 6 @@ -13891,7 +13866,7 @@ /obj/structure/table/steel, /turf/simulated/floor/tiled, /area/outpost/mining_main/east_hall) -"zH" = ( +"zD" = ( /obj/item/weapon/storage/belt/utility, /obj/item/weapon/pickaxe, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ @@ -13903,7 +13878,7 @@ /obj/structure/table/steel, /turf/simulated/floor/tiled, /area/outpost/mining_main/east_hall) -"zI" = ( +"zE" = ( /obj/structure/grille, /obj/structure/window/reinforced, /obj/structure/window/reinforced{ @@ -13927,7 +13902,7 @@ }, /turf/simulated/floor/plating, /area/outpost/mining_main/eva) -"zJ" = ( +"zF" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, @@ -13936,7 +13911,7 @@ }, /turf/simulated/floor/tiled, /area/outpost/mining_main/eva) -"zK" = ( +"zG" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, @@ -13945,14 +13920,14 @@ }, /turf/simulated/floor/tiled, /area/outpost/mining_main/eva) -"zL" = ( +"zH" = ( /obj/structure/dispenser/oxygen, /obj/machinery/atmospherics/unary/vent_pump/on{ dir = 8 }, /turf/simulated/floor/tiled, /area/outpost/mining_main/eva) -"zM" = ( +"zI" = ( /obj/structure/grille, /obj/structure/window/reinforced, /obj/structure/window/reinforced{ @@ -13969,7 +13944,7 @@ }, /turf/simulated/floor/plating, /area/outpost/mining_main/eva) -"zN" = ( +"zJ" = ( /obj/machinery/light/small{ dir = 1 }, @@ -13983,7 +13958,7 @@ }, /turf/simulated/floor/tiled, /area/outpost/mining_main/eva) -"zO" = ( +"zK" = ( /obj/machinery/atmospherics/unary/vent_pump/high_volume{ dir = 2; frequency = 1379; @@ -13992,7 +13967,7 @@ /obj/structure/closet/walllocker/emerglocker/north, /turf/simulated/floor/tiled, /area/outpost/mining_main/eva) -"zP" = ( +"zL" = ( /obj/structure/grille, /obj/structure/window/reinforced{ dir = 1 @@ -14009,30 +13984,30 @@ }, /turf/simulated/floor/plating, /area/outpost/mining_main/eva) -"zQ" = ( +"zM" = ( /obj/structure/reagent_dispensers/fueltank, /turf/simulated/floor/tiled, /area/outpost/mining_west) -"zR" = ( +"zN" = ( /obj/item/device/radio/intercom{ name = "Station Intercom (General)"; pixel_y = -29 }, /turf/simulated/floor/tiled, /area/outpost/mining_west) -"zS" = ( +"zO" = ( /obj/structure/bed/chair{ dir = 1 }, /turf/simulated/floor/tiled, /area/outpost/mining_west) -"zT" = ( +"zP" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 5 }, /turf/simulated/floor/tiled, /area/outpost/mining_west) -"zU" = ( +"zQ" = ( /obj/machinery/power/apc{ dir = 2; name = "south bump"; @@ -14048,21 +14023,21 @@ }, /turf/simulated/floor/tiled, /area/outpost/mining_west) -"zV" = ( +"zR" = ( /obj/machinery/atmospherics/binary/pump/on{ dir = 4; target_pressure = 200 }, /turf/simulated/floor/tiled, /area/outpost/mining_west) -"zW" = ( +"zS" = ( /obj/machinery/atmospherics/pipe/simple/hidden{ dir = 9; icon_state = "intact" }, /turf/simulated/floor/tiled, /area/outpost/mining_west) -"zX" = ( +"zT" = ( /obj/machinery/alarm{ dir = 1; icon_state = "alarm0"; @@ -14078,7 +14053,7 @@ }, /turf/simulated/floor/tiled, /area/outpost/mining_west) -"zY" = ( +"zU" = ( /obj/machinery/mineral/input, /obj/machinery/conveyor{ backwards = 2; @@ -14088,11 +14063,11 @@ }, /turf/simulated/floor/tiled, /area/outpost/mining_west) -"zZ" = ( +"zV" = ( /obj/machinery/mineral/unloading_machine, /turf/simulated/floor/tiled, /area/outpost/mining_west) -"Aa" = ( +"zW" = ( /obj/machinery/conveyor{ dir = 8; id = "mining_west" @@ -14100,7 +14075,7 @@ /obj/machinery/mineral/output, /turf/simulated/floor/tiled, /area/outpost/mining_west) -"Ab" = ( +"zX" = ( /obj/structure/disposalpipe/trunk{ dir = 4 }, @@ -14109,7 +14084,7 @@ }, /turf/simulated/floor/tiled, /area/outpost/mining_west) -"Ac" = ( +"zY" = ( /obj/structure/grille, /obj/structure/window/reinforced, /obj/structure/window/reinforced{ @@ -14129,7 +14104,7 @@ }, /turf/simulated/floor/plating, /area/outpost/mining_west) -"Ad" = ( +"zZ" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, @@ -14148,13 +14123,13 @@ icon_state = "asteroidfloor" }, /area/mine/explored) -"Ae" = ( +"Aa" = ( /obj/structure/toilet{ dir = 4 }, /turf/simulated/floor/tiled/freezer, /area/outpost/mining_main/west_hall) -"Af" = ( +"Ab" = ( /obj/structure/sink{ pixel_y = 30 }, @@ -14164,13 +14139,13 @@ }, /turf/simulated/floor/tiled/freezer, /area/outpost/mining_main/west_hall) -"Ag" = ( +"Ac" = ( /obj/machinery/door/airlock{ name = "Toilet" }, /turf/simulated/floor/tiled/freezer, /area/outpost/mining_main/west_hall) -"Ah" = ( +"Ad" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/structure/cable/blue{ d1 = 1; @@ -14180,13 +14155,13 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/tiled, /area/outpost/mining_main/west_hall) -"Ai" = ( +"Ae" = ( /obj/machinery/alarm{ pixel_y = 24 }, /turf/simulated/floor/tiled, /area/outpost/mining_main/west_hall) -"Aj" = ( +"Af" = ( /obj/machinery/power/apc{ dir = 1; name = "north bump"; @@ -14199,14 +14174,14 @@ }, /turf/simulated/floor/tiled, /area/outpost/mining_main/west_hall) -"Ak" = ( +"Ag" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 6 }, /obj/machinery/mech_recharger, /turf/simulated/floor/tiled, /area/outpost/mining_main/west_hall) -"Al" = ( +"Ah" = ( /obj/machinery/status_display{ layer = 4; pixel_x = 0; @@ -14217,7 +14192,7 @@ }, /turf/simulated/floor/tiled, /area/outpost/mining_main/west_hall) -"Am" = ( +"Ai" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/machinery/atmospherics/binary/pump/on{ @@ -14226,7 +14201,7 @@ }, /turf/simulated/floor/tiled, /area/outpost/mining_main/west_hall) -"An" = ( +"Aj" = ( /obj/machinery/camera/network/mining{ c_tag = "Mining Outpost Crew Area Hallway" }, @@ -14236,19 +14211,19 @@ }, /turf/simulated/floor/tiled, /area/outpost/mining_main/west_hall) -"Ao" = ( +"Ak" = ( /obj/machinery/atmospherics/portables_connector, /obj/machinery/portable_atmospherics/canister/air/airlock, /turf/simulated/floor/tiled, /area/outpost/mining_main/west_hall) -"Ap" = ( +"Al" = ( /obj/effect/floor_decal/industrial/warning{ icon_state = "warning"; dir = 5 }, /turf/simulated/floor/tiled, /area/outpost/mining_main/west_hall) -"Aq" = ( +"Am" = ( /obj/structure/grille, /obj/structure/window/reinforced{ dir = 8 @@ -14259,12 +14234,12 @@ }, /turf/simulated/floor/plating, /area/outpost/mining_main/west_hall) -"Ar" = ( +"An" = ( /obj/structure/window/reinforced, /obj/structure/lattice, /turf/template_noop, /area/template_noop) -"As" = ( +"Ao" = ( /obj/structure/grille, /obj/structure/window/reinforced, /obj/structure/window/reinforced{ @@ -14275,7 +14250,7 @@ }, /turf/simulated/floor/plating, /area/outpost/mining_main/east_hall) -"At" = ( +"Ap" = ( /obj/structure/grille, /obj/structure/window/reinforced, /obj/structure/window/reinforced{ @@ -14286,17 +14261,17 @@ }, /turf/simulated/floor/plating, /area/outpost/mining_main/east_hall) -"Au" = ( +"Aq" = ( /obj/effect/floor_decal/industrial/warning{ icon_state = "warning"; dir = 9 }, /turf/simulated/floor/tiled, /area/outpost/mining_main/east_hall) -"Av" = ( +"Ar" = ( /turf/simulated/floor/tiled, /area/outpost/mining_main/east_hall) -"Aw" = ( +"As" = ( /obj/machinery/atmospherics/pipe/simple/hidden{ dir = 6 }, @@ -14309,7 +14284,7 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/tiled, /area/outpost/mining_main/east_hall) -"Ax" = ( +"At" = ( /obj/structure/cable/blue{ d1 = 4; d2 = 8; @@ -14320,7 +14295,7 @@ }, /turf/simulated/floor/tiled, /area/outpost/mining_main/east_hall) -"Ay" = ( +"Au" = ( /obj/structure/disposalpipe/segment, /obj/machinery/door/airlock/glass_mining{ name = "Mining Station EVA"; @@ -14336,7 +14311,7 @@ }, /turf/simulated/floor/tiled, /area/outpost/mining_main/eva) -"Az" = ( +"Av" = ( /obj/machinery/atmospherics/pipe/simple/hidden{ dir = 4 }, @@ -14347,13 +14322,13 @@ }, /turf/simulated/floor/tiled, /area/outpost/mining_main/eva) -"AA" = ( +"Aw" = ( /obj/machinery/atmospherics/pipe/simple/hidden{ dir = 4 }, /turf/simulated/floor/tiled, /area/outpost/mining_main/eva) -"AB" = ( +"Ax" = ( /obj/machinery/access_button{ command = "cycle_interior"; frequency = 1379; @@ -14367,7 +14342,7 @@ }, /turf/simulated/floor/tiled, /area/outpost/mining_main/eva) -"AC" = ( +"Ay" = ( /obj/machinery/door/firedoor{ dir = 2 }, @@ -14383,18 +14358,18 @@ }, /turf/simulated/floor/tiled, /area/outpost/mining_main/eva) -"AD" = ( +"Az" = ( /obj/machinery/atmospherics/pipe/manifold4w/hidden, /turf/simulated/floor/tiled, /area/outpost/mining_main/eva) -"AE" = ( +"AA" = ( /obj/machinery/atmospherics/pipe/manifold/hidden{ dir = 4; icon_state = "map" }, /turf/simulated/floor/tiled, /area/outpost/mining_main/eva) -"AF" = ( +"AB" = ( /obj/machinery/door/firedoor{ dir = 2 }, @@ -14408,7 +14383,7 @@ }, /turf/simulated/floor/tiled, /area/outpost/mining_main/eva) -"AG" = ( +"AC" = ( /obj/machinery/access_button{ command = "cycle_exterior"; frequency = 1379; @@ -14432,7 +14407,7 @@ icon_state = "asteroidfloor" }, /area/mine/explored) -"AH" = ( +"AD" = ( /obj/machinery/conveyor{ backwards = 2; dir = 2; @@ -14442,7 +14417,7 @@ /obj/structure/plasticflaps/mining, /turf/simulated/floor/tiled, /area/outpost/mining_west) -"AI" = ( +"AE" = ( /obj/machinery/light{ icon_state = "tube1"; dir = 8 @@ -14452,7 +14427,7 @@ }, /turf/simulated/floor/tiled, /area/outpost/mining_main/west_hall) -"AJ" = ( +"AF" = ( /obj/machinery/atmospherics/pipe/manifold/hidden/supply{ dir = 1 }, @@ -14466,7 +14441,7 @@ }, /turf/simulated/floor/tiled, /area/outpost/mining_main/west_hall) -"AK" = ( +"AG" = ( /obj/machinery/atmospherics/pipe/manifold/hidden/supply, /obj/structure/cable/blue{ d1 = 4; @@ -14481,7 +14456,7 @@ /obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, /turf/simulated/floor/tiled, /area/outpost/mining_main/west_hall) -"AL" = ( +"AH" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, @@ -14495,7 +14470,7 @@ }, /turf/simulated/floor/tiled, /area/outpost/mining_main/west_hall) -"AM" = ( +"AI" = ( /obj/structure/cable/blue{ d1 = 1; d2 = 2; @@ -14519,7 +14494,7 @@ }, /turf/simulated/floor/tiled, /area/outpost/mining_main/west_hall) -"AN" = ( +"AJ" = ( /obj/structure/cable/blue{ d1 = 4; d2 = 8; @@ -14531,7 +14506,7 @@ /obj/machinery/atmospherics/pipe/manifold/hidden/supply, /turf/simulated/floor/tiled, /area/outpost/mining_main/west_hall) -"AO" = ( +"AK" = ( /obj/machinery/atmospherics/pipe/manifold4w/hidden/supply, /obj/structure/cable/blue{ d1 = 4; @@ -14541,7 +14516,7 @@ /obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, /turf/simulated/floor/tiled, /area/outpost/mining_main/west_hall) -"AP" = ( +"AL" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, @@ -14559,7 +14534,7 @@ }, /turf/simulated/floor/tiled, /area/outpost/mining_main/west_hall) -"AQ" = ( +"AM" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, @@ -14574,7 +14549,7 @@ /obj/machinery/atmospherics/pipe/manifold4w/hidden, /turf/simulated/floor/tiled, /area/outpost/mining_main/west_hall) -"AR" = ( +"AN" = ( /obj/machinery/atmospherics/pipe/simple/hidden{ dir = 9; icon_state = "intact" @@ -14592,7 +14567,7 @@ }, /turf/simulated/floor/tiled, /area/outpost/mining_main/west_hall) -"AS" = ( +"AO" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, @@ -14610,7 +14585,7 @@ }, /turf/simulated/floor/tiled, /area/outpost/mining_main/west_hall) -"AT" = ( +"AP" = ( /obj/machinery/door/airlock/glass_mining{ name = "Mining Station Bridge"; req_access = list(48) @@ -14628,7 +14603,7 @@ }, /turf/simulated/floor/tiled, /area/outpost/mining_main/west_hall) -"AU" = ( +"AQ" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, @@ -14645,7 +14620,7 @@ }, /turf/simulated/floor/tiled, /area/outpost/mining_main/west_hall) -"AV" = ( +"AR" = ( /obj/structure/window/reinforced{ dir = 1 }, @@ -14663,7 +14638,7 @@ }, /turf/simulated/floor/tiled, /area/outpost/mining_main/east_hall) -"AW" = ( +"AS" = ( /obj/structure/window/reinforced{ dir = 1 }, @@ -14682,7 +14657,7 @@ /obj/machinery/light, /turf/simulated/floor/tiled, /area/outpost/mining_main/east_hall) -"AX" = ( +"AT" = ( /obj/structure/window/reinforced{ dir = 1 }, @@ -14703,7 +14678,7 @@ }, /turf/simulated/floor/tiled, /area/outpost/mining_main/east_hall) -"AY" = ( +"AU" = ( /obj/machinery/door/airlock/glass_mining{ name = "Mining Station Bridge"; req_access = list(48) @@ -14721,7 +14696,7 @@ }, /turf/simulated/floor/tiled, /area/outpost/mining_main/east_hall) -"AZ" = ( +"AV" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, @@ -14738,7 +14713,7 @@ }, /turf/simulated/floor/tiled, /area/outpost/mining_main/east_hall) -"Ba" = ( +"AW" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, @@ -14756,7 +14731,7 @@ }, /turf/simulated/floor/tiled, /area/outpost/mining_main/east_hall) -"Bb" = ( +"AX" = ( /obj/structure/cable/blue{ d1 = 4; d2 = 8; @@ -14770,7 +14745,7 @@ }, /turf/simulated/floor/tiled, /area/outpost/mining_main/east_hall) -"Bc" = ( +"AY" = ( /obj/machinery/atmospherics/pipe/simple/hidden, /obj/machinery/atmospherics/pipe/manifold/hidden/supply{ dir = 4 @@ -14790,7 +14765,7 @@ }, /turf/simulated/floor/tiled, /area/outpost/mining_main/east_hall) -"Bd" = ( +"AZ" = ( /obj/structure/grille, /obj/structure/window/reinforced, /obj/structure/window/reinforced{ @@ -14808,7 +14783,7 @@ }, /turf/simulated/floor/plating, /area/outpost/mining_main/eva) -"Be" = ( +"Ba" = ( /obj/machinery/power/apc{ dir = 2; name = "south bump"; @@ -14818,7 +14793,7 @@ /obj/machinery/portable_atmospherics/canister/oxygen, /turf/simulated/floor/tiled, /area/outpost/mining_main/eva) -"Bf" = ( +"Bb" = ( /obj/machinery/embedded_controller/radio/airlock/airlock_controller{ tag_airpump = "mining_east_pump"; tag_exterior_door = "mining_east_outer"; @@ -14836,7 +14811,7 @@ }, /turf/simulated/floor/tiled, /area/outpost/mining_main/eva) -"Bg" = ( +"Bc" = ( /obj/structure/ore_box, /obj/machinery/airlock_sensor{ frequency = 1379; @@ -14851,7 +14826,7 @@ }, /turf/simulated/floor/tiled, /area/outpost/mining_main/eva) -"Bh" = ( +"Bd" = ( /obj/structure/grille, /obj/structure/window/reinforced{ dir = 1 @@ -14872,7 +14847,7 @@ }, /turf/simulated/floor/plating, /area/outpost/mining_main/eva) -"Bi" = ( +"Be" = ( /obj/structure/cable{ d1 = 1; d2 = 2; @@ -14884,7 +14859,7 @@ icon_state = "asteroidfloor" }, /area/mine/explored) -"Bj" = ( +"Bf" = ( /obj/machinery/conveyor_switch{ id = "mining_west"; pixel_y = 10 @@ -14902,7 +14877,7 @@ icon_state = "asteroidfloor" }, /area/mine/explored) -"Bk" = ( +"Bg" = ( /obj/machinery/light/small{ dir = 1 }, @@ -14910,13 +14885,13 @@ icon_state = "asteroidfloor" }, /area/mine/explored) -"Bl" = ( +"Bh" = ( /obj/machinery/atmospherics/unary/vent_scrubber/on{ dir = 4 }, /turf/simulated/floor/tiled, /area/outpost/mining_main/west_hall) -"Bm" = ( +"Bi" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/structure/cable/blue{ d1 = 1; @@ -14928,7 +14903,7 @@ }, /turf/simulated/floor/tiled, /area/outpost/mining_main/west_hall) -"Bn" = ( +"Bj" = ( /obj/structure/cable/blue{ d1 = 1; d2 = 2; @@ -14938,23 +14913,23 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/tiled, /area/outpost/mining_main/west_hall) -"Bo" = ( +"Bk" = ( /obj/machinery/light, /turf/simulated/floor/tiled, /area/outpost/mining_main/west_hall) -"Bp" = ( +"Bl" = ( /obj/machinery/atmospherics/unary/vent_pump/on{ dir = 1 }, /turf/simulated/floor/tiled, /area/outpost/mining_main/west_hall) -"Bq" = ( +"Bm" = ( /obj/machinery/atmospherics/unary/vent_scrubber/on{ dir = 1 }, /turf/simulated/floor/tiled, /area/outpost/mining_main/west_hall) -"Br" = ( +"Bn" = ( /obj/machinery/access_button{ command = "cycle_interior"; frequency = 1379; @@ -14966,7 +14941,7 @@ /obj/machinery/atmospherics/pipe/simple/hidden, /turf/simulated/floor/tiled, /area/outpost/mining_main/west_hall) -"Bs" = ( +"Bo" = ( /obj/machinery/portable_atmospherics/canister/oxygen, /obj/effect/floor_decal/industrial/warning{ icon_state = "warning"; @@ -14974,7 +14949,7 @@ }, /turf/simulated/floor/tiled, /area/outpost/mining_main/west_hall) -"Bt" = ( +"Bp" = ( /obj/structure/grille, /obj/structure/window/reinforced{ dir = 1 @@ -14987,14 +14962,14 @@ }, /turf/simulated/floor/plating, /area/outpost/mining_main/west_hall) -"Bu" = ( +"Bq" = ( /obj/structure/window/reinforced{ dir = 1 }, /obj/structure/lattice, /turf/template_noop, /area/template_noop) -"Bv" = ( +"Br" = ( /obj/structure/grille, /obj/structure/window/reinforced{ dir = 4 @@ -15007,18 +14982,18 @@ }, /turf/simulated/floor/plating, /area/outpost/mining_main/east_hall) -"Bw" = ( +"Bs" = ( /obj/effect/floor_decal/industrial/warning{ icon_state = "warning"; dir = 10 }, /turf/simulated/floor/tiled, /area/outpost/mining_main/east_hall) -"Bx" = ( +"Bt" = ( /obj/machinery/atmospherics/pipe/simple/hidden/universal, /turf/simulated/floor/tiled, /area/outpost/mining_main/east_hall) -"By" = ( +"Bu" = ( /obj/machinery/atmospherics/pipe/simple/hidden, /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/structure/cable/blue{ @@ -15029,7 +15004,7 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/tiled, /area/outpost/mining_main/east_hall) -"Bz" = ( +"Bv" = ( /obj/structure/cable{ d1 = 1; d2 = 2; @@ -15048,7 +15023,7 @@ icon_state = "asteroidfloor" }, /area/mine/explored) -"BA" = ( +"Bw" = ( /obj/machinery/conveyor_switch{ id = "mining_external" }, @@ -15057,14 +15032,14 @@ icon_state = "asteroidfloor" }, /area/mine/explored) -"BB" = ( +"Bx" = ( /obj/structure/ore_box, /obj/effect/floor_decal/industrial/warning/dust, /turf/simulated/floor/tiled/airless{ icon_state = "asteroidfloor" }, /area/mine/explored) -"BC" = ( +"By" = ( /obj/structure/ore_box, /obj/effect/floor_decal/industrial/warning/dust{ icon_state = "warning_dust"; @@ -15074,10 +15049,10 @@ icon_state = "asteroidfloor" }, /area/mine/explored) -"BD" = ( +"Bz" = ( /turf/simulated/wall, /area/outpost/mining_main/medbay) -"BE" = ( +"BA" = ( /obj/structure/grille, /obj/structure/window/reinforced{ dir = 1 @@ -15094,7 +15069,7 @@ }, /turf/simulated/floor/plating, /area/outpost/mining_main/medbay) -"BF" = ( +"BB" = ( /obj/machinery/door/airlock/glass_medical{ name = "Infirmary" }, @@ -15107,10 +15082,10 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/tiled/white, /area/outpost/mining_main/medbay) -"BG" = ( +"BC" = ( /turf/simulated/wall, /area/outpost/mining_main/maintenance) -"BH" = ( +"BD" = ( /obj/structure/sign/securearea{ desc = "A warning sign which reads 'HIGH VOLTAGE'"; icon_state = "shock"; @@ -15118,7 +15093,7 @@ }, /turf/simulated/wall, /area/outpost/mining_main/maintenance) -"BI" = ( +"BE" = ( /obj/machinery/door/airlock/maintenance{ name = "Mining Station Maintenance"; req_access = list(48) @@ -15132,7 +15107,7 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/plating, /area/outpost/mining_main/maintenance) -"BJ" = ( +"BF" = ( /obj/structure/grille, /obj/structure/window/reinforced{ dir = 1 @@ -15149,7 +15124,7 @@ }, /turf/simulated/floor/plating, /area/outpost/mining_main/west_hall) -"BK" = ( +"BG" = ( /obj/machinery/door/firedoor{ dir = 2 }, @@ -15163,7 +15138,7 @@ /obj/machinery/atmospherics/pipe/simple/hidden, /turf/simulated/floor/tiled, /area/outpost/mining_main/west_hall) -"BL" = ( +"BH" = ( /obj/structure/grille, /obj/structure/window/reinforced{ dir = 4 @@ -15177,7 +15152,7 @@ }, /turf/simulated/floor/plating, /area/outpost/mining_main/west_hall) -"BM" = ( +"BI" = ( /obj/structure/grille, /obj/structure/window/reinforced, /obj/structure/window/reinforced{ @@ -15188,14 +15163,14 @@ }, /turf/simulated/floor/plating, /area/outpost/mining_main/east_hall) -"BN" = ( +"BJ" = ( /obj/machinery/atmospherics/binary/pump/on{ dir = 2; target_pressure = 200 }, /turf/simulated/floor/tiled, /area/outpost/mining_main/east_hall) -"BO" = ( +"BK" = ( /obj/structure/disposalpipe/segment{ dir = 4; icon_state = "pipe-c" @@ -15213,7 +15188,7 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/tiled, /area/outpost/mining_main/east_hall) -"BP" = ( +"BL" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, @@ -15223,14 +15198,14 @@ /obj/machinery/portable_atmospherics/canister/air/airlock, /turf/simulated/floor/tiled, /area/outpost/mining_main/east_hall) -"BQ" = ( +"BM" = ( /obj/structure/disposalpipe/junction{ icon_state = "pipe-j2"; dir = 4 }, /turf/simulated/wall, /area/outpost/mining_main/refinery) -"BR" = ( +"BN" = ( /obj/structure/disposaloutlet{ dir = 4 }, @@ -15239,21 +15214,21 @@ }, /turf/simulated/floor/tiled, /area/outpost/mining_main/refinery) -"BS" = ( +"BO" = ( /obj/machinery/conveyor{ dir = 4; id = "mining_internal" }, /turf/simulated/floor/tiled, /area/outpost/mining_main/refinery) -"BT" = ( +"BP" = ( /obj/machinery/conveyor{ dir = 9; id = "mining_internal" }, /turf/simulated/floor/tiled, /area/outpost/mining_main/refinery) -"BU" = ( +"BQ" = ( /obj/structure/window/reinforced, /obj/structure/window/reinforced{ dir = 4 @@ -15267,13 +15242,13 @@ /obj/structure/grille, /turf/simulated/floor/plating, /area/outpost/mining_main/refinery) -"BV" = ( +"BR" = ( /obj/machinery/mineral/unloading_machine{ icon_state = "unloader-corner" }, /turf/simulated/floor/tiled, /area/outpost/mining_main/refinery) -"BW" = ( +"BS" = ( /obj/machinery/conveyor{ dir = 4; id = "mining_external" @@ -15281,7 +15256,7 @@ /obj/machinery/mineral/input, /turf/simulated/floor/tiled, /area/outpost/mining_main/refinery) -"BX" = ( +"BT" = ( /obj/machinery/conveyor{ dir = 4; id = "mining_external" @@ -15289,7 +15264,7 @@ /obj/structure/plasticflaps/mining, /turf/simulated/floor/tiled, /area/outpost/mining_main/refinery) -"BY" = ( +"BU" = ( /obj/machinery/conveyor{ dir = 4; id = "mining_external" @@ -15307,7 +15282,7 @@ }, /turf/simulated/floor/tiled/airless, /area/mine/explored) -"BZ" = ( +"BV" = ( /obj/machinery/conveyor{ dir = 4; id = "mining_external" @@ -15318,7 +15293,7 @@ }, /turf/simulated/floor/tiled/airless, /area/mine/explored) -"Ca" = ( +"BW" = ( /obj/machinery/light/small{ dir = 8 }, @@ -15328,13 +15303,13 @@ }, /turf/simulated/floor/tiled/white, /area/outpost/mining_main/medbay) -"Cb" = ( +"BX" = ( /obj/machinery/atmospherics/unary/vent_scrubber/on{ dir = 4 }, /turf/simulated/floor/tiled/white, /area/outpost/mining_main/medbay) -"Cc" = ( +"BY" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/structure/cable/blue{ d1 = 1; @@ -15346,7 +15321,7 @@ }, /turf/simulated/floor/tiled/white, /area/outpost/mining_main/medbay) -"Cd" = ( +"BZ" = ( /obj/structure/cable/blue{ d2 = 8; icon_state = "0-8" @@ -15358,7 +15333,7 @@ }, /turf/simulated/floor/tiled/white, /area/outpost/mining_main/medbay) -"Ce" = ( +"Ca" = ( /obj/structure/cable/blue{ d2 = 4; icon_state = "0-4" @@ -15373,7 +15348,7 @@ }, /turf/simulated/floor/plating, /area/outpost/mining_main/maintenance) -"Cf" = ( +"Cb" = ( /obj/structure/cable/blue{ d2 = 8; icon_state = "0-8" @@ -15388,7 +15363,7 @@ }, /turf/simulated/floor/plating, /area/outpost/mining_main/maintenance) -"Cg" = ( +"Cc" = ( /obj/structure/cable/blue{ d1 = 1; d2 = 8; @@ -15407,7 +15382,7 @@ }, /turf/simulated/floor/plating, /area/outpost/mining_main/maintenance) -"Ch" = ( +"Cd" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, @@ -15422,7 +15397,7 @@ /obj/machinery/portable_atmospherics/powered/pump/filled, /turf/simulated/floor/plating, /area/outpost/mining_main/maintenance) -"Ci" = ( +"Ce" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 10 }, @@ -15442,7 +15417,7 @@ /obj/machinery/portable_atmospherics/powered/pump/filled, /turf/simulated/floor/plating, /area/outpost/mining_main/maintenance) -"Cj" = ( +"Cf" = ( /obj/machinery/atmospherics/unary/vent_pump/high_volume{ dir = 4; frequency = 1379; @@ -15451,11 +15426,11 @@ /obj/structure/closet/walllocker/emerglocker/west, /turf/simulated/floor/tiled, /area/outpost/mining_main/west_hall) -"Ck" = ( +"Cg" = ( /obj/machinery/atmospherics/pipe/manifold4w/hidden, /turf/simulated/floor/tiled, /area/outpost/mining_main/west_hall) -"Cl" = ( +"Ch" = ( /obj/machinery/light/small{ dir = 4 }, @@ -15482,7 +15457,7 @@ }, /turf/simulated/floor/tiled, /area/outpost/mining_main/west_hall) -"Cm" = ( +"Ci" = ( /obj/structure/sign/securearea{ desc = "A warning sign which reads 'KEEP CLEAR OF DOCKING AREA'."; name = "KEEP CLEAR: DOCKING AREA"; @@ -15490,7 +15465,7 @@ }, /turf/simulated/wall, /area/template_noop) -"Cn" = ( +"Cj" = ( /obj/machinery/status_display{ layer = 4; pixel_x = -32; @@ -15502,7 +15477,7 @@ }, /turf/simulated/floor/tiled, /area/outpost/mining_main/east_hall) -"Co" = ( +"Ck" = ( /obj/structure/disposalpipe/segment, /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/structure/cable/blue{ @@ -15514,7 +15489,7 @@ /obj/machinery/atmospherics/pipe/manifold/hidden, /turf/simulated/floor/tiled, /area/outpost/mining_main/east_hall) -"Cp" = ( +"Cl" = ( /obj/machinery/atmospherics/portables_connector{ dir = 8 }, @@ -15527,10 +15502,10 @@ }, /turf/simulated/floor/tiled, /area/outpost/mining_main/east_hall) -"Cq" = ( +"Cm" = ( /turf/simulated/wall, /area/outpost/mining_main/refinery) -"Cr" = ( +"Cn" = ( /obj/machinery/conveyor{ dir = 2; id = "mining_internal" @@ -15538,7 +15513,7 @@ /obj/structure/plasticflaps/mining, /turf/simulated/floor/tiled, /area/outpost/mining_main/refinery) -"Cs" = ( +"Co" = ( /obj/machinery/conveyor{ dir = 2; id = "mining_internal" @@ -15547,7 +15522,7 @@ /obj/structure/plasticflaps/mining, /turf/simulated/floor/tiled, /area/outpost/mining_main/refinery) -"Ct" = ( +"Cp" = ( /obj/machinery/light{ icon_state = "tube1"; dir = 8 @@ -15561,7 +15536,7 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/asteroid/ash, /area/mine/explored) -"Cu" = ( +"Cq" = ( /obj/machinery/sleeper{ dir = 4 }, @@ -15571,10 +15546,10 @@ }, /turf/simulated/floor/tiled/white, /area/outpost/mining_main/medbay) -"Cv" = ( +"Cr" = ( /turf/simulated/floor/tiled/white, /area/outpost/mining_main/medbay) -"Cw" = ( +"Cs" = ( /obj/machinery/atmospherics/unary/vent_pump/on{ dir = 1 }, @@ -15588,7 +15563,7 @@ }, /turf/simulated/floor/tiled/white, /area/outpost/mining_main/medbay) -"Cx" = ( +"Ct" = ( /obj/structure/table/standard, /obj/item/weapon/storage/firstaid/o2{ pixel_x = 2; @@ -15597,7 +15572,7 @@ /obj/item/weapon/storage/firstaid/regular, /turf/simulated/floor/tiled/white, /area/outpost/mining_main/medbay) -"Cy" = ( +"Cu" = ( /obj/machinery/power/terminal{ icon_state = "term"; dir = 1 @@ -15620,7 +15595,7 @@ }, /turf/simulated/floor/plating, /area/outpost/mining_main/maintenance) -"Cz" = ( +"Cv" = ( /obj/structure/cable{ d1 = 2; d2 = 8; @@ -15631,20 +15606,20 @@ }, /turf/simulated/floor/plating, /area/outpost/mining_main/maintenance) -"CA" = ( +"Cw" = ( /obj/machinery/atmospherics/valve/digital/open{ dir = 4 }, /turf/simulated/floor/plating, /area/outpost/mining_main/maintenance) -"CB" = ( +"Cx" = ( /obj/machinery/atmospherics/pipe/simple/visible/universal{ dir = 4 }, /obj/machinery/portable_atmospherics/canister/oxygen, /turf/simulated/floor/plating, /area/outpost/mining_main/maintenance) -"CC" = ( +"Cy" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 9 @@ -15656,7 +15631,7 @@ }, /turf/simulated/floor/plating, /area/outpost/mining_main/maintenance) -"CD" = ( +"Cz" = ( /obj/structure/ore_box, /obj/machinery/atmospherics/unary/vent_pump/high_volume{ dir = 4; @@ -15666,12 +15641,12 @@ /obj/effect/floor_decal/industrial/warning, /turf/simulated/floor/tiled, /area/outpost/mining_main/west_hall) -"CE" = ( +"CA" = ( /obj/machinery/atmospherics/pipe/manifold/hidden, /obj/effect/floor_decal/industrial/warning, /turf/simulated/floor/tiled, /area/outpost/mining_main/west_hall) -"CF" = ( +"CB" = ( /obj/structure/sign/securearea{ desc = "A warning sign which reads 'EXTERNAL AIRLOCK'"; icon_state = "space"; @@ -15688,10 +15663,10 @@ /obj/effect/floor_decal/industrial/warning, /turf/simulated/floor/tiled, /area/outpost/mining_main/west_hall) -"CG" = ( +"CC" = ( /turf/template_noop, /area/shuttle/mining/outpost) -"CH" = ( +"CD" = ( /obj/machinery/power/apc{ dir = 8; name = "west bump"; @@ -15703,7 +15678,7 @@ }, /turf/simulated/floor/tiled, /area/outpost/mining_main/east_hall) -"CI" = ( +"CE" = ( /obj/structure/disposalpipe/segment, /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/structure/cable/blue{ @@ -15719,7 +15694,7 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/tiled, /area/outpost/mining_main/east_hall) -"CJ" = ( +"CF" = ( /obj/machinery/mineral/input, /obj/machinery/door/firedoor{ dir = 2 @@ -15729,11 +15704,11 @@ }, /turf/simulated/floor/tiled, /area/outpost/mining_main/refinery) -"CK" = ( +"CG" = ( /obj/machinery/mineral/unloading_machine, /turf/simulated/floor/tiled, /area/outpost/mining_main/refinery) -"CL" = ( +"CH" = ( /obj/machinery/conveyor{ dir = 4; id = "mining_internal" @@ -15741,7 +15716,7 @@ /obj/machinery/mineral/output, /turf/simulated/floor/tiled, /area/outpost/mining_main/refinery) -"CM" = ( +"CI" = ( /obj/machinery/conveyor{ dir = 4; id = "mining_internal" @@ -15749,7 +15724,7 @@ /obj/structure/plasticflaps/mining, /turf/simulated/floor/tiled, /area/outpost/mining_main/refinery) -"CN" = ( +"CJ" = ( /obj/structure/cable{ d1 = 1; d2 = 2; @@ -15759,14 +15734,14 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/asteroid/ash, /area/mine/explored) -"CO" = ( +"CK" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 6 }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/plating, /area/outpost/mining_main/maintenance) -"CP" = ( +"CL" = ( /obj/structure/cable{ d1 = 1; d2 = 2; @@ -15777,21 +15752,21 @@ }, /turf/simulated/floor/plating, /area/outpost/mining_main/maintenance) -"CQ" = ( +"CM" = ( /obj/machinery/atmospherics/pipe/simple/visible/universal{ dir = 4 }, /obj/machinery/portable_atmospherics/canister/air, /turf/simulated/floor/plating, /area/outpost/mining_main/maintenance) -"CR" = ( +"CN" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 9 }, /obj/machinery/portable_atmospherics/canister/air, /turf/simulated/floor/plating, /area/outpost/mining_main/maintenance) -"CS" = ( +"CO" = ( /obj/structure/grille, /obj/structure/window/reinforced{ dir = 1 @@ -15812,7 +15787,7 @@ }, /turf/simulated/floor/plating, /area/outpost/mining_main/west_hall) -"CT" = ( +"CP" = ( /obj/machinery/door/firedoor{ dir = 2 }, @@ -15825,7 +15800,7 @@ }, /turf/simulated/floor/plating, /area/outpost/mining_main/west_hall) -"CU" = ( +"CQ" = ( /obj/structure/disposalpipe/segment, /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/structure/cable/blue{ @@ -15836,7 +15811,7 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/tiled, /area/outpost/mining_main/east_hall) -"CV" = ( +"CR" = ( /obj/machinery/conveyor_switch/oneway{ id = "mining_internal"; name = "mining conveyor" @@ -15850,7 +15825,7 @@ }, /turf/simulated/floor/tiled, /area/outpost/mining_main/east_hall) -"CW" = ( +"CS" = ( /obj/structure/window/reinforced{ dir = 8 }, @@ -15866,14 +15841,14 @@ }, /turf/simulated/floor/plating, /area/outpost/mining_main/refinery) -"CX" = ( +"CT" = ( /obj/machinery/conveyor{ dir = 2; id = "mining_internal" }, /turf/simulated/floor/tiled, /area/outpost/mining_main/refinery) -"CY" = ( +"CU" = ( /obj/structure/window/reinforced{ dir = 8 }, @@ -15894,7 +15869,7 @@ }, /turf/simulated/floor/plating, /area/outpost/mining_main/maintenance) -"CZ" = ( +"CV" = ( /obj/structure/grille, /obj/structure/window/reinforced, /obj/structure/window/reinforced{ @@ -15921,7 +15896,7 @@ }, /turf/simulated/floor/plating, /area/outpost/mining_main/maintenance) -"Da" = ( +"CW" = ( /obj/machinery/access_button{ command = "cycle_exterior"; frequency = 1379; @@ -15934,13 +15909,13 @@ icon_state = "asteroidfloor" }, /area/mine/explored) -"Db" = ( +"CX" = ( /obj/machinery/light{ dir = 1 }, /turf/simulated/floor/asteroid/ash, /area/mine/explored) -"Dc" = ( +"CY" = ( /obj/structure/grille, /obj/structure/window/reinforced, /obj/structure/window/reinforced{ @@ -15959,7 +15934,7 @@ }, /turf/simulated/floor/plating, /area/outpost/mining_main/east_hall) -"Dd" = ( +"CZ" = ( /obj/structure/grille, /obj/structure/window/reinforced, /obj/structure/window/reinforced{ @@ -15977,7 +15952,7 @@ }, /turf/simulated/floor/plating, /area/outpost/mining_main/east_hall) -"De" = ( +"Da" = ( /obj/structure/closet/emcloset, /obj/effect/floor_decal/industrial/warning{ icon_state = "warning"; @@ -15985,13 +15960,13 @@ }, /turf/simulated/floor/tiled, /area/outpost/mining_main/east_hall) -"Df" = ( +"Db" = ( /obj/machinery/atmospherics/unary/vent_pump/on{ dir = 4 }, /turf/simulated/floor/tiled, /area/outpost/mining_main/east_hall) -"Dg" = ( +"Dc" = ( /obj/structure/disposalpipe/segment, /obj/machinery/atmospherics/pipe/manifold4w/hidden/supply, /obj/structure/cable/blue{ @@ -16004,7 +15979,7 @@ }, /turf/simulated/floor/tiled, /area/outpost/mining_main/east_hall) -"Dh" = ( +"Dd" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, @@ -16013,7 +15988,7 @@ }, /turf/simulated/floor/tiled, /area/outpost/mining_main/east_hall) -"Di" = ( +"De" = ( /obj/structure/noticeboard{ pixel_y = 27 }, @@ -16026,7 +16001,7 @@ /obj/machinery/mineral/rigpress, /turf/simulated/floor/tiled, /area/outpost/mining_main/east_hall) -"Dj" = ( +"Df" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, @@ -16036,7 +16011,7 @@ /obj/machinery/mineral/equipment_vendor, /turf/simulated/floor/tiled, /area/outpost/mining_main/east_hall) -"Dk" = ( +"Dg" = ( /obj/structure/window/reinforced{ dir = 8 }, @@ -16051,7 +16026,7 @@ }, /turf/simulated/floor/tiled, /area/outpost/mining_main/refinery) -"Dl" = ( +"Dh" = ( /obj/structure/extinguisher_cabinet{ pixel_x = -5; pixel_y = 30 @@ -16064,7 +16039,7 @@ }, /turf/simulated/floor/tiled, /area/outpost/mining_main/refinery) -"Dm" = ( +"Di" = ( /obj/machinery/status_display{ layer = 4; pixel_x = 0; @@ -16078,7 +16053,7 @@ }, /turf/simulated/floor/tiled, /area/outpost/mining_main/refinery) -"Dn" = ( +"Dj" = ( /obj/structure/cable/blue{ d2 = 2; icon_state = "0-2" @@ -16091,7 +16066,7 @@ }, /turf/simulated/floor/tiled, /area/outpost/mining_main/refinery) -"Do" = ( +"Dk" = ( /obj/structure/window/reinforced{ dir = 8 }, @@ -16104,7 +16079,7 @@ }, /turf/simulated/floor/plating, /area/outpost/mining_main/refinery) -"Dp" = ( +"Dl" = ( /obj/structure/cable{ d1 = 1; d2 = 2; @@ -16120,7 +16095,7 @@ icon_state = "asteroidfloor" }, /area/mine/explored) -"Dq" = ( +"Dm" = ( /obj/machinery/door/airlock/external{ frequency = 1380; icon_state = "door_locked"; @@ -16131,7 +16106,7 @@ }, /turf/simulated/floor/plating, /area/outpost/mining_main/east_hall) -"Dr" = ( +"Dn" = ( /obj/machinery/embedded_controller/radio/airlock/docking_port{ frequency = 1380; id_tag = "mining_outpost_airlock"; @@ -16156,7 +16131,7 @@ }, /turf/simulated/floor/tiled/airless, /area/outpost/mining_main/east_hall) -"Ds" = ( +"Do" = ( /obj/machinery/door/airlock/external{ frequency = 1380; icon_state = "door_locked"; @@ -16170,7 +16145,7 @@ }, /turf/simulated/floor/tiled/airless, /area/outpost/mining_main/east_hall) -"Dt" = ( +"Dp" = ( /obj/machinery/access_button{ command = "cycle_interior"; frequency = 1380; @@ -16186,13 +16161,13 @@ }, /turf/simulated/floor/tiled/airless, /area/outpost/mining_main/east_hall) -"Du" = ( +"Dq" = ( /obj/machinery/atmospherics/unary/vent_scrubber/on{ dir = 4 }, /turf/simulated/floor/tiled, /area/outpost/mining_main/east_hall) -"Dv" = ( +"Dr" = ( /obj/structure/disposalpipe/segment, /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/structure/cable/blue{ @@ -16205,23 +16180,23 @@ }, /turf/simulated/floor/tiled, /area/outpost/mining_main/east_hall) -"Dw" = ( +"Ds" = ( /obj/machinery/door/window/westright{ name = "Production Area"; req_access = list(48) }, /turf/simulated/floor/tiled, /area/outpost/mining_main/refinery) -"Dx" = ( +"Dt" = ( /obj/machinery/atmospherics/unary/vent_scrubber/on{ dir = 1 }, /turf/simulated/floor/tiled, /area/outpost/mining_main/refinery) -"Dy" = ( +"Du" = ( /turf/simulated/floor/tiled, /area/outpost/mining_main/refinery) -"Dz" = ( +"Dv" = ( /obj/structure/cable/blue{ d1 = 1; d2 = 2; @@ -16233,7 +16208,7 @@ }, /turf/simulated/floor/tiled, /area/outpost/mining_main/refinery) -"DA" = ( +"Dw" = ( /obj/structure/window/reinforced{ dir = 8 }, @@ -16247,12 +16222,12 @@ }, /turf/simulated/floor/plating, /area/outpost/mining_main/refinery) -"DB" = ( +"Dx" = ( /obj/machinery/mineral/input, /obj/effect/floor_decal/industrial/loading, /turf/simulated/floor/tiled, /area/outpost/mining_main/refinery) -"DC" = ( +"Dy" = ( /obj/structure/cable{ d1 = 1; d2 = 2; @@ -16268,7 +16243,7 @@ icon_state = "asteroidfloor" }, /area/mine/explored) -"DD" = ( +"Dz" = ( /obj/machinery/atmospherics/portables_connector{ dir = 1 }, @@ -16279,7 +16254,7 @@ }, /turf/simulated/floor/tiled, /area/outpost/mining_main/east_hall) -"DE" = ( +"DA" = ( /obj/structure/disposalpipe/segment, /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/structure/cable/blue{ @@ -16290,7 +16265,7 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/tiled, /area/outpost/mining_main/east_hall) -"DF" = ( +"DB" = ( /obj/structure/cable/blue{ d1 = 4; d2 = 8; @@ -16298,7 +16273,7 @@ }, /turf/simulated/floor/tiled, /area/outpost/mining_main/east_hall) -"DG" = ( +"DC" = ( /obj/machinery/door/window/westleft{ name = "Production Area"; req_access = list(48) @@ -16310,7 +16285,7 @@ }, /turf/simulated/floor/tiled, /area/outpost/mining_main/refinery) -"DH" = ( +"DD" = ( /obj/structure/cable/blue{ d1 = 4; d2 = 8; @@ -16318,7 +16293,7 @@ }, /turf/simulated/floor/tiled, /area/outpost/mining_main/refinery) -"DI" = ( +"DE" = ( /obj/structure/cable/blue{ d1 = 1; d2 = 8; @@ -16329,21 +16304,21 @@ }, /turf/simulated/floor/tiled, /area/outpost/mining_main/refinery) -"DJ" = ( +"DF" = ( /obj/machinery/mineral/processing_unit_console, /turf/simulated/wall/r_wall, /area/outpost/mining_main/refinery) -"DK" = ( +"DG" = ( /obj/machinery/mineral/processing_unit, /turf/simulated/floor/tiled, /area/outpost/mining_main/refinery) -"DL" = ( +"DH" = ( /obj/machinery/light/small{ dir = 4 }, /turf/simulated/floor/asteroid/ash, /area/mine/explored) -"DM" = ( +"DI" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, @@ -16362,7 +16337,7 @@ /obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, /turf/simulated/floor/asteroid/ash, /area/mine/explored) -"DN" = ( +"DJ" = ( /obj/structure/disposalpipe/segment{ dir = 2; icon_state = "pipe-c" @@ -16380,7 +16355,7 @@ }, /turf/simulated/floor/asteroid/ash, /area/mine/explored) -"DO" = ( +"DK" = ( /obj/structure/lattice, /obj/machinery/access_button{ command = "cycle_exterior"; @@ -16393,28 +16368,28 @@ }, /turf/template_noop, /area/template_noop) -"DP" = ( +"DL" = ( /obj/machinery/computer/shuttle_control/mining, /turf/simulated/floor/tiled, /area/outpost/mining_main/east_hall) -"DQ" = ( +"DM" = ( /obj/structure/disposalpipe/segment, /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/tiled, /area/outpost/mining_main/east_hall) -"DR" = ( +"DN" = ( /obj/structure/window/reinforced{ dir = 8 }, /obj/structure/closet/crate, /turf/simulated/floor/tiled, /area/outpost/mining_main/refinery) -"DS" = ( +"DO" = ( /obj/structure/closet/crate, /turf/simulated/floor/tiled, /area/outpost/mining_main/refinery) -"DT" = ( +"DP" = ( /obj/machinery/conveyor{ dir = 2; id = "mining_internal" @@ -16422,10 +16397,10 @@ /obj/machinery/mineral/output, /turf/simulated/floor/tiled, /area/outpost/mining_main/refinery) -"DU" = ( +"DQ" = ( /turf/simulated/wall/r_wall, /area/outpost/mining_main/east_hall) -"DV" = ( +"DR" = ( /obj/structure/disposalpipe/segment, /obj/machinery/light{ icon_state = "tube1"; @@ -16444,7 +16419,7 @@ }, /turf/simulated/floor/tiled, /area/outpost/mining_main/east_hall) -"DW" = ( +"DS" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, @@ -16453,13 +16428,13 @@ }, /turf/simulated/floor/tiled, /area/outpost/mining_main/east_hall) -"DX" = ( +"DT" = ( /obj/machinery/atmospherics/unary/vent_pump/on{ dir = 8 }, /turf/simulated/floor/tiled, /area/outpost/mining_main/east_hall) -"DY" = ( +"DU" = ( /obj/structure/window/reinforced{ dir = 8 }, @@ -16473,7 +16448,7 @@ }, /turf/simulated/floor/plating, /area/outpost/mining_main/refinery) -"DZ" = ( +"DV" = ( /obj/structure/window/reinforced, /obj/structure/window/reinforced{ dir = 1 @@ -16484,7 +16459,7 @@ }, /turf/simulated/floor/plating, /area/outpost/mining_main/refinery) -"Ea" = ( +"DW" = ( /obj/structure/window/reinforced{ dir = 4 }, @@ -16498,11 +16473,11 @@ }, /turf/simulated/floor/plating, /area/outpost/mining_main/refinery) -"Eb" = ( +"DX" = ( /obj/machinery/mineral/stacking_unit_console, /turf/simulated/wall/r_wall, /area/outpost/mining_main/refinery) -"Ec" = ( +"DY" = ( /obj/structure/disposalpipe/segment{ dir = 1; icon_state = "pipe-c" @@ -16520,102 +16495,102 @@ }, /turf/simulated/floor/asteroid/ash, /area/mine/explored) +"DZ" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/asteroid/ash, +/area/mine/explored) +"Ea" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/effect/floor_decal/industrial/warning/dust{ + icon_state = "warning_dust"; + dir = 8 + }, +/turf/simulated/floor/tiled/airless{ + icon_state = "asteroidfloor" + }, +/area/mine/explored) +"Eb" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/effect/floor_decal/industrial/warning/dust{ + icon_state = "warning_dust"; + dir = 4 + }, +/turf/simulated/floor/tiled/airless{ + icon_state = "asteroidfloor" + }, +/area/mine/explored) +"Ec" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/window/reinforced, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/grille, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/template_noop, +/area/mine/explored) "Ed" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/asteroid/ash, -/area/mine/explored) -"Ee" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/effect/floor_decal/industrial/warning/dust{ - icon_state = "warning_dust"; - dir = 8 - }, -/turf/simulated/floor/tiled/airless{ - icon_state = "asteroidfloor" - }, -/area/mine/explored) -"Ef" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/effect/floor_decal/industrial/warning/dust{ - icon_state = "warning_dust"; - dir = 4 - }, -/turf/simulated/floor/tiled/airless{ - icon_state = "asteroidfloor" - }, -/area/mine/explored) -"Eg" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/grille, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/template_noop, -/area/mine/explored) -"Eh" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, @@ -16633,7 +16608,7 @@ }, /turf/template_noop, /area/template_noop) -"Ei" = ( +"Ee" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, @@ -16650,7 +16625,7 @@ }, /turf/template_noop, /area/template_noop) -"Ej" = ( +"Ef" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, @@ -16670,7 +16645,7 @@ }, /turf/simulated/floor/plating, /area/outpost/mining_main/east_hall) -"Ek" = ( +"Eg" = ( /obj/structure/disposalpipe/segment{ dir = 8; icon_state = "pipe-c" @@ -16678,20 +16653,20 @@ /obj/machinery/mech_recharger, /turf/simulated/floor/tiled, /area/outpost/mining_main/east_hall) -"El" = ( +"Eh" = ( /obj/machinery/atmospherics/unary/vent_scrubber/on{ dir = 1 }, /turf/simulated/floor/tiled, /area/outpost/mining_main/east_hall) -"Em" = ( +"Ei" = ( /obj/effect/floor_decal/industrial/loading{ icon_state = "loadingarea"; dir = 8 }, /turf/simulated/floor/tiled, /area/outpost/mining_main/refinery) -"En" = ( +"Ej" = ( /obj/machinery/conveyor{ dir = 8; id = "mining_internal" @@ -16699,14 +16674,14 @@ /obj/structure/plasticflaps, /turf/simulated/floor/tiled, /area/outpost/mining_main/refinery) -"Eo" = ( +"Ek" = ( /obj/machinery/conveyor{ dir = 8; id = "mining_internal" }, /turf/simulated/floor/tiled, /area/outpost/mining_main/refinery) -"Ep" = ( +"El" = ( /obj/machinery/conveyor{ dir = 8; id = "mining_internal" @@ -16714,11 +16689,11 @@ /obj/machinery/mineral/output, /turf/simulated/floor/tiled, /area/outpost/mining_main/refinery) -"Eq" = ( +"Em" = ( /obj/machinery/mineral/stacking_machine, /turf/simulated/floor/tiled, /area/outpost/mining_main/refinery) -"Er" = ( +"En" = ( /obj/machinery/conveyor{ dir = 5; icon_state = "conveyor0"; @@ -16727,7 +16702,7 @@ /obj/machinery/mineral/input, /turf/simulated/floor/tiled, /area/outpost/mining_main/refinery) -"Es" = ( +"Eo" = ( /obj/structure/cable{ d1 = 1; d2 = 2; @@ -16737,7 +16712,7 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/template_noop, /area/template_noop) -"Et" = ( +"Ep" = ( /obj/structure/cable{ d1 = 1; d2 = 4; @@ -16751,7 +16726,7 @@ }, /turf/template_noop, /area/template_noop) -"Eu" = ( +"Eq" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, @@ -16783,7 +16758,7 @@ }, /turf/simulated/floor/plating, /area/mine/explored) -"Ev" = ( +"Er" = ( /obj/structure/cable{ d1 = 1; d2 = 8; @@ -16797,7 +16772,7 @@ }, /turf/simulated/floor/asteroid/ash, /area/mine/explored) -"Ew" = ( +"Es" = ( /turf/template_noop, /area/skipjack_station/mining) @@ -20000,20 +19975,20 @@ aa aa aa aa -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR aa aa aa @@ -20022,13 +19997,13 @@ aa aa aa aa -nV -nV -nV -nV -nV -nV -nV +nR +nR +nR +nR +nR +nR +nR aa aa aa @@ -20253,45 +20228,45 @@ aa aa aa aa -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR aa aa aa @@ -20499,58 +20474,58 @@ aa aa aa aa -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR aa aa aa @@ -20750,67 +20725,67 @@ aa aa aa aa -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR aa aa aa @@ -21004,75 +20979,75 @@ aa aa aa aa -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR ab -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR aa aa aa @@ -21259,79 +21234,79 @@ aa aa aa aa -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR ab ab ab ab ab -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR ab ab ab -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR aa aa aa @@ -21515,84 +21490,84 @@ aa aa aa aa -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR ab ab ab ab ab ab -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR ab ab ab ab ab -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR aa aa aa @@ -21770,31 +21745,31 @@ aa aa aa aa -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR ab ab -nV -nV -nV -nV -nV -nV -nV -nV +nR +nR +nR +nR +nR +nR +nR +nR ab ab ab @@ -21802,16 +21777,16 @@ ab ab ab ab -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR ab ab ab @@ -21822,36 +21797,36 @@ ab ab ab ab -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR aa aa aa @@ -22025,30 +22000,30 @@ aa aa aa aa -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR ab ab -nV -nV -nV -nV -nV +nR +nR +nR +nR +nR ab ab ab @@ -22059,16 +22034,16 @@ ab ab ab ab -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR ab ab ab @@ -22079,37 +22054,37 @@ ab ab ab ab -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR aa aa aa @@ -22281,51 +22256,51 @@ aa aa aa aa -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR ab ab -nV -nV -nV -nV -nV -nV +nR +nR +nR +nR +nR +nR ab ab ab -nV -nV -nV -nV +nR +nR +nR +nR ab ab ab ab ab ab -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR ab ab ab @@ -22333,42 +22308,42 @@ ab ab ab ab -nV +nR ab ab -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR aa aa aa @@ -22537,96 +22512,96 @@ aa aa aa aa -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR ab ab -nV -nV -nV -nV -nV +nR +nR +nR +nR +nR ab ab ab ab -nV -nV -nV -nV -nV +nR +nR +nR +nR +nR ab -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR ab ab -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR ab ab ab -nV -nV -nV -nV -nV -nV +nR +nR +nR +nR +nR +nR aa aa aa @@ -22792,99 +22767,99 @@ aa aa aa aa -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR ab ab ab -nV -nV -nV -nV -nV +nR +nR +nR +nR +nR ab ab ab -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR ab ab ab ab ab -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR ab ab ab ab ab -nV -nV -nV -nV -nV -nV -nV +nR +nR +nR +nR +nR +nR +nR aa aa aa @@ -23048,70 +23023,70 @@ aa aa aa aa -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR ab ab ab ab -nV -nV -nV -nV -nV -nV +nR +nR +nR +nR +nR +nR ab -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR ab ab ab @@ -23119,30 +23094,30 @@ ab ab ab ab -nV -nV -nV -nV -nV +nR +nR +nR +nR +nR ab ab ab ab -nV +nR ab ab ab ab ab -nV -nV -nV -nV -nV -nV -nV -nV -nV +nR +nR +nR +nR +nR +nR +nR +nR +nR aa aa aa @@ -23304,17 +23279,17 @@ aa aa aa aa -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR ab ab ab @@ -23322,66 +23297,66 @@ ab ab ab ab -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR ab ab ab ab ab -nV -nV -nV -nV -nV -nV -nV -nV +nR +nR +nR +nR +nR +nR +nR +nR ab ab ab @@ -23391,16 +23366,16 @@ ab ab ab ab -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR aa aa aa @@ -23560,17 +23535,17 @@ aa aa aa aa -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR ab ab ab @@ -23578,50 +23553,50 @@ ab ab ab ab -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR ab ab ab @@ -23630,15 +23605,15 @@ ab ab ab ab -nV -nV -nV -nV -nV -nV -nV -nV -nV +nR +nR +nR +nR +nR +nR +nR +nR +nR ab ab ab @@ -23648,17 +23623,17 @@ ab ab ab ab -nV -nV -nV -nV -nV -nV -nV -nV +nR +nR +nR +nR +nR +nR +nR +nR ab ab -nV +nR aa aa aa @@ -23817,68 +23792,68 @@ aa aa aa aa -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR ab ab ab ab -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR ab ab ab -nV -nV -nV -nV -nV +nR +nR +nR +nR +nR ab ab ab @@ -23887,16 +23862,16 @@ ab ab ab ab -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR ab ab ab @@ -23905,18 +23880,18 @@ ab ab ab ab -nV -nV -nV -nV -nV -nV -nV +nR +nR +nR +nR +nR +nR +nR ab ab ab -nV -nV +nR +nR aa aa aa @@ -24073,69 +24048,69 @@ aa aa aa aa -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR ab ab -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR ab ab ab ab -nV -nV -nV -nV -nV +nR +nR +nR +nR +nR ab ab ab @@ -24144,36 +24119,36 @@ ab ab ab ab -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR ab ab ab -nV +nR ab ab ab -nV -nV -nV -nV -nV -nV -nV -nV +nR +nR +nR +nR +nR +nR +nR +nR ab ab ab ab -nV +nR aa aa aa @@ -24329,43 +24304,43 @@ aa aa aa aa -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR ab ab ab @@ -24375,63 +24350,63 @@ ab ab ab ab -nV -nV -nV -nV -nV -nV -nV +nR +nR +nR +nR +nR +nR +nR ab ab ab ab ab ab -nV -nV -nV -nV -nV -nV -nV -nV +nR +nR +nR +nR +nR +nR +nR +nR ab ab ab ab ab -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR ab ab ab -nV -nV -nV -nV -nV -nV -nV -nV +nR +nR +nR +nR +nR +nR +nR +nR ab ab ab ab ab -nV +nR aa aa aa @@ -24586,43 +24561,43 @@ aa aa aa aa -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR ab ab ab @@ -24632,64 +24607,64 @@ ab ab ab ab -nV -nV -nV -nV -nV -nV -nV +nR +nR +nR +nR +nR +nR +nR ab ab ab ab ab ab -nV -nV -nV -nV -nV -nV -nV -nV -nV +nR +nR +nR +nR +nR +nR +nR +nR +nR ab ab ab ab -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR ab ab ab ab -nV -nV +nR +nR aa aa aa @@ -24843,44 +24818,44 @@ aa aa aa aa -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR ab ab ab ab ab -nV -nV -nV -nV -nV -nV -nV -nV +nR +nR +nR +nR +nR +nR +nR +nR ab ab ab @@ -24889,64 +24864,64 @@ ab ab ab ab -nV -nV -nV -nV -nV -nV -nV +nR +nR +nR +nR +nR +nR +nR ab ab ab ab -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR ab ab ab ab -nV -nV +nR +nR aa aa aa @@ -25099,112 +25074,112 @@ aa aa aa aa -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR ab ab -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR ab ab ab ab ab ab -nV -nV -nV -nV -nV -nV -nV -nV -nV +nR +nR +nR +nR +nR +nR +nR +nR +nR ab ab ab ab ab -nV -nV -nV -nV -nV -nV -nV +nR +nR +nR +nR +nR +nR +nR ab ab ab ab -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR ab ab ab ab ab -nV +nR aa aa aa @@ -25356,112 +25331,112 @@ aa aa aa aa -nV -nV -nV -nV -nV -nV -nV +nR +nR +nR +nR +nR +nR +nR ab ab ab ab ab -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR ab ab ab ab ab -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR ab ab ab ab ab -nV -nV -nV -nV -nV -nV +nR +nR +nR +nR +nR +nR ab ab ab ab -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR ab ab ab -nV -nV -nV -nV +nR +nR +nR +nR ab ab ab ab ab -nV +nR aa aa aa @@ -25613,112 +25588,112 @@ aa aa aa aa -nV -nV -nV -nV -nV -nV +nR +nR +nR +nR +nR +nR ab ab ab ab -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR ab ab ab ab -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR ab -nV -nV -nV -nV -nV -nV -nV +nR +nR +nR +nR +nR +nR +nR ab ab ab ab -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR ab ab ab ab -nV -nV -nV -nV -nV -nV +nR +nR +nR +nR +nR +nR ab ab ab -nV +nR aa aa aa @@ -25870,112 +25845,112 @@ aa aa aa aa -nV -nV -nV -nV -nV -nV +nR +nR +nR +nR +nR +nR ab ab -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR ab ab ab ab -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR ab ab ab -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR ab ab ab ab -nV +nR ab ab ab ab -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR aa aa aa @@ -26126,93 +26101,93 @@ aa aa aa aa -nV -nV -nV -nV -nV -nV -nV +nR +nR +nR +nR +nR +nR +nR ab ab -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR ab ab ab -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR ab -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR ab ab ab @@ -26221,19 +26196,19 @@ ab ab ab ab -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR aa aa aa @@ -26383,114 +26358,114 @@ aa aa aa aa -nV -nV -nV -nV -nV +nR +nR +nR +nR +nR ab ab ab ab -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR ab ab -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR ab ab ab ab ab ab -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR aa aa aa @@ -26640,114 +26615,114 @@ aa aa aa aa -nV -nV -nV -nV -nV +nR +nR +nR +nR +nR ab ab ab ab -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR ab ab ab ab ab -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR ab ab -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR aa aa aa @@ -26897,43 +26872,43 @@ aa aa aa aa -nV -nV -nV -nV -nV -nV +nR +nR +nR +nR +nR +nR ab ab -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR ab ab -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR ab ab ab @@ -26942,69 +26917,69 @@ ab ab ab ab -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR ab ab ab -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR ab -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR aa aa aa @@ -27154,41 +27129,41 @@ aa aa aa aa -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR ab ab ab -nV -nV +nR +nR ab ab -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR ab ab ab @@ -27199,69 +27174,69 @@ ab ab ab ab -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR ab ab -nV -nV -nV -nV -nV -nV -nV -nV -nV +nR +nR +nR +nR +nR +nR +nR +nR +nR ab ab ab ab -nV +nR ab ab ab ab ab -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR aa aa aa @@ -27411,18 +27386,18 @@ aa aa aa aa -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR ab ab ab @@ -27431,21 +27406,21 @@ ab ab ab ab -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR ab ab ab @@ -27457,32 +27432,32 @@ ab ab ab ab -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR ab ab ab -nV -nV -nV -nV +nR +nR +nR +nR ab ab -nV -nV -nV +nR +nR +nR ab ab ab @@ -27493,32 +27468,32 @@ ab ab ab ab -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR ab ab -nV -nV -nV -nV -nV +nR +nR +nR +nR +nR aa aa aa @@ -27668,18 +27643,18 @@ aa aa aa aa -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR ab ab ab @@ -27688,58 +27663,58 @@ ab ab ab ab -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR ab ab ab ab -nV -nV -nV -nV -nV +nR +nR +nR +nR +nR ab ab -nV -nV -nV -nV -nV -nV +nR +nR +nR +nR +nR +nR ab ab -nV -nV -nV -nV -nV -nV +nR +nR +nR +nR +nR +nR ab ab ab -nV -nV -nV -nV -nV +nR +nR +nR +nR +nR ab -nV -nV -nV +nR +nR +nR ab ab ab @@ -27749,33 +27724,33 @@ ab ab ab ab -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR ab ab ab ab -nV -nV -nV -nV +nR +nR +nR +nR aa aa aa @@ -27925,18 +27900,18 @@ aa aa aa aa -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR ab ab ab @@ -27944,85 +27919,85 @@ ab ab ab ab -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR ab ab -nV -nV -nV -nV +nR +nR +nR +nR ab ab ab ab -nV -nV -nV -nV -nV -nV +nR +nR +nR +nR +nR +nR ab ab ab -nV -nV -nV -nV +nR +nR +nR +nR ab ab ab -nV -nV -nV -nV +nR +nR +nR +nR ab ab -nV -nV -nV +nR +nR +nR ab ab -nV -nV +nR +nR ab ab ab -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR ab ab ab @@ -28030,10 +28005,10 @@ ab ab ab ab -nV -nV -nV -nV +nR +nR +nR +nR aa aa aa @@ -28182,103 +28157,103 @@ aa aa aa aa -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR ab -nV -nV -nV -nV -nV -nV -nV -nV +nR +nR +nR +nR +nR +nR +nR +nR ab ab ab -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR ab ab ab ab -nV -nV -nV -nV -nV -nV +nR +nR +nR +nR +nR +nR ab ab ab -nV -nV -nV -nV +nR +nR +nR +nR ab ab ab -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR ab ab ab ab ab ab -nV -nV -nV -nV -nV -nV -nV -nV +nR +nR +nR +nR +nR +nR +nR +nR ab ab ab @@ -28287,10 +28262,10 @@ ab ab ab ab -nV -nV -nV -nV +nR +nR +nR +nR aa aa aa @@ -28439,89 +28414,89 @@ aa aa aa aa -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR ab ab ab ab -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR ab ab ab -nV -nV -nV -nV +nR +nR +nR +nR ab ab ab ab ab -nV -nV -nV -nV -nV +nR +nR +nR +nR +nR ab ab ab -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR ab ab ab @@ -28530,11 +28505,11 @@ ab ab ab ab -nV -nV -nV -nV -nV +nR +nR +nR +nR +nR ab ab ab @@ -28544,11 +28519,11 @@ ab ab ab ab -nV -nV -nV -nV -nV +nR +nR +nR +nR +nR aa aa aa @@ -28696,102 +28671,102 @@ aa aa aa aa -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR ab ab -nV +nR ab ab ab ab -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR ab ab -nV -nV -nV -nV +nR +nR +nR +nR ab ab ab ab -nV -nV -nV -nV -nV -nV +nR +nR +nR +nR +nR +nR ab ab ab ab -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR ab ab ab ab -nV -nV -nV -cU +nR +nR +nR +cS ab ab ab @@ -28800,12 +28775,12 @@ ab ab ab ab -nV -nV -nV -nV -nV -nV +nR +nR +nR +nR +nR +nR aa aa aa @@ -28953,33 +28928,33 @@ aa aa aa aa -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR ab ab ab -nV +nR ab ab ab @@ -28987,78 +28962,78 @@ ab ab ab ab -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR ab ab ab ab -nV -nV -nV -nV -nV -nV -nV +nR +nR +nR +nR +nR +nR +nR ab ab ab -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -cU -cU -cU -cU +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +cS +cS +cS +cS ab ab -nV -nV -nV -nV -nV -nV +nR +nR +nR +nR +nR +nR ab ab ab @@ -29210,28 +29185,28 @@ aa aa aa aa -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR ab ab ab @@ -29244,76 +29219,76 @@ ab ab ab ab -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR ab ab ab ab -nV -nV -nV -nV -nV -nV +nR +nR +nR +nR +nR +nR ab ab ab -nV -nV +nR +nR ab ab ab -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -je -je -cU -cU -cU -nV -nV -nV -nV -nV -nV +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +ja +ja +cS +cS +cS +nR +nR +nR +nR +nR +nR ab ab ab @@ -29467,28 +29442,28 @@ aa aa aa aa -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR ab ab ab @@ -29501,44 +29476,44 @@ ab ab ab ab -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR ab -nV -nV -nV -nV -nV -nV -nV +nR +nR +nR +nR +nR +nR +nR ab ab ab -nV -nV +nR +nR ab ab ab @@ -29546,34 +29521,34 @@ ab ab ab ab -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -je -je -je -je -je -cU -nV -nV -nV -nV -nV -cU -cU -cU -cU +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +ja +ja +ja +ja +ja +cS +nR +nR +nR +nR +nR +cS +cS +cS +cS ab ab ab @@ -29724,29 +29699,29 @@ aa aa aa aa -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR ab ab ab @@ -29755,47 +29730,47 @@ ab ab ab ab -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR ab -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR ab ab ab ab -nV -nV +nR +nR ab ab ab @@ -29804,36 +29779,36 @@ ab ab ab ab -nV -nV -nV -nV -nV -nV +nR +nR +nR +nR +nR +nR ab ab -nV -nV -nV -nV -je -je -je -je -je -je -nV -nV -nV -nV -nV -cU -cU -cU -cU -cU -cU -cU +nR +nR +nR +nR +ja +ja +ja +ja +ja +ja +nR +nR +nR +nR +nR +cS +cS +cS +cS +cS +cS +cS ab ab ab @@ -29981,79 +29956,79 @@ aa aa aa aa -nV -nV -nV -nV -nV -nV -nV -nV -nV +nR +nR +nR +nR +nR +nR +nR +nR +nR ab ab -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR ab ab ab ab ab -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR ab ab -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR ab ab ab ab -nV -nV -nV +nR +nR +nR ab ab ab @@ -30061,37 +30036,37 @@ ab ab ab ab -nV -nV -nV -nV -nV +nR +nR +nR +nR +nR ab ab ab -nV -nV -nV -nV -nA -je -nA -je -je -je -nV -nV -nV -nV -cU -cU -cU -cU -cU -cU -cU -cU -cU +nR +nR +nR +nR +nw +ja +nw +ja +ja +ja +nR +nR +nR +nR +cS +cS +cS +cS +cS +cS +cS +cS +cS ab ab ab @@ -30239,116 +30214,116 @@ aa aa aa aa -nV -nV -nV -nV -nV -nV -nV +nR +nR +nR +nR +nR +nR +nR ab ab ab ab -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR ab ab -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR ab ab ab ab ab ab -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR ab -nV -nV -nV +nR +nR +nR ab ab -nV -nV +nR +nR ab ab ab -nV -nV -nV +nR +nR +nR ab ab ab ab ab -nV -nV -nV -nV -nB -wl -wv -je -nV -nV -nV -nV -nV -nV -je -je -je -je -je -je -je -je -cU +nR +nR +nR +nR +nx +wh +wr +ja +nR +nR +nR +nR +nR +nR +ja +ja +ja +ja +ja +ja +ja +ja +cS ab ab ab @@ -30496,10 +30471,10 @@ aa aa aa aa -nV -nV -nV -nV +nR +nR +nR +nR ab ab ab @@ -30508,32 +30483,32 @@ ab ab ab ab -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR ab ab ab @@ -30542,70 +30517,70 @@ ab ab ab ab -nV -nV -nV -nV -nV +nR +nR +nR +nR +nR ab -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR ab ab -nV -nV -nV -nV -nV -nV -nV +nR +nR +nR +nR +nR +nR +nR ab ab ab ab -nV -nV -nV -nV -nV -wq -ws -os -nV -nV -nV -nV -nV -nV -nV -xf -xf -xf -xf -xf -xf -xf -je -cU +nR +nR +nR +nR +nR +wm +wo +oo +nR +nR +nR +nR +nR +nR +nR +xb +xb +xb +xb +xb +xb +xb +ja +cS ab ab ab @@ -30753,9 +30728,9 @@ aa aa aa aa -nV -nV -nV +nR +nR +nR ab ab ab @@ -30767,24 +30742,24 @@ ab ab ab ab -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR ab ab ab @@ -30798,71 +30773,71 @@ ab ab ab ab -nV -nV -nV -nV +nR +nR +nR +nR ab ab ab ab -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR ab ab ab ab -nV -nV -nV -nV -nV -nD -ws -os -nV -nV -nV -nV -nV -nV -nV -xf -xy -yf -yH -zs -zQ -xf -je -cU +nR +nR +nR +nR +nR +nz +wo +oo +nR +nR +nR +nR +nR +nR +nR +xb +xu +yb +yD +zo +zM +xb +ja +cS ab ab ab @@ -31010,7 +30985,7 @@ aa aa aa aa -nV +nR ab ab ab @@ -31025,23 +31000,23 @@ ab ab ab ab -nV -nV +nR +nR ab -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR ab ab ab @@ -31051,23 +31026,23 @@ ab ab ab ab -nV -nV -nV -nV -nV -nV -nV -nV +nR +nR +nR +nR +nR +nR +nR +nR ab ab ab ab -nV -nV -nV -nV -nV +nR +nR +nR +nR +nR ab ab ab @@ -31075,51 +31050,51 @@ ab ab ab ab -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR ab ab -nV -nV -nV -nV -nV -nD -ws -os -nV -nV -nV -nV -nV -nV -nV -xf -xz -yg -yI -zt -zR -xf -je -cU +nR +nR +nR +nR +nR +nz +wo +oo +nR +nR +nR +nR +nR +nR +nR +xb +xv +yc +yE +zp +zN +xb +ja +cS ab ab ab @@ -31286,19 +31261,19 @@ ab ab ab ab -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR ab ab ab @@ -31308,12 +31283,12 @@ ab ab ab ab -nV -nV -nV -nV -nV -nV +nR +nR +nR +nR +nR +nR ab ab ab @@ -31322,10 +31297,10 @@ ab ab ab ab -nV -nV -nV -nV +nR +nR +nR +nR ab ab ab @@ -31333,50 +31308,50 @@ ab ab ab ab -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR ab ab -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nD -ws -os -nV -nV -nV -nV -nV -je -je -xf -xA -yh -yJ -zu -zS -xf -je -cU +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nz +wo +oo +nR +nR +nR +nR +nR +ja +ja +xb +xw +yd +yF +zq +zO +xb +ja +cS ab ab ab @@ -31523,7 +31498,7 @@ aa aa aa aa -nV +nR ab ab ab @@ -31544,34 +31519,34 @@ ab ab ab ab -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR ab ab ab ab ab ab -nV -nV -nV -nV -nV -nV -nV -nV +nR +nR +nR +nR +nR +nR +nR +nR ab ab ab @@ -31579,11 +31554,11 @@ ab ab ab ab -nV -nV -nV -nV -nV +nR +nR +nR +nR +nR ab ab ab @@ -31591,49 +31566,49 @@ ab ab ab ab -nV -nV -nV -nV -nV -nV -nV -nV -nV +nR +nR +nR +nR +nR +nR +nR +nR +nR ab ab ab -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nD -ws -os -nV -nV -nV -nV -je -je -je -xf -xB -yi -yK -xB -yi -xf -je -cU +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nz +wo +oo +nR +nR +nR +nR +ja +ja +ja +xb +xx +ye +yG +xx +ye +xb +ja +cS ab ab ab @@ -31801,35 +31776,35 @@ ab ab ab ab -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR ab ab ab ab -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR ab ab ab @@ -31837,60 +31812,60 @@ ab ab ab ab -nV -nV -nV -nV -nV -nV -nV -nV +nR +nR +nR +nR +nR +nR +nR +nR ab ab ab -nV -nV -nV -nV -nV -nV -nV -nV +nR +nR +nR +nR +nR +nR +nR +nR ab ab ab ab -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nD -ws -os -nV -nV -nV -nV -je -je -je -xf -xC -yj -yL -zv -zT -xf -je -cU +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nz +wo +oo +nR +nR +nR +nR +ja +ja +ja +xb +xy +yf +yH +zr +zP +xb +ja +cS ab ab ab @@ -32058,97 +32033,97 @@ ab ab ab ab -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR ab ab ab -nV -nV -nV -nV -nV -nV -nV -nV +nR +nR +nR +nR +nR +nR +nR +nR ab ab ab -nV -nV -nV -nV -nV -nV -nV -nV +nR +nR +nR +nR +nR +nR +nR +nR ab ab ab -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nD +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nz +wo ws -ww -wm -wm -wH -wj -wk -je -je -xg -xD -yk -yM -zw -zU -xf -je -cU -cU +wi +wi +wD +wf +wg +ja +ja +xc +xz +yg +yI +zs +zQ +xb +ja +cS +cS ab ab ab @@ -32316,96 +32291,96 @@ ab ab ab ab -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR ab ab ab -nV -nV -nV -nV -nV -nV -nV -nV -nV +nR +nR +nR +nR +nR +nR +nR +nR +nR ab ab -nV -nV -nV -nV -nV +nR +nR +nR +nR +nR ab ab -nV +nR ab ab ab -nV -nV -nV -nV -nV -nV -je -je -je +nR +nR +nR +nR +nR +nR +ja +ja +ja +wf +wg +wi +wi +wn +wp wj -wk -wm -wm -wr -wt -wn -wn -wn -wn -wl -je -je -je -xh -xE -yl -yN -yg -zV -xf -je -je -cU +wj +wj +wj +wh +ja +ja +ja +xd +xA +yh +yJ +yc +zR +xb +ja +ja +cS ab ab ab @@ -32573,96 +32548,96 @@ ab ab ab ab -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR ab ab -nV -nV -nV -nV -nV -nV -nV -nV -nV +nR +nR +nR +nR +nR +nR +nR +nR +nR ab ab -nV -nV -nV -nV -nV +nR +nR +nR +nR +nR ab ab ab ab ab ab -nV -nV -cU -cU -je -je -je -je -je -je -wl -wn -wn -wn -wu -wx -wp -wp -wp +nR +nR +cS +cS +ja +ja +ja +ja +ja +ja +wh wj -wk -je -je -xi -xF -ym -yO -zx -zW -xf -je -je -cU +wj +wj +wq +wt +wl +wl +wl +wf +wg +ja +ja +xe +xB +yi +yK +zt +zS +xb +ja +ja +cS ab ab ab @@ -32830,96 +32805,96 @@ ab ab ab ab -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR ab ab ab -nV -nV -nV -nV +nR +nR +nR +nR ab ab ab ab ab -nV -nV -nV -cU -cU -je -je -je -je -je -wj +nR +nR +nR +cS +cS +ja +ja +ja +ja +ja +wf +wg wk -wo -wp -wp -wp -nd -nV -nV -je -je -je -je -je -xf -xG -yn -yP -xf -zX -xf -je -je -cU +wl +wl +wl +mZ +nR +nR +ja +ja +ja +ja +ja +xb +xC +yj +yL +xb +zT +xb +ja +ja +cS ab ab ab @@ -33088,95 +33063,95 @@ ab ab ab ab -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR ab ab ab ab -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -cU -cU -cU -je -je -je -je -je -je -nV -nV -nV -nV -nV -nV -je -je -je -je -je -je -xf -xH -yo -xH -xf -zY -AH -je -je -cU +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +cS +cS +cS +ja +ja +ja +ja +ja +ja +nR +nR +nR +nR +nR +nR +ja +ja +ja +ja +ja +ja +xb +xD +yk +xD +xb +zU +AD +ja +ja +cS ab ab ab @@ -33346,94 +33321,94 @@ ab ab ab ab -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR ab ab ab ab -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -cU -cU -cU -cU -je -je -cU -cU -nV -nV -nV -nV -nV -nV -cU -cU -cU -je +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +cS +cS +cS +cS +ja +ja +cS +cS +nR +nR +nR +nR +nR +nR +cS +cS +cS +ja +wO wS -wW -xf -xI -yp -yQ -xf -zZ -xf -Bj -mJ -cU +xb +xE +yl +yM +xb +zV +xb +Bf +mF +cS ab ab ab @@ -33607,90 +33582,90 @@ ab ab ab ab -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR ab ab ab -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -cU -cU -cU -cU -nV -nV -nV -nV -nV -nV -cU -cU -cU -cU -je -wS -wX -xf -xJ -yq -yR -xf -Aa -xf -Bk -pZ -cU +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +cS +cS +cS +cS +nR +nR +nR +nR +nR +nR +cS +cS +cS +cS +ja +wO +wT +xb +xF +ym +yN +xb +zW +xb +Bg +pV +cS ab ab ab @@ -33867,87 +33842,87 @@ ab ab ab ab -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -cU -cU -cU -cU -nV -nV -nV -nV -nV -nV -cU -cU -cU -cU -je -wS -wY -xf -xK -yr -yS -xf -Ab -xf -lN -pZ -cU +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +cS +cS +cS +cS +nR +nR +nR +nR +nR +nR +cS +cS +cS +cS +ja +wO +wU +xb +xG +yn +yO +xb +zX +xb +lJ +pV +cS ab ab ab @@ -34084,12 +34059,12 @@ aa aa aa ae -dq -dq -dq -dq -dq -dq +dm +dm +dm +dm +dm +dm ab ab ab @@ -34125,86 +34100,86 @@ ab ab ab ab -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -cU -cU -nV -nV -nV -nV -nV -nV -nV -nV -cU -cU -cU -cU -je -je -je -je -uC -ys -yT -xf -Ac -xf -lN -pZ -cU +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +cS +cS +nR +nR +nR +nR +nR +nR +nR +nR +cS +cS +cS +cS +ja +ja +ja +ja +uy +yo +yP +xb +zY +xb +lJ +pV +cS ab ab ab @@ -34341,12 +34316,12 @@ aa aa aa ae -dq -jF -jF -kY -kY -dq +dm +jB +jB +kU +kU +dm ab ab ab @@ -34383,85 +34358,85 @@ ab ab ab ab -nV -nV -nV +nR +nR +nR ab ab ab ab -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR ab -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR ab ab -nV -nV -cU -cU -cU -cU -cU -cU -cU -cU -je -uC -yt -yU -yU -Ad -lN -lN -BB -cU +nR +nR +cS +cS +cS +cS +cS +cS +cS +cS +ja +uy +yp +yQ +yQ +zZ +lJ +lJ +Bx +cS ab ab ab @@ -34598,12 +34573,12 @@ aa aa aa ae -dq -jG -fH -fG -lB -dq +dm +jC +fD +fC +lx +dm ab ab ab @@ -34649,53 +34624,53 @@ ab ab ab ab -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR ab ab -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR ab ab ab ab -nV -nV -nV -nV -nV -nV -nV +nR +nR +nR +nR +nR +nR +nR ab ab ab @@ -34703,22 +34678,22 @@ ab ab ab ab -cU -cU -cU -cU -cU -cU -je -od -yu -yu -yu -qn -yu -yu -BC -cU +cS +cS +cS +cS +cS +cS +ja +nZ +yq +yq +yq +qj +yq +yq +By +cS ab ab ab @@ -34855,127 +34830,127 @@ aa aa ae ab -dq -jG -fG +dm +jC +fC +cQ +jC +dm +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 +ab +ab +ab +ab +ab +ab +ab +ab +ab +nR +nR +nR +nR +nR +nR +nR +nR +ab +ab +ab +ab +ab +nR +nR +nR +nR +nR +nR +ab +ab +ab +ab +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +nR +ab +ab +ab +ab +ab +ab +ab +nR +nR +nR +nR +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +cS +cS +cS +cS +cS +cS +cS +cS +ja +pD +ja +ja +cS cS -jG -dq -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 -ab -ab -ab -ab -ab -ab -ab -ab -ab -nV -nV -nV -nV -nV -nV -nV -nV -ab -ab -ab -ab -ab -nV -nV -nV -nV -nV -nV -ab -ab -ab -ab -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -nV -ab -ab -ab -ab -ab -ab -ab -nV -nV -nV -nV -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -cU -cU -cU -cU -cU -cU -cU -cU -je -pH -je -je -cU -cU ab ab ab @@ -35112,12 +35087,12 @@ aa ae ae ab -dq -jH -fH -jG -lC -dq +dm +jD +fD +jC +ly +dm ab ab ab @@ -35164,12 +35139,12 @@ ab ab ab ab -nV -nV -nV -nV -nV -nV +nR +nR +nR +nR +nR +nR ab ab ab @@ -35178,8 +35153,8 @@ ab ab ab ab -nV -nV +nR +nR ab ab ab @@ -35187,15 +35162,15 @@ ab ab ab ab -nV -nV -nV -nV -nV -nV -nV -nV -nV +nR +nR +nR +nR +nR +nR +nR +nR +nR ab ab ab @@ -35224,14 +35199,14 @@ ab ab ab ab -cU -cU -cU -je -pH -je -ro -kv +cS +cS +cS +ja +pD +ja +rk +kr ab ab ab @@ -35367,19 +35342,19 @@ aa aa aa ae -hD -dq -dq -dq -ks -kZ -dq -dq -dq -dq -dq -dq -dq +hz +dm +dm +dm +ko +kV +dm +dm +dm +dm +dm +dm +dm ab ab ab @@ -35422,10 +35397,10 @@ ab ab ab ab -nV -nV -nV -nV +nR +nR +nR +nR ab ab ab @@ -35446,12 +35421,12 @@ ab ab ab ab -nV -nV -nV -nV -nV -nV +nR +nR +nR +nR +nR +nR ab ab ab @@ -35481,15 +35456,15 @@ ab ab ab ab -cU -cU -cU -je -pH -je -je -cU -cU +cS +cS +cS +ja +pD +ja +ja +cS +cS ab ab ab @@ -35622,132 +35597,132 @@ aa aa aa aa -gk -gS -hE -fh -fh -hD +gg +gO +hA +fd +fd +hz bD +cQ +cQ +cr +fD +cr +fD +cr +dm +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 +ab +ab +ab +ab +ab +ab +ab +ab +nR +nR +nR +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 +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +cS +cS +cS +ja +pD +ja +ja +cS cS cS -ct -fH -ct -fH -ct -dq -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 -ab -ab -ab -ab -ab -ab -ab -ab -nV -nV -nV -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 -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -cU -cU -cU -je -pH -je -je -cU -cU -cU ab ab ab @@ -35879,133 +35854,133 @@ aa aa aa ae -fE -gT -ct +fA +gP +cr +cQ +fD +jE +jC +fD +dm +dm +dm +dm +dm +cr +dm +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 +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +nR +nR +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 +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +cS +cS +ja +pD +ja +ja +ja +cS +cS cS -fH -jI -jG -fH -dq -dq -dq -dq -dq -ct -dq -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 -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -nV -nV -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 -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -cU -cU -je -pH -je -je -je -cU -cU -cU ab ab ab @@ -36135,22 +36110,22 @@ aa aa aa ae -fE -gl -ff -ff -it -jc -hE -fH -jG -lD -ct -ct -ct -dq -fH -dq +fA +gh +fb +fb +ip +iY +hA +fD +jC +lz +cr +cr +cr +dm +fD +dm ab ab ab @@ -36198,8 +36173,8 @@ ab ab ab ab -nV -nV +nR +nR ab ab ab @@ -36253,16 +36228,16 @@ ab ab ab ab -cU -cU -je -qc -pA -pG -je -cU -cU -cU +cS +cS +ja +pY +pw +pC +ja +cS +cS +cS ab ab ab @@ -36391,23 +36366,23 @@ aa aa aa aa -fd -fF -fE -gU -gV -ff -fG -dq -jG -fG -lE -fG -fH -fH -dq -ct -dq +eZ +fB +fA +gQ +gR +fb +fC +dm +jC +fC +lA +fC +fD +fD +dm +cr +dm ab ab ab @@ -36511,16 +36486,16 @@ ab ab ab ab -cU -je -je -je -pH -je -cU -cU -cU -cU +cS +ja +ja +ja +pD +ja +cS +cS +cS +cS ab ab ab @@ -36648,136 +36623,136 @@ aa aa aa ae -fe -fe -ff -gV -ff -fH -fG -gW +fa +fa +fb +gR +fb +fD +fC +gS +cQ +kW +dm +jC +mv +jC +dm +cr +dm +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 +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 +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 +cS +cS +cS +ja +pD +ja +ja +ja +ja cS -la -dq -jG -mz -jG -dq -ct -dq -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 -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 -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 -cU -cU -cU -je -pH -je -je -je -je -cU ab ab ab @@ -36905,137 +36880,137 @@ aa aa aa ae -ff -fG -ff -ff +fb +fC +fb +fb +cQ +cQ +fD +dm +jC +cQ +jC +jC +cQ +jC +dm +cr +dm +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 +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 +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 cS cS -fH -dq -jG cS -jG -jG +ja +pY +pw +pw +pC +ja +cS cS -jG -dq -ct -dq -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 -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 -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 -cU -cU -cU -je -qc -pA -pA -pG -je -cU -cU ab ab ab @@ -37157,142 +37132,142 @@ aa aa aa cp -cO +cM cp aa ae -eL -fg -fH -ct -fH -hF -fH -jd -jJ -fG +eH +fc +fD +cr +fD +hB +fD +iZ +jF +fC +cQ +dm +fD +fD +jC +dm +cr +dm +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 +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 +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 +cS +cS +ja +ja +ja +ja +pD +ja +ja cS -dq -fH -fH -jG -dq -ct -dq -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 -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 -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 -cU -cU -je -je -je -je -pH -je -je -cU ab ab ab @@ -37414,28 +37389,28 @@ aa aa aa cp -cP +cN cp ae ae -eM -fh -fH -gm -fG -fH -ct -hH -jK -kt -ct -lD -fH +eI +fd +fD +gi +fC +fD +cr +hD jG -fG -dq -ct -dq +kp +cr +lz +fD +jC +fC +dm +cr +dm ab ab ab @@ -37540,16 +37515,16 @@ ab ab ab ab -cU -cU -cU -cU -cU -je -pH -je -ro -kv +cS +cS +cS +cS +cS +ja +pD +ja +rk +kr ab ab ab @@ -37671,143 +37646,143 @@ aa aa aa cp -cP +cN cp ae -em -eN -fh -cS -fH -ct -hG -hH -hH -jL +ei +eJ +fd +cQ +fD +cr +hC +hD +hD +jH bD bD -lE -fH +lA +fD +cQ +jC +dm +fC +dm +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 +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 +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 +cS +cS +cS +cS +ja +pD +ja +ja +cS cS -jG -dq -fG -dq -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 -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 -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 -cU -cU -cU -cU -je -pH -je -je -cU -cU ab ab ab @@ -37928,144 +37903,144 @@ be bC ca cp -cQ +cO cp -dM -en -dq -fi -fI -dq -gW -dq -fi -fI -dq -ct -ct -dq +dI +ej +dm +fe +fE +dm +gS +dm +fe +fE +dm +cr +cr +dm +cQ +dm +dm +dm +cr +dm +my +my +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 +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 +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 +cS +cS +cS +cS +ja +pY +pC +ja +ja +cS cS -dq -dq -dq -ct -dq -mC -mC -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 -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 -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 -cU -cU -cU -cU -je -qc -pG -je -je -cU -cU ab ab ab @@ -38184,145 +38159,145 @@ aa bf bD cb -cs -cR -dp -cs -cS -ct -cS +cq +cP +dl +cq +cQ +cr +cQ bD -fG -ct +fC +cr bD -fG +fC bD -ct +cr +cQ +cr +cr +cr +cr +fC +cr +cr +dm +my +my +my +my +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 +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 +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 +cS +cS +cS +ja +ja +pY +pC +ja +cS cS -ct -ct -ct -ct -fG -ct -ct -dq -mC -mC -mC -mC -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 -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 -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 -cU -cU -cU -je -je -qc -pG -je -cU -cU ab ab ab @@ -38441,146 +38416,146 @@ aa bg bE cc -ct -cS -ct -cS -ct -eO +cr +cQ +cr +cQ +cr +eK bD -ct -gn -ct -eO -fG +cr +gj +cr +eK +fC bD bD -ct -cS +cr +cQ bD -fG +fC +cQ +dm +dm +dm +dm +my +my +my +my +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 +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 +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 +cS +cS +ja +ja +pD +ja +cS +cS cS -dq -dq -dq -dq -mC -mC -mC -mC -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 -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 -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 -cU -cU -je -je -pH -je -cU -cU -cU ab ab ab @@ -38699,32 +38674,32 @@ aa ae cd bE -cT -dq -dq -dq -dq -dq -fj -dq -dq -dq -dq -dq -hG -dq -dq -dq -dq -dq -dq -fh -hH -dq -dq -dq -dq -mC +cR +dm +dm +dm +dm +dm +ff +dm +dm +dm +dm +dm +hC +dm +dm +dm +dm +dm +dm +fd +hD +dm +dm +dm +dm +my ab ab ab @@ -38830,14 +38805,14 @@ ab ab ab ab -cU -je -je -pH -je -cU -cU -cU +cS +ja +ja +pD +ja +cS +cS +cS ab ab ab @@ -38960,141 +38935,141 @@ ae ab ab ab -dq -fj -fj -fj -dq -hH -hH -hH -hG +dm +ff +ff +ff +dm +hD +hD +hD +hC +cQ +hC +eK +lY +mw +hD +cr +cr +mb +cr +cr +oN +oS +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 +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 +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 +cS +ja +oX +qi +mF +cS +cS cS -hG -eO -mc -mA -hH -ct -ct -mf -ct -ct -oR -oW -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 -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 -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 -cU -je -pb -qm -mJ -cU -cU -cU ab ab ab @@ -39217,28 +39192,28 @@ ae ab ab ab -dq -fj -fj -go -dq -fH -fG -cS -cS -hG -ct -hG -md -ct -fH -ct -hG -op -ct -oP +dm +ff +ff +gk +dm +fD +fC +cQ +cQ +hC +cr +hC +lZ +cr +fD +cr +hC +ol +cr +oL +oO oS -oW ab ab ab @@ -39344,14 +39319,14 @@ ab ab ab ab -cU -je -od -qn -ov -cU -cU -cU +cS +ja +nZ +qj +or +cS +cS +cS ab ab ab @@ -39474,141 +39449,141 @@ ab ab ab ab -dq -dq -dq -dq -dq -ct +dm +dm +dm +dm +dm +cr +cQ +cr +fD +fC +fD +hC +ma +cr +cr +fD +cr +om +cr +cr +mb +oS +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 +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 +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 +cS +ja +ja +pD +ja +cS +cS cS -ct -fH -fG -fH -hG -me -ct -ct -fH -ct -oq -ct -ct -mf -oW -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 -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 -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 -cU -je -je -pH -je -cU -cU -cU ab ab ab @@ -39735,24 +39710,24 @@ ab ab ab ab -dq -hI -iu -iu -fG -fH -ct -hG -mf -mB -iu -iu -hI -dq -dq -dq -dq -mC +dm +hE +iq +iq +fC +fD +cr +hC +mb +mx +iq +iq +hE +dm +dm +dm +dm +my ab ab ab @@ -39858,13 +39833,13 @@ ab ab ab ab -cU -je -je -pH -je -cU -cU +cS +ja +ja +pD +ja +cS +cS ab ab ab @@ -39992,24 +39967,24 @@ ab ab ab ab -dq -dq -dq -dq -dq -dq -dq -dq -dq -dq -mY -nz -dq -dq -mC -mC -mC -mC +dm +dm +dm +dm +dm +dm +dm +dm +dm +dm +mU +nv +dm +dm +my +my +my +my ab ab ab @@ -40114,14 +40089,14 @@ ab ab ab ab -cU -cU -je -qe -qf -je -cU -cU +cS +cS +ja +qa +qb +ja +cS +cS ab ab ab @@ -40258,12 +40233,12 @@ ab ab ab ab -mC -mC -mC -mC -mC -mC +my +my +my +my +my +my ab ab ab @@ -40371,14 +40346,14 @@ ab ab ab ab -cU -cU -je -pH -je -je -cU -cU +cS +cS +ja +pD +ja +ja +cS +cS ab ab ab @@ -40628,14 +40603,14 @@ ab ab ab ab -cU -cU -je -pH -je -ro -kv -cU +cS +cS +ja +pD +ja +rk +kr +cS ab ab ab @@ -40885,13 +40860,13 @@ ab ab ab ab -cU -cU -je -pH -je -je -cU +cS +cS +ja +pD +ja +ja +cS ab ab ab @@ -41140,15 +41115,15 @@ ab ab ab ab -cU -cU -cU -cU -je -pH -je -cU -cU +cS +cS +cS +cS +ja +pD +ja +cS +cS ab ab ab @@ -41396,15 +41371,15 @@ ab ab ab ab -cU -cU -je -je -je -je -pH -je -cU +cS +cS +ja +ja +ja +ja +pD +ja +cS ab ab ab @@ -41651,17 +41626,17 @@ ab ab ab ab -cU -cU -cU -je -je -qe -pA -pA -qf -je -cU +cS +cS +cS +ja +ja +qa +pw +pw +qb +ja +cS ab ab ab @@ -41907,18 +41882,18 @@ ab ab ab ab -cU -cU -cU -cU -je -qe -qf -je -je -je -je -cU +cS +cS +cS +cS +ja +qa +qb +ja +ja +ja +ja +cS ab ab ab @@ -42164,18 +42139,18 @@ ab ab ab ab -cU -cU -je -je -je -pH -je -je -cU -cU -cU -cU +cS +cS +ja +ja +ja +pD +ja +ja +cS +cS +cS +cS ab ab ab @@ -42420,16 +42395,16 @@ ab ab ab ab -cU -cU -kv -pX -qe -pA -qf -je -cU -cU +cS +cS +kr +pT +qa +pw +qb +ja +cS +cS ab ab ab @@ -42676,16 +42651,16 @@ ab ab ab ab -cU -cU -cU -cU -je -pH -je -je -je -cU +cS +cS +cS +cS +ja +pD +ja +ja +ja +cS ab ab ab @@ -42932,17 +42907,17 @@ ab ab ab ab -cU -cU -cU -cU -cU -je -pH -je -je -cU -cU +cS +cS +cS +cS +cS +ja +pD +ja +ja +cS +cS ab ab ab @@ -43189,16 +43164,16 @@ ab ab ab ab -cU -cU -cU -cU -cU -je -pH -je -je -cU +cS +cS +cS +cS +cS +ja +pD +ja +ja +cS ab ab ab @@ -43446,16 +43421,16 @@ ab ab ab ab -cU -cU -cU -cU -cU -je -pH -je -je -cU +cS +cS +cS +cS +cS +ja +pD +ja +ja +cS ab ab ab @@ -43703,16 +43678,16 @@ ab ab ab ab -cU -cU -cU -cU -cU -je -pH -je -cU -cU +cS +cS +cS +cS +cS +ja +pD +ja +cS +cS ab ab ab @@ -43960,16 +43935,16 @@ ab ab ab ab -cU -cU -cU -cU -cU -je -pH -je -je -cU +cS +cS +cS +cS +cS +ja +pD +ja +ja +cS ab ab ab @@ -44217,16 +44192,16 @@ ab ab ab ab -cU -cU -cU -cU -cU -je -pH -je -je -cU +cS +cS +cS +cS +cS +ja +pD +ja +ja +cS ab ab ab @@ -44474,18 +44449,18 @@ ab ab ab ab -cU -cU -cU -cU -cU -je -pH -je -ro -kv -cU -cU +cS +cS +cS +cS +cS +ja +pD +ja +rk +kr +cS +cS ab ab ab @@ -44732,18 +44707,18 @@ ab ab ab ab -cU -cU -cU -cU -pb -qm -mJ -je -cU -cU -cU -cU +cS +cS +cS +cS +oX +qi +mF +ja +cS +cS +cS +cS ab ab ab @@ -44989,18 +44964,18 @@ ab ab ab ab -cU -cU -cU -cU -od -qn -ov -je -cU -cU -cU -cU +cS +cS +cS +cS +nZ +qj +or +ja +cS +cS +cS +cS ab ab ab @@ -45246,19 +45221,19 @@ ab ab ab ab -cU -cU -cU -cU -je -pH -je -je -cU -cU -cU -cU -cU +cS +cS +cS +cS +ja +pD +ja +ja +cS +cS +cS +cS +cS ab ab ab @@ -45503,19 +45478,19 @@ ab ab ab ab -cU -cU -cU -cU -je -pH -je -je -cU -cU -cU -cU -cU +cS +cS +cS +cS +ja +pD +ja +ja +cS +cS +cS +cS +cS ab ab ab @@ -45761,18 +45736,18 @@ ab ab ab ab -cU -cU -cU -je -pH -je -je -cU -cU -cU -cU -cU +cS +cS +cS +ja +pD +ja +ja +cS +cS +cS +cS +cS ab ab ab @@ -46018,19 +45993,19 @@ ab ab ab ab -cU -cU -cU -je -pH -je -je -je -je -je -je -cU -cU +cS +cS +cS +ja +pD +ja +ja +ja +ja +ja +ja +cS +cS ab ab ab @@ -46275,19 +46250,19 @@ ab ab ab ab -cU -cU -cU -je -qc -pA -pA -pA -pA -pG -je -cU -cU +cS +cS +cS +ja +pY +pw +pw +pw +pw +pC +ja +cS +cS ab ab ab @@ -46532,19 +46507,19 @@ ab ab ab ab -cU -cU -cU -je -je -je -je -je -je -pH -je -cU -cU +cS +cS +cS +ja +ja +ja +ja +ja +ja +pD +ja +cS +cS ab ab ab @@ -46790,18 +46765,18 @@ ab ab ab ab -cU -cU -cU -cU -cU -cU -cU -je -pH -je -cU -cU +cS +cS +cS +cS +cS +cS +cS +ja +pD +ja +cS +cS ab ab ab @@ -47048,17 +47023,17 @@ ab ab ab ab -cU -cU -cU -cU -cU -cU -je -pH -je -je -cU +cS +cS +cS +cS +cS +cS +ja +pD +ja +ja +cS ab ab ab @@ -47305,17 +47280,17 @@ ab ab ab ab -cU -cU -cU -cU -cU -cU -pb -qm -mJ -je -cU +cS +cS +cS +cS +cS +cS +oX +qi +mF +ja +cS ab ab ab @@ -47562,17 +47537,17 @@ ab ab ab ab -cU -cU -cU -cU -cU -cU -od -qn -ov -je -cU +cS +cS +cS +cS +cS +cS +nZ +qj +or +ja +cS ab ab ab @@ -47708,17 +47683,17 @@ ab ab ab ab -cU -cU -cU -cU -cU -cU -cU -cU -cU -cU -cU +cS +cS +cS +cS +cS +cS +cS +cS +cS +cS +cS ab ab ab @@ -47820,17 +47795,17 @@ ab ab ab ab -cU -cU -cU -cU -cU -je -pH -je -je -cU -cU +cS +cS +cS +cS +cS +ja +pD +ja +ja +cS +cS ab ab ab @@ -47964,19 +47939,19 @@ ab ab ab ab -cU -kv -lF -ku -cU -mZ -mZ -je -je -mZ -mZ -cU -cU +cS +kr +lB +kq +cS +mV +mV +ja +ja +mV +mV +cS +cS ab ab ab @@ -48079,17 +48054,17 @@ ab ab ab ab -cU -cU -cU -je -pH -je -cU -cU -cU -cU -cU +cS +cS +cS +ja +pD +ja +cS +cS +cS +cS +cS ab ab ab @@ -48220,20 +48195,20 @@ ab ab ab ab -cU -cU -je -je -je -je -na -je -je -je -na -je -oT -cU +cS +cS +ja +ja +ja +ja +mW +ja +ja +ja +mW +ja +oP +cS ab ab ab @@ -48336,17 +48311,17 @@ ab ab ab ab -cU -cU -kv -pX -pH -je -je -je -cU -cU -cU +cS +cS +kr +pT +pD +ja +ja +ja +cS +cS +cS ab ab ab @@ -48476,21 +48451,21 @@ ab ab ab ab -cU -cU -je -je -je -je -je -je -je -je -je -je -je -oU -cU +cS +cS +ja +ja +ja +ja +ja +ja +ja +ja +ja +ja +ja +oQ +cS ab ab ab @@ -48587,24 +48562,24 @@ ab ab ab ab -wB -wB -wB -wB -wB +wx +wx +wx +wx +wx ab -cU -cU -cU -je -qc -pA -pG -je -cU -cU -cU -cU +cS +cS +cS +ja +pY +pw +pC +ja +cS +cS +cS +cS ab ab ab @@ -48733,21 +48708,21 @@ ab ab ab ab -cU -je -je -je -je -je -je -nb -je -je -je -je -je -oV -kv +cS +ja +ja +ja +ja +ja +ja +mX +ja +ja +ja +ja +ja +oR +kr ab ab ab @@ -48844,24 +48819,24 @@ ab ab ab ab -wB -xL -yv -yV -wB +wx +xH +yr +yR +wx ab -cU -cU -cU -je -je -je -pH -je -cU -cU -cU -cU +cS +cS +cS +ja +ja +ja +pD +ja +cS +cS +cS +cS ab ab ab @@ -48989,23 +48964,23 @@ ab ab ab ab -cU -cU -je -je -je -je -je -mD -mZ -mZ -nW -je -je -je -je -cU -cU +cS +cS +ja +ja +ja +ja +ja +mz +mV +mV +nS +ja +ja +ja +ja +cS +cS ab ab ab @@ -49101,25 +49076,25 @@ ab ab ab ab -wB -xM -xM -yW -wB +wx +xI +xI +yS +wx ab ab -cU -cU -cU -cU -je -pH -je -je -je -je -cU -cU +cS +cS +cS +cS +ja +pD +ja +ja +ja +ja +cS +cS ab ab ab @@ -49246,23 +49221,23 @@ ab ab ab ab -cU -je -je -je -je -je -je -je -nc -nc -nX -je -je -je -je -je -cU +cS +ja +ja +ja +ja +ja +ja +ja +mY +mY +nT +ja +ja +ja +ja +ja +cS ab ab ab @@ -49351,32 +49326,32 @@ ab ab ab ab +wu wy -wC ab ab ab ab -wB -wB -xN -yw -yX -wB -xn -xn -cU -cU -cU -cU -je -qc -pA -pA -pG -je -cU -cU +wx +wx +xJ +ys +yT +wx +xj +xj +cS +cS +cS +cS +ja +pY +pw +pw +pC +ja +cS +cS ab ab ab @@ -49503,23 +49478,23 @@ ab ab ab ab -cU -je -je -je -je -je -je -je -je -je -je -je -je -je -je -je -cU +cS +ja +ja +ja +ja +ja +ja +ja +ja +ja +ja +ja +ja +ja +ja +ja +cS ab ab ab @@ -49608,33 +49583,33 @@ ab ab ab ab -wz -wA -lN -wM -wO -wO -wZ +wv +ww +lJ +wI +wK +wK +wV +xf +xK +yr +yU +wx +Aa xj -xO -yv -yY -wB -Ae -xn -cU -cU -cU -cU -je -je -je -je -pH -je -cU -cU -cU +cS +cS +cS +cS +ja +ja +ja +ja +pD +ja +cS +cS +cS ab ab ab @@ -49760,23 +49735,23 @@ ab ab ab ab -cU -je -je -je -je -je -je -je -je -je -je -je -je -je -je -ku -cU +cS +ja +ja +ja +ja +ja +ja +ja +ja +ja +ja +ja +ja +ja +ja +kq +cS ab ab ab @@ -49865,33 +49840,33 @@ ab ab ab ab -wA -wD -kv +ww +wz +kr ab ab ab -wB -xk -xP -yx -yZ -wB -Af -xn -cU -BD -BD -BD -BD -je -je -je -pH -je -cU -cU -cU +wx +xg +xL +yt +yV +wx +Ab +xj +cS +Bz +Bz +Bz +Bz +ja +ja +ja +pD +ja +cS +cS +cS ab ab ab @@ -50017,23 +49992,23 @@ ab ab ab ab -cU -je -je -je -je -je -je -je -je -je -je -je -je -je -je -ku -cU +cS +ja +ja +ja +ja +ja +ja +ja +ja +ja +ja +ja +ja +ja +ja +kq +cS ab ab ab @@ -50128,27 +50103,27 @@ ab ab ab ab -wB -xl -xQ -yy -za -wB -Ag -xn -xn -BD -Ca -Cu -BD -je -je -je -pH -je -cU -cU -cU +wx +xh +xM +yu +yW +wx +Ac +xj +xj +Bz +BW +Cq +Bz +ja +ja +ja +pD +ja +cS +cS +cS ab ab ab @@ -50274,23 +50249,23 @@ ab ab ab ab -cU -cU -je -je -je -je -je -je -je -je -je -je -je -je -cU -cU -cU +cS +cS +ja +ja +ja +ja +ja +ja +ja +ja +ja +ja +ja +ja +cS +cS +cS ab ab ab @@ -50379,33 +50354,33 @@ ab ab ab ab -wB -wB -wB -wB -wB -wB -wB -wB -wB -wB -zb -zy -yz -AI -Bl -BE -Cb -Cv -BD -je -je -je -pH -je -cU -cU -cU +wx +wx +wx +wx +wx +wx +wx +wx +wx +wx +yX +zu +yv +AE +Bh +BA +BX +Cr +Bz +ja +ja +ja +pD +ja +cS +cS +cS ab ab ab @@ -50532,20 +50507,20 @@ ab ab ab ab -cU -je -je -je -je -je -je -je -je -je -je -je -je -cU +cS +ja +ja +ja +ja +ja +ja +ja +ja +ja +ja +ja +ja +cS ab ab ab @@ -50636,33 +50611,33 @@ ab ab ab ab -wB +wx +wA wE -wI -wB +wx +wA wE -wI -wB +wx +wA wE -wI -wB -zc -zz -yz -AJ -Bm -BF -Cc -Cw -BD -je -je -je -pH -je -cU -cU -cU +wx +yY +zv +yv +AF +Bi +BB +BY +Cs +Bz +ja +ja +ja +pD +ja +cS +cS +cS ab ab ab @@ -50789,20 +50764,20 @@ ab ab ab ab -cU -cU -je -je -je -je -je -je -je -je -je -je -je -cU +cS +cS +ja +ja +ja +ja +ja +ja +ja +ja +ja +ja +ja +cS ab ab ab @@ -50893,33 +50868,33 @@ ab ab ab ab +wx wB wF -wJ -wB -wP -wJ -wB -xm -wJ -wB -zd -zA -Ah -AK -yz -BE -Cd -Cx -BD -je -je -je -pH -je -cU -cU -cU +wx +wL +wF +wx +xi +wF +wx +yZ +zw +Ad +AG +yv +BA +BZ +Ct +Bz +ja +ja +ja +pD +ja +cS +cS +cS ab ab ab @@ -51047,16 +51022,16 @@ ab ab ab ab -cU -ku -je -je -je -je -je -je -je -je +cS +kq +ja +ja +ja +ja +ja +ja +ja +ja aa aa aa @@ -51102,7 +51077,7 @@ aa aa aa aa -gp +gl ab ab ab @@ -51150,33 +51125,33 @@ ab ab ab ab -wB -wB -wK -wB -wB -wT -wB -wB -xR -wB -ze -zy -yz -AL -yz -BG -BG -BG -BG -BG -je -je -pH -je -cU -cU -cU +wx +wx +wG +wx +wx +wP +wx +wx +xN +wx +za +zu +yv +AH +yv +BC +BC +BC +BC +BC +ja +ja +pD +ja +cS +cS +cS ab ab ab @@ -51305,15 +51280,15 @@ ab ab ab ab -kv -lb -je -je -je -je -nA -je -nA +kr +kX +ja +ja +ja +ja +nw +ja +nw aa aa aa @@ -51407,33 +51382,33 @@ ab ab ab ab -wB -wG -wL -wN +wx +wC +wH +wJ +wM wQ -wU +wM +wJ wQ -wN -wU -wQ -zf -zz -yz -AL -yz -BG -Ce -Cy -CO -CY -je -je -pH -je -cU -cU -cU +wM +zb +zv +yv +AH +yv +BC +Ca +Cu +CK +CU +ja +ja +pD +ja +cS +cS +cS ab ab ab @@ -51560,17 +51535,17 @@ ab ab ab ab -jf -je -je -je -je -je -je -je -nB -nY -nB +jb +ja +ja +ja +ja +ja +ja +ja +nx +nU +nx aa aa aa @@ -51664,33 +51639,33 @@ ab ab ab ab -wB -wB -wB -wB +wx +wx +wx +wx +wN wR -wV -xa -wB -wB -wB -wB -wB -Ai -AL -yz -BH -Cf -Cz -CP -CZ -Dp -DC -DM -je -cU -cU -cU +wW +wx +wx +wx +wx +wx +Ae +AH +yv +BD +Cb +Cv +CL +CV +Dl +Dy +DI +ja +cS +cS +cS ab ab ab @@ -51813,21 +51788,21 @@ ab aa aa aa -gp +gl ab ab ab -je -je -je +ja +ja +ja ae ae ae ae -nd -nC -nZ -or +mZ +ny +nV +on aa aa aa @@ -51924,30 +51899,30 @@ ab ab ab ab -cU -je -je -je -xn -xS -xS -xS -xn -Aj -AM -Bn -BI -Cg -CA -CA -BH -lN -pZ -pH -je -cU -cU -cU +cS +ja +ja +ja +xj +xO +xO +xO +xj +Af +AI +Bj +BE +Cc +Cw +Cw +BD +lJ +pV +pD +ja +cS +cS +cS ab ab ab @@ -52064,7 +52039,7 @@ ab ab ab ab -cU +cS ab ab aa @@ -52073,8 +52048,8 @@ aa aa aa ab -iv -je +ir +ja aa aa aa @@ -52082,9 +52057,9 @@ aa aa aa aa -nD -nZ -os +nz +nV +oo aa aa aa @@ -52181,33 +52156,33 @@ ab ab ab ab -cU -je -je -je -xn -xT -yz -yz -xn -Ak -AN -yz -BG -Ch -CB -CQ -BG -lN -pZ -pH -je -cU -cU -cU -cU -cU -cU +cS +ja +ja +ja +xj +xP +yv +yv +xj +Ag +AJ +yv +BC +Cd +Cx +CM +BC +lJ +pV +pD +ja +cS +cS +cS +cS +cS +cS ab ab ab @@ -52320,8 +52295,8 @@ ab ab ab ab -cU -cU +cS +cS ab aa aa @@ -52330,7 +52305,7 @@ aa aa aa aa -iw +is aa aa aa @@ -52339,9 +52314,9 @@ aa aa aa aa -nD -nZ -os +nz +nV +oo aa aa aa @@ -52397,7 +52372,7 @@ ab ab ab ab -cU +cS ab ab aa @@ -52438,34 +52413,34 @@ ab ab ab ab -cU -je -je -je -xo -xU -yz -zg -xn -Al -AL -Bo -BG -Ci -CC -CR -BG -lN -pZ -pH -je -cU -cU -cU -cU -cU -cU -cU +cS +ja +ja +ja +xk +xQ +yv +zc +xj +Ah +AH +Bk +BC +Ce +Cy +CN +BC +lJ +pV +pD +ja +cS +cS +cS +cS +cS +cS +cS ab ab ab @@ -52577,9 +52552,9 @@ ab ab ab ab -cU -cU -cU +cS +cS +cS aa aa aa @@ -52596,9 +52571,9 @@ aa aa aa aa -nD -nZ -os +nz +nV +oo aa aa aa @@ -52625,8 +52600,8 @@ ab ab ab ab -cU -cU +cS +cS ab ab ab @@ -52654,7 +52629,7 @@ ab ab ab ab -cU +cS ab ab aa @@ -52695,34 +52670,34 @@ ab ab ab ab -cU -je -je -je -xp -xV -yA -zh -zB -Am -AO -Bp -BG -BG -BG -BG -BG -lN -pZ -pH -je -cU -cU -cU -cU -cU -cU -cU +cS +ja +ja +ja +xl +xR +yw +zd +zx +Ai +AK +Bl +BC +BC +BC +BC +BC +lJ +pV +pD +ja +cS +cS +cS +cS +cS +cS +cS ab ab ab @@ -52834,7 +52809,7 @@ aa aa aa ab -cU +cS aa aa aa @@ -52853,9 +52828,9 @@ aa aa aa aa -nD -nZ -os +nz +nV +oo aa aa aa @@ -52882,9 +52857,9 @@ aa aa ab ab -cU -cU -cU +cS +cS +cS ab ab aa @@ -52910,9 +52885,9 @@ ab ab ab ab -cU -cU -cU +cS +cS +cS aa aa aa @@ -52952,34 +52927,34 @@ ab ab ab ab -kv -pX -je -je -xq -xU -yB -zi -xn -An -AP -Bq -BJ -Cj -CD -CS -lN -lN -pZ -pH -je -cU -cU -cU -cU -cU -cU -cU +kr +pT +ja +ja +xm +xQ +yx +ze +xj +Aj +AL +Bm +BF +Cf +Cz +CO +lJ +lJ +pV +pD +ja +cS +cS +cS +cS +cS +cS +cS ab ab ab @@ -53110,11 +53085,11 @@ aa aa aa aa -nD -nZ -os -cU -cU +nz +nV +oo +cS +cS aa aa aa @@ -53137,11 +53112,11 @@ aa aa aa aa -gp -gp -cU -cU -cU +gl +gl +cS +cS +cS ab aa aa @@ -53167,8 +53142,8 @@ aa aa ab ab -cU -cU +cS +cS ae aa aa @@ -53209,34 +53184,34 @@ ab ab ab ab -cU -je -je -je -xn -xW -yC -zj -xn -Ao -AQ -Br -BK -Ck -CE -CT -Da -lN -pZ -pH -je -cU -cU -cU -cU -cU -cU -cU +cS +ja +ja +ja +xj +xS +yy +zf +xj +Ak +AM +Bn +BG +Cg +CA +CP +CW +lJ +pV +pD +ja +cS +cS +cS +cS +cS +cS +cS ab ab ab @@ -53354,12 +53329,12 @@ aa aa aa aa -fJ -gq -gX -gX -ix -jg +fF +gm +gT +gT +it +jc aa aa aa @@ -53367,11 +53342,11 @@ aa aa aa ae -nD -nZ -os -cU -cU +nz +nV +oo +cS +cS ab ab ab @@ -53394,10 +53369,10 @@ ab aa aa aa -cU -cU +cS +cS ae -qd +pZ ae aa aa @@ -53424,8 +53399,8 @@ aa aa aa ab -cU -qd +cS +pZ ae aa aa @@ -53466,34 +53441,34 @@ ab ab ab ab -cU -cU -je -je -je -je -je -je -xn -Ao -AR -yz -BJ -Cl -CF -BJ -yu -yu -ov -pH -je -kv -cU -cU -cU -cU -cU -cU +cS +cS +ja +ja +ja +ja +ja +ja +xj +Ak +AN +yv +BF +Ch +CB +BF +yq +yq +or +pD +ja +kr +cS +cS +cS +cS +cS +cS ab ab ab @@ -53606,29 +53581,29 @@ aa aa ae ae -dr -dr -dr -dr -dr -fK -gr -gY -gs -gs -fK +dn +dn +dn +dn +dn +fG +gn +gU +go +go +fG aa aa aa aa aa ae -nd -nE -nZ -os -cU -cU +mZ +nA +nV +oo +cS +cS ab ab ab @@ -53650,11 +53625,11 @@ ab ab aa aa -cU -cU +cS +cS aa ae -qd +pZ ae aa aa @@ -53682,7 +53657,7 @@ aa aa aa ae -qd +pZ ae aa aa @@ -53724,33 +53699,33 @@ aa aa aa aa -cU -je -je -je -je -je -je -zC -Ap -AS -Bs -xn -xn -xn -xn -Db -je -je -pH -je -jf -je -cU -cU -cU -cU -cU +cS +ja +ja +ja +ja +ja +ja +zy +Al +AO +Bo +xj +xj +xj +xj +CX +ja +ja +pD +ja +jb +ja +cS +cS +cS +cS +cS ab ab ab @@ -53863,28 +53838,28 @@ aa aa ae ae -dr -dr -dr -dr -dr -fL -gs -gZ -gs -gs -fL +dn +dn +dn +dn +dn +fH +go +gV +go +go +fH ae aa aa aa ae ae -nd -nA -nY -nA -cU +mZ +nw +nU +nw +cS ab ab ab @@ -53907,11 +53882,11 @@ ab ab aa aa -cU -cU +cS +cS aa ae -qd +pZ ae aa aa @@ -53939,7 +53914,7 @@ aa aa aa ae -qd +pZ ae aa aa @@ -53965,7 +53940,7 @@ ab ab ab ab -cU +cS ab aa aa @@ -53982,32 +53957,32 @@ aa aa aa aa -je -je -je -je -je -je -zD -Aq -AT -Bt -BL -je -je -je -je -je -je -DN -sV -Ec -je -cU -cU -cU -cU -cU +ja +ja +ja +ja +ja +ja +zz +Am +AP +Bp +BH +ja +ja +ja +ja +ja +ja +DJ +sR +DY +ja +cS +cS +cS +cS +cS ab ab ab @@ -54120,28 +54095,28 @@ aa aa ae ae -dr -dr -dr -dr -dr -fM -gt -gZ -gs -iy -fM +dn +dn +dn +dn +dn +fI +gp +gV +go +iu +fI ae ae ae ae ae ae -nd -nB -je -nB -cU +mZ +nx +ja +nx +cS ab ab ab @@ -54168,7 +54143,7 @@ aa aa aa ae -qd +pZ ae aa aa @@ -54196,7 +54171,7 @@ aa aa aa ae -qd +pZ ae aa ab @@ -54221,9 +54196,9 @@ ab ab ab ab -cU -cU -cU +cS +cS +cS aa aa aa @@ -54240,31 +54215,31 @@ aa aa aa aa -je -je -je -je -je -je -xp -AU -xp -je -je -je -je -je -je -je -je -je -Ed -je -cU -cU -cU -cU -cU +ja +ja +ja +ja +ja +ja +xl +AQ +xl +ja +ja +ja +ja +ja +ja +ja +ja +ja +DZ +ja +cS +cS +cS +cS +cS ab ab ab @@ -54377,28 +54352,28 @@ aa aa ae ae -dr -dr -dr -dr -dr -fN -gu -gZ -hJ -iz -jg -jM -jM -jM -jM -jM -jM -je -je -je -je -cU +dn +dn +dn +dn +dn +fJ +gq +gV +hF +iv +jc +jI +jI +jI +jI +jI +jI +ja +ja +ja +ja +cS ab ab ab @@ -54425,7 +54400,7 @@ aa aa aa ae -qd +pZ ae aa aa @@ -54453,7 +54428,7 @@ aa aa aa ae -qd +pZ ae aa aa @@ -54478,8 +54453,8 @@ ab ab ab ab -cU -cU +cS +cS ae aa aa @@ -54497,31 +54472,31 @@ aa aa aa aa -je -je -je -je -je -je -xq -AT -xq -je -je -je -je -je -je -je -je -pb -Ee -mJ -cU -cU -cU -cU -cU +ja +ja +ja +ja +ja +ja +xm +AP +xm +ja +ja +ja +ja +ja +ja +ja +ja +oX +Ea +mF +cS +cS +cS +cS +cS ab ab ab @@ -54634,28 +54609,28 @@ aa aa ae ae -dr -dr -dr -dr -dr -fK -gv -gZ -gs -iA -jg -jN -kw -kw -lG -mg -jM -je -je -je -je -cU +dn +dn +dn +dn +dn +fG +gr +gV +go +iw +jc +jJ +ks +ks +lC +mc +jI +ja +ja +ja +ja +cS ab ab ab @@ -54682,7 +54657,7 @@ aa aa aa ae -qd +pZ ae aa aa @@ -54710,7 +54685,7 @@ aa aa aa ae -qd +pZ ae aa aa @@ -54755,30 +54730,30 @@ aa aa aa aa -je -je -je -je +ja +ja +ja +ja aa -Ar -AV -Bu -je -je -je -je -je -je -je -je -od -Ef -ov -cU -cU -cU -cU -cU +An +AR +Bq +ja +ja +ja +ja +ja +ja +ja +ja +nZ +Eb +or +cS +cS +cS +cS +cS ab ab ab @@ -54891,29 +54866,29 @@ aa aa ae ae -dr -dr -dr -dr -dr -fL -gs -ha -hK -iB -jg -jO -kx -kx -kx -mh -mE -ne -je -je -je -cU -cU +dn +dn +dn +dn +dn +fH +go +gW +hG +ix +jc +jK +kt +kt +kt +md +mA +na +ja +ja +ja +cS +cS ab ab ab @@ -54939,7 +54914,7 @@ aa aa aa ae -qd +pZ ae aa aa @@ -54967,7 +54942,7 @@ aa aa aa ae -qd +pZ ae aa aa @@ -54996,7 +54971,7 @@ ae aa ae aa -cU +cS aa aa aa @@ -55013,29 +54988,29 @@ aa aa aa aa -je -je +ja +ja aa aa -Ar -AV -Bu +An +AR +Bq aa -je -je -je -je -je -je -je -je -Ed -je -cU -cU -cU -cU -cU +ja +ja +ja +ja +ja +ja +ja +ja +DZ +ja +cS +cS +cS +cS +cS ab ab ab @@ -55147,30 +55122,30 @@ ab ab aa ae -cV -dr -dr -dr -dr -dr -fO -gw -hb -hL -gw -jg -jP -ky -lc -lH -mi -mF -lN -je -je -je -je -cU +cT +dn +dn +dn +dn +dn +fK +gs +gX +hH +gs +jc +jL +ku +kY +lD +me +mB +lJ +ja +ja +ja +ja +cS ab ab ab @@ -55196,7 +55171,7 @@ aa aa aa ae -qd +pZ ae aa aa @@ -55224,7 +55199,7 @@ aa aa aa ae -qd +pZ ae aa aa @@ -55252,9 +55227,9 @@ aa ae aa ae -cU -cU -cU +cS +cS +cS aa aa aa @@ -55274,23 +55249,23 @@ aa aa aa aa -Ar -AV -Bu +An +AR +Bq aa -je -je -je +ja +ja +ja aa ae -je -je -je -Ed -je -cU -cU -cU +ja +ja +ja +DZ +ja +cS +cS +cS ab ab ab @@ -55406,29 +55381,29 @@ ab ab ar aC -dN -eo +dJ +ek am aC -fP -gx -hc -gs -iC -jg -jQ -kz -ld -jQ -kz +fL +gt +gY +go +iy +jc jM -nf -je -je -je -je -cU -cU +kv +kZ +jM +kv +jI +nb +ja +ja +ja +ja +cS +cS ab ab ab @@ -55452,9 +55427,9 @@ aa aa aa aa -cU -cU -cU +cS +cS +cS ab ab ab @@ -55481,7 +55456,7 @@ aa aa aa ae -qd +pZ ae aa aa @@ -55509,9 +55484,9 @@ aa ae aa ae -cU -cU -cU +cS +cS +cS aa aa aa @@ -55531,9 +55506,9 @@ aa aa aa aa -Ar -AW -Bu +An +AS +Bq aa aa ae @@ -55541,13 +55516,13 @@ aa aa ae aa -je -je -Ed -je -je -je -cU +ja +ja +DZ +ja +ja +ja +cS ab ab ab @@ -55662,30 +55637,30 @@ ab ab ab ar -ds -dO -dO -dO -fk -fQ -gy -hd -hM -iD -jh -jR -kA -le -lI -mj -jM -jM -jM -jM -ot -je -cU -cU +do +dK +dK +dK +fg +fM +gu +gZ +hI +iz +jd +jN +kw +la +lE +mf +jI +jI +jI +jI +op +ja +cS +cS ab ab ab @@ -55709,8 +55684,8 @@ ab ab ab ab -cU -cU +cS +cS ab ab ab @@ -55729,16 +55704,16 @@ aa aa aa aa -je -je -je +ja +ja +ja aa aa aa aa aa ae -qd +pZ ae aa aa @@ -55765,9 +55740,9 @@ aa aa ae aa -cU -cU -cU +cS +cS +cS aa aa aa @@ -55788,9 +55763,9 @@ aa aa aa aa -Ar -AV -Bu +An +AR +Bq aa aa ae @@ -55799,13 +55774,13 @@ aa ae aa aa -rp -Eg -rp -je -ro -kv -cU +rl +Ec +rl +ja +rk +kr +cS ab ab ab @@ -55919,31 +55894,31 @@ ab ab ab ar -dt -dP -ep -ep -fl -fR -gz -he -gz -iE -jg -jS -kB -lf -lJ -lJ -mG -ng -nF -oa -mJ -je -cU -cU -cU +dp +dL +el +el +fh +fN +gv +ha +gv +iA +jc +jO +kx +lb +lF +lF +mC +nc +nB +nW +mF +ja +cS +cS +cS ab ab ab @@ -55967,7 +55942,7 @@ ab ab ab ab -cU +cS ab ab ab @@ -55985,17 +55960,17 @@ aa aa aa aa -je -je -je -je -je -je +ja +ja +ja +ja +ja +ja aa aa aa ae -qd +pZ ae aa aa @@ -56022,8 +55997,8 @@ aa aa ae aa -cU -cU +cS +cS aa aa aa @@ -56045,9 +56020,9 @@ aa aa aa aa -Ar -AV -Bu +An +AR +Bq ae ae ae @@ -56056,14 +56031,14 @@ ae ae aa aa -je -Ed -je -je -je -cU -cU -cU +ja +DZ +ja +ja +ja +cS +cS +cS ab ab ab @@ -56176,38 +56151,38 @@ aH aH aH ar -du -dQ -eq -eq -fm -fS -gA -hf -hN -iF -ji -jT -kC -lg -lK -mk -mH -nh -nG -ob -ou +dq +dM +em +em +fi +fO +gw +hb +hJ +iB je -cU -cU -cU -cU -cU -cU -cU -cU -cU -cU +jP +ky +lc +lG +mg +mD +nd +nC +nX +oq +ja +cS +cS +cS +cS +cS +cS +cS +cS +cS +cS ab ab ab @@ -56236,23 +56211,23 @@ ab ab ab ab -cU -cU -je -je -je -je -je -je -je -je -je -je -cU +cS +cS +ja +ja +ja +ja +ja +ja +ja +ja +ja +ja +cS ab aa ae -qd +pZ ae aa aa @@ -56302,9 +56277,9 @@ aa aa aa aa -Ar -AV -Bu +An +AR +Bq aa aa ae @@ -56314,13 +56289,13 @@ ae aa aa aa -Eh +Ed ae ae -je -cU -cU -cU +ja +cS +cS +cS ab ab ab @@ -56433,42 +56408,42 @@ bF bF bF ar -dv -dR -er -er -er -fS -gB -hg -hO -iG -ji -jU -jM -lh -lL -ml -mG -ni -nH -mG -ov +dr +dN +en +en +en +fO +gx +hc +hK +iC je -cU -cU -cU -cU -cU -cU -cU -cU -cU -cU -cU -cU -cU -cU +jQ +jI +ld +lH +mh +mC +ne +nD +mC +or +ja +cS +cS +cS +cS +cS +cS +cS +cS +cS +cS +cS +cS +cS +cS ab ab ab @@ -56493,23 +56468,23 @@ ab ab ab ab -cU -je -je -je -je -je -je -je -je -je -je -je -cU -cU +cS +ja +ja +ja +ja +ja +ja +ja +ja +ja +ja +ja +cS +cS ab -cU -qd +cS +pZ ae aa aa @@ -56559,9 +56534,9 @@ aa aa aa aa -Ar -AX -Bu +An +AT +Bq aa aa ae @@ -56571,13 +56546,13 @@ ae aa aa aa -Eh +Ed aa aa aa aa aa -cU +cS ab ab ab @@ -56688,50 +56663,50 @@ aX bi bG ce -cu +cs ar -dw -dR -es -eP -fn -fS -gC -hh -hP -iH -ji -jV -jM -jM -jM -jM -jM -jM -jM -jM -ow -mJ +ds +dN +eo +eL +fj +fO +gy +hd +hL +iD je -je -je -je -je -je -cU -cU -cU -cU -cU -cU -cU -cU -cU -cU -cU -cU -cU -cU +jR +jI +jI +jI +jI +jI +jI +jI +jI +os +mF +ja +ja +ja +ja +ja +ja +cS +cS +cS +cS +cS +cS +cS +cS +cS +cS +cS +cS +cS +cS ab ab ab @@ -56748,25 +56723,25 @@ ab ab ab ab -cU -cU -cU -je -je -je -je -je -je -je -je -je -je -je -je -cU +cS +cS +cS +ja +ja +ja +ja +ja +ja +ja +ja +ja +ja +ja +ja +cS ab -cU -qd +cS +pZ ae aa aa @@ -56816,9 +56791,9 @@ aa aa aa aa -Ar -AV -Bu +An +AR +Bq aa aa ae @@ -56828,7 +56803,7 @@ ae aa aa aa -Eh +Ed aa aa aa @@ -56945,85 +56920,85 @@ aY bj bH cf -cv -cW -dx -dS -et -eQ -ev -fT -fT -fT -fT -fT -fT -jW -kx -li -lM -mm -mI -nj -nI -oc -ox -oN -oQ -oQ -oQ -oQ -oX -je -je -je -je -je -je -je -je -cU -cU -cU -cU -cU -cU -cU -cU -cU -cU -cU -cU -cU -cU -cU -cU -cU -cU -cU +ct cU +dt +dO +ep +eM +er +fP +fP +fP +fP +fP +fP +jS +kt +le +lI +mi +mE +nf +nE +nY +ot +oJ +oM +oM +oM +oM +oT +ja +ja +ja +ja +ja +ja +ja +ja +cS +cS +cS +cS +cS +cS +cS +cS +cS +cS +cS +cS +cS +cS +cS +cS +cS +cS +cS +cS ab -cU -cU -cU -je -je -je -je -je -je -je -je -je -je -je -je -je -qt -kv +cS +cS +cS +ja +ja +ja +ja +ja +ja +ja +ja +ja +ja +ja +ja +ja +qp +kr ab -cU -cU +cS +cS ae aa aa @@ -57049,8 +57024,8 @@ aa aa aa ae -cU -cU +cS +cS ab ab ab @@ -57073,19 +57048,19 @@ aa aa aa aa -Ar -AV -Bu +An +AR +Bq ae -Cm +Ci ae ae ae ae ae ae -Cm -Eh +Ci +Ed aa aa aa @@ -57204,84 +57179,84 @@ aH aH aH ar -dy -dT -eu -eu -eu -fT -gD -hi -hj -iI -jj -jX -kD -fT -fT -fT -fT -fT -je -od -oy -ov -je -je -je -je -oY -oQ -oQ -oQ -oQ -pm -pA -pG -je -cU -cU -cU -cU -cU -cU -cU -cU -cU -cU -cU -cU -kv -cU -je -je -je -je -je -cU -cU -cU -je -je -je -je -je -je -je -je -je -je -je -je -je -je -je -je -cU +du +dP +eq +eq +eq +fP +gz +he +hf +iE +jf +jT +kz +fP +fP +fP +fP +fP +ja +nZ +ou +or +ja +ja +ja +ja +oU +oM +oM +oM +oM +pi +pw +pC +ja +cS +cS +cS +cS +cS +cS +cS +cS +cS +cS +cS +cS +kr +cS +ja +ja +ja +ja +ja +cS +cS +cS +ja +ja +ja +ja +ja +ja +ja +ja +ja +ja +ja +ja +ja +ja +ja +ja +cS ab -cU -cU -cU +cS +cS +cS aa aa aa @@ -57305,9 +57280,9 @@ aa aa aa ab -cU -cU -cU +cS +cS +cS ab ab ab @@ -57330,19 +57305,19 @@ aa aa aa aa -Ar -AV -Bu +An +AR +Bq aa ae -CG -CG -CG -CG -CG -CG -CG -Eh +CC +CC +CC +CC +CC +CC +CC +Ed aa aa aa @@ -57459,86 +57434,86 @@ aj bl bI cg -cw +cu ar -dz -dR -ev -ev -fo -fT -gE -hj -hQ -iJ -fT -jY -fT -fT -lN -mn -lN -je -je -je -oz -je -je -je -je -je -je -je -je -je -je -pn -je -pH -je -je -pb -mJ -je -je -je -je -je -je -je -je -je -jf -je -je -je -je -je -je -je -je -je -je -je -qe -pA -pA -pA -pA -pA -pA -pA -pA -pA -pA -pG -je -je -cU +dv +dN +er +er +fk +fP +gA +hf +hM +iF +fP +jU +fP +fP +lJ +mj +lJ +ja +ja +ja +ov +ja +ja +ja +ja +ja +ja +ja +ja +ja +ja +pj +ja +pD +ja +ja +oX +mF +ja +ja +ja +ja +ja +ja +ja +ja +ja +jb +ja +ja +ja +ja +ja +ja +ja +ja +ja +ja +ja +qa +pw +pw +pw +pw +pw +pw +pw +pw +pw +pw +pC +ja +ja +cS ab ab -cU -cU +cS +cS ab ab ab @@ -57562,8 +57537,8 @@ aa aa aa ab -cU -cU +cS +cS ab ab ab @@ -57583,23 +57558,23 @@ ab ab ab ab -cU -je +cS +ja aa aa -Ar -AW -Bu +An +AS +Bq aa ae -CG -CG -CG -CG -CG -CG -CG -Eh +CC +CC +CC +CC +CC +CC +CC +Ed aa aa aa @@ -57716,85 +57691,85 @@ aj bm bJ bK -cx +cv ar -dA -dQ -ew -eR -fp -fT -gE -hk -hR -iK -jk -jZ -kE -lj -lO -lO -mJ -nk -je -je -oz -je -cU -cU -cU -cU -cU -cU -cU -je -je -pn -je -pI -pA -pA +dw +dM +es +eN +fl +fP +gA +hg +hN +iG +jg +jV +kA +lf +lK +lK +mF +ng +ja +ja +ov +ja +cS +cS +cS +cS +cS +cS +cS +ja +ja +pj +ja +pE +pw +pw +pW +pX +pw +pw +pw +pw +pw +pw +pw +pC +ja +ja +ja +ja +ja +ja +oX +mF +ja qa +pw +pw +pw qb -pA -pA -pA -pA -pA -pA -pA -pG -je -je -je -je -je -je -pb -mJ -je -qe -pA -pA -pA -qf -je -je -je -je -je -je -je -je -je -je -pH -je -je -cU +ja +ja +ja +ja +ja +ja +ja +ja +ja +ja +pD +ja +ja +cS ab ab -cU +cS ab ab ab @@ -57840,23 +57815,23 @@ ab ab ab ab -cU -je +cS +ja aa aa -Ar -AV -Bu +An +AR +Bq aa ae -CG -CG -CG -CG -CG -CG -CG -Eh +CC +CC +CC +CC +CC +CC +CC +Ed aa aa aa @@ -57973,82 +57948,82 @@ aj bn bK ch -cy +cw ar -dB -dU +dx +dQ ar ar ar -fT -fT -hl -hS -fT -jl -ka -kF -lk -lP -lP -mK -nl -je -je -oz -cU -cU -ab -ab -ab -ab -ab -cU -je -je -pn -je -pJ -je -je -od +fP +fP +hh +hO +fP +jh +jW +kB +lg +lL +lL +mG +nh +ja +ja ov -je -je -je -je -je -je -je -qc -pA -pA -pA -pA -pA -pA -qa +cS +cS +ab +ab +ab +ab +ab +cS +ja +ja +pj +ja +pF +ja +ja +nZ +or +ja +ja +ja +ja +ja +ja +ja +pY +pw +pw +pw +pw +pw +pw +pW +pX +pw qb -pA -qf -je -je -qg -je -je -je -je -je -je -je -je -je -je -pb -qm -mJ -je -cU +ja +ja +qc +ja +ja +ja +ja +ja +ja +ja +ja +ja +ja +oX +qi +mF +ja +cS ab ab ab @@ -58096,24 +58071,24 @@ ab ab ab ab -cU -cU -je -je +cS +cS +ja +ja aa -Ar -AV -Bu +An +AR +Bq aa ae -CG -CG -CG -CG -CG -CG -CG -Eh +CC +CC +CC +CC +CC +CC +CC +Ed aa aa aa @@ -58230,82 +58205,82 @@ aj bo bL ci -cz -cX -dC -dV -ex -eS -fq -fU -gF -hm -hT -fT -jm -kb -iL -iL -iL -iL -iL -iL -iL -oe -oA -iL +cx +cV +dy +dR +et +eO +fm +fQ +gB +hi +hP +fP +ji +jX +iH +iH +iH +iH +iH +iH +iH +oa +ow +iH ab ab ab ab ab ab -cU -je -je -oz -je -pJ -je -je -je -je -je -je -je -cU -cU -je -je -je -je -je -je -je -je -je -od +cS +ja +ja ov -je -je -je -cU -kv -cU -cU -je -je -je -je -je -je -je -je -od -qn -ov -je -cU +ja +pF +ja +ja +ja +ja +ja +ja +ja +cS +cS +ja +ja +ja +ja +ja +ja +ja +ja +ja +nZ +or +ja +ja +ja +cS +kr +cS +cS +ja +ja +ja +ja +ja +ja +ja +ja +nZ +qj +or +ja +cS ab ab ab @@ -58351,26 +58326,26 @@ ab ab ab ab -iv -kv -kv -kv -je -je +ir +kr +kr +kr +ja +ja aa -Ar -AV -Bu +An +AR +Bq aa ae -CG -CG -CG -CG -CG -CG -CG -Eh +CC +CC +CC +CC +CC +CC +CC +Ed aa aa aa @@ -58487,83 +58462,83 @@ aA bp bJ cj -cA +cy ar -dD -dW -ey -eT -df -dL -dL -gc -hU -iL -iL -kc -iL -ll -lQ -mo -mL -nm -nJ -of -oB -iL +dz +dS +eu +eP +dd +dH +dH +fY +hQ +iH +iH +jY +iH +lh +lM +mk +mH +ni +nF +ob +ox +iH ab ab ab ab ab ab -cU -oZ -pb -po -pa -pK -pa -je -je -je -je -cU -cU -cU -cU -cU -cU -cU -cU -cU -cU -cU -je -je -je -je -je -cU -cU -cU +cS +oV +oX +pk +oW +pG +oW +ja +ja +ja +ja +cS +cS +cS +cS +cS +cS +cS +cS +cS +cS +cS +ja +ja +ja +ja +ja +cS +cS +cS ab ab -cU -cU -cU -cU -cU -cU -cU -je -je -je -pH -je -je -cU -cU +cS +cS +cS +cS +cS +cS +cS +ja +ja +ja +pD +ja +ja +cS +cS ab ab ab @@ -58608,26 +58583,26 @@ ab ab ab ab -kv -xb -xr -xX -je -je -je -zl -AY -zl +kr +wX +xn +xT +ja +ja +ja +zh +AU +zh ae -Cm +Ci ae ae -Dc -Dq -zl -DO -Cm -Eh +CY +Dm +zh +DK +Ci +Ed aa aa aa @@ -58744,147 +58719,147 @@ aA bq bM aj -cB +cz ar ar -dX +dT ar ar -fr -fV -gG -hn -hV -iL -jn -kd -kG -lm -lR -iL -mM -nn -nK -nn -oC -iL -ab -ab -ab -ab -ab -ab -cU -pa -pc -pp -pa -pL -pa -je -je -je -je -ku -cU -ab -ab -ab -ab -ab -ab -ab -ab -cU -cU -cU -cU -cU -cU -cU -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -cU -cU -je -je -pH -je -je -je -cU -cU -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 -ab -ab -ab -ab -ab -ab -ab -kv -uC +fn +fR +gC +hj +hR +iH +jj +jZ +kC +li lN -pZ -je -je -je -As -AZ -As +iH +mI +nj +nG +nj +oy +iH +ab +ab +ab +ab +ab +ab +cS +oW +oY +pl +oW +pH +oW +ja +ja +ja +ja +kq +cS +ab +ab +ab +ab +ab +ab +ab +ab +cS +cS +cS +cS +cS +cS +cS +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +cS +cS +ja +ja +pD +ja +ja +ja +cS +cS +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 +ab +ab +ab +ab +ab +ab +ab +kr +uy +lJ +pV +ja +ja +ja +Ao +AV +Ao aa ae aa aa -As -Dr -As +Ao +Dn +Ao aa aa -Eh +Ed aa aa aa @@ -59001,30 +58976,30 @@ aZ br bN aq -cC -cY -dE -dY -ez -eU -fs -fW -gH -ho -hW -iM -jo -ke -kH -ln -lS -mp -mN -nn -nL -nn -oD -iL +cA +cW +dA +dU +ev +eQ +fo +fS +gD +hk +hS +iI +jk +ka +kD +lj +lO +ml +mJ +nj +nH +nj +oz +iH ab ab ab @@ -59032,18 +59007,18 @@ ab ab ab ab -pa -pd -pq -pa -pM -pa -pX -je -je -je -cU -cU +oW +oZ +pm +oW +pI +oW +pT +ja +ja +ja +cS +cS ab ab ab @@ -59070,17 +59045,17 @@ ab ab ab ab -cU -je -je -pH -je -je -je -je -cU -cU -cU +cS +ja +ja +pD +ja +ja +ja +ja +cS +cS +cS ab ab ab @@ -59111,37 +59086,37 @@ ab ab ab ab -cU -cU -cU -cU -cU +cS +cS +cS +cS +cS ab ab ab ab ab ab -kv -xc -lN -pZ -je -je -zE -At -AY -Bv -BM +kr +wY +lJ +pV +ja +ja +zA +Ap +AU +Br +BI ae aa -zE -Dd -Ds -Bv -BM +zA +CZ +Do +Br +BI aa -Eh +Ed aa aa aa @@ -59258,30 +59233,30 @@ aZ bs bs aj -cD -cZ -dF -dZ -eA +cB +cX +dB +dV +ew ar -ft +fp al -gI -dL -hX -iN -iN -iN -iN -iN -iN -iN -iN -no -no -no -no -no +gE +dH +hT +iJ +iJ +iJ +iJ +iJ +iJ +iJ +iJ +nk +nk +nk +nk +nk ab ab ab @@ -59289,17 +59264,56 @@ ab ab ab ab +oW pa -pe -pr -pa -pN -pa +pn +oW +pJ +oW +pU +ja +ja +ja +cS +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 +cS +ja +ja pY -je -je -je -cU +pw +pC +ja +ja +ja +ja +cS +cS ab ab ab @@ -59327,108 +59341,69 @@ ab ab ab ab -cU -je -je -qc -pA -pG -je -je -je -je -cU -cU +cS +cS +cS +cS +cS +cS +cS +cS +cS +cS 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 -cU -cU -cU -cU -cU -cU -cU -cU -cU -cU -ab -ab -ab -kv -xd -xs -xY -je -zk -zm -Au -Ba -Bw -zm -zk -zk -zm -De -Dt -DD -zm +kr +wZ +xo +xU +ja +zg +zi +Aq +AW +Bs +zi +zg +zg +zi +Da +Dp +Dz +zi +aa +Ee +Eo +Ep +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ab +aa +aa +aa +aa +aa +aa +aa +aa +aa aa -Ei Es -Et -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -Ew -Ew +Es aa aa aa @@ -59515,30 +59490,30 @@ ba bt bO ck -cE -da -dG -ea -eB +cC +cY +dC +dW +ex ar -fu -fX -gJ -dL -hY -iO -jp -kf -kI -lo -lT -mq -mO -np -nM -og -oE -no +fq +fT +gF +dH +hU +iK +jl +kb +kE +lk +lP +mm +mK +nl +nI +oc +oA +nk ab ab ab @@ -59546,17 +59521,17 @@ ab ab ab ab -pa -pf -ps -pa -pO -pW -pZ -je -je -je -cU +oW +pb +po +oW +pK +pS +pV +ja +ja +ja +cS ab ab ab @@ -59584,18 +59559,18 @@ ab ab ab ab -cU -je -je -je -je -pH -je -je -je -je -je -cU +cS +ja +ja +ja +ja +pD +ja +ja +ja +ja +ja +cS ab ab ab @@ -59613,52 +59588,52 @@ ab ab ab ab -cU -cU -kv -cU -cU -cU -cU +cS +cS +kr +cS +cS +cS +cS ab -cU -cU -cU -cU -cU -cU -cU -cU -cU -cU -cU -cU -cU -cU -cU -kv -xe -xt -xZ -je -zk -zF -Av -Bb -Bx -BN -Cn -CH -Av -Df -Du -Av -DP -DU -Ej -DU -Eu -rp +cS +cS +cS +cS +cS +cS +cS +cS +cS +cS +cS +cS +cS +cS +cS +kr +xa +xp +xV +ja +zg +zB +Ar +AX +Bt +BJ +Cj +CD +Ar +Db +Dq +Ar +DL +DQ +Ef +DQ +Eq +rl aa aa aa @@ -59674,19 +59649,19 @@ aa aa aa aa -Ew -Ew -Ew -Ew -Ew -Ew -Ew -Ew -Ew -Ew -Ew -Ew -Ew +Es +Es +Es +Es +Es +Es +Es +Es +Es +Es +Es +Es +Es aa aa aa @@ -59772,30 +59747,30 @@ aC aC aC ar -cF -db -dH -eb -eC +cD +cZ +dD +dX +ey ar -fv -fY -gK -hp -hZ -iP -jq -kg -kJ -lp -lU -kK -mP -nq -nN -oh -oF -no +fr +fU +gG +hl +hV +iL +jm +kc +kF +ll +lQ +kG +mL +nm +nJ +od +oB +nk ab ab ab @@ -59803,17 +59778,17 @@ ab ab ab ab -pa -pg -pt -pa -pP -pa -pZ -je -je -cU -cU +oW +pc +pp +oW +pL +oW +pV +ja +ja +cS +cS ab ab ab @@ -59841,18 +59816,18 @@ ab ab ab ab -cU -cU -je -je -je -qc -pA -pA -pG -je -je -cU +cS +cS +ja +ja +ja +pY +pw +pw +pC +ja +ja +cS ab ab ab @@ -59867,60 +59842,60 @@ ab ab ab ab -cU -cU -cU -cU -je -jf -je -je -cU -cU -cU -cU -cU -cU -cU -cU -cU -cU -cU -cU -cU -cU -cU -cU -cU -cU -je -je -je -je -je -zl -zG -Aw -Bc -By -BO -Co -CI -CU -Dg -Dv -DE -DQ -DV -Ek -zk -tX -cU -cU -cU -cU -cU -cU +cS +cS +cS +cS +ja +jb +ja +ja +cS +cS +cS +cS +cS +cS +cS +cS +cS +cS +cS +cS +cS +cS +cS +cS +cS +cS +ja +ja +ja +ja +ja +zh +zC +As +AY +Bu +BK +Ck +CE +CQ +Dc +Dr +DA +DM +DR +Eg +zg +tT +cS +cS +cS +cS +cS +cS aa aa aa @@ -59932,18 +59907,18 @@ aa aa aa aa -Ew -Ew -Ew -Ew -Ew -Ew -Ew -Ew -Ew -Ew -Ew -Ew +Es +Es +Es +Es +Es +Es +Es +Es +Es +Es +Es +Es aa aa aa @@ -60029,30 +60004,30 @@ aC bu bP ar -cG -dc -dI -ec -eD +cE +da +dE +dY +ez ar ar ar ar -df -ia -iN -jr -kh -kK -lq -lV -mr -mQ -nr -nO -oi -oG -no +dd +hW +iJ +jn +kd +kG +lm +lR +mn +mM +nn +nK +oe +oC +nk ab ab ab @@ -60060,17 +60035,17 @@ ab ab ab ab -pa -ph -pu -pB -pQ -pa -cU -cU -cU -cU -cU +oW +pd +pq +px +pM +oW +cS +cS +cS +cS +cS ab ab ab @@ -60099,86 +60074,86 @@ ab ab ab ab -cU -cU -cU -je -je -je -je -pH -je -je -cU -cU +cS +cS +cS +ja +ja +ja +ja +pD +ja +ja +cS +cS ab ab ab ab ab ab -cU -cU -cU -cU -cU -cU -cU -cU -je -je -je -je -pb -mJ -je -je -je -je -je -je -je -je -je -je -je -je -je -je -je -je -je -je -je -je -pb -rN -rN -mJ -zm -zH -Ax -Av -Av -BP -Cp -Av -CV -Dh -Av -DF -Av -Dh -Av -zl -tX -cU -cU -cU -cU -cU -cU -cU +cS +cS +cS +cS +cS +cS +cS +cS +ja +ja +ja +ja +oX +mF +ja +ja +ja +ja +ja +ja +ja +ja +ja +ja +ja +ja +ja +ja +ja +ja +ja +ja +ja +ja +oX +rJ +rJ +mF +zi +zD +At +Ar +Ar +BL +Cl +Ar +CR +Dd +Ar +DB +Ar +Dd +Ar +zh +tT +cS +cS +cS +cS +cS +cS +cS aa aa aa @@ -60189,18 +60164,18 @@ aa aa aa aa -Ew -Ew -Ew -Ew -Ew -Ew -Ew -Ew -Ew -Ew -Ew -Ew +Es +Es +Es +Es +Es +Es +Es +Es +Es +Es +Es +Es aa aa aa @@ -60286,30 +60261,30 @@ aC bv bQ ar -cH -dd -dJ -ed -eE -dX -fw -fZ -gL -dL -ib -iQ -js -ki -kL -lr -js -ms -mR -no -no -no -no -no +cF +db +dF +dZ +eA +dT +fs +fV +gH +dH +hX +iM +jo +ke +kH +ln +jo +mo +mN +nk +nk +nk +nk +nk ab ab ab @@ -60317,12 +60292,12 @@ ab ab ab ab -pa -pi -pv -pC -pR -pa +oW +pe +pr +py +pN +oW ab ab ab @@ -60358,85 +60333,85 @@ ab ab ab ab -cU -je -je -je -je -pH -je -je -je -cU +cS +ja +ja +ja +ja +pD +ja +ja +ja +cS ab ab ab ab ab ab -cU -je -je -je -je -je -je -je -je -je -qe -sV -tn -uB -sV -sV -sV -sV -sV -sV -sV -sV -sV -sV -sV -sV -sV -sV -sV -sV -sV -sV -sV -sV -tn -xu -ya -ya -ya -zI -Ay -Bd -ya -BQ -Cq -CJ -Cq -Di -Av -DF -Av -DW -El -zm -tX -cU -cU -cU -cU -cU -cU -cU -cU +cS +ja +ja +ja +ja +ja +ja +ja +ja +ja +qa +sR +tj +ux +sR +sR +sR +sR +sR +sR +sR +sR +sR +sR +sR +sR +sR +sR +sR +sR +sR +sR +sR +sR +tj +xq +xW +xW +xW +zE +Au +AZ +xW +BM +Cm +CF +Cm +De +Ar +DB +Ar +DS +Eh +zi +tT +cS +cS +cS +cS +cS +cS +cS +cS aa aa aa @@ -60445,19 +60420,19 @@ aa aa aa aa -Ew -Ew -Ew -Ew -Ew -Ew -Ew -Ew -Ew -Ew -Ew -Ew -Ew +Es +Es +Es +Es +Es +Es +Es +Es +Es +Es +Es +Es +Es aa aa aa @@ -60546,27 +60521,27 @@ ar ar ar ar -ee +ea ar ar -fx -ga -gM -dL -ic -iN -jt -jw -kM -ls -lW -mt -mS -ns -nP -oj -oH -oO +ft +fW +gI +dH +hY +iJ +jp +js +kI +lo +lS +mp +mO +no +nL +of +oD +oK ab ab ab @@ -60574,127 +60549,127 @@ ab ab ab ab -pa -pj +oW +pf +ps +pz +pO +oW +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 +cS +cS +cS +ja +ja +pY pw -pD -pS -pa +pC +rk +kr +cS 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 -cU -cU -cU -je -je +cS +cS +ja +qa +pw +pw +pw +pw +pw +pw +pw +vv +ja +nZ +or +ja +ja +ja +ja +ja +ja +ja +ja +ja +ja +ja qc -pA -pG -ro -kv -cU -ab -ab -ab -ab -cU -cU -je -qe -pA -pA -pA -pA -pA -pA -pA -vz -je -od -ov -je -je -je -je -je -je -je -je -je -je -je -qg -je -je -je -je -je -je -je -je -od -tW -yb -yD -zn -zJ -Az -Be -yb -BR -Cq -CK -Cq -Dj +ja +ja +ja +ja +ja +ja +ja +ja +nZ +tS +xX +yz +zj +zF Av -DF -Av -DX -Av -zk -tX -cU -cU -cU -cU -cU -cU -cU -cU -cU +Ba +xX +BN +Cm +CG +Cm +Df +Ar +DB +Ar +DT +Ar +zg +tT +cS +cS +cS +cS +cS +cS +cS +cS +cS aa aa aa @@ -60706,19 +60681,19 @@ aa aa aa aa -Ew -Ew -Ew -Ew -Ew -Ew -Ew -Ew -Ew -Ew -Ew -Ew -Ew +Es +Es +Es +Es +Es +Es +Es +Es +Es +Es +Es +Es +Es aa aa aa @@ -60800,30 +60775,30 @@ bb bw bS cl -cI -de -dK -ef -eF -eV -fy -gb -gN -gb -id -iR -ju -ju -kN -lt -lX -mu -mT -nt -nQ -ok -oI -oO +cG +dc +dG +eb +eB +eR +fu +fX +gJ +fX +hZ +iN +jq +jq +kJ +lp +lT +mq +mP +np +nM +og +oE +oK ab ab ab @@ -60831,12 +60806,12 @@ ab ab ab ab -pa -pa -px -pa -pT -pa +oW +oW +pt +oW +pP +oW ab ab ab @@ -60874,82 +60849,82 @@ ab ab ab ab -cU -cU -je -je -je -pH -je -je -cU -cU -cU +cS +cS +ja +ja +ja +pD +ja +ja +cS +cS +cS ab ab -cU -cU -je -pH -je -je -je -je -je -je -je -je -je -je -je -je -cU -cU -cU -cU -cU -cU -cU -cU -cU -cU -kv -cU -cU -cU -cU -je -je -je -je -je -xv -yc -yD -zo -zJ -AA -zo -yb -BS -Cq -CL -Cq -Dk -Dw -DG -DR -DY -Em -Cq -tX -cU -cU -cU -cU -cU -cU -cU +cS +cS +ja +pD +ja +ja +ja +ja +ja +ja +ja +ja +ja +ja +ja +ja +cS +cS +cS +cS +cS +cS +cS +cS +cS +cS +kr +cS +cS +cS +cS +ja +ja +ja +ja +ja +xr +xY +yz +zk +zF +Aw +zk +xX +BO +Cm +CH +Cm +Dg +Ds +DC +DN +DU +Ei +Cm +tT +cS +cS +cS +cS +cS +cS +cS ab ab ab @@ -60963,19 +60938,19 @@ aa aa aa aa -Ew -Ew -Ew -Ew -Ew -Ew -Ew -Ew -Ew -Ew -Ew -Ew -Ew +Es +Es +Es +Es +Es +Es +Es +Es +Es +Es +Es +Es +Es aa aa aa @@ -61057,30 +61032,30 @@ bc bx bT cm -cJ -df -dL -eg -eG -dL -dL -gc -gO -gc -hY -iS -jv -kj -kO -lu -lY -mv -mU -nu -nR -ol -oJ -oO +cH +dd +dH +ec +eC +dH +dH +fY +gK +fY +hU +iO +jr +kf +kK +lq +lU +mr +mQ +nq +nN +oh +oF +oK ab ab ab @@ -61088,12 +61063,12 @@ ab ab ab ab -pa -pk -py -pE -pU -pa +oW +pg +pu +pA +pQ +oW ab ab ab @@ -61132,80 +61107,80 @@ ab ab ab ab -cU -je -je -je -pH -je -je -je -je -cU -cU -cU -cU -cU -je -pH -je -cU -cU -cU -cU -cU -cU -cU -cU -cU -cU -cU -cU -cU -cU -cU -cU -cU -cU -cU -cU +cS +ja +ja +ja +pD +ja +ja +ja +ja +cS +cS +cS +cS +cS +ja +pD +ja +cS +cS +cS +cS +cS +cS +cS +cS +cS +cS +cS +cS +cS +cS +cS +cS +cS +cS +cS +cS ab ab ab ab -cU -cU -cU -je -je -je -je -xw -yd -yD -zp -zK -AA -zo -yb -BS -Cq -BS -Cq -Dl -Dx -DH -DS -DZ -En -Cq -tX -cU -cU -cU -cU -cU -cU +cS +cS +cS +ja +ja +ja +ja +xs +xZ +yz +zl +zG +Aw +zk +xX +BO +Cm +BO +Cm +Dh +Dt +DD +DO +DV +Ej +Cm +tT +cS +cS +cS +cS +cS +cS ab ab ab @@ -61218,22 +61193,22 @@ aa aa aa aa -Ew -Ew -Ew -Ew -Ew -Ew -Ew -Ew -Ew -Ew -Ew -Ew -Ew -Ew -Ew -Ew +Es +Es +Es +Es +Es +Es +Es +Es +Es +Es +Es +Es +Es +Es +Es +Es aa aa aa @@ -61314,30 +61289,30 @@ aC aC bU aC -cK -dg -dg -eh +cI +de +de +ed aC aC aC aC aC -hq -hY -iS -jw -kk -kP -kI -jw -lU -mV -nv -nv -nv -nv -nv +hm +hU +iO +js +kg +kL +kE +js +lQ +mR +nr +nr +nr +nr +nr ab ab ab @@ -61345,12 +61320,12 @@ ab ab ab ab -pa -pl -pz -pF -pV -pa +oW +ph +pv +pB +pR +oW ab ab ab @@ -61389,40 +61364,40 @@ ab ab ab ab -cU -cU -je -je -qc -pA -pA -pG -je -cU -cU -cU -cU -cU -je -pH -je -cU -cU -cU -cU -cU +cS +cS +ja +ja +pY +pw +pw +pC +ja +cS +cS +cS +cS +cS +ja +pD +ja +cS +cS +cS +cS +cS ab ab ab ab ab ab -cU -cU -cU -cU -cU -cU +cS +cS +cS +cS +cS +cS ab ab ab @@ -61431,38 +61406,38 @@ ab ab ab ab -cU -cU -cU -je -je -je -xw -yb -yE -zq -zL -AB -zo -yb -BT -Cr -BS -Cq -Dm -Dy -DH -Dy -Ea -Eo -Cq -tX -cU -cU -cU -cU -cU -cU +cS +cS +cS +ja +ja +ja +xs +xX +yA +zm +zH +Ax +zk +xX +BP +Cn +BO +Cm +Di +Du +DD +Du +DW +Ek +Cm +tT +cS +cS +cS +cS +cS +cS ab ab ab @@ -61473,25 +61448,25 @@ aa aa aa aa -Ew -Ew -Ew -Ew -Ew -Ew -Ew -Ew -Ew -Ew -Ew -Ew -Ew -Ew -Ew -Ew -Ew -Ew -Ew +Es +Es +Es +Es +Es +Es +Es +Es +Es +Es +Es +Es +Es +Es +Es +Es +Es +Es +Es aa aa aa @@ -61572,29 +61547,29 @@ by bV cn by -dh -dh -ei -eH -eW -fz -gd +df +df +ee +eD +eS +fv +fZ aC -hr -hY -iS -jw -jw -kQ -lv -lZ -lU -mW -nw -nS -om -oK -nv +hn +hU +iO +js +js +kM +lr +lV +lQ +mS +ns +nO +oi +oG +nr ab ab ab @@ -61602,12 +61577,12 @@ ab ab ab ab -pa -pa -pa -pa -pa -pa +oW +oW +oW +oW +oW +oW ab ab ab @@ -61647,25 +61622,25 @@ ab ab ab ab -cU -cU -je -je -je -je -pH -je -pb -rN -mJ -je -je -je -pH -je -cU -cU -cU +cS +cS +ja +ja +ja +ja +pD +ja +oX +rJ +mF +ja +ja +ja +pD +ja +cS +cS +cS ab ab ab @@ -61688,38 +61663,38 @@ ab ab ab ab -cU -cU -cU -cU -je -je -xw -yb -yb -yb -zM -AC -zM -yb -BU -Cq -CM -Cq -Dn -Dz -DI -Dy -Eb -Ep -Cq -tX -cU -cU -cU -cU -cU -cU +cS +cS +cS +cS +ja +ja +xs +xX +xX +xX +zI +Ay +zI +xX +BQ +Cm +CI +Cm +Dj +Dv +DE +Du +DX +El +Cm +tT +cS +cS +cS +cS +cS +cS ab ab ab @@ -61731,24 +61706,24 @@ aa aa aa aa -Ew -Ew -Ew -Ew -Ew -Ew -Ew -Ew -Ew -Ew -Ew -Ew -Ew -Ew -Ew -Ew -Ew -Ew +Es +Es +Es +Es +Es +Es +Es +Es +Es +Es +Es +Es +Es +Es +Es +Es +Es +Es aa aa aa @@ -61829,29 +61804,29 @@ bz bW bW by -di -dh -ej -eH -eX -fA -ge -gP -hs -ie -iS -jw -jw -kR -lw -jw -mw -mX -nx -nT -on -oL -nv +dg +df +ef +eD +eT +fw +ga +gL +ho +ia +iO +js +js +kN +ls +js +ms +mT +nt +nP +oj +oH +nr ab ab ab @@ -61905,23 +61880,23 @@ ab ab ab ab -cU -cU -je -je -je -qc -sV -tn -tV -uB -sV -sV -sV -vz -qt -kv -cU +cS +cS +ja +ja +ja +pY +sR +tj +tR +ux +sR +sR +sR +vv +qp +kr +cS ab ab ab @@ -61946,36 +61921,36 @@ ab ab ab ab -cU -cU -cU -je -je -xx -ye -yF -yb -zN -AD -Bf -yb -BV -Cs -BS -CW -Do -DA -DJ -CW -DA -Eq -Cq -tX -cU -cU -cU -cU -cU +cS +cS +cS +ja +ja +xt +ya +yB +xX +zJ +Az +Bb +xX +BR +Co +BO +CS +Dk +Dw +DF +CS +Dw +Em +Cm +tT +cS +cS +cS +cS +cS ab ab ab @@ -61988,24 +61963,24 @@ aa aa aa aa -Ew -Ew -Ew -Ew -Ew -Ew -Ew -Ew -Ew -Ew -Ew -Ew -Ew -Ew -Ew -Ew -Ew -Ew +Es +Es +Es +Es +Es +Es +Es +Es +Es +Es +Es +Es +Es +Es +Es +Es +Es +Es aa aa aa @@ -62085,30 +62060,30 @@ ar bA bX bY -cL -di -dh -ek -eH -eY -fB -gf +cJ +dg +df +eg +eD +eU +fx +gb aC -ht -if -iP -jx -kl -kS -lx -jw -kl -jw -ny -nU -oo -oM -nv +hp +ib +iL +jt +kh +kO +lt +js +kh +js +nu +nQ +ok +oI +nr ab ab ab @@ -62163,21 +62138,21 @@ ab ab ab ab -cU -cU -cU -je -je -je -od -tW -ov -je -je -je -je -je -cU +cS +cS +cS +ja +ja +ja +nZ +tS +or +ja +ja +ja +ja +ja +cS ab ab ab @@ -62203,36 +62178,36 @@ ab ab ab ab -cU -cU -cU -je -je -je -je -yG -yb -zO -AE -Bg -yb -BW -Cq -BT -CX -CX -DB -DK -DT -CX -Er -Cq -tX -cU -cU -cU -cU -cU +cS +cS +cS +ja +ja +ja +ja +yC +xX +zK +AA +Bc +xX +BS +Cm +BP +CT +CT +Dx +DG +DP +CT +En +Cm +tT +cS +cS +cS +cS +cS ab ab ab @@ -62245,24 +62220,24 @@ aa aa aa aa -Ew -Ew -Ew -Ew -Ew -Ew -Ew -Ew -Ew -Ew -Ew -Ew -Ew -Ew -Ew -Ew -Ew -Ew +Es +Es +Es +Es +Es +Es +Es +Es +Es +Es +Es +Es +Es +Es +Es +Es +Es +Es aa aa aa @@ -62343,29 +62318,29 @@ bB bY bY by -dj dh -el -eH -eZ -fC -gg +df +eh +eD +eV +fy +gc aC -hu -ig -iN -iN -iN -iN -iN -iN -iN -iN -nv -nv -nv -nv -nv +hq +ic +iJ +iJ +iJ +iJ +iJ +iJ +iJ +iJ +nr +nr +nr +nr +nr ab ab ab @@ -62422,19 +62397,19 @@ ab ab ab ab -cU -je -je -je -je -tX -je -je -je -je -cU -cU -cU +cS +ja +ja +ja +ja +tT +ja +ja +ja +ja +cS +cS +cS ab ab ab @@ -62461,35 +62436,35 @@ ab ab ab ab -cU -cU -cU -je -je -je -xw -yb -zP -AF -Bh -yb -BX -Cq -Cq -Cq -Cq -Cq -Cq -Cq -Cq -Cq -Cq -tX -cU -cU -cU -cU -cU +cS +cS +cS +ja +ja +ja +xs +xX +zL +AB +Bd +xX +BT +Cm +Cm +Cm +Cm +Cm +Cm +Cm +Cm +Cm +Cm +tT +cS +cS +cS +cS +cS ab ab ab @@ -62502,24 +62477,24 @@ aa aa aa aa -Ew -Ew -Ew -Ew -Ew -Ew -Ew -Ew -Ew -Ew -Ew -Ew -Ew -Ew -Ew -Ew -Ew -Ew +Es +Es +Es +Es +Es +Es +Es +Es +Es +Es +Es +Es +Es +Es +Es +Es +Es +Es aa aa aa @@ -62599,25 +62574,25 @@ bd by bZ co -cM -dk -dh +cK +di +df bd -eI -fa -fD -gh +eE +eW +fz +gd aC -hv -ih -iT -jy -km -kT -ly -ma -mx -iU +hr +id +iP +ju +ki +kP +lu +lW +mt +iQ ab ab ab @@ -62678,19 +62653,19 @@ ab ab ab ab -cU -cU -je -je -je -je -tX -je -je -je -je -cU -cU +cS +cS +ja +ja +ja +ja +tT +ja +ja +ja +ja +cS +cS ab ab ab @@ -62719,33 +62694,33 @@ ab ab ab ab -cU +cS ab -mC -je -je -xx -zr -zr -AG -Bi -Bz -BY -Ct -CN -CN -CN -CN -CN -CN -CN -CN -CN -Ev -cU -cU -cU -cU +my +ja +ja +xt +zn +zn +AC +Be +Bv +BU +Cp +CJ +CJ +CJ +CJ +CJ +CJ +CJ +CJ +CJ +Er +cS +cS +cS +cS ab ab ab @@ -62759,24 +62734,24 @@ aa aa aa aa -Ew -Ew -Ew -Ew -Ew -Ew -Ew -Ew -Ew -Ew -Ew -Ew -Ew -Ew -Ew -Ew -Ew -Ew +Es +Es +Es +Es +Es +Es +Es +Es +Es +Es +Es +Es +Es +Es +Es +Es +Es +Es aa aa aa @@ -62857,24 +62832,24 @@ bd bd bd bd -dl +dj bd bd -eJ -fb -fb -gi -dL -dL -ii -iU -jz -kn -kU -lz -mb -my -iU +eF +eX +eX +ge +dH +dH +ie +iQ +jv +kj +kQ +lv +lX +mu +iQ ab ab ab @@ -62935,19 +62910,19 @@ ab ab ab ab -cU -je -je -je -je -je -tX -je -je -je -je -je -cU +cS +ja +ja +ja +ja +ja +tT +ja +ja +ja +ja +ja +cS ab ab ab @@ -62976,31 +62951,31 @@ ab ab ab ab -cU -cU +cS +cS ab -je -je -je -je -je -je -uC -pZ -BZ -je -je -je -je -je -je -je -je -je -je -je -cU -cU +ja +ja +ja +ja +ja +ja +uy +pV +BV +ja +ja +ja +ja +ja +ja +ja +ja +ja +ja +ja +cS +cS ab ab ab @@ -63015,25 +62990,25 @@ aa aa aa aa -Ew -Ew -Ew -Ew -Ew -Ew -Ew -Ew -Ew -Ew -Ew -Ew -Ew -Ew -Ew -Ew -Ew -Ew -Ew +Es +Es +Es +Es +Es +Es +Es +Es +Es +Es +Es +Es +Es +Es +Es +Es +Es +Es +Es aa aa aa @@ -63113,25 +63088,25 @@ aa aa aa aa -cN -dm -cU -cU -eK -fc -cU +cL +dk +cS +cS +eG +eY +cS ar -dL -dL -ij -iU -iU -iU -iU -iU -iU -iU -iU +dH +dH +if +iQ +iQ +iQ +iQ +iQ +iQ +iQ +iQ ab ab ab @@ -63191,20 +63166,20 @@ ab ab ab ab -cU -cU -je -je -je -je -je -tX -je -je -je -je -je -cU +cS +cS +ja +ja +ja +ja +ja +tT +ja +ja +ja +ja +ja +cS ab ab ab @@ -63234,29 +63209,29 @@ ab ab ab ab -cU -cU -je -je -qg -je -je -je -uC -BA -BZ -je -je -je -je -je -je -je -je -cU -cU -cU -cU +cS +cS +ja +ja +qc +ja +ja +ja +uy +Bw +BV +ja +ja +ja +ja +ja +ja +ja +ja +cS +cS +cS +cS ab ab ab @@ -63274,22 +63249,22 @@ aa aa aa aa -Ew -Ew -Ew -Ew -Ew -Ew -Ew -Ew -Ew -Ew -Ew -Ew -Ew -Ew -Ew -Ew +Es +Es +Es +Es +Es +Es +Es +Es +Es +Es +Es +Es +Es +Es +Es +Es aa aa aa @@ -63371,22 +63346,22 @@ aa aa aa aa -cU -cU -cU -cU -fb -cU +cS +cS +cS +cS +eX +cS ar -gQ -hw -ik -iV -jA -ko -kV -lA -jB +gM +hs +ig +iR +jw +kk +kR +lw +jx ab ab ab @@ -63448,20 +63423,20 @@ ab ab ab ab -cU -je -je -je -je -je -je -tX -je -je -je -je -je -cU +cS +ja +ja +ja +ja +ja +ja +tT +ja +ja +ja +ja +ja +cS ab ab ab @@ -63493,24 +63468,24 @@ ab ab ab ab -cU -cU -kv -je -je -je -od -ov -BZ -je -je -je -je -je -DL -je -je -cU +cS +cS +kr +ja +ja +ja +nZ +or +BV +ja +ja +ja +ja +ja +DH +ja +ja +cS ab ab ab @@ -63533,19 +63508,19 @@ aa aa aa aa -Ew -Ew -Ew -Ew -Ew -Ew -Ew -Ew -Ew -Ew -Ew -Ew -Ew +Es +Es +Es +Es +Es +Es +Es +Es +Es +Es +Es +Es +Es aa aa aa @@ -63630,20 +63605,20 @@ aa aa aa aa -cU -cU -fb -cU -gj -gj -gj -il -gj -jB -kp -kW -lA -jB +cS +cS +eX +cS +gf +gf +gf +ih +gf +jx +kl +kS +lw +jx ab ab ab @@ -63704,21 +63679,21 @@ ab ab ab ab -cU -cU -je -je -je -je -je -je -tX -je -je -je -je -je -cU +cS +cS +ja +ja +ja +ja +ja +ja +tT +ja +ja +ja +ja +ja +cS ab ab ab @@ -63752,22 +63727,22 @@ ab ab ab ab -cU -cU -ku -ku -je -je -je -je -je -cU -cU -cU -kv -cU -cU -cU +cS +cS +kq +kq +ja +ja +ja +ja +ja +cS +cS +cS +kr +cS +cS +cS ab ab ab @@ -63790,19 +63765,19 @@ aa aa aa aa -Ew -Ew -Ew -Ew -Ew -Ew -Ew -Ew -Ew -Ew -Ew -Ew -Ew +Es +Es +Es +Es +Es +Es +Es +Es +Es +Es +Es +Es +Es aa aa aa @@ -63892,134 +63867,134 @@ aa aa aa aa -gj -hx -im -iW -jB +gf +ht +ii +iS +jx +km +kS +lw +jx +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 +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +cS +ja +ja +ja +ja +ja +ja +ja +tT +ja +ja +ja +ja +cS +cS +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 +cS +cS +cS +cS kq -kW -lA -jB -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 -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -cU -je -je -je -je -je -je -je -tX -je -je -je -je -cU -cU -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 -cU -cU -cU -cU -ku -je -je -cU -cU -cU +ja +ja +cS +cS +cS ab ab ab @@ -64043,19 +64018,19 @@ aa aa aa aa -Ew -Ew -Ew -Ew -Ew -Ew -Ew -Ew -Ew -Ew -Ew -Ew -Ew +Es +Es +Es +Es +Es +Es +Es +Es +Es +Es +Es +Es +Es aa aa aa @@ -64149,15 +64124,15 @@ aa aa aa aa -gj -hy -in -iX -jB -kr -kX -lA -jB +gf +hu +ij +iT +jx +kn +kT +lw +jx ab ab ab @@ -64218,20 +64193,20 @@ ab ab ab ab -cU -cU -cU -rp -rN -rN -rN -mJ -tX -pb -rN -rN -rN -cU +cS +cS +cS +rl +rJ +rJ +rJ +mF +tT +oX +rJ +rJ +rJ +cS ab ab ab @@ -64270,11 +64245,11 @@ ab ab ab ab -cU -cU -cU -cU -cU +cS +cS +cS +cS +cS ab ab ab @@ -64301,18 +64276,18 @@ aa aa aa aa -Ew -Ew -Ew -Ew -Ew -Ew -Ew -Ew -Ew -Ew -Ew -Ew +Es +Es +Es +Es +Es +Es +Es +Es +Es +Es +Es +Es aa aa aa @@ -64406,15 +64381,15 @@ aa aa aa aa -gj -gj -io -gj -jB -jB -jB -jB -jB +gf +gf +ik +gf +jx +jx +jx +jx +jx ab ab ab @@ -64478,17 +64453,17 @@ ab ab ab ab -rp -rO -su -su -to -tY -uC -lN -vb -vb -cU +rl +rK +sq +sq +tk +tU +uy +lJ +uX +uX +cS ab ab ab @@ -64558,18 +64533,18 @@ aa aa aa aa -Ew -Ew -Ew -Ew -Ew -Ew -Ew -Ew -Ew -Ew -Ew -Ew +Es +Es +Es +Es +Es +Es +Es +Es +Es +Es +Es +Es aa aa aa @@ -64663,12 +64638,12 @@ aa aa aa aa -gR -hz -ip -iY -jC -gj +gN +hv +il +iU +jy +gf ab ab ab @@ -64735,17 +64710,17 @@ ab ab ab ab -rp -rP -sv -sW -pZ -tZ -uD -lN -cU -cU -cU +rl +rL +sr +sS +pV +tV +uz +lJ +cS +cS +cS ab ab ab @@ -64814,19 +64789,19 @@ aa aa aa aa -Ew -Ew -Ew -Ew -Ew -Ew -Ew -Ew -Ew -Ew -Ew -Ew -Ew +Es +Es +Es +Es +Es +Es +Es +Es +Es +Es +Es +Es +Es aa aa aa @@ -64920,12 +64895,12 @@ aa aa aa aa -gj -hA -iq -iZ -jD -gj +gf +hw +im +iV +jz +gf aa ab ab @@ -64992,15 +64967,15 @@ ab ab ab ab -rp -rp -rp -sw -tp -ua -sw -cU -cU +rl +rl +rl +ss +tl +tW +ss +cS +cS ab ab ab @@ -65081,8 +65056,8 @@ aa aa aa aa -Ew -Ew +Es +Es aa aa aa @@ -65177,12 +65152,12 @@ aa aa aa aa -gj -hB -ir -ja -jE -gj +gf +hx +in +iW +jA +gf aa ab ab @@ -65252,10 +65227,10 @@ ab ab ab ab -sw -tq -ub -sw +ss +tm +tX +ss ab ab ab @@ -65434,12 +65409,12 @@ aa aa aa aa -gj -hC -is -jb -hC -gj +gf +hy +io +iX +hy +gf aa aa ab @@ -65509,10 +65484,10 @@ ab ab ab ab -sw -tr -uc -sw +ss +tn +tY +ss ab ab ab @@ -65691,12 +65666,12 @@ aa aa aa aa -gj -gj -gj -gj -gj -gj +gf +gf +gf +gf +gf +gf aa aa ab @@ -65765,11 +65740,11 @@ ab ab ab ab -sw -sw -ts -ud -sw +ss +ss +to +tZ +ss ab ab ab @@ -66022,11 +65997,11 @@ ab ab ab ab -sw -sX -tt -ue -rn +ss +sT +tp +ua +rj ab ab ab @@ -66279,11 +66254,11 @@ ab ab ab ab -sw -sY -tu -uf -rn +ss +sU +tq +ub +rj ab ab ab @@ -66536,11 +66511,11 @@ ab ab ab ab -sw -sw -tv -uf -rn +ss +ss +tr +ub +rj ab ab ab @@ -66794,10 +66769,10 @@ ab ab ab ab -sw -tw -uf -rn +ss +ts +ub +rj ab ab ab @@ -67048,21 +67023,21 @@ ab ab ab ab -rq -rq -rq -sw -tx -ug -sw -uN -uN -uN -uN -uN -uN -uN -uN +rm +rm +rm +ss +tt +uc +ss +uJ +uJ +uJ +uJ +uJ +uJ +uJ +uJ ab ab ab @@ -67305,21 +67280,21 @@ ab ab ab ab -rq -rQ -sx -sw -ty -uh -uE -uO -uO -uO -uO -vH -vg -vX -uN +rm +rM +st +ss +tu +ud +uA +uK +uK +uK +uK +vD +vc +vT +uJ ab ab ab @@ -67562,21 +67537,21 @@ ab ab ab ab -rq -rR -sy -sZ -tz -ui -uF -uP -vc -vm -vA -vI -vQ -vY -uN +rm +rN +su +sV +tv +ue +uB +uL +uY +vi +vw +vE +vM +vU +uJ ab ab ab @@ -67819,21 +67794,21 @@ ab ab ab ab -rq -rS -sz -sw -tA -uj -uG -uQ -vd -vn -vf -vJ -vR -vZ -uN +rm +rO +sv +ss +tw +uf +uC +uM +uZ +vj +vb +vF +vN +vV +uJ ab ab ab @@ -68072,25 +68047,25 @@ ab ab ab ab -qA -qA -qA -qA -rr -rr -rr -sw -tB -uk -uH -uR -ve -vn -vf -vJ -vf -vf +qw +qw +qw +qw +rn +rn +rn +ss +tx +ug +uD uN +va +vj +vb +vF +vb +vb +uJ ab ab ab @@ -68329,26 +68304,26 @@ ab ab ab ab -qA -qD -qO -qZ -rs -rT -sA -rn -tC -uf -uF -uS -vf -vo -vf -vK -uN -uN -uN -uN +qw +qz +qK +qV +ro +rP +sw +rj +ty +ub +uB +uO +vb +vk +vb +vG +uJ +uJ +uJ +uJ ab ab ab @@ -68586,26 +68561,26 @@ ab ab ab ab +qw qA -qE -qP -ra -ra -ra -sB -rn -tD -uf -uI -uT -vf -vp -vB -vL -vS +qL +qW +qW +qW +sx +rj +tz +ub +uE +uP +vb +vl +vx +vH +vO +vW wa -we -uN +uJ ab ab ab @@ -68843,26 +68818,26 @@ ab ab ab ab -qA -qF -qQ -rb -rt -rU -sC -rn -tE -ul -rn -uU -vf -vq -vC -vM -vT +qw +qB +qM +qX +rp +rQ +sy +rj +tA +uh +rj +uQ +vb +vm +vy +vI +vP +vX wb -wf -uN +uJ ab ab ab @@ -69096,30 +69071,30 @@ ab ab ab ab -qo -qo -qo -qo -qA -qG -qA -rc -ru -rV -qA -rn -tF -um +qk +qk +qk +qk +qw +qC +qw +qY +rq +rR +qw +rj +tB +ui +uF +uR +vc +vn +vz +vJ +uJ +uJ +uJ uJ -uV -vg -vr -vD -vN -uN -uN -uN -uN ab ab ab @@ -69353,30 +69328,30 @@ ab ab ab ab -qo -qp -qp -qp -qo -qH -qR -rd -rv -rW -sD -ta -tD -un -rn -uW -vh -vs -vE -vO -vU +qk +ql +ql +ql +qk +qD +qN +qZ +rr +rS +sz +sW +tz +uj +rj +uS +vd +vo +vA +vK +vQ +vY wc -wg -uN +uJ ab ab ab @@ -69610,30 +69585,30 @@ ab ab ab ab -qo +qk +qm qq -qu -qw -qB -qI -qS -qS -rw -qS -qS -rm -tD -uf -uK -uX -vi -vt -vF -vP -vV +qs +qx +qE +qO +qO +rs +qO +qO +ri +tz +ub +uG +uT +ve +vp +vB +vL +vR +vZ wd -wh -uN +uJ ab ab ab @@ -69867,30 +69842,30 @@ ab ab ab ab -qo +qk +qn qr -qv -qx -qo -qJ -qT -re -rx -rX -sE -rn -tD -uf -sw -uN -uN -uN -uN -uN -uN -uN -uN -uN +qt +qk +qF +qP +ra +rt +rT +sA +rj +tz +ub +ss +uJ +uJ +uJ +uJ +uJ +uJ +uJ +uJ +uJ ab ab ab @@ -70124,21 +70099,21 @@ ab ab ab ab +qk qo -qs -qo -qy -qo -qK -qU -rf -ry -rY -sF -tb -tG -uo -rn +qk +qu +qk +qG +qQ +rb +ru +rU +sB +sX +tC +uk +rj ab ab ab @@ -70381,21 +70356,21 @@ ab ab ab ab -qo -qo -qo -qz -qo -qL -qV -rg -rz -rZ -sG -rn -tH -up -rn +qk +qk +qk +qv +qk +qH +qR +rc +rv +rV +sC +rj +tD +ul +rj ab ab ab @@ -70640,19 +70615,19 @@ ab ab ab ab -qo -qo -qo -qM -qW -rh -rh -sa +qk +qk +qk +qI qS -ta -tD -uq -rn +rd +rd +rW +qO +sW +tz +um +rj ab ab ab @@ -70899,17 +70874,17 @@ ab ab ab ab -qo -qM -qX +qk +qI +qT +re +rw +rX +sD ri -rA -sb -sH -rm -tD -uf -rn +tz +ub +rj ab ab ab @@ -71156,17 +71131,17 @@ aa ab ab ab -qC -qC -qY -qC -qo -qo -qo -rn -tI -ur -rn +qy +qy +qU +qy +qk +qk +qk +rj +tE +un +rj ab ab ab @@ -71414,16 +71389,16 @@ aa aa ab ab -cU -pJ +cS +pF +rf +rx +rY +sE +sY +tF +uo rj -rB -sc -sI -tc -tJ -us -rn ab ab ab @@ -71670,17 +71645,17 @@ aa aa aa aa -cU -cU -pJ +cS +cS +pF +rf +ry +rZ +sF +sZ +tG +up rj -rC -sd -sJ -td -tK -ut -rn ab ab ab @@ -71928,16 +71903,16 @@ aa aa aa aa -qN -dm +qJ +dk +rf +rz +sa +sG +rj +tH +uq rj -rD -se -sK -rn -tL -uu -rn ab ab ab @@ -72187,14 +72162,14 @@ ae ae ae ae +rf +rA +sb +sH +ta +tI +ur rj -rE -sf -sL -te -tM -uv -rn ab ab ab @@ -72444,14 +72419,14 @@ aa aa aa aa +rf +rB +sc +sI +tb +tJ +us rj -rF -sg -sM -tf -tN -uw -rn ab ab ab @@ -72701,14 +72676,14 @@ ae ae ae aa -rk -rG -sh -sN -tg -tO -uu -rk +rg +rC +sd +sJ +tc +tK +uq +rg aa aa aa @@ -72958,14 +72933,14 @@ aa ae aa aa -rl -rG -si -sO -th -tP -ux -rl +rh +rC +se +sK +td +tL +ut +rh aa aa aa @@ -73215,14 +73190,14 @@ aa aa aa aa -rm -rH -rH -sP -ti -tQ -rH -rm +ri +rD +rD +sL +te +tM +rD +ri aa aa aa @@ -73472,22 +73447,22 @@ aa aa aa aa -rn -rI -rI -sQ -tj -tR -rH -rn +rj +rE +rE +sM +tf +tN +rD +rj aa aa aa -vG -vG -vG -vG -vG +vC +vC +vC +vC +vC aa aa aa @@ -73729,22 +73704,22 @@ ae ae ae ae -rn -rJ -sj -sR -rn -tS -uy -rn -uY -vj -vu -vG -vG -vG -vG -vG +rj +rF +sf +sN +rj +tO +uu +rj +uU +vf +vq +vC +vC +vC +vC +vC aa aa aa @@ -73986,22 +73961,22 @@ aa aa ae aa -rk -rK -sk -sS -tk -tT -uz -uL -uZ -vk -vv -vG -vG -vG -vG -vG +rg +rG +sg +sO +tg +tP +uv +uH +uV +vg +vr +vC +vC +vC +vC +vC aa aa aa @@ -74243,22 +74218,22 @@ aa aa ae aa -rm -rL -sl -sT -tl -si -uA -uM -va -vl -vw -vG -vG -vG -vG -vG +ri +rH +sh +sP +th +se +uw +uI +uW +vh +vs +vC +vC +vC +vC +vC aa aa aa @@ -74500,22 +74475,22 @@ aa aa ae ae -rn -rk -sm -rk -sw -tU -sR -rn -uY -vj -rn -vG -vG -vG -vG -vG +rj +rg +si +rg +ss +tQ +sN +rj +uU +vf +rj +vC +vC +vC +vC +vC aa aa aa @@ -74758,21 +74733,21 @@ aa ae aa aa -rl -sn -rl +rh +sj +rh aa aa ae aa aa ae -vx -vG -vG -vG -vG -vG +vt +vC +vC +vC +vC +vC aa aa aa @@ -75015,9 +74990,9 @@ aa ae aa aa -rm -so -rm +ri +sk +ri aa ae ae @@ -75025,11 +75000,11 @@ aa aa ae aa -vG -vG -vG -vG -vG +vC +vC +vC +vC +vC aa aa aa @@ -75273,7 +75248,7 @@ ae aa aa aa -sp +sl aa aa aa @@ -75281,7 +75256,7 @@ ae ae ae ae -vy +vu aa aa aa @@ -75517,7 +75492,7 @@ aa aa aa aa -qh +qd aa aa ae @@ -75530,7 +75505,7 @@ ae aa aa aa -sq +sm aa aa aa @@ -75543,7 +75518,7 @@ aa aa aa aa -wi +we aa aa aa @@ -75774,33 +75749,33 @@ aa aa aa aa -qh -aa -qi -qi -qi -qi -qi -qi -qi -qi -qi -qi -ae qd -ae -qi -qi -qi -qi -qi -qi -qi -qi -qi -qi aa -qh +qe +qe +qe +qe +qe +qe +qe +qe +qe +qe +ae +pZ +ae +qe +qe +qe +qe +qe +qe +qe +qe +qe +qe +aa +qd aa aa aa @@ -76031,33 +76006,33 @@ aa aa aa aa -qh -ae -qj -ql -ql -ql -ql -ql -ql -ql -ql -ql -rM qd -sU -tm -tm -tm -tm -tm -tm -tm -tm -tm -vW ae +qf qh +qh +qh +qh +qh +qh +qh +qh +qh +rI +pZ +sQ +ti +ti +ti +ti +ti +ti +ti +ti +ti +vS +ae +qd aa aa aa @@ -76288,33 +76263,33 @@ aa aa aa aa -qh -aa -qk -qk -qk -qk -qk -qk -qk -qk -qk -qk -ae qd -ae -qk -qk -qk -qk -qk -qk -qk -qk -qk -qk aa -qh +qg +qg +qg +qg +qg +qg +qg +qg +qg +qg +ae +pZ +ae +qg +qg +qg +qg +qg +qg +qg +qg +qg +qg +aa +qd aa aa aa @@ -76545,22 +76520,22 @@ aa aa aa aa -qh -aa -aa -ae -aa -aa -ae -aa -aa -ae -aa -aa -aa qd aa aa +ae +aa +aa +ae +aa +aa +ae +aa +aa +aa +pZ +aa +aa aa ae aa @@ -76571,7 +76546,7 @@ aa ae aa aa -qh +qd aa aa aa @@ -76802,33 +76777,33 @@ aa aa aa aa -qh -aa -qi -qi -qi -qi -qi -qi -qi -qi -qi -qi -ae qd -ae -qi -qi -qi -qi -qi -qi -qi -qi -qi -qi aa -qh +qe +qe +qe +qe +qe +qe +qe +qe +qe +qe +ae +pZ +ae +qe +qe +qe +qe +qe +qe +qe +qe +qe +qe +aa +qd aa aa aa @@ -77059,33 +77034,33 @@ aa aa aa aa -qh -ae -qj -ql -ql -ql -ql -ql -ql -ql -ql -ql -rM qd -sU -tm -tm -tm -tm -tm -tm -tm -tm -tm -vW ae +qf qh +qh +qh +qh +qh +qh +qh +qh +qh +rI +pZ +sQ +ti +ti +ti +ti +ti +ti +ti +ti +ti +vS +ae +qd aa aa aa @@ -77316,33 +77291,33 @@ aa aa aa aa -qh -aa -qk -qk -qk -qk -qk -qk -qk -qk -qk -qk -ae qd -ae -qk -qk -qk -qk -qk -qk -qk -qk -qk -qk aa -qh +qg +qg +qg +qg +qg +qg +qg +qg +qg +qg +ae +pZ +ae +qg +qg +qg +qg +qg +qg +qg +qg +qg +qg +aa +qd aa aa aa @@ -77573,22 +77548,22 @@ aa aa aa aa -qh -aa -aa -ae -aa -aa -ae -aa -aa -ae -aa -aa -aa qd aa aa +ae +aa +aa +ae +aa +aa +ae +aa +aa +aa +pZ +aa +aa aa ae aa @@ -77599,7 +77574,7 @@ aa ae aa aa -qh +qd aa aa aa @@ -77830,33 +77805,33 @@ aa aa aa aa -qh -aa -qi -qi -qi -qi -qi -qi -qi -qi -qi -qi -ae qd -ae -qi -qi -qi -qi -qi -qi -qi -qi -qi -qi aa -qh +qe +qe +qe +qe +qe +qe +qe +qe +qe +qe +ae +pZ +ae +qe +qe +qe +qe +qe +qe +qe +qe +qe +qe +aa +qd aa aa aa @@ -78087,33 +78062,33 @@ aa aa aa aa -qh -ae -qj -ql -ql -ql -ql -ql -ql -ql -ql -ql -rM qd -sU -tm -tm -tm -tm -tm -tm -tm -tm -tm -vW ae +qf qh +qh +qh +qh +qh +qh +qh +qh +qh +rI +pZ +sQ +ti +ti +ti +ti +ti +ti +ti +ti +ti +vS +ae +qd aa aa aa @@ -78344,33 +78319,33 @@ aa aa aa aa -qh +qd aa -qk -qk -qk -qk -qk -qk -qk -qk -qk -qk +qg +qg +qg +qg +qg +qg +qg +qg +qg +qg ae -sr +sn ae -qk -qk -qk -qk -qk -qk -qk -qk -qk -qk +qg +qg +qg +qg +qg +qg +qg +qg +qg +qg aa -qh +qd aa aa aa @@ -78601,7 +78576,7 @@ aa aa aa aa -qh +qd aa aa ae @@ -78614,7 +78589,7 @@ ae aa aa aa -ss +so aa aa aa @@ -78627,7 +78602,7 @@ aa ae aa aa -qh +qd aa aa aa @@ -78858,33 +78833,33 @@ aa aa aa aa -qh -qh -qh -qh -qh -qh -qh -qh -qh -qh +qd +qd +qd +qd +qd +qd +qd +qd +qd +qd ae -qh +qd ae -st +sp ae -qh +qd ae -qh -qh -qh -qh -qh -qh -qh -qh -qh -qh +qd +qd +qd +qd +qd +qd +qd +qd +qd +qd aa aa aa @@ -79126,11 +79101,11 @@ aa aa aa aa -qh +qd aa ae aa -qh +qd aa aa aa @@ -79383,11 +79358,11 @@ aa aa aa aa -qh -qh -qh -qh -qh +qd +qd +qd +qd +qd aa aa aa