From ed918bc40b2b2e04285bf9c6e3e8734da18ad8b5 Mon Sep 17 00:00:00 2001 From: SweetBlueSylveon Date: Mon, 20 Jul 2020 05:57:41 -0700 Subject: [PATCH] The rest. This adds atmos, adds the entertainer job, adds a spawnpoint for a clown or mime at roundstart if they have a whitelist, this is ready for testing. --- code/game/jobs/access_datum_vr.dm | 8 +- code/game/jobs/job/civilian.dm | 2 +- code/game/jobs/job/civilian_vr.dm | 36 + code/game/jobs/job/special_vr.dm | 12 +- code/game/jobs/jobs.dm | 1 + maps/tether/tether-01-surface1.dmm | 246 +++---- maps/tether/tether-02-surface2.dmm | 80 +-- maps/tether/tether-03-surface3.dmm | 1058 +++++++++++++++------------- maps/tether/tether_areas.dm | 32 + 9 files changed, 821 insertions(+), 654 deletions(-) diff --git a/code/game/jobs/access_datum_vr.dm b/code/game/jobs/access_datum_vr.dm index 1f8fd679d7..16038248d0 100644 --- a/code/game/jobs/access_datum_vr.dm +++ b/code/game/jobs/access_datum_vr.dm @@ -21,4 +21,10 @@ var/const/access_pilot = 67 /datum/access/xenobotany id = access_xenobotany desc = "Xenobotany Garden" - region = ACCESS_REGION_RESEARCH \ No newline at end of file + region = ACCESS_REGION_RESEARCH + +/var/const/access_entertainment = 72 +/datum/access/entertainment + id = access_entertainment + desc = "Entertainment Backstage" + region = ACCESS_REGION_GENERAL \ No newline at end of file diff --git a/code/game/jobs/job/civilian.dm b/code/game/jobs/job/civilian.dm index 5e715b22e1..7acd36524b 100644 --- a/code/game/jobs/job/civilian.dm +++ b/code/game/jobs/job/civilian.dm @@ -65,7 +65,7 @@ department_flag = CIVILIAN faction = "Station" total_positions = 2 - spawn_positions = 1 + spawn_positions = 2 supervisors = "the Head of Personnel" selection_color = "#515151" access = list(access_hydroponics, access_bar, access_kitchen) diff --git a/code/game/jobs/job/civilian_vr.dm b/code/game/jobs/job/civilian_vr.dm index dae1ffbfce..c1373853f9 100644 --- a/code/game/jobs/job/civilian_vr.dm +++ b/code/game/jobs/job/civilian_vr.dm @@ -57,3 +57,39 @@ /datum/job/chaplain pto_type = PTO_CIVILIAN + + +////////////////////////////////// +// Entertainer +////////////////////////////////// + +/datum/job/Entertainer + title = "Entertainer" + flag = ENTERTAINER + departments = list(DEPARTMENT_CIVILIAN) + department_flag = CIVILIAN + faction = "Station" + total_positions = 4 + spawn_positions = 4 + supervisors = "the Head of Personnel" + selection_color = "#515151" + access = list(access_entertainment) + minimal_access = list(access_entertainment) + pto_type = PTO_CIVILIAN + + outfit_type = /decl/hierarchy/outfit/job/assistant + job_description = "An entertainer does just that, entertains! Put on plays, play music, sing songs, tell stories, or read your favorite fanfic." + alt_titles = list("Performer" = /datum/alt_title/performer, "Musician" = /datum/alt_title/musician, "Stagehand" = /datum/alt_title/stagehand) + +// Entertainer Alt Titles +/datum/alt_title/performer + title = "Performer" + title_blurb = "A Performer is someone who performs! Acting, dancing, wrestling, etc!" + +/datum/alt_title/musician + title = "Musician" + title_blurb = "A Musician is someone who makes music! Singing, playing instruments, slam poetry, it's your call!" + +/datum/alt_title/stagehand + title = "Stagehand" + title_blurb = "A Stagehand typically performs everything the rest of the entertainers don't. Operate lights, shutters, windows, or narrate through your voicebox!" \ No newline at end of file diff --git a/code/game/jobs/job/special_vr.dm b/code/game/jobs/job/special_vr.dm index 99ea67cca2..4869c05fc1 100644 --- a/code/game/jobs/job/special_vr.dm +++ b/code/game/jobs/job/special_vr.dm @@ -72,8 +72,8 @@ departments = list(DEPARTMENT_CIVILIAN) department_flag = CIVILIAN faction = "Station" - total_positions = -1 - spawn_positions = -1 + total_positions = 1 + spawn_positions = 1 supervisors = "the spirit of laughter" selection_color = "#515151" economic_modifier = 1 @@ -82,7 +82,7 @@ job_description = "A Clown is there to entertain the crew and keep high morale using various harmless pranks and ridiculous jokes!" alt_titles = list("Clown" = /datum/alt_title/clown, "Comedian" = /datum/alt_title/comedian, "Jester" = /datum/alt_title/jester) whitelist_only = 1 - latejoin_only = 1 + latejoin_only = 0 outfit_type = /decl/hierarchy/outfit/job/clown pto_type = PTO_CIVILIAN @@ -107,8 +107,8 @@ departments = list(DEPARTMENT_CIVILIAN) department_flag = CIVILIAN faction = "Station" - total_positions = -1 - spawn_positions = -1 + total_positions = 1 + spawn_positions = 1 supervisors = "the spirit of performance" selection_color = "#515151" economic_modifier = 1 @@ -117,7 +117,7 @@ job_description = "A Mime is there to entertain the crew and keep high morale using unbelievable performances and acting skills!" alt_titles = list("Mime" = /datum/alt_title/mime, "Performer" = /datum/alt_title/performer, "Interpretive Dancer" = /datum/alt_title/interpretive_dancer) whitelist_only = 1 - latejoin_only = 1 + latejoin_only = 0 outfit_type = /decl/hierarchy/outfit/job/mime pto_type = PTO_CIVILIAN diff --git a/code/game/jobs/jobs.dm b/code/game/jobs/jobs.dm index f1e928d379..40f0fdb4a4 100644 --- a/code/game/jobs/jobs.dm +++ b/code/game/jobs/jobs.dm @@ -45,6 +45,7 @@ var/const/ASSISTANT =(1<<11) var/const/BRIDGE =(1<<12) var/const/CLOWN =(1<<13) //VOREStation Add var/const/MIME =(1<<14) //VOREStation Add +var/const/ENTERTAINER =(1<<15) //VOREStation Add //VOREStation Add var/const/TALON =(1<<3) diff --git a/maps/tether/tether-01-surface1.dmm b/maps/tether/tether-01-surface1.dmm index 107b7784df..e00c9af135 100644 --- a/maps/tether/tether-01-surface1.dmm +++ b/maps/tether/tether-01-surface1.dmm @@ -62,8 +62,8 @@ "abj" = (/obj/effect/floor_decal/borderfloor{dir = 5},/obj/effect/floor_decal/corner/brown/border{dir = 5},/turf/simulated/floor/tiled,/area/tether/surfacebase/cargo/mining) "abk" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 1},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 8},/turf/simulated/floor/tiled,/area/tether/surfacebase/surface_one_hall) "abl" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0},/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 8},/turf/simulated/floor/tiled,/area/tether/surfacebase/surface_one_hall) -"abm" = (/obj/machinery/light/small{dir = 1},/turf/simulated/floor/tiled,/area/rnd/hallway) -"abn" = (/obj/structure/grille,/obj/structure/window/reinforced/full,/obj/machinery/door/firedoor,/turf/simulated/floor/plating,/area/rnd/hallway) +"abm" = (/turf/simulated/wall,/area/rnd/hardstorage) +"abn" = (/obj/structure/table/rack/steel,/turf/simulated/floor/tiled,/area/rnd/hardstorage) "abo" = (/obj/effect/floor_decal/borderfloor{dir = 4},/obj/effect/floor_decal/corner/brown/border{dir = 4},/obj/effect/floor_decal/borderfloor/corner2{dir = 5},/obj/effect/floor_decal/corner/brown/bordercorner2{dir = 5},/turf/simulated/floor/tiled,/area/tether/surfacebase/cargo/mining) "abp" = (/obj/structure/catwalk,/obj/effect/decal/cleanable/dirt,/obj/machinery/door/airlock/maintenance/common{name = "Trash Pit Access"; req_one_access = list(48,12)},/obj/structure/cable{icon_state = "1-2"},/turf/simulated/floor/plating,/area/maintenance/lower/trash_pit) "abq" = (/obj/structure/catwalk,/obj/effect/decal/cleanable/dirt,/obj/structure/cable{icon_state = "1-2"},/turf/simulated/floor/plating,/area/maintenance/lower/trash_pit) @@ -71,25 +71,25 @@ "abs" = (/obj/structure/catwalk,/obj/effect/decal/cleanable/dirt,/obj/random/cigarettes,/obj/structure/cable{d1 = 2; d2 = 4; icon_state = "2-4"},/turf/simulated/floor/plating,/area/maintenance/lower/trash_pit) "abt" = (/obj/structure/catwalk,/obj/effect/decal/cleanable/dirt,/obj/machinery/light/small{dir = 1},/obj/random/junk,/obj/structure/cable{icon_state = "4-8"},/turf/simulated/floor/plating,/area/maintenance/lower/trash_pit) "abu" = (/obj/structure/catwalk,/obj/effect/decal/cleanable/dirt,/obj/random/junk,/obj/random/maintenance/clean,/obj/structure/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/turf/simulated/floor/plating,/area/maintenance/lower/trash_pit) -"abv" = (/turf/simulated/mineral,/area/rnd/hallway) -"abw" = (/obj/machinery/portable_atmospherics/powered/scrubber/huge/stationary,/turf/simulated/floor/tiled,/area/rnd/hallway) +"abv" = (/turf/simulated/floor/tiled,/area/rnd/hardstorage) +"abw" = (/obj/structure/table/rack/shelf/steel,/turf/simulated/floor/tiled,/area/rnd/hardstorage) "abx" = (/obj/effect/floor_decal/industrial/loading{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals6{dir = 9},/obj/effect/floor_decal/steeldecal/steel_decals6{dir = 6},/obj/machinery/door/firedoor/glass/hidden/steel,/turf/simulated/floor/tiled{icon_state = "monotile"},/area/security/checkpoint) "aby" = (/obj/structure/catwalk,/obj/effect/decal/cleanable/dirt,/obj/random/junk,/obj/random/junk,/obj/random/maintenance/clean,/obj/random/tool,/obj/structure/cable{icon_state = "1-2"},/turf/simulated/floor/plating,/area/maintenance/lower/trash_pit) "abz" = (/obj/structure/table/woodentable,/obj/machinery/light_construct{dir = 1; icon_state = "tube-construct-stage1"},/obj/item/glass_jar,/turf/simulated/floor/wood,/area/vacant/vacant_bar) "abA" = (/obj/effect/floor_decal/industrial/outline/yellow,/obj/machinery/alarm{dir = 1; pixel_y = -25},/turf/simulated/floor/tiled{icon_state = "techmaint"},/area/security/checkpoint) "abB" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/door/airlock/maintenance/common,/obj/machinery/door/firedoor/glass,/turf/simulated/floor/plating,/area/maintenance/lower/solars) "abC" = (/obj/structure/catwalk,/obj/effect/decal/cleanable/dirt,/obj/effect/floor_decal/rust,/obj/random/junk,/obj/structure/cable{icon_state = "1-2"},/turf/simulated/floor/plating,/area/maintenance/lower/trash_pit) -"abD" = (/turf/simulated/wall/r_wall,/area/rnd/hallway) +"abD" = (/obj/machinery/light/small{dir = 1},/turf/simulated/floor/tiled,/area/rnd/hardstorage) "abE" = (/obj/structure/catwalk,/obj/effect/decal/cleanable/dirt,/obj/effect/floor_decal/rust,/obj/random/junk,/obj/random/junk,/obj/random/maintenance/cargo,/obj/structure/cable{icon_state = "1-4"},/turf/simulated/floor/plating,/area/maintenance/lower/trash_pit) "abF" = (/obj/structure/catwalk,/obj/effect/decal/cleanable/dirt,/obj/effect/floor_decal/rust,/obj/item/weapon/reagent_containers/food/drinks/bottle/small/beer{pixel_y = 13},/obj/item/weapon/reagent_containers/food/drinks/bottle/small/beer{pixel_x = 9},/obj/item/weapon/reagent_containers/food/drinks/bottle/small/beer{pixel_x = -7; pixel_y = -7},/obj/item/weapon/reagent_containers/food/drinks/bottle/small/beer{pixel_x = -10; pixel_y = 5},/obj/item/trash/raisins{desc = "This trash looks like it's had one too many."; name = "Wasted waste"},/obj/structure/cable{icon_state = "4-8"},/turf/simulated/floor/plating,/area/maintenance/lower/trash_pit) "abG" = (/obj/structure/catwalk,/obj/effect/decal/cleanable/dirt,/obj/random/cigarettes,/obj/random/junk,/obj/structure/cable{d1 = 2; d2 = 8; icon_state = "2-8"},/turf/simulated/floor/plating,/area/maintenance/lower/trash_pit) "abH" = (/obj/structure/catwalk,/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/plating,/area/maintenance/lower/trash_pit) -"abI" = (/obj/machinery/atmospherics/unary/vent_pump/on,/obj/machinery/camera/network/research{dir = 4},/turf/simulated/floor/tiled,/area/rnd/hallway) +"abI" = (/obj/structure/closet/crate/plastic,/turf/simulated/floor/tiled,/area/rnd/hardstorage) "abJ" = (/obj/structure/catwalk,/obj/structure/cable{icon_state = "1-2"},/turf/simulated/floor/plating,/area/maintenance/lower/trash_pit) "abK" = (/obj/machinery/door/airlock/glass_mining{name = "Warehouse"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/cable{icon_state = "1-2"},/turf/simulated/floor/tiled/steel_grid,/area/tether/surfacebase/cargo/warehouse) "abL" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/cable{d2 = 2; icon_state = "0-2"},/turf/simulated/floor/plating,/area/construction/vacant_mining_ops) "abM" = (/obj/structure/catwalk,/obj/random/junk,/obj/structure/cable{icon_state = "1-2"},/turf/simulated/floor/plating,/area/maintenance/lower/trash_pit) -"abN" = (/obj/structure/cable/green{d1 = 2; d2 = 4; icon_state = "2-4"},/turf/simulated/floor/tiled,/area/rnd/hallway) +"abN" = (/turf/simulated/wall/r_wall,/area/rnd/testingroom) "abO" = (/obj/machinery/door/airlock/maintenance/common{name = "Trash Pit Access"; req_one_access = list(26,48,12)},/obj/structure/catwalk,/obj/machinery/door/firedoor/glass,/obj/structure/cable{icon_state = "1-2"},/turf/simulated/floor/plating,/area/maintenance/lower/trash_pit) "abP" = (/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 9},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/cable{icon_state = "1-2"},/turf/simulated/floor/tiled/steel_dirty,/area/tether/surfacebase/cargo/warehouse) "abQ" = (/obj/structure/catwalk,/obj/structure/cable{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/structure/cable{icon_state = "4-8"},/turf/simulated/floor/plating,/area/maintenance/lower/vacant_site) @@ -98,12 +98,12 @@ "abT" = (/turf/simulated/wall,/area/maintenance/lower/mining_eva) "abU" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/cable{icon_state = "1-2"},/turf/simulated/floor/plating,/area/construction/vacant_mining_ops) "abV" = (/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 5},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 8},/turf/simulated/floor/tiled,/area/tether/surfacebase/cargo/mining) -"abW" = (/obj/machinery/power/apc/high{dir = 4; pixel_x = 28; pixel_y = 0},/obj/structure/cable/green{d2 = 8; icon_state = "0-8"},/turf/simulated/floor/tiled,/area/rnd/hallway) +"abW" = (/obj/machinery/portable_atmospherics/powered/scrubber/huge/stationary,/turf/simulated/floor/tiled,/area/rnd/testingroom) "abX" = (/obj/structure/catwalk,/obj/effect/decal/cleanable/dirt,/obj/effect/floor_decal/rust,/turf/simulated/floor/plating,/area/maintenance/lower/trash_pit) "abY" = (/obj/machinery/door/airlock/glass_mining{name = "Warehouse"},/turf/simulated/floor/tiled/steel_grid,/area/tether/surfacebase/cargo/warehouse) "abZ" = (/obj/structure/closet/crate,/turf/simulated/floor/tiled/steel_dirty,/area/tether/surfacebase/cargo/warehouse) "aca" = (/obj/machinery/light{dir = 1},/turf/simulated/floor/tiled/steel_dirty,/area/tether/surfacebase/cargo/warehouse) -"acb" = (/obj/machinery/atmospherics/unary/vent_scrubber/on,/turf/simulated/floor/tiled,/area/rnd/hallway) +"acb" = (/turf/simulated/mineral,/area/rnd/testingroom) "acc" = (/turf/simulated/wall,/area/tether/surfacebase/cargo/warehouse) "acd" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/structure/cable{icon_state = "1-2"},/turf/simulated/floor/tiled/steel_dirty,/area/tether/surfacebase/cargo/warehouse) "ace" = (/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 9},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 4},/turf/simulated/floor/tiled/steel_dirty,/area/tether/surfacebase/cargo/warehouse) @@ -117,7 +117,7 @@ "acm" = (/obj/structure/window/reinforced,/obj/structure/closet/crate,/turf/simulated/floor/tiled/steel_dirty,/area/tether/surfacebase/cargo/warehouse) "acn" = (/obj/structure/window/reinforced,/turf/simulated/floor/tiled/steel_dirty,/area/tether/surfacebase/cargo/warehouse) "aco" = (/obj/structure/railing,/obj/structure/railing{dir = 4},/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/plating,/area/maintenance/lower/research) -"acp" = (/obj/machinery/button/remote/blast_door{id = "suckysucky"; name = "Scrubber Blast Door-Controller"; pixel_x = 0; pixel_y = 32},/obj/machinery/atmospherics/pipe/simple/hidden,/obj/structure/cable/green{d1 = 2; d2 = 8; icon_state = "2-8"},/turf/simulated/floor/tiled,/area/rnd/hallway) +"acp" = (/obj/structure/grille,/obj/structure/railing,/obj/machinery/door/blast/regular{density = 0; dir = 4; icon_state = "pdoor0"; id = "suckysucky"; name = "Scrubber Blast Door"; opacity = 0},/turf/simulated/floor/tiled,/area/rnd/testingroom) "acq" = (/obj/effect/floor_decal/techfloor{dir = 4},/obj/structure/railing{dir = 8},/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/plating,/area/maintenance/lower/trash_pit) "acr" = (/obj/structure/table/marble,/obj/machinery/door/window{dir = 8; req_one_access = list(25)},/obj/machinery/door/blast/shutters{dir = 8; id = "cafe"; layer = 3.1; name = "Cafe Shutters"},/obj/machinery/door/firedoor/glass,/turf/simulated/floor/tiled,/area/crew_quarters/visitor_dining) "acs" = (/turf/simulated/wall/r_wall,/area/tether/surfacebase/medical/first_aid_west) @@ -125,13 +125,13 @@ "acu" = (/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 9},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 10},/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/door/firedoor/glass/hidden/steel{dir = 8},/obj/structure/disposalpipe/segment,/obj/effect/floor_decal/borderfloor{dir = 4},/obj/effect/floor_decal/corner/mauve/border{dir = 4},/turf/simulated/floor/tiled,/area/rnd/hallway) "acv" = (/obj/machinery/atmospherics/pipe/simple/visible/red{dir = 6},/turf/simulated/floor/tiled,/area/engineering/atmos) "acw" = (/obj/effect/floor_decal/borderfloor{dir = 1; icon_state = "borderfloor"; pixel_y = 0},/obj/effect/floor_decal/corner/grey/border{dir = 1; icon_state = "bordercolor"},/obj/machinery/vending/loadout/clothing,/turf/simulated/floor/tiled,/area/crew_quarters/visitor_laundry) -"acx" = (/turf/simulated/floor/reinforced,/area/rnd/hallway) +"acx" = (/obj/machinery/atmospherics/unary/vent_pump/on,/obj/machinery/camera/network/research{dir = 4},/turf/simulated/floor/tiled,/area/rnd/hardstorage) "acy" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 8},/obj/structure/cable{icon_state = "1-2"},/turf/simulated/floor/tiled/steel_dirty,/area/tether/surfacebase/cargo/warehouse) "acz" = (/obj/effect/floor_decal/borderfloor{dir = 1; icon_state = "borderfloor"; pixel_y = 0},/obj/effect/floor_decal/corner/grey/border{dir = 1; icon_state = "bordercolor"},/obj/machinery/vending/loadout,/turf/simulated/floor/tiled,/area/crew_quarters/visitor_laundry) "acA" = (/obj/effect/floor_decal/borderfloor{dir = 1},/obj/effect/floor_decal/corner/brown/border{dir = 1},/obj/machinery/power/apc{dir = 1; name = "north bump"; pixel_x = 0; pixel_y = 28},/obj/effect/floor_decal/borderfloor/corner2{dir = 1},/obj/effect/floor_decal/corner/brown/bordercorner2{dir = 1},/obj/structure/cable{d2 = 2; icon_state = "0-2"},/turf/simulated/floor/tiled,/area/tether/surfacebase/cargo) "acB" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/disposalpipe/segment{dir = 2; icon_state = "pipe-c"},/obj/structure/window/reinforced{dir = 8},/obj/structure/cable{icon_state = "1-2"},/turf/simulated/floor/tiled,/area/tether/surfacebase/cargo) "acC" = (/obj/structure/table/rack,/obj/random/maintenance/cargo,/obj/random/maintenance/cargo,/obj/random/maintenance/clean,/turf/simulated/floor/tiled/techfloor,/area/maintenance/lower/mining_eva) -"acD" = (/obj/effect/floor_decal/industrial/warning{dir = 1},/turf/simulated/floor/reinforced,/area/rnd/hallway) +"acD" = (/obj/machinery/atmospherics/unary/vent_scrubber/on,/turf/simulated/floor/tiled,/area/rnd/hardstorage) "acE" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 5},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 5},/obj/structure/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/turf/simulated/floor/tiled/steel_dirty,/area/tether/surfacebase/cargo/warehouse) "acF" = (/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"; pixel_x = 0},/turf/simulated/floor/tiled/steel_dirty,/area/tether/surfacebase/cargo/warehouse) "acG" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0},/turf/simulated/floor/tiled/steel_dirty,/area/tether/surfacebase/cargo/warehouse) @@ -167,7 +167,7 @@ "adk" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/corner/lightgrey/border,/obj/effect/floor_decal/borderfloor/corner2,/obj/effect/floor_decal/corner/lightgrey/bordercorner2,/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 1},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled,/area/hallway/lower/first_west) "adl" = (/obj/effect/floor_decal/rust,/obj/effect/floor_decal/industrial/outline/blue,/obj/machinery/atmospherics/binary/passive_gate/on{dir = 1},/turf/simulated/floor/plating,/area/maintenance/lower/mining_eva) "adm" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{icon_state = "4-8"},/turf/simulated/floor/tiled,/area/tether/surfacebase/cargo) -"adn" = (/obj/effect/floor_decal/industrial/warning{dir = 8; icon_state = "warning"},/obj/machinery/computer/area_atmos/tag{dir = 4; scrub_id = "rnd_can_store"},/obj/machinery/camera/network/research,/turf/simulated/floor/tiled,/area/rnd/xenobiology/xenoflora_storage) +"adn" = (/turf/simulated/wall/r_wall,/area/rnd/tankstorage) "ado" = (/obj/machinery/atmospherics/pipe/simple/visible/universal,/turf/simulated/floor/plating,/area/maintenance/lower/mining_eva) "adp" = (/obj/machinery/atmospherics/pipe/tank/air{dir = 4},/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/plating,/area/maintenance/lower/mining_eva) "adq" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/window/reinforced{dir = 1},/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{icon_state = "4-8"},/turf/simulated/floor/tiled,/area/tether/surfacebase/cargo) @@ -179,7 +179,7 @@ "adw" = (/obj/machinery/atmospherics/pipe/cap/visible/scrubbers,/turf/simulated/floor/plating,/area/construction/vacant_mining_ops) "adx" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/cap/visible/supply,/turf/simulated/floor/plating,/area/construction/vacant_mining_ops) "ady" = (/obj/machinery/portable_atmospherics/powered/pump/filled,/turf/simulated/floor/tiled/techfloor,/area/maintenance/lower/mining_eva) -"adz" = (/obj/structure/grille,/obj/structure/railing,/obj/machinery/door/blast/regular{density = 0; dir = 4; icon_state = "pdoor0"; id = "suckysucky"; name = "Scrubber Blast Door"; opacity = 0},/turf/simulated/floor/tiled,/area/rnd/hallway) +"adz" = (/obj/structure/cable/green{d1 = 2; d2 = 4; icon_state = "2-4"},/turf/simulated/floor/tiled,/area/rnd/hardstorage) "adA" = (/obj/structure/disposaloutlet{dir = 8},/obj/structure/disposalpipe/trunk{dir = 4},/obj/structure/railing,/obj/structure/railing{dir = 4},/turf/simulated/floor/tiled,/area/tether/surfacebase/cargo) "adB" = (/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/corner/brown/border,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/disposalpipe/segment,/obj/structure/cable{icon_state = "1-2"},/turf/simulated/floor/tiled,/area/tether/surfacebase/cargo) "adC" = (/obj/machinery/door/airlock/glass_mining{id_tag = "cargodoor"; name = "Cargo Office"; req_access = list(31); req_one_access = list()},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/disposalpipe/segment,/obj/structure/cable{icon_state = "1-2"},/turf/simulated/floor/tiled,/area/tether/surfacebase/cargo/office) @@ -192,8 +192,8 @@ "adJ" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/corner/lightgrey/border,/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 1},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled,/area/hallway/lower/first_west) "adK" = (/turf/simulated/wall,/area/tether/surfacebase/outside/outside1) "adL" = (/obj/machinery/atmospherics/pipe/manifold/hidden/cyan,/obj/effect/floor_decal/rust,/obj/effect/floor_decal/industrial/warning{dir = 8},/obj/machinery/light/small,/turf/simulated/floor/plating,/area/maintenance/lower/mining_eva) -"adM" = (/obj/effect/floor_decal/industrial/warning/dust,/turf/simulated/floor/reinforced,/area/rnd/hallway) -"adN" = (/obj/structure/disposaloutlet{icon_state = "outlet"; dir = 1},/obj/structure/disposalpipe/trunk,/obj/effect/floor_decal/industrial/warning/dust,/turf/simulated/floor/reinforced,/area/rnd/hallway) +"adM" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/tiled,/area/rnd/hardstorage) +"adN" = (/obj/machinery/power/apc/high{dir = 4; pixel_x = 28; pixel_y = 0},/obj/structure/cable/green{d2 = 8; icon_state = "0-8"},/turf/simulated/floor/tiled,/area/rnd/hardstorage) "adO" = (/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/corner/lightgrey/border,/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 1},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled,/area/hallway/lower/first_west) "adP" = (/obj/structure/table/glass,/obj/effect/floor_decal/borderfloor{dir = 4},/obj/effect/floor_decal/corner/brown/border{dir = 4},/obj/machinery/computer/guestpass{dir = 8; pixel_x = 25},/turf/simulated/floor/tiled,/area/tether/surfacebase/cargo) "adQ" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/disposalpipe/segment,/obj/structure/cable{icon_state = "1-2"},/turf/simulated/floor/tiled,/area/tether/surfacebase/cargo/office) @@ -249,7 +249,7 @@ "aeO" = (/obj/machinery/door/firedoor/glass,/obj/machinery/door/airlock{name = "Secondary Janitorial Closet"; req_access = list(26)},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/tiled,/area/tether/surfacebase/north_stairs_one) "aeP" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/corner/lightgrey/border,/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 8},/obj/structure/extinguisher_cabinet{dir = 1; icon_state = "extinguisher_closed"; pixel_y = -32},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled,/area/tether/surfacebase/north_stairs_one) "aeQ" = (/obj/machinery/door/airlock/multi_tile/glass{name = "Surface Cargo"},/obj/machinery/door/firedoor/glass,/obj/effect/floor_decal/steeldecal/steel_decals_central1{dir = 8},/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled/monofloor{dir = 8},/area/tether/surfacebase/surface_one_hall) -"aeR" = (/obj/machinery/igniter{id = "sparkee"},/turf/simulated/floor/reinforced,/area/rnd/hallway) +"aeR" = (/turf/simulated/floor/reinforced,/area/rnd/testingroom) "aeS" = (/obj/effect/floor_decal/borderfloor{dir = 10},/obj/effect/floor_decal/corner/brown/border{dir = 10},/obj/effect/floor_decal/borderfloor/corner2{dir = 8},/obj/effect/floor_decal/corner/brown/bordercorner2{dir = 8},/turf/simulated/floor/tiled,/area/tether/surfacebase/cargo) "aeT" = (/obj/effect/floor_decal/borderfloor{dir = 1; icon_state = "borderfloor"; pixel_y = 0},/obj/effect/floor_decal/corner/lightgrey/border{dir = 1},/obj/effect/floor_decal/borderfloor/corner2{dir = 4},/obj/effect/floor_decal/corner/lightgrey/bordercorner2{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals7,/turf/simulated/floor/tiled,/area/tether/surfacebase/public_garden) "aeU" = (/obj/machinery/light,/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/corner/brown/border,/obj/effect/floor_decal/borderfloor/corner2{dir = 9},/obj/effect/floor_decal/corner/brown/bordercorner2{dir = 9},/turf/simulated/floor/tiled,/area/tether/surfacebase/cargo) @@ -262,9 +262,9 @@ "afb" = (/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/corner/brown/border,/obj/machinery/computer/supplycomp{dir = 1; icon_state = "computer"},/obj/effect/floor_decal/borderfloor/corner2,/obj/effect/floor_decal/corner/brown/bordercorner2,/turf/simulated/floor/tiled,/area/tether/surfacebase/cargo) "afc" = (/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/borderfloor,/obj/effect/floor_decal/corner/lightgrey/border,/obj/effect/floor_decal/borderfloor/corner2{dir = 9},/obj/effect/floor_decal/corner/lightgrey/bordercorner2{dir = 9},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 10},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 8},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled,/area/tether/surfacebase/north_stairs_one) "afd" = (/turf/simulated/floor/tiled/techfloor,/area/maintenance/lower/mining_eva) -"afe" = (/obj/machinery/door/firedoor,/obj/structure/grille,/obj/structure/window/reinforced{dir = 1},/obj/structure/window/reinforced,/obj/machinery/door/blast/regular{density = 0; dir = 4; icon_state = "pdoor0"; id = "gogogo"; name = "Blast Door"; opacity = 0},/turf/simulated/floor/tiled,/area/rnd/hallway) +"afe" = (/obj/effect/floor_decal/industrial/warning{dir = 1},/turf/simulated/floor/reinforced,/area/rnd/testingroom) "aff" = (/obj/machinery/door/firedoor/glass,/obj/effect/floor_decal/steeldecal/steel_decals_central1{dir = 4},/turf/simulated/floor/tiled/monofloor{dir = 4},/area/tether/surfacebase/cargo) -"afg" = (/obj/structure/disposalpipe/segment,/obj/machinery/door/firedoor,/obj/structure/grille,/obj/structure/window/reinforced{dir = 1},/obj/structure/window/reinforced,/obj/machinery/door/blast/regular{density = 0; dir = 4; icon_state = "pdoor0"; id = "gogogo"; name = "Blast Door"; opacity = 0},/turf/simulated/floor/tiled,/area/rnd/hallway) +"afg" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 5; icon_state = "intact-supply"},/turf/simulated/floor/tiled,/area/rnd/hardstorage) "afh" = (/obj/effect/floor_decal/spline/plain{dir = 4},/obj/machinery/door/firedoor/glass,/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/machinery/door/airlock/multi_tile/glass{dir = 1; name = "West Hallway"},/obj/effect/floor_decal/steeldecal/steel_decals_central1,/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled/monofloor,/area/tether/surfacebase/surface_one_hall) "afi" = (/obj/structure/bed/chair{dir = 1},/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/corner/brown/border,/obj/effect/floor_decal/borderfloor/corner2,/obj/effect/floor_decal/corner/brown/bordercorner2,/obj/machinery/firealarm{dir = 1; pixel_x = 0; pixel_y = -24},/turf/simulated/floor/tiled,/area/tether/surfacebase/cargo) "afj" = (/obj/structure/bed/chair{dir = 1},/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/corner/brown/border,/obj/machinery/alarm{dir = 1; pixel_y = -25},/turf/simulated/floor/tiled,/area/tether/surfacebase/cargo) @@ -278,13 +278,13 @@ "afr" = (/obj/structure/table/standard,/obj/random/tech_supply,/obj/random/tech_supply,/obj/random/tech_supply,/obj/random/tech_supply,/turf/simulated/floor/tiled,/area/storage/primary) "afs" = (/obj/effect/floor_decal/borderfloor{dir = 8},/obj/effect/floor_decal/corner/brown/border{dir = 8},/obj/effect/floor_decal/borderfloor/corner2{dir = 8},/obj/effect/floor_decal/corner/brown/bordercorner2{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 5},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 6},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 5},/turf/simulated/floor/tiled,/area/tether/surfacebase/cargo) "aft" = (/obj/machinery/camera/network/civilian{dir = 2},/obj/machinery/lapvend,/turf/simulated/floor/tiled,/area/storage/primary) -"afu" = (/obj/machinery/atmospherics/unary/vent_pump{name = "Gas Vent"},/turf/simulated/floor/reinforced,/area/rnd/hallway) +"afu" = (/obj/machinery/atmospherics/pipe/simple/visible/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 5},/turf/simulated/floor/tiled,/area/rnd/hardstorage) "afv" = (/obj/structure/closet/firecloset,/turf/simulated/floor/tiled,/area/storage/primary) "afw" = (/obj/structure/table/standard,/obj/random/tech_supply,/obj/random/tech_supply,/obj/random/tech_supply,/obj/random/tech_supply,/obj/machinery/alarm{pixel_y = 23},/turf/simulated/floor/tiled,/area/storage/primary) "afx" = (/obj/effect/floor_decal/borderfloor{dir = 8},/obj/effect/floor_decal/corner/brown/border{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 5},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 6},/obj/structure/sign/nosmoking_2{pixel_x = -32},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/tiled,/area/tether/surfacebase/cargo) "afy" = (/obj/structure/table/standard,/obj/item/weapon/paper_bin{pixel_x = -3; pixel_y = 7},/obj/item/weapon/pen/red{pixel_x = 2; pixel_y = 6},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/disposalpipe/junction/yjunction,/turf/simulated/floor/tiled,/area/tether/surfacebase/cargo/office) "afz" = (/obj/effect/floor_decal/borderfloor{dir = 1},/obj/effect/floor_decal/corner/lightgrey/border{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals7,/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 4},/obj/machinery/camera/network/tether,/turf/simulated/floor/tiled,/area/hallway/lower/first_west) -"afA" = (/obj/machinery/atmospherics/unary/vent_scrubber,/turf/simulated/floor/reinforced,/area/rnd/hallway) +"afA" = (/obj/machinery/atmospherics/pipe/simple/visible/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/turf/simulated/floor/tiled,/area/rnd/hardstorage) "afB" = (/obj/effect/floor_decal/borderfloor{dir = 8},/obj/effect/floor_decal/corner/brown/border{dir = 8},/obj/effect/floor_decal/borderfloor/corner2{dir = 10},/obj/effect/floor_decal/corner/brown/bordercorner2{dir = 10},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 5},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 5},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 6},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 5; icon_state = "intact-scrubbers"},/turf/simulated/floor/tiled,/area/tether/surfacebase/cargo) "afC" = (/obj/effect/decal/cleanable/dirt,/obj/structure/table/rack,/obj/random/maintenance/cargo,/obj/random/maintenance/cargo,/obj/random/maintenance/clean,/turf/simulated/floor/tiled/techfloor,/area/maintenance/lower/mining_eva) "afD" = (/obj/effect/floor_decal/borderfloor{dir = 4},/obj/effect/floor_decal/corner/brown/border{dir = 4},/obj/machinery/alarm{dir = 8; icon_state = "alarm0"; pixel_x = 24},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 10},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 9},/turf/simulated/floor/tiled,/area/tether/surfacebase/cargo) @@ -299,15 +299,15 @@ "afM" = (/obj/machinery/light,/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/extinguisher_cabinet{dir = 1; icon_state = "extinguisher_closed"; pixel_y = -32},/turf/simulated/floor/tiled/steel_dirty,/area/tether/surfacebase/cargo/warehouse) "afN" = (/obj/machinery/conveyor{dir = 8; id = "gloriouscargopipeline"},/turf/simulated/floor/tiled/steel_dirty,/area/tether/surfacebase/cargo/warehouse) "afO" = (/obj/structure/railing{dir = 8},/obj/structure/sign/warning{desc = "A warning sign. It has great big words saying 'Surface Cargo Deliveries. Stay behind the railings when active!' on it."; name = "Surface Cargo Delivery"; pixel_y = 32},/obj/effect/floor_decal/industrial/loading,/turf/simulated/floor/tiled,/area/tether/surfacebase/cargo) -"afP" = (/obj/effect/floor_decal/industrial/warning/dust{dir = 1},/obj/machinery/atmospherics/portables_connector,/turf/simulated/floor/tiled,/area/rnd/hallway) +"afP" = (/obj/structure/disposalpipe/segment{dir = 4; icon_state = "pipe-c"},/obj/machinery/atmospherics/pipe/simple/visible/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/tiled,/area/rnd/hardstorage) "afQ" = (/obj/structure/disposalpipe/segment{dir = 1; icon_state = "pipe-c"},/obj/structure/window/reinforced{dir = 1},/obj/structure/sign/warning/moving_parts{desc = "A warning sign for moving parts. This one states 'Put your gathered ore here for processing!' on it."; name = "To Mining Operations Processing"; pixel_x = -32},/turf/simulated/floor/tiled/steel_dirty,/area/tether/surfacebase/cargo/warehouse) "afR" = (/obj/effect/floor_decal/corner_steel_grid{dir = 5},/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/virgo3b,/area/tether/surfacebase/outside/outside1) "afS" = (/obj/effect/floor_decal/borderfloor/corner2{dir = 1},/obj/effect/floor_decal/borderfloor/corner2{dir = 4},/obj/effect/floor_decal/corner/brown/bordercorner2{dir = 4},/obj/effect/floor_decal/corner/brown/bordercorner2{dir = 1},/obj/machinery/light_switch{dir = 2; name = "light switch "; pixel_x = 10; pixel_y = 32},/obj/machinery/conveyor_switch{id = "surfacecargo"; name = "Surface Cargo Delivery conveyor switch"; pixel_x = 0; pixel_y = 0},/turf/simulated/floor/tiled,/area/tether/surfacebase/cargo/office) "afT" = (/turf/simulated/floor/tiled,/area/storage/primary) -"afU" = (/obj/machinery/disposal,/obj/structure/disposalpipe/trunk{dir = 1},/obj/effect/floor_decal/industrial/warning/dust{dir = 1},/turf/simulated/floor/tiled,/area/rnd/hallway) +"afU" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/visible/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/turf/simulated/floor/tiled,/area/rnd/hardstorage) "afV" = (/obj/machinery/atmospherics/unary/vent_pump/on,/turf/simulated/floor/tiled,/area/storage/primary) "afW" = (/obj/structure/table/standard,/turf/simulated/floor/tiled,/area/storage/primary) -"afX" = (/obj/structure/table/steel_reinforced,/obj/effect/floor_decal/industrial/warning/dust{dir = 1},/turf/simulated/floor/tiled,/area/rnd/hallway) +"afX" = (/obj/machinery/door/airlock/maintenance/rnd{name = "Research Maintenance Access"; req_access = list(55)},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/door/firedoor/glass,/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled/steel_dirty,/area/rnd/hardstorage) "afY" = (/obj/machinery/camera/network/civilian,/turf/simulated/floor/tiled,/area/tether/surfacebase/tram) "afZ" = (/obj/effect/floor_decal/borderfloor{dir = 1; icon_state = "borderfloor"; pixel_y = 0},/obj/effect/floor_decal/corner/grey/border{dir = 1; icon_state = "bordercolor"},/obj/machinery/vending/loadout/overwear,/turf/simulated/floor/tiled,/area/crew_quarters/visitor_laundry) "aga" = (/obj/effect/floor_decal/borderfloor{dir = 4},/obj/effect/floor_decal/corner/grey/border{dir = 4; icon_state = "bordercolor"},/obj/machinery/camera/network/civilian{dir = 9},/obj/machinery/vending/coffee{dir = 8; icon_state = "coffee"},/turf/simulated/floor/tiled,/area/crew_quarters/visitor_laundry) @@ -321,37 +321,37 @@ "agi" = (/obj/structure/sign/deck/first,/turf/simulated/shuttle/wall/voidcraft/green{hard_corner = 1},/area/tether/elevator) "agj" = (/obj/machinery/button/remote/blast_door{id = "mine_warehouse"; name = "Warehouse Door Control"; pixel_x = 0; pixel_y = -22; req_access = list(31)},/turf/simulated/floor/tiled/steel_dirty,/area/tether/surfacebase/cargo/warehouse) "agk" = (/obj/machinery/portable_atmospherics/canister/oxygen,/turf/simulated/floor/tiled,/area/rnd/xenoarch_storage) -"agl" = (/obj/effect/floor_decal/industrial/warning/dust{dir = 1},/turf/simulated/floor/tiled,/area/rnd/hallway) -"agm" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 5; icon_state = "intact-supply"},/turf/simulated/floor/tiled,/area/rnd/hallway) -"agn" = (/obj/effect/floor_decal/industrial/warning/dust{dir = 1},/obj/machinery/atmospherics/portables_connector,/obj/machinery/portable_atmospherics/canister/empty,/turf/simulated/floor/tiled,/area/rnd/hallway) +"agl" = (/obj/machinery/igniter{id = "sparkee"},/turf/simulated/floor/reinforced,/area/rnd/testingroom) +"agm" = (/obj/machinery/firealarm{dir = 1; pixel_x = 0; pixel_y = -24},/turf/simulated/floor/tiled,/area/rnd/hardstorage) +"agn" = (/obj/structure/disposalpipe/segment,/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/tiled,/area/rnd/hardstorage) "ago" = (/obj/effect/floor_decal/steeldecal/steel_decals6{dir = 4},/obj/structure/disposalpipe/junction{dir = 8; icon_state = "pipe-j2"},/turf/simulated/floor/tiled,/area/tether/surfacebase/surface_one_hall) "agp" = (/obj/machinery/alarm{dir = 4; icon_state = "alarm0"; pixel_x = -22},/obj/machinery/suspension_gen,/turf/simulated/floor/tiled,/area/rnd/xenoarch_storage) "agq" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/disposalpipe/segment{dir = 8; icon_state = "pipe-c"},/turf/simulated/floor/tiled,/area/tether/surfacebase/cargo) -"agr" = (/obj/effect/floor_decal/industrial/warning/dust,/obj/machinery/atmospherics/pipe/simple/hidden,/turf/simulated/floor/reinforced,/area/rnd/hallway) +"agr" = (/obj/machinery/alarm{dir = 8; icon_state = "alarm0"; pixel_x = 24},/turf/simulated/floor/tiled,/area/rnd/hardstorage) "ags" = (/obj/machinery/light{dir = 4},/obj/structure/table/rack,/obj/item/clothing/mask/gas,/obj/item/clothing/suit/storage/hooded/wintercoat/science,/obj/item/weapon/tank/emergency/oxygen/engi,/obj/item/clothing/mask/gas,/obj/item/clothing/suit/storage/hooded/wintercoat/science,/obj/item/weapon/tank/emergency/oxygen/engi,/turf/simulated/floor/tiled,/area/rnd/xenoarch_storage) "agt" = (/obj/structure/table/rack,/obj/item/device/suit_cooling_unit,/obj/item/device/suit_cooling_unit,/turf/simulated/floor/tiled,/area/rnd/xenoarch_storage) "agu" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/tiled,/area/storage/primary) "agv" = (/turf/simulated/wall/r_wall,/area/rnd/chemistry_lab) "agw" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 9},/obj/machinery/camera/network/research{dir = 1},/turf/simulated/floor/tiled,/area/rnd/xenoarch_storage) -"agx" = (/obj/structure/table/steel_reinforced,/obj/effect/floor_decal/industrial/warning/dust{dir = 1},/obj/item/weapon/storage/toolbox/electrical,/obj/item/weapon/storage/toolbox/mechanical,/turf/simulated/floor/tiled,/area/rnd/hallway) +"agx" = (/obj/machinery/atmospherics/unary/vent_pump{name = "Gas Vent"},/turf/simulated/floor/reinforced,/area/rnd/testingroom) "agy" = (/obj/structure/catwalk,/obj/machinery/alarm{pixel_y = 22},/obj/effect/floor_decal/rust,/obj/structure/disposalpipe/segment{dir = 4; icon_state = "pipe-c"},/turf/simulated/floor/tiled/techfloor,/area/maintenance/lower/xenoflora) "agz" = (/obj/structure/reagent_dispensers/watertank,/turf/simulated/floor/tiled,/area/storage/primary) "agA" = (/obj/structure/table/standard,/obj/random/tech_supply,/obj/random/tech_supply,/obj/random/tech_supply,/obj/random/tech_supply,/obj/machinery/cell_charger,/turf/simulated/floor/tiled,/area/storage/primary) "agB" = (/obj/machinery/vending/tool{dir = 8},/turf/simulated/floor/tiled,/area/storage/primary) "agC" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/door/firedoor/glass,/obj/machinery/door/airlock/glass_research{name = "Xenoarch Storage"; req_access = list(65)},/turf/simulated/floor/tiled/steel_grid,/area/rnd/xenoarch_storage) -"agD" = (/obj/machinery/door/firedoor,/obj/structure/grille,/obj/structure/window/reinforced{dir = 1},/obj/structure/window/reinforced,/obj/structure/window/reinforced{dir = 4},/obj/machinery/door/blast/regular{density = 0; dir = 4; icon_state = "pdoor0"; id = "gogogo"; name = "Blast Door"; opacity = 0},/turf/simulated/floor/tiled,/area/rnd/hallway) -"agE" = (/obj/machinery/door/blast/regular{density = 0; dir = 4; icon_state = "pdoor0"; id = "shuttle blast"; name = "Shuttle Blast Doors"; opacity = 0},/obj/machinery/door/window/northleft{req_access = list(47)},/obj/machinery/door/window/southleft{req_access = list(47)},/obj/machinery/atmospherics/pipe/simple/hidden,/obj/machinery/door/blast/regular{density = 0; dir = 4; icon_state = "pdoor0"; id = "gogogo"; name = "Blast Door"; opacity = 0},/turf/simulated/floor/tiled,/area/rnd/hallway) -"agF" = (/obj/machinery/door/firedoor,/obj/structure/grille,/obj/structure/window/reinforced{dir = 1},/obj/structure/window/reinforced,/obj/structure/window/reinforced{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden,/obj/machinery/door/blast/regular{density = 0; dir = 4; icon_state = "pdoor0"; id = "gogogo"; name = "Blast Door"; opacity = 0},/turf/simulated/floor/tiled,/area/rnd/hallway) -"agG" = (/obj/effect/floor_decal/industrial/warning/dust{dir = 1},/obj/machinery/atmospherics/pipe/simple/hidden,/turf/simulated/floor/tiled,/area/rnd/hallway) +"agD" = (/obj/machinery/atmospherics/unary/vent_scrubber,/turf/simulated/floor/reinforced,/area/rnd/testingroom) +"agE" = (/obj/structure/disposalpipe/segment,/obj/machinery/door/airlock/research{id_tag = "researchdoor"; name = "Research Hard Storage"; req_access = list(47)},/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/tiled,/area/rnd/hardstorage) +"agF" = (/obj/effect/floor_decal/industrial/warning/dust,/turf/simulated/floor/reinforced,/area/rnd/testingroom) +"agG" = (/obj/structure/disposaloutlet{icon_state = "outlet"; dir = 1},/obj/structure/disposalpipe/trunk,/obj/effect/floor_decal/industrial/warning/dust,/turf/simulated/floor/reinforced,/area/rnd/testingroom) "agH" = (/obj/structure/catwalk,/obj/effect/decal/cleanable/dirt,/obj/machinery/light/small{dir = 1},/turf/simulated/floor/plating,/area/maintenance/lower/trash_pit) "agI" = (/obj/machinery/newscaster{pixel_x = -30},/obj/structure/reagent_dispensers/foam,/turf/simulated/floor/tiled,/area/storage/primary) "agJ" = (/obj/machinery/atmospherics/unary/vent_scrubber/on,/turf/simulated/floor/tiled,/area/storage/primary) "agK" = (/obj/structure/table/standard,/obj/random/tech_supply,/obj/random/tech_supply,/obj/random/tech_supply,/obj/random/tech_supply,/obj/machinery/light{dir = 4},/turf/simulated/floor/tiled,/area/storage/primary) "agL" = (/obj/structure/table/glass,/obj/item/weapon/storage/box/beakers,/obj/effect/floor_decal/borderfloor{dir = 9},/obj/effect/floor_decal/corner/mauve/border{dir = 9},/turf/simulated/floor/tiled/white,/area/rnd/chemistry_lab) "agM" = (/turf/simulated/wall,/area/tether/surfacebase/surface_one_hall) -"agN" = (/obj/structure/table/steel_reinforced,/obj/effect/floor_decal/industrial/warning/dust{dir = 1},/obj/machinery/atmospherics/pipe/simple/hidden,/turf/simulated/floor/tiled,/area/rnd/hallway) +"agN" = (/obj/effect/floor_decal/industrial/warning/dust,/obj/machinery/atmospherics/pipe/simple/hidden,/turf/simulated/floor/reinforced,/area/rnd/testingroom) "agO" = (/obj/structure/table/glass,/obj/machinery/status_display{layer = 4; pixel_x = 0; pixel_y = 32},/obj/effect/floor_decal/borderfloor{dir = 1; pixel_y = 0},/obj/effect/floor_decal/corner/mauve/border{dir = 1},/turf/simulated/floor/tiled/white,/area/rnd/chemistry_lab) -"agP" = (/obj/machinery/firealarm{dir = 1; pixel_x = 0; pixel_y = -24},/turf/simulated/floor/tiled,/area/rnd/hallway) +"agP" = (/obj/machinery/door/firedoor,/obj/structure/grille,/obj/structure/window/reinforced{dir = 1},/obj/structure/window/reinforced,/obj/machinery/door/blast/regular{density = 0; dir = 4; icon_state = "pdoor0"; id = "gogogo"; name = "Blast Door"; opacity = 0},/turf/simulated/floor/tiled,/area/rnd/testingroom) "agQ" = (/obj/structure/railing{dir = 8},/obj/structure/railing{dir = 1},/obj/effect/decal/cleanable/dirt,/obj/random/trash_pile,/turf/simulated/floor/plating,/area/maintenance/lower/trash_pit) "agR" = (/obj/structure/table/glass,/obj/item/weapon/tool/screwdriver,/obj/effect/floor_decal/borderfloor{dir = 1; pixel_y = 0},/obj/effect/floor_decal/corner/mauve/border{dir = 1},/turf/simulated/floor/tiled/white,/area/rnd/chemistry_lab) "agS" = (/obj/structure/railing{dir = 1},/obj/structure/railing{dir = 4},/obj/effect/decal/cleanable/dirt,/obj/effect/floor_decal/rust,/turf/simulated/floor/plating,/area/maintenance/lower/trash_pit) @@ -362,11 +362,11 @@ "agX" = (/obj/effect/floor_decal/industrial/hatch/yellow,/turf/simulated/floor/tiled,/area/storage/primary) "agY" = (/obj/effect/floor_decal/industrial/outline/yellow,/turf/simulated/floor/tiled,/area/storage/primary) "agZ" = (/obj/structure/bed/chair/office/light{dir = 1},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 6},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 6},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled/white,/area/rnd/chemistry_lab) -"aha" = (/obj/machinery/atmospherics/pipe/simple/visible/universal{dir = 8},/turf/simulated/floor/tiled,/area/rnd/hallway) -"ahb" = (/obj/machinery/alarm{dir = 8; icon_state = "alarm0"; pixel_x = 24},/turf/simulated/floor/tiled,/area/rnd/hallway) +"aha" = (/obj/structure/disposalpipe/segment,/obj/machinery/door/firedoor,/obj/structure/grille,/obj/structure/window/reinforced{dir = 1},/obj/structure/window/reinforced,/obj/machinery/door/blast/regular{density = 0; dir = 4; icon_state = "pdoor0"; id = "gogogo"; name = "Blast Door"; opacity = 0},/turf/simulated/floor/tiled,/area/rnd/testingroom) +"ahb" = (/obj/machinery/door/firedoor,/obj/structure/grille,/obj/structure/window/reinforced{dir = 1},/obj/structure/window/reinforced,/obj/structure/window/reinforced{dir = 4},/obj/machinery/door/blast/regular{density = 0; dir = 4; icon_state = "pdoor0"; id = "gogogo"; name = "Blast Door"; opacity = 0},/turf/simulated/floor/tiled,/area/rnd/testingroom) "ahc" = (/obj/machinery/portable_atmospherics/powered/scrubber/huge/stationary{scrub_id = "atrium"},/turf/simulated/floor/tiled/techmaint,/area/tether/surfacebase/surface_one_hall) -"ahd" = (/obj/machinery/atmospherics/pipe/simple/visible/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 5},/turf/simulated/floor/tiled,/area/rnd/hallway) -"ahe" = (/obj/machinery/atmospherics/binary/pump{dir = 1},/obj/machinery/power/apc{cell_type = /obj/item/weapon/cell/apc; dir = 8; name = "west bump"; pixel_x = -28},/obj/structure/cable/green{icon_state = "0-4"},/turf/simulated/floor/tiled,/area/rnd/hallway) +"ahd" = (/obj/machinery/door/blast/regular{density = 0; dir = 4; icon_state = "pdoor0"; id = "shuttle blast"; name = "Shuttle Blast Doors"; opacity = 0},/obj/machinery/door/window/northleft{req_access = list(47)},/obj/machinery/door/window/southleft{req_access = list(47)},/obj/machinery/atmospherics/pipe/simple/hidden,/obj/machinery/door/blast/regular{density = 0; dir = 4; icon_state = "pdoor0"; id = "gogogo"; name = "Blast Door"; opacity = 0},/turf/simulated/floor/tiled,/area/rnd/testingroom) +"ahe" = (/obj/machinery/door/firedoor,/obj/structure/grille,/obj/structure/window/reinforced{dir = 1},/obj/structure/window/reinforced,/obj/structure/window/reinforced{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden,/obj/machinery/door/blast/regular{density = 0; dir = 4; icon_state = "pdoor0"; id = "gogogo"; name = "Blast Door"; opacity = 0},/turf/simulated/floor/tiled,/area/rnd/testingroom) "ahf" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled/white,/area/rnd/chemistry_lab) "ahg" = (/obj/effect/decal/cleanable/dirt,/obj/effect/floor_decal/rust,/obj/random/cigarettes,/obj/random/junk,/obj/random/junk,/obj/random/tool,/turf/simulated/floor/plating,/area/maintenance/lower/trash_pit) "ahh" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable/green{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 10},/obj/effect/floor_decal/steeldecal/steel_decals4,/turf/simulated/floor/tiled/white,/area/rnd/chemistry_lab) @@ -374,7 +374,7 @@ "ahj" = (/obj/machinery/atmospherics/pipe/tank/air,/obj/effect/floor_decal/industrial/warning{dir = 8},/turf/simulated/floor/plating,/area/storage/surface_eva) "ahk" = (/obj/machinery/atmospherics/pipe/tank/air,/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/plating,/area/storage/surface_eva) "ahl" = (/turf/simulated/wall,/area/hallway/lower/first_west) -"ahm" = (/obj/machinery/atmospherics/pipe/simple/visible/blue{dir = 5},/obj/item/pipe_meter,/turf/simulated/floor/tiled,/area/rnd/hallway) +"ahm" = (/obj/effect/floor_decal/industrial/warning/dust{dir = 1},/obj/machinery/atmospherics/portables_connector,/obj/machinery/portable_atmospherics/canister/empty,/turf/simulated/floor/tiled,/area/rnd/testingroom) "ahn" = (/obj/structure/grille,/obj/structure/window/reinforced/full,/obj/machinery/door/firedoor,/turf/simulated/floor/plating,/area/storage/primary) "aho" = (/obj/machinery/door/firedoor/glass,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/disposalpipe/segment,/obj/machinery/door/airlock/glass{name = "Primary Tool Storage"},/turf/simulated/floor/tiled/steel_grid,/area/storage/primary) "ahp" = (/obj/structure/railing{dir = 1},/obj/structure/railing{dir = 8},/obj/effect/decal/cleanable/dirt,/obj/random/maintenance/cargo,/turf/simulated/floor/tiled/techfloor,/area/maintenance/lower/mining_eva) @@ -383,17 +383,17 @@ "ahs" = (/obj/structure/railing{dir = 1},/obj/effect/floor_decal/rust,/turf/simulated/floor/tiled/techfloor,/area/maintenance/lower/mining_eva) "aht" = (/obj/machinery/door/firedoor/glass,/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/door/airlock/glass_research{name = "Chemical Research"},/turf/simulated/floor/tiled/white,/area/rnd/chemistry_lab) "ahu" = (/obj/structure/grille,/obj/structure/railing,/turf/simulated/floor/tiled/techmaint,/area/tether/surfacebase/surface_one_hall) -"ahv" = (/obj/item/pipe_meter,/obj/machinery/atmospherics/pipe/simple/hidden{dir = 4},/turf/simulated/floor/tiled,/area/rnd/hallway) -"ahw" = (/obj/machinery/atmospherics/pipe/simple/hidden{dir = 4},/turf/simulated/floor/tiled,/area/rnd/hallway) +"ahv" = (/obj/effect/floor_decal/industrial/warning/dust{dir = 1},/obj/machinery/atmospherics/portables_connector,/turf/simulated/floor/tiled,/area/rnd/testingroom) +"ahw" = (/obj/effect/floor_decal/industrial/warning/dust{dir = 1},/turf/simulated/floor/tiled,/area/rnd/testingroom) "ahx" = (/turf/simulated/wall,/area/tether/surfacebase/emergency_storage/atrium) -"ahy" = (/obj/structure/table/steel_reinforced,/obj/effect/floor_decal/industrial/warning/dust{dir = 1},/obj/item/device/assembly/signaler,/obj/item/device/assembly/prox_sensor,/obj/item/device/assembly/signaler,/obj/item/device/assembly/timer,/obj/item/device/assembly/voice,/obj/item/device/radio/electropack,/turf/simulated/floor/tiled,/area/rnd/hallway) +"ahy" = (/obj/machinery/disposal,/obj/structure/disposalpipe/trunk{dir = 1},/obj/effect/floor_decal/industrial/warning/dust{dir = 1},/turf/simulated/floor/tiled,/area/rnd/testingroom) "ahz" = (/obj/structure/railing{dir = 8},/obj/structure/railing,/obj/effect/decal/cleanable/dirt,/obj/effect/floor_decal/rust,/obj/random/junk,/obj/random/junk,/obj/random/maintenance/clean,/turf/simulated/floor/plating,/area/maintenance/lower/trash_pit) "ahA" = (/obj/effect/decal/cleanable/dirt,/obj/effect/floor_decal/industrial/warning,/obj/random/junk,/obj/random/junk,/turf/simulated/floor/plating,/area/maintenance/lower/trash_pit) "ahB" = (/obj/structure/railing,/obj/structure/railing{dir = 4},/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/plating,/area/maintenance/lower/trash_pit) "ahC" = (/obj/machinery/atmospherics/pipe/simple/hidden/cyan{dir = 6},/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/plating,/area/storage/surface_eva) "ahD" = (/obj/machinery/atmospherics/pipe/manifold/hidden/cyan,/obj/effect/floor_decal/industrial/warning{dir = 10},/turf/simulated/floor/plating,/area/storage/surface_eva) "ahE" = (/obj/machinery/atmospherics/pipe/manifold/hidden/cyan,/obj/effect/floor_decal/industrial/warning{dir = 6},/turf/simulated/floor/plating,/area/storage/surface_eva) -"ahF" = (/obj/structure/table/steel_reinforced,/obj/item/device/assembly/infra,/obj/item/device/assembly/igniter,/turf/simulated/floor/tiled,/area/rnd/hallway) +"ahF" = (/obj/structure/table/steel_reinforced,/obj/effect/floor_decal/industrial/warning/dust{dir = 1},/turf/simulated/floor/tiled,/area/rnd/testingroom) "ahG" = (/obj/effect/floor_decal/borderfloor{dir = 9},/obj/effect/floor_decal/corner/lightgrey/border{dir = 9},/turf/simulated/floor/tiled,/area/hallway/lower/first_west) "ahH" = (/obj/effect/floor_decal/borderfloor{dir = 8},/obj/effect/floor_decal/corner/mauve/border{dir = 8},/obj/machinery/light{dir = 8; icon_state = "tube1"},/turf/simulated/floor/tiled/white,/area/rnd/chemistry_lab) "ahI" = (/obj/machinery/status_display{pixel_y = 30},/obj/effect/floor_decal/borderfloor{dir = 1},/obj/effect/floor_decal/corner/lightgrey/border{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals7,/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 4},/turf/simulated/floor/tiled,/area/hallway/lower/first_west) @@ -412,7 +412,7 @@ "ahV" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/disposalpipe/segment,/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 9},/turf/simulated/floor/tiled,/area/hallway/lower/first_west) "ahW" = (/obj/effect/floor_decal/borderfloor{dir = 5},/obj/effect/floor_decal/corner/lightgrey/border{dir = 5},/obj/structure/closet/firecloset,/obj/effect/floor_decal/borderfloor/corner2{dir = 5},/obj/effect/floor_decal/corner/lightgrey/bordercorner2{dir = 5},/obj/machinery/light{dir = 4},/turf/simulated/floor/tiled,/area/hallway/lower/first_west) "ahX" = (/turf/simulated/wall,/area/tether/surfacebase/north_stairs_one) -"ahY" = (/obj/machinery/atmospherics/pipe/simple/hidden{dir = 4},/obj/machinery/disposal,/obj/structure/disposalpipe/trunk{dir = 4},/turf/simulated/floor/tiled,/area/rnd/hallway) +"ahY" = (/obj/effect/floor_decal/industrial/warning/dust{dir = 1},/obj/machinery/atmospherics/pipe/simple/hidden,/turf/simulated/floor/tiled,/area/rnd/testingroom) "ahZ" = (/obj/structure/sign/directions/cargo{dir = 4},/turf/simulated/wall,/area/tether/surfacebase/north_stairs_one) "aia" = (/obj/structure/sign/directions/evac{dir = 4},/turf/simulated/wall,/area/tether/surfacebase/north_stairs_one) "aib" = (/obj/structure/cable/heavyduty{icon_state = "1-2"},/obj/structure/railing{dir = 8},/obj/structure/railing{dir = 4},/turf/simulated/floor/virgo3b,/area/tether/surfacebase/outside/outside1) @@ -421,32 +421,32 @@ "aie" = (/obj/machinery/light{dir = 1},/obj/effect/floor_decal/borderfloor{dir = 1},/obj/structure/disposalpipe/segment{dir = 4},/obj/effect/floor_decal/corner/lightgrey/border{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals7,/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 4},/turf/simulated/floor/tiled,/area/tether/surfacebase/surface_one_hall) "aif" = (/obj/effect/floor_decal/borderfloor{dir = 1},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/camera/network/tether,/obj/effect/floor_decal/corner/lightgrey/border{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals7,/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 4},/turf/simulated/floor/tiled,/area/tether/surfacebase/surface_one_hall) "aig" = (/obj/effect/floor_decal/borderfloor{dir = 1},/obj/structure/disposalpipe/segment{dir = 4},/obj/effect/floor_decal/industrial/danger{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals7,/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 4},/turf/simulated/floor/tiled,/area/tether/surfacebase/surface_one_hall) -"aih" = (/obj/structure/table/steel_reinforced,/obj/item/device/radio,/obj/item/device/radio,/turf/simulated/floor/tiled,/area/rnd/hallway) +"aih" = (/obj/structure/table/steel_reinforced,/obj/effect/floor_decal/industrial/warning/dust{dir = 1},/obj/machinery/atmospherics/pipe/simple/hidden,/turf/simulated/floor/tiled,/area/rnd/testingroom) "aii" = (/obj/effect/floor_decal/borderfloor{dir = 1},/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/extinguisher_cabinet{pixel_y = 30},/obj/effect/floor_decal/corner/lightgrey/border{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals7,/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 4},/turf/simulated/floor/tiled,/area/tether/surfacebase/surface_one_hall) "aij" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 9},/turf/simulated/floor/tiled/white,/area/rnd/chemistry_lab) -"aik" = (/obj/structure/table/rack/steel,/turf/simulated/floor/tiled,/area/rnd/hallway) -"ail" = (/obj/structure/table/rack/shelf/steel,/turf/simulated/floor/tiled,/area/rnd/hallway) -"aim" = (/obj/structure/closet/crate/plastic,/turf/simulated/floor/tiled,/area/rnd/hallway) +"aik" = (/obj/structure/table/steel_reinforced,/obj/effect/floor_decal/industrial/warning/dust{dir = 1},/obj/item/weapon/storage/toolbox/electrical,/obj/item/weapon/storage/toolbox/mechanical,/turf/simulated/floor/tiled,/area/rnd/testingroom) +"ail" = (/obj/structure/table/steel_reinforced,/obj/effect/floor_decal/industrial/warning/dust{dir = 1},/obj/item/device/assembly/signaler,/obj/item/device/assembly/prox_sensor,/obj/item/device/assembly/signaler,/obj/item/device/assembly/timer,/obj/item/device/assembly/voice,/obj/item/device/radio/electropack,/turf/simulated/floor/tiled,/area/rnd/testingroom) +"aim" = (/obj/machinery/atmospherics/binary/pump{dir = 1},/obj/machinery/power/apc{cell_type = /obj/item/weapon/cell/apc; dir = 8; name = "west bump"; pixel_x = -28},/obj/structure/cable/green{icon_state = "0-4"},/turf/simulated/floor/tiled,/area/rnd/testingroom) "ain" = (/obj/machinery/chem_master{dir = 8},/obj/effect/floor_decal/borderfloor{dir = 4},/obj/effect/floor_decal/corner/mauve/border{dir = 4},/obj/machinery/light{dir = 4; icon_state = "tube1"},/turf/simulated/floor/tiled/white,/area/rnd/chemistry_lab) -"aio" = (/obj/machinery/atmospherics/pipe/simple/visible/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/turf/simulated/floor/tiled,/area/rnd/hallway) +"aio" = (/obj/machinery/atmospherics/pipe/simple/visible/red{dir = 5; icon_state = "intact"},/obj/item/pipe_meter,/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/tiled,/area/rnd/testingroom) "aip" = (/obj/structure/table/glass,/obj/item/weapon/storage/box/beakers,/obj/item/clothing/glasses/science,/obj/machinery/atmospherics/unary/vent_pump/on{dir = 4},/obj/effect/floor_decal/borderfloor{dir = 8},/obj/effect/floor_decal/corner/mauve/border{dir = 8},/obj/item/weapon/storage/fancy/vials,/turf/simulated/floor/tiled/white,/area/rnd/chemistry_lab) -"aiq" = (/obj/structure/disposalpipe/segment{dir = 4; icon_state = "pipe-c"},/obj/machinery/atmospherics/pipe/simple/visible/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/tiled,/area/rnd/hallway) +"aiq" = (/obj/machinery/atmospherics/binary/pump{dir = 4},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/tiled,/area/rnd/testingroom) "air" = (/obj/structure/closet/firecloset,/turf/simulated/floor/plating,/area/maintenance/lower/mining_eva) "ais" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 9; pixel_y = 0},/turf/simulated/floor/tiled/white,/area/rnd/chemistry_lab) "ait" = (/obj/machinery/portable_atmospherics/powered/pump/filled,/obj/effect/floor_decal/industrial/outline/blue,/turf/simulated/floor/tiled/techfloor,/area/tether/surfacebase/emergency_storage/atrium) -"aiu" = (/obj/machinery/atmospherics/pipe/simple/visible/red{dir = 5; icon_state = "intact"},/obj/item/pipe_meter,/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/tiled,/area/rnd/hallway) -"aiv" = (/obj/machinery/atmospherics/binary/pump{dir = 4},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/tiled,/area/rnd/hallway) -"aiw" = (/obj/machinery/atmospherics/pipe/simple/visible/universal{dir = 8},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/tiled,/area/rnd/hallway) -"aix" = (/obj/machinery/button/remote/blast_door{id = "gogogo"; name = "Test Chamber Blast Seal Control"; pixel_y = 32},/obj/item/pipe_meter,/obj/machinery/atmospherics/pipe/simple/hidden{dir = 4},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/tiled,/area/rnd/hallway) +"aiu" = (/obj/machinery/atmospherics/pipe/simple/visible/universal{dir = 8},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/tiled,/area/rnd/testingroom) +"aiv" = (/obj/machinery/button/remote/blast_door{id = "gogogo"; name = "Test Chamber Blast Seal Control"; pixel_y = 32},/obj/item/pipe_meter,/obj/machinery/atmospherics/pipe/simple/hidden{dir = 4},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/tiled,/area/rnd/testingroom) +"aiw" = (/obj/machinery/atmospherics/pipe/simple/hidden{dir = 9; icon_state = "intact"},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/tiled,/area/rnd/testingroom) +"aix" = (/obj/machinery/button/remote/blast_door{id = "suckysucky"; name = "Scrubber Blast Door-Controller"; pixel_x = 0; pixel_y = 32},/obj/machinery/atmospherics/pipe/simple/hidden,/obj/structure/cable/green{d1 = 2; d2 = 8; icon_state = "2-8"},/turf/simulated/floor/tiled,/area/rnd/testingroom) "aiy" = (/turf/simulated/wall,/area/storage/surface_eva/external) "aiz" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 6},/obj/machinery/atmospherics/pipe/simple/hidden/cyan,/obj/effect/floor_decal/rust,/turf/simulated/floor/plating,/area/storage/surface_eva) "aiA" = (/obj/machinery/atmospherics/pipe/simple/visible/universal{dir = 4},/obj/machinery/light/small,/turf/simulated/floor/plating,/area/storage/surface_eva) -"aiB" = (/obj/machinery/atmospherics/pipe/simple/hidden{dir = 9; icon_state = "intact"},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/tiled,/area/rnd/hallway) +"aiB" = (/turf/simulated/floor/tiled,/area/rnd/testingroom) "aiC" = (/obj/structure/catwalk,/obj/structure/disposalpipe/segment{dir = 8; icon_state = "pipe-c"},/turf/simulated/floor/tiled/techfloor,/area/maintenance/lower/xenoflora) "aiD" = (/obj/effect/floor_decal/borderfloor{dir = 8},/obj/effect/floor_decal/corner/lightgrey/border{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 5},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 6},/turf/simulated/floor/tiled,/area/hallway/lower/first_west) "aiE" = (/obj/machinery/hologram/holopad,/turf/simulated/floor/tiled,/area/hallway/lower/first_west) -"aiF" = (/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 4},/turf/simulated/floor/tiled,/area/rnd/hallway) -"aiG" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 10},/obj/machinery/button/remote/blast_door{id = "sparkee"; name = "Sparker Control"; pixel_y = 32},/turf/simulated/floor/tiled,/area/rnd/hallway) +"aiF" = (/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 4},/turf/simulated/floor/tiled,/area/rnd/testingroom) +"aiG" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 10},/obj/machinery/button/remote/blast_door{id = "sparkee"; name = "Sparker Control"; pixel_y = 32},/turf/simulated/floor/tiled,/area/rnd/testingroom) "aiH" = (/obj/structure/bed/chair/office/light{dir = 4},/obj/effect/landmark/start{name = "Scientist"},/turf/simulated/floor/tiled/white,/area/rnd/chemistry_lab) "aiI" = (/obj/structure/table/glass,/obj/machinery/chemical_dispenser/full{dir = 8},/obj/effect/floor_decal/borderfloor{dir = 4},/obj/effect/floor_decal/corner/mauve/border{dir = 4},/turf/simulated/floor/tiled/white,/area/rnd/chemistry_lab) "aiJ" = (/obj/structure/table/glass,/obj/item/weapon/storage/box/syringes,/obj/item/weapon/reagent_containers/spray/cleaner,/obj/effect/floor_decal/borderfloor{dir = 10},/obj/effect/floor_decal/corner/mauve/border{dir = 10},/obj/item/device/reagent_scanner,/turf/simulated/floor/tiled/white,/area/rnd/chemistry_lab) @@ -456,29 +456,29 @@ "aiN" = (/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled,/area/hallway/lower/first_west) "aiO" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals7,/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 10},/obj/effect/floor_decal/steeldecal/steel_decals6{dir = 10},/turf/simulated/floor/tiled,/area/hallway/lower/first_west) "aiP" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals_central1,/obj/machinery/door/airlock/multi_tile/glass{dir = 1; name = "West Hallway"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/door/firedoor/glass,/turf/simulated/floor/tiled/monofloor,/area/tether/surfacebase/north_stairs_one) -"aiQ" = (/obj/machinery/atmospherics/pipe/simple/hidden{dir = 4},/obj/machinery/camera/network/research{dir = 1; icon_state = "camera"},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled,/area/rnd/hallway) -"aiR" = (/obj/machinery/atmospherics/pipe/simple/hidden{dir = 9; icon_state = "intact"},/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled,/area/rnd/hallway) +"aiQ" = (/obj/structure/table/steel_reinforced,/obj/item/device/assembly/infra,/obj/item/device/assembly/igniter,/turf/simulated/floor/tiled,/area/rnd/testingroom) +"aiR" = (/obj/machinery/atmospherics/pipe/simple/visible/blue{dir = 5},/obj/item/pipe_meter,/turf/simulated/floor/tiled,/area/rnd/testingroom) "aiS" = (/obj/machinery/alarm{pixel_y = 22},/obj/structure/disposalpipe/segment{dir = 4},/obj/effect/floor_decal/borderfloor{dir = 1},/obj/effect/floor_decal/corner/lightgrey/border{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals7,/turf/simulated/floor/tiled,/area/tether/surfacebase/north_stairs_one) "aiT" = (/obj/structure/cable/heavyduty{icon_state = "1-2"},/obj/machinery/door/firedoor/glass,/obj/structure/grille,/obj/structure/window/reinforced/full,/obj/structure/window/reinforced{dir = 1},/turf/simulated/floor/plating,/area/maintenance/lower/mining_eva) -"aiU" = (/obj/machinery/vending/tool{icon_state = "tool"; dir = 1},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled,/area/rnd/hallway) +"aiU" = (/obj/machinery/atmospherics/pipe/simple/visible/universal{dir = 8},/turf/simulated/floor/tiled,/area/rnd/testingroom) "aiV" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/effect/floor_decal/borderfloor{dir = 1},/obj/effect/floor_decal/corner/lightgrey/border{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals7,/turf/simulated/floor/tiled,/area/tether/surfacebase/north_stairs_one) -"aiW" = (/obj/machinery/atmospherics/unary/vent_pump/on{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled,/area/rnd/hallway) +"aiW" = (/obj/item/pipe_meter,/obj/machinery/atmospherics/pipe/simple/hidden{dir = 4},/turf/simulated/floor/tiled,/area/rnd/testingroom) "aiX" = (/obj/machinery/atmospherics/unary/vent_scrubber/on,/obj/structure/disposalpipe/segment{dir = 4},/obj/effect/floor_decal/borderfloor{dir = 1},/obj/effect/floor_decal/corner/lightgrey/border{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals7,/turf/simulated/floor/tiled,/area/tether/surfacebase/north_stairs_one) "aiY" = (/obj/machinery/light{dir = 1},/obj/structure/disposalpipe/segment{dir = 4},/obj/effect/floor_decal/borderfloor{dir = 1},/obj/effect/floor_decal/corner/lightgrey/border{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals7,/turf/simulated/floor/tiled,/area/tether/surfacebase/north_stairs_one) "aiZ" = (/obj/structure/extinguisher_cabinet{pixel_y = 30},/obj/structure/disposalpipe/segment{dir = 4},/obj/effect/floor_decal/borderfloor{dir = 1},/obj/effect/floor_decal/corner/lightgrey/border{dir = 1},/obj/effect/floor_decal/borderfloor/corner2{dir = 1},/obj/effect/floor_decal/corner/lightgrey/bordercorner2{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals4,/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals7,/turf/simulated/floor/tiled,/area/tether/surfacebase/north_stairs_one) "aja" = (/obj/effect/floor_decal/spline/plain{dir = 4},/obj/machinery/door/firedoor/glass,/obj/structure/disposalpipe/segment{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals_central1{dir = 1},/turf/simulated/floor/tiled/monofloor{dir = 1},/area/tether/surfacebase/surface_one_hall) -"ajb" = (/obj/machinery/door/firedoor/glass,/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/door/airlock/research{id_tag = "researchdoor"; name = "Testing Room"; req_access = list(47)},/turf/simulated/floor/tiled/steel_grid,/area/rnd/hallway) -"ajc" = (/obj/structure/grille,/obj/structure/window/reinforced/full,/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/rnd/hallway) +"ajb" = (/obj/machinery/atmospherics/pipe/simple/hidden{dir = 4},/turf/simulated/floor/tiled,/area/rnd/testingroom) +"ajc" = (/obj/machinery/atmospherics/pipe/simple/hidden{dir = 4},/obj/machinery/disposal,/obj/structure/disposalpipe/trunk{dir = 4},/turf/simulated/floor/tiled,/area/rnd/testingroom) "ajd" = (/obj/structure/cable/green{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/structure/cable/green{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 9},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled,/area/rnd/hallway) "aje" = (/obj/effect/floor_decal/borderfloor{dir = 1},/obj/effect/floor_decal/corner/mauve/border{dir = 1},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals7,/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 4},/obj/structure/disposalpipe/junction{dir = 8},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,/obj/machinery/atmospherics/pipe/manifold/hidden/supply,/turf/simulated/floor/tiled,/area/rnd/hallway) "ajf" = (/obj/structure/cable/cyan{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/alarm{breach_detection = 0; dir = 8; icon_state = "alarm0"; pixel_x = 25; rcon_setting = 3; report_danger_level = 0},/turf/simulated/floor/tiled/steel_dirty/virgo3b,/area/engineering/atmos_intake) "ajg" = (/obj/structure/cable/cyan{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/machinery/atmospherics/unary/vent_scrubber{dir = 4},/turf/simulated/floor/tiled/steel_dirty/virgo3b,/area/engineering/atmos_intake) "ajh" = (/obj/machinery/atmospherics/unary/vent_scrubber{dir = 4},/turf/simulated/floor/tiled/steel_dirty/virgo3b,/area/engineering/atmos_intake) -"aji" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/visible/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/turf/simulated/floor/tiled,/area/rnd/hallway) +"aji" = (/obj/machinery/atmospherics/pipe/simple/hidden{dir = 4},/obj/machinery/camera/network/research{dir = 1; icon_state = "camera"},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled,/area/rnd/testingroom) "ajj" = (/obj/effect/floor_decal/borderfloor{dir = 4},/obj/effect/floor_decal/corner/blue/border{dir = 4},/obj/machinery/atmospherics/binary/pump/high_power/on{dir = 1},/turf/simulated/floor/tiled,/area/engineering/atmos) "ajk" = (/obj/machinery/atmospherics/pipe/simple/visible/black{dir = 4},/obj/machinery/atmospherics/binary/pump/high_power/on{dir = 1},/turf/simulated/floor/tiled,/area/engineering/atmos) -"ajl" = (/obj/structure/disposalpipe/segment,/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/tiled,/area/rnd/hallway) -"ajm" = (/obj/structure/disposalpipe/segment,/obj/machinery/door/airlock/research{id_tag = "researchdoor"; name = "Research Hard Storage"; req_access = list(47)},/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/tiled,/area/rnd/hallway) +"ajl" = (/obj/machinery/atmospherics/pipe/simple/hidden{dir = 9; icon_state = "intact"},/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled,/area/rnd/testingroom) +"ajm" = (/obj/machinery/vending/tool{icon_state = "tool"; dir = 1},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled,/area/rnd/testingroom) "ajn" = (/obj/machinery/atmospherics/pipe/simple/visible/green{dir = 4},/obj/machinery/atmospherics/binary/pump{dir = 1},/turf/simulated/floor/tiled,/area/engineering/atmos/processing) "ajo" = (/obj/machinery/door/airlock/maintenance/common,/obj/machinery/atmospherics/pipe/simple/hidden,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/door/firedoor/glass,/turf/simulated/floor/tiled,/area/storage/surface_eva) "ajp" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 6},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 6},/obj/effect/floor_decal/borderfloor{dir = 8},/obj/effect/floor_decal/corner/lightgrey/border{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 5},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 6},/turf/simulated/floor/tiled,/area/hallway/lower/first_west) @@ -533,7 +533,7 @@ "akm" = (/obj/structure/railing{dir = 1},/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/tiled/techfloor,/area/maintenance/lower/public_garden_maintenence) "akn" = (/turf/simulated/mineral,/area/maintenance/lower/public_garden_maintenence) "ako" = (/obj/effect/floor_decal/rust,/obj/effect/decal/cleanable/dirt,/obj/structure/closet/crate,/obj/random/maintenance/research,/obj/random/maintenance/research,/obj/random/drinkbottle,/turf/simulated/floor/plating,/area/maintenance/lower/public_garden_maintenence) -"akp" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 10},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/disposalpipe/segment{dir = 2; icon_state = "pipe-c"},/turf/simulated/floor/tiled,/area/rnd/hallway) +"akp" = (/obj/machinery/atmospherics/unary/vent_pump/on{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled,/area/rnd/testingroom) "akq" = (/obj/effect/floor_decal/techfloor{dir = 9},/obj/effect/floor_decal/industrial/danger{dir = 1},/obj/effect/floor_decal/techfloor/hole/right,/turf/simulated/floor/tiled/techfloor,/area/tether/surfacebase/public_garden_one) "akr" = (/obj/effect/floor_decal/techfloor{dir = 5},/obj/effect/floor_decal/industrial/danger{dir = 1},/obj/effect/floor_decal/techfloor/hole,/turf/simulated/floor/tiled/techfloor,/area/tether/surfacebase/public_garden_one) "aks" = (/turf/simulated/floor/tiled/techfloor,/area/maintenance/lower/public_garden_maintenence) @@ -604,17 +604,28 @@ "alF" = (/obj/structure/catwalk,/obj/structure/cable{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/structure/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/structure/disposalpipe/segment{dir = 4; icon_state = "pipe-c"},/obj/machinery/atmospherics/pipe/simple/visible/supply{dir = 6},/obj/machinery/atmospherics/pipe/simple/visible/scrubbers{dir = 6},/turf/simulated/floor/tiled/techfloor,/area/maintenance/lower/xenoflora) "alG" = (/obj/structure/catwalk,/obj/structure/cable{icon_state = "1-2"},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/visible/scrubbers,/obj/machinery/atmospherics/pipe/simple/visible/supply,/turf/simulated/floor/tiled/techfloor,/area/maintenance/lower/xenoflora) "alH" = (/obj/structure/catwalk,/obj/structure/cable{icon_state = "1-2"},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/visible/scrubbers{dir = 1},/obj/machinery/atmospherics/pipe/simple/visible/supply,/turf/simulated/floor/tiled/techfloor,/area/maintenance/lower/xenoflora) -"alI" = (/obj/machinery/door/airlock/maintenance/rnd{name = "Research Maintenance Access"; req_access = list(55)},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/door/firedoor/glass,/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled/steel_dirty,/area/rnd/hallway) +"alI" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 10},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/disposalpipe/segment{dir = 2; icon_state = "pipe-c"},/turf/simulated/floor/tiled,/area/rnd/testingroom) "alJ" = (/obj/structure/catwalk,/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/visible/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/visible/scrubbers{dir = 4},/turf/simulated/floor/tiled/techfloor,/area/maintenance/lower/xenoflora) "alK" = (/obj/structure/catwalk,/obj/structure/cable{icon_state = "1-2"},/obj/structure/disposalpipe/junction,/obj/random/junk,/obj/machinery/atmospherics/pipe/manifold/visible/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/manifold/visible/supply{dir = 4},/turf/simulated/floor/tiled/techfloor,/area/maintenance/lower/xenoflora) +"alL" = (/obj/structure/table/steel_reinforced,/obj/item/device/radio,/obj/item/device/radio,/turf/simulated/floor/tiled,/area/rnd/testingroom) "alM" = (/obj/effect/floor_decal/borderfloor{dir = 10},/obj/effect/floor_decal/corner/lightgrey/border{dir = 10},/obj/machinery/camera/network/civilian{dir = 1},/turf/simulated/floor/tiled,/area/tether/surfacebase/public_garden_one) "alN" = (/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/corner/lightgrey/border,/turf/simulated/floor/tiled,/area/tether/surfacebase/public_garden_one) "alO" = (/obj/machinery/disposal,/obj/structure/disposalpipe/trunk{dir = 1},/obj/effect/floor_decal/borderfloor{dir = 6},/obj/effect/floor_decal/corner/lightgrey/border{dir = 6},/turf/simulated/floor/tiled,/area/tether/surfacebase/public_garden_one) "alP" = (/obj/effect/floor_decal/borderfloor{dir = 8},/obj/effect/floor_decal/corner/lightgrey/border{dir = 8},/obj/machinery/light{dir = 8; icon_state = "tube1"},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 5},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 6},/turf/simulated/floor/tiled,/area/tether/surfacebase/public_garden) "alQ" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/disposalpipe/segment,/obj/effect/floor_decal/borderfloor/corner{dir = 4},/obj/effect/floor_decal/corner/lightgrey/bordercorner{dir = 4},/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 9},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 10},/turf/simulated/floor/tiled,/area/tether/surfacebase/public_garden) "alR" = (/obj/structure/bed/chair/wood,/obj/effect/floor_decal/borderfloor{dir = 5},/obj/effect/floor_decal/corner/lightgrey/border{dir = 5},/turf/simulated/floor/tiled,/area/tether/surfacebase/public_garden) +"alS" = (/obj/structure/grille,/obj/structure/window/reinforced/full,/obj/machinery/door/firedoor,/turf/simulated/floor/plating,/area/rnd/testingroom) +"alT" = (/obj/machinery/door/firedoor/glass,/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/door/airlock/research{id_tag = "researchdoor"; name = "Testing Room"; req_access = list(47)},/turf/simulated/floor/tiled/steel_grid,/area/rnd/testingroom) +"alU" = (/obj/structure/grille,/obj/structure/window/reinforced/full,/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/rnd/testingroom) +"alV" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/door/firedoor/glass,/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/door/airlock/research{name = "Toxins Storage"; req_access = list(8)},/turf/simulated/floor/tiled/steel_grid,/area/rnd/tankstorage) +"alW" = (/obj/structure/sign/warning/caution,/turf/simulated/wall/r_wall,/area/rnd/tankstorage) "alX" = (/obj/structure/railing{dir = 8},/obj/machinery/atmospherics/pipe/zpipe/up/scrubbers{dir = 1},/obj/machinery/atmospherics/pipe/zpipe/up/supply{dir = 1},/obj/effect/floor_decal/industrial/outline/yellow,/obj/structure/cable{icon_state = "16-0"},/obj/structure/cable{d2 = 2; icon_state = "0-2"},/obj/random/junk,/turf/simulated/floor/tiled/techfloor,/area/maintenance/lower/mining_eva) +"alY" = (/obj/machinery/portable_atmospherics/powered/scrubber/huge/stationary{scrub_id = "rnd_can_store"},/turf/simulated/floor/tiled/techmaint,/area/rnd/tankstorage) +"alZ" = (/obj/structure/grille,/obj/structure/railing{dir = 4},/turf/simulated/floor/tiled/techmaint,/area/rnd/tankstorage) +"ama" = (/obj/effect/floor_decal/industrial/warning{dir = 8; icon_state = "warning"},/obj/machinery/computer/area_atmos/tag{dir = 4; scrub_id = "rnd_can_store"},/obj/machinery/camera/network/research,/turf/simulated/floor/tiled,/area/rnd/tankstorage) +"amb" = (/obj/machinery/light/small{dir = 4; pixel_y = 0},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 9},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 5},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 8},/turf/simulated/floor/tiled,/area/rnd/tankstorage) "amc" = (/turf/simulated/wall,/area/tether/surfacebase/cargo/office) +"amd" = (/obj/structure/sign/warning/nosmoking_2,/turf/simulated/wall/r_wall,/area/rnd/tankstorage) "ame" = (/obj/effect/floor_decal/techfloor{dir = 10},/obj/machinery/light,/turf/simulated/floor/tiled/techfloor,/area/tether/surfacebase/public_garden_one) "amf" = (/obj/effect/floor_decal/techfloor/corner{dir = 8},/turf/simulated/floor/tiled/techfloor,/area/tether/surfacebase/public_garden_one) "amg" = (/obj/effect/floor_decal/techfloor/corner,/turf/simulated/floor/tiled/techfloor,/area/tether/surfacebase/public_garden_one) @@ -624,8 +635,19 @@ "amk" = (/obj/structure/table/standard,/obj/random/tech_supply,/obj/random/tech_supply,/obj/random/tech_supply,/obj/random/tech_supply,/obj/structure/symbol/sa{pixel_y = 32},/turf/simulated/floor/tiled,/area/storage/primary) "aml" = (/obj/structure/table/standard,/obj/random/tech_supply,/obj/random/tech_supply,/obj/random/tech_supply,/obj/random/tech_supply,/obj/machinery/requests_console{department = "Tool Storage"; departmentType = 0; pixel_y = 30},/turf/simulated/floor/tiled,/area/storage/primary) "amm" = (/obj/machinery/hologram/holopad,/obj/item/device/radio/intercom{dir = 1; pixel_y = 24; req_access = list()},/turf/simulated/floor/tiled,/area/storage/primary) +"amn" = (/obj/effect/floor_decal/rust,/obj/machinery/portable_atmospherics/canister/phoron,/obj/machinery/light/small{dir = 1},/turf/simulated/floor/tiled/steel_dirty,/area/rnd/tankstorage) +"amo" = (/obj/effect/floor_decal/rust,/obj/machinery/portable_atmospherics/canister/phoron,/turf/simulated/floor/tiled/steel_dirty,/area/rnd/tankstorage) +"amp" = (/obj/machinery/atmospherics/unary/vent_pump/on{dir = 4},/obj/machinery/light_switch{pixel_y = 25},/turf/simulated/floor/tiled/steel_dirty,/area/rnd/tankstorage) "amq" = (/obj/structure/railing{dir = 8},/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0},/turf/simulated/floor/tiled/techfloor,/area/maintenance/lower/mining_eva) +"amr" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 5},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 9},/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 9},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 4},/turf/simulated/floor/tiled/steel_dirty,/area/rnd/tankstorage) +"ams" = (/obj/effect/floor_decal/industrial/warning/dust/corner{dir = 4},/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 8},/turf/simulated/floor/tiled/steel_dirty,/area/rnd/tankstorage) +"amt" = (/obj/effect/floor_decal/industrial/warning/dust{dir = 1},/obj/effect/landmark{name = "morphspawn"},/turf/simulated/floor/tiled/steel_dirty,/area/rnd/tankstorage) +"amu" = (/obj/effect/floor_decal/rust,/obj/effect/floor_decal/industrial/warning/dust{dir = 1},/obj/machinery/firealarm{dir = 4; pixel_x = 24},/turf/simulated/floor/tiled/steel_dirty,/area/rnd/tankstorage) +"amv" = (/obj/effect/floor_decal/industrial/warning/dust,/obj/machinery/power/apc{cell_type = /obj/item/weapon/cell/super; dir = 8; name = "west bump"; pixel_x = -30},/obj/structure/cable/green{icon_state = "0-4"},/turf/simulated/floor/tiled/steel_dirty,/area/rnd/tankstorage) "amw" = (/obj/structure/sign/department/cargo,/turf/simulated/wall,/area/tether/surfacebase/cargo/office) +"amx" = (/obj/effect/floor_decal/industrial/warning/dust,/obj/structure/cable/green{d1 = 1; d2 = 8; icon_state = "1-8"},/turf/simulated/floor/tiled/steel_dirty,/area/rnd/tankstorage) +"amy" = (/obj/effect/floor_decal/industrial/warning/dust/corner{dir = 8},/obj/effect/floor_decal/industrial/warning/dust/corner,/turf/simulated/floor/tiled/steel_dirty,/area/rnd/tankstorage) +"amz" = (/obj/effect/floor_decal/industrial/warning/dust,/turf/simulated/floor/tiled/steel_dirty,/area/rnd/tankstorage) "amA" = (/obj/effect/floor_decal/techfloor{dir = 10},/obj/effect/floor_decal/techfloor/hole{dir = 1},/obj/structure/closet/crate,/turf/simulated/floor/tiled/techfloor,/area/tether/surfacebase/public_garden_one) "amB" = (/obj/effect/floor_decal/techfloor{dir = 6},/obj/effect/floor_decal/techfloor/hole/right{dir = 1},/obj/structure/closet/crate,/turf/simulated/floor/tiled/techfloor,/area/tether/surfacebase/public_garden_one) "amC" = (/obj/effect/floor_decal/corner/lightgrey{dir = 9},/obj/effect/floor_decal/corner/lightgrey{dir = 6},/obj/effect/floor_decal/steeldecal/steel_decals9,/obj/effect/floor_decal/steeldecal/steel_decals9{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals9{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals9{dir = 8},/obj/machinery/vending/snack{dir = 4},/turf/simulated/floor/tiled/monotile,/area/tether/surfacebase/public_garden) @@ -634,19 +656,28 @@ "amF" = (/obj/structure/table/standard,/obj/random/tech_supply,/obj/random/tech_supply,/obj/random/tech_supply,/obj/random/tech_supply,/obj/machinery/light{dir = 8; icon_state = "tube1"; pixel_y = 0},/turf/simulated/floor/tiled,/area/storage/primary) "amG" = (/obj/effect/landmark/start{name = "Assistant"},/turf/simulated/floor/tiled,/area/storage/primary) "amH" = (/obj/item/weapon/stool,/obj/effect/landmark/start{name = "Assistant"},/turf/simulated/floor/tiled,/area/storage/primary) +"amI" = (/obj/effect/floor_decal/industrial/warning/dust,/obj/machinery/alarm{dir = 8; icon_state = "alarm0"; pixel_x = 24},/turf/simulated/floor/tiled/steel_dirty,/area/rnd/tankstorage) +"amJ" = (/obj/machinery/portable_atmospherics/canister/carbon_dioxide,/obj/machinery/camera/network/research{dir = 4},/turf/simulated/floor/tiled/steel_dirty,/area/rnd/tankstorage) +"amK" = (/obj/machinery/portable_atmospherics/canister/carbon_dioxide,/turf/simulated/floor/tiled/steel_dirty,/area/rnd/tankstorage) +"amL" = (/obj/effect/floor_decal/industrial/warning/dust{dir = 4},/obj/effect/floor_decal/industrial/warning/dust{dir = 8},/turf/simulated/floor/tiled/steel_dirty,/area/rnd/tankstorage) "amM" = (/obj/structure/railing{dir = 8},/obj/structure/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/turf/simulated/floor/tiled/techfloor,/area/maintenance/lower/mining_eva) +"amN" = (/obj/machinery/portable_atmospherics/canister/sleeping_agent,/turf/simulated/floor/tiled/steel_dirty,/area/rnd/tankstorage) +"amO" = (/obj/machinery/portable_atmospherics/canister/oxygen,/turf/simulated/floor/tiled/steel_dirty,/area/rnd/tankstorage) "amP" = (/obj/machinery/camera/network/cargo,/turf/simulated/floor/tiled,/area/tether/surfacebase/cargo/office) "amQ" = (/obj/structure/disposalpipe/segment{dir = 4; icon_state = "pipe-c"},/obj/random/junk,/turf/simulated/floor/plating,/area/maintenance/lower/mining_eva) +"amR" = (/obj/machinery/portable_atmospherics/canister/nitrogen,/turf/simulated/floor/tiled/steel_dirty,/area/rnd/tankstorage) "amS" = (/obj/effect/floor_decal/borderfloor{dir = 8},/obj/effect/floor_decal/corner/lightgrey/border{dir = 8},/obj/machinery/firealarm{dir = 8; pixel_x = -26},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 5},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 6},/turf/simulated/floor/tiled,/area/tether/surfacebase/public_garden) "amT" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/alarm{dir = 8; icon_state = "alarm0"; pixel_x = 24},/obj/structure/disposalpipe/segment,/obj/effect/floor_decal/borderfloor{dir = 4},/obj/effect/floor_decal/corner/lightgrey/border{dir = 4},/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 9},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 10},/turf/simulated/floor/tiled,/area/tether/surfacebase/public_garden) "amU" = (/obj/structure/reagent_dispensers/fueltank,/obj/machinery/ai_status_display{pixel_x = -32; pixel_y = 0},/turf/simulated/floor/tiled,/area/storage/primary) "amV" = (/obj/machinery/vending/assist{dir = 8},/obj/machinery/status_display{layer = 4; pixel_x = 32; pixel_y = 0},/turf/simulated/floor/tiled,/area/storage/primary) +"amW" = (/obj/effect/floor_decal/industrial/warning/dust{dir = 4},/obj/effect/floor_decal/industrial/warning/dust{dir = 8},/obj/machinery/light/small,/turf/simulated/floor/tiled/steel_dirty,/area/rnd/tankstorage) "amX" = (/obj/machinery/power/apc{cell_type = /obj/item/weapon/cell/super; dir = 8; name = "west bump"; pixel_x = -24},/obj/effect/floor_decal/borderfloor{dir = 8},/obj/effect/floor_decal/corner/lightgrey/border{dir = 8},/obj/structure/cable/green{d2 = 4; icon_state = "0-4"},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 5},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 6},/turf/simulated/floor/tiled,/area/tether/surfacebase/public_garden) "amY" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/disposalpipe/segment,/obj/effect/floor_decal/borderfloor{dir = 4},/obj/effect/floor_decal/corner/lightgrey/border{dir = 4},/obj/structure/cable/green{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 9},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 10},/turf/simulated/floor/tiled,/area/tether/surfacebase/public_garden) "amZ" = (/obj/structure/table/standard,/obj/random/tech_supply,/obj/random/tech_supply,/obj/random/tech_supply,/obj/random/tech_supply,/obj/machinery/recharger,/turf/simulated/floor/tiled,/area/storage/primary) "ana" = (/obj/effect/floor_decal/borderfloor{dir = 8},/obj/effect/floor_decal/corner/lightgrey/border{dir = 8},/obj/machinery/atmospherics/unary/vent_pump/on{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 5},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 6},/turf/simulated/floor/tiled,/area/tether/surfacebase/public_garden) "anb" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/disposalpipe/segment,/obj/effect/floor_decal/borderfloor{dir = 4},/obj/effect/floor_decal/corner/lightgrey/border{dir = 4},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 4},/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 9},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 10},/turf/simulated/floor/tiled,/area/tether/surfacebase/public_garden) "anc" = (/obj/machinery/door/airlock/maintenance/common,/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/door/firedoor/glass,/turf/simulated/floor/plating,/area/maintenance/lower/mining_eva) +"and" = (/obj/structure/grille,/obj/structure/railing{dir = 1},/turf/simulated/floor/tiled/techmaint,/area/rnd/tankstorage) "anf" = (/obj/effect/decal/cleanable/dirt,/obj/effect/floor_decal/rust,/obj/effect/floor_decal/industrial/warning{dir = 1; icon_state = "warning"},/obj/random/junk,/obj/random/junk,/obj/random/maintenance/clean,/turf/simulated/floor/plating,/area/maintenance/lower/trash_pit) "ang" = (/obj/effect/floor_decal/borderfloor{dir = 8},/obj/effect/floor_decal/borderfloor{dir = 8},/obj/effect/floor_decal/corner/lightgrey/border{dir = 8},/obj/effect/floor_decal/borderfloor/corner2{dir = 10; icon_state = "borderfloorcorner2"; pixel_x = 0},/obj/effect/floor_decal/corner/lightgrey/bordercorner2{dir = 10},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 5},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 6},/turf/simulated/floor/tiled,/area/tether/surfacebase/public_garden) "anh" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/disposalpipe/segment,/obj/effect/floor_decal/borderfloor{dir = 4},/obj/effect/floor_decal/corner/lightgrey/border{dir = 4},/obj/effect/floor_decal/borderfloor/corner2{dir = 5},/obj/effect/floor_decal/corner/lightgrey/bordercorner2{dir = 5},/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 9},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 10},/turf/simulated/floor/tiled,/area/tether/surfacebase/public_garden) @@ -1417,9 +1448,6 @@ "aHn" = (/obj/structure/table/marble,/obj/machinery/door/blast/shutters{dir = 2; id = "cafe"; layer = 3.1; name = "Cafe Shutters"},/obj/machinery/recharger,/turf/simulated/floor/tiled,/area/crew_quarters/visitor_dining) "aHo" = (/obj/structure/sign/warning/high_voltage{name = "\improper SOLAR FARM"},/turf/unsimulated/wall/planetary/virgo3b,/area/tether/surfacebase/outside/outside1) "aHp" = (/obj/effect/floor_decal/borderfloor{dir = 4},/obj/effect/floor_decal/corner/mauve/border{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 9},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 10},/obj/structure/sign/nosmoking_2{pixel_x = 32; pixel_y = 0},/turf/simulated/floor/tiled,/area/rnd/hallway) -"aHq" = (/turf/simulated/wall/r_wall,/area/rnd/xenobiology/xenoflora_storage) -"aHr" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/door/firedoor/glass,/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/door/airlock/research{name = "Toxins Storage"; req_access = list(8)},/turf/simulated/floor/tiled/steel_grid,/area/rnd/xenobiology/xenoflora_storage) -"aHs" = (/obj/structure/sign/warning/caution,/turf/simulated/wall/r_wall,/area/rnd/xenobiology/xenoflora_storage) "aHt" = (/obj/machinery/door/firedoor/glass,/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/door/airlock/maintenance/rnd{name = "Science Maintenance"},/turf/simulated/floor/tiled/steel_grid,/area/rnd/hallway) "aHu" = (/obj/structure/catwalk,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/plating,/area/maintenance/lower/research) "aHv" = (/turf/simulated/wall/r_wall,/area/maintenance/substation/surface_atmos) @@ -1440,12 +1468,6 @@ "aHN" = (/obj/effect/floor_decal/borderfloor{dir = 4},/obj/effect/floor_decal/corner/mauve/border{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 9},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 10},/turf/simulated/floor/tiled,/area/rnd/hallway) "aHO" = (/obj/effect/decal/cleanable/dirt,/obj/machinery/atmospherics/pipe/simple/hidden/cyan{dir = 6},/obj/machinery/alarm{dir = 4; icon_state = "alarm0"; pixel_x = -22},/turf/simulated/floor/plating,/area/maintenance/asmaint2) "aHP" = (/obj/machinery/atmospherics/pipe/simple/hidden/cyan{dir = 10; icon_state = "intact"},/turf/simulated/floor/plating,/area/maintenance/asmaint2) -"aHQ" = (/obj/machinery/portable_atmospherics/powered/scrubber/huge/stationary{scrub_id = "rnd_can_store"},/turf/simulated/floor/tiled/techmaint,/area/rnd/xenobiology/xenoflora_storage) -"aHR" = (/obj/structure/grille,/obj/structure/railing{dir = 4},/turf/simulated/floor/tiled/techmaint,/area/rnd/xenobiology/xenoflora_storage) -"aHS" = (/obj/machinery/light/small{dir = 4; pixel_y = 0},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 9},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 5},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 8},/turf/simulated/floor/tiled,/area/rnd/xenobiology/xenoflora_storage) -"aHT" = (/obj/structure/sign/warning/nosmoking_2,/turf/simulated/wall/r_wall,/area/rnd/xenobiology/xenoflora_storage) -"aHU" = (/obj/effect/floor_decal/rust,/obj/machinery/portable_atmospherics/canister/phoron,/obj/machinery/light/small{dir = 1},/turf/simulated/floor/tiled/steel_dirty,/area/rnd/xenobiology/xenoflora_storage) -"aHV" = (/obj/effect/floor_decal/rust,/obj/machinery/portable_atmospherics/canister/phoron,/turf/simulated/floor/tiled/steel_dirty,/area/rnd/xenobiology/xenoflora_storage) "aHW" = (/obj/structure/cable/green{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/plating,/area/maintenance/lower/research) "aHX" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/plating,/area/maintenance/lower/research) "aHY" = (/obj/machinery/power/apc{dir = 1; name = "north bump"; pixel_x = 0; pixel_y = 24},/obj/structure/cable/green{d2 = 8; icon_state = "0-8"},/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/plating,/area/maintenance/lower/research) @@ -1522,11 +1544,6 @@ "aJv" = (/obj/effect/floor_decal/rust,/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 9},/obj/machinery/atmospherics/pipe/simple/hidden{dir = 10; icon_state = "intact"},/obj/effect/floor_decal/industrial/warning,/turf/simulated/floor/plating,/area/maintenance/asmaint2) "aJw" = (/obj/effect/decal/cleanable/dirt,/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/effect/floor_decal/industrial/warning/corner{dir = 8},/turf/simulated/floor/plating,/area/maintenance/asmaint2) "aJx" = (/obj/effect/decal/cleanable/dirt,/obj/structure/cable/green{icon_state = "16-0"},/obj/structure/cable/green{d2 = 8; icon_state = "0-8"},/turf/simulated/floor/plating,/area/maintenance/asmaint2) -"aJy" = (/obj/machinery/atmospherics/unary/vent_pump/on{dir = 4},/obj/machinery/light_switch{pixel_y = 25},/turf/simulated/floor/tiled/steel_dirty,/area/rnd/xenobiology/xenoflora_storage) -"aJz" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 5},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 9},/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 9},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 4},/turf/simulated/floor/tiled/steel_dirty,/area/rnd/xenobiology/xenoflora_storage) -"aJA" = (/obj/effect/floor_decal/industrial/warning/dust/corner{dir = 4},/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 8},/turf/simulated/floor/tiled/steel_dirty,/area/rnd/xenobiology/xenoflora_storage) -"aJB" = (/obj/effect/floor_decal/industrial/warning/dust{dir = 1},/obj/effect/landmark{name = "morphspawn"},/turf/simulated/floor/tiled/steel_dirty,/area/rnd/xenobiology/xenoflora_storage) -"aJC" = (/obj/effect/floor_decal/rust,/obj/effect/floor_decal/industrial/warning/dust{dir = 1},/obj/machinery/firealarm{dir = 4; pixel_x = 24},/turf/simulated/floor/tiled/steel_dirty,/area/rnd/xenobiology/xenoflora_storage) "aJD" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/plating,/area/maintenance/lower/research) "aJE" = (/obj/machinery/light/small{dir = 4; pixel_y = 0},/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/plating,/area/maintenance/lower/research) "aJF" = (/turf/simulated/wall/r_wall,/area/engineering/atmos/gas_storage) @@ -1548,11 +1565,6 @@ "aJY" = (/obj/effect/floor_decal/borderfloor{dir = 4},/obj/effect/floor_decal/corner/mauve/border{dir = 4},/obj/effect/floor_decal/borderfloor/corner2{dir = 5},/obj/effect/floor_decal/corner/mauve/bordercorner2{dir = 5},/obj/effect/floor_decal/steeldecal/steel_decals10{dir = 6},/obj/machinery/atmospherics/pipe/simple/hidden,/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 10},/turf/simulated/floor/tiled,/area/rnd/hallway) "aJZ" = (/obj/machinery/atmospherics/pipe/tank/air{dir = 1},/turf/simulated/floor/plating,/area/maintenance/asmaint2) "aKa" = (/turf/simulated/wall,/area/maintenance/asmaint2) -"aKb" = (/obj/effect/floor_decal/industrial/warning/dust,/obj/machinery/power/apc{cell_type = /obj/item/weapon/cell/super; dir = 8; name = "west bump"; pixel_x = -30},/obj/structure/cable/green{icon_state = "0-4"},/turf/simulated/floor/tiled/steel_dirty,/area/rnd/xenobiology/xenoflora_storage) -"aKc" = (/obj/effect/floor_decal/industrial/warning/dust,/obj/structure/cable/green{d1 = 1; d2 = 8; icon_state = "1-8"},/turf/simulated/floor/tiled/steel_dirty,/area/rnd/xenobiology/xenoflora_storage) -"aKd" = (/obj/effect/floor_decal/industrial/warning/dust/corner{dir = 8},/obj/effect/floor_decal/industrial/warning/dust/corner,/turf/simulated/floor/tiled/steel_dirty,/area/rnd/xenobiology/xenoflora_storage) -"aKe" = (/obj/effect/floor_decal/industrial/warning/dust,/turf/simulated/floor/tiled/steel_dirty,/area/rnd/xenobiology/xenoflora_storage) -"aKf" = (/obj/effect/floor_decal/industrial/warning/dust,/obj/machinery/alarm{dir = 8; icon_state = "alarm0"; pixel_x = 24},/turf/simulated/floor/tiled/steel_dirty,/area/rnd/xenobiology/xenoflora_storage) "aKg" = (/obj/machinery/alarm{dir = 4; icon_state = "alarm0"; pixel_x = -22; pixel_y = 0},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/plating,/area/maintenance/lower/research) "aKh" = (/obj/structure/table/rack,/obj/item/clothing/suit/fire/firefighter,/obj/item/weapon/tank/oxygen/red,/obj/item/clothing/mask/gas/wwii,/obj/item/clothing/head/hardhat/red,/turf/simulated/floor/plating,/area/maintenance/lower/research) "aKi" = (/obj/machinery/portable_atmospherics/canister/nitrogen,/obj/effect/floor_decal/industrial/outline/yellow,/turf/simulated/floor/tiled/techmaint,/area/engineering/atmos/gas_storage) @@ -1585,10 +1597,6 @@ "aKL" = (/turf/simulated/wall,/area/rnd/external) "aKM" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/door/firedoor/glass,/obj/machinery/door/airlock/glass_external{frequency = 1379; icon_state = "door_locked"; id_tag = "rnd_s_airlock_inner"; locked = 1},/obj/effect/map_helper/airlock/door/int_door,/turf/simulated/floor/tiled/steel_grid,/area/rnd/external) "aKN" = (/obj/machinery/door/firedoor/glass,/obj/machinery/access_button/airlock_interior{master_tag = "rnd_s_airlock"; pixel_x = 25; pixel_y = 24},/obj/machinery/door/airlock/glass_external{frequency = 1379; icon_state = "door_locked"; id_tag = "rnd_s_airlock_inner"; locked = 1},/obj/machinery/atmospherics/pipe/simple/hidden,/obj/effect/map_helper/airlock/door/int_door,/turf/simulated/floor/tiled/steel_grid,/area/rnd/external) -"aKO" = (/obj/machinery/portable_atmospherics/canister/carbon_dioxide,/obj/machinery/camera/network/research{dir = 4},/turf/simulated/floor/tiled/steel_dirty,/area/rnd/xenobiology/xenoflora_storage) -"aKP" = (/obj/machinery/portable_atmospherics/canister/carbon_dioxide,/turf/simulated/floor/tiled/steel_dirty,/area/rnd/xenobiology/xenoflora_storage) -"aKQ" = (/obj/effect/floor_decal/industrial/warning/dust{dir = 4},/obj/effect/floor_decal/industrial/warning/dust{dir = 8},/turf/simulated/floor/tiled/steel_dirty,/area/rnd/xenobiology/xenoflora_storage) -"aKR" = (/obj/machinery/portable_atmospherics/canister/sleeping_agent,/turf/simulated/floor/tiled/steel_dirty,/area/rnd/xenobiology/xenoflora_storage) "aKS" = (/obj/random/junk,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/plating,/area/maintenance/lower/research) "aKT" = (/obj/machinery/portable_atmospherics/canister/oxygen,/obj/effect/floor_decal/industrial/outline/yellow,/turf/simulated/floor/tiled/techmaint,/area/engineering/atmos/gas_storage) "aKU" = (/obj/effect/floor_decal/industrial/outline/yellow,/obj/machinery/pipedispenser,/obj/item/device/radio/intercom{dir = 8; pixel_x = -24},/turf/simulated/floor/tiled,/area/engineering/atmos) @@ -1616,8 +1624,6 @@ "aLq" = (/obj/effect/floor_decal/steeldecal/steel_decals10{dir = 9},/obj/effect/floor_decal/steeldecal/steel_decals10{dir = 10},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 9},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 6},/obj/machinery/atmospherics/pipe/manifold/hidden{dir = 8; icon_state = "map"},/turf/simulated/floor/tiled,/area/rnd/external) "aLr" = (/obj/effect/floor_decal/industrial/warning{dir = 4; icon_state = "warning"},/obj/effect/floor_decal/steeldecal/steel_decals3{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals3{dir = 5},/obj/machinery/light_switch{pixel_y = 25},/obj/machinery/atmospherics/unary/vent_pump/high_volume{dir = 8; frequency = 1379; id_tag = "rnd_s_airlock_pump"},/obj/effect/map_helper/airlock/atmos/chamber_pump,/turf/simulated/floor/tiled,/area/rnd/external) "aLs" = (/obj/structure/grille,/obj/structure/railing{dir = 8},/obj/structure/sign/nosmoking_2{pixel_y = 30},/turf/simulated/floor/tiled/techmaint,/area/rnd/external) -"aLt" = (/obj/machinery/portable_atmospherics/canister/oxygen,/turf/simulated/floor/tiled/steel_dirty,/area/rnd/xenobiology/xenoflora_storage) -"aLu" = (/obj/machinery/portable_atmospherics/canister/nitrogen,/turf/simulated/floor/tiled/steel_dirty,/area/rnd/xenobiology/xenoflora_storage) "aLv" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/plating,/area/maintenance/lower/research) "aLw" = (/obj/structure/closet/crate,/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/plating,/area/maintenance/lower/research) "aLx" = (/obj/machinery/portable_atmospherics/canister/nitrogen,/obj/effect/floor_decal/industrial/outline/yellow,/obj/machinery/power/apc{cell_type = /obj/item/weapon/cell/super; dir = 8; name = "west bump"; pixel_x = -24},/obj/structure/cable/cyan{d2 = 4; icon_state = "0-4"},/turf/simulated/floor/tiled/techmaint,/area/engineering/atmos/gas_storage) @@ -1652,7 +1658,6 @@ "aMb" = (/obj/effect/floor_decal/steeldecal/steel_decals10{dir = 6},/obj/effect/floor_decal/steeldecal/steel_decals10{dir = 5},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 5},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 10},/obj/machinery/atmospherics/pipe/simple/hidden{dir = 5; icon_state = "intact"},/turf/simulated/floor/tiled,/area/rnd/external) "aMc" = (/obj/effect/floor_decal/borderfloor{dir = 10},/obj/effect/floor_decal/corner/lightgrey/border{dir = 10},/obj/effect/floor_decal/borderfloor/corner2{dir = 9},/obj/effect/floor_decal/corner/lightgrey/bordercorner2{dir = 9},/obj/structure/flora/pottedplant,/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 5},/turf/simulated/floor/tiled,/area/tether/surfacebase/surface_one_hall) "aMd" = (/obj/structure/grille,/obj/structure/railing{dir = 8},/turf/simulated/floor/tiled/techmaint,/area/rnd/external) -"aMe" = (/obj/effect/floor_decal/industrial/warning/dust{dir = 4},/obj/effect/floor_decal/industrial/warning/dust{dir = 8},/obj/machinery/light/small,/turf/simulated/floor/tiled/steel_dirty,/area/rnd/xenobiology/xenoflora_storage) "aMf" = (/obj/effect/floor_decal/rust,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/plating,/area/maintenance/lower/research) "aMg" = (/obj/machinery/alarm{dir = 4; icon_state = "alarm0"; pixel_x = -22},/turf/simulated/floor/tiled/techmaint,/area/engineering/atmos/gas_storage) "aMh" = (/obj/machinery/atmospherics/unary/vent_pump/on{dir = 4},/turf/simulated/floor/tiled/techmaint,/area/engineering/atmos/gas_storage) @@ -1685,7 +1690,6 @@ "aMI" = (/obj/machinery/light/small{dir = 4; pixel_y = 0},/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 8},/turf/simulated/floor/tiled/white,/area/crew_quarters/sleep/Dorm_8) "aMJ" = (/obj/machinery/door/airlock/glass_external{frequency = 1379; icon_state = "door_locked"; id_tag = "rnd_s_airlock_outer"; locked = 1},/obj/effect/map_helper/airlock/door/ext_door,/turf/simulated/floor/tiled/steel_grid,/area/rnd/external) "aMK" = (/obj/machinery/access_button/airlock_exterior{master_tag = "rnd_s_airlock"; pixel_x = 25; pixel_y = -8; req_access = list(47)},/obj/machinery/door/airlock/glass_external{frequency = 1379; icon_state = "door_locked"; id_tag = "rnd_s_airlock_outer"; locked = 1},/obj/effect/map_helper/airlock/door/ext_door,/turf/simulated/floor/tiled/steel_grid,/area/rnd/external) -"aML" = (/obj/structure/grille,/obj/structure/railing{dir = 1},/turf/simulated/floor/tiled/techmaint,/area/rnd/xenobiology/xenoflora_storage) "aMM" = (/obj/effect/floor_decal/rust,/obj/structure/closet,/obj/random/maintenance/research,/obj/random/maintenance/research,/obj/random/maintenance/research,/obj/random/maintenance/clean,/turf/simulated/floor/plating,/area/maintenance/lower/research) "aMN" = (/obj/machinery/firealarm{dir = 8; pixel_x = -24},/turf/simulated/floor/tiled/techmaint,/area/engineering/atmos/gas_storage) "aMO" = (/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 4},/turf/simulated/floor/tiled/techmaint,/area/engineering/atmos/gas_storage) @@ -2788,33 +2792,33 @@ aaaaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaahaahaahaahaahaa aaaaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaahaahaahaahaahaahaahaahaahaahaahaahaszatDaugagwauhahlauianxaujaukaulaumaunatHapjapjapjapjapjapjapjapjapjapjapjapunBmalbalvatLapubcdbcdbcdbcdbcdbcdbcdapuapuapuapuapubcmagMagMagMausaoQaojapAaqeaqfaqfaqfaqfaqfaqfaqfaqgapAaojautauuashastastastauvauwauxauyastastauzashaahatxauAauBauBauBauCauBaubaucaudaueaudaudaudaudaueaudauDatxaadaadaadaadaadaadaadaadaadaadaaa aaaaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaahaahaahaahaahaahaahaahagvagvagvagvaszaszagCauEauEahlauFanxauGatHauHauIauJatHauKauKauKauKauKauKauKauKauKauKauKapunmhalbapuapuapuapuapuapuapuapuapuapuapubczbcAbcCapubcmbcmbcpagMauNaoQaojapAauOargargargargargargargauPapAaojautauQauRauRauRauRauRauRauRauRauRauRauRauRaahatxauSauBauTauUauVauBaubaucaudaueaudaudaudaudaueaudaufatxaadaadaadaadaadaadaadaadaadaadaaa aaaaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaahaahaahaahaahaahaahaahaahagvagLagOagRagVagvauYabgaDravaavbanxavcauKauKavdaveauKavfavgavhaviavhavhavhavhavhavhavhavjpoNalCbcqbcrbcrbcrbcBbcsbcrbcrbcrbcrbcqbctbcobcobcubcmbcmbcmagMavmaoQaojaoRaoSaoSaoSaoSaoSaoSaoSaoSaoSaoRaojavnavoavpavqavravsavtavuavvavwavxavyavzauRaahatxavAauBavBavCavDauBaubaucaudaueaudaudaudaudaueaudafHatxaadaadaadaadaadaadaadaadaadaadaaa -aaaaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaahaahaahaahaahaahaahaahaahagvagWagZahfahhahtavEavFavGavHavIacJavJauKavKavLavMavNavOavPawnawnawnawnawnawnawnawnawnawnfGPalDavTavTavTavTavTavTavTavUagMbbQapubcvapuapuagMagMagMbcmagMavVaoQaoiaojaojaojaojaojaojaojaojaojaojaojaoiavWavXauRavYavZawaawbawcawdaweawfawgawhauRaahatxatWaexawiauBawjauBaubaucaudaueaudaudaudaudaueaudauDawkaadaadaadaadaadaadaadaadaadaadaaa -aaaaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaahaahaahaahaahaahaahaahaahagvahHahOahPahQagvawlawmahTawnawoawpawqauKawrawsawsawsawsawtawnaikaDgailabmailaDgaimaimawnkCzalEavTawDagbagbagbagbagbagbagMagMagMbcoapubcdagMahcagMatLagMjDgxATawHawHawHawHawHawHawIawHawHawHawHawHawHawJawKawLawMawNawNawNawNauRawOawfawPawQauRaahatxatxatxatxawRawjauBaubaucaudaueaudaudaudaudaueaudaufatxaadaadaadaadaadaadaadaadaadaadaaa -aaaaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaahaahaahaahaahaahaahaahaahaahagvadVaijahPainagvawSawTauKauKauKauKauKauKawUabDabDabDabDabDabDaikaDgailaDgailaDgaimaimawncsbalFaxeaxfagbagcagcagcagcagbaxgaxhagMagMagMagMagMahuagMatjagMwUWaoQoQmaxkaxlaxmaxmaxnaxoaxpaxqaxmaxmaxmaxravWaqhabxaxsaxtaxtabAaxtawNaxuaxvaxwaxxauRaahatxaxyaxyatxaxzawjauBaubaucaudaueaudaudaudaudaueaudaufatxaadaadaadaadaadaadaadaadaadaadaaa -aaaaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaahaahaahaahaahaahaahaahaahaahagvaipaisaiHaiIagvaxAaxBaxCavhavhavhavhaxDaxEabDabwabwabDabvabDaikaDgailaDgailaDgaimaimawnimWalGavTaxSagbagcagcagcagcagcaxTaxUaxVaxWaxXaxYaxZayaaybaycabcabhtvkgVeagMagMayhayhayhayhayhayhayiayhayhfAWkgkvfyawNawNawNawNauRaymauRauRauRauRauRaynagMatxayoayoatxaypayqauBaubaucaudaueaudaudaudaudaueaudauDatxaadaadaadaadaadaadaadaadaadaadaaa -aaaaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaahaahaahaahaahaahaahaahaahagvaiJaiKaiLaiMagvayraysabDabDabDabDabDabDabDabDadzadzabDabDabDabIacbaDgabNaGoaGoaGoabWawntMPalHavTaxSagbagcagcagcagcagcaxTayGayHayIayGayGayJayGayGayGsQBabkabllNtaqMahcayhayQayRaySayTayUayVayWayhkKlmSzqwmbPtazdazcazdazeazfazgazhaziazjazkazdazlazmaznaznazoazpazqauBaubazraudaueaudaudaudaudaueaudaufatxaadaadaadaadaadaadaadaadaadaadaaa -aaaaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaahauKauKauKauKauKauKauKauKazsazsazsazsazsazsaztaysabDacxacxacxacxacxacxacxacDacDacxacxabDagmahdaioaiqajiajiajiajialIalJalKavTaxSagbaghagcagcagcagiazLazMazNazOazPazQazRazSrYldCcbyPoshghrmonagMagMayhazZiwEiwEiwEgxafypeQTaAfxznqhqayGoVrayGayGayJayGayGcWSayGayGayIayGayGitimRFbSxauUqfJmRFjvaauBaubazrauXaueaudaudaudaudaueaudaufawkaadaadaadaadaadaadaadaadaadaadaaa -aaaaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaahauKaAsaAtaAuaAuabBaAuaAvaAwaaTaAuaAwaAuaAxaAyaysabDacxacxacxaeRacxacxacxaeRacxacxacxabDaDgagPaDgajlaDgaDgaDgahbawnapuacWavTaAMagbagbagbagbagbagbaANaAOagMagMagMagMagMaAPaAQaARagMagMagMagMagMaASayhhmxefVnmDcXWqWkhuEnizcppldIoibqRImrRjnjuEKmZOoKYbynrRCvDbvDbsvZtNJvDbvDbbMsraStLxmOzrYLdZWauBaubazraudaueaudaudaudaudaueaudaufatxaadaadaadaadaadaadaadaadaadaadaaa -aaaaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaahauKaBuauKauKauKauKauKauKauKauKauKauKauKauKaBwacuabDacxacxacxacxacxafuafAacxacxacxacxabDawnawnawnajmawnawnawnawnawnaBHaBIaBJaBJaBJaBJaBJaBJaBJavUagMagMagMaBKaBLaBMaBNaBOaBPaBQaBOaahaahaahagMagMayhaBRaBSaBTaBTayhaBUaBVayhagMagMagMagMagMagMagMqKnuUPagMaBYaBYaBYagMaARaBZatxaCaaCaatxaypaCbauBaubaucaudaueaudaudaudaudaueaudauDatxaadaadaadaadaadaadaadaadaadaadaaa -aaaaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaahauKaCcauKaahaahaahaahaahaahaahaahaahaahaBvaCfakeabDadMadMadMadNadMagragradNadMadMadMabDaCmaCnaCoajJajWajXakaaCsawnaCtaCuaCvaCwaCwaCwaCwaCwaCwaCwaCxaCvaCvaCyaCzaCwaCwaCAaCBaCCaBOaahaahaahaahaahayhaCDaCEaCFaCGayhaCHaCIayhaCJaCKaCJaCJcOqagMkbZsHOtVdaCOaCPaCQaCRaCSagMagMatxaxyaxyatxaCTaCUauBaubaucaudaueaudaudaudaudaueaudaufatxaadaadaadaadaadaadaadaadaadaadaaa -aaaaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadauKaCcauKaahaahaahaahaahaahaahaahaahaahaBvaCVakfabDafeafeafeafgagDagEagFafgafeafeafeabDakgaDcaDdaDeaDfaDfaFfaDhawnaDiaDiaDiaDiaBOaBOaBOaBOaBOaBOaBOaBOaBOaBOaBOaBOaBOaBOaDjaDkaBOaahaahaahaahaahayhaDlaDmaDnaDoayhaDpaDqayhaCJaCKaCKaCKaCKagMcqZuKSeowaCOaDuaDuaDvaCOaCOaCOaCOatxatxatxaDwaCUauBaubaucaudaueaudaudaudaudaueaudaufatxaadaadaadaadaadaadaadaadaadaadaaa -aaaaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadauKaDxauKaahaahaahaahaahaahaahaahaahaahaBvaCdaDzabDagnafPaglafUafXagGagNafUagxafXahyabDaDyaDJaDgaDKaDLaDLakcaDNawnaDOaDPaDQaDiaahaahaahaahaahaahaahaahaahaahaahaahaahaBOaDRaDkaBOaBOaBOaBOaBOaBOayhayhaDSayhayhayhayhayhayhaCKaCKaCJaCKaCKaDTxznayGkAGaCOaDXaDuaDuaDYaDZaEaaCOaEbafYaEcauBaCUauBaubaucaudaueaudaudaudaudaueaudauDawkaadaadaadaadaadaadaadaadaadaadaaa -aaaaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadauKaCcauKaahaahaahaahaahaahaahaahaahaahaBvaDyaEeabDaheaiuaivaiwaixaiBacpaDgaiFaiGahFabDakjaDJaEmaEnaDgaDgakdaEpaEqaEraEsaEtaDiaahaahaahaahaahaahaahaahaahaahaahaahaahaBOaDRaEuaEvaEwaExaEyaEvaEzaEAacoaEBaECaEDaEEaBOaCJaCKaCJaCKaCKaCJaCKaEFlQQayGrZZaEIaEJaDuaEKaELaEMaEMacrauBauBaENaEOaEPauBaubaucaudaueaudaudaudaudaueaudafHatxaadaadaadaadaadaadaadaadaadaadaaa -aaaaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaEQaERauKaahaahaahaahaahaahaahaahaahaahaBvaESaETabDahmahaahvahwahYaiQaiRaiUaiWakpaihabnaCVaDJaDgaDeaFeaFeaFfaFgawnaFhaFiaFjaDiaahaahaahaahaahaahaahaahaahaahaahaahaahaBOaFkaFlaFmaFmaFmaFmaFmaFnaFlaFlaFoaFmaFlaFmaFpaFqaFraFsaCKaCKaCKaCKagMvHPayGghgaFwaFxaFyaFzaFAaFBaFCaFDaFEaFFaFGauUaFHauBaubaucaudaueaudaudaudaudaueaudaufatxaadaadaadaadaadaadaadaadaadaadaaa -aaaaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaibaahaahaahaahaahaahaahaahaahaahaahaBvajBaCeabDabDabDabDabnabnabDajbabDabnajcabnabnaCVaDJaDgaDeaDgaDgaFfaFLawnaDiaDiaDiaDiaahaahaahaahaahaahaahaahaahaahaahaahaahaBOaFMaFNaBOaBOaBOaBOaBOaBOaBOaBOaBOaBOaBOaBOaBOaCJaCKaCKaCJaCJaCKaCKagMbMPayGwxaaCOsyaaFRaEKaELaFSaFTaFDaFUaFVaFVaFWaFXauBaubaucaudaueaudaudaudaudaueaudauDatxaadaadaadaadaadaadaadaadaadaadaaa +aaaaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaahaahaahaahaahaahaahaahaahagvagWagZahfahhahtavEavFavGavHavIacJavJauKavKavLavMavNavOavPabmabmabmabmabmabmabmabmabmabmfGPalDavTavTavTavTavTavTavTavUagMbbQapubcvapuapuagMagMagMbcmagMavVaoQaoiaojaojaojaojaojaojaojaojaojaojaojaoiavWavXauRavYavZawaawbawcawdaweawfawgawhauRaahatxatWaexawiauBawjauBaubaucaudaueaudaudaudaudaueaudauDawkaadaadaadaadaadaadaadaadaadaadaaa +aaaaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaahaahaahaahaahaahaahaahaahagvahHahOahPahQagvawlawmahTawnawoawpawqauKawrawsawsawsawsawtabmabnabvabwabDabwabvabIabIabmkCzalEavTawDagbagbagbagbagbagbagMagMagMbcoapubcdagMahcagMatLagMjDgxATawHawHawHawHawHawHawIawHawHawHawHawHawHawJawKawLawMawNawNawNawNauRawOawfawPawQauRaahatxatxatxatxawRawjauBaubaucaudaueaudaudaudaudaueaudaufatxaadaadaadaadaadaadaadaadaadaadaaa +aaaaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaahaahaahaahaahaahaahaahaahaahagvadVaijahPainagvawSawTauKauKauKauKauKauKawUabNabNabNabNabNabNabnabvabwabvabwabvabIabIabmcsbalFaxeaxfagbagcagcagcagcagbaxgaxhagMagMagMagMagMahuagMatjagMwUWaoQoQmaxkaxlaxmaxmaxnaxoaxpaxqaxmaxmaxmaxravWaqhabxaxsaxtaxtabAaxtawNaxuaxvaxwaxxauRaahatxaxyaxyatxaxzawjauBaubaucaudaueaudaudaudaudaueaudaufatxaadaadaadaadaadaadaadaadaadaadaaa +aaaaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaahaahaahaahaahaahaahaahaahaahagvaipaisaiHaiIagvaxAaxBaxCavhavhavhavhaxDaxEabNabWabWabNacbabNabnabvabwabvabwabvabIabIabmimWalGavTaxSagbagcagcagcagcagcaxTaxUaxVaxWaxXaxYaxZayaaybaycabcabhtvkgVeagMagMayhayhayhayhayhayhayiayhayhfAWkgkvfyawNawNawNawNauRaymauRauRauRauRauRaynagMatxayoayoatxaypayqauBaubaucaudaueaudaudaudaudaueaudauDatxaadaadaadaadaadaadaadaadaadaadaaa +aaaaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaahaahaahaahaahaahaahaahaahagvaiJaiKaiLaiMagvayraysabNabNabNabNabNabNabNabNacpacpabNabNabNacxacDabvadzadMadMadMadNabmtMPalHavTaxSagbagcagcagcagcagcaxTayGayHayIayGayGayJayGayGayGsQBabkabllNtaqMahcayhayQayRaySayTayUayVayWayhkKlmSzqwmbPtazdazcazdazeazfazgazhaziazjazkazdazlazmaznaznazoazpazqauBaubazraudaueaudaudaudaudaueaudaufatxaadaadaadaadaadaadaadaadaadaadaaa +aaaaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaahauKauKauKauKauKauKauKauKazsazsazsazsazsazsaztaysabNaeRaeRaeRaeRaeRaeRaeRafeafeaeRaeRabNafgafuafAafPafUafUafUafUafXalJalKavTaxSagbaghagcagcagcagiazLazMazNazOazPazQazRazSrYldCcbyPoshghrmonagMagMayhazZiwEiwEiwEgxafypeQTaAfxznqhqayGoVrayGayGayJayGayGcWSayGayGayIayGayGitimRFbSxauUqfJmRFjvaauBaubazrauXaueaudaudaudaudaueaudaufawkaadaadaadaadaadaadaadaadaadaadaaa +aaaaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaahauKaAsaAtaAuaAuabBaAuaAvaAwaaTaAuaAwaAuaAxaAyaysabNaeRaeRaeRaglaeRaeRaeRaglaeRaeRaeRabNabvagmabvagnabvabvabvagrabmapuacWavTaAMagbagbagbagbagbagbaANaAOagMagMagMagMagMaAPaAQaARagMagMagMagMagMaASayhhmxefVnmDcXWqWkhuEnizcppldIoibqRImrRjnjuEKmZOoKYbynrRCvDbvDbsvZtNJvDbvDbbMsraStLxmOzrYLdZWauBaubazraudaueaudaudaudaudaueaudaufatxaadaadaadaadaadaadaadaadaadaadaaa +aaaaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaahauKaBuauKauKauKauKauKauKauKauKauKauKauKauKaBwacuabNaeRaeRaeRaeRaeRagxagDaeRaeRaeRaeRabNabmabmabmagEabmabmabmabmabmaBHaBIaBJaBJaBJaBJaBJaBJaBJavUagMagMagMaBKaBLaBMaBNaBOaBPaBQaBOaahaahaahagMagMayhaBRaBSaBTaBTayhaBUaBVayhagMagMagMagMagMagMagMqKnuUPagMaBYaBYaBYagMaARaBZatxaCaaCaatxaypaCbauBaubaucaudaueaudaudaudaudaueaudauDatxaadaadaadaadaadaadaadaadaadaadaaa +aaaaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaahauKaCcauKaahaahaahaahaahaahaahaahaahaahaBvaCfakeabNagFagFagFagGagFagNagNagGagFagFagFabNaCmaCnaCoajJajWajXakaaCsawnaCtaCuaCvaCwaCwaCwaCwaCwaCwaCwaCxaCvaCvaCyaCzaCwaCwaCAaCBaCCaBOaahaahaahaahaahayhaCDaCEaCFaCGayhaCHaCIayhaCJaCKaCJaCJcOqagMkbZsHOtVdaCOaCPaCQaCRaCSagMagMatxaxyaxyatxaCTaCUauBaubaucaudaueaudaudaudaudaueaudaufatxaadaadaadaadaadaadaadaadaadaadaaa +aaaaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadauKaCcauKaahaahaahaahaahaahaahaahaahaahaBvaCVakfabNagPagPagPahaahbahdaheahaagPagPagPabNakgaDcaDdaDeaDfaDfaFfaDhawnaDiaDiaDiaDiaBOaBOaBOaBOaBOaBOaBOaBOaBOaBOaBOaBOaBOaBOaDjaDkaBOaahaahaahaahaahayhaDlaDmaDnaDoayhaDpaDqayhaCJaCKaCKaCKaCKagMcqZuKSeowaCOaDuaDuaDvaCOaCOaCOaCOatxatxatxaDwaCUauBaubaucaudaueaudaudaudaudaueaudaufatxaadaadaadaadaadaadaadaadaadaadaaa +aaaaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadauKaDxauKaahaahaahaahaahaahaahaahaahaahaBvaCdaDzabNahmahvahwahyahFahYaihahyaikahFailabNaDyaDJaDgaDKaDLaDLakcaDNawnaDOaDPaDQaDiaahaahaahaahaahaahaahaahaahaahaahaahaahaBOaDRaDkaBOaBOaBOaBOaBOaBOayhayhaDSayhayhayhayhayhayhaCKaCKaCJaCKaCKaDTxznayGkAGaCOaDXaDuaDuaDYaDZaEaaCOaEbafYaEcauBaCUauBaubaucaudaueaudaudaudaudaueaudauDawkaadaadaadaadaadaadaadaadaadaadaaa +aaaaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadauKaCcauKaahaahaahaahaahaahaahaahaahaahaBvaDyaEeabNaimaioaiqaiuaivaiwaixaiBaiFaiGaiQabNakjaDJaEmaEnaDgaDgakdaEpaEqaEraEsaEtaDiaahaahaahaahaahaahaahaahaahaahaahaahaahaBOaDRaEuaEvaEwaExaEyaEvaEzaEAacoaEBaECaEDaEEaBOaCJaCKaCJaCKaCKaCJaCKaEFlQQayGrZZaEIaEJaDuaEKaELaEMaEMacrauBauBaENaEOaEPauBaubaucaudaueaudaudaudaudaueaudafHatxaadaadaadaadaadaadaadaadaadaadaaa +aaaaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaEQaERauKaahaahaahaahaahaahaahaahaahaahaBvaESaETabNaiRaiUaiWajbajcajiajlajmakpalIalLalSaCVaDJaDgaDeaFeaFeaFfaFgawnaFhaFiaFjaDiaahaahaahaahaahaahaahaahaahaahaahaahaahaBOaFkaFlaFmaFmaFmaFmaFmaFnaFlaFlaFoaFmaFlaFmaFpaFqaFraFsaCKaCKaCKaCKagMvHPayGghgaFwaFxaFyaFzaFAaFBaFCaFDaFEaFFaFGauUaFHauBaubaucaudaueaudaudaudaudaueaudaufatxaadaadaadaadaadaadaadaadaadaadaaa +aaaaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaibaahaahaahaahaahaahaahaahaahaahaahaBvajBaCeabNabNabNabNalSalSabNalTabNalSalUalSalSaCVaDJaDgaDeaDgaDgaFfaFLawnaDiaDiaDiaDiaahaahaahaahaahaahaahaahaahaahaahaahaahaBOaFMaFNaBOaBOaBOaBOaBOaBOaBOaBOaBOaBOaBOaBOaBOaCJaCKaCKaCJaCJaCKaCKagMbMPayGwxaaCOsyaaFRaEKaELaFSaFTaFDaFUaFVaFVaFWaFXauBaubaucaudaueaudaudaudaudaueaudauDatxaadaadaadaadaadaadaadaadaadaadaaa aaaaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaibaahaahaahaahaahaahaahaahaahaahaahaBvaFYcdOygYxgQlMflwNvlJcIhovGajdkyEygYajeygYgxMszTuOeaGmaGnaGoaGoaGpaGqawnaahaahaahaahaahaahaahaBOaBOaBOaBOaBOaBOaBOaBOaBOaBOaBOhBEohiaBOaahaahaahaahaahaahaahaahaahaahaahaGtaGuaCKaCKaCJaCKaCJaCJagMeUSayGglcaCOaGxaFRaEKaELaEMaGyaFDaLKaGzaGAauBaGBaGCaubaucaudaueaudaudaudaudaueaudaufatxaadaadaadaadaadaadaadaadaadaadaaa aaaaGDaGEaGEaGEaGFaGGaGGaGGaGGaGGaGGaGHaGEaGEaGEaGEaGEaGEaGEaGEaGEaGIaahaahaahaahaahaahaahaahaahaahaahaBvaGdglHaGXofSaGXicBuAAaGXjktaGXaGXaGXolihpstvAjSUnisaGWaGXaGYaGXaGZaHaawnaahaahaahaahaahaahaahaBOaHbaHcaHcaHdaHeaHeaHfaHfaHeaHgeILhczaBOaBOaBOaBOaBOaBOaBOaBOaahaahaahaahaGtaCJaCKaCKaCKaCKaCJaHjagMaxiayGglcaCOaHlaFRaEKaELaHmaHnaCOactaCOaCOaCOaCOatxatyatzatzatAatBatBatBatBatAatzatzatCaadaadaadaadaadaadaadaadaadaadaaa -aHoaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaahaahaahaahaahaahaahaahaahaahaahaBvaBvaBvaBvaBvaBvaFIaHpawnawnawnaHqaHqaHqaHqaHraHsaHqaHqaHqawnawnaHtawnawnaBOaBOaBOaBOaBOaBOaBOaBOaHuaHvaHvaebaHvaHvaHvaHwaHxaHygOAlocaHBaHBaHBaHCaHDaHEaDkaBOaBOaBOaBOaBOagMagMagMagMagMagMagMagMagMmCeayGglcaHGaDuaFRaDuaDuaDuaDuaeLaDuaHHaHIaCSaHJaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaaa -aHKaHLaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaahaahaahaahaahaahaahaahaahaahaahaahaahaahaahaahaBvaFJaHNawnaHOaHPaHqaHQaHRadnaHSaHTaHUaHVaHqaahaBOaHWaHXaHXaHXaHYaHZaIaaHZbcWaIbaIcaHuaHvaIdaIeaIfaIgaIhaIhaIhaIhaIhaecaIhaIhaIhaIhaIhaEBaIiaEzaEvaIjaIkaBOaIlayGaeMayGaImaInaIoaEHaIpxznayGhTzaHGaDuaIraIsaItaIuaIvaIwaIxaIuaIyaIzaHJaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaaa -aHKaHLaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaahaahaahaahaahaahaahaahaahaahaahaahaahaahaahaahaahaBvaFKaIBawnaICaIDaHqaHqaHqaHqaHraHsaHVaHVaHqaahaBOaHZaIEaIFaIGaIGaIGaIHaIGaHcaIIaIJaIKaHvaILaIMaINaIOaIhaIPaIQaIRaISaITaIUaIVaIWaIXaIhaIYaIZaJaaHCaHCaHBaJbaJcaJdaJdaJeaJfaJgaJfaJhaJiabbaJgrVbaHGaDuaJmaCQaJnaJoaDuaDuaDuaDuaJpaJqaHJaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaaa -aHKaHLaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaahaahaahaahaahaahaahaahaahaahaahaahaahaahaahaahaahaBvaJraJsaJtaJuaJvaJwaJxaHqaJyaJzaJAaJBaJCaHqaahaBOaBOaBOaJDaJEaBOaJFaJFaJFaJFaJFaIhaIhaIhaIhaJGaIhaIhaIhaJHaJIaJJaJKaJLaJMaJNaJMaJOaIhaIhaIhaIhaIhaIhaBOaBOagMayGayGaJPaJQaJRaJQaJQagMrxqnspkPTaHGaDuaJVaJVaJVaDuaCPaCQaCRaDuaJWaJVaHJaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaaa -aHKaHLaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaahaahaahaahaahaahaahaahaahaahaahaahaahaahaahaahaahaBvaJXaJYawnaJZaJZaKaaKaaHqaKbaKcaKdaKeaKfaHqaahaahaahaBOaKgaHZaKhaJFaKiaKjaKkaJFaKlaKmaKnaKoaKpaKqaKqaIhaKraJIaKsaKtaKuaKvaJIaJIaKwaIhaKqaKqaKxaKyaIhaKzaHZagMaKAaKAaKBaKCaKDaKEaKFagMaMcaKHbbnaCOaCSaDuaDuaDuaKJaDuaDuaKKaDuaJWaDuaHJaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaaa -aHKaHLaadaadaadaadaadaadaadaadaadaadaadaadaadajKaadaadaadaadaadaadaahaahaahaahaahaahaahaahaahaahaahaahaahaahaKLaKLaKLaKLaKMaKNaKLaKLaKLaKLaahaHqaKOaKPaKQaKRaKRaHqaahaahaahaBOaKSaHZaHZaJFaKiaKTaKkaJFaKUaJIaKVaJIaKWaJIaJIaIhaKXaKYaKZaLaaJIaLbaJIaLcaLdaIhaJIaJIaKxaLeaIhaIaaLfaLgaLgaLgaLgaLgaLgaLgaLgaLgaLgaLhaLiaLjaLjaLjaLjaLjaLjaLjaLjaLjaLjaLkaLlaHJaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaaa -aHKaHLaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaahaahaahaahaahaahaahaahaahaahaahaahaahaahaKLauWaLnaLoaLpaLqaLraLsauWaKLaahaHqaLtaLtaKQaLuaLuaHqaahaahaahaBOaLvaHZaLwaJFaLxaLyaLzaJFaLAaLBaLCaLCaLDaLCaLCaLCaLEaLFaLGaLHaJIaLIaJIaJIaLJaJIaJIaJIaJIaLPaIhaIhaLLaLgaLMaLMaLMaLMaLMaLMaLNaLOaLgaNQaLQaLjaLRaLSaLTaLUaLVaLjaLWaLXaLjaCPaJnaHJaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaaa -aHKaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaahaahaahaahaahaahaahaahaahaahaahaahaahaahaKLauWaLYbboaMaaMbbcUaMdauWaKLaahaHqaLtaLtaMeaLuaLuaHqaahaahaahaBOaMfaHZaBOaJFaMgaMhaMiaMjaMkaMlaJIaJIaJIacvaMmaMmaMnaMoaMpaMpaMqaMraMsaMtaMraMsaMsaMsaMuaMvaMwaIhaIhaLgaMxaLMaLMaLMaLMaLMaMyaMzaLgaMAaMBaLjaMCaMDaMEaMFaMEaMGaMHaMIaLjaCOaCOaCOaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaaa -aHKaHLaHLaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaahaahaahaahaahaahaahaahaahaahaahaahaahaKLaKLaKLaKLaMJaMKaKLaKLaKLaKLaahaHqaHqaMLaHqaMLaHqaHqaahaahaahaBOaLvaHZaMMaJFaMNaMOaMPaMQaMRaMSaJIaJIaJIaMTaMUaMVaMWaMXaMqaMYaMZaNaaNaaNbaNcaNcaNdaJIaNeaNfaNgaNhaNhaLgaLMaLMaLMaLMaLMaLMaNiaNjaNkaNlaNmaNnaNoaNpaNqaNraNsaLjaNtaNuaLjaahaahaahaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaaa -aHKaHLaHLaHLaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaahaahaahaahaahaahaahaahaahaahaahaahaahaahaahaNvaNwaNwaNxaahaahaahaahaahaHqaHQaHqaHQaHqaahaahaahaahaBOaJDaHZaNyaJFaNzaNAaNBaJFaNCaNDaJIaJIaJIaMTaMvaNEaNFaNGaMqaNHaNIaJIaJIaNJaNKaNEaNLaMqaMraNMaNNaNOaNPaLgaLgaLgaLgaLgaLgaLgaLgaLgaLgaOTaNRaNSaNSaNSaNSaNSaNSaNSaNSaNSaNSaahaahaahaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaaa -aHKaadaadaadaadaHLaadaHLaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaahaahaahaahaahaahaahaahaahaahaahaahaahaahaahaoqaoqaoqaoqaahaahaahaahaahaHqaHqaHqaHqaHqaahaahaahaahaBOaJDaIaaNTaJFaNUaNAaNVaJFaNWaNXaJIaJIaJIaMTaNYaNZaOaaObaOcaOdaJIaJIaJIaOeaOfaNZaOgaJIaJIajjaOhaOiaOiaOjaOkaOkaOkaOkaOkaOkaOlaOmaOjaOnaOoaNSaOpaOqaOraOsaOtaNSaOuaOvaNSaahaahaahaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaaa +aHoaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaahaahaahaahaahaahaahaahaahaahaahaBvaBvaBvaBvaBvaBvaFIaHpawnawnawnadnadnadnadnalValWadnadnadnawnawnaHtawnawnaBOaBOaBOaBOaBOaBOaBOaBOaHuaHvaHvaebaHvaHvaHvaHwaHxaHygOAlocaHBaHBaHBaHCaHDaHEaDkaBOaBOaBOaBOaBOagMagMagMagMagMagMagMagMagMmCeayGglcaHGaDuaFRaDuaDuaDuaDuaeLaDuaHHaHIaCSaHJaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaaa +aHKaHLaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaahaahaahaahaahaahaahaahaahaahaahaahaahaahaahaahaBvaFJaHNawnaHOaHPadnalYalZamaambamdamnamoadnaahaBOaHWaHXaHXaHXaHYaHZaIaaHZbcWaIbaIcaHuaHvaIdaIeaIfaIgaIhaIhaIhaIhaIhaecaIhaIhaIhaIhaIhaEBaIiaEzaEvaIjaIkaBOaIlayGaeMayGaImaInaIoaEHaIpxznayGhTzaHGaDuaIraIsaItaIuaIvaIwaIxaIuaIyaIzaHJaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaaa +aHKaHLaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaahaahaahaahaahaahaahaahaahaahaahaahaahaahaahaahaahaBvaFKaIBawnaICaIDadnadnadnadnalValWamoamoadnaahaBOaHZaIEaIFaIGaIGaIGaIHaIGaHcaIIaIJaIKaHvaILaIMaINaIOaIhaIPaIQaIRaISaITaIUaIVaIWaIXaIhaIYaIZaJaaHCaHCaHBaJbaJcaJdaJdaJeaJfaJgaJfaJhaJiabbaJgrVbaHGaDuaJmaCQaJnaJoaDuaDuaDuaDuaJpaJqaHJaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaaa +aHKaHLaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaahaahaahaahaahaahaahaahaahaahaahaahaahaahaahaahaahaBvaJraJsaJtaJuaJvaJwaJxadnampamramsamtamuadnaahaBOaBOaBOaJDaJEaBOaJFaJFaJFaJFaJFaIhaIhaIhaIhaJGaIhaIhaIhaJHaJIaJJaJKaJLaJMaJNaJMaJOaIhaIhaIhaIhaIhaIhaBOaBOagMayGayGaJPaJQaJRaJQaJQagMrxqnspkPTaHGaDuaJVaJVaJVaDuaCPaCQaCRaDuaJWaJVaHJaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaaa +aHKaHLaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaahaahaahaahaahaahaahaahaahaahaahaahaahaahaahaahaahaBvaJXaJYawnaJZaJZaKaaKaadnamvamxamyamzamIadnaahaahaahaBOaKgaHZaKhaJFaKiaKjaKkaJFaKlaKmaKnaKoaKpaKqaKqaIhaKraJIaKsaKtaKuaKvaJIaJIaKwaIhaKqaKqaKxaKyaIhaKzaHZagMaKAaKAaKBaKCaKDaKEaKFagMaMcaKHbbnaCOaCSaDuaDuaDuaKJaDuaDuaKKaDuaJWaDuaHJaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaaa +aHKaHLaadaadaadaadaadaadaadaadaadaadaadaadaadajKaadaadaadaadaadaadaahaahaahaahaahaahaahaahaahaahaahaahaahaahaKLaKLaKLaKLaKMaKNaKLaKLaKLaKLaahadnamJamKamLamNamNadnaahaahaahaBOaKSaHZaHZaJFaKiaKTaKkaJFaKUaJIaKVaJIaKWaJIaJIaIhaKXaKYaKZaLaaJIaLbaJIaLcaLdaIhaJIaJIaKxaLeaIhaIaaLfaLgaLgaLgaLgaLgaLgaLgaLgaLgaLgaLhaLiaLjaLjaLjaLjaLjaLjaLjaLjaLjaLjaLkaLlaHJaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaaa +aHKaHLaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaahaahaahaahaahaahaahaahaahaahaahaahaahaahaKLauWaLnaLoaLpaLqaLraLsauWaKLaahadnamOamOamLamRamRadnaahaahaahaBOaLvaHZaLwaJFaLxaLyaLzaJFaLAaLBaLCaLCaLDaLCaLCaLCaLEaLFaLGaLHaJIaLIaJIaJIaLJaJIaJIaJIaJIaLPaIhaIhaLLaLgaLMaLMaLMaLMaLMaLMaLNaLOaLgaNQaLQaLjaLRaLSaLTaLUaLVaLjaLWaLXaLjaCPaJnaHJaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaaa +aHKaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaahaahaahaahaahaahaahaahaahaahaahaahaahaahaKLauWaLYbboaMaaMbbcUaMdauWaKLaahadnamOamOamWamRamRadnaahaahaahaBOaMfaHZaBOaJFaMgaMhaMiaMjaMkaMlaJIaJIaJIacvaMmaMmaMnaMoaMpaMpaMqaMraMsaMtaMraMsaMsaMsaMuaMvaMwaIhaIhaLgaMxaLMaLMaLMaLMaLMaMyaMzaLgaMAaMBaLjaMCaMDaMEaMFaMEaMGaMHaMIaLjaCOaCOaCOaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaaa +aHKaHLaHLaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaahaahaahaahaahaahaahaahaahaahaahaahaahaKLaKLaKLaKLaMJaMKaKLaKLaKLaKLaahadnadnandadnandadnadnaahaahaahaBOaLvaHZaMMaJFaMNaMOaMPaMQaMRaMSaJIaJIaJIaMTaMUaMVaMWaMXaMqaMYaMZaNaaNaaNbaNcaNcaNdaJIaNeaNfaNgaNhaNhaLgaLMaLMaLMaLMaLMaLMaNiaNjaNkaNlaNmaNnaNoaNpaNqaNraNsaLjaNtaNuaLjaahaahaahaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaaa +aHKaHLaHLaHLaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaahaahaahaahaahaahaahaahaahaahaahaahaahaahaahaNvaNwaNwaNxaahaahaahaahaahadnalYadnalYadnaahaahaahaahaBOaJDaHZaNyaJFaNzaNAaNBaJFaNCaNDaJIaJIaJIaMTaMvaNEaNFaNGaMqaNHaNIaJIaJIaNJaNKaNEaNLaMqaMraNMaNNaNOaNPaLgaLgaLgaLgaLgaLgaLgaLgaLgaLgaOTaNRaNSaNSaNSaNSaNSaNSaNSaNSaNSaNSaahaahaahaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaaa +aHKaadaadaadaadaHLaadaHLaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaahaahaahaahaahaahaahaahaahaahaahaahaahaahaahaoqaoqaoqaoqaahaahaahaahaahadnadnadnadnadnaahaahaahaahaBOaJDaIaaNTaJFaNUaNAaNVaJFaNWaNXaJIaJIaJIaMTaNYaNZaOaaObaOcaOdaJIaJIaJIaOeaOfaNZaOgaJIaJIajjaOhaOiaOiaOjaOkaOkaOkaOkaOkaOkaOlaOmaOjaOnaOoaNSaOpaOqaOraOsaOtaNSaOuaOvaNSaahaahaahaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaaa aHKaHLaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaahaahaahaahaahaahaahaahaahaahaahaahaahaahaahaadaadaadaadaadaadaadaahaahaahaahaahaahaahaahaahaahaahaBOaJDaHZaIaaJFaNUaOwaNVaJFaOxaNDaJIaJIaJIaMTaJIaNZaOyaOzaJIaJIaJIaJIaJIaOAaOfaNZaOBaJIaOCaODaOEaIhaIhaOjaOFaOkaOkaOkaOkaOkaOGaOHaOjaOIaOJaNSaOKaOLaOMaONaOMaOOaOPaOQaNSaahaahaahaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaaa aHoaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaahaahaahaahaahaahaahaahaahaadaadaadaadaadaadaadaadaadaadaahaahaahaahaahaahaahaORaORaORaORaejaORaORaIhaIhaIhaIhaIhaJIaNDaJIaJIaJIaMTaJIaNZaOUaOVaJIaJIaJIaJIaJIaOeaOfaNZaOBaJIaNeaOWaNgaOXaOXaOjaOkaOkaOkaOkaOkaOkaOYaOZaPaaPbaPcaPdaPeaPfaPgaPhaPiaNSaPjaPkaNSaahaahaahaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaaa aaaaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaahaahaahaahaahaORaPlaPlaPlaPmaPnaPoaPpaPqaPraPsaPqaPtaPuaJIaPvaPwaPxaMUaNZaOUaPyaJIaMUaPzaPAaJIaPBaOfaNZaPCaMqaPDaPEaPFaPGaPHaOjaOjaOjaOjaOjaOjaOjaOjaOjaOjaPIaPJaPKaPKaPKaPKaPKaPKaPKaPKaPKaPKaahaahaahaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaaa diff --git a/maps/tether/tether-02-surface2.dmm b/maps/tether/tether-02-surface2.dmm index dadaf8d605..1da7f63273 100644 --- a/maps/tether/tether-02-surface2.dmm +++ b/maps/tether/tether-02-surface2.dmm @@ -2750,44 +2750,44 @@ aaaaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaa aaaaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaaa aaaaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaaa aaaaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaaa -aaaaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaacaabaacaacaacaabaabaabaabaabaacaacaacaabaabaabaacaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaacaacaacaacaacaacaacaabaabaabaabaabaabaabaabaabaacaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaaa -aaaaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaabaacabEabEabEabFabFabEabEaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaacaafaafaafaafaafaafaafaafaagaagaagaagaagaagaahaahaahaahaahaahaahaahaahaahaabaabaabaabaacaacaacaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaaa -aaaaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabajMajMajMajMajMajMaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacabEacdamiaToaTpaasabEaTraTsaTsaTraTraTsaTsaTraTtaTtaTtaTtaTtaacaacaacaacaacaacaafaajacTaaoaaqaafaaraaraagaavaaAaaCaaDaayaahaaFaaHaaIaaQaaEaahaaWaeuaahaKiaKiaKiaKiaKvaKvaKvaKvaacaacaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaaa -aaaaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabajMajMajMajMajMajMaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacabEaTuaTvaTwaTxaTyaTzaTCaTDaTEaTFaTGaTHaTLaTQaTtaTIaTJaPmaTtaacaacaNzaNzaNzaNzaNzaOxaaoaDXaOSaafaPzaPCaagaPDaPEaOuaPGaPHaahaPIaQKaQKaPJaPMaahaPKaPLaahaPPaPQaPRaPSaaJaPUaPVaKvaacaacaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaaa -aaaaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabajMajMajMajMajMaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacabEaPlaTPaTNaTOaUeaTzaTRaTSaaXaTUaTWaPeaTVaUpaTYaTZaTTacNaTtaacaacaNzaPWayfaPYaNzaPZaaoaQaaQbaQcaQdaafaagaQeaQfaQgaQhaQiaahaQjaQkaPNaPOaQlaQmaQnaQoaahaQraQsaQsaQsaQsaQsaQtaKvaacaacaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaaa -aaaaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabajMajMajMajMajMaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaamaamaamaamaamaamaacaacaUcaUcaUcabEabEaUfaUgaWEaWFaUhaTXaVfaTraTraUkaUkaUlaUkaUkaUkaUkaaSaaSacDaacaNzahhaQvaQwaQxaQyaQzaRoaQAaQBaQCaQDaagaQEaQFaQGaQHaQIaahaQJaQKaQLaQMaQNaahaQOaQPaahaQQaQsaQsaQsaQsaQsaQRaKvaacaacaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaaa -aaaaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabajMajMaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaamaSfaSfaSfaSfaamaacaacaUcaUmaUnaUoabEabEaTzaTzaTzabEaViaUraUsaUtaUkaUuaUvaUwaUxaUyaUkaWGaUqaanaanaanaanaanaapaapaapaapaapaapaQpaQTaQqaagaQVaPtaQXaQYaQZaahaPnaRbaRcaRdaQSaahaRfaRgaahaRhaQsaRiaRjaRkaQsaRlaKvaacaacaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaaa -aaaaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabajMajMaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaamaSfaSfaSfaSfaamaacaacaUcaWyaUAaUBaUCaUDaVqaUFafdaUMaUPaVaaPhaUtaUkaUHaUIafqaUIaPgaUkaUqaUqaanaawaaxahdaazaRmaaBaRnaRpaRqaROaRraRsaRtaagaRuaRuaRvaRuaRuaahaahaRwaRxaRwaahaahaahaahaahaRyaQsaRzaRAaRBaQsaRCaKvaacapqaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaaa -aaaaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabajMajMaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaamaSfaSfaSfaSfaamaacaacaUcaUzaULaWzaWAaUNaUNaUNaUNaUNaTAaWuaUQaUQaUQaUQaUQaURaURaURaURaUSaUSaanaaLaaMaaNaanaaOaaPaRDaapaapaapaPpaRFaRGaRHaRIaRJaRKaRLaRMaQUaRNaSSaRPaQaaQbaQbaRQaPoaKvaRSaQsaRTaQsaRUaQsahiaKvapqapqaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaaa -aaaaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacacqacqacOacqaacaacaacaacaacaacabnabnaaeaSfaSfaSfaSfaamaamaacaUNaUNaUNaUNaUNaUNaBGaUWaUdaUYaVTaVZaVbaVcaVdaVefXUoXNoXNuchbkWkYWexxaUTaUUaaTaaUaaVaRWaRXaRYaapaRZacDaSaaSbaSbaScaaoaaoaaoaSdaSeaTbaaoaaoaSgaShaShaShaShaSiaSjaSkaSlaSmaSnaSoaQsaSpaSqapqaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaaa -aaaaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacacqacqajvajFacqacqaacaacaacaacaacabnaalaaeaSfaSfaSfaSfaSfaamaacaUNaVgaVhaUOaVkaTBaVmahyaVoaUiaWBaWwaUQajKaVvaVwaUQaUSaUSaUSaUSaUSmsIaapaanaanaanaanabraaPaapaSraSraSraSsaSsaSraStaaoaSuaSvaPqaSwaReaSbaSbaSbaSbaTjaTkaSvaSyaKvaSzaSAaSBaSCaPaaSDaSEaSqapqaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaaa -aaaaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabajMaacaacaacaacaacaacaacaacaacaacaacaacaacacqacqakcakdakeakfacqacqaacabnabnabnabnaakaataTiaWraSfaSfaSfaamaacaUNaVxaVyaUXaVCaUNaUNaUNaUNaUNaUGaWCaUQaVFaVGaVHaUQaacaacaapabDaVsolzabGabHacQabIaapaapabKaapaPraSGqaWaSIaSJaSraSKaaoahOaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaKvaKvaKvapqaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaaa -aaaaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabajMaacaacaacaacaacaacaacaacaacaacaacaacacqacqakhakiakjakjakkaklacqacqabnakmaknabnaaRaaeaSfaSfaSfaSfaSfaamaacaUNakgaVjaVKaVLaVMaBGaUWaVpaUYaWjaWDaUQaVPaPjaVPaUQaacaacaapacaacbkuwqfLaceachabJachaciacjaapaSMaSNaSOaSPaSQaSRaTlaTmaSTaadaaYaaZabaabbabcabdabeabfabgabhabiabjaadabkablabmaadaacaacaacapqaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaaa -aaaaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabajMaacaacaacaacaacaacaacaacaacaacaacacqacqajUakpakqakraksaktakuakvacqacqabpaknabnaboaaeaSfaSfaSfaSfaSfaamaacaUNaVQaVJaVRaVzaUZaVUaPiaVWaVlaWOakoaUQaWaaWbaWcaUQaacaacaapacaacruEHadWaapaacaacaacactacuaapaltaSVaSWaSXaSYaSraPsaTaaTnaadabsaaiaaiaaGabtaaiaaiaaiaaiaaGaaiabuabvabwabxabyaadaacaacaacaacaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaaa -aaaaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabacDacDacDacDacDaacaacaacaacaacaacakxakyakdakjakzakAakBakCakDakEakFakGakwabqaaKabAaaeaSfaSfaSfaSfaSfaamaacaUNaWeaWdaWfaWgaUNaUNaUNaUNaUNaVDaWTaWvaWlaWmaWnaUQaacaacaapacaacruEHceCaapaacaacaacacHabKaapaSraSraSraSraSraSraTcaafaafaadabLaaGabMabNabOabPabQabRabSabTabNabUaadabVabVabWaadaacaacaacaacaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaaa -aaaaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabacIacJacKacLacLacDaacaacaacaacaacaacacqakHakIakjakJakKakBakLakjakMakNakOabBabCabnaaRaaeaWPaWPaSfaSfaSfaamaacaUNaWoaWqaWtaVNaVSaUVaUWaWxaUYaWkaPfaUQaUQaUQaUQaUQaacaacaapacaacruEHadWaapaacaacaacacPabKacQacQacQacQacRacyacyaTdaTeacyaadackaaiabuaadaadaadaadaadaadaadaadaadaadabVabWaclaadaacaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaaa -aaaaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabacIacJacVacKacVacDaacaacaacaacaacaacacqacqakPakQakkakRakSakTakMakUacqacqabXabYabnabZaaeaamaamaamaamaamaamacWaUNaUNaUNaUNaVJaWsaVmahyaVoaWhaXcaXbaTracWacWacWacWaapaapaapacXacYfIHadWaapaacaacaacadbadcachaddachachadeadffYAaTfadgadhaadacvabNacwaadacxacyacyacyacyaczacyacyacAacBabVacCaadaacaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaaa -aaaaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabacIadiaabadjacKacDaacaacaacaacaacaacaacacqacqakVakQakWakWakXakYacqacqabnabnabnabnaaRabnacWacWacWacWacWacWacWacWacWacWaWiaWiaUNaUNaUNaUNaUNaTraTraTracWacWadkcneadmadnadnadoadptRhukBaapaacaacaacaacaacaacaacaacaacaadadradradsadtacyaadaadaadaadaadacyaadaadaduaduaduaduaduaduaduaduaduaduaacaacaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaaa -aaaaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabacIadiaabadjadvacDaacaacaacaacaacaacaacaacacqacqakZakQakMalaakxacqaacaacaacaacabnaaRabnacWacWacWacWacWacWacWacWadwadxadxadxadxacWacWacWacWacWacWacWacWadyadzadzadAadAadBadCadDmFgmDIaapaacaacaacaacaacaacaacaacaacaadaaGaaGadGadtacyacSadHadIaTgadKadJadJadJadLadLadLadLadLadMadLadLadNaduaacaacaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaaa -aaaaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabacIacJadOacJacDacDaacaacaacaacaacaacaacaacaacacqacqalbalcacqacqaacaacaacaacaacabnacmabnacWacWacWacWacWacWadQadxadRadxadxadxadSacWacWacWacWacWacWacWadTadladUadVaccaccadWaccacctRhrjEaapaacaacadYadYadYaacaacaacaacaadaaGaaGadGadZadfadfdQjadfadfadfadfadfadfaecaecaecaedaeeaeeaeeaeeaefaduaacaacaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaaa -aaaaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabacDacDacDacDacDaacaacaacaacaacaacaacaacaacaacacqacqacqacqaacaacaacaacaacaacabnabBabnacWacWacWacWacWadxadxadxaehadxadxadxadxacWacWacWacWacWacWacWaeiadVadVaccaccaccaejaekaeloIfukBaapaacaacadYaenadYaacaacaacaacaadaeoaaGaaGaepaeqacygPaaetaXoaadaadaadaadaduaevaewaexaeyaezaeAaeeaefaduaacaacaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaaa -aaaaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacabnabnabnacWacWacWacWacWacWadxadxadxaeBadxadxacWacWacWacWacWacWacWaapaeCaeDaeEaeFaeGaapaeHadYadYiJjpGtadYadYadYadYaeKadYadYadYadYadYadYadYadYadYadYadYwBkaOQadYadYadYaThaThaThaduaeOaePaeQaeRaeSaeTaeeaefaduaacaacaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaaa -aaaaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacahoahoahoahoahoacWacWacWacWadxaeUadxadxadxacWacWacWacWacWacWacWacWaapaeVaeWaeXaeXaeYaapaeZadYafakDhpUxalvafeaffafgafhafiafjafkaffaflafmafnafoacUafpalGrGtldxaftafuadYaacaZtaThaduafvpeOnTppeOafyafzaeeaefaduaacaacaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaaa -aaaaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacahoahoahpahqahqahoahoahoacWacWacWadxadxadxacWacWacWacWacWacWacWacWacWaapaapaapaapaapaapaapafAadYacscZoxUzafLafGafGafGafGafGafGafGafHafGafGafGafGafGafGafIlkNnQXafLafMadYanyanyaeNaZaafvcHqafNcHqaXTafOaeeaefaduaacaacaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaaa -aaaaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacahoahqahqahrahrahrahsahoahoahoacWacWacWacWacWacWacWacWacWacWacWacWacWaapafPaldafRafRafSafTafUadYafVafWafXafYafYafYafYagkagkagkagkaiWapBagkagkagkagkagkagkagkcImafGuoLadYanyanyanyaXKagbpeOhNHpeOafyafOaeeaefaduaacaacaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaaa -aaaaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacahoahoahrahrahrahsahsahsahsahsahoahoahoahoahoahoacWacWacWacWaapaapaapaapaapagdageageageageageageadYktWisiksZagiagjagjagjaglaglaglaglanxanKanKanKanKanKanKanKanKmLQeXRmaZadYadYadYanyaduagnagoagpagqagrafzaeeaefaduaacaacaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaaa -aaaaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacahoahsahsahsahsahsahsahsahsahsahsahCahsahrahqahoahoahDaleahDahDagKagLagMagNagsageagtagtageaguaguadYaRVaggaghagvagwagwagwaglanzapgaplapUanKaoaaocaoeaofaphapkanKiwngDWagzagAaenadYanyaduagBagCagcaeeagEafOaeeaefaduaacaacaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaaa -aaaaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacahoahsahsahsahsaijahsahsahsahsahsahsahsahrahqahqalfalgalhaliahDagZahaagZahbagFageagtagtageageageadYagGaggaghagvagwagwagwaglapVapWaXwarpanKapmapnapoapRapYapZanKpbfafGagHadYaduaduaduaduaduaduagcaeeagIagJaeeaefaduaacaacaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaaa -aaaaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacahoahoaljahsahsahsahsahsahsahsahsahsahsahrahrahqalfalkallahEahDahaahmahnaapagOageagtagPageagQagQadYafVaggaghaXRaXSaXSaXSaglaXJaXLaobafwanKaqHaqIaqKaiCapYarnanKpbfafGagRagSagTagTagUagVagTagWalLamcaeeaeeaeeaefaduaacaacaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaaa -aaaaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacahDahDahDahDahDalmalnaloahsahsahsahrahrahrahrahsaijahsahrahralfalpalqalrahDadYadYadYadYahIahcagtagtaheahfaTMahgamfaggaghagvagwagwagwaobaobaobaobapSanKaqHaXHamAarraOLasaanKfGkafGancadYaduaduaduaduaduaduafxahkadLadLadLahladuaacaacaacaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaaa -aaaaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacahDalsaloahsahsanoalhaloahsahsahsahrahqahqahrahsahsahsahsahralfaluaoJahFahDahGaiyacfacgalwalxaiDalMahHaiAalyahtahuaggaghagvagwagwagwaobapTaXlaYgaXGanKanKasbanKanKanKanKanKuinafGafMadYahvahwahxaSFahzaduahAahBaduaduaduaduaduaduaduaacaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaaa -aaaaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacahDalzalAaljaljalBalCalDahrahrahsahrahralEahrahsahsahsahrahralfalFahDahDahDaqqalHaizalIvvJtXArimpvhalOalPpkvahJahKahLahMagvagwagwagwaobaXUaYiaXYaYaaYnaOoaYraobanvapXaXpaXruinafGahNadYaauahPajuajuahQaieahSahTamPahPahVahXaigaiJaduaacaacaacaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaaa -aaaaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacahDalRalSalSalSalSalTalUahqahrahsahsahrahrahrahsahsahsahrahqalfalValWalQalYalZamaadYadYppIageageageageageknhahYahZagmaiaagvagwagwagwaobatuaYzaqyaYsaYLaYJaYTaobaXsaXEbaUaXroWHafGaibadYaauahPajuajuaidaiuaicahUaoEaiLaoEaiLaoEaiMaduaduaduaacaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaaa -aaaaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacahDaREalSalSalSalSalTalUahqahrahrahsahsahsahsahsahsahsahrahqalfamgamhalXamjamkamladYajxajNaFBaikailaimailailadYafVagmaiaagvagwagwagwaobaOwapSaobaobaobaobaobaobaVuaZlaXFaXroWHafGafMadYahRainaipaisaiqaduaifahTaiLahWairaitaiLahPahPaioaduaacaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaaa -aaaaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacahDalzamoampampamqamramsahqahqahrahrahrahrahrahsahsahrahrahqalfamtahDadYadYadYadYadYaixdrHomxiBnaiBaiBqNonKPadYaSUagmaiaagvagwagwagwaobaXUavqagDaXNaXNaZeaXvaZgalJaXrawJaXruinafGaiEaiFaduaduaiIaduaduaduaiHahTaiLahWaiKamNaiLajtahPamQaduaacaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaaa -aaaaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacahDalsaloahsahsanoalhamsahqahqahqahqahqahqahrahrahrahrahqahqalfamBahDaiOaiBaiPaiPaiPaiQaiRaiSaiTaiUaiVamyailaiFafVagmaiaagvagwascascascasdasfascascascaZhaXwaZfaXtapWaZQaZgprGxkHajaajdlVdlVdxIcdQddQdajcaiXaiYaoEamRaitaneaiLajtahPahPaduaacaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaaa -aaaaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacahDahDahDahDahDalmamCamsahqahqahqamDahqahqahqahqahqahqahqahqahqahoahDajeajfaiTajfajgajhajiajjailailajkaUEajfajlajmajnaiaagvagwascasOasPasQaYAavjaYNascbaHbaIbaIbaIbaIbaJbaKxPUafGajSaYdaYdaYdaYdaYdaYdaYdajsajJaoEaoEaiGaiZaoEaoEajTamOajTajTajTaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaaa -aaaaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacahoamEahqamFahqahoahoahqahqahqahqamDahqahoahoahoahoaiiajwajxajxajxajyajyajyajyajzajAaWQaWRailadYafVajBaiaagvagwbaNaSxaWVaWWaWXaWYaWZascaZgaZgaZgbaObaLbaOaZgvmOafGaZNaYdajZaqTaYjaQWaYeaXyaYlaroapiaYmaihaivaqYaoEarqaYpaYqaYWajTaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaaa +aaaaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaacaabaacaacaacaabaabaabaabaabaacaacaacaabaabaabaacaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaacaacaacaacaacaacaacaabaabaabaabaabaabaabaabaabaacaabaabaabaabaabaabaabaabaabaabaabaabaabaacaacaacaacaacaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaaa +aaaaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaabaacabEabEabEabFabFabEabEaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaacaafaafaafaafaafaafaafaafaagaagaagaagaagaagaahaahaahaahaahaahaahaahaahaahaabaabaabaabaacaacaacaacaacaacaacaacaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaaa +aaaaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabajMajMajMajMajMajMaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacabEacdamiaToaTpaasabEaTraTsaTsaTraTraTsaTsaTraTtaTtaTtaTtaTtaacaacaacaacaacaacaafaajacTaaoaaqaafaaraaraagaavaaAaaCaaDaayaahaaFaaHaaIaaQaaEaahaaWaeuaahaKiaKiaKiaKiaKvaKvaKvaKvaacaacaacaacaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaaa +aaaaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabajMajMajMajMajMajMaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacabEaTuaTvaTwaTxaTyaTzaTCaTDaTEaTFaTGaTHaTLaTQaTtaTIaTJaPmaTtaacaacaNzaNzaNzaNzaNzaOxaaoaDXaOSaafaPzaPCaagaPDaPEaOuaPGaPHaahaPIaQKaQKaPJaPMaahaPKaPLaahaPPaPQaPRaPSaaJaPUaPVaKvaacaacaacaacaacaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaaa +aaaaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabajMajMajMajMajMaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacabEaPlaTPaTNaTOaUeaTzaTRaTSaaXaTUaTWaPeaTVaUpaTYaTZaTTacNaTtaacaacaNzaPWayfaPYaNzaPZaaoaQaaQbaQcaQdaafaagaQeaQfaQgaQhaQiaahaQjaQkaPNaPOaQlaQmaQnaQoaahaQraQsaQsaQsaQsaQsaQtaKvaacaacaacaacaacapqaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaaa +aaaaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabajMajMajMajMajMaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaamaamaamaamaamaamaacaacaUcaUcaUcabEabEaUfaUgaWEaWFaUhaTXaVfaTraTraUkaUkaUlaUkaUkaUkaUkaaSaaSacDaacaNzahhaQvaQwaQxaQyaQzaRoaQAaQBaQCaQDaagaQEaQFaQGaQHaQIaahaQJaQKaQLaQMaQNaahaQOaQPaahaQQaQsaQsaQsaQsaQsaQRaKvaacaacaacaacaacapqaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaaa +aaaaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabajMajMaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaamaSfaSfaSfaSfaamaacaacaUcaUmaUnaUoabEabEaTzaTzaTzabEaViaUraUsaUtaUkaUuaUvaUwaUxaUyaUkaWGaUqaanaanaanaanaanaapaapaapaapaapaapaQpaQTaQqaagaQVaPtaQXaQYaQZaahaPnaRbaRcaRdaQSaahaRfaRgaahaRhaQsaRiaRjaRkaQsaRlaKvaacaacaacaacapqapqaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaaa +aaaaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabajMajMaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaamaSfaSfaSfaSfaamaacaacaUcaWyaUAaUBaUCaUDaVqaUFafdaUMaUPaVaaPhaUtaUkaUHaUIafqaUIaPgaUkaUqaUqaanaawaaxahdaazaRmaaBaRnaRpaRqaROaRraRsaRtaagaRuaRuaRvaRuaRuaahaahaRwaRxaRwaahaahaahaahaahaRyaQsaRzaRAaRBaQsaRCaKvaacaacaacaacapqapqaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaaa +aaaaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabajMajMaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaamaSfaSfaSfaSfaamaacaacaUcaUzaULaWzaWAaUNaUNaUNaUNaUNaTAaWuaUQaUQaUQaUQaUQaURaURaURaURaUSaUSaanaaLaaMaaNaanaaOaaPaRDaapaapaapaPpaRFaRGaRHaRIaRJaRKaRLaRMaQUaRNaSSaRPaQaaQbaQbaRQaPoaKvaRSaQsaRTaQsaRUaQsahiaKvaacaacaacaacapqapqaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaaa +aaaaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacacqacqacOacqaacaacaacaacaacaacabnabnaaeaSfaSfaSfaSfaamaamaacaUNaUNaUNaUNaUNaUNaBGaUWaUdaUYaVTaVZaVbaVcaVdaVefXUoXNoXNuchbkWkYWexxaUTaUUaaTaaUaaVaRWaRXaRYaapaRZacDaSaaSbaSbaScaaoaaoaaoaSdaSeaTbaaoaaoaSgaShaShaShaShaSiaSjaSkaSlaSmaSnaSoaQsaSpaSqaacaacaacaacapqapqaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaaa +aaaaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacacqacqajvajFacqacqaacaacaacaacaacabnaalaaeaSfaSfaSfaSfaSfaamaacaUNaVgaVhaUOaVkaTBaVmahyaVoaUiaWBaWwaUQajKaVvaVwaUQaUSaUSaUSaUSaUSmsIaapaanaanaanaanabraaPaapaSraSraSraSsaSsaSraStaaoaSuaSvaPqaSwaReaSbaSbaSbaSbaTjaTkaSvaSyaKvaSzaSAaSBaSCaPaaSDaSEaSqaacaacaacaacapqaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaaa +aaaaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabajMaacaacaacaacaacaacaacaacaacaacaacaacaacacqacqakcakdakeakfacqacqaacabnabnabnabnaakaataTiaWraSfaSfaSfaamaacaUNaVxaVyaUXaVCaUNaUNaUNaUNaUNaUGaWCaUQaVFaVGaVHaUQaacaacaapabDaVsolzabGabHacQabIaapaapabKaapaPraSGqaWaSIaSJaSraSKaaoahOaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaadaKvaKvaKvaacaacaacaacapqaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaaa +aaaaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabajMaacaacaacaacaacaacaacaacaacaacaacaacacqacqakhakiakjakjakkaklacqacqabnakmaknabnaaRaaeaSfaSfaSfaSfaSfaamaacaUNakgaVjaVKaVLaVMaBGaUWaVpaUYaWjaWDaUQaVPaPjaVPaUQaacaacaapacaacbkuwqfLaceachabJachaciacjaapaSMaSNaSOaSPaSQaSRaTlaTmaSTaadaaYaaZabaabbabcabdabeabfabgabhabiabjaadabkablabmaadaacaacaacaacaacaacaacapqaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaaa +aaaaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabajMaacaacaacaacaacaacaacaacaacaacaacacqacqajUakpakqakraksaktakuakvacqacqabpaknabnaboaaeaSfaSfaSfaSfaSfaamaacaUNaVQaVJaVRaVzaUZaVUaPiaVWaVlaWOakoaUQaWaaWbaWcaUQaacaacaapacaacruEHadWaapaacaacaacactacuaapaltaSVaSWaSXaSYaSraPsaTaaTnaadabsaaiaaiaaGabtaaiaaiaaiaaiaaGaaiabuabvabwabxabyaadaacaacaacaacaacaacaacaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaaa +aaaaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabacDacDacDacDacDaacaacaacaacaacaacakxakyakdakjakzakAakBakCakDakEakFakGakwabqaaKabAaaeaSfaSfaSfaSfaSfaamaacaUNaWeaWdaWfaWgaUNaUNaUNaUNaUNaVDaWTaWvaWlaWmaWnaUQaacaacaapacaacruEHceCaapaacaacaacacHabKaapaSraSraSraSraSraSraTcaafaafaadabLaaGabMabNabOabPabQabRabSabTabNabUaadabVabVabWaadaacaacaacaacaacaacaacaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaaa +aaaaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabacIacJacKacLacLacDaacaacaacaacaacaacacqakHakIakjakJakKakBakLakjakMakNakOabBabCabnaaRaaeaWPaWPaSfaSfaSfaamaacaUNaWoaWqaWtaVNaVSaUVaUWaWxaUYaWkaPfaUQaUQaUQaUQaUQaacaacaapacaacruEHadWaapaacaacaacacPabKacQacQacQacQacRacyacyaTdaTeacyaadackaaiabuaadaadaadaadaadaadaadaadaadaadabVabWaclaadaacaacaacaacaacaacaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaaa +aaaaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabacIacJacVacKacVacDaacaacaacaacaacaacacqacqakPakQakkakRakSakTakMakUacqacqabXabYabnabZaaeaamaamaamaamaamaamacWaUNaUNaUNaUNaVJaWsaVmahyaVoaWhaXcaXbaTracWacWacWacWaapaapaapacXacYfIHadWaapaacaacaacadbadcachaddachachadeadffYAaTfadgadhaadacvabNacwaadacxacyacyacyacyaczacyacyacAacBabVacCaadaacaacaacaacaacaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaaa +aaaaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabacIadiaabadjacKacDaacaacaacaacaacaacaacacqacqakVakQakWakWakXakYacqacqabnabnabnabnaaRabnacWacWacWacWacWacWacWacWacWacWaWiaWiaUNaUNaUNaUNaUNaTraTraTracWacWadkcneadmadnadnadoadptRhukBaapaacaacaacaacaacaacaacaacaacaadadradradsadtacyaadaadaadaadaadacyaadaadaduaduaduaduaduaduaduaduaduaduaacaacaacaacaacaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaaa +aaaaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabacIadiaabadjadvacDaacaacaacaacaacaacaacaacacqacqakZakQakMalaakxacqaacaacaacaacabnaaRabnacWacWacWacWacWacWacWacWadwadxadxadxadxacWacWacWacWacWacWacWacWadyadzadzadAadAadBadCadDmFgmDIaapaacaacaacaacaacaacaacaacaacaadaaGaaGadGadtacyacSadHadIaTgadKadJadJadJadLadLadLadLadLadMadLadLadNaduaacaacaacaacaacaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaaa +aaaaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabacIacJadOacJacDacDaacaacaacaacaacaacaacaacaacacqacqalbalcacqacqaacaacaacaacaacabnacmabnacWacWacWacWacWacWadQadxadRadxadxadxadSacWacWacWacWacWacWacWadTadladUadVaccaccadWaccacctRhrjEaapaacaacadYadYadYaacaacaacaacaadaaGaaGadGadZadfadfdQjadfadfadfadfadfadfaecaecaecaedaeeaeeaeeaeeaefaduaacaacaacaacaacaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaaa +aaaaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabacDacDacDacDacDaacaacaacaacaacaacaacaacaacaacacqacqacqacqaacaacaacaacaacaacabnabBabnacWacWacWacWacWadxadxadxaehadxadxadxadxacWacWacWacWacWacWacWaeiadVadVaccaccaccaejaekaeloIfukBaapaacaacadYaenadYaacaacaacaacaadaeoaaGaaGaepaeqacygPaaetaXoaadaadaadaadaduaevaewaexaeyaezaeAaeeaefaduaacaacaacaacaacaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaaa +aaaaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacabnabnabnacWacWacWacWacWacWadxadxadxaeBadxadxacWacWacWacWacWacWacWaapaeCaeDaeEaeFaeGaapaeHadYadYiJjpGtadYadYadYadYaeKadYadYadYadYadYadYadYadYadYadYadYwBkaOQadYadYadYaThaThaThaduaeOaePaeQaeRaeSaeTaeeaefaduaacaacaacaacaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaaa +aaaaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacahoahoahoahoahoacWacWacWacWadxaeUadxadxadxacWacWacWacWacWacWacWacWaapaeVaeWaeXaeXaeYaapaeZadYafakDhpUxalvafeaffafgafhafiafjafkaffaflafmafnafoacUafpalGrGtldxaftafuadYaacaZtaThaduafvpeOnTppeOafyafzaeeaefaduaacaacaacaacaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaaa +aaaaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacahoahoahpahqahqahoahoahoacWacWacWadxadxadxacWacWacWacWacWacWacWacWacWaapaapaapaapaapaapaapafAadYacscZoxUzafLafGafGafGafGafGafGafGafHafGafGafGafGafGafGafIlkNnQXafLafMadYanyanyaeNaZaafvcHqafNcHqaXTafOaeeaefaduaacaacaacaacaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaaa +aaaaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacahoahqahqahrahrahrahsahoahoahoacWacWacWacWacWacWacWacWacWacWacWacWacWaapafPaldafRafRafSafTafUadYafVafWafXafYafYafYafYagkagkagkagkaiWapBagkagkagkagkagkagkagkcImafGuoLadYanyanyanyaXKagbpeOhNHpeOafyafOaeeaefaduaacaacaacaacaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaaa +aaaaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacahoahoahrahrahrahsahsahsahsahsahoahoahoahoahoahoacWacWacWacWaapaapaapaapaapagdageageageageageageadYktWisiksZagiagjagjagjaglaglaglaglanxanKanKanKanKanKanKanKanKmLQeXRmaZadYadYadYanyaduagnagoagpagqagrafzaeeaefaduaacaacaacaacaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaaa +aaaaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacahoahsahsahsahsahsahsahsahsahsahsahCahsahrahqahoahoahDaleahDahDagKagLagMagNagsageagtagtageaguaguadYaRVaggaghagvagwagwagwaglanzapgaplapUanKaoaaocaoeaofaphapkanKiwngDWagzagAaenadYanyaduagBagCagcaeeagEafOaeeaefaduaacaacaacaacaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaaa +aaaaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacahoahsahsahsahsaijahsahsahsahsahsahsahsahrahqahqalfalgalhaliahDagZahaagZahbagFageagtagtageageageadYagGaggaghagvagwagwagwaglapVapWaXwarpanKapmapnapoapRapYapZanKpbfafGagHadYaduaduaduaduaduaduagcaeeagIagJaeeaefaduaacaacaacaacaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaaa +aaaaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacahoahoaljahsahsahsahsahsahsahsahsahsahsahrahrahqalfalkallahEahDahaahmahnaapagOageagtagPageagQagQadYafVaggaghaXRaXSaXSaXSaglaXJaXLaobafwanKaqHaqIaqKaiCapYarnanKpbfafGagRagSagTagTagUagVagTagWalLamcaeeaeeaeeaefaduaacaacaacaacaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaaa +aaaaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacahDahDahDahDahDalmalnaloahsahsahsahrahrahrahrahsaijahsahrahralfalpalqalrahDadYadYadYadYahIahcagtagtaheahfaTMahgamfaggaghagvagwagwagwaobaobaobaobapSanKaqHaXHamAarraOLasaanKfGkafGancadYaduaduaduaduaduaduafxahkadLadLadLahladuaacaacaacaacaacaacaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaaa +aaaaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacahDalsaloahsahsanoalhaloahsahsahsahrahqahqahrahsahsahsahsahralfaluaoJahFahDahGaiyacfacgalwalxaiDalMahHaiAalyahtahuaggaghagvagwagwagwaobapTaXlaYgaXGanKanKasbanKanKanKanKanKuinafGafMadYahvahwahxaSFahzaduahAahBaduaduaduaduaduaduaduaacaacaacaacaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaaa +aaaaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacahDalzalAaljaljalBalCalDahrahrahsahrahralEahrahsahsahsahrahralfalFahDahDahDaqqalHaizalIvvJtXArimpvhalOalPpkvahJahKahLahMagvagwagwagwaobaXUaYiaXYaYaaYnaOoaYraobanvapXaXpaXruinafGahNadYaauahPajuajuahQaieahSahTamPahPahVahXaigaiJaduaacaacaacaacaacaacaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaaa +aaaaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacahDalRalSalSalSalSalTalUahqahrahsahsahrahrahrahsahsahsahrahqalfalValWalQalYalZamaadYadYppIageageageageageknhahYahZagmaiaagvagwagwagwaobatuaYzaqyaYsaYLaYJaYTaobaXsaXEbaUaXroWHafGaibadYaauahPajuajuaidaiuaicahUaoEaiLaoEaiLaoEaiMaduaduaduaacaacaacaacaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaaa +aaaaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacahDaREalSalSalSalSalTalUahqahrahrahsahsahsahsahsahsahsahrahqalfamgamhalXamjamkamladYajxajNaFBaikailaimailailadYafVagmaiaagvagwagwagwaobaOwapSaobaobaobaobaobaobaVuaZlaXFaXroWHafGafMadYahRainaipaisaiqaduaifahTaiLahWairaitaiLahPahPaioaduaacaacaacaacaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaaa +aaaaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacahDalzamoampampamqamramsahqahqahrahrahrahrahrahsahsahrahrahqalfamtahDadYadYadYadYadYaixdrHomxiBnaiBaiBqNonKPadYaSUagmaiaagvagwagwagwaobaXUavqagDaXNaXNaZeaXvaZgalJaXrawJaXruinafGaiEaiFaduaduaiIaduaduaduaiHahTaiLahWaiKamNaiLajtahPamQaduaacaacaacaacaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaaa +aaaaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacahDalsaloahsahsanoalhamsahqahqahqahqahqahqahrahrahrahrahqahqalfamBahDaiOaiBaiPaiPaiPaiQaiRaiSaiTaiUaiVamyailaiFafVagmaiaagvagwascascascasdasfascascascaZhaXwaZfaXtapWaZQaZgprGxkHajaajdlVdlVdxIcdQddQdajcaiXaiYaoEamRaitaneaiLajtahPahPaduaacaacaacaacaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaaa +aaaaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacahDahDahDahDahDalmamCamsahqahqahqamDahqahqahqahqahqahqahqahqahqahoahDajeajfaiTajfajgajhajiajjailailajkaUEajfajlajmajnaiaagvagwascasOasPasQaYAavjaYNascbaHbaIbaIbaIbaIbaJbaKxPUafGajSaYdaYdaYdaYdaYdaYdaYdajsajJaoEaoEaiGaiZaoEaoEajTamOajTajTajTaacaacaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaaa +aaaaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacahoamEahqamFahqahoahoahqahqahqahqamDahqahoahoahoahoaiiajwajxajxajxajyajyajyajyajzajAaWQaWRailadYafVajBaiaagvagwbaNaSxaWVaWWaWXaWYaWZascaZgaZgaZgbaObaLbaOaZgvmOafGaZNaYdajZaqTaYjaQWaYeaXyaYlaroapiaYmaihaivaqYaoEarqaYpaYqaYWajTaacaacaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaaa aaaaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacahoahoahoamGahoahoahoahoahqahoahoahoahoahoajyajyajyaiiajwajxajyajyajyajyajyajyajyaiiamyaiiaiiadYagGajBaiaagvagwascaXdaXeaXfaXgaXhaXjascaXSaXSbaPaXSaXSagwadYokdafGaZPaYdaYtaYuaXuaYvaYwaYxaYyaroapiamSaYBajHanfaoEaPuaYpaYEaYFajTajMajMajMajMajMajMajMajMajMaabaabaabaabaabaabaabaabaabaabaaa aaaaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacakbakbakbakbakbajyajyajyajyajxajyajyaiiahoahoahoaiiaiiaiiaiiaiiaiiaiiaiiajNajyajyajyajyajyajyajyajyaiiaWSaiiajGadYafBajBaiaagvagwascaYXaXmaXnaXxaXzaXMascaXSagwagwagwaXSagwadYxiEafFajCaYdaYGaYHaroaXyaXkaYHaYlaroaoEaoEaPTajXaYKajWaYYaYMaYOaYPajTajMajMajMajMajMajMajMajMajMaabaabaabaabaabaabaabaabaabaabaaa aaaaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacakaakbakbakbakbakaabzamHabzabzabzamHailailabzajyaiiaiiaiiamIamJaiiaiiaiiajNajyajyajyajyajyajyajyajyaiiamyadYamKadYajQajBaiaagvagwbaNaSxaXOaXPaXQaWYaSxascaXSagwagwagwaXSagwadYaXAafGajIaYQaYRaYSaroaroaroaroaYUaYVaZVaoEaZWaZcamLaoEaYZaYZaYZaYZajTaUaajMajMajMajMajMajMajMajMaabaabaabaabaabaabaabaabaabaabaaa @@ -2822,8 +2822,8 @@ aaaaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaacaacaa aaaaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacakaakaakaakaakaaDGakaakbakbakaaDHaDIaDraATaDJaBXaDKaDLaCaaCbaAXaAXaAXaAXaAXaAXaBcaBcaBcaBcaBcaAXaAXaAXaAXaAXaAXazlaDMaDNaDNaDNaDNaDOaDNaDMaDMaDMaDNaDMaDMaDMaDNaDPazQaDQarZaacaacaacaacaacaacaacaacaacaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaaa aaaaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaabaabaabaabaabaabaabaacaacaacaacaacaacaacaacakaaDRakaakaakaakaaDSaDSaDTaATaATaDUaDUaOpaDWaAUaAXaAXaAXaAXaAXaAXaAXaAXaAXaAXaAXaAXaAXaAXaAXaAXaAXazlaDNaDNaDYaDZaEaaEaaEaaEbaEcaDMaEdaEeaEfaEeaEearZaEgaEharZaacaacaacaacaacaacaacaacaacaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaaa aaaaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaacaacaacaacaacaacaacaacaacaacaabaabaabaabaabaabaabaabaabaacaacaacapqapqapqapqaEiaEjaEkaElaEmakaaEnaEoaEpaEqaATaATaATaATaATaATaAXaAXaAXaAXaAXaAXaAXaAXaAXaAXaAXaAXaAXaAXaAXaAXaAXazlarZarZarZarZarZarZaErarZarZaEsarZarZarZarZarZarZaEgaDMarZaacaacaacaacaacaacaacaacaacaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaaa -aaaaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaacapqapqapqapqaEiaEtaEuaEvaEwakaaExaEoaEyaEzaEAaEBaECaEDaEoazlaAXaAXaAXaAXaAXaAXaAXaAXaAXaAXaAXaAXaAXaAXaAXaAXaAXazlaEEaEFaBOarZaEGaEHaCHaEIarZaDNaEJarZaacaacacDacGaEgaEKarZaacaacaacaacaacaacaacaacaacaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaaa -aaaaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabapqapqapqakaaELaEMaENaEOakaaEPaEnaEQaEQaEQaEQaEQaEpaEzazlaERaESaAXaAXaAXaAXaAXaAXaAXaAXaAXaAXaAXaAXaAXaESaETazlaEUaEVaCHaCHaCHaBOaEVaCHarZaDMaEWarZaacaacacDarZazQaDNarZaacaacaacaacaacaacaacaacaacaacaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaaa +aaaaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaacapqapqapqapqaEiaEtaEuaEvaEwakaaExaEoaEyaEzaEAaEBaECaEDaEoazlaAXaAXaAXaAXaAXaAXaAXaAXaAXaAXaAXaAXaAXaAXaAXaAXaAXazlaEEaEFaBOarZaEGaEHaCHaEIarZaDNaEJarZaacaacarZacGaEgaEKarZaacaacaacaacaacaacaacaacaacaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaaa +aaaaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabapqapqapqakaaELaEMaENaEOakaaEPaEnaEQaEQaEQaEQaEQaEpaEzazlaERaESaAXaAXaAXaAXaAXaAXaAXaAXaAXaAXaAXaAXaAXaESaETazlaEUaEVaCHaCHaCHaBOaEVaCHarZaDMaEWarZaacaacarZarZazQaDNarZaacaacaacaacaacaacaacaacaacaacaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaaa aaaaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaEiaEXaEYaEYaEZakaaDSaDSaDSaDSaDSaDSaDSaEpaEpavpaFbaFbaFcaESaESaESaESaESaESaESaESaESaESaESaFdaFbaFbazlaFeaBOaFfarZaFgaCHaFhaBOarZaDMaFiarZaacaacaacarZaFjaFkarZaacaacaacaacaacaacaacaacaacaacaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaaa aaaaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaEiaFlaFmaFnaFoakaaFpaFqaFraFsaDSaFtaDSaEpaFuazlaOXaFbaFbaFvaFbaFbaFbaFbaFxaFbaFbaFbaFbaFbaFbaFbaFbazlaFyaBOaFzarZaFAaCHaBOaBOarZaDNaOmarZaacaacarZarZarZazQarZaacaacaacaacaacaacaacaacaacaacaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaaa aaaaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabacDacDacDaabaabaabaabaabaabaabaabaabaabaabaabaabakaakaakaakaakaakaaFCaFDaFDaFEaDSaFFaDSaEQaFGazlazlazlazlazlazlazlazlazlazlazlazlazlazlazlazlazlazlazlarZarZarZarZarZarZarZarZarZaEsarZarZarZarZarZaFHarZazQarZaacaacaacaacaacaacaacaacaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaaa diff --git a/maps/tether/tether-03-surface3.dmm b/maps/tether/tether-03-surface3.dmm index 88a80c2668..e17f27cb27 100644 --- a/maps/tether/tether-03-surface3.dmm +++ b/maps/tether/tether-03-surface3.dmm @@ -74,7 +74,7 @@ "abv" = (/obj/structure/table/glass,/obj/item/roller,/obj/item/roller{pixel_y = 8},/obj/item/roller{pixel_y = 16},/obj/effect/floor_decal/borderfloorwhite,/obj/effect/floor_decal/corner/paleblue/border,/obj/machinery/atmospherics/unary/vent_pump/on{dir = 1},/obj/machinery/light,/obj/machinery/button/remote/blast_door{desc = "A remote control-switch for shutters."; id = "surfmed"; name = "Medical Shutters"; pixel_x = 0; pixel_y = -24; req_access = list(5)},/turf/simulated/floor/tiled/white,/area/tether/surfacebase/medical/triage) "abw" = (/obj/effect/floor_decal/borderfloorwhite{dir = 8},/obj/effect/floor_decal/corner/paleblue/border{dir = 8},/obj/machinery/camera/network/medbay{dir = 4; icon_state = "camera"},/obj/structure/table/glass,/obj/machinery/recharger,/turf/simulated/floor/tiled/white,/area/tether/surfacebase/medical/triage) "abx" = (/obj/structure/table,/obj/machinery/atmospherics/unary/vent_pump/on{dir = 8},/obj/structure/extinguisher_cabinet{pixel_y = 30},/obj/random/action_figure,/obj/random/cigarettes,/turf/simulated/floor/plating,/area/maintenance/lower/medsec_maintenance) -"aby" = (/turf/simulated/wall/r_wall,/area/maintenance/lower/xenoflora) +"aby" = (/obj/machinery/alarm{pixel_y = 25},/turf/simulated/floor/tiled,/area/rnd/xenobiology/xenoflora_storage) "abz" = (/obj/structure/lattice,/obj/machinery/door/firedoor/glass,/obj/machinery/atmospherics/pipe/zpipe/down/supply,/obj/machinery/atmospherics/pipe/zpipe/down/scrubbers,/obj/structure/cable/green{d1 = 32; d2 = 2; icon_state = "32-2"},/turf/simulated/open,/area/tether/surfacebase/surface_three_hall) "abA" = (/obj/effect/floor_decal/borderfloor{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals7,/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 4},/obj/machinery/light{dir = 1},/obj/effect/floor_decal/corner/lightgrey/border{dir = 1},/turf/simulated/floor/tiled,/area/tether/surfacebase/surface_three_hall) "abB" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/railing,/obj/structure/grille,/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/plating,/area/tether/surfacebase/surface_three_hall) @@ -112,10 +112,10 @@ "ach" = (/obj/machinery/alarm{dir = 8; icon_state = "alarm0"; pixel_x = 24},/obj/structure/bed/chair/comfy/black{dir = 1},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 9},/turf/simulated/floor/wood,/area/tether/surfacebase/reading_room) "aci" = (/obj/machinery/light/small{dir = 1},/turf/simulated/floor/wood,/area/tether/surfacebase/reading_room) "acj" = (/turf/simulated/wall,/area/rnd/outpost/xenobiology/outpost_hallway) -"ack" = (/obj/machinery/door/airlock/glass_research{name = "Xenoflora Research"; req_access = list(55)},/obj/machinery/door/firedoor,/turf/simulated/floor/tiled,/area/rnd/xenobiology/xenoflora) -"acl" = (/turf/simulated/floor/tiled,/area/maintenance/lower/xenoflora) +"ack" = (/obj/structure/window/reinforced{dir = 1},/obj/machinery/door/firedoor,/obj/structure/grille,/obj/structure/window/reinforced/full,/obj/structure/window/reinforced,/obj/structure/window/reinforced{dir = 4},/obj/structure/window/reinforced{dir = 8; health = 1e+006},/turf/simulated/floor/tiled,/area/rnd/xenobiology/xenoflora_storage) +"acl" = (/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 4},/turf/simulated/floor/tiled,/area/rnd/xenobiology/xenoflora_storage) "acm" = (/obj/structure/sink{dir = 4; icon_state = "sink"; pixel_x = 11; pixel_y = 0},/obj/effect/floor_decal/borderfloor{dir = 5},/obj/effect/floor_decal/corner/lime/border{dir = 5},/turf/simulated/floor/tiled,/area/tether/surfacebase/public_garden_three) -"acn" = (/obj/machinery/portable_atmospherics/canister/nitrogen,/obj/effect/floor_decal/industrial/warning{dir = 1},/turf/simulated/floor/tiled,/area/tether/surfacebase/outside/outside3) +"acn" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 10; icon_state = "intact-scrubbers"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 6},/turf/simulated/floor/tiled,/area/rnd/xenobiology/xenoflora_storage) "aco" = (/obj/structure/railing{dir = 1; icon_state = "railing0"},/obj/effect/floor_decal/borderfloor{dir = 1; icon_state = "borderfloor"; pixel_y = 0},/obj/effect/floor_decal/corner/red/border{dir = 1},/obj/effect/floor_decal/borderfloor/corner2{dir = 1},/obj/effect/floor_decal/corner/red/bordercorner2{dir = 1},/turf/simulated/floor/tiled,/area/tether/surfacebase/security/upperhall) "acp" = (/obj/effect/floor_decal/borderfloor{dir = 8; icon_state = "borderfloor"; pixel_x = 0},/obj/effect/floor_decal/corner/red/border{dir = 8},/obj/effect/floor_decal/borderfloor/corner2{dir = 10},/obj/effect/floor_decal/corner/red/bordercorner2{dir = 10},/obj/machinery/light{dir = 8; icon_state = "tube1"; pixel_y = 0},/turf/simulated/floor/tiled,/area/tether/surfacebase/security/upperhall) "acq" = (/turf/simulated/floor/tiled,/area/tether/surfacebase/security/breakroom) @@ -153,7 +153,7 @@ "acW" = (/obj/machinery/atmospherics/pipe/cap/visible/scrubbers,/turf/simulated/floor/plating,/area/vacant/vacant_site/gateway) "acX" = (/obj/structure/cable/green{dir = 1; icon_state = "0-1"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/cap/visible/supply,/turf/simulated/floor/plating,/area/vacant/vacant_site/gateway) "acY" = (/obj/effect/floor_decal/spline/plain{dir = 5},/obj/structure/flora/pottedplant/stoutbush,/turf/simulated/floor/tiled/freezer,/area/crew_quarters/pool) -"acZ" = (/obj/machinery/portable_atmospherics/canister/nitrogen,/obj/effect/floor_decal/industrial/warning{dir = 5; icon_state = "warning"},/turf/simulated/floor/tiled,/area/tether/surfacebase/outside/outside3) +"acZ" = (/obj/machinery/atmospherics/unary/vent_pump/on{dir = 8},/turf/simulated/floor/tiled,/area/rnd/xenobiology/xenoflora_storage) "ada" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/plating,/area/maintenance/lower/medsec_maintenance) "adb" = (/obj/machinery/light_switch{pixel_x = 25},/obj/structure/cable/green{d1 = 1; d2 = 8; icon_state = "1-8"},/turf/simulated/floor/plating,/area/maintenance/lower/medsec_maintenance) "adc" = (/obj/machinery/vending/medical{dir = 4},/obj/effect/floor_decal/borderfloorwhite{dir = 9},/obj/effect/floor_decal/corner/paleblue/border{dir = 9},/turf/simulated/floor/tiled/white,/area/tether/surfacebase/medical/triage) @@ -236,8 +236,8 @@ "aeB" = (/obj/effect/floor_decal/borderfloor{dir = 4},/obj/effect/floor_decal/corner/red/border{dir = 4},/obj/machinery/camera/network/security{dir = 8; icon_state = "camera"},/turf/simulated/floor/tiled,/area/tether/surfacebase/security/common) "aeC" = (/obj/machinery/light_switch{dir = 8; pixel_x = 28},/turf/simulated/floor/tiled/dark,/area/tether/surfacebase/security/armory) "aeD" = (/obj/effect/floor_decal/techfloor{dir = 8},/obj/item/weapon/storage/box/lights/mixed,/obj/structure/table/steel,/obj/random/tech_supply,/turf/simulated/floor/tiled/techfloor/grid,/area/maintenance/lower/medsec_maintenance) -"aeE" = (/turf/simulated/open/virgo3b,/area/rnd/xenobiology/xenoflora) -"aeF" = (/turf/simulated/open/virgo3b,/area/maintenance/lower/xenoflora) +"aeE" = (/obj/machinery/hologram/holopad,/turf/simulated/floor/tiled,/area/rnd/xenobiology/xenoflora_storage) +"aeF" = (/obj/machinery/door/window/brigdoor/southright{icon_state = "rightsecure"; dir = 4; req_access = list(55); req_one_access = list(47)},/obj/machinery/door/window/brigdoor/southright{icon_state = "rightsecure"; dir = 8; req_access = list(55); req_one_access = list(47)},/obj/machinery/door/firedoor,/turf/simulated/floor/tiled,/area/rnd/xenobiology/xenoflora_storage) "aeG" = (/turf/simulated/wall,/area/tether/surfacebase/medical/lobby) "aeH" = (/obj/structure/closet/secure_closet/medical3,/obj/effect/floor_decal/borderfloorwhite{dir = 8},/obj/effect/floor_decal/corner/paleblue/border{dir = 8},/obj/machinery/status_display{pixel_x = -32},/obj/machinery/light{dir = 8},/turf/simulated/floor/tiled/white,/area/tether/surfacebase/medical/triage) "aeI" = (/obj/effect/floor_decal/industrial/outline/yellow,/obj/structure/closet/secure_closet/security,/obj/item/device/holowarrant,/obj/machinery/light,/turf/simulated/floor/tiled/dark,/area/tether/surfacebase/security/armory) @@ -252,12 +252,12 @@ "aeR" = (/obj/structure/bookcase,/turf/simulated/floor/wood,/area/tether/surfacebase/reading_room) "aeS" = (/obj/structure/bookcase,/obj/machinery/light/small,/turf/simulated/floor/wood,/area/tether/surfacebase/reading_room) "aeT" = (/obj/structure/table/glass,/obj/item/weapon/paper_bin,/obj/item/device/radio/intercom{dir = 2; pixel_y = -24},/turf/simulated/floor/wood,/area/tether/surfacebase/reading_room) -"aeU" = (/obj/structure/window/reinforced{dir = 1},/obj/machinery/door/firedoor,/obj/structure/grille,/obj/structure/window/reinforced/full,/obj/structure/window/reinforced,/obj/structure/window/reinforced{dir = 4},/obj/structure/window/reinforced{dir = 8; health = 1e+006},/turf/simulated/floor/tiled,/area/rnd/xenobiology/xenoflora) +"aeU" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 5; icon_state = "intact-scrubbers"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 5; icon_state = "intact-supply"},/turf/simulated/floor/tiled,/area/rnd/xenobiology/xenoflora_storage) "aeV" = (/obj/structure/table/glass,/obj/item/device/flashlight/lamp/green,/obj/machinery/atmospherics/unary/vent_pump/on{dir = 1},/turf/simulated/floor/wood,/area/tether/surfacebase/reading_room) -"aeW" = (/obj/machinery/door/window/brigdoor/southright{icon_state = "rightsecure"; dir = 4; req_access = list(55); req_one_access = list(47)},/obj/machinery/door/window/brigdoor/southright{icon_state = "rightsecure"; dir = 8; req_access = list(55); req_one_access = list(47)},/obj/machinery/door/firedoor,/turf/simulated/floor/tiled,/area/rnd/xenobiology/xenoflora) +"aeW" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled,/area/rnd/xenobiology/xenoflora_storage) "aeX" = (/obj/structure/railing{dir = 4},/obj/effect/floor_decal/corner_oldtile/green{dir = 9},/turf/simulated/floor/tiled/steel_dirty/virgo3b,/area/tether/surfacebase/outside/outside3) "aeY" = (/obj/structure/railing{dir = 8},/obj/effect/floor_decal/corner_oldtile/green{dir = 6},/turf/simulated/floor/tiled/steel_dirty/virgo3b,/area/tether/surfacebase/outside/outside3) -"aeZ" = (/mob/living/simple_mob/animal/passive/chicken,/turf/simulated/floor/grass,/area/hydroponics/cafegarden) +"aeZ" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 10; icon_state = "intact-scrubbers"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 6},/turf/simulated/floor/grass,/area/hydroponics) "afa" = (/obj/machinery/door/airlock/maintenance/medical{name = "Medical Maintenance Access"; req_access = list(5)},/obj/machinery/door/firedoor/glass,/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/turf/simulated/floor/tiled/techfloor/grid,/area/tether/surfacebase/medical/triage) "afb" = (/obj/effect/floor_decal/borderfloorwhite{dir = 8},/obj/effect/floor_decal/corner/paleblue/border{dir = 8},/obj/structure/cable/green{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/turf/simulated/floor/tiled/white,/area/tether/surfacebase/medical/triage) "afc" = (/turf/simulated/wall/r_wall,/area/tether/surfacebase/security/processing) @@ -292,7 +292,7 @@ "afF" = (/obj/machinery/disposal,/obj/effect/floor_decal/borderfloorwhite{dir = 9},/obj/effect/floor_decal/corner/paleblue/border{dir = 9},/obj/structure/disposalpipe/trunk{dir = 4},/obj/machinery/status_display{pixel_y = 30},/obj/machinery/camera/network/medbay{dir = 4; icon_state = "camera"},/turf/simulated/floor/tiled/white,/area/tether/surfacebase/medical/lobby) "afG" = (/obj/structure/grille,/obj/structure/window/reinforced/full,/obj/machinery/door/firedoor,/turf/simulated/floor/plating,/area/tether/surfacebase/reading_room) "afH" = (/obj/machinery/door/airlock{name = "Reading Room"},/obj/machinery/door/firedoor/glass,/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled/steel_grid,/area/tether/surfacebase/reading_room) -"afI" = (/obj/effect/floor_decal/corner/lime/bordercorner{dir = 8},/turf/simulated/floor/tiled,/area/hydroponics) +"afI" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 10; icon_state = "intact-scrubbers"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 10},/turf/simulated/floor/tiled,/area/rnd/xenobiology/xenoflora_storage) "afJ" = (/turf/simulated/wall/r_wall,/area/tether/surfacebase/reading_room) "afK" = (/turf/simulated/wall,/area/rnd/staircase/thirdfloor) "afL" = (/obj/machinery/atmospherics/pipe/zpipe/up,/obj/machinery/atmospherics/pipe/zpipe/up/scrubbers,/obj/machinery/atmospherics/pipe/zpipe/up/supply,/obj/machinery/light/small{dir = 4; pixel_y = 0},/obj/structure/cable{icon_state = "16-0"},/obj/structure/cable{icon_state = "0-2"},/obj/effect/decal/cleanable/dirt,/obj/structure/disposalpipe/up{dir = 8},/turf/simulated/floor/plating,/area/rnd/research_storage) @@ -307,7 +307,7 @@ "afU" = (/obj/machinery/door/airlock/security{name = "Security Processing"; req_access = list(1)},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/door/firedoor,/turf/simulated/floor/tiled/steel_grid,/area/tether/surfacebase/security/processing) "afV" = (/obj/structure/table/reinforced,/obj/item/device/radio/headset/headset_sec,/obj/item/device/radio/headset/headset_sec,/turf/simulated/floor/tiled/dark,/area/tether/surfacebase/security/armory) "afW" = (/obj/effect/floor_decal/techfloor{dir = 8},/obj/structure/table/steel,/obj/item/weapon/reagent_containers/food/drinks/cup{desc = "Taste liberty"; name = "Cup of Liber-tea"},/turf/simulated/floor/tiled/techfloor/grid,/area/maintenance/lower/medsec_maintenance) -"afX" = (/obj/machinery/atmospherics/unary/heater{dir = 2; icon_state = "heater"},/obj/effect/floor_decal/corner/green{dir = 10},/obj/effect/floor_decal/borderfloor{dir = 1},/obj/effect/floor_decal/industrial/danger{dir = 1},/turf/simulated/floor/tiled,/area/rnd/xenobiology/xenoflora) +"afX" = (/obj/structure/catwalk,/turf/simulated/floor/tiled/eris/steel/techfloor_grid,/area/rnd/xenobiology/xenoflora_storage) "afY" = (/obj/machinery/atmospherics/pipe/manifold/visible,/obj/machinery/meter,/turf/simulated/floor/tiled,/area/rnd/xenobiology/xenoflora_storage) "afZ" = (/obj/machinery/atmospherics/pipe/simple/visible{dir = 9},/turf/simulated/floor/tiled,/area/rnd/xenobiology/xenoflora_storage) "aga" = (/obj/structure/table/glass,/obj/item/weapon/backup_implanter{pixel_y = 8},/obj/item/weapon/backup_implanter{pixel_y = -8},/obj/item/weapon/backup_implanter,/obj/effect/floor_decal/borderfloorwhite{dir = 8},/obj/effect/floor_decal/corner/paleblue/border{dir = 8},/obj/machinery/power/apc{cell_type = /obj/item/weapon/cell/super; dir = 8; name = "west bump"; pixel_x = -30},/obj/structure/cable/green,/turf/simulated/floor/tiled/white,/area/tether/surfacebase/medical/triage) @@ -328,7 +328,7 @@ "agp" = (/obj/effect/floor_decal/borderfloor{dir = 9},/obj/effect/floor_decal/corner/lightgrey/border{dir = 9},/obj/effect/floor_decal/borderfloor/corner2{dir = 1},/obj/effect/floor_decal/corner/lightgrey/bordercorner2{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 6},/turf/simulated/floor/tiled,/area/tether/surfacebase/surface_three_hall) "agq" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/disposalpipe/segment,/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 9},/turf/simulated/floor/tiled,/area/tether/surfacebase/surface_three_hall) "agr" = (/obj/effect/floor_decal/borderfloor{dir = 5},/obj/effect/floor_decal/corner/lightgrey/border{dir = 5},/obj/effect/floor_decal/borderfloor/corner2{dir = 4},/obj/effect/floor_decal/corner/lightgrey/bordercorner2{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 9},/turf/simulated/floor/tiled,/area/tether/surfacebase/surface_three_hall) -"ags" = (/obj/machinery/portable_atmospherics/canister/oxygen,/turf/simulated/floor/tiled,/area/tether/surfacebase/outside/outside3) +"ags" = (/obj/machinery/door/firedoor,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/door/airlock/glass_research{name = "Xenoflora Research"; req_access = list(77); req_one_access = list(77)},/turf/simulated/floor/tiled,/area/rnd/xenobiology/xenoflora_storage) "agt" = (/obj/effect/floor_decal/steeldecal/steel_decals10{dir = 4},/obj/effect/floor_decal/corner_oldtile/green/full,/turf/simulated/floor/tiled/steel_dirty/virgo3b,/area/tether/surfacebase/outside/outside3) "agu" = (/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 1},/obj/effect/floor_decal/corner_oldtile/green{dir = 10},/turf/simulated/floor/tiled/steel_dirty/virgo3b,/area/tether/surfacebase/outside/outside3) "agv" = (/obj/effect/floor_decal/steeldecal/steel_decals10{dir = 1},/obj/effect/floor_decal/corner_oldtile/green/full{dir = 4},/turf/simulated/floor/tiled/steel_dirty/virgo3b,/area/tether/surfacebase/outside/outside3) @@ -337,11 +337,11 @@ "agy" = (/obj/machinery/atmospherics/pipe/simple/visible/supply,/obj/machinery/atmospherics/pipe/simple/visible/scrubbers,/obj/machinery/atmospherics/pipe/simple/visible,/obj/structure/cable{icon_state = "1-2"},/obj/effect/decal/cleanable/dirt,/obj/effect/floor_decal/rust,/turf/simulated/floor/plating,/area/rnd/research_storage) "agz" = (/obj/structure/cable{icon_state = "4-8"},/obj/effect/floor_decal/borderfloor{dir = 8},/obj/effect/floor_decal/corner/lightgrey/border{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 6},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 5},/obj/structure/disposalpipe/segment{dir = 2; icon_state = "pipe-c"},/turf/simulated/floor/tiled,/area/tether/surfacebase/surface_three_hall) "agA" = (/obj/structure/extinguisher_cabinet{dir = 4; icon_state = "extinguisher_closed"; pixel_x = -30},/obj/effect/floor_decal/borderfloor{dir = 8},/obj/effect/floor_decal/corner/lightgrey/border{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 6},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 5},/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled,/area/tether/surfacebase/surface_three_hall) -"agB" = (/obj/machinery/portable_atmospherics/hydroponics,/obj/machinery/atmospherics/portables_connector,/obj/effect/floor_decal/borderfloor{dir = 1},/obj/effect/floor_decal/industrial/danger{dir = 1},/turf/simulated/floor/tiled,/area/rnd/xenobiology/xenoflora) +"agB" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/tiled,/area/rnd/xenobiology/xenoflora_storage) "agC" = (/obj/structure/lattice,/obj/machinery/atmospherics/pipe/zpipe/down{dir = 1},/obj/machinery/atmospherics/pipe/zpipe/down/scrubbers{dir = 1},/obj/machinery/atmospherics/pipe/zpipe/down/supply{dir = 1},/obj/structure/cable{icon_state = "32-1"},/obj/structure/disposalpipe/down,/obj/machinery/door/firedoor/glass,/turf/simulated/open,/area/rnd/research_storage) "agD" = (/obj/structure/disposalpipe/segment,/obj/structure/table/steel,/obj/item/weapon/storage/bag/circuits/basic,/obj/machinery/alarm{dir = 4; icon_state = "alarm0"; pixel_x = -22; pixel_y = 0},/obj/effect/decal/cleanable/dirt,/obj/effect/floor_decal/rust,/turf/simulated/floor/plating,/area/rnd/research_storage) "agE" = (/obj/effect/floor_decal/borderfloor{dir = 8},/obj/effect/floor_decal/corner/lightgrey/border{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 6},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 5},/obj/machinery/light{dir = 8; icon_state = "tube1"},/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled,/area/tether/surfacebase/surface_three_hall) -"agF" = (/obj/machinery/portable_atmospherics/hydroponics,/obj/machinery/atmospherics/portables_connector,/obj/effect/floor_decal/borderfloor{dir = 1},/obj/effect/floor_decal/industrial/danger{dir = 1},/obj/machinery/light{dir = 1},/turf/simulated/floor/tiled,/area/rnd/xenobiology/xenoflora) +"agF" = (/obj/machinery/atmospherics/unary/freezer{dir = 2; icon_state = "freezer"},/obj/effect/floor_decal/corner/green{dir = 10},/obj/effect/floor_decal/borderfloor{dir = 9},/obj/effect/floor_decal/industrial/danger{dir = 9},/turf/simulated/floor/tiled,/area/rnd/xenobiology/xenoflora_storage) "agG" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 4},/turf/simulated/floor/tiled,/area/tether/surfacebase/security/common) "agH" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled,/area/tether/surfacebase/security/common) "agI" = (/obj/effect/floor_decal/borderfloor{dir = 1},/obj/machinery/door/firedoor/glass/hidden/steel{dir = 2},/obj/effect/floor_decal/corner/lightgrey/border{dir = 1},/turf/simulated/floor/tiled,/area/tether/surfacebase/surface_three_hall) @@ -380,7 +380,7 @@ "ahp" = (/obj/structure/grille,/obj/structure/window/reinforced/full,/obj/machinery/door/firedoor,/obj/structure/window/reinforced{dir = 8},/turf/simulated/floor/plating,/area/rnd/workshop) "ahq" = (/obj/structure/closet/secure_closet/personal,/obj/effect/floor_decal/spline/plain{dir = 1},/obj/machinery/atmospherics/unary/vent_pump/on,/turf/simulated/floor/tiled/freezer,/area/crew_quarters/pool) "ahr" = (/obj/structure/flora/pottedplant/stoutbush,/obj/effect/floor_decal/techfloor{dir = 9},/turf/simulated/floor/tiled/techfloor,/area/rnd/workshop) -"ahs" = (/obj/machinery/portable_atmospherics/hydroponics,/obj/machinery/atmospherics/portables_connector,/obj/effect/floor_decal/borderfloor{dir = 5},/obj/effect/floor_decal/industrial/danger{dir = 5},/turf/simulated/floor/tiled,/area/rnd/xenobiology/xenoflora) +"ahs" = (/obj/machinery/atmospherics/unary/heater{dir = 2; icon_state = "heater"},/obj/effect/floor_decal/corner/green{dir = 10},/obj/effect/floor_decal/borderfloor{dir = 1},/obj/effect/floor_decal/industrial/danger{dir = 1},/turf/simulated/floor/tiled,/area/rnd/xenobiology/xenoflora_storage) "aht" = (/obj/machinery/space_heater,/obj/effect/floor_decal/techfloor,/turf/simulated/floor/tiled/techfloor,/area/crew_quarters/panic_shelter) "ahu" = (/obj/structure/cable/green{icon_state = "4-8"},/obj/effect/floor_decal/steeldecal/steel_decals4,/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 10},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4; icon_state = "intact-scrubbers"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled,/area/tether/surfacebase/security/common) "ahv" = (/obj/structure/cable/green{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/structure/cable/green{icon_state = "4-8"},/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/corner/red/border,/turf/simulated/floor/tiled,/area/tether/surfacebase/security/processing) @@ -432,8 +432,8 @@ "aip" = (/obj/machinery/vending/snack{dir = 4},/obj/effect/floor_decal/corner/lightgrey{dir = 10},/obj/effect/floor_decal/corner/lightgrey{dir = 5},/obj/effect/floor_decal/steeldecal/steel_decals9,/obj/effect/floor_decal/steeldecal/steel_decals9{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals9{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals9{dir = 8},/turf/simulated/floor/tiled/monotile,/area/tether/surfacebase/surface_three_hall) "aiq" = (/obj/machinery/portable_atmospherics/hydroponics/soil,/obj/machinery/camera/network/civilian,/turf/simulated/floor/grass,/area/tether/surfacebase/public_garden_three) "air" = (/obj/effect/floor_decal/borderfloor{dir = 1},/obj/effect/floor_decal/corner/lightgrey/border{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals7,/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 4},/turf/simulated/floor/tiled,/area/tether/surfacebase/surface_three_hall) -"ais" = (/obj/structure/cable/green{d1 = 2; d2 = 4; icon_state = "2-4"},/turf/simulated/floor/tiled,/area/rnd/xenobiology/xenoflora) -"ait" = (/obj/machinery/portable_atmospherics/canister/oxygen,/obj/effect/floor_decal/industrial/warning{dir = 4; icon_state = "warning"},/turf/simulated/floor/tiled,/area/tether/surfacebase/outside/outside3) +"ais" = (/obj/machinery/atmospherics/portables_connector,/obj/effect/floor_decal/borderfloor{dir = 1},/obj/effect/floor_decal/industrial/danger{dir = 1},/obj/machinery/camera/network/research,/obj/machinery/alarm{pixel_y = 22},/turf/simulated/floor/tiled,/area/rnd/xenobiology/xenoflora_storage) +"ait" = (/obj/effect/floor_decal/borderfloor{dir = 1},/obj/effect/floor_decal/industrial/danger{dir = 1},/turf/simulated/floor/tiled,/area/rnd/xenobiology/xenoflora_storage) "aiu" = (/obj/structure/table/steel,/obj/item/device/integrated_electronics/debugger{pixel_x = -5; pixel_y = 0},/obj/item/device/integrated_electronics/wirer{pixel_x = 5; pixel_y = 0},/obj/machinery/atmospherics/unary/vent_pump/on,/obj/effect/floor_decal/techfloor{dir = 1},/turf/simulated/floor/tiled/techfloor,/area/rnd/workshop) "aiv" = (/obj/random/junk,/obj/machinery/alarm{pixel_y = 22},/turf/simulated/floor/plating,/area/tether/surfacebase/surface_three_hall) "aiw" = (/obj/structure/table/steel,/obj/item/device/integrated_circuit_printer,/obj/effect/floor_decal/techfloor{dir = 1},/turf/simulated/floor/tiled/techfloor,/area/rnd/workshop) @@ -468,9 +468,9 @@ "aiZ" = (/obj/machinery/door/window/brigdoor/southright{req_access = list(55); req_one_access = list(47)},/turf/simulated/floor/tiled,/area/rnd/xenobiology/xenoflora_storage) "aja" = (/obj/machinery/computer/crew{dir = 4},/obj/effect/floor_decal/borderfloorwhite{dir = 8},/obj/effect/floor_decal/corner/paleblue/border{dir = 8},/obj/machinery/requests_console{announcementConsole = 1; department = "Medical Department"; departmentType = 3; name = "Medical RC"; pixel_x = -30; pixel_y = 0},/turf/simulated/floor/tiled/white,/area/tether/surfacebase/medical/lobby) "ajb" = (/obj/effect/floor_decal/borderfloor{dir = 8},/obj/effect/floor_decal/corner/lightgrey/border{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 6},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 5},/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled,/area/tether/surfacebase/surface_three_hall) -"ajc" = (/obj/machinery/atmospherics/pipe/simple/visible,/obj/machinery/meter,/turf/simulated/floor/tiled,/area/rnd/xenobiology/xenoflora) -"ajd" = (/obj/machinery/atmospherics/pipe/simple/visible,/obj/machinery/meter,/obj/effect/floor_decal/borderfloor{dir = 4},/obj/effect/floor_decal/industrial/danger{dir = 4},/turf/simulated/floor/tiled,/area/rnd/xenobiology/xenoflora) -"aje" = (/obj/machinery/portable_atmospherics/canister/sleeping_agent,/obj/effect/floor_decal/industrial/warning{dir = 4; icon_state = "warning"},/turf/simulated/floor/tiled,/area/tether/surfacebase/outside/outside3) +"ajc" = (/obj/machinery/portable_atmospherics/hydroponics,/obj/machinery/atmospherics/portables_connector,/obj/effect/floor_decal/borderfloor{dir = 1},/obj/effect/floor_decal/industrial/danger{dir = 1},/turf/simulated/floor/tiled,/area/rnd/xenobiology/xenoflora_storage) +"ajd" = (/obj/machinery/portable_atmospherics/hydroponics,/obj/machinery/atmospherics/portables_connector,/obj/effect/floor_decal/borderfloor{dir = 1},/obj/effect/floor_decal/industrial/danger{dir = 1},/obj/machinery/light{dir = 1},/turf/simulated/floor/tiled,/area/rnd/xenobiology/xenoflora_storage) +"aje" = (/obj/machinery/portable_atmospherics/hydroponics,/obj/machinery/atmospherics/portables_connector,/obj/effect/floor_decal/borderfloor{dir = 5},/obj/effect/floor_decal/industrial/danger{dir = 5},/turf/simulated/floor/tiled,/area/rnd/xenobiology/xenoflora_storage) "ajf" = (/obj/effect/floor_decal/steeldecal/steel_decals6{dir = 1},/turf/simulated/floor/tiled,/area/tether/surfacebase/surface_three_hall) "ajg" = (/obj/effect/floor_decal/borderfloor{dir = 1},/obj/effect/floor_decal/corner/paleblue/border{dir = 1},/obj/effect/floor_decal/borderfloor/corner2{dir = 4},/obj/effect/floor_decal/corner/paleblue/bordercorner2{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals7,/turf/simulated/floor/tiled,/area/tether/surfacebase/surface_three_hall) "ajh" = (/obj/machinery/light{dir = 1},/obj/effect/floor_decal/borderfloor{dir = 1},/obj/effect/floor_decal/corner/paleblue/border{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals7,/turf/simulated/floor/tiled,/area/tether/surfacebase/surface_three_hall) @@ -487,9 +487,9 @@ "ajs" = (/obj/machinery/portable_atmospherics/powered/scrubber/huge/stationary,/obj/effect/floor_decal/techfloor{dir = 5},/turf/simulated/floor/tiled/techfloor,/area/crew_quarters/panic_shelter) "ajt" = (/obj/effect/floor_decal/borderfloor/corner{dir = 1},/obj/effect/floor_decal/corner/lime/bordercorner{dir = 1},/turf/simulated/floor/tiled,/area/tether/surfacebase/public_garden_three) "aju" = (/obj/machinery/atmospherics/unary/vent_pump/on{dir = 4},/turf/simulated/floor/tiled,/area/tether/surfacebase/public_garden_three) -"ajv" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/yellow{dir = 4},/obj/machinery/door/firedoor/glass,/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/door/airlock/glass_research{name = "Xenoflora Research"; req_access = list(55)},/turf/simulated/floor/tiled/steel_grid,/area/rnd/xenobiology/xenoflora_storage) -"ajw" = (/obj/machinery/atmospherics/pipe/simple/hidden/yellow{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 6},/turf/simulated/floor/tiled,/area/rnd/xenobiology/xenoflora_storage) -"ajx" = (/obj/machinery/atmospherics/pipe/simple/hidden/yellow{dir = 4},/obj/machinery/atmospherics/pipe/manifold/hidden/yellow,/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/tiled,/area/rnd/xenobiology/xenoflora_storage) +"ajv" = (/obj/machinery/portable_atmospherics/canister/nitrogen,/obj/effect/floor_decal/industrial/warning{dir = 1},/turf/simulated/floor/tiled,/area/rnd/xenobiology/xenoflora_storage) +"ajw" = (/obj/machinery/portable_atmospherics/canister/nitrogen,/obj/effect/floor_decal/industrial/warning{dir = 5; icon_state = "warning"},/turf/simulated/floor/tiled,/area/rnd/xenobiology/xenoflora_storage) +"ajx" = (/obj/machinery/atmospherics/pipe/simple/visible,/obj/machinery/meter,/turf/simulated/floor/tiled,/area/rnd/xenobiology/xenoflora_storage) "ajy" = (/obj/structure/disposalpipe/segment{dir = 4; icon_state = "pipe-c"},/obj/structure/table/steel,/obj/effect/decal/cleanable/dirt,/obj/effect/decal/cleanable/dirt,/obj/effect/floor_decal/rust,/obj/item/device/gps/science,/turf/simulated/floor/plating,/area/rnd/research_storage) "ajz" = (/obj/structure/flora/tree/sif,/turf/simulated/floor/outdoors/grass/sif/virgo3b,/area/tether/surfacebase/surface_three_hall) "ajA" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/hologram/holopad,/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/tiled,/area/tether/surfacebase/surface_three_hall) @@ -497,8 +497,8 @@ "ajC" = (/obj/machinery/atmospherics/pipe/simple/hidden/yellow{dir = 4},/obj/machinery/atmospherics/pipe/manifold/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/tiled,/area/rnd/xenobiology/xenoflora_storage) "ajD" = (/obj/machinery/atmospherics/pipe/simple/hidden/yellow{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/hologram/holopad,/turf/simulated/floor/tiled,/area/rnd/xenobiology/xenoflora_storage) "ajE" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/window/reinforced/tinted{dir = 8; icon_state = "twindow"},/obj/structure/window/reinforced/tinted{dir = 4; icon_state = "twindow"},/obj/structure/grille,/obj/structure/window/reinforced/full,/obj/machinery/door/firedoor,/turf/simulated/floor/plating,/area/rnd/research_storage) -"ajF" = (/obj/structure/window/reinforced,/obj/machinery/atmospherics/portables_connector{dir = 1},/turf/simulated/floor/tiled,/area/rnd/xenobiology/xenoflora) -"ajG" = (/obj/structure/window/reinforced,/obj/machinery/atmospherics/portables_connector{dir = 1},/obj/effect/floor_decal/borderfloor{dir = 4},/obj/effect/floor_decal/industrial/danger{dir = 4},/obj/effect/floor_decal/borderfloor/corner2{dir = 5},/obj/machinery/status_display{pixel_x = 32; pixel_y = 0},/turf/simulated/floor/tiled,/area/rnd/xenobiology/xenoflora) +"ajF" = (/obj/machinery/atmospherics/pipe/simple/visible,/obj/machinery/meter,/obj/effect/floor_decal/borderfloor{dir = 4},/obj/effect/floor_decal/industrial/danger{dir = 4},/turf/simulated/floor/tiled,/area/rnd/xenobiology/xenoflora_storage) +"ajG" = (/obj/structure/catwalk,/obj/machinery/atmospherics/pipe/simple/visible/scrubbers{dir = 6},/turf/simulated/floor/tiled/eris/steel/techfloor_grid,/area/rnd/xenobiology/xenoflora_storage) "ajH" = (/obj/machinery/computer/secure_data,/obj/structure/fireaxecabinet{pixel_y = 30},/turf/simulated/floor/tiled/dark,/area/bridge) "ajI" = (/obj/effect/decal/cleanable/dirt,/obj/structure/disposalpipe/up{dir = 8},/obj/effect/floor_decal/industrial/outline/yellow,/obj/structure/railing{dir = 1},/turf/simulated/floor/plating,/area/rnd/research_storage) "ajJ" = (/obj/machinery/atmospherics/unary/vent_pump/on{dir = 4},/turf/simulated/floor/tiled/dark,/area/tether/surfacebase/security/common) @@ -512,9 +512,9 @@ "ajR" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled,/area/tether/surfacebase/surface_three_hall) "ajS" = (/obj/structure/bed/chair/office/dark,/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/corner/red/border,/obj/effect/landmark/start{name = "Security Officer"},/turf/simulated/floor/tiled,/area/tether/surfacebase/security/frontdesk) "ajT" = (/turf/simulated/wall/r_wall,/area/tether/surfacebase/security/lobby) -"ajU" = (/obj/machinery/portable_atmospherics/canister/carbon_dioxide,/obj/effect/floor_decal/industrial/warning{dir = 4; icon_state = "warning"},/turf/simulated/floor/tiled,/area/tether/surfacebase/outside/outside3) -"ajV" = (/obj/machinery/portable_atmospherics/canister/carbon_dioxide,/turf/simulated/floor/tiled,/area/tether/surfacebase/outside/outside3) -"ajW" = (/obj/machinery/portable_atmospherics/canister/phoron,/obj/effect/floor_decal/industrial/warning{dir = 4; icon_state = "warning"},/turf/simulated/floor/tiled,/area/tether/surfacebase/outside/outside3) +"ajU" = (/obj/machinery/atmospherics/pipe/simple/visible/scrubbers{dir = 10},/obj/structure/catwalk,/turf/simulated/floor/tiled/eris/steel/techfloor_grid,/area/rnd/xenobiology/xenoflora_storage) +"ajV" = (/obj/machinery/portable_atmospherics/canister/oxygen,/turf/simulated/floor/tiled,/area/rnd/xenobiology/xenoflora_storage) +"ajW" = (/obj/machinery/portable_atmospherics/canister/oxygen,/obj/effect/floor_decal/industrial/warning{dir = 4; icon_state = "warning"},/turf/simulated/floor/tiled,/area/rnd/xenobiology/xenoflora_storage) "ajX" = (/obj/structure/cable/green{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/turf/simulated/floor/tiled,/area/tether/surfacebase/surface_three_hall) "ajY" = (/obj/machinery/atmospherics/pipe/simple/visible{dir = 6; icon_state = "intact"},/obj/machinery/meter,/obj/effect/floor_decal/borderfloor{dir = 8},/obj/effect/floor_decal/corner/mauve/border{dir = 8},/obj/effect/floor_decal/borderfloor/corner2{dir = 8},/obj/effect/floor_decal/corner/mauve/bordercorner2{dir = 8},/turf/simulated/floor/tiled,/area/rnd/xenobiology/xenoflora_storage) "ajZ" = (/obj/structure/table/marble,/obj/effect/floor_decal/corner/grey/diagonal,/obj/machinery/door/firedoor/glass,/turf/simulated/floor/tiled/white,/area/crew_quarters/kitchen) @@ -587,7 +587,7 @@ "alo" = (/turf/simulated/wall/r_wall,/area/tether/surfacebase/surface_three_hall) "alp" = (/obj/machinery/vending/coffee{dir = 4},/obj/machinery/alarm{dir = 4; icon_state = "alarm0"; pixel_x = -22; pixel_y = 0},/turf/simulated/floor/wood,/area/tether/surfacebase/surface_three_hall) "alq" = (/turf/simulated/floor/wood,/area/tether/surfacebase/surface_three_hall) -"alr" = (/obj/machinery/atmospherics/pipe/manifold/visible{dir = 1},/turf/simulated/floor/tiled,/area/rnd/xenobiology/xenoflora) +"alr" = (/obj/structure/window/reinforced,/obj/machinery/atmospherics/portables_connector{dir = 1},/turf/simulated/floor/tiled,/area/rnd/xenobiology/xenoflora_storage) "als" = (/obj/machinery/washing_machine,/obj/effect/floor_decal/techfloor{dir = 8},/obj/machinery/camera/network/civilian{dir = 4},/turf/simulated/floor/tiled/techfloor,/area/crew_quarters/panic_shelter) "alt" = (/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 4},/turf/simulated/floor/tiled/techfloor,/area/crew_quarters/panic_shelter) "alu" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 10},/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/tiled/techfloor,/area/crew_quarters/panic_shelter) @@ -608,7 +608,7 @@ "alJ" = (/obj/machinery/vending/fitness,/turf/simulated/floor/tiled,/area/crew_quarters/pool) "alK" = (/obj/structure/closet/athletic_mixed,/obj/machinery/status_display{pixel_y = 30},/turf/simulated/floor/wood,/area/crew_quarters/recreation_area) "alL" = (/obj/machinery/fitness/punching_bag/clown,/turf/simulated/floor/wood,/area/crew_quarters/recreation_area) -"alM" = (/obj/machinery/atmospherics/pipe/simple/hidden/yellow{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/tiled,/area/rnd/xenobiology/xenoflora) +"alM" = (/obj/structure/window/reinforced,/obj/machinery/atmospherics/portables_connector{dir = 1},/obj/effect/floor_decal/borderfloor{dir = 4},/obj/effect/floor_decal/industrial/danger{dir = 4},/obj/effect/floor_decal/borderfloor/corner2{dir = 5},/obj/machinery/status_display{pixel_x = 32; pixel_y = 0},/turf/simulated/floor/tiled,/area/rnd/xenobiology/xenoflora_storage) "alN" = (/obj/machinery/fitness/heavy/lifter,/turf/simulated/floor/wood,/area/crew_quarters/recreation_area) "alO" = (/obj/structure/closet/athletic_mixed,/obj/structure/extinguisher_cabinet{pixel_x = 27},/obj/item/clothing/shoes/boots/jackboots{desc = "This pair of Jackboots look worn and freshly used. They have several claw markings inside and you can read the initials D and M at the bottom"; name = "Dhaeleena's Jackboots"},/turf/simulated/floor/wood,/area/crew_quarters/recreation_area) "alP" = (/obj/structure/grille,/obj/structure/window/reinforced/full,/obj/machinery/door/firedoor,/obj/structure/window/reinforced,/turf/simulated/floor/plating,/area/tether/surfacebase/surface_three_hall) @@ -641,8 +641,8 @@ "amq" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/cable/green{d1 = 1; d2 = 4; icon_state = "1-4"},/turf/simulated/floor/tiled/freezer,/area/crew_quarters/pool) "amr" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/tiled/freezer,/area/crew_quarters/pool) "ams" = (/obj/machinery/atmospherics/pipe/manifold/hidden/supply,/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/cable/green{d1 = 1; d2 = 4; icon_state = "1-4"},/turf/simulated/floor/tiled/freezer,/area/crew_quarters/pool) -"amt" = (/obj/machinery/atmospherics/pipe/simple/hidden/yellow{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 10},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/tiled,/area/rnd/xenobiology/xenoflora) -"amu" = (/obj/structure/catwalk,/obj/machinery/atmospherics/pipe/simple/visible/scrubbers{dir = 6},/turf/simulated/floor/tiled/eris/steel/techfloor_grid,/area/rnd/xenobiology/xenoflora) +"amt" = (/obj/machinery/atmospherics/pipe/simple/visible/scrubbers,/obj/structure/catwalk,/turf/simulated/floor/tiled/eris/steel/techfloor_grid,/area/rnd/xenobiology/xenoflora_storage) +"amu" = (/obj/structure/catwalk,/obj/machinery/atmospherics/pipe/simple/visible/universal,/turf/simulated/floor/tiled/eris/steel/techfloor_grid,/area/rnd/xenobiology/xenoflora_storage) "amv" = (/turf/simulated/floor/tiled,/area/crew_quarters/pool) "amw" = (/turf/simulated/floor/wood,/area/crew_quarters/recreation_area) "amx" = (/obj/machinery/light_switch{pixel_x = 25},/turf/simulated/floor/wood,/area/crew_quarters/recreation_area) @@ -666,12 +666,12 @@ "amP" = (/obj/effect/floor_decal/spline/plain{dir = 1},/turf/simulated/floor/water/deep/pool,/area/crew_quarters/pool) "amQ" = (/obj/effect/floor_decal/spline/plain{dir = 1},/turf/simulated/floor/water/pool,/area/crew_quarters/pool) "amR" = (/obj/effect/floor_decal/spline/plain{dir = 5},/turf/simulated/floor/water/pool,/area/crew_quarters/pool) -"amS" = (/obj/machinery/atmospherics/pipe/simple/visible/scrubbers{dir = 10},/obj/structure/catwalk,/turf/simulated/floor/tiled/eris/steel/techfloor_grid,/area/rnd/xenobiology/xenoflora) +"amS" = (/obj/machinery/portable_atmospherics/canister/sleeping_agent,/obj/machinery/light{dir = 8; icon_state = "tube1"},/turf/simulated/floor/tiled,/area/rnd/xenobiology/xenoflora_storage) "amT" = (/obj/effect/floor_decal/borderfloor/corner{dir = 4},/obj/effect/floor_decal/corner/mauve/bordercorner{dir = 4},/turf/simulated/floor/tiled,/area/rnd/research/researchdivision) "amU" = (/obj/effect/floor_decal/corner/mauve/border{dir = 9},/turf/simulated/floor/tiled,/area/tether/surfacebase/surface_three_hall) -"amV" = (/obj/machinery/atmospherics/unary/freezer{dir = 2; icon_state = "freezer"},/obj/effect/floor_decal/corner/green{dir = 10},/obj/effect/floor_decal/borderfloor{dir = 9},/obj/effect/floor_decal/industrial/danger{dir = 9},/turf/simulated/floor/tiled,/area/rnd/xenobiology/xenoflora) +"amV" = (/obj/machinery/portable_atmospherics/canister/sleeping_agent,/obj/effect/floor_decal/industrial/warning{dir = 4; icon_state = "warning"},/turf/simulated/floor/tiled,/area/rnd/xenobiology/xenoflora_storage) "amW" = (/obj/structure/window/reinforced,/obj/effect/floor_decal/borderfloor{dir = 8},/obj/effect/floor_decal/industrial/danger{dir = 8},/obj/effect/floor_decal/borderfloor/corner2{dir = 10},/obj/machinery/light{dir = 8; icon_state = "tube1"},/turf/simulated/floor/tiled,/area/rnd/xenobiology/xenoflora_storage) -"amX" = (/obj/machinery/portable_atmospherics/canister/phoron,/turf/simulated/floor/tiled,/area/tether/surfacebase/outside/outside3) +"amX" = (/obj/machinery/atmospherics/unary/vent_pump/on{dir = 4},/turf/simulated/floor/tiled,/area/rnd/xenobiology/xenoflora_storage) "amY" = (/obj/effect/floor_decal/corner/grey/diagonal,/obj/machinery/smartfridge{req_access = list(28)},/obj/machinery/door/firedoor/glass,/turf/simulated/floor/tiled/white,/area/crew_quarters/kitchen) "amZ" = (/obj/machinery/atmospherics/portables_connector{dir = 1},/obj/effect/floor_decal/borderfloor{dir = 10},/obj/effect/floor_decal/corner/mauve/border{dir = 10},/obj/item/device/radio/intercom{dir = 2; pixel_y = -24},/turf/simulated/floor/tiled,/area/rnd/xenobiology/xenoflora_storage) "ana" = (/obj/structure/table/woodentable,/obj/item/clothing/glasses/threedglasses,/obj/machinery/atmospherics/unary/vent_pump/on{dir = 8},/turf/simulated/floor/wood,/area/crew_quarters/recreation_area) @@ -702,9 +702,9 @@ "anz" = (/obj/effect/floor_decal/spline/plain{dir = 4},/turf/simulated/floor/water/pool,/area/crew_quarters/pool) "anA" = (/obj/structure/table/standard,/obj/machinery/cell_charger,/obj/item/weapon/cell/high{charge = 100; maxcharge = 15000},/obj/item/weapon/cell/high{charge = 100; maxcharge = 15000},/obj/machinery/newscaster{pixel_x = 0; pixel_y = 30},/obj/effect/floor_decal/borderfloor{dir = 5},/obj/effect/floor_decal/corner/mauve/border{dir = 5},/turf/simulated/floor/tiled,/area/rnd/research) "anB" = (/obj/effect/floor_decal/steeldecal/steel_decals4,/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 10},/turf/simulated/floor/tiled,/area/crew_quarters/pool) -"anC" = (/obj/machinery/atmospherics/portables_connector{dir = 1},/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/corner/mauve/border,/turf/simulated/floor/tiled,/area/rnd/xenobiology/xenoflora) -"anD" = (/obj/machinery/atmospherics/portables_connector{dir = 1},/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/corner/mauve/border,/obj/machinery/camera/network/research{dir = 1},/turf/simulated/floor/tiled,/area/rnd/xenobiology/xenoflora) -"anE" = (/obj/structure/table/glass,/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/corner/mauve/border,/obj/machinery/atmospherics/unary/vent_pump/on{dir = 1},/obj/machinery/alarm{dir = 1; pixel_y = -22},/turf/simulated/floor/tiled,/area/rnd/xenobiology/xenoflora) +"anC" = (/obj/structure/cable/green{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 8},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 8},/turf/simulated/floor/tiled,/area/rnd/xenobiology/xenoflora_storage) +"anD" = (/obj/machinery/atmospherics/pipe/simple/hidden/yellow{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/tiled,/area/rnd/xenobiology/xenoflora_storage) +"anE" = (/obj/machinery/atmospherics/pipe/simple/hidden/yellow{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 10},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/tiled,/area/rnd/xenobiology/xenoflora_storage) "anF" = (/obj/structure/table/woodentable,/obj/item/weapon/coin/silver,/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 8},/obj/machinery/recharger,/turf/simulated/floor/wood,/area/crew_quarters/recreation_area) "anG" = (/obj/structure/flora/tree/sif,/turf/simulated/floor/outdoors/grass/sif/virgo3b,/area/tether/surfacebase/north_stairs_three) "anH" = (/obj/structure/reagent_dispensers/watertank,/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 4},/turf/simulated/floor/tiled,/area/tether/surfacebase/north_stairs_three) @@ -712,10 +712,10 @@ "anJ" = (/obj/structure/sign/directions/evac,/turf/simulated/wall,/area/tether/surfacebase/north_stairs_three) "anK" = (/obj/machinery/computer/guestpass{dir = 4; pixel_x = -28; pixel_y = 0},/obj/effect/floor_decal/borderfloor{dir = 8},/obj/effect/floor_decal/corner/lightgrey/border{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 6},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 5},/turf/simulated/floor/tiled,/area/tether/surfacebase/surface_three_hall) "anL" = (/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled,/area/tether/surfacebase/surface_three_hall) -"anM" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/tiled/freezer,/area/crew_quarters/freezer) +"anM" = (/obj/effect/floor_decal/borderfloor{dir = 4},/obj/effect/floor_decal/corner/mauve/border{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/yellow{dir = 10},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 10},/obj/machinery/power/apc{dir = 4; name = "east bump"; pixel_x = 28},/obj/structure/cable/green{icon_state = "0-8"},/obj/machinery/light{dir = 4; icon_state = "tube1"},/turf/simulated/floor/tiled,/area/rnd/xenobiology/xenoflora_storage) "anN" = (/obj/effect/floor_decal/corner/grey/diagonal,/obj/structure/cable/green{d1 = 2; d2 = 4; icon_state = "2-4"},/turf/simulated/floor/tiled/white,/area/crew_quarters/kitchen) -"anO" = (/obj/structure/table/glass,/obj/effect/floor_decal/borderfloor{dir = 6},/obj/effect/floor_decal/corner/mauve/border{dir = 6},/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 1},/obj/machinery/light_switch{pixel_x = 25},/turf/simulated/floor/tiled,/area/rnd/xenobiology/xenoflora) -"anP" = (/obj/machinery/atmospherics/portables_connector,/obj/effect/floor_decal/borderfloor{dir = 1},/obj/effect/floor_decal/industrial/danger{dir = 1},/obj/machinery/camera/network/research,/obj/machinery/alarm{pixel_y = 22},/turf/simulated/floor/tiled,/area/rnd/xenobiology/xenoflora) +"anO" = (/obj/structure/catwalk,/obj/machinery/atmospherics/binary/passive_gate{dir = 1},/turf/simulated/floor/tiled/eris/steel/techfloor_grid,/area/rnd/xenobiology/xenoflora_storage) +"anP" = (/obj/machinery/portable_atmospherics/canister/carbon_dioxide,/turf/simulated/floor/tiled,/area/rnd/xenobiology/xenoflora_storage) "anQ" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/door/firedoor/glass,/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/door/airlock/maintenance/int{name = "Fire/Phoron Shelter"; req_one_access = list()},/turf/simulated/floor/tiled/techfloor/grid,/area/crew_quarters/panic_shelter) "anR" = (/obj/effect/floor_decal/techfloor,/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/techfloor,/area/crew_quarters/panic_shelter) "anS" = (/obj/effect/floor_decal/techfloor,/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/tiled/techfloor,/area/crew_quarters/panic_shelter) @@ -730,17 +730,17 @@ "aob" = (/obj/machinery/power/apc{cell_type = /obj/item/weapon/cell/super; dir = 8; name = "west bump"; pixel_x = -30},/obj/structure/cable/green,/turf/simulated/floor/wood,/area/crew_quarters/recreation_area) "aoc" = (/obj/effect/floor_decal/corner/mauve{dir = 10},/obj/effect/floor_decal/corner/mauve{dir = 5},/turf/simulated/floor/tiled,/area/hallway/lower/third_south) "aod" = (/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/wood,/area/crew_quarters/recreation_area) -"aoe" = (/obj/effect/floor_decal/borderfloor{dir = 1},/obj/effect/floor_decal/industrial/danger{dir = 1},/turf/simulated/floor/tiled,/area/rnd/xenobiology/xenoflora) +"aoe" = (/obj/machinery/portable_atmospherics/canister/carbon_dioxide,/obj/effect/floor_decal/industrial/warning{dir = 4; icon_state = "warning"},/turf/simulated/floor/tiled,/area/rnd/xenobiology/xenoflora_storage) "aof" = (/obj/structure/bed/padded,/obj/effect/floor_decal/techfloor{dir = 8},/obj/machinery/vending/wallmed1/public{pixel_x = -28},/turf/simulated/floor/tiled/techfloor,/area/crew_quarters/panic_shelter) "aog" = (/obj/effect/landmark{name = "morphspawn"},/turf/simulated/floor/tiled,/area/tether/surfacebase/north_stairs_three) "aoh" = (/obj/machinery/alarm{dir = 8; icon_state = "alarm0"; pixel_x = 24},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/tiled,/area/tether/surfacebase/north_stairs_three) "aoi" = (/obj/machinery/light{dir = 8; icon_state = "tube1"},/obj/effect/floor_decal/borderfloor{dir = 8},/obj/effect/floor_decal/corner/lightgrey/border{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 6},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 5},/turf/simulated/floor/tiled,/area/tether/surfacebase/surface_three_hall) -"aoj" = (/obj/effect/floor_decal/corner/mauve/border{dir = 1},/turf/simulated/floor/tiled,/area/tether/surfacebase/outside/outside3) +"aoj" = (/obj/effect/floor_decal/corner/mauve/border{dir = 1},/turf/simulated/floor/tiled,/area/tether/surfacebase/surface_three_hall) "aok" = (/turf/simulated/wall/r_wall,/area/hydroponics) "aol" = (/turf/simulated/wall/r_wall,/area/vacant/vacant_shop) "aom" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/door/firedoor/glass,/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/door/airlock/maintenance/int{name = "Fire/Phoron Shelter"},/turf/simulated/floor/tiled/techfloor/grid,/area/vacant/vacant_shop) -"aon" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/tiled,/area/rnd/xenobiology/xenoflora) -"aoo" = (/obj/effect/floor_decal/corner/mauve/border{dir = 5},/turf/simulated/floor/tiled,/area/tether/surfacebase/outside/outside3) +"aon" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/tiled,/area/rnd/xenobiology/xenoflora) +"aoo" = (/obj/effect/floor_decal/corner/mauve/border{dir = 5},/turf/simulated/floor/tiled,/area/tether/surfacebase/surface_three_hall) "aop" = (/turf/simulated/floor/grass,/area/hydroponics) "aoq" = (/obj/structure/bed/chair{dir = 4},/obj/effect/floor_decal/spline/plain{dir = 8},/obj/machinery/computer/security/telescreen/entertainment{desc = "Looks like it's set to history channel, the show is talking about modern aliens. I wonder what else is on?"; icon_state = "frame"; pixel_x = -32; pixel_y = 0},/turf/simulated/floor/tiled/freezer,/area/crew_quarters/pool) "aor" = (/obj/effect/floor_decal/spline/plain{dir = 9},/obj/item/weapon/beach_ball,/turf/simulated/floor/tiled/freezer,/area/crew_quarters/pool) @@ -755,21 +755,21 @@ "aoA" = (/obj/machinery/light_switch{pixel_y = -25},/obj/structure/table/steel,/obj/item/weapon/storage/box/lights/mixed,/obj/item/weapon/storage/box/lights/mixed,/obj/machinery/atmospherics/unary/vent_pump/on{dir = 4},/turf/simulated/floor/tiled,/area/tether/surfacebase/north_stairs_three) "aoB" = (/obj/machinery/light/small,/obj/structure/mopbucket,/obj/item/weapon/reagent_containers/glass/bucket,/obj/item/weapon/mop,/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 9},/turf/simulated/floor/tiled,/area/tether/surfacebase/north_stairs_three) "aoC" = (/obj/machinery/status_display{pixel_x = -32},/obj/effect/floor_decal/borderfloor{dir = 8},/obj/effect/floor_decal/corner/lightgrey/border{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 6},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 5},/turf/simulated/floor/tiled,/area/tether/surfacebase/surface_three_hall) -"aoD" = (/obj/structure/grille,/obj/structure/window/reinforced/full,/obj/machinery/door/firedoor,/obj/structure/window/reinforced{dir = 4},/obj/structure/window/reinforced{dir = 1},/turf/simulated/floor/plating,/area/tether/surfacebase/outside/outside3) +"aoD" = (/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/rnd/xenobiology/xenoflora_storage) "aoE" = (/obj/structure/sign/directions/evac{dir = 1},/turf/simulated/wall/r_wall,/area/vacant/vacant_shop) "aoF" = (/obj/effect/floor_decal/corner/lightgrey{dir = 6},/obj/effect/floor_decal/corner/lightgrey{dir = 9},/obj/machinery/door/firedoor/glass/hidden/steel{dir = 8},/turf/simulated/floor/tiled,/area/tether/surfacebase/surface_three_hall) "aoG" = (/obj/structure/cable{icon_state = "4-8"},/obj/effect/floor_decal/steeldecal/steel_decals6,/obj/structure/disposalpipe/segment{dir = 4; icon_state = "pipe-c"},/turf/simulated/floor/tiled,/area/tether/surfacebase/surface_three_hall) "aoH" = (/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/techfloor,/area/vacant/vacant_shop) "aoI" = (/obj/structure/cable{icon_state = "4-8"},/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/corner/lightgrey/border,/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 8},/obj/effect/floor_decal/borderfloor/corner2,/obj/effect/floor_decal/corner/lightgrey/bordercorner2,/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled,/area/tether/surfacebase/surface_three_hall) "aoJ" = (/turf/simulated/wall,/area/crew_quarters/freezer) -"aoK" = (/obj/structure/closet/secure_closet/hydroponics,/obj/effect/floor_decal/corner/mauve/border{dir = 9},/turf/simulated/floor/tiled,/area/tether/surfacebase/outside/outside3) +"aoK" = (/obj/machinery/atmospherics/binary/pump{dir = 4; name = "Isolation to Waste"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/tiled,/area/rnd/xenobiology/xenoflora_storage) "aoL" = (/obj/structure/table/reinforced,/obj/effect/floor_decal/borderfloor{dir = 9},/obj/effect/floor_decal/corner/mauve/border{dir = 9},/obj/structure/extinguisher_cabinet{dir = 4; icon_state = "extinguisher_closed"; pixel_x = -30},/turf/simulated/floor/tiled,/area/rnd/research/testingrange) -"aoM" = (/obj/machinery/power/apc{dir = 1; name = "north bump"; pixel_x = 0; pixel_y = 24},/turf/simulated/floor/grass,/area/hydroponics) +"aoM" = (/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"},/turf/simulated/floor/grass,/area/hydroponics) "aoN" = (/obj/structure/bed/chair/wood{dir = 8},/obj/structure/extinguisher_cabinet{dir = 8; icon_state = "extinguisher_closed"; pixel_x = 30},/turf/simulated/floor/wood,/area/tether/surfacebase/surface_three_hall) -"aoO" = (/obj/structure/closet/firecloset,/obj/effect/floor_decal/corner/mauve/border{dir = 1},/turf/simulated/floor/tiled,/area/tether/surfacebase/outside/outside3) -"aoP" = (/turf/simulated/floor/tiled,/area/hydroponics) +"aoO" = (/obj/effect/floor_decal/borderfloor{dir = 4},/obj/effect/floor_decal/corner/mauve/border{dir = 4},/obj/machinery/atmospherics/pipe/manifold4w/hidden/yellow,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 5},/turf/simulated/floor/tiled,/area/rnd/xenobiology/xenoflora_storage) +"aoP" = (/obj/machinery/atmospherics/pipe/simple/visible/yellow{dir = 4},/obj/machinery/atmospherics/pipe/simple/visible/scrubbers{dir = 4},/obj/structure/grille,/obj/structure/window/reinforced/full,/obj/structure/window/reinforced{dir = 8},/obj/structure/window/reinforced{dir = 4},/turf/simulated/floor/tiled/eris/steel/techfloor_grid,/area/rnd/xenobiology/xenoflora_storage) "aoQ" = (/obj/structure/table/reinforced,/obj/machinery/cell_charger,/obj/effect/floor_decal/borderfloor{dir = 5},/obj/effect/floor_decal/corner/mauve/border{dir = 5},/turf/simulated/floor/tiled,/area/rnd/research/testingrange) -"aoR" = (/obj/structure/closet/l3closet/scientist,/obj/machinery/light{dir = 1},/obj/effect/floor_decal/corner/mauve/border{dir = 1},/turf/simulated/floor/tiled,/area/tether/surfacebase/outside/outside3) +"aoR" = (/obj/machinery/atmospherics/pipe/simple/visible/scrubbers{dir = 9},/obj/machinery/atmospherics/pipe/simple/visible/yellow{dir = 4},/obj/structure/catwalk,/turf/simulated/floor/tiled/eris/steel/techfloor_grid,/area/rnd/xenobiology/xenoflora_storage) "aoS" = (/obj/effect/floor_decal/spline/plain{dir = 10},/turf/simulated/floor/tiled/freezer,/area/crew_quarters/pool) "aoT" = (/obj/effect/floor_decal/spline/plain,/obj/machinery/hologram/holopad,/turf/simulated/floor/tiled/freezer,/area/crew_quarters/pool) "aoU" = (/obj/effect/floor_decal/spline/plain{dir = 6},/turf/simulated/floor/tiled/freezer,/area/crew_quarters/pool) @@ -781,15 +781,15 @@ "apa" = (/obj/machinery/door/airlock/maintenance/common{name = "Freezer Maintenance Access"; req_access = list(28)},/obj/machinery/door/firedoor/glass,/turf/simulated/floor/tiled/techfloor/grid,/area/hydroponics) "apb" = (/obj/structure/cable{icon_state = "4-8"},/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 8},/obj/effect/floor_decal/corner/lightgrey/border,/obj/machinery/computer/guestpass{dir = 1; icon_state = "guest"; pixel_y = -28},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled,/area/tether/surfacebase/surface_three_hall) "apc" = (/turf/simulated/wall,/area/vacant/vacant_shop) -"apd" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/effect/floor_decal/corner/mauve/border{dir = 1},/turf/simulated/floor/tiled,/area/rnd/xenobiology/xenoflora) +"apd" = (/obj/structure/catwalk,/obj/machinery/atmospherics/pipe/manifold/visible/yellow,/turf/simulated/floor/tiled/eris/steel/techfloor_grid,/area/rnd/xenobiology/xenoflora_storage) "ape" = (/obj/structure/cable{icon_state = "4-8"},/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 8},/obj/structure/disposalpipe/segment{dir = 4},/obj/effect/floor_decal/industrial/danger,/turf/simulated/floor/tiled,/area/tether/surfacebase/surface_three_hall) "apf" = (/obj/structure/cable{icon_state = "2-8"},/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/corner/lightgrey/border,/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 8},/obj/structure/cable{icon_state = "4-8"},/obj/machinery/light,/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled,/area/tether/surfacebase/surface_three_hall) "apg" = (/obj/effect/floor_decal/techfloor{dir = 4},/obj/machinery/firealarm{dir = 4; pixel_x = 24},/obj/structure/closet/crate,/obj/random/maintenance/clean,/obj/random/maintenance/clean,/obj/random/maintenance/clean,/obj/random/drinkbottle,/obj/machinery/alarm{dir = 1; pixel_y = -25},/obj/random/tool,/obj/random/maintenance/clean,/obj/random/maintenance/clean,/obj/random/maintenance/clean,/obj/random/maintenance/clean,/turf/simulated/floor/tiled/techfloor,/area/vacant/vacant_shop) -"aph" = (/obj/structure/grille,/obj/structure/window/reinforced/full,/obj/machinery/door/firedoor,/obj/structure/window/reinforced,/obj/structure/window/reinforced{dir = 1},/turf/simulated/floor/plating,/area/hydroponics) +"aph" = (/obj/machinery/atmospherics/pipe/tank/phoron{dir = 8; icon_state = "phoron_map"; name = "Xenoflora Waste Buffer"; start_pressure = 0},/obj/structure/catwalk,/turf/simulated/floor/tiled/eris/steel/techfloor_grid,/area/rnd/xenobiology/xenoflora_storage) "api" = (/obj/machinery/cooker/fryer,/obj/effect/floor_decal/industrial/warning/dust,/obj/effect/floor_decal/industrial/warning/dust{icon_state = "warning_dust"; dir = 1},/turf/simulated/floor/tiled/white,/area/crew_quarters/kitchen) -"apj" = (/obj/structure/grille,/obj/structure/window/reinforced/full,/obj/machinery/door/firedoor,/obj/structure/window/reinforced{dir = 8},/turf/simulated/floor/plating,/area/hydroponics) -"apk" = (/obj/structure/grille,/obj/structure/window/reinforced/full,/obj/machinery/door/firedoor,/obj/structure/window/reinforced{dir = 1},/obj/structure/window/reinforced,/turf/simulated/floor/plating,/area/hydroponics) -"apl" = (/obj/effect/floor_decal/corner/lime/border{dir = 9},/obj/machinery/disposal,/obj/structure/disposalpipe/trunk,/turf/simulated/floor/tiled,/area/hydroponics) +"apj" = (/obj/machinery/portable_atmospherics/canister/phoron,/turf/simulated/floor/tiled,/area/rnd/xenobiology/xenoflora_storage) +"apk" = (/obj/machinery/portable_atmospherics/canister/phoron,/obj/effect/floor_decal/industrial/warning{dir = 4; icon_state = "warning"},/turf/simulated/floor/tiled,/area/rnd/xenobiology/xenoflora_storage) +"apl" = (/obj/machinery/atmospherics/portables_connector{dir = 1},/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/corner/mauve/border,/turf/simulated/floor/tiled,/area/rnd/xenobiology/xenoflora_storage) "apm" = (/obj/effect/floor_decal/spline/plain{dir = 8},/obj/machinery/disposal,/obj/structure/disposalpipe/trunk{dir = 4},/turf/simulated/floor/tiled/freezer,/area/crew_quarters/pool) "apn" = (/obj/structure/disposalpipe/segment{dir = 2; icon_state = "pipe-c"},/turf/simulated/floor/tiled/freezer,/area/crew_quarters/pool) "apo" = (/obj/effect/floor_decal/borderfloor{dir = 9},/obj/effect/floor_decal/corner/lightgrey/border{dir = 9},/obj/effect/floor_decal/borderfloor/corner2{dir = 10},/obj/effect/floor_decal/corner/lightgrey/bordercorner2{dir = 10},/obj/effect/floor_decal/steeldecal/steel_decals7,/turf/simulated/floor/tiled,/area/tether/surfacebase/surface_three_hall) @@ -809,8 +809,8 @@ "apC" = (/obj/machinery/light{dir = 4; icon_state = "tube1"; pixel_x = 0},/obj/effect/floor_decal/borderfloor{dir = 4},/obj/effect/floor_decal/corner/lightgrey/border{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 9},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 10},/obj/structure/closet/hydrant{pixel_x = 32},/turf/simulated/floor/tiled,/area/tether/surfacebase/surface_three_hall) "apD" = (/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/corner/lightgrey/border,/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 8},/obj/structure/cable{icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled,/area/tether/surfacebase/surface_three_hall) "apE" = (/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/corner/lightgrey/border,/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 8},/obj/structure/cable{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/disposalpipe/sortjunction/flipped{dir = 1; name = "Library"; sortType = "Library"},/turf/simulated/floor/tiled,/area/tether/surfacebase/surface_three_hall) -"apF" = (/obj/effect/floor_decal/corner/lime/border{dir = 1},/turf/simulated/floor/tiled,/area/hydroponics) -"apG" = (/obj/effect/floor_decal/corner/mauve/border{dir = 1},/turf/simulated/floor/tiled,/area/rnd/xenobiology/xenoflora_storage) +"apF" = (/obj/machinery/atmospherics/portables_connector{dir = 1},/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/corner/mauve/border,/obj/machinery/camera/network/research{dir = 1},/turf/simulated/floor/tiled,/area/rnd/xenobiology/xenoflora_storage) +"apG" = (/obj/structure/table/glass,/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/corner/mauve/border,/obj/machinery/atmospherics/unary/vent_pump/on{dir = 1},/obj/machinery/alarm{dir = 1; pixel_y = -22},/turf/simulated/floor/tiled,/area/rnd/xenobiology/xenoflora_storage) "apH" = (/obj/effect/floor_decal/corner/mauve/border{dir = 1},/turf/simulated/floor/tiled,/area/rnd/xenobiology/xenoflora) "apI" = (/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled/freezer,/area/crew_quarters/pool) "apJ" = (/obj/structure/disposalpipe/segment{dir = 4; icon_state = "pipe-c"},/turf/simulated/floor/tiled/freezer,/area/crew_quarters/pool) @@ -819,7 +819,7 @@ "apM" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 6},/obj/structure/disposalpipe/segment{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals4,/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 10},/turf/simulated/floor/tiled,/area/crew_quarters/pool) "apN" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/door/airlock/glass{name = "Pool"},/obj/machinery/door/firedoor/glass,/turf/simulated/floor/tiled/steel_grid,/area/crew_quarters/pool) "apO" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 6},/turf/simulated/floor/tiled,/area/tether/surfacebase/surface_three_hall) -"apP" = (/obj/structure/grille,/obj/structure/window/reinforced/full,/obj/machinery/door/firedoor,/obj/structure/window/reinforced{dir = 4},/obj/structure/window/reinforced,/turf/simulated/floor/plating,/area/hydroponics) +"apP" = (/obj/structure/table/glass,/obj/effect/floor_decal/borderfloor{dir = 6},/obj/effect/floor_decal/corner/mauve/border{dir = 6},/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 1},/obj/machinery/light_switch{pixel_x = 25},/turf/simulated/floor/tiled,/area/rnd/xenobiology/xenoflora_storage) "apQ" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/tiled,/area/tether/surfacebase/surface_three_hall) "apR" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 10},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 10},/obj/structure/disposalpipe/junction,/obj/structure/cable/green{d1 = 2; d2 = 8; icon_state = "2-8"},/turf/simulated/floor/tiled,/area/tether/surfacebase/surface_three_hall) "apS" = (/turf/simulated/floor/tiled,/area/tether/surfacebase/surface_three_hall) @@ -841,7 +841,7 @@ "aqi" = (/obj/machinery/door/airlock/maintenance/common,/obj/machinery/door/firedoor/glass,/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled/techmaint,/area/vacant/vacant_shop) "aqj" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/cable/green{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 8},/turf/simulated/floor/tiled/techfloor,/area/vacant/vacant_shop) "aqk" = (/obj/effect/floor_decal/techfloor{dir = 4},/obj/machinery/power/apc{dir = 4; name = "east bump"; pixel_x = 28},/obj/structure/cable/green{icon_state = "0-8"},/obj/random/junk,/obj/structure/disposalpipe/segment{dir = 8; icon_state = "pipe-c"},/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 8},/turf/simulated/floor/tiled/techfloor,/area/vacant/vacant_shop) -"aql" = (/obj/structure/grille,/obj/structure/window/reinforced/full,/obj/machinery/door/firedoor,/obj/structure/window/reinforced{dir = 8},/obj/structure/window/reinforced,/turf/simulated/floor/plating,/area/hydroponics) +"aql" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/door/firedoor/glass,/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/door/airlock/glass_research{name = "Xenoflora Research"; req_access = list(77); req_one_access = list(77)},/turf/simulated/floor/tiled/steel_grid,/area/rnd/xenobiology/xenoflora_storage) "aqm" = (/obj/machinery/beehive,/turf/simulated/floor/grass,/area/hydroponics) "aqn" = (/obj/machinery/light{dir = 1},/obj/effect/floor_decal/corner/mauve/border{dir = 1},/turf/simulated/floor/tiled,/area/rnd/xenobiology/xenoflora) "aqo" = (/obj/effect/floor_decal/spline/plain{dir = 1},/turf/simulated/floor/tiled/eris/cafe,/area/hydroponics) @@ -878,12 +878,12 @@ "aqT" = (/obj/structure/sign/directions/medical{dir = 1; icon_state = "direction_med"; pixel_y = 8},/obj/structure/sign/directions/science{dir = 2; icon_state = "direction_sci"; pixel_y = 3},/obj/structure/sign/directions/security{dir = 1; icon_state = "direction_sec"; pixel_y = -4},/obj/structure/sign/directions/engineering{dir = 1; icon_state = "direction_eng"; pixel_y = -10},/turf/simulated/wall,/area/tether/surfacebase/surface_three_hall) "aqU" = (/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 9},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 10},/obj/machinery/newscaster{pixel_x = 25},/obj/effect/floor_decal/borderfloor/corner{dir = 4},/obj/effect/floor_decal/corner/lightgrey/bordercorner{dir = 4},/turf/simulated/floor/tiled,/area/tether/surfacebase/surface_three_hall) "aqV" = (/obj/structure/flora/ausbushes/sparsegrass,/turf/simulated/floor/grass,/area/hydroponics) -"aqW" = (/obj/structure/closet/crate/hydroponics,/turf/simulated/floor/tiled,/area/tether/surfacebase/outside/outside3) +"aqW" = (/obj/structure/closet/secure_closet/hydroponics,/obj/effect/floor_decal/corner/mauve/border{dir = 9},/turf/simulated/floor/tiled,/area/rnd/xenobiology/xenoflora) "aqX" = (/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/mauve/border{dir = 1},/turf/simulated/floor/tiled,/area/rnd/xenobiology/xenoflora) "aqY" = (/obj/machinery/cooker/oven,/obj/effect/floor_decal/industrial/warning/dust{icon_state = "warning_dust"; dir = 6},/obj/effect/floor_decal/industrial/warning/dust{icon_state = "warning_dust"; dir = 1},/turf/simulated/floor/tiled/white,/area/crew_quarters/kitchen) -"aqZ" = (/obj/structure/grille,/obj/structure/window/reinforced/full,/obj/machinery/door/firedoor,/obj/structure/window/reinforced{dir = 4},/obj/structure/window/reinforced,/turf/simulated/floor/plating,/area/tether/surfacebase/outside/outside3) -"ara" = (/obj/effect/floor_decal/corner/lime/border{dir = 5},/turf/simulated/floor/tiled,/area/hydroponics) -"arb" = (/obj/effect/floor_decal/corner/lime/border{dir = 8},/turf/simulated/floor/tiled,/area/hydroponics) +"aqZ" = (/obj/structure/closet/firecloset,/obj/effect/floor_decal/corner/mauve/border{dir = 1},/turf/simulated/floor/tiled,/area/rnd/xenobiology/xenoflora) +"ara" = (/obj/structure/closet/l3closet/scientist,/obj/machinery/light{dir = 1},/obj/effect/floor_decal/corner/mauve/border{dir = 1},/turf/simulated/floor/tiled,/area/rnd/xenobiology/xenoflora) +"arb" = (/obj/machinery/door/firedoor,/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/door/airlock/glass_research{name = "Xenoflora Research"; req_access = list(77); req_one_access = list(77)},/turf/simulated/floor/tiled,/area/rnd/xenobiology/xenoflora_storage) "arc" = (/obj/structure/table/glass,/obj/effect/floor_decal/spline/plain{dir = 8},/obj/machinery/computer/guestpass{dir = 4; pixel_x = -28; pixel_y = 0},/turf/simulated/floor/tiled/freezer,/area/crew_quarters/pool) "ard" = (/obj/structure/disposalpipe/segment{dir = 1; icon_state = "pipe-c"},/turf/simulated/floor/tiled/freezer,/area/crew_quarters/pool) "are" = (/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled/freezer,/area/crew_quarters/pool) @@ -896,16 +896,16 @@ "arl" = (/obj/item/weapon/bikehorn/rubberducky,/turf/simulated/floor/tiled/white,/area/crew_quarters/recreation_area_restroom{name = "\improper Recreation Area Showers"}) "arm" = (/obj/machinery/alarm{dir = 1; pixel_y = -25},/turf/simulated/floor/tiled/white,/area/crew_quarters/recreation_area_restroom{name = "\improper Recreation Area Showers"}) "arn" = (/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/outdoors/grass/sif/virgo3b,/area/tether/surfacebase/outside/outside3) -"aro" = (/obj/item/weapon/stool/padded,/obj/effect/floor_decal/corner/lime/border{dir = 4},/turf/simulated/floor/tiled,/area/hydroponics) +"aro" = (/obj/structure/disposalpipe/segment{dir = 8},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/effect/floor_decal/corner/mauve/border{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled,/area/rnd/xenobiology/xenoflora) "arp" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/door/firedoor/glass,/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/door/airlock/maintenance/int{name = "Fire/Phoron Shelter"},/turf/simulated/floor/tiled/techfloor,/area/vacant/vacant_shop) -"arq" = (/obj/machinery/door/airlock/glass{name = "Hydroponics"; req_access = newlist(); req_one_access = list(35,28)},/obj/structure/disposalpipe/segment{dir = 8},/turf/simulated/floor/tiled,/area/hydroponics) -"arr" = (/obj/item/weapon/stool/padded,/turf/simulated/floor/tiled,/area/hydroponics) -"ars" = (/obj/machinery/smartfridge/drying_rack,/obj/effect/floor_decal/corner/lime/border{dir = 10},/turf/simulated/floor/tiled,/area/hydroponics) -"art" = (/obj/structure/table/glass,/obj/machinery/chemical_dispenser/xenoflora/full,/turf/simulated/floor/tiled,/area/tether/surfacebase/outside/outside3) +"arq" = (/obj/structure/disposalpipe/segment{dir = 8},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled,/area/rnd/xenobiology/xenoflora) +"arr" = (/obj/structure/disposalpipe/segment{dir = 2; icon_state = "pipe-c"},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled,/area/rnd/xenobiology/xenoflora) +"ars" = (/obj/machinery/portable_atmospherics/hydroponics,/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/effect/floor_decal/corner/mauve/border{dir = 1},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled,/area/rnd/xenobiology/xenoflora) +"art" = (/obj/machinery/portable_atmospherics/hydroponics,/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/effect/floor_decal/corner/mauve/border{dir = 1},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 10; icon_state = "intact-scrubbers"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 10},/turf/simulated/floor/tiled,/area/rnd/xenobiology/xenoflora) "aru" = (/turf/simulated/wall,/area/crew_quarters/kitchen) "arv" = (/obj/structure/bed/chair{dir = 4},/obj/effect/floor_decal/spline/plain{dir = 10},/turf/simulated/floor/tiled/freezer,/area/crew_quarters/pool) "arw" = (/obj/effect/floor_decal/spline/plain,/turf/simulated/floor/tiled/freezer,/area/crew_quarters/pool) -"arx" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/glass_research{name = "Xenoflora Research"; req_access = list(55)},/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/tiled,/area/rnd/xenobiology/xenoflora) +"arx" = (/obj/machinery/door/firedoor,/obj/structure/disposalpipe/segment{dir = 8},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/door/airlock/glass_research{name = "Xenoflora Research"; req_access = list(77); req_one_access = list(77)},/turf/simulated/floor/tiled,/area/rnd/xenobiology/xenoflora) "ary" = (/obj/effect/floor_decal/spline/plain,/obj/machinery/light,/turf/simulated/floor/tiled/freezer,/area/crew_quarters/pool) "arz" = (/obj/effect/floor_decal/spline/plain,/obj/structure/flora/pottedplant/stoutbush,/turf/simulated/floor/tiled/freezer,/area/crew_quarters/pool) "arA" = (/obj/effect/floor_decal/spline/plain{dir = 6},/obj/structure/undies_wardrobe,/turf/simulated/floor/tiled/freezer,/area/crew_quarters/pool) @@ -916,23 +916,23 @@ "arF" = (/obj/machinery/vending/fitness,/obj/effect/floor_decal/corner/lightgrey{dir = 9},/obj/effect/floor_decal/corner/lightgrey{dir = 6},/obj/effect/floor_decal/steeldecal/steel_decals9{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals9{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals9{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals9,/turf/simulated/floor/tiled/monotile,/area/tether/surfacebase/surface_three_hall) "arG" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 1},/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled,/area/tether/surfacebase/surface_three_hall) "arH" = (/obj/machinery/vending/hydronutrients,/obj/effect/floor_decal/corner/mauve/border{dir = 5},/turf/simulated/floor/tiled,/area/rnd/xenobiology/xenoflora) -"arI" = (/obj/structure/disposalpipe/segment{dir = 8},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/effect/floor_decal/corner/mauve/border{dir = 8},/turf/simulated/floor/tiled,/area/tether/surfacebase/surface_three_hall) +"arI" = (/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/effect/floor_decal/steeldecal/steel_decals4{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 6},/turf/simulated/floor/tiled,/area/rnd/xenobiology/xenoflora_storage) "arJ" = (/turf/simulated/wall,/area/crew_quarters/bar) "arK" = (/obj/structure/cable/green{d1 = 2; d2 = 4; icon_state = "2-4"},/turf/simulated/floor/grass,/area/hydroponics) "arL" = (/obj/structure/grille,/obj/structure/window/reinforced/full,/obj/machinery/door/firedoor,/obj/structure/window/reinforced,/obj/structure/window/reinforced{dir = 1},/turf/simulated/floor/plating,/area/rnd/xenobiology/xenoflora) "arM" = (/obj/effect/floor_decal/corner/grey/diagonal,/obj/structure/closet/secure_closet/freezer/kitchen,/turf/simulated/floor/tiled/white,/area/crew_quarters/kitchen) "arN" = (/obj/effect/floor_decal/spline/plain{dir = 6},/turf/simulated/floor/tiled/techfloor,/area/hydroponics) -"arO" = (/obj/machinery/smartfridge/drying_rack,/obj/effect/floor_decal/corner/lime/border,/turf/simulated/floor/tiled,/area/hydroponics) -"arP" = (/obj/machinery/atmospherics/pipe/simple/visible/scrubbers,/obj/structure/catwalk,/turf/simulated/floor/tiled/eris/steel/techfloor_grid,/area/rnd/xenobiology/xenoflora) -"arQ" = (/obj/machinery/vending/cigarette,/turf/simulated/floor/tiled,/area/crew_quarters/kitchen) -"arR" = (/obj/machinery/vending/cola/soft,/turf/simulated/floor/tiled,/area/crew_quarters/kitchen) -"arS" = (/obj/structure/grille,/obj/machinery/door/firedoor,/obj/structure/disposalpipe/segment,/obj/structure/window/reinforced/polarized/full{id = "hop_office"},/obj/structure/window/reinforced/polarized{icon_state = "rwindow"; dir = 1},/obj/machinery/door/blast/shutters{dir = 2; id = "kitchen"; layer = 3.3; name = "Entertainment Shutters"},/obj/machinery/door/blast/regular/open{icon_state = "pdoor0"; dir = 8},/obj/structure/cable/green{icon_state = "0-4"},/obj/structure/cable/green{icon_state = "2-4"},/turf/simulated/floor/plating,/area/library) -"arT" = (/obj/structure/table/woodentable,/obj/item/weapon/storage/box/sinpockets,/obj/effect/floor_decal/corner/lime/border,/turf/simulated/floor/tiled,/area/hydroponics) +"arO" = (/obj/machinery/portable_atmospherics/hydroponics,/obj/structure/cable/green{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/effect/floor_decal/corner/mauve/border{dir = 1},/turf/simulated/floor/tiled,/area/rnd/xenobiology/xenoflora) +"arP" = (/obj/machinery/portable_atmospherics/hydroponics,/obj/effect/floor_decal/corner/mauve/border{dir = 1},/turf/simulated/floor/tiled,/area/rnd/xenobiology/xenoflora) +"arQ" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 6},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 6},/turf/simulated/floor/grass,/area/hydroponics) +"arR" = (/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,/obj/machinery/atmospherics/pipe/manifold/hidden/supply,/turf/simulated/floor/grass,/area/hydroponics) +"arS" = (/obj/machinery/portable_atmospherics/hydroponics,/obj/effect/floor_decal/corner/mauve/border{dir = 5},/turf/simulated/floor/tiled,/area/rnd/xenobiology/xenoflora) +"arT" = (/obj/machinery/seed_extractor,/obj/effect/floor_decal/corner/mauve/border{dir = 4},/turf/simulated/floor/tiled,/area/rnd/xenobiology/xenoflora) "arU" = (/obj/structure/grille,/obj/structure/window/reinforced/full,/obj/machinery/door/firedoor,/obj/structure/window/reinforced,/obj/structure/window/reinforced{dir = 8},/turf/simulated/floor/plating,/area/crew_quarters/pool) "arV" = (/obj/structure/grille,/obj/structure/window/reinforced/full,/obj/machinery/door/firedoor,/obj/structure/window/reinforced,/turf/simulated/floor/plating,/area/crew_quarters/pool) "arW" = (/turf/simulated/wall,/area/tether/surfacebase/public_garden_three) -"arX" = (/obj/structure/closet/crate,/turf/simulated/floor/tiled,/area/crew_quarters/kitchen) -"arY" = (/obj/structure/grille,/obj/structure/window/reinforced/full,/obj/machinery/door/firedoor,/obj/structure/window/reinforced,/turf/simulated/floor/plating,/area/hydroponics) +"arX" = (/obj/structure/closet/secure_closet/hydroponics,/obj/effect/floor_decal/corner/mauve/border{dir = 10},/turf/simulated/floor/tiled,/area/rnd/xenobiology/xenoflora) +"arY" = (/obj/structure/closet/firecloset,/obj/effect/floor_decal/corner/mauve/border,/turf/simulated/floor/tiled,/area/rnd/xenobiology/xenoflora) "arZ" = (/obj/structure/railing{dir = 1; icon_state = "railing0"},/obj/structure/railing{dir = 8},/turf/simulated/open/virgo3b,/area/tether/surfacebase/outside/outside3) "asa" = (/obj/machinery/computer/rdconsole/robotics{dir = 8},/obj/effect/floor_decal/borderfloor{dir = 4},/obj/effect/floor_decal/corner/mauve/border{dir = 4},/turf/simulated/floor/tiled/steel_grid,/area/assembly/robotics) "asb" = (/obj/effect/floor_decal/borderfloor{dir = 4},/obj/effect/floor_decal/corner/mauve/border{dir = 4},/obj/structure/extinguisher_cabinet{dir = 8; icon_state = "extinguisher_closed"; pixel_x = 30},/turf/simulated/floor/tiled,/area/rnd/research) @@ -944,10 +944,10 @@ "ash" = (/turf/simulated/floor/grass,/area/maintenance/lower/xenoflora) "asi" = (/obj/structure/grille,/obj/structure/window/reinforced/full,/obj/machinery/door/firedoor,/obj/structure/window/reinforced{dir = 8},/obj/structure/window/reinforced{dir = 4},/turf/simulated/floor/plating,/area/hydroponics) "asj" = (/obj/structure/grille,/obj/structure/window/reinforced/full,/obj/machinery/door/firedoor,/obj/structure/sign/botany,/obj/structure/window/reinforced{dir = 8},/obj/structure/window/reinforced{dir = 4},/obj/structure/window/reinforced,/turf/simulated/floor/plating,/area/hydroponics) -"ask" = (/obj/machinery/door/airlock/freezer{name = "Service"; req_access = list(28)},/obj/machinery/door/firedoor/glass,/turf/simulated/floor/tiled,/area/crew_quarters/freezer) +"ask" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/grass,/area/hydroponics) "asl" = (/obj/machinery/recharge_station,/obj/effect/floor_decal/industrial/warning/corner{dir = 4},/turf/simulated/floor/tiled/steel_grid,/area/assembly/chargebay) -"asm" = (/obj/effect/floor_decal/corner/lime/border{dir = 1},/obj/machinery/smartfridge,/turf/simulated/floor/tiled,/area/hydroponics) -"asn" = (/obj/structure/table/woodentable,/obj/item/clothing/mask/smokable/pipe/cobpipe,/obj/item/clothing/mask/smokable/cigarette/joint,/obj/item/weapon/flame/lighter/random,/obj/effect/floor_decal/corner/lime/border{dir = 6},/turf/simulated/floor/tiled,/area/hydroponics) +"asm" = (/obj/structure/closet/l3closet/scientist,/obj/effect/floor_decal/corner/mauve/border,/turf/simulated/floor/tiled,/area/rnd/xenobiology/xenoflora) +"asn" = (/obj/effect/floor_decal/corner/mauve/border,/obj/machinery/firealarm{dir = 1; pixel_x = 0; pixel_y = -24},/turf/simulated/floor/tiled,/area/rnd/xenobiology/xenoflora) "aso" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/grass,/area/hydroponics) "asp" = (/obj/machinery/computer/security/telescreen/entertainment{desc = "Damn, looks like it's on the clown world channel. I wonder what else is on?"; icon_state = "frame"; pixel_x = 0; pixel_y = 32},/turf/simulated/floor/grass,/area/hydroponics) "asq" = (/obj/structure/table/woodentable,/turf/simulated/floor/grass,/area/hydroponics) @@ -955,38 +955,38 @@ "ass" = (/obj/effect/floor_decal/borderfloor{dir = 8},/obj/effect/floor_decal/corner/lightgrey/border{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 5},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 6},/obj/structure/closet/hydrant{pixel_x = -32},/turf/simulated/floor/tiled,/area/tether/surfacebase/surface_three_hall) "ast" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 5},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 5},/obj/structure/disposalpipe/segment{dir = 1; icon_state = "pipe-c"},/turf/simulated/floor/tiled,/area/tether/surfacebase/surface_three_hall) "asu" = (/obj/machinery/firealarm{dir = 2; layer = 3.3; pixel_x = 0; pixel_y = 26},/turf/simulated/floor/tiled/freezer,/area/crew_quarters/freezer) -"asv" = (/turf/simulated/floor/tiled/freezer,/area/crew_quarters/freezer) +"asv" = (/obj/effect/floor_decal/corner/mauve/bordercorner{dir = 8},/turf/simulated/floor/tiled,/area/rnd/xenobiology/xenoflora) "asw" = (/obj/effect/floor_decal/corner/grey/diagonal{dir = 4},/obj/structure/closet/secure_closet/freezer/meat,/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/tiled/white,/area/crew_quarters/kitchen) "asx" = (/obj/structure/closet/crate/freezer,/turf/simulated/floor/tiled/freezer,/area/crew_quarters/freezer) "asy" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/door/firedoor/glass,/obj/machinery/door/airlock/glass,/turf/simulated/floor/tiled,/area/tether/surfacebase/surface_three_hall) "asz" = (/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 4},/obj/structure/disposalpipe/junction,/turf/simulated/floor/tiled,/area/tether/surfacebase/surface_three_hall) "asA" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 6},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 6},/obj/effect/floor_decal/steeldecal/steel_decals4,/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 10},/obj/effect/floor_decal/industrial/warning/corner{dir = 1; icon_state = "warningcorner"},/obj/machinery/atmospherics/pipe/simple/hidden/cyan{dir = 4},/turf/simulated/floor/tiled/white,/area/tether/surfacebase/medical/triage) "asB" = (/obj/effect/floor_decal/spline/plain{dir = 1},/turf/simulated/floor/lino,/area/crew_quarters/bar) -"asC" = (/obj/structure/closet/secure_closet/hydroponics,/obj/effect/floor_decal/corner/lime/border{dir = 4},/turf/simulated/floor/tiled,/area/tether/surfacebase/outside/outside3) +"asC" = (/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled,/area/rnd/xenobiology/xenoflora) "asD" = (/obj/structure/table/reinforced,/obj/machinery/door/firedoor/glass,/obj/effect/floor_decal/spline/plain{dir = 5},/obj/item/weapon/reagent_containers/food/condiment/small/peppermill{pixel_x = 3},/obj/item/weapon/reagent_containers/food/condiment/small/saltshaker{pixel_x = -3; pixel_y = 0},/obj/machinery/door/blast/shutters{dir = 1; id = "kitchen2"; layer = 3.3; name = "Kitchen Shutters"},/turf/simulated/floor/tiled/white,/area/crew_quarters/kitchen) -"asE" = (/obj/structure/grille,/obj/structure/window/reinforced/full,/obj/machinery/door/firedoor,/obj/structure/window/reinforced{dir = 4},/obj/structure/window/reinforced{dir = 8},/turf/simulated/floor/plating,/area/hydroponics) -"asF" = (/obj/structure/table/marble,/obj/effect/floor_decal/corner/grey/diagonal,/obj/machinery/door/firedoor/glass,/turf/simulated/floor/tiled/white,/area/hydroponics) +"asE" = (/obj/effect/floor_decal/corner/mauve/border{dir = 8},/turf/simulated/floor/tiled,/area/rnd/xenobiology/xenoflora) +"asF" = (/obj/machinery/door/airlock/glass{name = "Hydroponics Break Room"; req_one_access = list(35,28)},/obj/structure/disposalpipe/segment{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 8},/turf/simulated/floor/tiled,/area/tether/surfacebase/botanystorage) "asG" = (/obj/effect/floor_decal/corner/grey/diagonal,/obj/machinery/smartfridge{req_access = list(28)},/obj/machinery/door/firedoor/glass,/turf/simulated/floor/tiled/white,/area/hydroponics) -"asH" = (/obj/machinery/icecream_vat,/turf/simulated/floor/tiled/freezer,/area/crew_quarters/freezer) +"asH" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/grass,/area/hydroponics) "asI" = (/obj/structure/kitchenspike,/turf/simulated/floor/tiled/freezer,/area/crew_quarters/freezer) -"asJ" = (/obj/machinery/door/airlock/glass{name = "Hydroponics"; req_access = newlist(); req_one_access = list(35,28)},/obj/machinery/door/firedoor/glass,/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/tiled,/area/hydroponics) +"asJ" = (/obj/effect/floor_decal/corner/mauve/border{dir = 4},/turf/simulated/floor/tiled,/area/rnd/xenobiology/xenoflora) "asK" = (/obj/effect/floor_decal/spline/plain{dir = 8},/obj/effect/floor_decal/corner/lime/border{dir = 4},/turf/simulated/floor/tiled/eris/cafe,/area/hydroponics) "asL" = (/obj/effect/floor_decal/corner/grey/diagonal,/obj/structure/closet/secure_closet/freezer/fridge,/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/tiled/white,/area/crew_quarters/kitchen) "asM" = (/obj/effect/floor_decal/corner/grey/diagonal,/obj/machinery/firealarm{dir = 2; layer = 3.3; pixel_x = 0; pixel_y = 26},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/tiled/white,/area/crew_quarters/kitchen) "asN" = (/obj/structure/grille,/obj/structure/window/reinforced/full,/obj/machinery/door/firedoor,/obj/machinery/door/blast/shutters{density = 0; dir = 2; icon_state = "shutter0"; id = "freezer"; name = "Freezer Shutters"; opacity = 0},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/plating,/area/crew_quarters/freezer) -"asO" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/tiled/freezer,/area/crew_quarters/freezer) +"asO" = (/obj/structure/flora/ausbushes/lavendergrass,/obj/structure/flora/ausbushes/ppflowers,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/grass,/area/hydroponics) "asP" = (/obj/effect/floor_decal/corner/lime/border{dir = 4},/turf/simulated/floor/tiled/eris/cafe,/area/hydroponics) -"asQ" = (/obj/effect/floor_decal/corner/lime/border{dir = 8},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/tiled,/area/hydroponics) +"asQ" = (/obj/structure/disposalpipe/segment{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 6},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 6},/turf/simulated/floor/grass,/area/hydroponics) "asR" = (/obj/effect/floor_decal/borderfloor{dir = 10},/obj/effect/floor_decal/corner/lightgrey/border{dir = 10},/obj/structure/flora/pottedplant/stoutbush,/obj/machinery/light{dir = 8},/turf/simulated/floor/tiled,/area/tether/surfacebase/surface_three_hall) "asS" = (/obj/effect/floor_decal/borderfloor/corner{dir = 8},/obj/effect/floor_decal/corner/lightgrey/bordercorner{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 6},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 1},/turf/simulated/floor/tiled,/area/tether/surfacebase/surface_three_hall) "asT" = (/turf/simulated/wall/r_wall,/area/bridge) "asU" = (/obj/machinery/door/airlock/freezer{name = "Kitchen cold room"; req_access = list(28)},/obj/machinery/door/firedoor/glass,/turf/simulated/floor/tiled/freezer,/area/crew_quarters/freezer) -"asV" = (/obj/machinery/chem_master/condimaster,/turf/simulated/floor/tiled/freezer,/area/crew_quarters/freezer) -"asW" = (/obj/machinery/light,/turf/simulated/floor/tiled/freezer,/area/crew_quarters/freezer) +"asV" = (/obj/structure/flora/ausbushes/lavendergrass,/obj/structure/flora/ausbushes/ywflowers,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/grass,/area/hydroponics) +"asW" = (/obj/structure/table/standard{name = "plastic table frame"},/obj/item/weapon/reagent_containers/glass/bucket,/obj/item/weapon/material/minihoe,/obj/item/weapon/storage/box/botanydisk,/obj/item/weapon/storage/box/botanydisk,/obj/effect/floor_decal/corner/mauve/border{dir = 4},/turf/simulated/floor/tiled,/area/rnd/xenobiology/xenoflora) "asX" = (/turf/simulated/floor/wood,/area/crew_quarters/bar) "asY" = (/obj/machinery/gibber,/turf/simulated/floor/tiled/freezer,/area/crew_quarters/freezer) "asZ" = (/obj/structure/table/woodentable,/obj/effect/floor_decal/spline/plain{dir = 4},/turf/simulated/floor/grass,/area/hydroponics) -"ata" = (/obj/effect/floor_decal/corner/grey/diagonal,/obj/machinery/alarm{pixel_y = 25},/turf/simulated/floor/tiled/white,/area/crew_quarters/kitchen) +"ata" = (/obj/structure/flora/ausbushes/lavendergrass,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/grass,/area/hydroponics) "atb" = (/turf/simulated/wall,/area/hydroponics/cafegarden) "atc" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 1},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/disposalpipe/junction{dir = 2; icon_state = "pipe-j2"},/turf/simulated/floor/tiled,/area/tether/surfacebase/surface_three_hall) "atd" = (/obj/structure/table/standard,/obj/machinery/chemical_dispenser/bar_soft/full,/turf/simulated/floor/tiled/white,/area/crew_quarters/kitchen) @@ -995,10 +995,10 @@ "atg" = (/obj/structure/table/standard,/obj/effect/floor_decal/corner/grey/diagonal,/obj/item/weapon/reagent_containers/food/condiment/enzyme{layer = 5},/obj/item/weapon/reagent_containers/dropper,/turf/simulated/floor/tiled/white,/area/crew_quarters/kitchen) "ath" = (/obj/machinery/atmospherics/unary/vent_pump/on,/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/tiled/freezer,/area/crew_quarters/freezer) "ati" = (/turf/simulated/floor/grass,/area/hydroponics/cafegarden) -"atj" = (/obj/machinery/alarm{pixel_y = 25},/turf/simulated/floor/tiled,/area/tether/surfacebase/outside/outside3) +"atj" = (/obj/machinery/botany/editor,/obj/effect/floor_decal/corner/mauve/border{dir = 8},/turf/simulated/floor/tiled,/area/rnd/xenobiology/xenoflora) "atk" = (/obj/machinery/light{dir = 1},/turf/simulated/floor/grass,/area/hydroponics/cafegarden) "atl" = (/obj/structure/grille,/obj/structure/window/reinforced/full,/obj/machinery/door/firedoor,/turf/simulated/floor/plating,/area/crew_quarters/kitchen) -"atm" = (/obj/machinery/vending/hydronutrients,/obj/effect/floor_decal/corner/lime/border{dir = 9},/turf/simulated/floor/tiled,/area/hydroponics) +"atm" = (/obj/machinery/portable_atmospherics/hydroponics,/obj/effect/floor_decal/corner/mauve/border{dir = 10},/turf/simulated/floor/tiled,/area/rnd/xenobiology/xenoflora) "atn" = (/obj/machinery/atmospherics/unary/vent_scrubber/on,/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/tiled/freezer,/area/crew_quarters/freezer) "ato" = (/obj/effect/floor_decal/spline/plain{dir = 4},/obj/machinery/smartfridge/drinks,/turf/simulated/floor/lino,/area/crew_quarters/bar) "atp" = (/obj/structure/bed/chair/office/dark,/obj/effect/landmark/start{name = "Scientist"},/turf/simulated/floor/tiled/techfloor,/area/rnd/workshop) @@ -1007,11 +1007,11 @@ "ats" = (/turf/simulated/wall,/area/hallway/lower/third_south) "att" = (/obj/effect/floor_decal/borderfloor{dir = 8},/obj/effect/floor_decal/corner/lightgrey/border{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 5},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 6},/obj/machinery/light{dir = 8; icon_state = "tube1"},/turf/simulated/floor/tiled,/area/tether/surfacebase/surface_three_hall) "atu" = (/obj/structure/table/woodentable,/obj/item/weapon/storage/photo_album{pixel_y = -10},/obj/item/weapon/reagent_containers/food/drinks/flask{pixel_x = 8},/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 4},/obj/machinery/firealarm{dir = 1; pixel_x = 0; pixel_y = -24},/turf/simulated/floor/wood,/area/crew_quarters/captain) -"atv" = (/obj/structure/cable/green{d1 = 1; d2 = 8; icon_state = "1-8"},/mob/living/simple_mob/animal/goat{name = "Spike"},/turf/simulated/floor/tiled/freezer,/area/crew_quarters/freezer) +"atv" = (/obj/machinery/portable_atmospherics/hydroponics,/obj/effect/floor_decal/corner/mauve/border,/turf/simulated/floor/tiled,/area/rnd/xenobiology/xenoflora) "atw" = (/obj/effect/floor_decal/corner/grey/diagonal,/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/cable/green{d1 = 1; d2 = 4; icon_state = "1-4"},/turf/simulated/floor/tiled/white,/area/crew_quarters/kitchen) -"atx" = (/mob/living/simple_mob/animal/passive/cow,/turf/simulated/floor/grass,/area/hydroponics/cafegarden) +"atx" = (/obj/machinery/portable_atmospherics/hydroponics,/obj/effect/floor_decal/corner/mauve/border,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/tiled,/area/rnd/xenobiology/xenoflora) "aty" = (/obj/structure/flora/ausbushes/ppflowers,/obj/structure/flora/ausbushes/lavendergrass,/turf/simulated/floor/grass,/area/hydroponics/cafegarden) -"atz" = (/obj/structure/catwalk,/obj/machinery/atmospherics/pipe/simple/visible/universal,/turf/simulated/floor/tiled/eris/steel/techfloor_grid,/area/rnd/xenobiology/xenoflora) +"atz" = (/obj/machinery/portable_atmospherics/hydroponics,/obj/effect/floor_decal/corner/mauve/border{dir = 6},/turf/simulated/floor/tiled,/area/rnd/xenobiology/xenoflora) "atA" = (/obj/structure/table/standard,/turf/simulated/floor/tiled/white,/area/crew_quarters/kitchen) "atB" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/tiled/techfloor,/area/rnd/workshop) "atC" = (/obj/structure/bed/chair/office/dark{dir = 1},/obj/effect/landmark/start{name = "Scientist"},/turf/simulated/floor/tiled/techfloor,/area/rnd/workshop) @@ -1022,7 +1022,7 @@ "atH" = (/obj/machinery/portable_atmospherics/powered/scrubber/huge/stationary{scrub_id = "atrium"},/turf/simulated/floor/tiled/techmaint,/area/hallway/lower/third_south) "atI" = (/obj/machinery/atmospherics/unary/vent_pump/on{dir = 4},/obj/machinery/light/small{dir = 8},/turf/simulated/floor/tiled/dark,/area/bridge_hallway) "atJ" = (/obj/structure/table/standard,/obj/item/weapon/material/kitchen/rollingpin,/obj/item/weapon/material/knife/butch,/turf/simulated/floor/tiled/white,/area/crew_quarters/kitchen) -"atK" = (/obj/structure/cable/green{d1 = 2; d2 = 8; icon_state = "2-8"},/turf/simulated/floor/tiled,/area/hydroponics) +"atK" = (/obj/structure/reagent_dispensers/watertank,/obj/item/weapon/reagent_containers/glass/bucket,/obj/effect/floor_decal/corner/mauve/border{dir = 4},/turf/simulated/floor/tiled,/area/rnd/xenobiology/xenoflora) "atL" = (/obj/machinery/microwave,/obj/structure/table/standard,/turf/simulated/floor/tiled/white,/area/crew_quarters/kitchen) "atM" = (/obj/structure/table/standard,/obj/machinery/microwave,/turf/simulated/floor/tiled/white,/area/crew_quarters/kitchen) "atN" = (/obj/effect/floor_decal/spline/plain{dir = 6},/obj/machinery/vending/boozeomat,/turf/simulated/floor/lino,/area/crew_quarters/bar) @@ -1030,7 +1030,7 @@ "atP" = (/obj/structure/table/standard,/obj/effect/floor_decal/corner/grey/diagonal,/turf/simulated/floor/tiled/white,/area/crew_quarters/kitchen) "atQ" = (/obj/effect/floor_decal/corner/grey/diagonal,/obj/structure/sink/kitchen{pixel_y = 28},/turf/simulated/floor/tiled/white,/area/crew_quarters/kitchen) "atR" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/grass,/area/hydroponics) -"atS" = (/obj/machinery/portable_atmospherics/canister/sleeping_agent,/obj/machinery/light{dir = 8; icon_state = "tube1"},/turf/simulated/floor/tiled,/area/tether/surfacebase/outside/outside3) +"atS" = (/obj/machinery/botany/extractor,/obj/effect/floor_decal/corner/mauve/border{dir = 8},/turf/simulated/floor/tiled,/area/rnd/xenobiology/xenoflora) "atT" = (/turf/simulated/wall/r_wall,/area/rnd/research) "atU" = (/turf/simulated/wall,/area/rnd/research) "atV" = (/obj/structure/table/steel,/obj/item/device/electronic_assembly/large/default,/obj/machinery/light,/obj/effect/floor_decal/techfloor{dir = 10},/turf/simulated/floor/tiled/techfloor,/area/rnd/workshop) @@ -1046,14 +1046,14 @@ "auf" = (/obj/structure/grille,/obj/structure/railing,/turf/simulated/floor/tiled/techmaint,/area/hallway/lower/third_south) "aug" = (/obj/machinery/atmospherics/unary/vent_pump/on{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals5,/turf/simulated/floor/tiled,/area/tether/surfacebase/shuttle_pad) "auh" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/tiled,/area/tether/surfacebase/surface_three_hall) -"aui" = (/obj/machinery/seed_storage/garden,/obj/effect/floor_decal/corner/lime/border{dir = 1},/turf/simulated/floor/tiled,/area/hydroponics) +"aui" = (/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 4},/turf/simulated/floor/tiled,/area/rnd/xenobiology/xenoflora) "auj" = (/obj/structure/table/standard,/obj/effect/floor_decal/corner/grey/diagonal,/obj/item/weapon/reagent_containers/food/snacks/mint,/obj/item/weapon/storage/box/donkpockets{pixel_x = 3; pixel_y = 3},/obj/item/weapon/reagent_containers/glass/beaker{pixel_x = 5},/turf/simulated/floor/tiled/white,/area/crew_quarters/kitchen) -"auk" = (/obj/structure/flora/ausbushes/ppflowers,/turf/simulated/floor/grass,/area/hydroponics/cafegarden) +"auk" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/grass,/area/hydroponics) "aul" = (/obj/effect/floor_decal/borderfloorblack{dir = 4},/obj/machinery/light_switch{dir = 8; pixel_x = 24},/turf/simulated/floor/tiled,/area/rnd/outpost/xenobiology/outpost_hallway) "aum" = (/obj/structure/flora/ausbushes/pointybush,/turf/simulated/floor/grass,/area/hydroponics/cafegarden) -"aun" = (/obj/structure/grille,/obj/machinery/door/firedoor,/obj/structure/window/reinforced/polarized/full{id = "hop_office"},/obj/structure/window/reinforced/polarized{icon_state = "rwindow"; dir = 1},/obj/machinery/door/blast/shutters{dir = 2; id = "kitchen"; layer = 3.3; name = "Entertainment Shutters"},/obj/machinery/door/blast/regular/open{icon_state = "pdoor0"; dir = 8},/obj/structure/cable/green{icon_state = "0-4"},/obj/structure/cable/green{icon_state = "0-8"},/turf/simulated/floor/plating,/area/library) -"auo" = (/obj/structure/grille,/obj/machinery/door/firedoor,/obj/structure/window/reinforced/polarized/full{id = "hop_office"},/obj/structure/window/reinforced/polarized{icon_state = "rwindow"; dir = 1},/obj/machinery/door/blast/shutters{dir = 2; id = "kitchen"; layer = 3.3; name = "Entertainment Shutters"},/obj/machinery/door/blast/regular/open{icon_state = "pdoor0"; dir = 8},/obj/structure/cable/green{icon_state = "0-8"},/turf/simulated/floor/plating,/area/library) -"aup" = (/obj/effect/floor_decal/corner/lime/border,/obj/machinery/power/apc{dir = 2; name = "south bump"; pixel_y = -24},/obj/structure/cable/green,/turf/simulated/floor/tiled,/area/hydroponics) +"aun" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 9},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 5; icon_state = "intact-supply"},/turf/simulated/floor/tiled,/area/rnd/xenobiology/xenoflora) +"auo" = (/obj/machinery/atmospherics/unary/vent_pump/on{dir = 8},/turf/simulated/floor/tiled,/area/rnd/xenobiology/xenoflora) +"aup" = (/obj/structure/reagent_dispensers/watertank,/obj/item/weapon/reagent_containers/glass/bucket,/obj/machinery/light{dir = 4; icon_state = "tube1"},/obj/effect/floor_decal/corner/mauve/border{dir = 4},/turf/simulated/floor/tiled,/area/rnd/xenobiology/xenoflora) "auq" = (/obj/machinery/door/firedoor/glass,/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/door/airlock/glass_research{name = "Circuitry Workshop"; req_access = list(7); req_one_access = list(7)},/turf/simulated/floor/tiled/techfloor,/area/rnd/workshop) "aur" = (/obj/structure/table/standard,/obj/item/weapon/stock_parts/matter_bin,/obj/item/weapon/stock_parts/matter_bin,/obj/item/weapon/stock_parts/console_screen,/obj/item/weapon/stock_parts/console_screen,/obj/item/weapon/stock_parts/console_screen,/obj/machinery/light_switch{pixel_x = -25},/obj/effect/floor_decal/borderfloor{dir = 9},/obj/effect/floor_decal/corner/mauve/border{dir = 9},/obj/machinery/camera/network/research,/turf/simulated/floor/tiled,/area/rnd/research) "aus" = (/obj/structure/cable/green{icon_state = "0-2"},/obj/machinery/power/apc{dir = 1; name = "north bump"; pixel_x = 0; pixel_y = 28},/obj/effect/floor_decal/industrial/warning/corner,/obj/effect/floor_decal/borderfloor{dir = 1; icon_state = "borderfloor"; pixel_y = 0},/obj/effect/floor_decal/corner/mauve/border{dir = 1},/turf/simulated/floor/tiled/steel_grid,/area/rnd/research) @@ -1075,27 +1075,27 @@ "auI" = (/obj/structure/railing,/turf/simulated/open,/area/tether/surfacebase/surface_three_hall) "auJ" = (/obj/structure/railing,/obj/structure/railing{dir = 4},/turf/simulated/open,/area/tether/surfacebase/surface_three_hall) "auK" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/effect/floor_decal/borderfloor/corner,/obj/effect/floor_decal/corner/beige/bordercorner,/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 9},/turf/simulated/floor/tiled,/area/tether/surfacebase/surface_three_hall) -"auL" = (/obj/item/bee_pack,/obj/item/honey_frame,/obj/item/honey_frame,/obj/item/honey_frame,/obj/item/honey_frame,/obj/item/honey_frame,/obj/item/weapon/tool/crowbar,/obj/item/bee_smoker,/obj/item/beehive_assembly,/obj/effect/floor_decal/borderfloor{dir = 1},/obj/structure/closet/crate/hydroponics{desc = "All you need to start your own honey farm."; name = "beekeeping crate"},/obj/item/beehive_assembly,/obj/item/beehive_assembly,/obj/item/beehive_assembly,/obj/item/beehive_assembly,/obj/item/bee_pack,/obj/item/bee_pack,/obj/item/bee_pack,/obj/item/honey_frame,/obj/item/honey_frame,/obj/item/honey_frame,/obj/effect/floor_decal/corner/lime/border{dir = 1},/turf/simulated/floor/tiled,/area/hydroponics) -"auM" = (/obj/machinery/seed_extractor,/obj/effect/floor_decal/corner/lime/border{dir = 1},/turf/simulated/floor/tiled,/area/hydroponics) -"auN" = (/obj/structure/closet/secure_closet/hydroponics,/obj/effect/floor_decal/corner/lime/border{dir = 5},/turf/simulated/floor/tiled,/area/hydroponics) +"auL" = (/obj/structure/sink{dir = 4; icon_state = "sink"; pixel_x = 11; pixel_y = 0},/obj/effect/floor_decal/corner/mauve/border{dir = 4},/turf/simulated/floor/tiled,/area/rnd/xenobiology/xenoflora) +"auM" = (/obj/machinery/botany/extractor,/obj/machinery/light{dir = 8; icon_state = "tube1"},/obj/effect/floor_decal/corner/mauve/border{dir = 8},/turf/simulated/floor/tiled,/area/rnd/xenobiology/xenoflora) +"auN" = (/obj/structure/table/glass,/obj/item/weapon/storage/box/gloves{pixel_x = 4; pixel_y = 4},/obj/item/weapon/storage/box/syringes,/obj/item/weapon/storage/box/beakers{pixel_x = 2; pixel_y = 2},/turf/simulated/floor/tiled,/area/rnd/xenobiology/xenoflora) "auO" = (/obj/structure/bed/chair/wood,/obj/effect/floor_decal/corner/lime/border{dir = 4},/turf/simulated/floor/tiled/eris/cafe,/area/hydroponics) -"auP" = (/obj/structure/closet/secure_closet/hydroponics,/obj/effect/floor_decal/corner/lime/border{dir = 4},/turf/simulated/floor/tiled,/area/hydroponics) +"auP" = (/obj/structure/bed/chair/office/light,/obj/effect/landmark/start{name = "Xenobotanist"},/turf/simulated/floor/tiled,/area/rnd/xenobiology/xenoflora) "auQ" = (/obj/structure/table/woodentable,/obj/effect/floor_decal/corner/lime/border{dir = 4},/turf/simulated/floor/tiled/eris/cafe,/area/hydroponics) "auR" = (/obj/structure/grille,/obj/structure/window/reinforced/full,/obj/machinery/door/firedoor,/obj/structure/window/reinforced{dir = 4},/obj/structure/window/reinforced{dir = 1},/turf/simulated/floor/plating,/area/rnd/xenobiology/xenoflora) "auS" = (/obj/effect/floor_decal/corner/lightgrey{dir = 9},/obj/effect/floor_decal/corner/lightgrey{dir = 6},/obj/structure/table/standard,/obj/machinery/computer/security/telescreen/entertainment{desc = "Look's like it's set to the info station... I wonder what else is on?"; icon_state = "frame"; pixel_x = 0; pixel_y = 32},/turf/simulated/floor/tiled,/area/tether/surfacebase/surface_three_hall) -"auT" = (/obj/structure/table/standard{name = "plastic table frame"},/obj/item/weapon/material/knife,/obj/item/weapon/material/minihoe,/obj/item/weapon/material/minihoe,/obj/item/weapon/material/knife,/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/corner/lime/border{dir = 5},/turf/simulated/floor/tiled,/area/hydroponics) -"auU" = (/obj/machinery/door/airlock/freezer{name = "Service"; req_access = list(28)},/obj/machinery/door/firedoor/glass,/turf/simulated/floor/tiled,/area/hydroponics/cafegarden) +"auT" = (/obj/structure/table/glass,/obj/machinery/chemical_dispenser/xenoflora/full,/turf/simulated/floor/tiled,/area/rnd/xenobiology/xenoflora) +"auU" = (/obj/structure/disposalpipe/segment{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/grass,/area/hydroponics) "auV" = (/obj/structure/railing{dir = 4},/turf/simulated/open,/area/rnd/staircase/thirdfloor) "auW" = (/obj/structure/flora/pottedplant/stoutbush,/obj/effect/floor_decal/borderfloor{dir = 5},/obj/effect/floor_decal/corner/mauve/border{dir = 5},/obj/effect/floor_decal/borderfloor/corner2{dir = 4},/obj/effect/floor_decal/corner/mauve/bordercorner2{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 9},/turf/simulated/floor/tiled,/area/rnd/staircase/thirdfloor) "auX" = (/obj/machinery/hologram/holopad,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/tiled,/area/hallway/lower/third_south) "auY" = (/obj/structure/grille,/obj/structure/window/reinforced/full,/obj/machinery/door/firedoor,/turf/simulated/floor/plating,/area/rnd/research) "auZ" = (/obj/machinery/door/firedoor/glass/hidden/steel,/turf/simulated/floor/tiled,/area/hallway/lower/third_south) "ava" = (/obj/structure/disposalpipe/segment{dir = 4; icon_state = "pipe-c"},/turf/simulated/floor/tiled,/area/hallway/lower/third_south) -"avb" = (/obj/effect/floor_decal/corner/lime/border{dir = 4},/obj/structure/closet/crate/hydroponics,/turf/simulated/floor/tiled,/area/tether/surfacebase/outside/outside3) -"avc" = (/obj/structure/sign/directions/evac{dir = 1},/turf/simulated/wall,/area/library) +"avb" = (/obj/structure/table/glass,/obj/item/weapon/storage/box/beakers{pixel_x = 2; pixel_y = 2},/obj/item/weapon/storage/box/syringes,/obj/item/weapon/storage/box/gloves{pixel_x = 4; pixel_y = 4},/obj/effect/floor_decal/corner/mauve/bordercorner,/turf/simulated/floor/tiled,/area/rnd/xenobiology/xenoflora) +"avc" = (/obj/machinery/smartfridge/drying_rack,/obj/effect/floor_decal/corner/mauve/border,/turf/simulated/floor/tiled,/area/rnd/xenobiology/xenoflora) "avd" = (/obj/structure/grille,/obj/structure/window/reinforced/full,/obj/machinery/door/firedoor,/obj/structure/disposalpipe/segment{dir = 8},/turf/simulated/floor/plating,/area/crew_quarters/kitchen) -"ave" = (/obj/machinery/door/airlock{name = "Service"; req_one_access = list(35,28)},/obj/machinery/door/firedoor/glass,/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/tiled,/area/hydroponics) -"avf" = (/obj/structure/disposalpipe/segment,/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/lino,/area/maintenance/lower/atrium) +"ave" = (/obj/machinery/biogenerator,/obj/effect/floor_decal/corner/mauve/border{dir = 6},/turf/simulated/floor/tiled,/area/rnd/xenobiology/xenoflora) +"avf" = (/obj/effect/floor_decal/corner/mauve/border{dir = 8},/obj/structure/extinguisher_cabinet{dir = 4; icon_state = "extinguisher_closed"; pixel_x = -30},/turf/simulated/floor/tiled,/area/rnd/xenobiology/xenoflora) "avg" = (/obj/structure/table/glass,/obj/structure/window/reinforced{dir = 8},/obj/effect/floor_decal/corner/lime/border{dir = 9},/obj/item/weapon/packageWrap,/obj/item/device/destTagger{pixel_x = 4; pixel_y = 3},/turf/simulated/floor/tiled,/area/hydroponics) "avh" = (/obj/machinery/door/blast/shutters{dir = 2; id = "kitchen"; layer = 3.3; name = "Kitchen Shutters"},/obj/machinery/door/firedoor/glass,/obj/effect/floor_decal/spline/plain{dir = 9},/obj/machinery/recharger,/turf/simulated/floor/tiled/white,/area/crew_quarters/kitchen) "avi" = (/obj/machinery/door/blast/shutters{dir = 2; id = "kitchen"; layer = 3.3; name = "Kitchen Shutters"},/obj/machinery/door/firedoor/glass,/obj/effect/floor_decal/spline/plain{dir = 1},/turf/simulated/floor/tiled/white,/area/crew_quarters/kitchen) @@ -1107,7 +1107,7 @@ "avo" = (/obj/structure/table/reinforced,/obj/machinery/door/blast/shutters{dir = 2; id = "kitchen"; layer = 3.3; name = "Kitchen Shutters"},/obj/machinery/door/firedoor/glass,/obj/effect/floor_decal/spline/plain{dir = 1},/turf/simulated/floor/tiled/white,/area/crew_quarters/kitchen) "avp" = (/obj/structure/table/reinforced,/obj/machinery/door/blast/shutters{dir = 2; id = "kitchen"; layer = 3.3; name = "Kitchen Shutters"},/obj/machinery/door/firedoor/glass,/obj/effect/floor_decal/spline/plain{dir = 5},/obj/item/weapon/reagent_containers/food/condiment/small/peppermill{pixel_x = 3},/obj/item/weapon/reagent_containers/food/condiment/small/saltshaker{pixel_x = -3; pixel_y = 0},/turf/simulated/floor/tiled/white,/area/crew_quarters/kitchen) "avq" = (/obj/structure/disposalpipe/segment{dir = 8},/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/grass,/area/hydroponics) -"avr" = (/obj/random/cutout,/turf/simulated/floor/lino,/area/maintenance/lower/atrium) +"avr" = (/obj/machinery/atmospherics/pipe/manifold/hidden/supply,/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,/turf/simulated/floor/grass,/area/hydroponics) "avs" = (/obj/effect/floor_decal/borderfloorblack{dir = 1},/obj/effect/floor_decal/industrial/danger{dir = 1},/obj/machinery/alarm{dir = 1; pixel_y = -22},/turf/simulated/floor/tiled,/area/tether/surfacebase/shuttle_pad) "avt" = (/obj/structure/table/standard,/obj/item/weapon/stock_parts/micro_laser,/obj/item/weapon/stock_parts/micro_laser,/obj/item/weapon/stock_parts/manipulator,/obj/item/weapon/stock_parts/manipulator,/obj/effect/floor_decal/borderfloor{dir = 8; icon_state = "borderfloor"; pixel_x = 0},/obj/effect/floor_decal/corner/mauve/border{dir = 8},/turf/simulated/floor/tiled,/area/rnd/research) "avu" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/effect/floor_decal/industrial/warning{dir = 4},/turf/simulated/floor/tiled/steel_grid,/area/rnd/research) @@ -1117,14 +1117,14 @@ "avy" = (/obj/effect/floor_decal/corner/beige{dir = 9},/obj/effect/floor_decal/spline/plain{dir = 8},/obj/item/weapon/stool/padded,/turf/simulated/floor/tiled/white,/area/crew_quarters/kitchen) "avz" = (/obj/item/weapon/stool/padded,/turf/simulated/floor/tiled/white,/area/crew_quarters/kitchen) "avA" = (/obj/item/weapon/stool/padded,/obj/effect/floor_decal/corner/beige{icon_state = "corner_white"; dir = 6},/obj/effect/floor_decal/spline/plain{dir = 4},/obj/machinery/computer/guestpass{dir = 8; pixel_x = 25},/turf/simulated/floor/tiled/white,/area/crew_quarters/kitchen) -"avB" = (/obj/effect/floor_decal/borderfloor{dir = 4},/obj/effect/floor_decal/corner/mauve/border{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/yellow{dir = 10},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 10},/obj/machinery/power/apc{dir = 4; name = "east bump"; pixel_x = 28},/obj/structure/cable/green{icon_state = "0-8"},/obj/machinery/light{dir = 4; icon_state = "tube1"},/turf/simulated/floor/tiled,/area/rnd/xenobiology/xenoflora) +"avB" = (/obj/structure/disposalpipe/segment,/obj/effect/floor_decal/corner/mauve/bordercorner,/turf/simulated/floor/tiled,/area/rnd/xenobiology/xenoflora) "avC" = (/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled,/area/hallway/lower/third_south) "avD" = (/obj/effect/floor_decal/corner/grey/diagonal,/obj/machinery/vending/dinnerware{icon_state = "dinnerware"; dir = 1},/turf/simulated/floor/tiled/white,/area/crew_quarters/kitchen) -"avE" = (/obj/random/cutout,/obj/machinery/alarm{dir = 4; icon_state = "alarm0"; pixel_x = -22},/turf/simulated/floor/lino,/area/maintenance/lower/atrium) +"avE" = (/obj/structure/table/glass,/obj/machinery/reagentgrinder,/obj/effect/floor_decal/corner/mauve/border,/turf/simulated/floor/tiled,/area/rnd/xenobiology/xenoflora) "avF" = (/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 1},/turf/simulated/floor/tiled/white,/area/crew_quarters/recreation_area_restroom) "avG" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled,/area/tether/surfacebase/surface_three_hall) "avH" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/disposalpipe/sortjunction{dir = 4; icon_state = "pipe-j1s"; name = "Hydroponics"; sortType = "Hydroponics"},/turf/simulated/floor/tiled,/area/tether/surfacebase/surface_three_hall) -"avI" = (/obj/structure/bed/chair/wood{dir = 4},/obj/machinery/light{dir = 1},/turf/simulated/floor/wood,/area/library) +"avI" = (/obj/machinery/chem_master,/obj/effect/floor_decal/corner/mauve/border,/turf/simulated/floor/tiled,/area/rnd/xenobiology/xenoflora) "avJ" = (/obj/effect/floor_decal/spline/plain{dir = 1},/obj/machinery/door/window/brigdoor/northleft{name = "Bar"; icon_state = "leftsecure"; dir = 8; req_access = list(25)},/obj/structure/extinguisher_cabinet{pixel_y = 32},/turf/simulated/floor/lino,/area/crew_quarters/bar) "avK" = (/obj/structure/grille,/obj/structure/window/reinforced/full,/obj/machinery/door/firedoor,/turf/simulated/floor/plating,/area/crew_quarters/bar) "avL" = (/obj/effect/floor_decal/corner/beige{dir = 10},/obj/effect/floor_decal/corner/beige{dir = 9},/obj/effect/floor_decal/spline/plain{dir = 10},/turf/simulated/floor/tiled/white,/area/crew_quarters/kitchen) @@ -1162,7 +1162,7 @@ "awr" = (/obj/machinery/light,/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 8},/turf/simulated/floor/tiled,/area/tether/surfacebase/surface_three_hall) "aws" = (/obj/machinery/light/small{dir = 1},/obj/structure/closet/secure_closet/bar{req_access = list(25)},/turf/simulated/floor/wood,/area/tether/surfacebase/bar_backroom) "awt" = (/obj/structure/closet/gmcloset{name = "formal wardrobe"},/obj/item/glass_jar,/obj/item/device/retail_scanner/civilian,/obj/item/device/retail_scanner/civilian,/turf/simulated/floor/wood,/area/tether/surfacebase/bar_backroom) -"awu" = (/obj/structure/disposalpipe/segment,/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,/obj/machinery/door/firedoor/glass,/obj/machinery/door/airlock/maintenance/int{name = "Entertainment Backroom"; req_one_access = list()},/turf/simulated/floor/plating,/area/maintenance/lower/atrium) +"awu" = (/obj/structure/table/glass,/obj/effect/floor_decal/corner/mauve/border,/turf/simulated/floor/tiled,/area/rnd/xenobiology/xenoflora) "awv" = (/obj/effect/floor_decal/corner/grey/diagonal,/obj/machinery/firealarm{dir = 1; pixel_x = 0; pixel_y = -25},/obj/machinery/disposal,/obj/structure/disposalpipe/trunk{dir = 8},/turf/simulated/floor/tiled/white,/area/crew_quarters/kitchen) "aww" = (/obj/structure/reagent_dispensers/beerkeg,/turf/simulated/floor/wood,/area/tether/surfacebase/bar_backroom) "awx" = (/obj/structure/disposalpipe/segment,/obj/machinery/vending/fitness,/obj/effect/floor_decal/borderfloor{dir = 5},/obj/effect/floor_decal/corner/mauve/border{dir = 5},/obj/effect/floor_decal/borderfloor/corner2{dir = 4},/obj/effect/floor_decal/corner/mauve/bordercorner2{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 9},/turf/simulated/floor/tiled,/area/rnd/research/researchdivision) @@ -1177,14 +1177,14 @@ "awG" = (/obj/structure/disposalpipe/segment,/obj/effect/floor_decal/borderfloor/corner{dir = 8},/obj/effect/floor_decal/corner/lightgrey/bordercorner{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 6},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 1},/turf/simulated/floor/tiled,/area/hallway/lower/third_south) "awH" = (/obj/structure/disposalpipe/segment,/obj/effect/floor_decal/borderfloor{dir = 4},/obj/effect/floor_decal/corner/lightgrey/border{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 10},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 9},/turf/simulated/floor/tiled,/area/hallway/lower/third_south) "awI" = (/obj/machinery/door/firedoor/glass,/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/door/airlock/glass_security{id_tag = "SurfaceFoyer"; layer = 2.8; name = "Security"; req_access = list(1)},/obj/machinery/door/blast/regular{density = 0; dir = 1; icon_state = "pdoor0"; id = "surfbriglockdown"; layer = 1; name = "Security Blast Doors"; opacity = 0; open_layer = 1},/obj/structure/cable/green{icon_state = "4-8"},/turf/simulated/floor/tiled/steel_grid,/area/tether/surfacebase/security/lobby) -"awJ" = (/turf/simulated/wall,/area/maintenance/lower/atrium) +"awJ" = (/obj/machinery/reagentgrinder,/obj/structure/table/glass,/obj/effect/floor_decal/corner/mauve/border{dir = 6},/turf/simulated/floor/tiled,/area/rnd/xenobiology/xenoflora) "awK" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 6},/turf/simulated/floor/tiled,/area/rnd/research) "awL" = (/obj/machinery/light/small{dir = 4},/obj/machinery/recharge_station,/turf/simulated/floor/tiled/white,/area/crew_quarters/recreation_area_restroom) "awM" = (/obj/machinery/light/small{dir = 4},/obj/structure/toilet{dir = 1},/turf/simulated/floor/tiled/white,/area/crew_quarters/recreation_area_restroom) -"awN" = (/obj/structure/sign/directions/medical{dir = 4; pixel_y = 8},/obj/structure/sign/directions/science{dir = 8; pixel_y = 3},/obj/structure/sign/directions/security{dir = 8; pixel_y = -4},/obj/structure/sign/directions/engineering{dir = 8; pixel_y = -10},/turf/simulated/wall,/area/maintenance/lower/atrium) +"awN" = (/obj/structure/grille,/obj/structure/window/reinforced/full,/obj/machinery/door/firedoor,/obj/structure/window/reinforced{dir = 1},/obj/structure/window/reinforced{dir = 8},/turf/simulated/floor/plating,/area/rnd/xenobiology/xenoflora) "awO" = (/obj/effect/floor_decal/borderfloor{dir = 4},/obj/effect/floor_decal/corner/mauve/border{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 9},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 10},/turf/simulated/floor/tiled,/area/rnd/staircase/thirdfloor) "awP" = (/turf/simulated/wall,/area/hydroponics) -"awQ" = (/obj/structure/disposalpipe/segment{dir = 8},/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/tiled,/area/crew_quarters/kitchen) +"awQ" = (/obj/structure/sink{dir = 4; icon_state = "sink"; pixel_x = 11; pixel_y = 0},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/grass,/area/hydroponics) "awR" = (/obj/structure/bed/chair/wood{dir = 1},/obj/effect/floor_decal/corner/lime/border{dir = 4},/turf/simulated/floor/tiled/eris/cafe,/area/hydroponics) "awS" = (/obj/effect/floor_decal/borderfloor/corner{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 6},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 1},/obj/machinery/atmospherics/unary/vent_pump/on{dir = 4},/turf/simulated/floor/tiled,/area/tether/surfacebase/surface_three_hall) "awT" = (/obj/machinery/disposal,/obj/structure/disposalpipe/trunk,/turf/simulated/floor/wood,/area/tether/surfacebase/bar_backroom) @@ -1206,19 +1206,19 @@ "axj" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 5},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 5},/obj/effect/floor_decal/industrial/warning/corner{dir = 4},/turf/simulated/floor/tiled/steel_grid,/area/rnd/research) "axk" = (/obj/structure/sign/department/biblio,/turf/simulated/wall,/area/library) "axl" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 10},/obj/effect/floor_decal/industrial/warning{dir = 1; icon_state = "warning"},/turf/simulated/floor/tiled/steel_grid,/area/rnd/research) -"axm" = (/obj/structure/bed/chair/wood,/obj/machinery/light{dir = 1},/turf/simulated/floor/wood,/area/library) +"axm" = (/obj/structure/grille,/obj/structure/window/reinforced/full,/obj/machinery/door/firedoor,/obj/structure/window/reinforced{dir = 4},/obj/structure/window/reinforced,/turf/simulated/floor/plating,/area/rnd/xenobiology/xenoflora) "axn" = (/obj/effect/floor_decal/spline/plain{dir = 1},/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/tiled/eris/cafe,/area/hydroponics) "axo" = (/obj/structure/bed/chair/comfy,/obj/effect/landmark/start{name = "Bartender"},/obj/structure/disposalpipe/segment,/turf/simulated/floor/wood,/area/tether/surfacebase/bar_backroom) "axp" = (/obj/structure/table/woodentable,/obj/item/weapon/storage/box/beanbags,/obj/item/weapon/gun/projectile/shotgun/doublebarrel,/obj/item/weapon/paper{info = "This permit signifies that the Bartender is permitted to posess this firearm in the bar, and ONLY the bar. Failure to adhere to this permit will result in confiscation of the weapon and possibly arrest."; name = "Shotgun permit"},/obj/machinery/light_switch{pixel_x = 25},/turf/simulated/floor/wood,/area/tether/surfacebase/bar_backroom) "axq" = (/obj/structure/table/woodentable,/obj/structure/disposalpipe/segment,/turf/simulated/floor/wood,/area/tether/surfacebase/bar_backroom) -"axr" = (/obj/structure/cable/green{d1 = 1; d2 = 4; icon_state = "1-4"},/turf/simulated/floor/tiled,/area/crew_quarters/kitchen) -"axs" = (/obj/item/device/instrument/violin,/obj/structure/table/rack/steel,/obj/effect/floor_decal/spline/plain{dir = 5},/turf/simulated/floor/lino,/area/library) +"axr" = (/obj/effect/floor_decal/corner/mauve/border{dir = 10},/obj/machinery/smartfridge,/obj/effect/floor_decal/corner/mauve/border{dir = 10},/turf/simulated/floor/tiled,/area/rnd/xenobiology/xenoflora) +"axs" = (/obj/effect/floor_decal/corner/mauve/border,/turf/simulated/floor/tiled,/area/rnd/xenobiology/xenoflora) "axt" = (/obj/structure/table/woodentable,/obj/item/weapon/packageWrap,/obj/item/device/destTagger{pixel_x = 4; pixel_y = 3},/turf/simulated/floor/wood,/area/tether/surfacebase/bar_backroom) "axu" = (/obj/structure/table/woodentable,/obj/machinery/reagentgrinder,/turf/simulated/floor/wood,/area/tether/surfacebase/bar_backroom) "axv" = (/obj/effect/floor_decal/borderfloor{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 5},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 6},/obj/machinery/door/firedoor/glass,/obj/machinery/door/airlock/glass,/turf/simulated/floor/tiled,/area/hallway/lower/third_south) "axw" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/effect/floor_decal/borderfloor{dir = 4},/obj/effect/floor_decal/corner/beige/border{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 10},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 9},/turf/simulated/floor/tiled,/area/hallway/lower/third_south) "axx" = (/obj/structure/table/woodentable,/obj/item/weapon/flame/lighter/zippo,/obj/item/clothing/head/that{pixel_x = 4; pixel_y = 6},/obj/item/weapon/tool/screwdriver,/obj/item/clothing/mask/smokable/cigarette/cigar/havana,/obj/item/clothing/mask/smokable/cigarette/cigar/cohiba,/turf/simulated/floor/wood,/area/tether/surfacebase/bar_backroom) -"axy" = (/obj/machinery/door/airlock{name = "Bar Backroom"; req_access = list(25)},/obj/machinery/door/firedoor/glass,/turf/simulated/floor/tiled/techmaint,/area/tether/surfacebase/bar_backroom) +"axy" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/wood,/area/tether/surfacebase/bar_backroom) "axz" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 10},/obj/effect/floor_decal/industrial/warning{dir = 1; icon_state = "warning"},/turf/simulated/floor/tiled/steel_grid,/area/rnd/research) "axA" = (/obj/effect/floor_decal/industrial/warning/corner{dir = 1},/turf/simulated/floor/tiled/steel_grid,/area/rnd/research) "axB" = (/obj/machinery/atmospherics/unary/vent_pump/on{dir = 1},/turf/simulated/floor/tiled/techmaint,/area/tether/surfacebase/shuttle_pad) @@ -1236,23 +1236,23 @@ "axN" = (/obj/structure/disposalpipe/segment,/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 8},/turf/simulated/floor/tiled,/area/rnd/research/researchdivision) "axO" = (/obj/structure/railing,/turf/simulated/open,/area/rnd/staircase/thirdfloor) "axP" = (/obj/machinery/holoplant,/obj/effect/floor_decal/borderfloorblack{dir = 8},/obj/machinery/camera/network/research{dir = 5; icon_state = "camera"},/turf/simulated/floor/tiled,/area/rnd/outpost/xenobiology/outpost_hallway) -"axQ" = (/obj/structure/sign/directions/medical{dir = 4; pixel_y = 8},/obj/structure/sign/directions/science{dir = 8; pixel_y = 3},/obj/structure/sign/directions/security{dir = 8; pixel_y = -4},/obj/structure/sign/directions/engineering{dir = 8; pixel_y = -10},/turf/simulated/wall,/area/library) +"axQ" = (/obj/machinery/disposal,/obj/structure/disposalpipe/trunk{dir = 1},/obj/effect/floor_decal/corner/mauve/border{dir = 6},/turf/simulated/floor/tiled,/area/rnd/xenobiology/xenoflora) "axR" = (/obj/structure/disposalpipe/segment,/obj/effect/floor_decal/borderfloor{dir = 8},/obj/effect/floor_decal/corner/mauve/border{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 6},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 5},/turf/simulated/floor/tiled,/area/hallway/lower/third_south) "axS" = (/obj/machinery/door/airlock/multi_tile/glass{name = "Library"},/obj/effect/floor_decal/steeldecal/steel_decals_central1{dir = 8},/obj/machinery/door/firedoor/glass,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/tiled/monofloor{dir = 8},/area/library) "axT" = (/obj/machinery/door/firedoor/glass,/obj/effect/floor_decal/steeldecal/steel_decals_central1{dir = 4},/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled/monofloor{dir = 4},/area/library) "axU" = (/obj/structure/bookcase{desc = "There appears to be a shrine to WGW at the back..."; name = "Forbidden Knowledge"},/obj/item/weapon/book/manual/engineering_hacking,/obj/item/weapon/book/manual/nuclear,/turf/simulated/floor/carpet,/area/tether/surfacebase/library/study) "axV" = (/obj/machinery/alarm{pixel_y = 22},/obj/structure/closet,/obj/item/clothing/under/suit_jacket/red,/obj/item/weapon/barcodescanner,/obj/item/weapon/pen/invisible,/obj/item/weapon/pen/invisible,/obj/item/weapon/pen/invisible,/turf/simulated/floor/carpet,/area/tether/surfacebase/library/study) "axW" = (/obj/structure/table/rack{dir = 8; layer = 2.9},/obj/item/weapon/storage/briefcase{pixel_x = -2; pixel_y = -5},/obj/item/weapon/storage/briefcase{pixel_x = 3; pixel_y = 0},/turf/simulated/floor/carpet,/area/tether/surfacebase/library/study) -"axX" = (/obj/machinery/light{dir = 8},/obj/item/device/radio/intercom{dir = 8; name = "Stagehand Mic"; pixel_x = -24},/turf/simulated/floor/lino,/area/library) -"axY" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/cable/green{d1 = 2; d2 = 8; icon_state = "2-8"},/turf/simulated/floor/wood,/area/crew_quarters/bar) -"axZ" = (/obj/machinery/light/small{dir = 1},/turf/simulated/floor/tiled/techmaint,/area/crew_quarters/barrestroom) +"axX" = (/obj/structure/grille,/obj/structure/window/reinforced/full,/obj/machinery/door/firedoor,/obj/structure/window/reinforced{dir = 1},/obj/structure/window/reinforced{dir = 8; icon_state = "rwindow"},/turf/simulated/floor/plating,/area/rnd/xenobiology/xenoflora) +"axY" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/wood,/area/tether/surfacebase/bar_backroom) +"axZ" = (/obj/effect/floor_decal/spline/plain{dir = 8; icon_state = "spline_plain"},/obj/item/weapon/stool/padded,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 6},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 6},/turf/simulated/floor/lino,/area/crew_quarters/bar) "aya" = (/obj/machinery/alarm{dir = 4; icon_state = "alarm0"; pixel_x = -22; pixel_y = 0},/turf/simulated/floor/tiled/white,/area/crew_quarters/barrestroom) "ayb" = (/turf/simulated/floor/tiled/white,/area/crew_quarters/barrestroom) "ayc" = (/obj/machinery/vending/wallmed1/public{pixel_y = 28},/turf/simulated/floor/tiled/white,/area/crew_quarters/barrestroom) "ayd" = (/obj/machinery/light/small{dir = 1},/turf/simulated/floor/tiled/white,/area/crew_quarters/barrestroom) "aye" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled,/area/hallway/lower/third_south) -"ayf" = (/obj/machinery/firealarm{dir = 2; layer = 3.3; pixel_x = 0; pixel_y = 26},/turf/simulated/floor/tiled/white,/area/crew_quarters/barrestroom) -"ayg" = (/obj/structure/disposalpipe/segment,/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/tiled,/area/crew_quarters/kitchen) +"ayf" = (/obj/structure/table/marble,/obj/machinery/door/blast/shutters{dir = 8; id = "bar"; layer = 3.3; name = "Bar Shutters"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/lino,/area/crew_quarters/bar) +"ayg" = (/obj/structure/grille,/obj/structure/window/reinforced/full,/obj/machinery/door/firedoor,/obj/structure/window/reinforced{dir = 4},/turf/simulated/floor/plating,/area/rnd/xenobiology/xenoflora) "ayh" = (/obj/machinery/door/airlock{name = "Unit 3"},/turf/simulated/floor/tiled/white,/area/crew_quarters/barrestroom) "ayi" = (/obj/structure/disposalpipe/sortjunction{name = "Research"; sortType = "Research"},/turf/simulated/floor/plating,/area/rnd/research_storage) "ayj" = (/obj/effect/floor_decal/borderfloor{dir = 6},/obj/effect/floor_decal/corner/mauve/border{dir = 6},/turf/simulated/floor/tiled,/area/rnd/research) @@ -1281,10 +1281,10 @@ "ayG" = (/obj/effect/floor_decal/spline/plain{dir = 8},/obj/effect/floor_decal/spline/plain{dir = 1},/turf/simulated/floor/grass,/area/hydroponics) "ayH" = (/obj/structure/disposalpipe/segment,/obj/effect/floor_decal/borderfloor{dir = 4},/obj/effect/floor_decal/corner/mauve/border{dir = 4},/obj/effect/floor_decal/borderfloor/corner2{dir = 6},/obj/effect/floor_decal/corner/mauve/bordercorner2{dir = 6},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 9},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 10},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled,/area/rnd/research/researchdivision) "ayI" = (/obj/effect/floor_decal/spline/plain{dir = 1},/turf/simulated/floor/grass,/area/hydroponics) -"ayJ" = (/obj/structure/lattice,/turf/simulated/open,/area/crew_quarters/barrestroom) -"ayK" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/tiled,/area/crew_quarters/kitchen) +"ayJ" = (/obj/machinery/light/small{dir = 1},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 6},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 6},/turf/simulated/floor/tiled/techmaint,/area/vacant/vacant_bar_upper) +"ayK" = (/obj/machinery/door/airlock/glass_research{name = "Xenoflora Research"; req_access = list(77); req_one_access = list(77)},/obj/machinery/door/firedoor,/turf/simulated/floor/tiled,/area/rnd/xenobiology/xenoflora) "ayL" = (/obj/structure/bed/chair/wood,/turf/simulated/floor/tiled/eris/cafe,/area/hydroponics) -"ayM" = (/obj/structure/railing{dir = 4},/obj/effect/floor_decal/industrial/warning/corner{dir = 1; icon_state = "warningcorner"},/turf/simulated/floor/tiled/techmaint,/area/crew_quarters/barrestroom) +"ayM" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 9},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 9},/turf/simulated/floor/tiled/techmaint,/area/vacant/vacant_bar_upper) "ayN" = (/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/rnd/staircase/thirdfloor) "ayO" = (/obj/structure/disposalpipe/segment{dir = 1; icon_state = "pipe-c"},/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/cable/green{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 8},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 8},/turf/simulated/floor/tiled,/area/rnd/research/researchdivision) "ayP" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 10},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled,/area/rnd/staircase/thirdfloor) @@ -1313,15 +1313,15 @@ "azm" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 6},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/carpet,/area/tether/surfacebase/library/study) "azn" = (/obj/random/tech_supply,/obj/structure/table/steel,/obj/random/maintenance/engineering,/obj/item/stack/cable_coil/random,/obj/machinery/light/small{dir = 4},/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/plating,/area/maintenance/substation/bar{name = "\improper Surface Civilian Substation"}) "azo" = (/turf/simulated/wall,/area/rnd/research/researchdivision) -"azp" = (/obj/structure/table/woodentable,/obj/item/weapon/flame/candle,/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/wood,/area/library) +"azp" = (/obj/structure/grille,/obj/structure/window/reinforced/full,/obj/machinery/door/firedoor,/obj/structure/window/reinforced,/obj/structure/window/reinforced{dir = 4},/turf/simulated/floor/plating,/area/rnd/xenobiology/xenoflora) "azq" = (/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/corner/mauve/border,/obj/effect/floor_decal/borderfloor/corner2{dir = 9},/obj/effect/floor_decal/corner/mauve/bordercorner2{dir = 9},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 1},/turf/simulated/floor/tiled,/area/rnd/research/researchdivision) "azr" = (/obj/structure/bed/chair/wood{dir = 4},/obj/machinery/firealarm{dir = 8; pixel_x = -24; pixel_y = 0},/obj/structure/cable/green{icon_state = "1-2"},/turf/simulated/floor/tiled,/area/rnd/outpost/xenobiology/outpost_breakroom) -"azs" = (/obj/machinery/door/airlock/maintenance/common,/obj/machinery/door/firedoor/glass,/turf/simulated/floor/tiled/techmaint,/area/crew_quarters/barrestroom) -"azt" = (/turf/simulated/floor/tiled/eris/steel/bar_dance,/area/crew_quarters/barrestroom) +"azs" = (/obj/structure/cable/green{icon_state = "2-4"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/lino,/area/crew_quarters/bar) +"azt" = (/turf/simulated/wall,/area/vacant/vacant_bar_upper) "azu" = (/obj/effect/floor_decal/borderfloorwhite,/obj/effect/floor_decal/corner/paleblue/border,/obj/effect/floor_decal/borderfloorwhite/corner2{dir = 9},/obj/effect/floor_decal/corner/paleblue/bordercorner2{dir = 9},/obj/machinery/mech_recharger,/turf/simulated/floor/tiled/white,/area/tether/surfacebase/medical/triage) "azv" = (/obj/structure/sign/double/barsign{dir = 8},/turf/simulated/wall,/area/crew_quarters/bar) "azw" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 5},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 8},/turf/simulated/floor/tiled,/area/rnd/research/researchdivision) -"azx" = (/obj/machinery/light/small{dir = 1},/turf/simulated/floor/tiled/eris/steel/bar_dance,/area/crew_quarters/barrestroom) +"azx" = (/obj/structure/disposalpipe/segment{dir = 1; icon_state = "pipe-c"},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/lino,/area/crew_quarters/bar) "azy" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable/green{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 1},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 1},/turf/simulated/floor/tiled,/area/rnd/research/researchdivision) "azz" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/manifold/hidden/supply,/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled,/area/rnd/research/researchdivision) "azA" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/turf/simulated/floor/tiled,/area/rnd/research/researchdivision) @@ -1347,21 +1347,21 @@ "azU" = (/obj/machinery/light_switch{dir = 1; pixel_x = 0; pixel_y = -28},/turf/simulated/floor/tiled,/area/rnd/outpost/xenobiology/outpost_breakroom) "azV" = (/obj/structure/table/woodentable,/obj/item/device/camera_film,/obj/item/device/camera_film,/obj/item/device/taperecorder,/turf/simulated/floor/carpet,/area/library) "azW" = (/obj/structure/cable/green{d1 = 2; d2 = 8; icon_state = "2-8"},/turf/simulated/floor/wood,/area/library) -"azX" = (/obj/effect/floor_decal/spline/plain{dir = 4},/turf/simulated/floor/lino,/area/library) -"azY" = (/obj/machinery/firealarm{dir = 2; layer = 3.3; pixel_x = 0; pixel_y = 26},/obj/machinery/vending/loadout/accessory,/turf/simulated/floor/lino,/area/maintenance/lower/atrium) -"azZ" = (/obj/structure/bed/chair/comfy/beige,/turf/simulated/floor/tiled/eris/steel/bar_dance,/area/crew_quarters/barrestroom) -"aAa" = (/obj/structure/bed/chair/comfy/beige{icon_state = "comfychair"; dir = 4},/turf/simulated/floor/tiled/eris/steel/bar_light,/area/crew_quarters/barrestroom) -"aAb" = (/obj/structure/table/gamblingtable,/turf/simulated/floor/tiled/eris/steel/bar_dance,/area/crew_quarters/barrestroom) -"aAc" = (/obj/structure/table/gamblingtable,/obj/item/weapon/storage/pill_bottle/dice,/turf/simulated/floor/tiled/eris/steel/bar_dance,/area/crew_quarters/barrestroom) +"azX" = (/obj/structure/grille,/obj/structure/window/reinforced/full,/obj/machinery/door/firedoor,/obj/structure/window/reinforced{dir = 8},/obj/structure/window/reinforced,/turf/simulated/floor/plating,/area/tether/surfacebase/botanystorage) +"azY" = (/obj/structure/grille,/obj/structure/window/reinforced/full,/obj/machinery/door/firedoor,/obj/structure/window/reinforced,/obj/structure/window/reinforced{dir = 1},/turf/simulated/floor/plating,/area/tether/surfacebase/botanystorage) +"azZ" = (/obj/machinery/requests_console{pixel_x = 32; pixel_y = -32},/obj/structure/disposalpipe/segment{dir = 8},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/lino,/area/crew_quarters/bar) +"aAa" = (/obj/effect/decal/cleanable/dirt,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/tiled/techmaint,/area/vacant/vacant_bar_upper) +"aAb" = (/obj/machinery/light/small{dir = 1},/obj/effect/decal/cleanable/dirt,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 6},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 6},/turf/simulated/floor/tiled/techmaint,/area/vacant/vacant_bar_upper) +"aAc" = (/obj/effect/decal/cleanable/dirt,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 9},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 9},/turf/simulated/floor/tiled/techmaint,/area/vacant/vacant_bar_upper) "aAd" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 6},/turf/simulated/floor/tiled,/area/hallway/lower/third_south) -"aAe" = (/obj/structure/bed/chair/comfy/beige{icon_state = "comfychair"; dir = 8},/turf/simulated/floor/tiled/eris/steel/bar_light,/area/crew_quarters/barrestroom) +"aAe" = (/obj/effect/floor_decal/industrial/warning,/obj/machinery/light/small{dir = 1},/obj/effect/decal/cleanable/dirt,/obj/effect/decal/cleanable/generic,/turf/simulated/floor/tiled/techmaint,/area/vacant/vacant_bar_upper) "aAf" = (/obj/structure/cable/green{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/effect/floor_decal/borderfloor{dir = 4},/obj/effect/floor_decal/corner/beige/border{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 10},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 9},/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/camera/network/tether{dir = 9},/turf/simulated/floor/tiled,/area/hallway/lower/third_south) "aAg" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/door/firedoor/glass/hidden/steel,/turf/simulated/floor/tiled,/area/rnd/research/researchdivision) "aAh" = (/obj/structure/grille,/obj/structure/window/reinforced/full,/obj/machinery/door/firedoor,/obj/structure/window/reinforced{dir = 4},/obj/structure/window/reinforced{dir = 8},/turf/simulated/floor/plating,/area/rnd/xenobiology/xenoflora) -"aAi" = (/obj/structure/bed/chair/comfy/beige{icon_state = "comfychair"; dir = 4},/turf/simulated/floor/tiled/eris/steel/bar_dance,/area/crew_quarters/barrestroom) -"aAj" = (/obj/structure/table/gamblingtable,/obj/item/weapon/storage/pill_bottle/dice_nerd,/turf/simulated/floor/tiled/eris/steel/bar_dance,/area/crew_quarters/barrestroom) +"aAi" = (/obj/structure/railing{dir = 4},/obj/effect/floor_decal/industrial/warning/corner{dir = 8},/obj/effect/decal/cleanable/dirt,/obj/effect/decal/cleanable/generic,/turf/simulated/floor/tiled/techmaint,/area/vacant/vacant_bar_upper) +"aAj" = (/obj/structure/closet/firecloset,/turf/simulated/floor/tiled/techmaint,/area/vacant/vacant_bar_upper) "aAk" = (/obj/structure/flora/pottedplant/unusual,/obj/machinery/firealarm{dir = 4; layer = 3.3; pixel_x = 26},/obj/machinery/camera/network/research{dir = 1},/turf/simulated/floor/wood,/area/rnd/outpost/xenobiology/outpost_office) -"aAl" = (/obj/structure/bed/chair/wood,/turf/simulated/floor/tiled/eris/steel/bar_dance,/area/crew_quarters/barrestroom) +"aAl" = (/obj/machinery/portable_atmospherics/powered/pump/filled,/turf/simulated/floor/tiled/techmaint,/area/vacant/vacant_bar_upper) "aAm" = (/obj/effect/floor_decal/borderfloor{dir = 1},/obj/effect/floor_decal/corner/mauve/border{dir = 1},/turf/simulated/floor/tiled,/area/rnd/research/researchdivision) "aAn" = (/obj/effect/floor_decal/corner/lightgrey{dir = 9},/obj/effect/floor_decal/corner/lightgrey{dir = 6},/obj/machinery/vending/cola{dir = 1},/turf/simulated/floor/tiled,/area/tether/surfacebase/surface_three_hall) "aAo" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 5},/turf/simulated/floor/tiled,/area/rnd/research/researchdivision) @@ -1373,27 +1373,27 @@ "aAu" = (/obj/machinery/alarm{dir = 8; icon_state = "alarm0"; pixel_x = 24},/obj/structure/disposalpipe/segment,/obj/effect/floor_decal/borderfloor{dir = 4},/obj/effect/floor_decal/corner/lightgrey/border{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 10},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 9},/turf/simulated/floor/tiled,/area/hallway/lower/third_south) "aAv" = (/obj/structure/disposalpipe/segment,/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 5},/obj/effect/floor_decal/borderfloor{dir = 8},/obj/effect/floor_decal/corner/mauve/border{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 6},/turf/simulated/floor/tiled,/area/hallway/lower/third_south) "aAw" = (/obj/structure/table/woodentable,/obj/item/device/taperecorder{pixel_y = 0},/obj/machinery/atmospherics/unary/vent_pump/on{dir = 1},/obj/machinery/newscaster{pixel_x = 0; pixel_y = -28},/obj/item/device/retail_scanner/civilian{dir = 1},/obj/item/device/camera,/obj/item/device/tape,/turf/simulated/floor/carpet,/area/tether/surfacebase/library/study) -"aAx" = (/obj/structure/table/gamblingtable,/obj/item/weapon/deck/cards,/turf/simulated/floor/tiled/eris/steel/bar_dance,/area/crew_quarters/barrestroom) +"aAx" = (/obj/effect/decal/cleanable/dirt,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 6},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 6},/turf/simulated/floor/tiled/techmaint,/area/vacant/vacant_bar_upper) "aAy" = (/obj/structure/table/woodentable,/obj/item/weapon/paper_bin{pixel_x = -3; pixel_y = 7},/obj/item/weapon/pen/invisible,/obj/machinery/light/small,/turf/simulated/floor/carpet,/area/tether/surfacebase/library/study) "aAz" = (/turf/simulated/floor/carpet,/area/library) "aAA" = (/obj/structure/table/woodentable,/obj/item/device/flashlight/lamp/green{pixel_x = 1; pixel_y = 5},/turf/simulated/floor/carpet,/area/library) "aAB" = (/turf/simulated/wall,/area/maintenance/substation/bar{name = "\improper Surface Civilian Substation"}) -"aAC" = (/obj/structure/disposalpipe/segment,/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/lino,/area/maintenance/lower/atrium) -"aAD" = (/obj/machinery/floodlight,/obj/machinery/light/small{dir = 4},/turf/simulated/floor/lino,/area/maintenance/lower/atrium) -"aAE" = (/obj/structure/bed/chair/comfy/beige{icon_state = "comfychair"; dir = 8},/turf/simulated/floor/tiled/eris/steel/bar_dance,/area/crew_quarters/barrestroom) -"aAF" = (/obj/machinery/light/small,/turf/simulated/floor/tiled/eris/steel/bar_dance,/area/crew_quarters/barrestroom) -"aAG" = (/obj/structure/bed/chair/comfy/beige{icon_state = "comfychair"; dir = 1},/turf/simulated/floor/tiled/eris/steel/bar_dance,/area/crew_quarters/barrestroom) -"aAH" = (/obj/structure/catwalk,/turf/simulated/open/virgo3b,/area/rnd/xenobiology/xenoflora) -"aAI" = (/obj/structure/railing{dir = 8},/turf/simulated/open/virgo3b,/area/rnd/xenobiology/xenoflora) -"aAJ" = (/turf/simulated/wall/r_wall,/area/tether/surfacebase/outside/outside3) -"aAK" = (/turf/simulated/floor/tiled,/area/tether/surfacebase/outside/outside3) +"aAC" = (/obj/structure/grille,/obj/structure/window/reinforced/full,/obj/machinery/door/firedoor,/obj/structure/window/reinforced{dir = 4},/obj/structure/window/reinforced{dir = 1},/turf/simulated/floor/plating,/area/tether/surfacebase/botanystorage) +"aAD" = (/obj/structure/grille,/obj/structure/window/reinforced/full,/obj/machinery/door/firedoor,/obj/structure/window/reinforced{dir = 8},/obj/structure/window/reinforced{dir = 4},/turf/simulated/floor/plating,/area/tether/surfacebase/botanystorage) +"aAE" = (/obj/effect/decal/cleanable/dirt,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled/techmaint,/area/vacant/vacant_bar_upper) +"aAF" = (/obj/machinery/light/small{dir = 1},/obj/effect/decal/cleanable/dirt,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled/techmaint,/area/vacant/vacant_bar_upper) +"aAG" = (/obj/effect/decal/cleanable/dirt,/obj/effect/decal/cleanable/spiderling_remains,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled/techmaint,/area/vacant/vacant_bar_upper) +"aAH" = (/obj/effect/floor_decal/corner/lime/border{dir = 9},/obj/machinery/disposal,/obj/structure/disposalpipe/trunk,/turf/simulated/floor/tiled,/area/tether/surfacebase/botanystorage) +"aAI" = (/obj/effect/floor_decal/corner/lime/border{dir = 1},/obj/machinery/atmospherics/unary/vent_pump/on{dir = 4},/turf/simulated/floor/tiled,/area/tether/surfacebase/botanystorage) +"aAJ" = (/obj/effect/floor_decal/corner/lime/border{dir = 1},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 10},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 6},/turf/simulated/floor/tiled,/area/tether/surfacebase/botanystorage) +"aAK" = (/obj/effect/floor_decal/corner/lime/border{dir = 1},/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 8},/turf/simulated/floor/tiled,/area/tether/surfacebase/botanystorage) "aAL" = (/obj/effect/floor_decal/borderfloor{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 5},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 6},/turf/simulated/floor/tiled,/area/hallway/lower/third_south) "aAM" = (/obj/structure/disposalpipe/segment,/obj/effect/floor_decal/borderfloor/corner{dir = 4},/obj/effect/floor_decal/corner/mauve/bordercorner{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 10},/obj/effect/floor_decal/steeldecal/steel_decals7,/turf/simulated/floor/tiled,/area/rnd/research/researchdivision) "aAN" = (/turf/simulated/open,/area/hallway/lower/third_south) "aAO" = (/obj/machinery/recharge_station,/obj/machinery/camera/network/research,/turf/simulated/floor/tiled,/area/rnd/outpost/xenobiology/outpost_breakroom) -"aAP" = (/obj/structure/reagent_dispensers/watertank,/obj/item/weapon/reagent_containers/glass/bucket,/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/corner/lime/border{dir = 10},/turf/simulated/floor/tiled,/area/hydroponics) -"aAQ" = (/obj/structure/railing{dir = 8},/obj/structure/railing,/turf/simulated/open/virgo3b,/area/rnd/xenobiology/xenoflora) -"aAR" = (/obj/structure/railing,/turf/simulated/open/virgo3b,/area/rnd/xenobiology/xenoflora) +"aAP" = (/obj/effect/floor_decal/corner/lime/border{dir = 1},/turf/simulated/floor/tiled,/area/tether/surfacebase/botanystorage) +"aAQ" = (/obj/effect/floor_decal/corner/lime/border{dir = 5},/turf/simulated/floor/tiled,/area/tether/surfacebase/botanystorage) +"aAR" = (/obj/structure/grille,/obj/structure/window/reinforced/full,/obj/machinery/door/firedoor,/obj/structure/window/reinforced{dir = 4},/obj/structure/window/reinforced{dir = 8},/turf/simulated/floor/plating,/area/tether/surfacebase/botanystorage) "aAS" = (/obj/machinery/light{dir = 1},/obj/effect/floor_decal/borderfloor{dir = 1; icon_state = "borderfloor"; pixel_y = 0},/obj/effect/floor_decal/corner/mauve/border{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals7,/turf/simulated/floor/tiled,/area/rnd/research/researchdivision) "aAT" = (/obj/structure/cable/green{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 5},/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled,/area/rnd/staircase/thirdfloor) "aAU" = (/obj/structure/bed/chair,/obj/machinery/firealarm{dir = 2; layer = 3.3; pixel_x = 0; pixel_y = 26},/obj/effect/floor_decal/borderfloor{dir = 1; icon_state = "borderfloor"; pixel_y = 0},/obj/effect/floor_decal/corner/mauve/border{dir = 1},/turf/simulated/floor/tiled/steel_grid,/area/assembly/robotics) @@ -1405,7 +1405,7 @@ "aBa" = (/obj/structure/table/standard,/obj/item/device/lightreplacer,/obj/item/weapon/storage/box/lights/mixed,/obj/item/weapon/storage/box/lights/mixed,/obj/machinery/power/apc{cell_type = /obj/item/weapon/cell/apc; dir = 8; name = "west bump"; pixel_x = -28},/obj/structure/cable/green{icon_state = "0-4"},/turf/simulated/floor/tiled/techmaint,/area/rnd/outpost/xenobiology/outpost_storage) "aBb" = (/obj/structure/table/reinforced,/obj/machinery/recharger/wallcharger{pixel_x = 4; pixel_y = 28},/obj/effect/floor_decal/borderfloor{dir = 1; icon_state = "borderfloor"; pixel_y = 0},/obj/effect/floor_decal/corner/mauve/border{dir = 1},/turf/simulated/floor/tiled,/area/rnd/research/testingrange) "aBc" = (/obj/machinery/recharger/wallcharger{pixel_x = 4; pixel_y = 28},/obj/effect/floor_decal/borderfloor{dir = 1; icon_state = "borderfloor"; pixel_y = 0},/obj/effect/floor_decal/corner/mauve/border{dir = 1},/obj/effect/floor_decal/borderfloor/corner2{dir = 1},/obj/effect/floor_decal/corner/mauve/bordercorner2{dir = 1},/turf/simulated/floor/tiled,/area/rnd/research/testingrange) -"aBd" = (/obj/structure/reagent_dispensers/watertank,/obj/item/weapon/reagent_containers/glass/bucket,/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/corner/lime/border{dir = 6},/turf/simulated/floor/tiled,/area/hydroponics) +"aBd" = (/obj/machinery/door/airlock/glass{name = "Hydroponics Storage"; req_one_access = list(35,28)},/obj/machinery/door/firedoor/glass,/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/tiled,/area/tether/surfacebase/botanystorage) "aBe" = (/obj/machinery/alarm{dir = 4; icon_state = "alarm0"; pixel_x = -22; pixel_y = 0},/obj/machinery/firealarm{dir = 1; pixel_y = -24},/obj/structure/flora/pottedplant/stoutbush,/obj/effect/floor_decal/borderfloor{dir = 10},/obj/effect/floor_decal/corner/mauve/border{dir = 10},/turf/simulated/floor/tiled,/area/rnd/staircase/thirdfloor) "aBf" = (/obj/machinery/hologram/holopad,/obj/machinery/camera/network/research/xenobio,/turf/simulated/floor/tiled/dark,/area/rnd/outpost/xenobiology/outpost_stairs) "aBg" = (/obj/structure/cable/green{icon_state = "0-4"},/obj/machinery/power/apc{dir = 2; name = "south bump"; pixel_y = -32},/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/corner/mauve/border,/obj/effect/floor_decal/borderfloor/corner2{dir = 9},/obj/effect/floor_decal/corner/mauve/bordercorner2{dir = 9},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 1},/turf/simulated/floor/tiled,/area/rnd/staircase/thirdfloor) @@ -1413,8 +1413,8 @@ "aBi" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/recharge_station,/obj/effect/floor_decal/borderfloor{dir = 1; icon_state = "borderfloor"; pixel_y = 0},/obj/effect/floor_decal/corner/mauve/border{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals7,/turf/simulated/floor/tiled,/area/rnd/research/researchdivision) "aBj" = (/obj/machinery/door/firedoor/glass,/obj/machinery/door/airlock/glass_research{name = "Research Staircase"},/obj/structure/disposalpipe/segment{dir = 4; icon_state = "pipe-c"},/turf/simulated/floor/tiled,/area/rnd/staircase/thirdfloor) "aBk" = (/obj/structure/extinguisher_cabinet{dir = 8; icon_state = "extinguisher_closed"; pixel_x = 30},/obj/structure/disposalpipe/segment,/obj/effect/floor_decal/borderfloor{dir = 4},/obj/effect/floor_decal/corner/lightgrey/border{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 10},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 9},/turf/simulated/floor/tiled,/area/hallway/lower/third_south) -"aBl" = (/obj/structure/table/woodentable,/obj/item/weapon/flame/candle,/turf/simulated/floor/wood,/area/library) -"aBm" = (/obj/machinery/door/firedoor/glass,/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/door/airlock/silver,/turf/simulated/floor/tiled/steel_grid,/area/library) +"aBl" = (/obj/effect/floor_decal/corner/lime/border{dir = 8},/obj/structure/disposalpipe/segment{dir = 8; icon_state = "pipe-c"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 8},/turf/simulated/floor/tiled,/area/tether/surfacebase/botanystorage) +"aBm" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 8},/turf/simulated/floor/tiled,/area/tether/surfacebase/botanystorage) "aBn" = (/obj/structure/grille,/obj/structure/window/reinforced/full,/obj/machinery/door/firedoor,/turf/simulated/floor/plating,/area/assembly/robotics) "aBo" = (/obj/machinery/door/airlock/command{id_tag = "captaindoor"; name = "Colony Director's Office"; req_access = list(20)},/obj/machinery/door/firedoor/glass,/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/tiled/dark,/area/bridge) "aBp" = (/obj/structure/table/rack/steel,/obj/effect/floor_decal/corner/lime/border{dir = 5},/obj/effect/floor_decal/corner/lime/border{dir = 8},/turf/simulated/floor/tiled,/area/hydroponics) @@ -1426,14 +1426,14 @@ "aBv" = (/obj/structure/bed/chair/office/dark,/turf/simulated/floor/wood,/area/library) "aBw" = (/obj/machinery/door/firedoor/glass,/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/door/airlock/glass_research{name = "Research Staircase"},/obj/structure/disposalpipe/segment{dir = 8; icon_state = "pipe-c"},/turf/simulated/floor/tiled,/area/rnd/staircase/thirdfloor) "aBx" = (/obj/machinery/disposal,/obj/structure/disposalpipe/trunk,/turf/simulated/floor/wood,/area/crew_quarters/bar) -"aBy" = (/obj/machinery/light{dir = 8; icon_state = "tube1"},/obj/effect/floor_decal/borderfloor{dir = 8},/obj/effect/floor_decal/borderfloor/corner2{dir = 10},/obj/effect/floor_decal/borderfloor/corner2{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 5},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 6},/obj/structure/disposalpipe/trunk,/obj/machinery/disposal,/turf/simulated/floor/tiled,/area/hallway/lower/third_south) -"aBz" = (/obj/structure/grille,/obj/structure/window/reinforced/full,/obj/machinery/door/firedoor,/obj/structure/window/reinforced{dir = 1},/obj/structure/window/reinforced{dir = 8},/turf/simulated/floor/plating,/area/hydroponics) -"aBA" = (/obj/structure/grille,/obj/structure/window/reinforced/full,/obj/machinery/door/firedoor,/obj/structure/window/reinforced{dir = 1},/obj/structure/window/reinforced{dir = 8; icon_state = "rwindow"},/turf/simulated/floor/plating,/area/maintenance/lower/xenoflora) +"aBy" = (/obj/effect/floor_decal/borderfloor{dir = 8},/obj/effect/floor_decal/borderfloor/corner2{dir = 10},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 5},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 6},/obj/machinery/light{dir = 8; icon_state = "tube1"},/turf/simulated/floor/tiled,/area/hallway/lower/third_south) +"aBz" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 9},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 9},/turf/simulated/floor/tiled,/area/tether/surfacebase/botanystorage) +"aBA" = (/obj/item/weapon/stool/padded,/turf/simulated/floor/tiled,/area/tether/surfacebase/botanystorage) "aBB" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/disposalpipe/junction{dir = 1},/turf/simulated/floor/tiled,/area/hallway/lower/third_south) -"aBC" = (/obj/effect/floor_decal/corner/lime/border{dir = 10},/obj/structure/closet/crate/hydroponics,/turf/simulated/floor/tiled,/area/hydroponics) +"aBC" = (/obj/item/weapon/stool/padded,/obj/effect/floor_decal/corner/lime/border{dir = 4},/turf/simulated/floor/tiled,/area/tether/surfacebase/botanystorage) "aBD" = (/obj/effect/floor_decal/corner/lime/border{dir = 4},/turf/simulated/floor/tiled,/area/tether/surfacebase/surface_three_hall) -"aBE" = (/obj/structure/table/woodentable,/turf/simulated/floor/tiled/eris/cafe,/area/hydroponics) -"aBF" = (/obj/structure/table/woodentable,/obj/item/weapon/flame/candle,/turf/simulated/floor/tiled/eris/cafe,/area/hydroponics) +"aBE" = (/obj/structure/disposalpipe/segment{dir = 8},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 8},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 8},/turf/simulated/floor/grass,/area/hydroponics) +"aBF" = (/obj/machinery/smartfridge/drying_rack,/obj/effect/floor_decal/corner/lime/border{dir = 10},/turf/simulated/floor/tiled,/area/tether/surfacebase/botanystorage) "aBG" = (/obj/structure/flora/ausbushes/fernybush,/turf/simulated/floor/grass,/area/hydroponics) "aBH" = (/obj/machinery/atmospherics/unary/vent_pump/on,/obj/effect/floor_decal/borderfloor{dir = 1; pixel_y = 0},/obj/effect/floor_decal/corner/mauve/border{dir = 1},/obj/structure/bed/chair,/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals7,/turf/simulated/floor/tiled,/area/rnd/research/researchdivision) "aBI" = (/obj/structure/table/reinforced,/obj/structure/cable/green{d2 = 8; icon_state = "0-8"},/obj/machinery/power/apc{dir = 1; name = "north bump"; pixel_x = 0; pixel_y = 28},/obj/effect/floor_decal/borderfloor{dir = 1; icon_state = "borderfloor"; pixel_y = 0},/obj/effect/floor_decal/corner/mauve/border{dir = 1},/turf/simulated/floor/tiled,/area/rnd/research/testingrange) @@ -1453,24 +1453,24 @@ "aBW" = (/turf/simulated/floor/tiled,/area/rnd/research/testingrange) "aBX" = (/obj/structure/cable/green{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 8},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 8},/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled,/area/rnd/research/researchdivision) "aBY" = (/obj/structure/sign/department/sci{pixel_x = -32; pixel_y = 0},/obj/effect/floor_decal/borderfloor{dir = 8},/obj/effect/floor_decal/corner/mauve/border{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 5},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 6},/turf/simulated/floor/tiled,/area/hallway/lower/third_south) -"aBZ" = (/obj/structure/disposalpipe/trunk{dir = 1},/obj/machinery/disposal/deliveryChute,/obj/structure/window/reinforced/tinted{dir = 1},/obj/machinery/conveyor{dir = 1; id = "serviceblock2"},/turf/simulated/floor/tiled,/area/crew_quarters/kitchen) +"aBZ" = (/obj/machinery/smartfridge/drying_rack,/obj/effect/floor_decal/corner/lime/border,/turf/simulated/floor/tiled,/area/tether/surfacebase/botanystorage) "aCa" = (/obj/machinery/hologram/holopad,/turf/simulated/floor/tiled,/area/rnd/xenobiology/xenoflora) "aCb" = (/obj/structure/table/reinforced,/obj/item/weapon/paper{desc = ""; info = "This is a direct notice to anyone using firing range: All tests involving destruction of testing facilities MUST be run through Research Director or Central Command before anyone even so much as thinks about going through with this, or be moved outside to where test cannot affect any existing facility. This is both to maintain a professional environment, and ensure nobody else is harmed during these experiments. Nobody wants another 'two SM shards going nuclear in the firing range' incident again, especially not the people handling your paychecks."; name = "note to science staff"},/obj/machinery/light{dir = 4; icon_state = "tube1"},/obj/effect/floor_decal/borderfloor{dir = 4},/obj/effect/floor_decal/corner/mauve/border{dir = 4},/obj/effect/floor_decal/borderfloor/corner2{dir = 5},/obj/effect/floor_decal/corner/mauve/bordercorner2{dir = 5},/turf/simulated/floor/tiled,/area/rnd/research/testingrange) "aCc" = (/obj/effect/floor_decal/borderfloorblack{dir = 8},/turf/simulated/floor/tiled,/area/rnd/outpost/xenobiology/outpost_hallway) "aCd" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4; icon_state = "intact-scrubbers"},/obj/effect/floor_decal/borderfloorblack,/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/cable/green{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/machinery/embedded_controller/radio/airlock/access_controller{frequency = 1392; id_tag = "xenobiology_north_airlock_control"; name = "Xenobiology Access Controller"; pixel_x = 0; pixel_y = -24; req_one_access = list(47,55); tag_exterior_door = "xenobiology_north_airlock_outer"; tag_interior_door = "xenobiology_north_airlock_inner"},/turf/simulated/floor/tiled,/area/rnd/outpost/xenobiology/outpost_north_airlock) "aCe" = (/obj/effect/floor_decal/borderfloor{dir = 4},/obj/effect/floor_decal/corner/mauve/border{dir = 4},/obj/effect/floor_decal/borderfloor/corner2{dir = 5},/obj/effect/floor_decal/corner/mauve/bordercorner2{dir = 5},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 9},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 10},/turf/simulated/floor/tiled,/area/rnd/research/researchdivision) -"aCf" = (/obj/structure/catwalk,/obj/machinery/atmospherics/binary/passive_gate{dir = 1},/turf/simulated/floor/tiled/eris/steel/techfloor_grid,/area/rnd/xenobiology/xenoflora) -"aCg" = (/obj/structure/closet/crate/hydroponics,/obj/effect/floor_decal/corner/lime/border{dir = 4},/turf/simulated/floor/tiled,/area/tether/surfacebase/outside/outside3) +"aCf" = (/obj/structure/table/woodentable,/obj/effect/floor_decal/corner/lime/border,/obj/machinery/light,/turf/simulated/floor/tiled,/area/tether/surfacebase/botanystorage) +"aCg" = (/obj/structure/table/woodentable,/obj/item/weapon/storage/box/sinpockets,/obj/effect/floor_decal/corner/lime/border,/turf/simulated/floor/tiled,/area/tether/surfacebase/botanystorage) "aCh" = (/obj/structure/disposalpipe/segment,/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0},/obj/machinery/door/firedoor/glass,/obj/machinery/door/airlock/maintenance/engi{name = "Bar Substation"},/turf/simulated/floor/plating,/area/maintenance/substation/bar{name = "\improper Surface Civilian Substation"}) "aCi" = (/obj/effect/floor_decal/corner/grey/diagonal,/obj/machinery/door/firedoor,/obj/structure/grille,/obj/structure/window/reinforced/full,/turf/simulated/floor/tiled/white,/area/crew_quarters/kitchen) "aCj" = (/obj/structure/table/glass,/obj/machinery/door/window/westright{req_one_access = list(35,28)},/obj/effect/floor_decal/corner/lime/border{dir = 8},/turf/simulated/floor/tiled,/area/hydroponics) -"aCk" = (/obj/machinery/door/firedoor/glass,/obj/effect/floor_decal/spline/plain{dir = 1},/obj/machinery/door/airlock/freezer{name = "Kitchen"; req_access = list(28)},/obj/effect/floor_decal/spline/plain{dir = 1},/turf/simulated/floor/tiled/white,/area/crew_quarters/kitchen) -"aCl" = (/obj/structure/table/bench/standard,/obj/effect/floor_decal/corner/lime/border{dir = 4},/turf/simulated/floor/tiled,/area/hydroponics) +"aCk" = (/obj/structure/table/woodentable,/obj/item/clothing/mask/smokable/pipe/cobpipe,/obj/item/clothing/mask/smokable/cigarette/joint,/obj/item/weapon/flame/lighter/random,/obj/effect/floor_decal/corner/lime/border{dir = 6},/turf/simulated/floor/tiled,/area/tether/surfacebase/botanystorage) +"aCl" = (/obj/structure/table/bench/standard,/obj/effect/floor_decal/corner/lime/border{dir = 4},/obj/structure/disposalpipe/segment{dir = 8},/obj/effect/landmark/start{name = "Botanist"},/turf/simulated/floor/tiled,/area/hydroponics) "aCm" = (/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled/dark,/area/rnd/outpost/xenobiology/outpost_hallway) -"aCn" = (/turf/simulated/floor/tiled/techmaint,/area/crew_quarters/barrestroom) -"aCo" = (/obj/structure/closet/crate/hydroponics,/obj/effect/floor_decal/corner/lime/border{dir = 8},/turf/simulated/floor/tiled,/area/tether/surfacebase/outside/outside3) -"aCp" = (/obj/structure/closet/crate/hydroponics,/obj/effect/floor_decal/corner/lime/border{dir = 10},/turf/simulated/floor/tiled,/area/tether/surfacebase/outside/outside3) -"aCq" = (/obj/structure/closet/crate/hydroponics,/obj/effect/floor_decal/corner/lime/border,/turf/simulated/floor/tiled,/area/tether/surfacebase/outside/outside3) +"aCn" = (/obj/structure/lattice,/turf/simulated/open,/area/vacant/vacant_bar_upper) +"aCo" = (/obj/structure/grille,/obj/structure/window/reinforced/full,/obj/machinery/door/firedoor,/obj/structure/window/reinforced{dir = 8},/turf/simulated/floor/plating,/area/tether/surfacebase/botanystorage) +"aCp" = (/obj/structure/grille,/obj/structure/window/reinforced/full,/obj/machinery/door/firedoor,/obj/structure/window/reinforced{dir = 1},/obj/structure/window/reinforced,/turf/simulated/floor/plating,/area/tether/surfacebase/botanystorage) +"aCq" = (/obj/structure/grille,/obj/structure/window/reinforced/full,/obj/machinery/door/firedoor,/obj/structure/window/reinforced,/turf/simulated/floor/plating,/area/tether/surfacebase/botanystorage) "aCr" = (/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/corner/mauve/border,/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 1},/turf/simulated/floor/tiled,/area/rnd/research/researchdivision) "aCs" = (/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 9},/obj/structure/disposalpipe/segment{dir = 8; icon_state = "pipe-c"},/turf/simulated/floor/tiled,/area/rnd/research/researchdivision) "aCt" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 4},/obj/structure/disposalpipe/segment{dir = 4; icon_state = "pipe-c"},/turf/simulated/floor/tiled,/area/rnd/research/researchdivision) @@ -1482,9 +1482,9 @@ "aCz" = (/obj/structure/bed/chair{dir = 8},/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/effect/landmark/start{name = "Roboticist"},/turf/simulated/floor/tiled/steel_grid,/area/assembly/robotics) "aCA" = (/obj/machinery/door/firedoor/glass,/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/door/airlock/glass_research{name = "Robotics Lab"; req_access = list(29,47)},/turf/simulated/floor/tiled/steel_grid,/area/assembly/robotics) "aCB" = (/obj/effect/floor_decal/borderfloor/corner{dir = 1},/obj/effect/floor_decal/corner/mauve/bordercorner{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 5},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 4},/obj/structure/disposalpipe/junction,/turf/simulated/floor/tiled,/area/rnd/research/researchdivision) -"aCC" = (/obj/effect/floor_decal/corner/grey/diagonal,/obj/machinery/button/remote/blast_door{id = "kitchen2"; name = "Kitchen shutters"; pixel_x = -24; pixel_y = 0},/turf/simulated/floor/tiled/white,/area/crew_quarters/kitchen) -"aCD" = (/obj/structure/closet/crate/hydroponics,/obj/effect/floor_decal/corner/lime/border{dir = 6},/turf/simulated/floor/tiled,/area/tether/surfacebase/outside/outside3) -"aCE" = (/obj/structure/cable/green{d1 = 2; d2 = 8; icon_state = "2-8"},/turf/simulated/floor/tiled,/area/crew_quarters/kitchen) +"aCC" = (/obj/machinery/vending/hydronutrients,/obj/effect/floor_decal/corner/lime/border{dir = 9},/turf/simulated/floor/tiled,/area/tether/surfacebase/botanystorage) +"aCD" = (/obj/machinery/seed_storage/garden,/obj/effect/floor_decal/corner/lime/border{dir = 1},/turf/simulated/floor/tiled,/area/tether/surfacebase/botanystorage) +"aCE" = (/obj/item/bee_pack,/obj/item/honey_frame,/obj/item/honey_frame,/obj/item/honey_frame,/obj/item/honey_frame,/obj/item/honey_frame,/obj/item/weapon/tool/crowbar,/obj/item/bee_smoker,/obj/item/beehive_assembly,/obj/effect/floor_decal/borderfloor{dir = 1},/obj/structure/closet/crate/hydroponics{desc = "All you need to start your own honey farm."; name = "beekeeping crate"},/obj/item/beehive_assembly,/obj/item/beehive_assembly,/obj/item/beehive_assembly,/obj/item/beehive_assembly,/obj/item/bee_pack,/obj/item/bee_pack,/obj/item/bee_pack,/obj/item/honey_frame,/obj/item/honey_frame,/obj/item/honey_frame,/obj/effect/floor_decal/corner/lime/border{dir = 1},/turf/simulated/floor/tiled,/area/tether/surfacebase/botanystorage) "aCF" = (/obj/machinery/light/small{dir = 4; pixel_y = 0},/turf/simulated/floor/wood,/area/library) "aCG" = (/obj/machinery/bookbinder{pixel_y = 0},/obj/machinery/light/small{dir = 8; pixel_y = 0},/turf/simulated/floor/wood,/area/library) "aCH" = (/obj/structure/extinguisher_cabinet{pixel_y = 30},/turf/simulated/floor/wood,/area/library) @@ -1502,7 +1502,7 @@ "aCT" = (/obj/structure/disposalpipe/segment{dir = 8; icon_state = "pipe-c"},/turf/simulated/floor/wood,/area/crew_quarters/bar) "aCU" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/effect/floor_decal/borderfloor{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 10},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 9},/obj/effect/floor_decal/corner/beige/border{dir = 4},/turf/simulated/floor/tiled,/area/hallway/lower/third_south) "aCV" = (/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/corner/mauve/border,/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 8},/turf/simulated/floor/tiled,/area/rnd/research/researchdivision) -"aCW" = (/obj/machinery/button/windowtint{id = "hop_office"; layer = 3.3; pixel_x = 3; pixel_y = -29},/obj/machinery/button/remote/blast_door{id = "kitchen2"; name = "Dramatic Blast Doors"; pixel_x = 24; pixel_y = -10},/obj/machinery/button/remote/blast_door{id = "kitchen2"; name = "Dramatic Shutter Control"; pixel_x = 24; pixel_y = 10},/turf/simulated/floor/lino,/area/maintenance/lower/atrium) +"aCW" = (/obj/machinery/seed_extractor,/obj/effect/floor_decal/corner/lime/border{dir = 1},/turf/simulated/floor/tiled,/area/tether/surfacebase/botanystorage) "aCX" = (/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 6},/obj/structure/disposalpipe/segment{dir = 1; icon_state = "pipe-c"},/turf/simulated/floor/tiled,/area/hallway/lower/third_south) "aCY" = (/obj/structure/grille,/obj/structure/window/reinforced/full,/obj/machinery/door/firedoor,/obj/structure/window/reinforced{dir = 1},/turf/simulated/floor/plating,/area/tether/surfacebase/public_garden_three) "aCZ" = (/obj/structure/grille,/obj/structure/window/reinforced/full,/obj/machinery/door/firedoor,/obj/structure/window/reinforced{dir = 1},/obj/structure/window/reinforced{dir = 8},/turf/simulated/floor/plating,/area/tether/surfacebase/public_garden_three) @@ -1534,17 +1534,17 @@ "aDz" = (/obj/structure/grille,/obj/structure/window/reinforced/full,/obj/machinery/door/firedoor,/obj/structure/window/reinforced{dir = 4},/turf/simulated/floor/plating,/area/tether/surfacebase/public_garden_three) "aDA" = (/obj/effect/floor_decal/borderfloor{dir = 10},/obj/effect/floor_decal/corner/lime/border{dir = 10},/turf/simulated/floor/tiled,/area/tether/surfacebase/public_garden_three) "aDB" = (/obj/structure/window/reinforced{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals6{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals6,/obj/structure/table/woodentable,/obj/random/maintenance/clean,/turf/simulated/floor/tiled,/area/tether/surfacebase/public_garden_three) -"aDC" = (/obj/structure/cable/green{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/cable/green{d1 = 1; d2 = 4; icon_state = "1-4"},/turf/simulated/floor/lino,/area/library) +"aDC" = (/obj/effect/floor_decal/corner/lime/border{dir = 1},/obj/machinery/smartfridge,/turf/simulated/floor/tiled,/area/tether/surfacebase/botanystorage) "aDD" = (/obj/structure/table/bench/wooden,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled,/area/tether/surfacebase/public_garden_three) "aDE" = (/obj/effect/floor_decal/borderfloor{dir = 4},/obj/effect/floor_decal/corner/lime/border{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/tiled,/area/tether/surfacebase/public_garden_three) "aDF" = (/obj/effect/floor_decal/techfloor{dir = 4},/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/tiled/techmaint,/area/tether/surfacebase/public_garden_three) "aDG" = (/obj/structure/window/reinforced{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals6{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals6,/obj/structure/table/woodentable,/turf/simulated/floor/tiled,/area/tether/surfacebase/public_garden_three) "aDH" = (/obj/structure/lattice,/obj/machinery/door/firedoor/glass,/obj/machinery/atmospherics/pipe/zpipe/down/supply{dir = 1},/obj/machinery/atmospherics/pipe/zpipe/down/scrubbers{dir = 1},/obj/structure/cable/green{d1 = 32; icon_state = "32-1"},/turf/simulated/open,/area/tether/surfacebase/public_garden_three) -"aDI" = (/obj/structure/grille,/obj/structure/window/reinforced/full,/obj/machinery/door/firedoor,/obj/structure/window/reinforced,/obj/structure/window/reinforced{dir = 1},/turf/simulated/floor/plating,/area/maintenance/lower/xenoflora) +"aDI" = (/obj/structure/closet/secure_closet/hydroponics,/obj/effect/floor_decal/corner/lime/border{dir = 5},/turf/simulated/floor/tiled,/area/tether/surfacebase/botanystorage) "aDJ" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled,/area/tether/surfacebase/public_garden_three) "aDK" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 9},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 9},/obj/effect/floor_decal/borderfloor{dir = 4},/obj/effect/floor_decal/corner/lime/border{dir = 4},/turf/simulated/floor/tiled,/area/tether/surfacebase/public_garden_three) "aDL" = (/obj/machinery/portable_atmospherics/hydroponics/soil,/obj/machinery/light,/turf/simulated/floor/grass,/area/tether/surfacebase/public_garden_three) -"aDM" = (/obj/machinery/light{dir = 8},/obj/effect/decal/cleanable/tomato_smudge,/turf/simulated/floor/lino,/area/library) +"aDM" = (/obj/machinery/door/airlock/glass{name = "Hydroponics"; req_access = newlist(); req_one_access = list(35,28)},/obj/machinery/door/firedoor/glass,/turf/simulated/floor/tiled,/area/tether/surfacebase/botanystorage) "aDN" = (/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/corner/lime/border,/turf/simulated/floor/tiled,/area/tether/surfacebase/public_garden_three) "aDO" = (/obj/machinery/alarm{dir = 8; pixel_x = 25; pixel_y = 0},/obj/effect/floor_decal/borderfloor{dir = 6},/obj/effect/floor_decal/corner/lime/border{dir = 6},/obj/machinery/camera/network/civilian{dir = 1},/turf/simulated/floor/tiled,/area/tether/surfacebase/public_garden_three) "aDP" = (/obj/structure/grille,/obj/structure/window/reinforced/full,/obj/machinery/door/firedoor,/obj/structure/window/reinforced,/turf/simulated/floor/plating,/area/tether/surfacebase/public_garden_three) @@ -1555,7 +1555,7 @@ "aDU" = (/obj/structure/bed/chair/wood{dir = 1},/obj/machinery/camera/network/research{dir = 1},/turf/simulated/floor/tiled,/area/rnd/outpost/xenobiology/outpost_breakroom) "aDV" = (/obj/effect/floor_decal/borderfloor{dir = 4},/obj/effect/floor_decal/corner/lightgrey/border{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 10},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 9},/obj/machinery/light{dir = 4},/turf/simulated/floor/tiled,/area/tether/surfacebase/surface_three_hall) "aDW" = (/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/tether/surfacebase/surface_three_hall) -"aDX" = (/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/tiled/techmaint,/area/crew_quarters/barrestroom) +"aDX" = (/obj/machinery/door/airlock{name = "Bar Backroom"; req_access = list(25)},/obj/effect/floor_decal/spline/plain{dir = 5},/obj/effect/floor_decal/spline/plain,/obj/machinery/door/firedoor/glass,/obj/structure/disposalpipe/segment{dir = 8},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/lino,/area/tether/surfacebase/bar_backroom) "aDY" = (/obj/structure/flora/tree/jungle,/turf/simulated/floor/grass,/area/hydroponics) "aDZ" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/wood,/area/crew_quarters/recreation_area) "aEa" = (/obj/machinery/door/airlock/glass_command{name = "Bridge"; req_access = list(19)},/obj/machinery/door/firedoor/glass,/turf/simulated/floor/tiled/dark,/area/bridge) @@ -1568,10 +1568,10 @@ "aEh" = (/obj/structure/flora/ausbushes/sunnybush,/turf/simulated/floor/grass,/area/hydroponics) "aEi" = (/obj/structure/grille,/obj/structure/window/reinforced/full,/obj/machinery/door/firedoor,/obj/structure/window/reinforced{dir = 1},/turf/simulated/floor/plating,/area/rnd/research_storage) "aEj" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/disposalpipe/segment{dir = 1; icon_state = "pipe-c"},/obj/effect/floor_decal/industrial/warning{dir = 8; icon_state = "warning"},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/plating,/area/maintenance/commandmaint) -"aEk" = (/obj/machinery/door/airlock/glass{name = "Hydroponics"; req_access = newlist(); req_one_access = list(35,28)},/obj/machinery/door/firedoor/glass,/turf/simulated/floor/tiled,/area/hydroponics) -"aEl" = (/obj/machinery/light/small{dir = 1},/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/tiled/techmaint,/area/crew_quarters/barrestroom) -"aEm" = (/obj/structure/flora/ausbushes/lavendergrass,/obj/structure/flora/ausbushes/ppflowers,/turf/simulated/floor/grass,/area/hydroponics) -"aEn" = (/obj/structure/flora/ausbushes/lavendergrass,/obj/structure/flora/ausbushes/ywflowers,/turf/simulated/floor/grass,/area/hydroponics) +"aEk" = (/obj/effect/floor_decal/corner/lime/border{dir = 8},/turf/simulated/floor/tiled,/area/tether/surfacebase/botanystorage) +"aEl" = (/obj/structure/disposalpipe/segment{dir = 8; icon_state = "pipe-c"},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 1},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 1},/turf/simulated/floor/wood,/area/tether/surfacebase/bar_backroom) +"aEm" = (/turf/simulated/floor/tiled,/area/tether/surfacebase/botanystorage) +"aEn" = (/obj/structure/closet/secure_closet/hydroponics,/obj/effect/floor_decal/corner/lime/border{dir = 4},/turf/simulated/floor/tiled,/area/tether/surfacebase/botanystorage) "aEo" = (/obj/structure/cable{icon_state = "1-2"},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 10},/obj/effect/floor_decal/steeldecal/steel_decals4,/turf/simulated/floor/tiled,/area/tether/surfacebase/surface_three_hall) "aEp" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/cable{icon_state = "1-2"},/turf/simulated/floor/tiled,/area/tether/surfacebase/surface_three_hall) "aEq" = (/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 1},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 1},/obj/structure/disposalpipe/segment{dir = 4; icon_state = "pipe-c"},/turf/simulated/floor/tiled,/area/tether/surfacebase/surface_three_hall) @@ -1581,104 +1581,104 @@ "aEu" = (/obj/structure/table/woodentable,/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 1},/obj/item/weapon/tape_roll,/obj/item/device/flashlight/lamp/green{pixel_x = 1; pixel_y = 5},/turf/simulated/floor/wood,/area/library) "aEv" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/alarm{pixel_y = 22},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/plating,/area/maintenance/commandmaint) "aEw" = (/obj/structure/flora/pottedplant/subterranean,/obj/effect/floor_decal/borderfloorblack{dir = 4},/obj/machinery/camera/network/research{dir = 8; icon_state = "camera"},/turf/simulated/floor/tiled,/area/rnd/outpost/xenobiology/outpost_hallway) -"aEx" = (/obj/machinery/vending/loadout/costume,/turf/simulated/floor/lino,/area/maintenance/lower/atrium) +"aEx" = (/obj/structure/grille,/obj/structure/window/reinforced/full,/obj/machinery/door/firedoor,/obj/structure/window/reinforced{dir = 4},/obj/structure/window/reinforced{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/plating,/area/tether/surfacebase/botanystorage) "aEy" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/disposalpipe/segment,/obj/structure/cable/green{icon_state = "1-2"},/obj/machinery/door/blast/regular{density = 0; dir = 8; icon_state = "pdoor0"; id = "xenobiolockdown"; name = "Xenobiology Lockdown Blast Doors"; opacity = 0},/obj/effect/floor_decal/industrial/warning,/obj/effect/floor_decal/industrial/warning{dir = 1},/turf/simulated/floor/tiled/dark,/area/rnd/outpost/xenobiology/outpost_hallway) "aEz" = (/obj/structure/table/woodentable,/obj/item/weapon/packageWrap,/obj/item/weapon/paper_bin{pixel_x = 1; pixel_y = 9},/turf/simulated/floor/wood,/area/library) "aEA" = (/obj/structure/railing{dir = 1},/obj/structure/grille,/turf/simulated/floor/tiled/techmaint,/area/tether/surfacebase/surface_three_hall) -"aEB" = (/obj/machinery/light/small,/obj/structure/table/woodentable,/obj/item/weapon/bone/skull{name = "Yo'rick"},/obj/item/weapon/paper{desc = ""; info = "The Silence Into Laughter program works to place hard working, studied, accomplished, hardworking, homebrewed, diplomaholding, or otherwise clowns and mimes into the workforce! The Head Clowncellor and the Director at Mime have finally worked together to bring this titan of a workers' union! If you have a background in silence or laughter, please apply at our exonet site at: https://forum.vore-station.net/viewforum.php?f=45"; name = "Clowns and Mimes Wanted!"},/turf/simulated/floor/lino,/area/maintenance/lower/atrium) +"aEB" = (/obj/effect/floor_decal/corner/lime/border{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 10},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 10; icon_state = "intact-scrubbers"},/turf/simulated/floor/tiled,/area/tether/surfacebase/botanystorage) "aEC" = (/obj/structure/bed/chair/office/dark{dir = 8},/turf/simulated/floor/wood,/area/library) "aED" = (/obj/structure/table/woodentable,/obj/machinery/photocopier/faxmachine{department = "Library Conference Room"},/turf/simulated/floor/wood,/area/library) "aEE" = (/obj/structure/table/woodentable,/obj/item/device/flashlight/lamp/green{pixel_x = 1; pixel_y = 5},/turf/simulated/floor/wood,/area/library) -"aEF" = (/obj/structure/device/piano,/obj/effect/floor_decal/spline/plain{dir = 1},/obj/machinery/light{dir = 8},/turf/simulated/floor/lino,/area/library) +"aEF" = (/obj/machinery/hologram/holopad,/turf/simulated/floor/tiled,/area/tether/surfacebase/botanystorage) "aEG" = (/obj/structure/bed/chair/comfy/black{dir = 4},/turf/simulated/floor/carpet,/area/library) "aEH" = (/obj/structure/table/woodentable,/obj/item/weapon/paper,/obj/item/weapon/pen,/obj/item/weapon/book/codex,/turf/simulated/floor/carpet,/area/library) "aEI" = (/obj/structure/bed/chair/comfy/black{dir = 8},/turf/simulated/floor/carpet,/area/library) "aEJ" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/hologram/holopad,/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/wood,/area/library) "aEK" = (/obj/structure/table/woodentable,/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/wood,/area/library) -"aEL" = (/obj/machinery/light{dir = 4; icon_state = "tube1"; pixel_x = 0},/turf/simulated/floor/wood,/area/library) -"aEM" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/tiled,/area/crew_quarters/kitchen) -"aEN" = (/obj/machinery/atmospherics/binary/pump{dir = 4; name = "Isolation to Waste"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/tiled,/area/rnd/xenobiology/xenoflora) +"aEL" = (/obj/structure/table/standard{name = "plastic table frame"},/obj/item/weapon/reagent_containers/glass/bucket,/obj/item/weapon/reagent_containers/glass/bucket,/obj/effect/floor_decal/borderfloor,/obj/item/weapon/tool/wrench,/obj/effect/floor_decal/corner/lime/border{dir = 9},/obj/item/weapon/tool/wrench,/turf/simulated/floor/tiled,/area/tether/surfacebase/botanystorage) +"aEM" = (/obj/structure/table/standard{name = "plastic table frame"},/obj/item/weapon/material/knife,/obj/item/weapon/material/minihoe,/obj/item/weapon/material/minihoe,/obj/item/weapon/material/knife,/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/corner/lime/border{dir = 5},/turf/simulated/floor/tiled,/area/tether/surfacebase/botanystorage) +"aEN" = (/obj/machinery/atmospherics/unary/vent_scrubber/on,/turf/simulated/floor/tiled,/area/tether/surfacebase/botanystorage) "aEO" = (/obj/item/weapon/dice/d20,/obj/item/weapon/dice,/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/table/woodentable,/turf/simulated/floor/wood,/area/library) "aEP" = (/obj/structure/bed/chair/comfy/black{dir = 4},/obj/effect/landmark/start{name = "Librarian"},/turf/simulated/floor/carpet,/area/library) "aEQ" = (/obj/structure/table/woodentable,/obj/machinery/power/apc{dir = 4; name = "east bump"; pixel_x = 24},/obj/structure/cable/green{icon_state = "0-8"},/obj/machinery/recharger,/turf/simulated/floor/wood,/area/library) "aER" = (/obj/structure/bookcase{name = "bookcase (Reference)"},/obj/item/weapon/book/manual/anomaly_spectroscopy,/obj/item/weapon/book/manual/anomaly_testing,/obj/item/weapon/book/manual/atmospipes,/obj/item/weapon/book/manual/barman_recipes,/obj/item/weapon/book/manual/chef_recipes,/obj/item/weapon/book/manual/command_guide,/obj/item/weapon/book/manual/detective,/obj/item/weapon/book/manual/engineering_construction,/obj/item/weapon/book/manual/engineering_guide,/obj/item/weapon/book/manual/engineering_particle_accelerator,/obj/item/weapon/book/manual/engineering_singularity_safety,/obj/item/weapon/book/manual/evaguide,/obj/item/weapon/book/manual/excavation,/turf/simulated/floor/wood,/area/library) -"aES" = (/obj/structure/cable/green{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/cable/green{icon_state = "2-4"},/turf/simulated/floor/wood,/area/library) +"aES" = (/obj/structure/table/bench/standard,/obj/effect/floor_decal/corner/lime/border{dir = 4},/obj/effect/landmark/start{name = "Botanist"},/turf/simulated/floor/tiled,/area/hydroponics) "aET" = (/obj/effect/floor_decal/spline/plain{dir = 8; icon_state = "spline_plain"},/obj/item/weapon/stool/padded,/turf/simulated/floor/lino,/area/crew_quarters/bar) "aEU" = (/obj/structure/bookcase{name = "bookcase (Reference)"},/obj/item/weapon/book/manual/hydroponics_pod_people,/obj/item/weapon/book/manual/mass_spectrometry,/obj/item/weapon/book/manual/materials_chemistry_analysis,/obj/item/weapon/book/manual/medical_cloning,/obj/item/weapon/book/manual/medical_diagnostics_manual,/obj/item/weapon/book/manual/research_and_development,/obj/item/weapon/book/manual/resleeving,/obj/item/weapon/book/manual/ripley_build_and_repair,/obj/item/weapon/book/manual/robotics_cyborgs,/obj/item/weapon/book/manual/rust_engine,/obj/item/weapon/book/manual/security_space_law,/obj/item/weapon/book/manual/standard_operating_procedure,/obj/item/weapon/book/manual/stasis,/obj/item/weapon/book/manual/supermatter_engine,/turf/simulated/floor/wood,/area/library) "aEV" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 5},/turf/simulated/floor/wood,/area/library) "aEW" = (/obj/effect/floor_decal/spline/plain{dir = 4},/obj/structure/table/marble,/obj/machinery/chemical_dispenser/bar_soft/full{icon_state = "soda_dispenser"; dir = 8},/turf/simulated/floor/lino,/area/crew_quarters/bar) -"aEX" = (/obj/effect/floor_decal/spline/plain{dir = 4},/obj/structure/table/marble,/obj/item/weapon/reagent_containers/glass/rag,/obj/item/weapon/reagent_containers/food/drinks/flask/vacuumflask,/obj/item/weapon/book/manual/barman_recipes,/turf/simulated/floor/lino,/area/crew_quarters/bar) +"aEX" = (/obj/machinery/portable_atmospherics/hydroponics,/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/grass,/area/hydroponics) "aEY" = (/obj/effect/floor_decal/spline/plain{dir = 8},/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/tiled/eris/cafe,/area/hydroponics) -"aEZ" = (/obj/structure/flora/ausbushes/lavendergrass,/turf/simulated/floor/grass,/area/hydroponics) +"aEZ" = (/obj/machinery/light{dir = 4; icon_state = "tube1"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/grass,/area/hydroponics) "aFa" = (/obj/structure/flora/pottedplant,/turf/simulated/floor/wood,/area/crew_quarters/bar) -"aFb" = (/obj/effect/floor_decal/corner/lime/border{dir = 4},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/tiled,/area/tether/surfacebase/surface_three_hall) +"aFb" = (/obj/effect/floor_decal/corner/lime/border{dir = 8},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 5; icon_state = "intact-supply"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 5; icon_state = "intact-scrubbers"},/turf/simulated/floor/tiled,/area/tether/surfacebase/botanystorage) "aFc" = (/obj/structure/bed/chair/office/dark{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/wood,/area/library) "aFd" = (/obj/structure/table/woodentable,/obj/machinery/atmospherics/unary/vent_pump/on{dir = 8},/obj/item/weapon/folder/yellow,/obj/item/weapon/pen,/turf/simulated/floor/wood,/area/library) "aFe" = (/obj/structure/table/woodentable,/obj/item/weapon/deck/cards,/turf/simulated/floor/wood,/area/library) "aFf" = (/obj/effect/decal/cleanable/blood,/turf/simulated/floor/outdoors/grass/sif/virgo3b,/area/tether/surfacebase/outside/outside3) -"aFg" = (/obj/structure/table/woodentable,/obj/item/weapon/flame/candle,/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/wood,/area/library) +"aFg" = (/obj/structure/cable/green{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 8},/turf/simulated/floor/tiled,/area/tether/surfacebase/botanystorage) "aFh" = (/obj/effect/decal/cleanable/blood,/obj/effect/decal/remains/deer,/turf/simulated/floor/outdoors/grass/sif/virgo3b,/area/tether/surfacebase/outside/outside3) "aFi" = (/obj/structure/table/glass,/obj/machinery/cell_charger,/obj/effect/floor_decal/borderfloor{dir = 6},/obj/effect/floor_decal/corner/mauve/border{dir = 6},/obj/effect/floor_decal/borderfloor/corner2{dir = 6},/obj/effect/floor_decal/corner/mauve/bordercorner2{dir = 6},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 1},/turf/simulated/floor/tiled,/area/rnd/staircase/thirdfloor) "aFj" = (/obj/effect/floor_decal/borderfloor{dir = 4},/obj/effect/floor_decal/corner/lightgrey/border{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 10},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 9},/obj/structure/disposalpipe/segment,/obj/machinery/computer/guestpass{dir = 8; pixel_x = 25},/turf/simulated/floor/tiled,/area/hallway/lower/third_south) -"aFk" = (/obj/structure/disposalpipe/segment,/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,/obj/machinery/light_switch{pixel_x = -25},/turf/simulated/floor/lino,/area/maintenance/lower/atrium) -"aFl" = (/obj/machinery/door/window/westright{req_one_access = list(35,28)},/obj/effect/floor_decal/corner/lime/border{dir = 10},/turf/simulated/floor/tiled,/area/hydroponics) +"aFk" = (/obj/structure/reagent_dispensers/watertank,/obj/item/weapon/reagent_containers/glass/bucket,/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/corner/lime/border{dir = 10},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 8},/turf/simulated/floor/tiled,/area/tether/surfacebase/botanystorage) +"aFl" = (/obj/structure/reagent_dispensers/watertank,/obj/item/weapon/reagent_containers/glass/bucket,/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/corner/lime/border{dir = 6},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 8},/turf/simulated/floor/tiled,/area/tether/surfacebase/botanystorage) "aFm" = (/obj/structure/disposalpipe/segment,/obj/effect/floor_decal/borderfloor{dir = 8; icon_state = "borderfloor"; pixel_x = 0},/obj/effect/floor_decal/corner/mauve/border{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 5},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 6},/obj/machinery/computer/guestpass{dir = 4; pixel_x = -28; pixel_y = 0},/turf/simulated/floor/tiled,/area/rnd/research/researchdivision) "aFn" = (/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 4},/obj/machinery/alarm{dir = 4; icon_state = "alarm0"; pixel_x = -22; pixel_y = 0},/turf/simulated/floor/wood,/area/library) "aFo" = (/obj/effect/floor_decal/borderfloor{dir = 10},/obj/machinery/door/firedoor/glass,/obj/machinery/door/airlock/glass_research{frequency = 1392; icon_state = "door_locked"; id_tag = "xenobiology_north_airlock_outer"; locked = 1; name = "Xenobiology North Airlock"},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/access_button/airlock_interior{command = "cycle_exterior"; frequency = 1392; master_tag = "xenobiology_north_airlock_control"; name = "Xenobiology Access Control"; pixel_x = 0; pixel_y = -24; req_one_access = list(47,55)},/turf/simulated/floor/tiled,/area/rnd/outpost/xenobiology/outpost_north_airlock) "aFp" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,/obj/effect/floor_decal/borderfloorblack,/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/tiled,/area/rnd/outpost/xenobiology/outpost_north_airlock) -"aFq" = (/obj/effect/floor_decal/industrial/warning,/obj/machinery/light/small{dir = 1},/obj/effect/decal/cleanable/dirt,/obj/effect/decal/cleanable/generic,/turf/simulated/floor/tiled/techmaint,/area/crew_quarters/barrestroom) +"aFq" = (/obj/structure/railing{dir = 4},/obj/effect/floor_decal/industrial/warning{dir = 8; icon_state = "warning"},/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/tiled/techmaint,/area/vacant/vacant_bar_upper) "aFr" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/wood,/area/library) "aFs" = (/obj/structure/bed/chair/office/dark{dir = 1},/turf/simulated/floor/wood,/area/library) "aFt" = (/obj/structure/bookcase{name = "bookcase (Fiction)"},/obj/machinery/light/small{dir = 8; pixel_y = 0},/turf/simulated/floor/wood,/area/library) "aFu" = (/obj/structure/bookcase{name = "bookcase (Fiction)"},/turf/simulated/floor/wood,/area/library) -"aFv" = (/obj/structure/railing{dir = 4},/obj/effect/floor_decal/industrial/warning/corner{dir = 8},/obj/effect/decal/cleanable/dirt,/obj/effect/decal/cleanable/generic,/turf/simulated/floor/tiled/techmaint,/area/crew_quarters/barrestroom) +"aFv" = (/turf/simulated/floor/tiled/techmaint,/area/vacant/vacant_bar_upper) "aFw" = (/obj/structure/closet/crate,/obj/item/target,/obj/item/target,/obj/item/target,/obj/item/target,/obj/item/target,/obj/structure/window/reinforced,/obj/machinery/camera/network/research{dir = 5; icon_state = "camera"},/turf/simulated/floor/tiled/dark,/area/rnd/research/testingrange) "aFx" = (/obj/structure/disposalpipe/segment,/obj/structure/cable,/obj/machinery/power/terminal{dir = 8},/obj/effect/floor_decal/industrial/warning{dir = 8},/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/plating,/area/maintenance/substation/bar{name = "\improper Surface Civilian Substation"}) -"aFy" = (/obj/structure/closet/firecloset,/turf/simulated/floor/tiled/techmaint,/area/crew_quarters/barrestroom) -"aFz" = (/obj/effect/floor_decal/corner/lime/border{dir = 6},/turf/simulated/floor/tiled,/area/hydroponics) -"aFA" = (/obj/machinery/portable_atmospherics/powered/pump/filled,/turf/simulated/floor/tiled/techmaint,/area/crew_quarters/barrestroom) -"aFB" = (/obj/structure/grille,/obj/structure/window/reinforced/full,/obj/machinery/door/firedoor,/obj/structure/window/reinforced{dir = 4},/obj/structure/window/reinforced{dir = 8},/turf/simulated/floor/plating,/area/tether/surfacebase/outside/outside3) +"aFy" = (/obj/effect/decal/cleanable/dirt,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/tiled/techmaint,/area/vacant/vacant_bar_upper) +"aFz" = (/obj/structure/extinguisher_cabinet{dir = 8; icon_state = "extinguisher_closed"; pixel_x = 30},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/grass,/area/hydroponics) +"aFA" = (/obj/effect/floor_decal/industrial/warning{dir = 1; icon_state = "warning"},/obj/random/maintenance/clean,/obj/random/maintenance/clean,/obj/structure/table/rack/steel,/turf/simulated/floor/tiled/techmaint,/area/vacant/vacant_bar_upper) +"aFB" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 10},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 9},/turf/simulated/floor/tiled,/area/tether/surfacebase/botanystorage) "aFC" = (/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 4; icon_state = "map-scrubbers"},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals5,/turf/simulated/floor/tiled,/area/tether/surfacebase/shuttle_pad) -"aFD" = (/obj/structure/table/woodentable,/turf/simulated/floor/wood,/area/library) -"aFE" = (/obj/structure/sink{dir = 4; icon_state = "sink"; pixel_x = 11; pixel_y = 0},/turf/simulated/floor/grass,/area/hydroponics) +"aFD" = (/obj/effect/floor_decal/corner/lime/border{dir = 10},/obj/machinery/alarm{alarm_id = "pen_nine"; breach_detection = 0; dir = 1; icon_state = "alarm0"; pixel_y = -22},/turf/simulated/floor/tiled,/area/tether/surfacebase/botanystorage) +"aFE" = (/obj/effect/floor_decal/corner/lime/border,/obj/machinery/power/apc{dir = 2; name = "south bump"; pixel_y = -24},/obj/structure/cable/green,/turf/simulated/floor/tiled,/area/tether/surfacebase/botanystorage) "aFF" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/cable/green{icon_state = "1-2"},/obj/structure/cable/green{icon_state = "1-4"},/obj/structure/cable/green{icon_state = "1-8"},/obj/structure/disposalpipe/junction{dir = 1; icon_state = "pipe-j2"},/obj/machinery/camera/network/research{dir = 1},/turf/simulated/floor/tiled/dark,/area/rnd/outpost/xenobiology/outpost_main) -"aFG" = (/obj/structure/closet/crate/hydroponics,/obj/effect/floor_decal/corner/lime/bordercorner{dir = 8},/turf/simulated/floor/tiled,/area/tether/surfacebase/outside/outside3) -"aFH" = (/obj/structure/grille,/obj/structure/window/reinforced/full,/obj/machinery/door/firedoor,/obj/structure/window/reinforced,/obj/structure/window/reinforced{dir = 1},/turf/simulated/floor/plating,/area/tether/surfacebase/outside/outside3) -"aFI" = (/obj/machinery/biogenerator,/turf/simulated/floor/grass,/area/hydroponics) +"aFG" = (/obj/effect/floor_decal/corner/lime/bordercorner{dir = 8},/turf/simulated/floor/tiled,/area/tether/surfacebase/botanystorage) +"aFH" = (/obj/machinery/atmospherics/unary/vent_pump/on{dir = 1},/turf/simulated/floor/tiled,/area/tether/surfacebase/botanystorage) +"aFI" = (/obj/effect/floor_decal/corner/lime/border{dir = 4},/obj/structure/closet/crate/hydroponics,/turf/simulated/floor/tiled,/area/tether/surfacebase/botanystorage) "aFJ" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4; icon_state = "intact-scrubbers"},/obj/machinery/light,/obj/machinery/atmospherics/pipe/manifold/hidden/supply,/obj/effect/floor_decal/borderfloorblack,/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/tiled,/area/rnd/outpost/xenobiology/outpost_north_airlock) -"aFK" = (/obj/machinery/smartfridge/drying_rack,/turf/simulated/floor/grass,/area/hydroponics) +"aFK" = (/obj/structure/bed/chair/wood,/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 6},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 6},/turf/simulated/floor/tiled/eris/cafe,/area/hydroponics) "aFL" = (/obj/structure/window/reinforced/full,/obj/structure/grille,/obj/machinery/door/firedoor/glass,/obj/structure/window/reinforced{dir = 8; health = 1e+006},/obj/structure/window/reinforced{dir = 4},/obj/structure/sign/signnew/secure,/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled/dark,/area/rnd/outpost/xenobiology/outpost_north_airlock) -"aFM" = (/obj/structure/bed/chair/wood{dir = 8},/turf/simulated/floor/wood,/area/library) +"aFM" = (/turf/simulated/wall,/area/tether/surfacebase/servicebackroom) "aFN" = (/obj/structure/table/reinforced,/obj/machinery/recharger/wallcharger{pixel_x = 4; pixel_y = 28},/obj/effect/floor_decal/borderfloor{dir = 1; icon_state = "borderfloor"; pixel_y = 0},/obj/effect/floor_decal/corner/mauve/border{dir = 1},/obj/item/weapon/storage/bag/trash,/obj/item/weapon/storage/bag/trash,/turf/simulated/floor/tiled,/area/rnd/research/testingrange) -"aFO" = (/obj/structure/bed/chair/wood,/turf/simulated/floor/wood,/area/library) -"aFP" = (/obj/structure/bed/chair/wood{dir = 1},/turf/simulated/floor/wood,/area/library) +"aFO" = (/obj/machinery/door/airlock{name = "Service"; req_one_access = list(35,28)},/obj/machinery/door/firedoor/glass,/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/tiled,/area/tether/surfacebase/servicebackroom) +"aFP" = (/turf/simulated/wall,/area/tether/surfacebase/botanystorage) "aFQ" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/item/device/radio/intercom{dir = 1; pixel_y = 24; req_access = list()},/obj/effect/floor_decal/borderfloor{dir = 1; icon_state = "borderfloor"; pixel_y = 0},/obj/effect/floor_decal/corner/mauve/border{dir = 1},/obj/effect/floor_decal/borderfloor/corner2{dir = 4},/obj/effect/floor_decal/corner/mauve/bordercorner2{dir = 4},/obj/machinery/disposal,/obj/structure/disposalpipe/trunk{dir = 8},/turf/simulated/floor/tiled,/area/rnd/research/testingrange) -"aFR" = (/obj/structure/grille,/obj/structure/window/reinforced/full,/obj/machinery/door/firedoor,/obj/structure/window/reinforced{dir = 4},/turf/simulated/floor/plating,/area/hydroponics) -"aFS" = (/obj/machinery/vending/hydronutrients,/turf/simulated/floor/grass,/area/hydroponics) +"aFR" = (/obj/effect/floor_decal/corner/lime/border{dir = 10},/obj/structure/closet/crate/hydroponics,/turf/simulated/floor/tiled,/area/tether/surfacebase/botanystorage) +"aFS" = (/obj/effect/floor_decal/corner/lime/border{dir = 4},/obj/machinery/light,/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 8},/turf/simulated/floor/tiled/eris/cafe,/area/hydroponics) "aFT" = (/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/corner/mauve/border,/obj/structure/closet/hydrant{pixel_x = 0; pixel_y = -32},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 8},/turf/simulated/floor/tiled,/area/rnd/research/researchdivision) "aFU" = (/obj/structure/bookcase{name = "bookcase (Religious)"},/turf/simulated/floor/wood,/area/library) "aFV" = (/obj/structure/cable/green,/obj/structure/cable/green{d2 = 4; icon_state = "0-4"},/obj/machinery/power/sensor{name = "Powernet Sensor - Surface Civilian Subgrid"; name_tag = "Surface Civilian Subgrid"},/obj/effect/decal/cleanable/dirt,/obj/effect/floor_decal/industrial/warning{dir = 1; icon_state = "warning"},/turf/simulated/floor/plating,/area/maintenance/substation/bar{name = "\improper Surface Civilian Substation"}) "aFW" = (/obj/structure/disposalpipe/segment,/obj/structure/cable/green{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/effect/floor_decal/industrial/warning/corner{dir = 1},/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/plating,/area/maintenance/substation/bar{name = "\improper Surface Civilian Substation"}) "aFX" = (/obj/random/tech_supply,/obj/structure/table/steel,/obj/random/maintenance/engineering,/turf/simulated/floor/plating,/area/maintenance/substation/bar{name = "\improper Surface Civilian Substation"}) -"aFY" = (/obj/item/weapon/stool/padded,/obj/machinery/light{dir = 8},/turf/simulated/floor/lino,/area/library) -"aFZ" = (/obj/structure/disposalpipe/segment{dir = 8},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/effect/floor_decal/corner/mauve/border{dir = 4},/turf/simulated/floor/tiled,/area/tether/surfacebase/outside/outside3) -"aGa" = (/obj/effect/floor_decal/spline/plain,/obj/machinery/light{dir = 8},/obj/machinery/disposal,/turf/simulated/floor/lino,/area/library) -"aGb" = (/obj/structure/grille,/obj/structure/window/reinforced/full,/obj/machinery/door/firedoor,/obj/structure/window/reinforced,/obj/structure/window/reinforced{dir = 4},/turf/simulated/floor/plating,/area/hydroponics) -"aGc" = (/obj/machinery/door/airlock/glass_research{name = "Xenoflora Research"; req_access = list(55)},/obj/machinery/door/firedoor,/turf/simulated/floor/tiled,/area/maintenance/lower/xenoflora) -"aGd" = (/obj/structure/table/standard{name = "plastic table frame"},/obj/item/weapon/reagent_containers/glass/bucket,/obj/item/weapon/reagent_containers/glass/bucket,/obj/effect/floor_decal/borderfloor,/obj/item/weapon/tool/wrench,/obj/effect/floor_decal/corner/lime/border{dir = 9},/obj/item/weapon/tool/wrench,/turf/simulated/floor/tiled,/area/hydroponics) -"aGe" = (/obj/structure/table/glass,/obj/item/weapon/storage/box/gloves{pixel_x = 4; pixel_y = 4},/obj/item/weapon/storage/box/syringes,/obj/item/weapon/storage/box/beakers{pixel_x = 2; pixel_y = 2},/turf/simulated/floor/tiled,/area/maintenance/lower/xenoflora) +"aFY" = (/obj/effect/floor_decal/corner/lime/border,/obj/structure/closet/crate/hydroponics,/obj/machinery/light,/turf/simulated/floor/tiled,/area/tether/surfacebase/botanystorage) +"aFZ" = (/obj/machinery/atmospherics/pipe/simple/hidden/yellow{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/visible/yellow{icon_state = "intact"; dir = 5},/turf/simulated/floor/tiled,/area/rnd/xenobiology/xenoflora_storage) +"aGa" = (/obj/structure/closet/crate/hydroponics,/obj/effect/floor_decal/corner/lime/bordercorner{dir = 8},/turf/simulated/floor/tiled,/area/tether/surfacebase/botanystorage) +"aGb" = (/obj/structure/closet/crate/hydroponics,/turf/simulated/floor/tiled,/area/tether/surfacebase/botanystorage) +"aGc" = (/obj/structure/closet/crate/hydroponics,/obj/effect/floor_decal/corner/lime/border{dir = 4},/turf/simulated/floor/tiled,/area/tether/surfacebase/botanystorage) +"aGd" = (/obj/machinery/door/airlock{name = "Service"; req_one_access = list(35,28)},/obj/machinery/door/firedoor/glass,/obj/structure/disposalpipe/segment{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 8},/turf/simulated/floor/tiled,/area/tether/surfacebase/servicebackroom) +"aGe" = (/obj/structure/disposalpipe/segment{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 8},/turf/simulated/floor/tiled,/area/tether/surfacebase/servicebackroom) "aGf" = (/obj/machinery/status_display{pixel_x = 32; pixel_y = 0},/obj/effect/floor_decal/borderfloor{dir = 4},/obj/effect/floor_decal/corner/beige/border{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 10},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 9},/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/tiled,/area/hallway/lower/third_south) -"aGg" = (/obj/machinery/computer/guestpass{dir = 4; pixel_x = -28; pixel_y = 0},/turf/simulated/floor/wood,/area/library) -"aGh" = (/obj/structure/disposalpipe/segment{dir = 8},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/effect/floor_decal/corner/mauve/border{dir = 8},/turf/simulated/floor/tiled,/area/tether/surfacebase/outside/outside3) -"aGi" = (/obj/effect/floor_decal/borderfloor{dir = 8},/obj/effect/floor_decal/borderfloor/corner2{dir = 10},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 5},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 6},/turf/simulated/floor/tiled,/area/hallway/lower/third_south) -"aGj" = (/obj/structure/grille,/obj/machinery/door/firedoor,/obj/structure/window/reinforced/polarized/full{id = "hop_office"},/obj/structure/window/reinforced/polarized{dir = 4; icon_state = "rwindow"; id = "hop_office"},/obj/machinery/door/blast/shutters{dir = 2; id = "kitchen"; layer = 3.3; name = "Entertainment Shutters"},/obj/machinery/door/blast/regular/open{icon_state = "pdoor0"; dir = 2},/obj/structure/cable/green{d2 = 2; icon_state = "0-2"},/obj/structure/cable/green{d1 = 2; d2 = 8; icon_state = "2-8"},/turf/simulated/floor/plating,/area/library) +"aGg" = (/obj/structure/disposalpipe/segment{dir = 8},/obj/machinery/light{dir = 1},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 8},/turf/simulated/floor/tiled,/area/tether/surfacebase/servicebackroom) +"aGh" = (/obj/structure/disposalpipe/segment{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 1},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 1},/turf/simulated/floor/tiled,/area/tether/surfacebase/servicebackroom) +"aGi" = (/obj/effect/floor_decal/borderfloor{dir = 8},/obj/effect/floor_decal/borderfloor/corner2{dir = 10},/obj/effect/floor_decal/borderfloor/corner2{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 5},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 6},/obj/structure/disposalpipe/trunk,/obj/machinery/disposal,/turf/simulated/floor/tiled,/area/hallway/lower/third_south) +"aGj" = (/obj/structure/disposalpipe/segment{dir = 8},/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 = 8},/turf/simulated/floor/tiled,/area/tether/surfacebase/servicebackroom) "aGk" = (/obj/effect/floor_decal/spline/plain{dir = 8; icon_state = "spline_plain"},/obj/item/weapon/stool/padded,/mob/living/carbon/human/monkey/punpun,/turf/simulated/floor/lino,/area/crew_quarters/bar) "aGl" = (/obj/structure/table/reinforced,/obj/item/clothing/ears/earmuffs,/obj/item/clothing/glasses/goggles,/obj/structure/window/reinforced,/obj/machinery/camera/network/research{dir = 8; icon_state = "camera"},/turf/simulated/floor/tiled/dark,/area/rnd/research/testingrange) "aGm" = (/obj/structure/closet/secure_closet/personal/patient,/obj/machinery/atmospherics/unary/vent_pump/on{dir = 8},/obj/effect/floor_decal/borderfloorwhite{dir = 6},/obj/effect/floor_decal/corner/pink/border{dir = 6},/obj/structure/cable/green{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/machinery/vending/wallmed1{pixel_y = -30},/turf/simulated/floor/tiled/white,/area/tether/surfacebase/medical/patient_b) "aGn" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4; icon_state = "intact-scrubbers"},/obj/machinery/light,/obj/effect/floor_decal/borderfloorblack,/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/manifold/hidden/supply,/turf/simulated/floor/tiled,/area/rnd/outpost/xenobiology/outpost_north_airlock) "aGo" = (/obj/machinery/door/firedoor/glass,/obj/machinery/door/airlock/research{autoclose = 0; frequency = 1382; icon_state = "door_locked"; id_tag = "xenobiology_airlock_outer"; locked = 1; name = "Xenobiology Exterior Airlock Doors"; req_access = list(); req_one_access = list(47,55)},/obj/machinery/access_button/airlock_interior{command = "cycle_exterior"; frequency = 1382; master_tag = "xenobiology_airlock_control"; name = "Xenobiology Access Control"; pixel_x = -24; pixel_y = 4},/turf/simulated/floor/tiled/dark,/area/rnd/outpost/xenobiology/outpost_south_airlock) "aGp" = (/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,/obj/effect/floor_decal/borderfloorblack{dir = 6},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled,/area/rnd/outpost/xenobiology/outpost_north_airlock) -"aGq" = (/obj/effect/floor_decal/borderfloor{dir = 8},/obj/effect/floor_decal/borderfloor/corner2{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 5},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 6},/turf/simulated/floor/tiled,/area/hallway/lower/third_south) +"aGq" = (/obj/structure/disposalpipe/segment{dir = 2; icon_state = "pipe-c"},/obj/machinery/light{dir = 1},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 8},/turf/simulated/floor/tiled,/area/tether/surfacebase/servicebackroom) "aGr" = (/obj/effect/floor_decal/borderfloor{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 5},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 6},/obj/machinery/atmospherics/unary/vent_pump/on{dir = 4},/turf/simulated/floor/tiled,/area/hallway/lower/third_south) "aGs" = (/obj/machinery/door/firedoor/glass,/obj/machinery/door/airlock/research{autoclose = 0; frequency = 1382; icon_state = "door_locked"; id_tag = "xenobiology_airlock_outer"; locked = 1; name = "Xenobiology Exterior Airlock Doors"; req_access = list(); req_one_access = list(47,55)},/obj/machinery/access_button/airlock_interior{command = "cycle_exterior"; frequency = 1382; master_tag = "xenobiology_airlock_control"; name = "Xenobiology Access Control"; pixel_x = 24; pixel_y = 4; req_one_access = list(47,55)},/turf/simulated/floor/tiled/dark,/area/rnd/outpost/xenobiology/outpost_south_airlock) "aGt" = (/obj/structure/extinguisher_cabinet{dir = 4; icon_state = "extinguisher_closed"; pixel_x = -30},/obj/effect/floor_decal/borderfloor{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 5},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 6},/turf/simulated/floor/tiled,/area/hallway/lower/third_south) @@ -1694,10 +1694,10 @@ "aGD" = (/obj/machinery/newscaster{pixel_x = 0; pixel_y = 30},/obj/effect/floor_decal/borderfloor{dir = 1},/obj/machinery/door/firedoor/glass/hidden/steel{dir = 2},/turf/simulated/floor/tiled,/area/hallway/lower/third_south) "aGE" = (/obj/machinery/firealarm{dir = 2; layer = 3.3; pixel_x = 0; pixel_y = 26},/obj/effect/floor_decal/borderfloor{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals7,/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 4},/obj/machinery/atmospherics/unary/vent_pump/on,/turf/simulated/floor/tiled,/area/hallway/lower/third_south) "aGF" = (/obj/effect/floor_decal/borderfloor/corner{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 5},/turf/simulated/floor/tiled,/area/hallway/lower/third_south) -"aGG" = (/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 4},/turf/simulated/floor/tiled,/area/tether/surfacebase/outside/outside3) +"aGG" = (/obj/machinery/vending/cigarette,/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 8},/turf/simulated/floor/tiled,/area/tether/surfacebase/servicebackroom) "aGH" = (/obj/effect/floor_decal/corner/lime/border{dir = 4},/obj/structure/closet/crate/plastic,/turf/simulated/floor/tiled,/area/hydroponics) -"aGI" = (/obj/structure/catwalk,/turf/simulated/open/virgo3b,/area/hydroponics) -"aGJ" = (/obj/structure/railing,/obj/structure/railing{dir = 8},/turf/simulated/open/virgo3b,/area/hydroponics) +"aGI" = (/obj/machinery/vending/cola/soft,/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 10},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 10; icon_state = "intact-scrubbers"},/turf/simulated/floor/tiled,/area/tether/surfacebase/servicebackroom) +"aGJ" = (/obj/structure/closet/crate/hydroponics,/obj/effect/floor_decal/corner/lime/border{dir = 8},/turf/simulated/floor/tiled,/area/tether/surfacebase/botanystorage) "aGK" = (/turf/simulated/wall,/area/crew_quarters/barrestroom) "aGL" = (/obj/item/device/radio/intercom{dir = 8; pixel_x = 10},/turf/simulated/wall,/area/rnd/outpost/xenobiology/outpost_hallway) "aGM" = (/obj/machinery/door/firedoor/glass/hidden{dir = 2; icon_state = "door_open"},/obj/effect/floor_decal/borderfloorblack{dir = 4},/turf/simulated/floor/tiled,/area/rnd/outpost/xenobiology/outpost_hallway) @@ -1727,22 +1727,22 @@ "aHk" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/effect/floor_decal/borderfloor{dir = 1},/obj/effect/floor_decal/corner/lightgrey/border{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals7,/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 4},/obj/structure/disposalpipe/segment{dir = 8; icon_state = "pipe-c"},/turf/simulated/floor/tiled,/area/hallway/lower/third_south) "aHl" = (/obj/structure/table/woodentable,/obj/item/weapon/flame/candle,/turf/simulated/floor/wood,/area/crew_quarters/bar) "aHm" = (/obj/machinery/light{dir = 1},/obj/effect/floor_decal/borderfloor{dir = 1},/obj/effect/floor_decal/corner/lightgrey/border{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals7,/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 4},/obj/machinery/atmospherics/unary/vent_pump/on,/turf/simulated/floor/tiled,/area/hallway/lower/third_south) -"aHn" = (/obj/effect/floor_decal/spline/plain{dir = 8},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/grass,/area/hydroponics) -"aHo" = (/obj/machinery/light{dir = 8},/turf/simulated/floor/lino,/area/library) -"aHp" = (/obj/structure/disposalpipe/segment,/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 5},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 5},/obj/machinery/light_switch{pixel_x = -25},/turf/simulated/floor/lino,/area/maintenance/lower/atrium) -"aHq" = (/obj/structure/disposalpipe/segment,/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0},/obj/machinery/light_switch{pixel_x = -25},/turf/simulated/floor/lino,/area/maintenance/lower/atrium) +"aHn" = (/obj/machinery/door/window/westright{req_one_access = list(35,28)},/obj/effect/floor_decal/corner/lime/border{dir = 10},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 8},/turf/simulated/floor/tiled,/area/hydroponics) +"aHo" = (/obj/structure/closet/crate,/turf/simulated/floor/tiled,/area/tether/surfacebase/servicebackroom) +"aHp" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/tiled,/area/tether/surfacebase/servicebackroom) +"aHq" = (/turf/simulated/floor/tiled,/area/tether/surfacebase/servicebackroom) "aHr" = (/obj/structure/grille,/obj/structure/window/reinforced/full,/obj/machinery/door/firedoor,/obj/structure/sign/department/bar,/obj/structure/disposalpipe/segment{dir = 8},/turf/simulated/floor/plating,/area/crew_quarters/bar) "aHs" = (/obj/structure/table/gamblingtable,/obj/item/weapon/storage/pill_bottle/dice,/obj/structure/disposalpipe/segment{dir = 8},/turf/simulated/floor/carpet/turcarpet,/area/crew_quarters/bar) "aHt" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/effect/floor_decal/steeldecal/steel_decals6{dir = 10},/turf/simulated/floor/tiled,/area/hallway/lower/third_south) "aHu" = (/obj/machinery/door/firedoor/glass,/obj/effect/floor_decal/steeldecal/steel_decals_central1{dir = 1},/turf/simulated/floor/tiled/monofloor{dir = 1},/area/crew_quarters/bar) -"aHv" = (/obj/effect/decal/cleanable/dirt,/obj/effect/decal/cleanable/spiderling_remains,/turf/simulated/floor/tiled/techmaint,/area/crew_quarters/barrestroom) -"aHw" = (/obj/machinery/hologram/holopad,/turf/simulated/floor/tiled,/area/tether/surfacebase/outside/outside3) -"aHx" = (/obj/structure/bed/chair/wood{dir = 1},/obj/machinery/light,/turf/simulated/floor/wood,/area/library) +"aHv" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 9},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/wood,/area/tether/surfacebase/bar_backroom) +"aHw" = (/obj/structure/cable/green{d1 = 1; d2 = 4; icon_state = "1-4"},/turf/simulated/floor/tiled,/area/tether/surfacebase/servicebackroom) +"aHx" = (/obj/structure/disposalpipe/segment,/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/tiled,/area/tether/surfacebase/servicebackroom) "aHy" = (/obj/machinery/computer/arcade,/turf/simulated/floor/wood,/area/crew_quarters/bar) -"aHz" = (/obj/structure/railing{dir = 4},/obj/effect/floor_decal/industrial/warning{dir = 8; icon_state = "warning"},/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/tiled/techmaint,/area/crew_quarters/barrestroom) -"aHA" = (/obj/machinery/door/firedoor/glass,/obj/machinery/door/airlock/silver,/turf/simulated/floor/tiled/steel_grid,/area/library) +"aHz" = (/obj/structure/railing{dir = 4},/obj/effect/floor_decal/industrial/warning/corner{dir = 1; icon_state = "warningcorner"},/turf/simulated/floor/tiled/techmaint,/area/vacant/vacant_bar_upper) +"aHA" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/tiled,/area/tether/surfacebase/servicebackroom) "aHB" = (/obj/structure/table/gamblingtable,/obj/structure/disposalpipe/segment{dir = 8},/turf/simulated/floor/carpet/turcarpet,/area/crew_quarters/bar) -"aHC" = (/obj/effect/floor_decal/industrial/warning{dir = 1; icon_state = "warning"},/obj/random/maintenance/clean,/obj/random/maintenance/clean,/obj/structure/table/rack/steel,/turf/simulated/floor/tiled/techmaint,/area/crew_quarters/barrestroom) +"aHC" = (/obj/machinery/floodlight,/turf/simulated/floor/tiled/techmaint,/area/vacant/vacant_bar_upper) "aHD" = (/obj/structure/sink{dir = 4; icon_state = "sink"; pixel_x = 11; pixel_y = 0},/obj/structure/mirror{pixel_x = 27},/turf/simulated/floor/tiled/white,/area/crew_quarters/barrestroom) "aHE" = (/obj/structure/window/basic/full,/obj/structure/grille,/obj/structure/window/basic{dir = 8},/turf/simulated/floor/tiled/steel,/area/rnd/outpost/xenobiology/outpost_hallway) "aHF" = (/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 8},/obj/structure/disposalpipe/segment,/obj/structure/cable/green{icon_state = "1-2"},/obj/machinery/hologram/holopad,/turf/simulated/floor/tiled/dark,/area/rnd/outpost/xenobiology/outpost_hallway) @@ -1769,14 +1769,14 @@ "aIa" = (/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/hallway/lower/third_south) "aIb" = (/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 1},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 1},/obj/structure/cable/green{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/tiled,/area/hallway/lower/third_south) "aIc" = (/obj/machinery/computer/timeclock/premade/east,/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/effect/floor_decal/borderfloor{dir = 4},/obj/effect/floor_decal/corner/beige/border{dir = 4},/obj/effect/floor_decal/borderfloor/corner2{dir = 5},/obj/effect/floor_decal/corner/beige/bordercorner2{dir = 5},/obj/machinery/door/firedoor/glass/hidden/steel{dir = 8},/turf/simulated/floor/tiled,/area/hallway/lower/third_south) -"aId" = (/obj/machinery/floodlight,/turf/simulated/floor/tiled/techmaint,/area/crew_quarters/barrestroom) -"aIe" = (/obj/machinery/portable_atmospherics/powered/scrubber,/turf/simulated/floor/tiled/techmaint,/area/crew_quarters/barrestroom) -"aIf" = (/obj/machinery/light/small{dir = 1},/obj/machinery/space_heater,/turf/simulated/floor/tiled/techmaint,/area/crew_quarters/barrestroom) +"aId" = (/obj/machinery/portable_atmospherics/powered/scrubber,/turf/simulated/floor/tiled/techmaint,/area/vacant/vacant_bar_upper) +"aIe" = (/obj/effect/decal/cleanable/dirt,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 5; icon_state = "intact-scrubbers"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 5; icon_state = "intact-supply"},/turf/simulated/floor/tiled/techmaint,/area/vacant/vacant_bar_upper) +"aIf" = (/obj/effect/decal/cleanable/dirt,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 10; icon_state = "intact-scrubbers"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 10},/turf/simulated/floor/tiled/techmaint,/area/vacant/vacant_bar_upper) "aIg" = (/obj/item/weapon/stool/padded,/obj/effect/floor_decal/spline/plain{dir = 4},/obj/structure/disposalpipe/segment{dir = 8},/turf/simulated/floor/carpet/turcarpet,/area/crew_quarters/bar) "aIh" = (/obj/structure/disposalpipe/segment{dir = 8},/turf/simulated/floor/wood,/area/crew_quarters/bar) "aIi" = (/obj/structure/bed/chair/wood{dir = 1},/obj/structure/disposalpipe/segment{dir = 8},/turf/simulated/floor/wood,/area/crew_quarters/bar) -"aIj" = (/obj/machinery/portable_atmospherics/hydroponics,/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/effect/floor_decal/corner/mauve/border{dir = 9},/turf/simulated/floor/tiled,/area/rnd/xenobiology/xenoflora) -"aIk" = (/obj/machinery/portable_atmospherics/hydroponics,/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/effect/floor_decal/corner/mauve/border{dir = 1},/turf/simulated/floor/tiled,/area/tether/surfacebase/outside/outside3) +"aIj" = (/obj/structure/cable/green{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/tiled,/area/tether/surfacebase/servicebackroom) +"aIk" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/effect/floor_decal/corner/mauve/border{dir = 1},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/tiled,/area/rnd/xenobiology/xenoflora) "aIl" = (/obj/item/weapon/stool/padded,/turf/simulated/floor/carpet/turcarpet,/area/crew_quarters/bar) "aIm" = (/turf/simulated/floor/lino,/area/crew_quarters/bar) "aIn" = (/obj/effect/floor_decal/spline/plain{dir = 4},/turf/simulated/floor/carpet/turcarpet,/area/crew_quarters/bar) @@ -1811,7 +1811,7 @@ "aIQ" = (/obj/structure/bed/chair/comfy{dir = 1},/obj/effect/landmark/start{name = "Bartender"},/obj/structure/disposalpipe/segment,/turf/simulated/floor/wood,/area/tether/surfacebase/bar_backroom) "aIR" = (/obj/structure/disposalpipe/trunk{dir = 8},/obj/machinery/disposal,/obj/effect/floor_decal/borderfloorwhite{dir = 4},/obj/effect/floor_decal/corner/paleblue/border{dir = 4},/obj/machinery/camera/network/medbay{dir = 9; icon_state = "camera"},/turf/simulated/floor/tiled/white,/area/tether/surfacebase/medical/chemistry) "aIS" = (/obj/machinery/vending/cigarette{dir = 1},/turf/simulated/floor/wood,/area/crew_quarters/bar) -"aIT" = (/obj/effect/floor_decal/borderfloor{dir = 4},/obj/effect/floor_decal/corner/mauve/border{dir = 4},/obj/machinery/atmospherics/pipe/manifold4w/hidden/yellow,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 5},/turf/simulated/floor/tiled,/area/rnd/xenobiology/xenoflora) +"aIT" = (/obj/machinery/alarm{pixel_y = 25},/turf/simulated/floor/tiled,/area/tether/surfacebase/servicebackroom) "aIU" = (/obj/machinery/vending/snack{dir = 1},/turf/simulated/floor/wood,/area/crew_quarters/bar) "aIV" = (/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 8},/obj/structure/disposalpipe/segment{dir = 1; icon_state = "pipe-c"},/turf/simulated/floor/tiled,/area/hallway/lower/third_south) "aIW" = (/obj/machinery/light{dir = 8; icon_state = "tube1"; pixel_y = 0},/obj/effect/floor_decal/borderfloorblack{dir = 8},/turf/simulated/floor/tiled,/area/rnd/outpost/xenobiology/outpost_hallway) @@ -1834,11 +1834,11 @@ "aJn" = (/obj/machinery/door/firedoor,/obj/structure/grille,/obj/structure/window/reinforced/full,/turf/simulated/floor/plating,/area/hallway/lower/third_south) "aJo" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/glass_external/public,/turf/simulated/floor/tiled,/area/hallway/lower/third_south) "aJp" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/door/firedoor,/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/door/airlock/glass_external/public,/turf/simulated/floor/tiled,/area/hallway/lower/third_south) -"aJq" = (/obj/machinery/atmospherics/pipe/simple/visible/yellow{dir = 4},/obj/machinery/atmospherics/pipe/simple/visible/scrubbers{dir = 4},/obj/structure/grille,/obj/structure/window/reinforced/full,/obj/structure/window/reinforced{dir = 8},/obj/structure/window/reinforced{dir = 4},/turf/simulated/floor/tiled/eris/steel/techfloor_grid,/area/rnd/xenobiology/xenoflora) +"aJq" = (/obj/structure/bed/chair/comfy,/turf/simulated/floor/tiled,/area/tether/surfacebase/servicebackroom) "aJr" = (/obj/effect/floor_decal/borderfloor{dir = 1},/obj/effect/floor_decal/corner/lightgrey/border{dir = 1},/obj/machinery/station_map{pixel_y = 32},/obj/machinery/door/firedoor/glass/hidden/steel{dir = 2},/turf/simulated/floor/tiled,/area/hallway/lower/third_south) "aJs" = (/obj/structure/railing{dir = 1},/obj/structure/grille,/turf/simulated/floor/tiled/techmaint,/area/crew_quarters/bar) "aJt" = (/turf/simulated/wall,/area/tether/surfacebase/bar_backroom) -"aJu" = (/obj/structure/bed/chair/office/light,/obj/effect/landmark/start{name = "Xenobotanist"},/turf/simulated/floor/tiled,/area/tether/surfacebase/outside/outside3) +"aJu" = (/obj/structure/closet/crate/hydroponics,/obj/effect/floor_decal/corner/lime/border{dir = 10},/turf/simulated/floor/tiled,/area/tether/surfacebase/botanystorage) "aJv" = (/obj/structure/table/gamblingtable,/obj/item/weapon/storage/pill_bottle/dice_nerd,/obj/structure/disposalpipe/segment{dir = 8},/turf/simulated/floor/carpet/turcarpet,/area/crew_quarters/bar) "aJw" = (/obj/structure/grille,/obj/structure/window/reinforced/full,/obj/machinery/door/firedoor,/turf/simulated/floor/plating,/area/hydroponics/cafegarden) "aJx" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/disposalpipe/segment,/obj/structure/cable/green{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/tiled/dark,/area/rnd/outpost/xenobiology/outpost_hallway) @@ -1853,7 +1853,7 @@ "aJG" = (/obj/effect/floor_decal/industrial/warning,/turf/simulated/floor/tiled,/area/rnd/research/testingrange) "aJH" = (/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 8},/obj/effect/floor_decal/industrial/warning,/turf/simulated/floor/tiled,/area/rnd/research/testingrange) "aJI" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/effect/floor_decal/industrial/warning,/turf/simulated/floor/tiled,/area/rnd/research/testingrange) -"aJJ" = (/turf/simulated/floor/tiled,/area/crew_quarters/kitchen) +"aJJ" = (/obj/structure/closet/crate/hydroponics,/obj/effect/floor_decal/corner/lime/border,/turf/simulated/floor/tiled,/area/tether/surfacebase/botanystorage) "aJK" = (/obj/item/weapon/stool/padded,/obj/effect/floor_decal/spline/plain{dir = 4},/obj/structure/disposalpipe/segment{dir = 2; icon_state = "pipe-c"},/turf/simulated/floor/carpet/turcarpet,/area/crew_quarters/bar) "aJL" = (/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 4; icon_state = "map-scrubbers"},/obj/effect/floor_decal/industrial/warning,/turf/simulated/floor/tiled,/area/rnd/research/testingrange) "aJM" = (/obj/machinery/firealarm{dir = 4; pixel_x = 24},/obj/effect/floor_decal/borderfloor{dir = 4},/obj/effect/floor_decal/corner/mauve/border{dir = 4},/obj/effect/floor_decal/borderfloor/corner2{dir = 6},/obj/effect/floor_decal/corner/mauve/bordercorner2{dir = 6},/obj/effect/floor_decal/industrial/warning,/turf/simulated/floor/tiled,/area/rnd/research/testingrange) @@ -1865,7 +1865,7 @@ "aJS" = (/obj/effect/floor_decal/industrial/loading{dir = 8},/turf/simulated/floor/tiled/steel_grid,/area/assembly/robotics) "aJT" = (/obj/machinery/mecha_part_fabricator{dir = 8},/obj/structure/extinguisher_cabinet{dir = 8; icon_state = "extinguisher_closed"; pixel_x = 30},/obj/effect/floor_decal/borderfloor{dir = 4},/obj/effect/floor_decal/corner/mauve/border{dir = 4},/obj/effect/floor_decal/borderfloor/corner2{dir = 5},/obj/effect/floor_decal/corner/mauve/bordercorner2{dir = 5},/obj/effect/floor_decal/industrial/warning/corner,/turf/simulated/floor/tiled/steel_grid,/area/assembly/robotics) "aJU" = (/obj/machinery/recharge_station,/obj/machinery/light{dir = 8; icon_state = "tube1"},/obj/effect/floor_decal/industrial/warning/corner{dir = 8; icon_state = "warningcorner"},/turf/simulated/floor/tiled/steel_grid,/area/assembly/chargebay) -"aJV" = (/obj/effect/floor_decal/spline/plain{dir = 8},/obj/structure/cable/green{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/tiled/eris/cafe,/area/hydroponics) +"aJV" = (/obj/effect/floor_decal/corner/lime/border{dir = 6},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 8},/turf/simulated/floor/tiled,/area/hydroponics) "aJW" = (/obj/effect/floor_decal/industrial/warning{dir = 1; icon_state = "warning"},/obj/machinery/button/remote/blast_door{id = "mechbay"; name = "Mech Bay Access"; pixel_x = -30; pixel_y = 30},/turf/simulated/floor/bluegrid,/area/assembly/chargebay) "aJX" = (/obj/effect/floor_decal/industrial/warning{dir = 1; icon_state = "warning"},/turf/simulated/floor/bluegrid,/area/assembly/chargebay) "aJY" = (/obj/machinery/alarm{dir = 8; icon_state = "alarm0"; pixel_x = 24},/obj/effect/floor_decal/industrial/warning{dir = 1; icon_state = "warning"},/turf/simulated/floor/bluegrid,/area/assembly/chargebay) @@ -1882,17 +1882,17 @@ "aKj" = (/turf/simulated/wall,/area/tether/surfacebase/shuttle_pad) "aKk" = (/obj/item/weapon/tank/emergency/oxygen/double,/obj/item/clothing/gloves/fyellow,/obj/item/weapon/book{author = "Urist McHopefulsoul"; desc = "It contains fourty blank pages followed by the entire screenplay of a movie called 'Requiem for a Dream'"; name = "A Comprehensive Guide to Assisting"},/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/plating,/area/tether/surfacebase/shuttle_pad) "aKl" = (/obj/effect/floor_decal/corner/grey/diagonal,/obj/structure/cable/green{d1 = 1; d2 = 4; icon_state = "1-4"},/turf/simulated/floor/tiled/white,/area/crew_quarters/kitchen) -"aKm" = (/obj/effect/floor_decal/corner/grey/diagonal,/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/cable/green{d1 = 2; d2 = 8; icon_state = "2-8"},/turf/simulated/floor/tiled/white,/area/crew_quarters/kitchen) +"aKm" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 8},/turf/simulated/floor/grass,/area/hydroponics) "aKn" = (/obj/machinery/portable_atmospherics/powered/scrubber/huge/stationary{scrub_id = "atrium"},/turf/simulated/floor/tiled/techmaint,/area/crew_quarters/bar) "aKo" = (/obj/item/weapon/stool/padded,/obj/effect/floor_decal/spline/plain{dir = 4},/obj/structure/disposalpipe/segment,/turf/simulated/floor/carpet/turcarpet,/area/crew_quarters/bar) "aKp" = (/obj/effect/floor_decal/corner/grey/diagonal,/obj/item/weapon/paper{desc = ""; info = "Yes hello, the goat in the freezer is named 'Spike'. Please do not fuck with Spike. He doesn't have the best temper."; name = "Important notice from Rancher Jim"},/turf/simulated/floor/tiled/white,/area/crew_quarters/kitchen) "aKq" = (/obj/effect/floor_decal/spline/plain{dir = 6},/obj/structure/disposalpipe/segment,/turf/simulated/floor/carpet/turcarpet,/area/crew_quarters/bar) "aKr" = (/obj/structure/disposalpipe/segment,/turf/simulated/floor/wood,/area/crew_quarters/bar) -"aKs" = (/obj/machinery/newscaster{pixel_y = -28},/obj/machinery/disposal,/obj/structure/disposalpipe/trunk{dir = 1},/turf/simulated/floor/wood,/area/crew_quarters/bar) -"aKt" = (/obj/effect/floor_decal/corner/grey/diagonal,/obj/machinery/power/apc{dir = 1; name = "north bump"; pixel_x = 0; pixel_y = 24},/obj/structure/cable/green{icon_state = "0-8"},/turf/simulated/floor/tiled/white,/area/crew_quarters/kitchen) +"aKs" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 9},/turf/simulated/floor/wood,/area/tether/surfacebase/bar_backroom) +"aKt" = (/obj/machinery/vending/hydronutrients,/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 8},/turf/simulated/floor/grass,/area/hydroponics) "aKu" = (/obj/effect/floor_decal/corner/grey/diagonal,/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/tiled/white,/area/crew_quarters/kitchen) "aKv" = (/obj/machinery/disposal,/obj/structure/disposalpipe/trunk{dir = 4},/obj/machinery/light{dir = 8; icon_state = "tube1"},/turf/simulated/floor/wood,/area/crew_quarters/recreation_area) -"aKw" = (/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled,/area/crew_quarters/kitchen) +"aKw" = (/obj/machinery/biogenerator,/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 8},/turf/simulated/floor/grass,/area/hydroponics) "aKx" = (/obj/effect/floor_decal/corner/grey/diagonal,/obj/structure/disposalpipe/sortjunction/flipped{dir = 4; icon_state = "pipe-j2s"; name = "Service Block"; sortType = "HoP Office"},/turf/simulated/floor/tiled/white,/area/crew_quarters/kitchen) "aKy" = (/obj/effect/floor_decal/corner/grey/diagonal,/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled/white,/area/crew_quarters/kitchen) "aKz" = (/obj/structure/window/basic/full,/obj/structure/grille,/obj/machinery/door/firedoor/glass,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/tiled/steel,/area/rnd/outpost/xenobiology/outpost_first_aid) @@ -1926,8 +1926,8 @@ "aLb" = (/obj/effect/floor_decal/corner/grey/diagonal,/obj/structure/disposalpipe/segment{dir = 1; icon_state = "pipe-c"},/turf/simulated/floor/tiled/white,/area/crew_quarters/kitchen) "aLc" = (/obj/structure/table/standard,/obj/item/weapon/reagent_containers/food/condiment/small/saltshaker{pixel_x = -3; pixel_y = 0},/obj/item/weapon/reagent_containers/food/condiment/small/peppermill{pixel_x = 3},/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/tiled/white,/area/crew_quarters/kitchen) "aLd" = (/obj/structure/bed/chair/wood,/turf/simulated/floor/wood,/area/crew_quarters/bar) -"aLe" = (/obj/structure/disposalpipe/segment{dir = 8},/turf/simulated/floor/tiled,/area/crew_quarters/kitchen) -"aLf" = (/turf/simulated/wall,/area/tether/surfacebase/outside/outside3) +"aLe" = (/obj/machinery/smartfridge/drying_rack,/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 9},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 9},/turf/simulated/floor/grass,/area/hydroponics) +"aLf" = (/obj/structure/closet/crate/hydroponics,/obj/effect/floor_decal/corner/lime/border{dir = 6},/turf/simulated/floor/tiled,/area/tether/surfacebase/botanystorage) "aLg" = (/obj/machinery/cooker/cereal,/obj/effect/floor_decal/industrial/warning/dust,/obj/effect/floor_decal/industrial/warning/dust{icon_state = "warning_dust"; dir = 1},/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/tiled/white,/area/crew_quarters/kitchen) "aLh" = (/obj/effect/floor_decal/corner/lime/border{dir = 4},/obj/structure/disposalpipe/segment{dir = 8},/turf/simulated/floor/tiled,/area/tether/surfacebase/surface_three_hall) "aLi" = (/obj/structure/disposalpipe/segment,/obj/structure/cable/green{icon_state = "2-4"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 9},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 5; icon_state = "intact-supply"},/turf/simulated/floor/tiled/white,/area/rnd/outpost/xenobiology/outpost_first_aid) @@ -1950,15 +1950,15 @@ "aLz" = (/obj/structure/cable/green{icon_state = "0-8"},/obj/machinery/power/apc{dir = 4; name = "east bump"; pixel_x = 28},/turf/simulated/floor/bluegrid,/area/assembly/chargebay) "aLA" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/glass_external/public,/turf/simulated/floor/tiled,/area/tether/surfacebase/shuttle_pad) "aLB" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/door/firedoor,/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/door/airlock/glass_external/public,/turf/simulated/floor/tiled,/area/tether/surfacebase/shuttle_pad) -"aLC" = (/obj/structure/plasticflaps,/obj/machinery/conveyor{dir = 1; id = "serviceblock2"},/turf/simulated/floor/tiled,/area/crew_quarters/kitchen) -"aLD" = (/obj/structure/bed/chair/comfy{dir = 1},/turf/simulated/floor/tiled,/area/tether/surfacebase/outside/outside3) -"aLE" = (/obj/structure/bed/chair/comfy,/turf/simulated/floor/tiled,/area/tether/surfacebase/outside/outside3) -"aLF" = (/obj/structure/table/woodentable,/turf/simulated/floor/tiled,/area/tether/surfacebase/outside/outside3) -"aLG" = (/obj/structure/table/woodentable,/obj/item/weapon/storage/box/sinpockets,/turf/simulated/floor/tiled,/area/tether/surfacebase/outside/outside3) -"aLH" = (/obj/machinery/conveyor{dir = 1; id = "serviceblock2"},/turf/simulated/floor/tiled,/area/crew_quarters/kitchen) -"aLI" = (/obj/machinery/atmospherics/pipe/simple/visible/scrubbers{dir = 9},/obj/machinery/atmospherics/pipe/simple/visible/yellow{dir = 4},/obj/structure/catwalk,/turf/simulated/floor/tiled/eris/steel/techfloor_grid,/area/rnd/xenobiology/xenoflora) -"aLJ" = (/obj/structure/catwalk,/obj/machinery/atmospherics/pipe/manifold/visible/yellow,/turf/simulated/floor/tiled/eris/steel/techfloor_grid,/area/rnd/xenobiology/xenoflora) -"aLK" = (/obj/structure/window/reinforced/full,/obj/structure/grille,/obj/structure/window/reinforced/tinted{dir = 1},/obj/structure/window/reinforced/tinted{dir = 4; icon_state = "twindow"},/turf/simulated/floor/tiled,/area/crew_quarters/kitchen) +"aLC" = (/obj/structure/window/reinforced/full,/obj/structure/grille,/obj/structure/window/reinforced/tinted{dir = 1},/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled,/area/tether/surfacebase/servicebackroom) +"aLD" = (/obj/structure/window/reinforced/full,/obj/structure/grille,/obj/structure/window/reinforced/tinted{dir = 1},/obj/structure/window/reinforced/tinted{dir = 4; icon_state = "twindow"},/turf/simulated/floor/tiled,/area/tether/surfacebase/servicebackroom) +"aLE" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/tiled,/area/tether/surfacebase/servicebackroom) +"aLF" = (/obj/structure/table/woodentable,/turf/simulated/floor/tiled,/area/tether/surfacebase/servicebackroom) +"aLG" = (/obj/structure/grille,/obj/structure/window/reinforced/full,/obj/machinery/door/firedoor,/obj/structure/window/reinforced{dir = 4},/obj/structure/window/reinforced,/turf/simulated/floor/plating,/area/tether/surfacebase/botanystorage) +"aLH" = (/obj/structure/disposalpipe/trunk{dir = 1},/obj/machinery/disposal/deliveryChute,/obj/structure/window/reinforced/tinted{dir = 1},/obj/machinery/conveyor{dir = 1; id = "serviceblock2"},/turf/simulated/floor/tiled,/area/tether/surfacebase/servicebackroom) +"aLI" = (/obj/structure/window/reinforced/full,/obj/structure/grille,/obj/structure/window/reinforced/tinted{dir = 4; icon_state = "twindow"},/obj/structure/window/reinforced/tinted{dir = 8; icon_state = "twindow"},/turf/simulated/floor/tiled,/area/tether/surfacebase/servicebackroom) +"aLJ" = (/obj/structure/table/woodentable,/obj/item/weapon/storage/box/sinpockets,/obj/machinery/light{dir = 4; icon_state = "tube1"},/turf/simulated/floor/tiled,/area/tether/surfacebase/servicebackroom) +"aLK" = (/obj/structure/plasticflaps,/obj/machinery/conveyor{dir = 1; id = "serviceblock2"},/turf/simulated/floor/tiled,/area/tether/surfacebase/servicebackroom) "aLL" = (/obj/machinery/camera/network/civilian{dir = 1},/turf/simulated/floor/tiled,/area/tether/surfacebase/shuttle_pad) "aLM" = (/obj/machinery/light{dir = 8},/turf/simulated/open,/area/rnd/outpost/xenobiology/outpost_stairs) "aLN" = (/obj/structure/disposalpipe/segment,/obj/structure/cable/green{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/tiled/dark,/area/rnd/outpost/xenobiology/outpost_hallway) @@ -1980,8 +1980,8 @@ "aMd" = (/obj/machinery/alarm{pixel_y = 22},/turf/simulated/floor/tiled,/area/tether/surfacebase/shuttle_pad) "aMe" = (/obj/structure/cable/green{icon_state = "0-2"},/obj/machinery/power/apc{dir = 1; name = "north bump"; pixel_x = 0; pixel_y = 28},/turf/simulated/floor/tiled/monotile,/area/tether/surfacebase/shuttle_pad) "aMf" = (/obj/effect/floor_decal/borderfloorblack{dir = 4},/obj/effect/floor_decal/industrial/danger{dir = 4},/obj/machinery/embedded_controller/radio/simple_docking_controller{frequency = 1380; id_tag = "tether_pad_airlock"; pixel_x = 0; pixel_y = 28; tag_door = "tether_pad_hatch"},/obj/machinery/airlock_sensor{frequency = 1380; id_tag = "tether_pad_sensor"; pixel_x = -11; pixel_y = 28},/turf/simulated/floor/tiled,/area/tether/surfacebase/shuttle_pad) -"aMg" = (/obj/machinery/conveyor{dir = 1; id = "serviceblock1"},/turf/simulated/floor/tiled,/area/crew_quarters/kitchen) -"aMh" = (/turf/simulated/open/virgo3b,/area/space) +"aMg" = (/obj/structure/window/reinforced/full,/obj/structure/grille,/obj/structure/window/reinforced/tinted,/obj/structure/window/reinforced/tinted{dir = 4; icon_state = "twindow"},/obj/structure/window/reinforced/tinted{dir = 8; icon_state = "twindow"},/turf/simulated/floor/tiled,/area/tether/surfacebase/servicebackroom) +"aMh" = (/obj/structure/bed/chair/comfy{dir = 1},/turf/simulated/floor/tiled,/area/tether/surfacebase/servicebackroom) "aMi" = (/obj/structure/flora/pottedplant/unusual,/obj/machinery/firealarm{dir = 8; pixel_x = -24; pixel_y = 0},/obj/effect/floor_decal/borderfloorblack{dir = 8},/turf/simulated/floor/tiled,/area/rnd/outpost/xenobiology/outpost_hallway) "aMj" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4; icon_state = "intact-scrubbers"},/turf/simulated/floor/tiled/dark,/area/rnd/outpost/xenobiology/outpost_south_airlock) "aMk" = (/obj/machinery/camera/network/civilian{dir = 9},/turf/simulated/floor/wood,/area/library) @@ -2161,7 +2161,7 @@ "aPC" = (/obj/machinery/computer/communications{dir = 1},/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/camera/network/command{dir = 10; icon_state = "camera"},/turf/simulated/floor/tiled/dark,/area/bridge) "aPD" = (/obj/effect/floor_decal/borderfloor{dir = 1},/obj/effect/floor_decal/corner/lightgrey/border{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals7,/obj/item/device/radio/intercom{dir = 1; pixel_y = 24; req_access = list()},/turf/simulated/floor/tiled,/area/hallway/lower/third_south) "aPE" = (/obj/item/device/radio/intercom{dir = 8; pixel_x = 10},/turf/simulated/wall,/area/rnd/outpost/xenobiology/outpost_breakroom) -"aPF" = (/obj/machinery/atmospherics/pipe/tank/phoron{dir = 8; icon_state = "phoron_map"; name = "Xenoflora Waste Buffer"; start_pressure = 0},/obj/structure/catwalk,/turf/simulated/floor/tiled/eris/steel/techfloor_grid,/area/rnd/xenobiology/xenoflora) +"aPF" = (/obj/machinery/conveyor{dir = 1; id = "serviceblock2"},/turf/simulated/floor/tiled,/area/tether/surfacebase/servicebackroom) "aPG" = (/obj/random/mob/mouse,/turf/simulated/floor/tiled,/area/rnd/outpost/xenobiology/outpost_breakroom) "aPH" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 6},/turf/simulated/floor/tiled,/area/rnd/outpost/xenobiology/outpost_breakroom) "aPI" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled,/area/rnd/outpost/xenobiology/outpost_breakroom) @@ -2246,7 +2246,7 @@ "aRj" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4; icon_state = "intact-scrubbers"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/cable/green{icon_state = "2-4"},/turf/simulated/floor/tiled/white,/area/rnd/outpost/xenobiology/outpost_autopsy) "aRk" = (/obj/structure/table/standard,/obj/item/toy/plushie/coffee_fox,/obj/item/clothing/glasses/welding,/obj/item/weapon/weldingtool,/obj/machinery/recharger/wallcharger{pixel_x = 4; pixel_y = 28},/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 4},/turf/simulated/floor/tiled/techmaint,/area/rnd/outpost/xenobiology/outpost_storage) "aRl" = (/obj/machinery/newscaster,/turf/simulated/wall,/area/rnd/outpost/xenobiology/outpost_autopsy) -"aRm" = (/obj/machinery/portable_atmospherics/hydroponics,/obj/structure/cable/green{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/effect/floor_decal/corner/mauve/border{dir = 1},/turf/simulated/floor/tiled,/area/tether/surfacebase/outside/outside3) +"aRm" = (/obj/machinery/conveyor_switch/oneway{id = "serviceblock2"},/obj/effect/floor_decal/industrial/warning{dir = 9},/turf/simulated/floor/tiled,/area/tether/surfacebase/servicebackroom) "aRn" = (/obj/machinery/newscaster,/turf/simulated/wall,/area/rnd/outpost/xenobiology/outpost_decon) "aRo" = (/obj/machinery/atmospherics/pipe/manifold4w/hidden/scrubbers,/obj/machinery/atmospherics/pipe/manifold4w/hidden/supply,/obj/structure/cable/green{icon_state = "1-2"},/obj/structure/cable/green{icon_state = "1-8"},/obj/structure/cable/green{icon_state = "1-4"},/obj/machinery/hologram/holopad,/obj/structure/disposalpipe/junction{dir = 1; icon_state = "pipe-j2"},/turf/simulated/floor/tiled/dark,/area/rnd/outpost/xenobiology/outpost_main) "aRp" = (/obj/structure/cable/green{icon_state = "1-4"},/obj/machinery/camera/network/research{dir = 1},/obj/structure/closet/l3closet/scientist,/turf/simulated/floor/tiled/white,/area/rnd/outpost/xenobiology/outpost_decon) @@ -2283,7 +2283,7 @@ "aRU" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock{name = "Showers and Decontamination"},/turf/simulated/floor/tiled/steel,/area/rnd/outpost/xenobiology/outpost_decon) "aRV" = (/obj/item/device/radio/intercom,/turf/simulated/wall,/area/rnd/outpost/xenobiology/outpost_decon) "aRW" = (/obj/structure/window/basic/full,/obj/structure/window/basic{dir = 1},/obj/structure/window/basic{dir = 4},/obj/structure/window/basic{dir = 8},/obj/structure/grille,/obj/machinery/door/firedoor/glass,/turf/simulated/floor/plating,/area/rnd/outpost/xenobiology/outpost_main) -"aRX" = (/obj/machinery/portable_atmospherics/hydroponics,/obj/effect/floor_decal/corner/mauve/border{dir = 1},/turf/simulated/floor/tiled,/area/tether/surfacebase/outside/outside3) +"aRX" = (/obj/machinery/atmospherics/unary/vent_pump/on,/turf/simulated/floor/tiled,/area/tether/surfacebase/servicebackroom) "aRY" = (/obj/structure/bed/roller,/obj/structure/extinguisher_cabinet{dir = 4; icon_state = "extinguisher_closed"; pixel_x = -30},/obj/structure/table/glass,/obj/item/weapon/storage/toolbox/emergency,/obj/item/device/defib_kit/loaded,/turf/simulated/floor/tiled/white,/area/rnd/outpost/xenobiology/outpost_first_aid) "aRZ" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 6},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 1},/turf/simulated/floor/tiled,/area/rnd/outpost/xenobiology/outpost_main) "aSa" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4; icon_state = "intact-scrubbers"},/obj/machinery/firealarm{dir = 2; layer = 3.3; pixel_x = 4; pixel_y = 26},/turf/simulated/floor/tiled,/area/rnd/outpost/xenobiology/outpost_main) @@ -2293,11 +2293,11 @@ "aSe" = (/obj/machinery/atmospherics/pipe/manifold4w/hidden/scrubbers,/obj/machinery/atmospherics/pipe/manifold4w/hidden/supply,/obj/structure/disposalpipe/segment,/obj/structure/cable/green{icon_state = "1-2"},/obj/machinery/hologram/holopad,/turf/simulated/floor/tiled/dark,/area/rnd/outpost/xenobiology/outpost_main) "aSf" = (/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 1},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 10},/turf/simulated/floor/tiled,/area/rnd/outpost/xenobiology/outpost_main) "aSg" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable/green{icon_state = "4-8"},/obj/structure/cable/green{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/machinery/atmospherics/unary/vent_pump/on{dir = 1},/turf/simulated/floor/tiled/dark,/area/rnd/outpost/xenobiology/outpost_main) -"aSh" = (/obj/machinery/portable_atmospherics/hydroponics,/obj/effect/floor_decal/corner/mauve/border{dir = 5},/turf/simulated/floor/tiled,/area/tether/surfacebase/outside/outside3) +"aSh" = (/obj/effect/floor_decal/industrial/outline/blue,/turf/simulated/floor/tiled,/area/tether/surfacebase/servicebackroom) "aSi" = (/obj/structure/window/basic/full,/obj/structure/window/basic{dir = 1},/obj/structure/window/basic{dir = 8},/obj/structure/window/basic{dir = 4},/obj/structure/grille,/obj/machinery/door/firedoor/glass,/turf/simulated/floor/plating,/area/rnd/outpost/xenobiology/outpost_main) "aSj" = (/obj/structure/window/basic/full,/obj/structure/window/basic,/obj/structure/window/basic{dir = 4},/obj/structure/window/basic{dir = 8},/obj/structure/grille,/obj/machinery/door/firedoor/glass,/turf/simulated/floor/plating,/area/rnd/outpost/xenobiology/outpost_main) "aSk" = (/obj/effect/floor_decal/industrial/warning{dir = 1; icon_state = "warning"},/obj/machinery/atmospherics/pipe/simple/hidden/cyan{dir = 5; icon_state = "intact"},/turf/simulated/floor/tiled/white,/area/tether/surfacebase/medical/triage) -"aSl" = (/obj/machinery/seed_extractor,/obj/effect/floor_decal/corner/mauve/border{dir = 4},/turf/simulated/floor/tiled,/area/tether/surfacebase/outside/outside3) +"aSl" = (/obj/effect/floor_decal/industrial/warning{dir = 8; icon_state = "warning"},/turf/simulated/floor/tiled,/area/tether/surfacebase/servicebackroom) "aSm" = (/obj/machinery/atmospherics/pipe/simple/hidden/cyan{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 9; pixel_y = 0},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4; icon_state = "intact-scrubbers"},/obj/effect/floor_decal/techfloor/corner{dir = 1},/obj/effect/floor_decal/techfloor/corner,/turf/simulated/floor/tiled/dark,/area/tether/surfacebase/medical/triage) "aSn" = (/obj/machinery/atmospherics/pipe/manifold/hidden/cyan,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4; icon_state = "intact-scrubbers"},/obj/effect/floor_decal/techfloor,/turf/simulated/floor/tiled/dark,/area/tether/surfacebase/medical/triage) "aSo" = (/obj/structure/table/steel,/obj/machinery/atmospherics/unary/vent_scrubber/on,/obj/random/maintenance/medical,/obj/random/maintenance/medical,/obj/effect/floor_decal/techfloor{dir = 5},/obj/machinery/firealarm{dir = 2; layer = 3.3; pixel_x = 0; pixel_y = 26},/turf/simulated/floor/tiled/dark,/area/tether/surfacebase/medical/triage) @@ -2340,7 +2340,7 @@ "aSZ" = (/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 6},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 4},/obj/machinery/light_switch{dir = 2; name = "light switch "; on = 0; pixel_x = 0; pixel_y = 36},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled/white,/area/tether/surfacebase/medical/chemistry) "aTa" = (/obj/machinery/alarm{dir = 4; icon_state = "alarm0"; pixel_x = -22},/obj/machinery/disposal,/obj/structure/disposalpipe/trunk{dir = 4},/turf/simulated/floor/tiled/white,/area/rnd/outpost/xenobiology/outpost_first_aid) "aTb" = (/obj/effect/floor_decal/borderfloorwhite{dir = 1},/obj/effect/floor_decal/corner/paleblue/border{dir = 1},/obj/effect/floor_decal/borderfloorwhite/corner2{dir = 4},/obj/effect/floor_decal/corner/paleblue/bordercorner2{dir = 4},/obj/item/device/radio/headset/headset_med,/obj/item/weapon/storage/box/syringes,/obj/item/weapon/storage/fancy/vials,/obj/item/weapon/storage/fancy/vials,/obj/item/weapon/storage/box/pillbottles,/obj/item/weapon/storage/box/pillbottles,/obj/structure/closet/wardrobe/chemistry_white,/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 10},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/requests_console{announcementConsole = 1; department = "Medical Department"; departmentType = 3; name = "Medical RC"; pixel_x = 0; pixel_y = 30},/turf/simulated/floor/tiled/white,/area/tether/surfacebase/medical/chemistry) -"aTc" = (/obj/structure/table/woodentable,/obj/effect/floor_decal/corner/lime/border,/obj/machinery/light,/turf/simulated/floor/tiled,/area/hydroponics) +"aTc" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/tiled,/area/tether/surfacebase/servicebackroom) "aTd" = (/obj/structure/table/reinforced,/obj/effect/floor_decal/borderfloorwhite{dir = 5},/obj/effect/floor_decal/corner/paleblue/border{dir = 5},/obj/item/device/mass_spectrometer/adv,/obj/item/device/mass_spectrometer/adv,/obj/item/clothing/glasses/science,/obj/item/clothing/glasses/science,/obj/item/weapon/storage/box/beakers,/obj/item/weapon/hand_labeler,/obj/item/weapon/packageWrap,/obj/machinery/firealarm{dir = 4; pixel_x = 24},/obj/machinery/light{dir = 1},/obj/item/weapon/reagent_containers/spray/cleaner{desc = "Someone has crossed out the 'Space' from Space Cleaner and written in Chemistry. Scrawled on the back is, 'Okay, whoever filled this with polytrinic acid, it was only funny the first time. It was hard enough replacing the CMO's first cat!'"; name = "Chemistry Cleaner"},/turf/simulated/floor/tiled/white,/area/tether/surfacebase/medical/chemistry) "aTe" = (/obj/machinery/door/firedoor/glass,/obj/machinery/door/airlock/glass_research{name = "Weapons Testing Range"; req_access = list(47)},/turf/simulated/floor/tiled,/area/rnd/research/testingrange) "aTf" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/tiled/white,/area/rnd/outpost/xenobiology/outpost_first_aid) @@ -2360,7 +2360,7 @@ "aTt" = (/obj/machinery/door/firedoor/glass,/obj/machinery/door/airlock/maintenance/command{req_access = list(19)},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/door/blast/regular{closed_layer = 10; density = 0; dir = 4; icon_state = "pdoor0"; id = "bridge blast"; layer = 1; name = "Bridge Blast Doors"; opacity = 0; open_layer = 1},/turf/simulated/floor,/area/bridge_hallway) "aTu" = (/obj/machinery/door/firedoor/glass,/obj/machinery/door/airlock/glass_command{dir = 1; name = "Bridge"; req_access = list(19)},/obj/machinery/door/blast/regular{closed_layer = 10; density = 0; dir = 1; icon_state = "pdoor0"; id = "bridge blast"; layer = 1; name = "Bridge Blast Doors"; opacity = 0; open_layer = 1},/turf/simulated/floor/tiled/dark,/area/bridge) "aTv" = (/obj/machinery/computer/station_alert/all{dir = 4; icon_state = "computer"},/turf/simulated/floor/tiled/dark,/area/bridge) -"aTw" = (/obj/machinery/light{dir = 4; icon_state = "tube1"},/turf/simulated/floor/grass,/area/hydroponics) +"aTw" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 9},/turf/simulated/floor/tiled,/area/tether/surfacebase/servicebackroom) "aTx" = (/obj/structure/window/basic/full,/obj/structure/grille,/obj/machinery/door/firedoor/glass,/obj/structure/window/basic,/turf/simulated/floor/plating,/area/rnd/outpost/xenobiology/outpost_first_aid) "aTy" = (/obj/structure/grille,/obj/machinery/door/firedoor/glass,/obj/structure/window/reinforced/polarized/full{id = "hop_office"},/obj/structure/window/reinforced/polarized{dir = 4; icon_state = "rwindow"; id = "hop_office"},/obj/structure/cable/green{dir = 1; icon_state = "0-1"},/turf/simulated/floor/plating,/area/crew_quarters/heads/hop) "aTz" = (/obj/structure/grille,/obj/machinery/door/firedoor/glass,/obj/structure/window/reinforced/polarized/full{id = "hop_office"},/obj/structure/window/reinforced/polarized{dir = 4; icon_state = "rwindow"; id = "hop_office"},/obj/structure/cable/green,/obj/structure/cable/green{dir = 1; icon_state = "0-1"},/turf/simulated/floor/plating,/area/crew_quarters/heads/hop) @@ -2368,12 +2368,12 @@ "aTB" = (/obj/machinery/hologram/holopad,/turf/simulated/floor/tiled,/area/rnd/outpost/xenobiology/outpost_breakroom) "aTC" = (/obj/structure/table/reinforced,/obj/item/weapon/storage/firstaid/regular,/obj/item/device/radio{pixel_x = 2; pixel_y = 3},/obj/item/device/radio,/obj/machinery/power/apc{dir = 1; name = "north bump"; pixel_x = 0; pixel_y = 28},/obj/machinery/light_switch{pixel_x = 12; pixel_y = 25},/obj/structure/cable/green{icon_state = "0-4"},/obj/item/device/multitool,/turf/simulated/floor/tiled/dark,/area/bridge) "aTD" = (/obj/machinery/light{dir = 4},/obj/structure/closet/firecloset,/obj/machinery/alarm{dir = 8; pixel_x = 25; pixel_y = 0},/turf/simulated/floor/tiled/dark,/area/rnd/outpost/xenobiology/outpost_south_airlock) -"aTE" = (/obj/machinery/light,/turf/simulated/floor/grass,/area/hydroponics) +"aTE" = (/obj/structure/disposalpipe/segment{dir = 4; icon_state = "pipe-c"},/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/grass,/area/hydroponics) "aTF" = (/obj/effect/floor_decal/spline/plain{dir = 8},/obj/machinery/light{dir = 1},/turf/simulated/floor/grass,/area/hydroponics) -"aTG" = (/obj/structure/window/reinforced/full,/obj/structure/grille,/obj/structure/window/reinforced/tinted{dir = 4; icon_state = "twindow"},/obj/structure/window/reinforced/tinted{dir = 8; icon_state = "twindow"},/turf/simulated/floor/tiled,/area/crew_quarters/kitchen) -"aTH" = (/obj/structure/window/reinforced/full,/obj/structure/grille,/obj/structure/window/reinforced/tinted,/obj/structure/window/reinforced/tinted{dir = 4; icon_state = "twindow"},/obj/structure/window/reinforced/tinted{dir = 8; icon_state = "twindow"},/turf/simulated/floor/tiled,/area/crew_quarters/kitchen) -"aTI" = (/obj/machinery/conveyor_switch/oneway{id = "serviceblock2"},/obj/effect/floor_decal/industrial/warning{dir = 9},/turf/simulated/floor/tiled,/area/crew_quarters/kitchen) -"aTJ" = (/obj/structure/window/reinforced/full,/obj/structure/grille,/obj/structure/window/reinforced/tinted{dir = 1},/obj/structure/window/reinforced/tinted{dir = 4; icon_state = "twindow"},/obj/structure/window/reinforced/tinted{dir = 8; icon_state = "twindow"},/turf/simulated/floor/tiled,/area/crew_quarters/kitchen) +"aTG" = (/obj/structure/table/woodentable,/obj/item/device/destTagger{pixel_x = 4; pixel_y = 3},/obj/item/weapon/packageWrap,/obj/item/weapon/packageWrap,/obj/item/device/destTagger{pixel_x = 4; pixel_y = 3},/obj/machinery/light{dir = 4; icon_state = "tube1"},/turf/simulated/floor/tiled,/area/tether/surfacebase/servicebackroom) +"aTH" = (/obj/machinery/atmospherics/unary/vent_scrubber/on,/turf/simulated/floor/tiled,/area/tether/surfacebase/servicebackroom) +"aTI" = (/obj/structure/table/woodentable,/obj/item/weapon/storage/box/sinpockets,/turf/simulated/floor/tiled,/area/tether/surfacebase/servicebackroom) +"aTJ" = (/obj/machinery/conveyor{dir = 1; id = "serviceblock1"},/turf/simulated/floor/tiled,/area/tether/surfacebase/servicebackroom) "aTK" = (/obj/structure/table/glass,/obj/machinery/light{dir = 8; icon_state = "tube1"},/obj/effect/floor_decal/borderfloorwhite{dir = 8},/obj/effect/floor_decal/corner/paleblue/border{dir = 8},/obj/structure/window/reinforced,/obj/item/device/flashlight/lamp/green,/turf/simulated/floor/tiled/white,/area/tether/surfacebase/medical/lobby) "aTL" = (/obj/structure/cable/green{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 1},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 1},/turf/simulated/floor/wood,/area/tether/surfacebase/reading_room) "aTM" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,/obj/machinery/atmospherics/pipe/manifold/hidden/supply,/turf/simulated/floor/wood,/area/tether/surfacebase/reading_room) @@ -2382,7 +2382,7 @@ "aTP" = (/obj/machinery/door/airlock{id_tag = "ReadingRoom3"; name = "Room 3"},/obj/machinery/door/firedoor/glass,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/tiled,/area/tether/surfacebase/reading_room) "aTQ" = (/obj/effect/floor_decal/industrial/warning{dir = 8; icon_state = "warning"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 5; icon_state = "intact-scrubbers"},/turf/simulated/floor/tiled,/area/hallway/lower/third_south) "aTR" = (/obj/machinery/camera/network/tether{dir = 9},/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 8},/turf/simulated/floor/tiled,/area/hallway/lower/third_south) -"aTS" = (/obj/structure/disposalpipe/segment,/obj/structure/window/reinforced/full,/obj/structure/grille,/obj/structure/window/reinforced/tinted,/obj/structure/window/reinforced/tinted{dir = 1},/turf/simulated/floor/tiled,/area/crew_quarters/kitchen) +"aTS" = (/obj/machinery/conveyor_switch/oneway{id = "serviceblock1"},/obj/effect/floor_decal/industrial/warning{dir = 10},/turf/simulated/floor/tiled,/area/tether/surfacebase/servicebackroom) "aTT" = (/obj/machinery/door/morgue{dir = 2; name = "Private Study"; req_access = list(37)},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/door/firedoor/glass,/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/carpet,/area/tether/surfacebase/library/study) "aTU" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 10},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 9},/obj/structure/cable/green{d1 = 2; d2 = 8; icon_state = "2-8"},/turf/simulated/floor/tiled,/area/crew_quarters/heads/hop) "aTV" = (/turf/simulated/wall,/area/vacant/vacant_site/gateway) @@ -2396,14 +2396,14 @@ "aUd" = (/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 1},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 1},/obj/structure/cable/green{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/structure/cable/green{d1 = 2; d2 = 4; icon_state = "2-4"},/turf/simulated/floor/tiled,/area/tether/surfacebase/surface_three_hall) "aUe" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/door/firedoor/glass/hidden/steel,/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/tiled,/area/tether/surfacebase/surface_three_hall) "aUf" = (/obj/structure/cable/green{icon_state = "1-8"},/obj/machinery/atmospherics/pipe/manifold/hidden/supply,/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,/turf/simulated/floor/tiled,/area/tether/surfacebase/surface_three_hall) -"aUg" = (/obj/structure/window/reinforced/full,/obj/structure/grille,/obj/structure/window/reinforced/tinted,/obj/structure/window/reinforced/tinted{dir = 4; icon_state = "twindow"},/turf/simulated/floor/tiled,/area/crew_quarters/kitchen) +"aUg" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/tiled,/area/tether/surfacebase/servicebackroom) "aUh" = (/obj/effect/floor_decal/steeldecal/steel_decals4,/obj/machinery/atmospherics/pipe/manifold4w/hidden/scrubbers,/obj/machinery/atmospherics/pipe/manifold4w/hidden/supply,/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 10},/obj/structure/cable/green{d1 = 2; d2 = 4; icon_state = "2-4"},/turf/simulated/floor/tiled/white,/area/tether/surfacebase/medical/triage) "aUi" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 5},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 5},/obj/machinery/door_timer{id = "Drunk Tank"; pixel_x = -32},/turf/simulated/floor/tiled,/area/tether/surfacebase/security/common) "aUj" = (/obj/machinery/atmospherics/pipe/simple/hidden/cyan{dir = 9; icon_state = "intact"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4; icon_state = "intact-scrubbers"},/obj/effect/floor_decal/techfloor,/obj/effect/floor_decal/techfloor/hole,/obj/machinery/light/small,/turf/simulated/floor/tiled/dark,/area/tether/surfacebase/medical/triage) "aUk" = (/obj/effect/floor_decal/borderfloor{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals7,/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/obj/effect/floor_decal/industrial/danger{dir = 1},/turf/simulated/floor/tiled,/area/hallway/lower/third_south) "aUl" = (/obj/effect/floor_decal/borderfloor,/obj/machinery/door/firedoor/glass/hidden/steel{dir = 1},/obj/effect/floor_decal/corner/lightgrey/border,/obj/effect/floor_decal/borderfloor/corner2,/obj/effect/floor_decal/corner/lightgrey/bordercorner2,/turf/simulated/floor/tiled,/area/hallway/lower/third_south) "aUm" = (/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/corner/lightgrey/border,/obj/machinery/door/firedoor/glass/hidden/steel{dir = 1},/turf/simulated/floor/tiled,/area/hallway/lower/third_south) -"aUn" = (/obj/structure/plasticflaps,/obj/machinery/conveyor{dir = 1; id = "serviceblock1"},/turf/simulated/floor/tiled,/area/crew_quarters/kitchen) +"aUn" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 9},/turf/simulated/floor/tiled,/area/tether/surfacebase/servicebackroom) "aUo" = (/obj/machinery/door/airlock/multi_tile/glass,/obj/effect/floor_decal/industrial/warning/corner{dir = 8; icon_state = "warningcorner"},/obj/machinery/door/firedoor,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/effect/floor_decal/steeldecal/steel_decals_central1{dir = 8},/turf/simulated/floor/tiled/monofloor{dir = 8},/area/hallway/lower/third_south) "aUp" = (/obj/machinery/door/firedoor,/obj/effect/floor_decal/steeldecal/steel_decals_central1{dir = 4},/turf/simulated/floor/tiled/monofloor{dir = 4},/area/hallway/lower/third_south) "aUq" = (/obj/structure/table/standard,/obj/effect/floor_decal/corner/grey/diagonal,/obj/item/weapon/packageWrap,/obj/item/device/destTagger{pixel_x = 4; pixel_y = 3},/turf/simulated/floor/tiled/white,/area/crew_quarters/kitchen) @@ -2417,7 +2417,7 @@ "aUy" = (/obj/machinery/door/firedoor/glass,/obj/machinery/door/airlock/glass_command{name = "Bridge"; req_access = list(19)},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/door/blast/regular{closed_layer = 10; density = 0; dir = 1; icon_state = "pdoor0"; id = "bridge blast"; layer = 1; name = "Bridge Blast Doors"; opacity = 0; open_layer = 1},/turf/simulated/floor/tiled/dark,/area/bridge) "aUz" = (/obj/effect/floor_decal/steeldecal/steel_decals6{dir = 9},/obj/effect/floor_decal/steeldecal/steel_decals6{dir = 10},/obj/structure/window/reinforced{dir = 1},/turf/simulated/floor/tiled,/area/tether/surfacebase/public_garden_three) "aUA" = (/obj/effect/floor_decal/borderfloorwhite,/obj/effect/floor_decal/corner/paleblue/border,/obj/structure/filingcabinet/chestdrawer{name = "Scan Records"},/turf/simulated/floor/tiled/white,/area/tether/surfacebase/medical/triage) -"aUB" = (/obj/effect/floor_decal/industrial/outline/blue,/turf/simulated/floor/tiled,/area/crew_quarters/kitchen) +"aUB" = (/obj/structure/plasticflaps,/obj/machinery/conveyor{dir = 1; id = "serviceblock1"},/turf/simulated/floor/tiled,/area/tether/surfacebase/servicebackroom) "aUC" = (/obj/effect/floor_decal/borderfloor/corner,/obj/effect/floor_decal/corner/lime/bordercorner,/turf/simulated/floor/tiled,/area/tether/surfacebase/public_garden_three) "aUD" = (/obj/structure/table/reinforced,/obj/item/weapon/reagent_containers/glass/beaker/large,/obj/item/weapon/reagent_containers/dropper,/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 1},/turf/simulated/floor/tiled/white,/area/tether/surfacebase/medical/chemistry) "aUE" = (/obj/structure/disposalpipe/segment{dir = 4; icon_state = "pipe-c"},/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/tiled/white,/area/tether/surfacebase/medical/chemistry) @@ -2435,7 +2435,7 @@ "aUQ" = (/turf/simulated/floor/tiled/white,/area/tether/surfacebase/medical/chemistry) "aUR" = (/obj/structure/disposalpipe/segment,/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/tiled/white,/area/tether/surfacebase/medical/chemistry) "aUS" = (/obj/structure/table/reinforced,/obj/effect/floor_decal/borderfloorwhite{dir = 4},/obj/effect/floor_decal/corner/paleblue/border{dir = 4},/obj/item/weapon/reagent_containers/glass/beaker/large,/obj/item/weapon/reagent_containers/dropper,/obj/structure/extinguisher_cabinet{dir = 8; icon_state = "extinguisher_closed"; pixel_x = 30},/turf/simulated/floor/tiled/white,/area/tether/surfacebase/medical/chemistry) -"aUT" = (/obj/effect/floor_decal/industrial/warning{dir = 8; icon_state = "warning"},/turf/simulated/floor/tiled,/area/crew_quarters/kitchen) +"aUT" = (/obj/structure/window/reinforced/full,/obj/structure/grille,/obj/structure/window/reinforced/tinted{dir = 1},/obj/structure/window/reinforced/tinted{dir = 4; icon_state = "twindow"},/obj/structure/window/reinforced/tinted{dir = 8; icon_state = "twindow"},/turf/simulated/floor/tiled,/area/tether/surfacebase/servicebackroom) "aUU" = (/obj/structure/grille,/obj/structure/window/reinforced/full,/obj/machinery/door/firedoor,/obj/machinery/door/blast/shutters{dir = 2; id = "surfmed"; layer = 3.1; name = "Medical Shutters"},/turf/simulated/floor/plating,/area/tether/surfacebase/medical/lobby) "aUV" = (/obj/structure/window/reinforced{dir = 4},/obj/machinery/computer/crew{dir = 8; icon_state = "computer"},/turf/simulated/floor/tiled/white,/area/tether/surfacebase/medical/lobby) "aUW" = (/obj/effect/floor_decal/borderfloorwhite{dir = 4},/obj/effect/floor_decal/corner/paleblue/border{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled/white,/area/tether/surfacebase/medical/lobby) @@ -2445,7 +2445,7 @@ "aVa" = (/obj/structure/disposalpipe/segment{dir = 8; icon_state = "pipe-c"},/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/tiled/white,/area/tether/surfacebase/medical/chemistry) "aVb" = (/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 4},/turf/simulated/floor/tiled,/area/tether/surfacebase/public_garden_three) "aVc" = (/obj/machinery/alarm{dir = 8; icon_state = "alarm0"; pixel_x = 24},/turf/simulated/floor/plating,/area/maintenance/lower/mining) -"aVd" = (/obj/machinery/conveyor_switch/oneway{id = "serviceblock1"},/obj/effect/floor_decal/industrial/warning{dir = 10},/turf/simulated/floor/tiled,/area/crew_quarters/kitchen) +"aVd" = (/obj/structure/disposaloutlet{dir = 1},/obj/machinery/conveyor{dir = 1; id = "serviceblock1"},/obj/structure/disposalpipe/trunk,/turf/simulated/floor/tiled,/area/tether/surfacebase/servicebackroom) "aVe" = (/obj/structure/table/glass,/obj/item/weapon/storage/box/cups,/obj/item/weapon/storage/box/cups,/obj/effect/floor_decal/borderfloorwhite{dir = 4},/obj/effect/floor_decal/corner/paleblue/border{dir = 4},/turf/simulated/floor/tiled/white,/area/tether/surfacebase/medical/lobby) "aVf" = (/obj/structure/grille,/obj/structure/window/reinforced/full,/obj/machinery/door/firedoor,/obj/machinery/door/blast/shutters{dir = 8; id = "surfchemistry"; layer = 3.1; name = "Chemistry Shutters"},/turf/simulated/floor/plating,/area/tether/surfacebase/medical/chemistry) "aVg" = (/obj/effect/floor_decal/borderfloorwhite{dir = 10},/obj/effect/floor_decal/corner/paleblue/border{dir = 10},/obj/machinery/button/remote/blast_door{desc = "A remote control-switch for shutters."; id = "surfchemistry"; name = "Chemistry Shutters"; pixel_x = -6; pixel_y = -24; req_access = list(5)},/turf/simulated/floor/tiled/white,/area/tether/surfacebase/medical/chemistry) @@ -2504,8 +2504,8 @@ "aWh" = (/obj/structure/sign/directions/medical{dir = 4; pixel_y = 8},/obj/structure/sign/directions/science{dir = 8; pixel_y = 3},/obj/structure/sign/directions/security{dir = 8; pixel_y = -4},/obj/structure/sign/directions/engineering{dir = 8; pixel_y = -10},/turf/simulated/wall,/area/tether/surfacebase/medical/lobby) "aWi" = (/obj/effect/floor_decal/borderfloor{dir = 1},/obj/effect/floor_decal/corner/lightgrey/border{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals7,/obj/machinery/newscaster{pixel_x = 0; pixel_y = 30},/turf/simulated/floor/tiled,/area/tether/surfacebase/surface_three_hall) "aWj" = (/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 6},/obj/effect/floor_decal/borderfloor/corner{dir = 8},/obj/effect/floor_decal/corner/mauve/bordercorner{dir = 8},/turf/simulated/floor/tiled,/area/hallway/lower/third_south) -"aWk" = (/obj/structure/table/bench/standard,/obj/effect/floor_decal/corner/lime/border{dir = 4},/obj/structure/disposalpipe/segment{dir = 8},/turf/simulated/floor/tiled,/area/hydroponics) -"aWl" = (/obj/machinery/door/airlock{name = "Service"; req_one_access = list(35,28)},/obj/machinery/door/firedoor/glass,/obj/structure/disposalpipe/segment{dir = 8},/turf/simulated/floor/tiled,/area/hydroponics) +"aWk" = (/obj/structure/table/marble,/obj/effect/floor_decal/corner/grey/diagonal,/obj/machinery/door/firedoor/glass,/obj/machinery/door/window/westright{dir = 2; icon_state = "right"},/obj/machinery/door/window/westright{icon_state = "right"; dir = 1},/turf/simulated/floor/tiled/white,/area/hydroponics) +"aWl" = (/obj/structure/table/woodentable,/obj/random/drinkbottle,/obj/machinery/light{dir = 4; icon_state = "tube1"},/turf/simulated/floor/tiled,/area/tether/surfacebase/servicebackroom) "aWm" = (/obj/effect/floor_decal/borderfloor{dir = 1},/obj/effect/floor_decal/corner/lightgrey/border{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals7,/obj/machinery/door/airlock/glass,/obj/machinery/door/firedoor/glass,/turf/simulated/floor/tiled,/area/tether/surfacebase/surface_three_hall) "aWn" = (/obj/effect/floor_decal/borderfloor{dir = 1},/obj/effect/floor_decal/corner/red/border{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals7,/turf/simulated/floor/tiled,/area/tether/surfacebase/surface_three_hall) "aWo" = (/obj/effect/floor_decal/borderfloor{dir = 1},/obj/effect/floor_decal/corner/red/border{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals7,/obj/structure/sign/warning/high_voltage{pixel_y = 32},/turf/simulated/floor/tiled,/area/tether/surfacebase/surface_three_hall) @@ -2522,9 +2522,9 @@ "aWz" = (/obj/effect/floor_decal/borderfloor{dir = 1},/obj/effect/floor_decal/corner/lightgrey/border{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals7,/obj/machinery/atm{pixel_y = 31},/turf/simulated/floor/tiled,/area/tether/surfacebase/surface_three_hall) "aWA" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/effect/floor_decal/borderfloor{dir = 1},/obj/effect/floor_decal/corner/lightgrey/border{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals7,/turf/simulated/floor/tiled,/area/tether/surfacebase/surface_three_hall) "aWB" = (/obj/machinery/light{dir = 1},/obj/effect/floor_decal/borderfloor{dir = 1},/obj/effect/floor_decal/corner/lightgrey/border{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals7,/turf/simulated/floor/tiled,/area/tether/surfacebase/surface_three_hall) -"aWC" = (/obj/effect/floor_decal/corner/lime/border,/obj/structure/closet/crate/hydroponics,/obj/machinery/light,/turf/simulated/floor/tiled,/area/hydroponics) -"aWD" = (/obj/structure/window/reinforced/full,/obj/structure/grille,/obj/structure/window/reinforced/tinted{dir = 1},/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled,/area/crew_quarters/kitchen) -"aWE" = (/obj/machinery/disposal,/obj/structure/disposalpipe/trunk{dir = 8},/turf/simulated/floor/grass,/area/hydroponics) +"aWC" = (/turf/simulated/wall,/area/tether/surfacebase/entertainment/backstage) +"aWD" = (/obj/structure/sign/directions/medical{dir = 4; pixel_y = 8},/obj/structure/sign/directions/science{dir = 8; pixel_y = 3},/obj/structure/sign/directions/security{dir = 8; pixel_y = -4},/obj/structure/sign/directions/engineering{dir = 8; pixel_y = -10},/turf/simulated/wall,/area/tether/surfacebase/entertainment/backstage) +"aWE" = (/obj/structure/disposalpipe/junction{dir = 1},/obj/structure/cable/green{d1 = 1; d2 = 4; icon_state = "1-4"},/turf/simulated/floor/grass,/area/hydroponics) "aWF" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled,/area/tether/surfacebase/surface_three_hall) "aWG" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/door/airlock/glass,/obj/machinery/door/firedoor/glass,/turf/simulated/floor/tiled,/area/tether/surfacebase/surface_three_hall) "aWH" = (/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 1},/obj/machinery/atmospherics/pipe/manifold/hidden/supply,/turf/simulated/floor/tiled,/area/tether/surfacebase/surface_three_hall) @@ -2553,8 +2553,8 @@ "aXe" = (/obj/effect/floor_decal/borderfloor{dir = 4},/obj/effect/floor_decal/corner/lightgrey/border{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 10},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 9},/obj/structure/extinguisher_cabinet{dir = 8; icon_state = "extinguisher_closed"; pixel_x = 30},/turf/simulated/floor/tiled,/area/hallway/lower/third_south) "aXf" = (/obj/structure/bookcase{name = "bookcase (Adult)"},/turf/simulated/floor/wood,/area/library) "aXg" = (/obj/structure/disposalpipe/junction{dir = 4; icon_state = "pipe-j2"},/turf/simulated/floor/grass,/area/hydroponics) -"aXh" = (/obj/structure/disposaloutlet{dir = 1},/obj/machinery/conveyor{dir = 1; id = "serviceblock1"},/obj/structure/disposalpipe/trunk,/turf/simulated/floor/tiled,/area/crew_quarters/kitchen) -"aXi" = (/obj/effect/floor_decal/corner/lime/border{dir = 8},/obj/structure/disposalpipe/segment{dir = 8; icon_state = "pipe-c"},/turf/simulated/floor/tiled,/area/hydroponics) +"aXh" = (/obj/structure/disposalpipe/segment,/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,/obj/machinery/door/firedoor/glass,/obj/machinery/door/airlock/maintenance/int{name = "Entertainment Backroom"; req_one_access = list(72)},/turf/simulated/floor/plating,/area/tether/surfacebase/entertainment/backstage) +"aXi" = (/obj/machinery/door/airlock/freezer{name = "Service"; req_access = list(28)},/obj/machinery/door/firedoor/glass,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/tiled,/area/crew_quarters/freezer) "aXj" = (/obj/structure/disposalpipe/segment{dir = 8; icon_state = "pipe-c"},/turf/simulated/floor/grass,/area/hydroponics) "aXk" = (/obj/structure/sign/directions/medical{dir = 1; icon_state = "direction_med"; pixel_y = 8},/obj/structure/sign/directions/science{dir = 8; pixel_y = 3},/obj/structure/sign/directions/security{dir = 1; icon_state = "direction_sec"; pixel_y = -4},/obj/structure/sign/directions/engineering{dir = 1; icon_state = "direction_eng"; pixel_y = -10},/turf/simulated/wall,/area/library) "aXl" = (/obj/machinery/door/firedoor/glass,/obj/effect/floor_decal/steeldecal/steel_decals_central1{dir = 4},/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/tiled/monofloor{dir = 4},/area/library) @@ -2567,7 +2567,7 @@ "aXs" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/effect/floor_decal/steeldecal/steel_decals6{dir = 4},/turf/simulated/floor/tiled,/area/hallway/lower/third_south) "aXt" = (/obj/effect/floor_decal/borderfloor{dir = 1},/obj/effect/floor_decal/corner/lightgrey/border{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals7,/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/light{dir = 1},/obj/effect/floor_decal/borderfloor/corner2{dir = 4; icon_state = "borderfloorcorner2"; pixel_y = 0},/obj/effect/floor_decal/corner/lightgrey/bordercorner2{dir = 4},/turf/simulated/floor/tiled,/area/hallway/lower/third_south) "aXu" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/cable/green{d1 = 1; d2 = 4; icon_state = "1-4"},/turf/simulated/floor/tiled,/area/hallway/lower/third_south) -"aXv" = (/obj/structure/disposalpipe/junction{dir = 1},/turf/simulated/floor/grass,/area/hydroponics) +"aXv" = (/obj/structure/disposalpipe/segment{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/grass,/area/hydroponics) "aXw" = (/obj/structure/closet/hydrant{pixel_x = 32},/obj/structure/bookcase/bookcart,/turf/simulated/floor/wood,/area/library) "aXx" = (/obj/structure/grille,/obj/machinery/door/firedoor/glass,/obj/machinery/door/blast/regular{closed_layer = 10; density = 0; dir = 4; icon_state = "pdoor0"; id = "bridge blast"; layer = 1; name = "Bridge Blast Doors"; opacity = 0; open_layer = 1},/obj/structure/window/reinforced/full,/obj/structure/window/reinforced,/obj/structure/cable/green{icon_state = "0-4"},/turf/simulated/floor/plating,/area/bridge) "aXy" = (/obj/structure/table/standard,/obj/item/weapon/gun/energy/taser/xeno,/obj/machinery/recharger/wallcharger{pixel_x = 4; pixel_y = -28},/obj/item/weapon/melee/baton/slime/loaded,/turf/simulated/floor/tiled/techmaint,/area/rnd/outpost/xenobiology/outpost_storage) @@ -2582,18 +2582,18 @@ "aXH" = (/obj/structure/disposalpipe/segment{dir = 4; icon_state = "pipe-c"},/obj/machinery/light/small{dir = 8},/obj/structure/table/steel,/obj/item/weapon/implantcase/chem,/turf/simulated/floor/plating,/area/rnd/research_storage) "aXI" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/table/steel,/obj/random/tech_supply,/obj/effect/decal/cleanable/dirt,/obj/effect/floor_decal/rust,/obj/structure/disposalpipe/segment,/turf/simulated/floor/plating,/area/rnd/research_storage) "aXJ" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/table/steel,/obj/item/weapon/locator,/turf/simulated/floor/plating,/area/rnd/research_storage) -"aXK" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/disposalpipe/sortjunction/flipped{name = "Xenobotany"},/obj/structure/cable/green{d1 = 2; d2 = 4; icon_state = "2-4"},/turf/simulated/floor/tiled,/area/tether/surfacebase/surface_three_hall) +"aXK" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/disposalpipe/sortjunction/flipped{name = "Xenobotany"},/obj/structure/cable/green{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 8},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 8},/turf/simulated/floor/tiled,/area/tether/surfacebase/surface_three_hall) "aXL" = (/obj/structure/grille,/obj/structure/window/reinforced/full,/obj/machinery/door/firedoor,/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/plating,/area/rnd/research_storage) -"aXM" = (/obj/effect/floor_decal/borderfloor{dir = 4},/obj/effect/floor_decal/corner/lightgrey/border{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 10},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 9},/obj/structure/disposalpipe/segment{dir = 8},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/tiled,/area/tether/surfacebase/surface_three_hall) +"aXM" = (/obj/effect/floor_decal/borderfloor{dir = 4},/obj/effect/floor_decal/corner/lightgrey/border{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 10},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 9},/obj/structure/disposalpipe/segment{dir = 8},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled,/area/tether/surfacebase/surface_three_hall) "aXN" = (/obj/effect/decal/cleanable/dirt,/obj/effect/floor_decal/rust,/obj/structure/disposalpipe/segment,/turf/simulated/floor/plating,/area/rnd/research_storage) "aXO" = (/obj/effect/decal/cleanable/dirt,/obj/effect/floor_decal/rust,/obj/structure/disposalpipe/segment{dir = 1; icon_state = "pipe-c"},/turf/simulated/floor/plating,/area/rnd/research_storage) "aXP" = (/obj/structure/disposalpipe/up{dir = 8},/turf/simulated/floor/plating,/area/rnd/research_storage) "aXQ" = (/obj/effect/decal/cleanable/dirt,/obj/effect/floor_decal/rust,/turf/simulated/floor/plating,/area/rnd/research_storage) "aXR" = (/obj/structure/disposalpipe/segment{dir = 4; icon_state = "pipe-c"},/obj/structure/cable/green{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/plating,/area/rnd/research_storage) "aXS" = (/obj/effect/floor_decal/corner/mauve/border{dir = 10},/turf/simulated/floor/tiled,/area/tether/surfacebase/surface_three_hall) -"aXT" = (/obj/structure/disposalpipe/segment{dir = 8},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/tiled,/area/tether/surfacebase/outside/outside3) -"aXU" = (/obj/machinery/door/airlock/glass_research{name = "Xenoflora Research"; req_access = list(55)},/obj/machinery/door/firedoor,/obj/structure/disposalpipe/segment{dir = 8},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/tiled,/area/tether/surfacebase/outside/outside3) -"aXV" = (/obj/structure/disposalpipe/segment{dir = 8},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/cable/green{d1 = 1; d2 = 8; icon_state = "1-8"},/turf/simulated/floor/tiled,/area/rnd/xenobiology/xenoflora) +"aXT" = (/obj/structure/disposalpipe/segment{dir = 8},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/effect/floor_decal/corner/mauve/border{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled,/area/tether/surfacebase/surface_three_hall) +"aXU" = (/obj/structure/disposalpipe/segment{dir = 8},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled,/area/tether/surfacebase/surface_three_hall) +"aXV" = (/obj/structure/disposalpipe/segment{dir = 8},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/effect/floor_decal/corner/mauve/border{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled,/area/tether/surfacebase/surface_three_hall) "aXW" = (/obj/structure/disposalpipe/segment{dir = 4; icon_state = "pipe-c"},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/wood,/area/crew_quarters/captain) "aXX" = (/obj/structure/filingcabinet/filingcabinet,/turf/simulated/floor/tiled/dark,/area/bridge) "aXY" = (/obj/item/device/aicard,/obj/item/weapon/storage/box/PDAs{pixel_x = 4; pixel_y = 4},/obj/item/weapon/storage/box/ids,/obj/structure/table/reinforced,/obj/item/weapon/book/manual/command_guide,/obj/item/weapon/book/manual/standard_operating_procedure,/obj/item/device/radio/intercom{dir = 8; pixel_x = -24},/turf/simulated/floor/tiled/dark,/area/bridge) @@ -2626,7 +2626,7 @@ "aYz" = (/obj/machinery/computer/crew{dir = 8},/turf/simulated/floor/tiled/dark,/area/bridge) "aYA" = (/obj/machinery/computer/supplycomp{dir = 4},/turf/simulated/floor/tiled/dark,/area/bridge) "aYB" = (/obj/machinery/computer/security{dir = 8},/turf/simulated/floor/tiled/dark,/area/bridge) -"aYC" = (/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled,/area/maintenance/lower/xenoflora) +"aYC" = (/turf/simulated/wall,/area/tether/surfacebase/entertainment) "aYD" = (/obj/machinery/computer/power_monitor{dir = 8; icon_state = "computer"; throwpass = 1},/obj/machinery/light{dir = 4; icon_state = "tube1"; pixel_x = 0},/turf/simulated/floor/tiled/dark,/area/bridge) "aYE" = (/obj/effect/floor_decal/corner/paleblue/full,/obj/structure/flora/pottedplant{icon_state = "plant-10"},/turf/simulated/floor/tiled/dark,/area/bridge) "aYF" = (/obj/machinery/computer/med_data{dir = 1; icon_state = "computer"},/turf/simulated/floor/tiled/dark,/area/bridge) @@ -2637,7 +2637,7 @@ "aYK" = (/obj/effect/floor_decal/corner/yellow/full,/obj/structure/flora/pottedplant{icon_state = "plant-21"},/turf/simulated/floor/tiled/dark,/area/bridge) "aYL" = (/obj/machinery/computer/rcon{dir = 1; icon_state = "computer"},/turf/simulated/floor/tiled/dark,/area/bridge) "aYM" = (/obj/effect/floor_decal/corner/yellow/full{dir = 4},/obj/structure/flora/pottedplant{icon_state = "plant-10"},/turf/simulated/floor/tiled/dark,/area/bridge) -"aYN" = (/obj/effect/floor_decal/corner/mauve/border,/turf/simulated/floor/tiled,/area/tether/surfacebase/outside/outside3) +"aYN" = (/obj/effect/floor_decal/corner/mauve/border,/turf/simulated/floor/tiled,/area/tether/surfacebase/surface_three_hall) "aYO" = (/turf/simulated/wall/r_wall,/area/maintenance/commandmaint) "aYP" = (/obj/effect/floor_decal/industrial/warning,/obj/item/device/radio/intercom{dir = 8; pixel_x = -24},/turf/simulated/floor/tiled/dark,/area/bridge_hallway) "aYQ" = (/obj/effect/floor_decal/industrial/warning,/turf/simulated/floor/tiled/dark,/area/bridge_hallway) @@ -2653,10 +2653,10 @@ "aZa" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/light{dir = 4; icon_state = "tube1"; pixel_x = 0},/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/tiled/dark,/area/bridge_hallway) "aZb" = (/obj/structure/table/reinforced,/obj/item/weapon/clipboard,/obj/item/weapon/stamp/hop,/obj/machinery/atmospherics/unary/vent_scrubber/on,/obj/item/device/flashlight/lamp/green{pixel_x = -10},/obj/item/weapon/paper/dockingcodes,/turf/simulated/floor/carpet,/area/crew_quarters/heads/hop) "aZc" = (/obj/structure/disposalpipe/segment,/obj/machinery/firealarm{dir = 4; pixel_x = 26},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/tiled/dark,/area/bridge_hallway) -"aZd" = (/obj/structure/disposalpipe/segment{dir = 8},/obj/machinery/light{dir = 1},/turf/simulated/floor/tiled,/area/crew_quarters/kitchen) +"aZd" = (/obj/effect/floor_decal/corner/lime/border{dir = 4},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 8},/turf/simulated/floor/tiled,/area/tether/surfacebase/surface_three_hall) "aZe" = (/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 4},/turf/simulated/floor/tiled/dark,/area/bridge_hallway) "aZf" = (/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 1},/turf/simulated/floor/tiled/white,/area/rnd/outpost/xenobiology/outpost_first_aid) -"aZg" = (/obj/structure/disposalpipe/segment{dir = 2; icon_state = "pipe-c"},/obj/machinery/light{dir = 1},/turf/simulated/floor/tiled,/area/crew_quarters/kitchen) +"aZg" = (/obj/effect/floor_decal/spline/plain{dir = 8},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 1},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 1},/turf/simulated/floor/grass,/area/hydroponics) "aZh" = (/obj/machinery/door/airlock/glass_command{name = "Bridge"; req_access = list(19)},/obj/structure/disposalpipe/segment,/obj/machinery/door/firedoor/glass,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/tiled/dark,/area/bridge) "aZi" = (/obj/structure/lattice,/obj/machinery/door/firedoor/glass,/obj/machinery/atmospherics/pipe/zpipe/down/supply{dir = 4; icon_state = "down-supply"},/obj/machinery/atmospherics/pipe/zpipe/down/scrubbers{dir = 4; icon_state = "down-scrubbers"},/obj/machinery/light/small{dir = 8; pixel_x = 0},/obj/structure/cable/green{d1 = 32; d2 = 4; icon_state = "32-4"},/turf/simulated/open,/area/maintenance/commandmaint) "aZj" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 5},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 5},/obj/machinery/light_switch{dir = 1; pixel_x = 8; pixel_y = -26},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/wood,/area/crew_quarters/captain) @@ -2674,25 +2674,25 @@ "aZv" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/door/firedoor/glass,/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/door/airlock/command{name = "Head of Personnel"; req_access = list(57)},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/tiled/steel_grid,/area/crew_quarters/heads/hop) "aZw" = (/obj/item/weapon/bedsheet/captain,/obj/structure/bed/padded,/obj/machinery/alarm{dir = 4; icon_state = "alarm0"; pixel_x = -22; pixel_y = 0},/turf/simulated/floor/wood,/area/crew_quarters/captain) "aZx" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/wood,/area/crew_quarters/captain) -"aZy" = (/obj/effect/floor_decal/corner/lime/border{dir = 4},/obj/machinery/light,/turf/simulated/floor/tiled/eris/cafe,/area/hydroponics) +"aZy" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/turf/simulated/floor/grass,/area/hydroponics) "aZz" = (/obj/structure/bed/chair{dir = 1},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/carpet,/area/crew_quarters/heads/hop) "aZA" = (/obj/structure/disposalpipe/junction{dir = 1; icon_state = "pipe-j2"},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 4; icon_state = "map-scrubbers"},/obj/structure/cable/green{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/tiled/dark,/area/bridge) "aZB" = (/turf/simulated/floor/carpet,/area/crew_quarters/heads/hop) "aZC" = (/turf/simulated/floor/tiled,/area/crew_quarters/heads/hop) -"aZD" = (/obj/structure/table/woodentable,/obj/item/weapon/storage/box/sinpockets,/obj/machinery/light{dir = 4; icon_state = "tube1"},/turf/simulated/floor/tiled,/area/tether/surfacebase/outside/outside3) +"aZD" = (/obj/structure/grille,/obj/machinery/door/firedoor,/obj/structure/disposalpipe/segment,/obj/structure/cable/green{icon_state = "0-4"},/obj/structure/cable/green{icon_state = "2-4"},/obj/machinery/door/blast/regular/open{dir = 4; icon_state = "pdoor0"; id = "DRAMATIC"; name = "Dramatic Blast Door"},/obj/structure/window/reinforced/polarized/full{id = "draama"; name = "Mystery Window"},/obj/structure/window/reinforced/polarized{dir = 1; icon_state = "rwindow"; id = "draama"; name = "Mystery Window"},/obj/machinery/door/blast/shutters{dir = 2; id = "Druma"; layer = 3.3; name = "Entertainment Shutters"},/turf/simulated/floor/plating,/area/tether/surfacebase/entertainment) "aZE" = (/obj/effect/floor_decal/industrial/outline/yellow,/obj/machinery/light{dir = 1},/turf/simulated/floor/tiled,/area/crew_quarters/heads/hop) "aZF" = (/obj/effect/floor_decal/industrial/loading{dir = 8},/obj/structure/window/basic,/turf/simulated/floor/tiled,/area/crew_quarters/heads/hop) "aZG" = (/obj/structure/grille,/obj/structure/window/reinforced/full,/obj/machinery/door/firedoor/glass,/obj/structure/cable/green{d2 = 2; icon_state = "0-2"},/obj/machinery/door/blast/shutters{dir = 4; id = "cap_office"; layer = 3.1; name = "Colony Directo's Shutters"},/turf/simulated/floor/plating,/area/crew_quarters/captain) "aZH" = (/obj/structure/grille,/obj/structure/window/reinforced/full,/obj/machinery/door/firedoor/glass,/obj/structure/cable/green{d2 = 2; icon_state = "0-2"},/obj/structure/cable/green,/obj/machinery/door/blast/shutters{dir = 4; id = "cap_office"; layer = 3.1; name = "Colony Directo's Shutters"},/turf/simulated/floor/plating,/area/crew_quarters/captain) "aZI" = (/obj/structure/disposalpipe/segment{dir = 1; icon_state = "pipe-c"},/obj/structure/cable/green{d1 = 1; d2 = 8; icon_state = "1-8"},/turf/simulated/floor/tiled/dark,/area/bridge) -"aZJ" = (/obj/effect/floor_decal/corner/grey/diagonal,/obj/machinery/light{dir = 1},/turf/simulated/floor/tiled/white,/area/crew_quarters/kitchen) +"aZJ" = (/obj/effect/floor_decal/spline/plain{dir = 8},/obj/structure/cable/green{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/turf/simulated/floor/tiled/eris/cafe,/area/hydroponics) "aZK" = (/obj/machinery/sleep_console,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/tiled/white,/area/rnd/outpost/xenobiology/outpost_first_aid) "aZL" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 4; icon_state = "map-scrubbers"},/turf/simulated/floor/wood,/area/crew_quarters/captain) -"aZM" = (/obj/structure/table/woodentable,/obj/item/device/destTagger{pixel_x = 4; pixel_y = 3},/obj/item/weapon/packageWrap,/obj/item/weapon/packageWrap,/obj/item/device/destTagger{pixel_x = 4; pixel_y = 3},/obj/machinery/light{dir = 4; icon_state = "tube1"},/turf/simulated/floor/tiled,/area/tether/surfacebase/outside/outside3) +"aZM" = (/obj/structure/grille,/obj/machinery/door/firedoor,/obj/structure/cable/green{icon_state = "0-4"},/obj/structure/cable/green{icon_state = "0-8"},/obj/machinery/door/blast/regular/open{dir = 4; icon_state = "pdoor0"; id = "DRAMATIC"; name = "Dramatic Blast Door"},/obj/structure/window/reinforced/polarized/full{id = "draama"; name = "Mystery Window"},/obj/structure/window/reinforced/polarized{dir = 1; icon_state = "rwindow"; id = "draama"; name = "Mystery Window"},/obj/machinery/door/blast/shutters{dir = 2; id = "Druma"; layer = 3.3; name = "Entertainment Shutters"},/turf/simulated/floor/plating,/area/tether/surfacebase/entertainment) "aZN" = (/obj/structure/table/reinforced,/obj/machinery/photocopier/faxmachine{department = "Head of Personnel's Office"},/turf/simulated/floor/carpet,/area/crew_quarters/heads/hop) "aZO" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/tiled/dark,/area/bridge) "aZP" = (/obj/structure/table/reinforced,/obj/item/weapon/paper_bin{pixel_x = -3; pixel_y = 7},/obj/item/weapon/folder/blue,/obj/item/weapon/folder/red,/obj/item/weapon/pen/multi,/turf/simulated/floor/carpet,/area/crew_quarters/heads/hop) -"aZQ" = (/obj/effect/floor_decal/corner/grey/diagonal,/obj/machinery/light{dir = 8; icon_state = "tube1"},/turf/simulated/floor/tiled/white,/area/crew_quarters/kitchen) +"aZQ" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/turf/simulated/floor/tiled/eris/cafe,/area/hydroponics) "aZR" = (/obj/effect/floor_decal/industrial/outline/yellow,/obj/structure/window/basic{dir = 4},/turf/simulated/floor/tiled,/area/crew_quarters/heads/hop) "aZS" = (/obj/structure/disposalpipe/segment{dir = 4; icon_state = "pipe-c"},/obj/effect/floor_decal/borderfloor{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 5},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 6},/obj/effect/floor_decal/corner/blue/border{dir = 8},/turf/simulated/floor/tiled,/area/tether/surfacebase/surface_three_hall) "aZT" = (/obj/effect/floor_decal/corner/grey/diagonal,/obj/machinery/light{dir = 4; icon_state = "tube1"},/turf/simulated/floor/tiled/white,/area/crew_quarters/kitchen) @@ -2709,7 +2709,7 @@ "bae" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/tiled/dark,/area/bridge) "baf" = (/obj/structure/table/rack,/obj/item/weapon/tank/jetpack/oxygen,/obj/item/clothing/mask/gas,/obj/structure/window/reinforced,/obj/structure/window/reinforced{dir = 1},/obj/item/weapon/card/id/gold/captain/spare,/obj/machinery/door/window/brigdoor/westright{dir = 4; name = "Colony Director's Storage"; req_access = list(20)},/obj/structure/window/reinforced{dir = 8; health = 1e+006},/obj/item/clothing/head/helmet/space/void/captain,/obj/item/clothing/suit/space/void/captain,/turf/simulated/floor/wood,/area/crew_quarters/captain) "bag" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 5},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 5},/turf/simulated/floor/wood,/area/crew_quarters/captain) -"bah" = (/obj/structure/table/woodentable,/obj/random/drinkbottle,/obj/machinery/light{dir = 4; icon_state = "tube1"},/turf/simulated/floor/tiled,/area/tether/surfacebase/outside/outside3) +"bah" = (/obj/structure/grille,/obj/machinery/door/firedoor,/obj/machinery/door/blast/regular/open{icon_state = "pdoor0"; dir = 8},/obj/structure/cable/green{icon_state = "0-4"},/obj/structure/cable/green{icon_state = "0-8"},/obj/machinery/door/blast/regular/open{dir = 4; icon_state = "pdoor0"; id = "DRAMATIC"; name = "Dramatic Blast Door"},/obj/structure/window/reinforced/polarized/full{id = "draama"; name = "Mystery Window"},/obj/structure/window/reinforced/polarized{dir = 1; icon_state = "rwindow"; id = "draama"; name = "Mystery Window"},/obj/machinery/door/blast/shutters{dir = 2; id = "Druma"; layer = 3.3; name = "Entertainment Shutters"},/turf/simulated/floor/plating,/area/tether/surfacebase/entertainment) "bai" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 10},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 10},/obj/machinery/light/small{dir = 1; icon_state = "bulb1"},/turf/simulated/floor/wood,/area/crew_quarters/captain) "baj" = (/obj/structure/displaycase,/turf/simulated/floor/wood,/area/crew_quarters/captain) "bak" = (/obj/structure/disposalpipe/segment,/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/tiled/dark,/area/bridge) @@ -2725,7 +2725,7 @@ "bau" = (/obj/structure/table/woodentable,/obj/machinery/photocopier/faxmachine{department = "Captain's Office"},/turf/simulated/floor/wood,/area/crew_quarters/captain) "bav" = (/obj/machinery/photocopier,/obj/machinery/firealarm{pixel_x = -30},/turf/simulated/floor/tiled,/area/crew_quarters/heads/hop) "baw" = (/obj/effect/floor_decal/corner/grey/diagonal,/obj/structure/foodcart,/obj/machinery/light,/turf/simulated/floor/tiled/white,/area/crew_quarters/kitchen) -"bax" = (/obj/machinery/light,/turf/simulated/floor/tiled,/area/crew_quarters/kitchen) +"bax" = (/obj/structure/grille,/obj/machinery/door/firedoor,/obj/machinery/door/blast/regular/open{icon_state = "pdoor0"; dir = 8},/obj/structure/cable/green{icon_state = "0-8"},/obj/machinery/door/blast/regular/open{dir = 4; icon_state = "pdoor0"; id = "DRAMATIC"; name = "Dramatic Blast Door"},/obj/structure/window/reinforced/polarized/full{id = "draama"; name = "Mystery Window"},/obj/structure/window/reinforced/polarized{dir = 1; icon_state = "rwindow"; id = "draama"; name = "Mystery Window"},/obj/machinery/door/blast/shutters{dir = 2; id = "Druma"; layer = 3.3; name = "Entertainment Shutters"},/turf/simulated/floor/plating,/area/tether/surfacebase/entertainment) "bay" = (/obj/effect/floor_decal/spline/plain{dir = 5},/obj/structure/table/marble,/obj/machinery/chemical_dispenser/bar_alc/full{icon_state = "booze_dispenser"; dir = 8},/obj/machinery/light{dir = 4; icon_state = "tube1"},/turf/simulated/floor/lino,/area/crew_quarters/bar) "baz" = (/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/corner/lightgrey/border,/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 1},/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled,/area/tether/surfacebase/surface_three_hall) "baA" = (/obj/item/weapon/stool/padded,/obj/structure/disposalpipe/segment{dir = 8},/obj/machinery/light{dir = 8; icon_state = "tube1"},/turf/simulated/floor/carpet/turcarpet,/area/crew_quarters/bar) @@ -2743,138 +2743,138 @@ "baM" = (/obj/structure/table/woodentable,/obj/machinery/recharger{pixel_y = 4},/obj/machinery/atmospherics/unary/vent_pump/on{dir = 8},/obj/item/device/perfect_tele{desc = "Seems absurd, doesn't it? Yet, here we are. Generally considered dangerous contraband unless the user has permission from Central Command. This one is the Colony Director's, and they are authorized to use it."; name = "director's translocator"},/turf/simulated/floor/wood,/area/crew_quarters/captain) "baN" = (/obj/machinery/papershredder,/obj/machinery/alarm{dir = 4; pixel_x = -23; pixel_y = 0},/turf/simulated/floor/tiled,/area/crew_quarters/heads/hop) "baO" = (/obj/effect/floor_decal/corner/grey/diagonal,/obj/machinery/requests_console{pixel_x = 32; pixel_y = -32},/obj/structure/extinguisher_cabinet{dir = 8; icon_state = "extinguisher_closed"; pixel_x = 30},/obj/structure/cable/green{d1 = 2; d2 = 8; icon_state = "2-8"},/turf/simulated/floor/tiled/white,/area/crew_quarters/kitchen) -"baP" = (/obj/machinery/power/apc{cell_type = /obj/item/weapon/cell/super; dir = 1; name = "north bump"; pixel_x = 0; pixel_y = 24},/obj/structure/cable/green{icon_state = "0-2"},/turf/simulated/floor/tiled,/area/crew_quarters/kitchen) +"baP" = (/obj/structure/table/woodentable,/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/turf/simulated/floor/tiled/eris/cafe,/area/hydroponics) "baQ" = (/obj/effect/floor_decal/borderfloor{dir = 4},/obj/effect/floor_decal/corner/lightgrey/border{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 9},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 10},/obj/structure/cable{d1 = 2; d2 = 8; icon_state = "2-8"},/turf/simulated/floor/tiled,/area/tether/surfacebase/surface_three_hall) "baR" = (/obj/machinery/door/firedoor/glass,/obj/machinery/door/airlock/maintenance/common,/turf/simulated/floor/tiled/techmaint,/area/crew_quarters/bar) -"baS" = (/obj/machinery/power/apc{cell_type = /obj/item/weapon/cell/super; dir = 8; name = "west bump"; pixel_x = -30},/obj/structure/cable/green{icon_state = "0-4"},/turf/simulated/floor/wood,/area/library) +"baS" = (/obj/structure/disposalpipe/segment,/obj/structure/window/reinforced/full,/obj/structure/grille,/obj/structure/window/reinforced/tinted,/obj/structure/window/reinforced/tinted{dir = 1},/turf/simulated/floor/tiled,/area/tether/surfacebase/servicebackroom) "baT" = (/obj/machinery/alarm{dir = 1; pixel_y = -22},/obj/machinery/media/jukebox,/turf/simulated/floor/wood,/area/crew_quarters/bar) "baU" = (/obj/structure/table/reinforced,/obj/machinery/computer/skills,/turf/simulated/floor/tiled,/area/crew_quarters/heads/hop) "baV" = (/obj/machinery/computer/card,/turf/simulated/floor/tiled,/area/crew_quarters/heads/hop) "baW" = (/obj/machinery/firealarm{dir = 1; pixel_x = 0; pixel_y = -25},/obj/machinery/computer/security/telescreen/entertainment{icon_state = "frame"; pixel_x = 32; pixel_y = 0},/turf/simulated/floor/wood,/area/crew_quarters/bar) "baX" = (/obj/effect/floor_decal/corner/grey/diagonal,/obj/structure/disposalpipe/segment{dir = 8},/obj/structure/cable/green{d1 = 1; d2 = 4; icon_state = "1-4"},/turf/simulated/floor/tiled/white,/area/crew_quarters/kitchen) -"baY" = (/obj/effect/floor_decal/corner/grey/diagonal,/obj/machinery/door/airlock/freezer{name = "Service"; req_access = list(28)},/obj/machinery/door/firedoor/glass,/obj/structure/disposalpipe/segment{dir = 8},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/tiled/white,/area/crew_quarters/kitchen) -"baZ" = (/obj/structure/disposalpipe/segment{dir = 8},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/tiled,/area/crew_quarters/kitchen) +"baY" = (/obj/structure/window/reinforced/full,/obj/structure/grille,/obj/structure/window/reinforced/tinted,/obj/structure/window/reinforced/tinted{dir = 4; icon_state = "twindow"},/turf/simulated/floor/tiled,/area/tether/surfacebase/servicebackroom) +"baZ" = (/obj/random/cutout,/turf/simulated/floor/lino,/area/tether/surfacebase/entertainment/backstage) "bba" = (/turf/simulated/floor/wood,/area/crew_quarters/captain) "bbb" = (/obj/structure/bookcase,/obj/item/weapon/book/manual/security_space_law,/obj/item/weapon/book/manual/standard_operating_procedure,/obj/item/weapon/book/manual/command_guide,/turf/simulated/floor/wood,/area/crew_quarters/captain) "bbc" = (/obj/machinery/disposal,/obj/structure/disposalpipe/trunk{dir = 4},/obj/machinery/light{dir = 8; icon_state = "tube1"},/turf/simulated/floor/tiled,/area/crew_quarters/heads/hop) -"bbd" = (/obj/structure/disposalpipe/segment{dir = 8},/obj/machinery/light,/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/cable/green{d1 = 1; d2 = 8; icon_state = "1-8"},/turf/simulated/floor/tiled,/area/crew_quarters/kitchen) -"bbe" = (/obj/structure/closet/crate,/obj/structure/disposalpipe/segment{dir = 8; icon_state = "pipe-c"},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/tiled,/area/crew_quarters/kitchen) -"bbf" = (/obj/structure/closet/crate,/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/tiled,/area/crew_quarters/kitchen) -"bbg" = (/obj/structure/closet/crate,/obj/structure/cable/green{d1 = 1; d2 = 8; icon_state = "1-8"},/turf/simulated/floor/tiled,/area/crew_quarters/kitchen) -"bbh" = (/obj/effect/floor_decal/spline/plain{dir = 1},/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/lino,/area/library) +"bbd" = (/obj/structure/disposalpipe/segment,/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/lino,/area/tether/surfacebase/entertainment/backstage) +"bbe" = (/obj/machinery/firealarm{dir = 2; layer = 3.3; pixel_x = 0; pixel_y = 26},/obj/machinery/vending/loadout/accessory,/obj/machinery/alarm{dir = 8; icon_state = "alarm0"; pixel_x = 24},/turf/simulated/floor/lino,/area/tether/surfacebase/entertainment/backstage) +"bbf" = (/obj/structure/bed/chair/wood{dir = 4},/obj/machinery/light{dir = 1},/obj/machinery/alarm{dir = 4; icon_state = "alarm0"; pixel_x = -22},/turf/simulated/floor/wood,/area/tether/surfacebase/entertainment) +"bbg" = (/obj/structure/table/woodentable,/obj/item/weapon/flame/candle,/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/wood,/area/tether/surfacebase/entertainment) +"bbh" = (/obj/structure/bed/chair/wood{dir = 8},/turf/simulated/floor/wood,/area/tether/surfacebase/entertainment) "bbi" = (/obj/effect/floor_decal/industrial/outline/yellow,/obj/machinery/light,/turf/simulated/floor/tiled,/area/crew_quarters/heads/hop) "bbj" = (/obj/effect/floor_decal/industrial/loading{dir = 4},/obj/structure/window/basic{dir = 1},/turf/simulated/floor/tiled,/area/crew_quarters/heads/hop) -"bbk" = (/obj/structure/table/rack/steel,/obj/item/pizzavoucher,/obj/item/weapon/moneybag,/obj/item/weapon/inflatable_duck,/obj/machinery/power/apc{dir = 4; name = "east bump"; pixel_x = 28},/obj/item/weapon/gun/projectile/revolver/capgun,/obj/item/weapon/gun/projectile/revolver/capgun,/obj/item/toy/cultsword,/obj/item/toy/cultsword,/obj/item/weapon/bikehorn/rubberducky,/obj/item/weapon/reagent_containers/spray/cleaner,/obj/structure/cable/green{icon_state = "0-2"},/turf/simulated/floor/lino,/area/maintenance/lower/atrium) -"bbl" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/lino,/area/library) -"bbm" = (/obj/structure/table/rack/steel,/obj/item/mecha_parts/part/durand_left_leg,/obj/item/weapon/cane/crutch,/obj/item/weapon/pack/cardemon,/obj/item/weapon/soap/syndie,/obj/item/weapon/soap/nanotrasen,/obj/item/weapon/soap/deluxe,/obj/item/weapon/staff/gentcane,/obj/item/toy/crossbow,/obj/item/toy/eight_ball/conch,/obj/item/weapon/cell/potato,/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/lino,/area/maintenance/lower/atrium) -"bbn" = (/obj/effect/decal/cleanable/tomato_smudge,/obj/structure/cable/green{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/structure/cable/green{icon_state = "2-4"},/turf/simulated/floor/lino,/area/library) -"bbo" = (/obj/effect/floor_decal/spline/plain{dir = 4},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/lino,/area/library) +"bbk" = (/turf/simulated/floor/wood,/area/tether/surfacebase/entertainment) +"bbl" = (/obj/structure/bed/chair/wood,/turf/simulated/floor/wood,/area/tether/surfacebase/entertainment) +"bbm" = (/obj/structure/bed/chair/wood,/obj/machinery/light{dir = 1},/turf/simulated/floor/wood,/area/tether/surfacebase/entertainment) +"bbn" = (/obj/structure/sign/directions/evac{dir = 1},/turf/simulated/wall,/area/tether/surfacebase/entertainment) +"bbo" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 5; icon_state = "intact-supply"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 5; icon_state = "intact-scrubbers"},/turf/simulated/floor/tiled,/area/tether/surfacebase/servicebackroom) "bbp" = (/obj/structure/filingcabinet/chestdrawer,/turf/simulated/floor/tiled,/area/crew_quarters/heads/hop) "bbq" = (/obj/effect/floor_decal/corner/lightgrey{dir = 9},/obj/effect/floor_decal/corner/lightgrey{dir = 6},/obj/structure/bed/chair/wood,/turf/simulated/floor/tiled,/area/tether/surfacebase/surface_three_hall) -"bbr" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/wood,/area/library) +"bbr" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 8},/turf/simulated/floor/tiled,/area/tether/surfacebase/servicebackroom) "bbs" = (/obj/effect/floor_decal/corner/lightgrey{dir = 9},/obj/effect/floor_decal/corner/lightgrey{dir = 6},/obj/structure/bed/chair/wood{dir = 8},/turf/simulated/floor/tiled,/area/tether/surfacebase/surface_three_hall) "bbt" = (/obj/effect/floor_decal/corner/lightgrey{dir = 9},/obj/effect/floor_decal/corner/lightgrey{dir = 6},/obj/structure/bed/chair/wood{dir = 4},/turf/simulated/floor/tiled,/area/tether/surfacebase/surface_three_hall) "bbu" = (/obj/effect/floor_decal/corner/lightgrey{dir = 9},/obj/effect/floor_decal/corner/lightgrey{dir = 6},/obj/structure/bed/chair/wood{dir = 1},/turf/simulated/floor/tiled,/area/tether/surfacebase/surface_three_hall) -"bbv" = (/obj/structure/bed/chair/wood,/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/wood,/area/library) +"bbv" = (/obj/machinery/power/apc{cell_type = /obj/item/weapon/cell/super; dir = 1; name = "north bump"; pixel_x = 0; pixel_y = 24},/obj/structure/cable/green{icon_state = "0-2"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 8},/turf/simulated/floor/tiled,/area/tether/surfacebase/servicebackroom) "bbw" = (/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled,/area/crew_quarters/heads/hop) "bbx" = (/obj/structure/table/reinforced,/obj/item/weapon/paper_bin{pixel_x = -3; pixel_y = 7},/obj/item/weapon/folder/blue_hop,/obj/item/weapon/pen,/obj/machinery/atmospherics/unary/vent_pump/on{dir = 1},/obj/machinery/light_switch{dir = 1; pixel_x = -8; pixel_y = -26},/turf/simulated/floor/tiled,/area/crew_quarters/heads/hop) "bby" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/effect/floor_decal/borderfloor/corner{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 10},/obj/effect/floor_decal/steeldecal/steel_decals7,/obj/structure/cable{icon_state = "1-2"},/obj/effect/floor_decal/corner/blue/bordercorner{dir = 4},/turf/simulated/floor/tiled,/area/tether/surfacebase/surface_three_hall) -"bbz" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/item/device/radio/intercom{dir = 4; name = "Stagehand Speaker"; pixel_x = 24; pixel_y = 24},/obj/structure/cable/green{d1 = 1; d2 = 4; icon_state = "1-4"},/turf/simulated/floor/lino,/area/maintenance/lower/atrium) +"bbz" = (/obj/effect/floor_decal/borderfloor{dir = 8},/obj/effect/floor_decal/borderfloor/corner2{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 5},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 6},/obj/machinery/light{dir = 8; icon_state = "tube1"},/turf/simulated/floor/tiled,/area/hallway/lower/third_south) "bbA" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/effect/floor_decal/borderfloor{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals7,/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 4},/obj/structure/window/basic{dir = 1},/obj/effect/floor_decal/corner/blue/border{dir = 1; icon_state = "bordercolor"},/turf/simulated/floor/tiled,/area/tether/surfacebase/surface_three_hall) -"bbB" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/door/airlock/silver,/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/lino,/area/library) +"bbB" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 8},/turf/simulated/floor/tiled,/area/tether/surfacebase/servicebackroom) "bbC" = (/obj/item/device/radio/intercom{dir = 8; pixel_x = -24},/turf/simulated/floor/wood,/area/crew_quarters/captain) "bbD" = (/obj/structure/disposalpipe/segment,/obj/machinery/light/small{dir = 4},/turf/simulated/floor/wood,/area/crew_quarters/captain) "bbE" = (/obj/structure/dogbed,/obj/structure/curtain/open/bed,/mob/living/simple_mob/animal/passive/fox/renault,/turf/simulated/floor/wood,/area/crew_quarters/captain) "bbF" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/effect/floor_decal/borderfloor{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals7,/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 4},/obj/effect/floor_decal/corner/blue/border{dir = 1; icon_state = "bordercolor"},/turf/simulated/floor/tiled,/area/tether/surfacebase/surface_three_hall) "bbG" = (/obj/structure/sign/department/sci{pixel_x = -32; pixel_y = 0},/obj/effect/floor_decal/borderfloor{dir = 8},/obj/effect/floor_decal/corner/mauve/border{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 5},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 6},/obj/machinery/light{dir = 8},/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 4},/turf/simulated/floor/tiled,/area/hallway/lower/third_south) "bbH" = (/obj/machinery/alarm{alarm_id = "pen_nine"; breach_detection = 0; dir = 1; icon_state = "alarm0"; pixel_y = -22},/obj/machinery/disposal,/obj/structure/disposalpipe/trunk{dir = 1},/turf/simulated/floor/wood,/area/crew_quarters/captain) -"bbI" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/lino,/area/library) -"bbJ" = (/obj/effect/floor_decal/spline/plain{dir = 4},/obj/effect/decal/cleanable/tomato_smudge,/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/lino,/area/library) -"bbK" = (/obj/structure/cable/green{icon_state = "2-4"},/turf/simulated/floor/lino,/area/crew_quarters/bar) -"bbL" = (/obj/structure/disposalpipe/segment{dir = 1; icon_state = "pipe-c"},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/lino,/area/crew_quarters/bar) -"bbM" = (/obj/machinery/requests_console{pixel_x = 32; pixel_y = -32},/obj/structure/disposalpipe/segment{dir = 8},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/lino,/area/crew_quarters/bar) -"bbN" = (/obj/machinery/door/airlock{name = "Bar Backroom"; req_access = list(25)},/obj/effect/floor_decal/spline/plain{dir = 5},/obj/effect/floor_decal/spline/plain,/obj/machinery/door/firedoor/glass,/obj/structure/disposalpipe/segment{dir = 8},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/lino,/area/tether/surfacebase/bar_backroom) -"bbO" = (/obj/structure/disposalpipe/segment{dir = 8; icon_state = "pipe-c"},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/wood,/area/tether/surfacebase/bar_backroom) -"bbP" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/wood,/area/tether/surfacebase/bar_backroom) +"bbI" = (/obj/structure/table/woodentable,/obj/item/weapon/flame/candle,/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 9},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 9},/turf/simulated/floor/tiled/eris/cafe,/area/hydroponics) +"bbJ" = (/obj/machinery/icecream_vat,/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 6},/turf/simulated/floor/tiled/freezer,/area/crew_quarters/freezer) +"bbK" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/wood,/area/crew_quarters/bar) +"bbL" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/wood,/area/crew_quarters/bar) +"bbM" = (/obj/effect/floor_decal/spline/plain{dir = 8; icon_state = "spline_plain"},/obj/item/weapon/stool/padded,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/lino,/area/crew_quarters/bar) +"bbN" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/wood,/area/tether/surfacebase/bar_backroom) +"bbO" = (/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 8},/turf/simulated/floor/wood,/area/crew_quarters/bar) +"bbP" = (/obj/structure/table/woodentable,/obj/item/weapon/flame/candle,/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/wood,/area/crew_quarters/bar) "bbQ" = (/obj/structure/table/woodentable,/obj/item/weapon/reagent_containers/food/drinks/metaglass,/obj/item/weapon/reagent_containers/food/drinks/metaglass,/obj/item/weapon/reagent_containers/food/drinks/metaglass,/obj/item/weapon/reagent_containers/food/drinks/metaglass,/obj/machinery/power/apc{dir = 4; name = "east bump"; pixel_x = 28},/obj/structure/cable/green{icon_state = "0-8"},/turf/simulated/floor/wood,/area/tether/surfacebase/bar_backroom) "bbR" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/lino,/area/crew_quarters/bar) "bbS" = (/obj/structure/table/marble,/obj/machinery/door/blast/shutters{dir = 2; id = "bar"; layer = 3.3; name = "Bar Shutters"},/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/lino,/area/crew_quarters/bar) -"bbT" = (/obj/structure/cable/green{icon_state = "2-4"},/turf/simulated/floor/wood,/area/crew_quarters/bar) -"bbU" = (/obj/structure/disposalpipe/segment,/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/wood,/area/crew_quarters/bar) -"bbV" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/wood,/area/crew_quarters/bar) -"bbW" = (/obj/structure/bed/chair/wood{dir = 1},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/wood,/area/crew_quarters/bar) +"bbT" = (/obj/structure/table/woodentable,/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/wood,/area/crew_quarters/bar) +"bbU" = (/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/wood,/area/crew_quarters/bar) +"bbV" = (/obj/effect/floor_decal/spline/plain{dir = 8; icon_state = "spline_plain"},/obj/item/weapon/stool/padded,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 9},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 9},/turf/simulated/floor/lino,/area/crew_quarters/bar) +"bbW" = (/obj/machinery/door/airlock{name = "Bar Backroom"; req_access = list(25)},/obj/machinery/door/firedoor/glass,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/tiled/techmaint,/area/tether/surfacebase/bar_backroom) "bbX" = (/obj/effect/floor_decal/spline/plain{dir = 10; icon_state = "spline_plain"},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/lino,/area/crew_quarters/bar) "bbY" = (/obj/effect/floor_decal/spline/plain,/obj/item/weapon/stool/padded,/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/lino,/area/crew_quarters/bar) "bbZ" = (/obj/effect/floor_decal/spline/plain,/obj/item/weapon/stool/padded,/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/cable/green{d1 = 1; d2 = 8; icon_state = "1-8"},/turf/simulated/floor/lino,/area/crew_quarters/bar) "bca" = (/obj/effect/floor_decal/spline/plain{dir = 6},/obj/item/weapon/stool/padded,/obj/machinery/power/apc{dir = 4; name = "east bump"; pixel_x = 28},/obj/structure/cable/green{icon_state = "0-8"},/turf/simulated/floor/lino,/area/crew_quarters/bar) "bcb" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/wood,/area/crew_quarters/bar) -"bcc" = (/obj/item/device/radio/intercom{dir = 2; pixel_y = -24},/obj/structure/cable/green{d1 = 1; d2 = 8; icon_state = "1-8"},/turf/simulated/floor/wood,/area/crew_quarters/bar) +"bcc" = (/obj/structure/cable/green{icon_state = "2-4"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 6},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 6},/turf/simulated/floor/wood,/area/crew_quarters/bar) "bcd" = (/obj/machinery/power/apc{cell_type = /obj/item/weapon/cell/apc; dir = 8; name = "west bump"; pixel_x = -28},/obj/structure/cable/green{icon_state = "0-4"},/turf/simulated/floor/tiled/white,/area/crew_quarters/barrestroom) -"bce" = (/obj/structure/disposalpipe/segment{dir = 8},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/tiled,/area/rnd/xenobiology/xenoflora_storage) +"bce" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 9},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 9},/turf/simulated/floor/tiled,/area/tether/surfacebase/servicebackroom) "bcf" = (/obj/effect/floor_decal/corner/grey/diagonal,/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 8},/turf/simulated/floor/tiled/white,/area/crew_quarters/kitchen) -"bcg" = (/obj/structure/disposalpipe/segment{dir = 2; icon_state = "pipe-c"},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/tiled,/area/rnd/xenobiology/xenoflora_storage) -"bch" = (/obj/effect/floor_decal/corner/mauve/border{dir = 6},/turf/simulated/floor/tiled,/area/tether/surfacebase/outside/outside3) -"bci" = (/obj/structure/closet/secure_closet/hydroponics,/obj/effect/floor_decal/corner/mauve/border{dir = 10},/turf/simulated/floor/tiled,/area/tether/surfacebase/outside/outside3) -"bcj" = (/obj/structure/closet/firecloset,/obj/effect/floor_decal/corner/mauve/border,/turf/simulated/floor/tiled,/area/tether/surfacebase/outside/outside3) -"bck" = (/obj/machinery/door/airlock{name = "Unisex Restrooms"},/obj/machinery/door/firedoor/glass,/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/tiled/white,/area/crew_quarters/barrestroom) -"bcl" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/tiled/white,/area/crew_quarters/barrestroom) -"bcm" = (/obj/structure/cable/green{d1 = 1; d2 = 8; icon_state = "1-8"},/turf/simulated/floor/tiled/white,/area/crew_quarters/barrestroom) -"bcn" = (/obj/structure/grille,/obj/machinery/door/firedoor,/obj/structure/window/reinforced/polarized/full{id = "hop_office"},/obj/structure/window/reinforced/polarized{dir = 4; icon_state = "rwindow"; id = "hop_office"},/obj/machinery/door/blast/shutters{dir = 2; id = "kitchen"; layer = 3.3; name = "Entertainment Shutters"},/obj/machinery/door/blast/regular/open{icon_state = "pdoor0"; dir = 2},/obj/structure/cable/green,/turf/simulated/floor/plating,/area/library) -"bco" = (/obj/structure/grille,/obj/machinery/door/firedoor,/obj/structure/window/reinforced/polarized/full{id = "hop_office"},/obj/structure/window/reinforced/polarized,/obj/machinery/door/blast/shutters{dir = 2; id = "kitchen"; layer = 3.3; name = "Entertainment Shutters"},/obj/machinery/door/blast/regular/open{icon_state = "pdoor0"; dir = 4},/obj/structure/cable/green{icon_state = "0-4"},/obj/structure/cable/green{d1 = 1; d2 = 4; icon_state = "1-4"},/turf/simulated/floor/plating,/area/library) -"bcp" = (/obj/structure/grille,/obj/machinery/door/firedoor,/obj/structure/window/reinforced/polarized/full{id = "hop_office"},/obj/structure/window/reinforced/polarized,/obj/machinery/door/blast/shutters{dir = 2; id = "kitchen"; layer = 3.3; name = "Entertainment Shutters"},/obj/machinery/door/blast/regular/open{icon_state = "pdoor0"; dir = 4},/obj/structure/cable/green{icon_state = "0-4"},/obj/structure/cable/green{icon_state = "0-8"},/turf/simulated/floor/plating,/area/library) -"bcq" = (/obj/structure/grille,/obj/machinery/door/firedoor,/obj/structure/window/reinforced/polarized/full{id = "hop_office"},/obj/structure/window/reinforced/polarized,/obj/machinery/door/blast/shutters{dir = 2; id = "kitchen"; layer = 3.3; name = "Entertainment Shutters"},/obj/machinery/door/blast/regular/open{icon_state = "pdoor0"; dir = 4},/obj/structure/cable/green{icon_state = "0-8"},/turf/simulated/floor/plating,/area/library) -"bcr" = (/obj/structure/grille,/obj/machinery/door/firedoor,/obj/structure/window/reinforced/polarized/full{id = "hop_office"},/obj/structure/window/reinforced/polarized{dir = 4; icon_state = "rwindow"; id = "hop_office"},/obj/machinery/door/blast/shutters{dir = 2; id = "kitchen"; layer = 3.3; name = "Entertainment Shutters"},/obj/machinery/door/blast/regular/open{icon_state = "pdoor0"; dir = 2},/obj/structure/cable/green{icon_state = "0-8"},/turf/simulated/floor/plating,/area/library) -"bcs" = (/obj/effect/floor_decal/corner/grey/diagonal,/obj/structure/cable/green{d1 = 1; d2 = 8; icon_state = "1-8"},/turf/simulated/floor/tiled/white,/area/crew_quarters/kitchen) +"bcg" = (/obj/random/cutout,/obj/machinery/atmospherics/unary/vent_pump/on{dir = 4},/turf/simulated/floor/lino,/area/tether/surfacebase/entertainment/backstage) +"bch" = (/obj/effect/floor_decal/corner/mauve/border{dir = 6},/turf/simulated/floor/tiled,/area/tether/surfacebase/surface_three_hall) +"bci" = (/obj/structure/disposalpipe/segment,/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 8},/turf/simulated/floor/lino,/area/tether/surfacebase/entertainment/backstage) +"bcj" = (/obj/machinery/vending/loadout/costume,/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 8},/turf/simulated/floor/lino,/area/tether/surfacebase/entertainment/backstage) +"bck" = (/obj/structure/disposalpipe/segment,/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 = 8},/turf/simulated/floor/wood,/area/crew_quarters/bar) +"bcl" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/cable/green{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 9},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 8},/turf/simulated/floor/wood,/area/crew_quarters/bar) +"bcm" = (/obj/structure/bed/chair/wood{dir = 1},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 8},/turf/simulated/floor/wood,/area/crew_quarters/bar) +"bcn" = (/obj/machinery/power/apc{cell_type = /obj/item/weapon/cell/super; dir = 8; name = "west bump"; pixel_x = -30},/obj/structure/cable/green{icon_state = "0-4"},/turf/simulated/floor/wood,/area/tether/surfacebase/entertainment) +"bco" = (/obj/structure/cable/green{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/cable/green{icon_state = "2-4"},/turf/simulated/floor/wood,/area/tether/surfacebase/entertainment) +"bcp" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/wood,/area/tether/surfacebase/entertainment) +"bcq" = (/obj/structure/table/woodentable,/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/wood,/area/tether/surfacebase/entertainment) +"bcr" = (/obj/structure/table/woodentable,/obj/item/weapon/flame/candle,/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/wood,/area/tether/surfacebase/entertainment) +"bcs" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled/freezer,/area/crew_quarters/freezer) "bct" = (/obj/machinery/power/apc{dir = 1; name = "north bump"; pixel_x = 0; pixel_y = 24},/obj/structure/flora/ausbushes/sparsegrass,/obj/structure/flora/ausbushes/ywflowers,/obj/structure/cable/green{icon_state = "0-2"},/turf/simulated/floor/grass,/area/hydroponics/cafegarden) -"bcu" = (/obj/effect/floor_decal/spline/plain,/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/cable/green{icon_state = "2-4"},/turf/simulated/floor/lino,/area/library) -"bcv" = (/obj/effect/floor_decal/spline/plain{dir = 6},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/lino,/area/library) +"bcu" = (/obj/structure/grille,/obj/machinery/door/firedoor,/obj/structure/cable/green{d2 = 2; icon_state = "0-2"},/obj/structure/cable/green{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/machinery/door/blast/regular/open{dir = 2; icon_state = "pdoor0"; id = "DRAMATIC"},/obj/structure/window/reinforced/polarized/full{id = "draama"; name = "Mystery Window"},/obj/structure/window/reinforced/polarized{dir = 4; icon_state = "rwindow"; id = "draama"; name = "Mystery Window"},/obj/machinery/door/blast/shutters{dir = 2; id = "Druma"; layer = 3.3; name = "Entertainment Shutters"},/turf/simulated/floor/plating,/area/tether/surfacebase/entertainment) +"bcv" = (/obj/effect/floor_decal/corner/grey/diagonal,/obj/machinery/door/airlock/freezer{name = "Service"; req_access = list(28)},/obj/machinery/door/firedoor/glass,/obj/structure/disposalpipe/segment{dir = 8},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/tiled/white,/area/tether/surfacebase/servicebackroom) "bcw" = (/obj/structure/table/standard,/obj/machinery/reagentgrinder,/obj/machinery/light{dir = 4; icon_state = "tube1"; pixel_x = 0},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/tiled/white,/area/crew_quarters/kitchen) "bcx" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/wall,/area/crew_quarters/kitchen) "bcy" = (/obj/structure/table/standard,/obj/effect/floor_decal/corner/grey/diagonal,/obj/machinery/light{dir = 8; icon_state = "tube1"; pixel_y = 0},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/tiled/white,/area/crew_quarters/kitchen) "bcz" = (/obj/machinery/door/firedoor/glass,/obj/machinery/door/airlock/glass{name = "Garden"; req_access = list(28)},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/tiled/white,/area/hydroponics/cafegarden) "bcA" = (/obj/structure/cable/green{d1 = 1; d2 = 8; icon_state = "1-8"},/turf/simulated/floor/grass,/area/hydroponics/cafegarden) -"bcB" = (/obj/structure/closet/l3closet/scientist,/obj/effect/floor_decal/corner/mauve/border,/turf/simulated/floor/tiled,/area/tether/surfacebase/outside/outside3) -"bcC" = (/obj/effect/floor_decal/corner/mauve/border,/turf/simulated/floor/tiled,/area/maintenance/lower/xenoflora) -"bcD" = (/obj/effect/floor_decal/corner/mauve/bordercorner{dir = 8},/turf/simulated/floor/tiled,/area/maintenance/lower/xenoflora) -"bcE" = (/obj/effect/floor_decal/corner/mauve/border{dir = 8},/turf/simulated/floor/tiled,/area/maintenance/lower/xenoflora) -"bcF" = (/obj/effect/floor_decal/corner/mauve/border{dir = 4},/turf/simulated/floor/tiled,/area/tether/surfacebase/outside/outside3) -"bcG" = (/obj/structure/table/standard{name = "plastic table frame"},/obj/item/weapon/reagent_containers/glass/bucket,/obj/item/weapon/material/minihoe,/obj/item/weapon/storage/box/botanydisk,/obj/item/weapon/storage/box/botanydisk,/obj/effect/floor_decal/corner/mauve/border{dir = 4},/turf/simulated/floor/tiled,/area/tether/surfacebase/outside/outside3) -"bcH" = (/obj/machinery/botany/editor,/obj/effect/floor_decal/corner/mauve/border{dir = 8},/turf/simulated/floor/tiled,/area/maintenance/lower/xenoflora) -"bcI" = (/obj/machinery/portable_atmospherics/hydroponics,/obj/effect/floor_decal/corner/mauve/border{dir = 10},/turf/simulated/floor/tiled,/area/maintenance/lower/xenoflora) -"bcJ" = (/obj/machinery/portable_atmospherics/hydroponics,/obj/effect/floor_decal/corner/mauve/border,/turf/simulated/floor/tiled,/area/tether/surfacebase/outside/outside3) -"bcK" = (/obj/machinery/portable_atmospherics/hydroponics,/obj/effect/floor_decal/corner/mauve/border{dir = 6},/turf/simulated/floor/tiled,/area/tether/surfacebase/outside/outside3) -"bcL" = (/obj/structure/reagent_dispensers/watertank,/obj/item/weapon/reagent_containers/glass/bucket,/obj/effect/floor_decal/corner/mauve/border{dir = 4},/turf/simulated/floor/tiled,/area/tether/surfacebase/outside/outside3) -"bcM" = (/obj/machinery/botany/extractor,/obj/effect/floor_decal/corner/mauve/border{dir = 8},/turf/simulated/floor/tiled,/area/maintenance/lower/xenoflora) -"bcN" = (/obj/structure/reagent_dispensers/watertank,/obj/item/weapon/reagent_containers/glass/bucket,/obj/machinery/light{dir = 4; icon_state = "tube1"},/obj/effect/floor_decal/corner/mauve/border{dir = 4},/turf/simulated/floor/tiled,/area/tether/surfacebase/outside/outside3) -"bcO" = (/obj/structure/sink{dir = 4; icon_state = "sink"; pixel_x = 11; pixel_y = 0},/obj/effect/floor_decal/corner/mauve/border{dir = 4},/turf/simulated/floor/tiled,/area/tether/surfacebase/outside/outside3) -"bcP" = (/obj/machinery/botany/extractor,/obj/machinery/light{dir = 8; icon_state = "tube1"},/obj/effect/floor_decal/corner/mauve/border{dir = 8},/turf/simulated/floor/tiled,/area/maintenance/lower/xenoflora) -"bcQ" = (/obj/structure/table/glass,/obj/item/weapon/storage/box/beakers{pixel_x = 2; pixel_y = 2},/obj/item/weapon/storage/box/syringes,/obj/item/weapon/storage/box/gloves{pixel_x = 4; pixel_y = 4},/obj/effect/floor_decal/corner/mauve/bordercorner,/turf/simulated/floor/tiled,/area/tether/surfacebase/outside/outside3) -"bcR" = (/obj/machinery/smartfridge/drying_rack,/obj/effect/floor_decal/corner/mauve/border,/turf/simulated/floor/tiled,/area/tether/surfacebase/outside/outside3) -"bcS" = (/obj/machinery/biogenerator,/obj/effect/floor_decal/corner/mauve/border{dir = 6},/turf/simulated/floor/tiled,/area/tether/surfacebase/outside/outside3) -"bcT" = (/obj/structure/disposalpipe/segment,/obj/effect/floor_decal/corner/mauve/bordercorner,/turf/simulated/floor/tiled,/area/maintenance/lower/xenoflora) -"bcU" = (/obj/structure/table/glass,/obj/machinery/reagentgrinder,/obj/effect/floor_decal/corner/mauve/border,/turf/simulated/floor/tiled,/area/maintenance/lower/xenoflora) -"bcV" = (/obj/machinery/chem_master,/obj/effect/floor_decal/corner/mauve/border,/turf/simulated/floor/tiled,/area/hydroponics) -"bcW" = (/obj/structure/table/glass,/obj/effect/floor_decal/corner/mauve/border,/turf/simulated/floor/tiled,/area/hydroponics) -"bcX" = (/obj/machinery/reagentgrinder,/obj/structure/table/glass,/obj/effect/floor_decal/corner/mauve/border{dir = 6},/turf/simulated/floor/tiled,/area/hydroponics) -"bcY" = (/obj/effect/floor_decal/corner/mauve/border{dir = 10},/obj/machinery/smartfridge,/obj/effect/floor_decal/corner/mauve/border{dir = 10},/turf/simulated/floor/tiled,/area/maintenance/lower/xenoflora) -"bcZ" = (/obj/machinery/disposal,/obj/structure/disposalpipe/trunk{dir = 1},/obj/effect/floor_decal/corner/mauve/border{dir = 6},/turf/simulated/floor/tiled,/area/maintenance/lower/xenoflora) -"bda" = (/obj/machinery/atmospherics/unary/vent_pump/on{dir = 8},/turf/simulated/floor/tiled,/area/tether/surfacebase/outside/outside3) -"bdb" = (/obj/machinery/atmospherics/unary/vent_pump/on{dir = 4},/turf/simulated/floor/tiled,/area/tether/surfacebase/outside/outside3) +"bcB" = (/obj/structure/disposalpipe/segment{dir = 8},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/tiled,/area/tether/surfacebase/servicebackroom) +"bcC" = (/obj/structure/disposalpipe/segment{dir = 8},/obj/machinery/light,/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/cable/green{d1 = 1; d2 = 8; icon_state = "1-8"},/turf/simulated/floor/tiled,/area/tether/surfacebase/servicebackroom) +"bcD" = (/obj/structure/closet/crate,/obj/structure/disposalpipe/segment{dir = 8; icon_state = "pipe-c"},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/tiled,/area/tether/surfacebase/servicebackroom) +"bcE" = (/obj/structure/closet/crate,/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/tiled,/area/tether/surfacebase/servicebackroom) +"bcF" = (/obj/structure/closet/crate,/obj/structure/cable/green{d1 = 1; d2 = 8; icon_state = "1-8"},/turf/simulated/floor/tiled,/area/tether/surfacebase/servicebackroom) +"bcG" = (/obj/machinery/light/small,/obj/structure/table/woodentable,/obj/item/weapon/bone/skull{name = "Yo'rick"},/obj/item/weapon/paper{desc = ""; info = "The Silence Into Laughter program works to place hard working, studied, accomplished, hardworking, homebrewed, diplomaholding, or otherwise clowns and mimes into the workforce! The Head Clowncellor and the Director at Mime have finally worked together to bring this titan of a workers' union! If you have a background in silence or laughter, please apply at our exonet site at: https://forum.vore-station.net/viewforum.php?f=45"; name = "Clowns and Mimes Wanted!"},/obj/machinery/camera/network/outside{dir = 5; icon_state = "camera"},/turf/simulated/floor/lino,/area/tether/surfacebase/entertainment/backstage) +"bcH" = (/obj/machinery/floodlight,/obj/machinery/light/small{dir = 4},/turf/simulated/floor/lino,/area/tether/surfacebase/entertainment/backstage) +"bcI" = (/turf/simulated/wall,/area/tether/surfacebase/entertainment/stage) +"bcJ" = (/obj/structure/device/piano,/obj/effect/floor_decal/spline/plain{dir = 1},/obj/machinery/light{dir = 8},/turf/simulated/floor/lino,/area/tether/surfacebase/entertainment/stage) +"bcK" = (/obj/effect/floor_decal/spline/plain{dir = 1},/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/lino,/area/tether/surfacebase/entertainment/stage) +"bcL" = (/obj/item/device/instrument/violin,/obj/structure/table/rack/steel,/obj/effect/floor_decal/spline/plain{dir = 5},/turf/simulated/floor/lino,/area/tether/surfacebase/entertainment/stage) +"bcM" = (/obj/structure/bed/chair/wood{dir = 1},/turf/simulated/floor/wood,/area/tether/surfacebase/entertainment) +"bcN" = (/obj/structure/grille,/obj/machinery/door/firedoor,/obj/structure/cable/green,/obj/machinery/door/blast/regular/open{dir = 2; icon_state = "pdoor0"; id = "DRAMATIC"},/obj/structure/window/reinforced/polarized/full{id = "draama"; name = "Mystery Window"},/obj/structure/window/reinforced/polarized{dir = 4; icon_state = "rwindow"; id = "draama"; name = "Mystery Window"},/obj/machinery/door/blast/shutters{dir = 2; id = "Druma"; layer = 3.3; name = "Entertainment Shutters"},/turf/simulated/floor/plating,/area/tether/surfacebase/entertainment) +"bcO" = (/obj/machinery/light,/turf/simulated/floor/tiled,/area/tether/surfacebase/servicebackroom) +"bcP" = (/obj/structure/table/rack/steel,/obj/item/pizzavoucher,/obj/item/weapon/moneybag,/obj/item/weapon/inflatable_duck,/obj/machinery/power/apc{dir = 4; name = "east bump"; pixel_x = 28},/obj/item/weapon/gun/projectile/revolver/capgun,/obj/item/weapon/gun/projectile/revolver/capgun,/obj/item/toy/cultsword,/obj/item/toy/cultsword,/obj/item/weapon/bikehorn/rubberducky,/obj/item/weapon/reagent_containers/spray/cleaner,/obj/structure/cable/green{icon_state = "0-2"},/turf/simulated/floor/lino,/area/tether/surfacebase/entertainment/backstage) +"bcQ" = (/obj/item/weapon/stool/padded,/turf/simulated/floor/lino,/area/tether/surfacebase/entertainment/stage) +"bcR" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/lino,/area/tether/surfacebase/entertainment/stage) +"bcS" = (/obj/effect/floor_decal/spline/plain{dir = 4},/turf/simulated/floor/lino,/area/tether/surfacebase/entertainment/stage) +"bcT" = (/obj/machinery/light{dir = 4; icon_state = "tube1"; pixel_x = 0},/turf/simulated/floor/wood,/area/tether/surfacebase/entertainment) +"bcU" = (/obj/structure/table/rack/steel,/obj/item/mecha_parts/part/durand_left_leg,/obj/item/weapon/cane/crutch,/obj/item/weapon/pack/cardemon,/obj/item/weapon/soap/syndie,/obj/item/weapon/soap/nanotrasen,/obj/item/weapon/soap/deluxe,/obj/item/weapon/staff/gentcane,/obj/item/toy/crossbow,/obj/item/toy/eight_ball/conch,/obj/item/weapon/cell/potato,/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/lino,/area/tether/surfacebase/entertainment/backstage) +"bcV" = (/obj/machinery/light{dir = 8},/obj/item/device/radio/intercom{dir = 8; frequency = 1532; name = "Stagehand Mic"; pixel_x = -24},/turf/simulated/floor/lino,/area/tether/surfacebase/entertainment/stage) +"bcW" = (/obj/effect/decal/cleanable/tomato_smudge,/obj/structure/cable/green{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/structure/cable/green{icon_state = "2-4"},/turf/simulated/floor/lino,/area/tether/surfacebase/entertainment/stage) +"bcX" = (/obj/effect/floor_decal/spline/plain{dir = 4},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/lino,/area/tether/surfacebase/entertainment/stage) +"bcY" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/unary/vent_pump/on,/turf/simulated/floor/wood,/area/tether/surfacebase/entertainment) +"bcZ" = (/obj/structure/bed/chair/wood,/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/wood,/area/tether/surfacebase/entertainment) +"bda" = (/obj/machinery/door/firedoor/glass,/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/door/airlock/silver,/turf/simulated/floor/tiled/steel_grid,/area/tether/surfacebase/entertainment) +"bdb" = (/obj/structure/disposalpipe/segment,/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 5},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 5},/obj/machinery/light_switch{name = "House Lights"; pixel_x = -25},/turf/simulated/floor/lino,/area/tether/surfacebase/entertainment) "bdc" = (/obj/effect/floor_decal/corner/mauve/border{dir = 1},/obj/machinery/alarm{pixel_y = 25},/turf/simulated/floor/tiled,/area/rnd/xenobiology/xenoflora) -"bdd" = (/obj/effect/floor_decal/corner/mauve/border,/obj/machinery/firealarm{dir = 1; pixel_x = 0; pixel_y = -24},/turf/simulated/floor/tiled,/area/maintenance/lower/xenoflora) -"bde" = (/obj/effect/floor_decal/corner/mauve/border{dir = 8},/obj/structure/extinguisher_cabinet{dir = 4; icon_state = "extinguisher_closed"; pixel_x = -30},/turf/simulated/floor/tiled,/area/maintenance/lower/xenoflora) -"bdf" = (/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 4},/turf/simulated/open/virgo3b,/area/tether/surfacebase/outside/outside3) -"bdg" = (/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 8},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 4},/turf/simulated/open/virgo3b,/area/tether/surfacebase/outside/outside3) -"bdh" = (/obj/machinery/atmospherics/unary/vent_pump/on{dir = 8},/turf/simulated/open/virgo3b,/area/tether/surfacebase/outside/outside3) +"bdd" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/item/device/radio/intercom{dir = 4; frequency = 1532; name = "Stagehand Speaker"; pixel_x = 24; pixel_y = 24},/obj/structure/cable/green{d1 = 1; d2 = 4; icon_state = "1-4"},/turf/simulated/floor/lino,/area/tether/surfacebase/entertainment/backstage) +"bde" = (/obj/structure/bed/chair/wood{dir = 1},/obj/effect/landmark/start{name = "Entertainer"},/turf/simulated/floor/wood,/area/tether/surfacebase/entertainment) +"bdf" = (/obj/structure/disposalpipe/segment{dir = 8},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/cable/green{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/machinery/atmospherics/pipe/manifold/hidden/supply,/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,/turf/simulated/floor/tiled,/area/rnd/xenobiology/xenoflora) +"bdg" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/lino,/area/tether/surfacebase/entertainment/stage) +"bdh" = (/obj/structure/cable/green{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/cable/green{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/lino,/area/tether/surfacebase/entertainment/stage) "bdi" = (/obj/machinery/alarm{pixel_y = 25},/turf/simulated/floor/grass,/area/hydroponics) "bdj" = (/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 4},/turf/simulated/floor/grass,/area/hydroponics) "bdk" = (/obj/machinery/atmospherics/unary/vent_pump/on{dir = 8},/turf/simulated/floor/grass,/area/hydroponics) -"bdl" = (/obj/machinery/firealarm{dir = 1; pixel_x = 0; pixel_y = -24},/turf/simulated/floor/grass,/area/hydroponics) -"bdm" = (/obj/effect/floor_decal/corner/lime/border{dir = 10},/obj/machinery/alarm{alarm_id = "pen_nine"; breach_detection = 0; dir = 1; icon_state = "alarm0"; pixel_y = -22},/turf/simulated/floor/tiled,/area/hydroponics) -"bdn" = (/obj/machinery/alarm{pixel_y = 25},/turf/simulated/floor/tiled,/area/crew_quarters/kitchen) -"bdo" = (/obj/structure/extinguisher_cabinet{dir = 8; icon_state = "extinguisher_closed"; pixel_x = 30},/turf/simulated/floor/grass,/area/hydroponics) -"bdp" = (/obj/machinery/atmospherics/unary/vent_pump/on,/turf/simulated/floor/tiled,/area/crew_quarters/kitchen) -"bdq" = (/obj/machinery/atmospherics/unary/vent_scrubber/on,/turf/simulated/floor/tiled,/area/crew_quarters/kitchen) +"bdl" = (/obj/machinery/disposal,/obj/structure/disposalpipe/trunk{dir = 8},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/grass,/area/hydroponics) +"bdm" = (/obj/effect/floor_decal/spline/plain{dir = 4},/obj/effect/decal/cleanable/tomato_smudge,/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/lino,/area/tether/surfacebase/entertainment/stage) +"bdn" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 10; icon_state = "intact-scrubbers"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 9},/turf/simulated/floor/wood,/area/tether/surfacebase/entertainment) +"bdo" = (/obj/structure/grille,/obj/machinery/door/firedoor,/obj/structure/cable/green{icon_state = "0-8"},/obj/machinery/door/blast/regular/open{dir = 2; icon_state = "pdoor0"; id = "DRAMATIC"},/obj/structure/window/reinforced/polarized/full{id = "draama"; name = "Mystery Window"},/obj/structure/window/reinforced/polarized{dir = 4; icon_state = "rwindow"; id = "draama"; name = "Mystery Window"},/obj/machinery/door/blast/shutters{dir = 2; id = "Druma"; layer = 3.3; name = "Entertainment Shutters"},/turf/simulated/floor/plating,/area/tether/surfacebase/entertainment) +"bdp" = (/obj/structure/disposalpipe/segment,/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0},/obj/machinery/light_switch{name = "Stage Lights"; pixel_x = -25},/turf/simulated/floor/lino,/area/tether/surfacebase/entertainment/stage) +"bdq" = (/obj/structure/bed/chair/wood,/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/effect/landmark/start{name = "Entertainer"},/turf/simulated/floor/wood,/area/tether/surfacebase/entertainment) "bdr" = (/obj/machinery/atmospherics/unary/vent_scrubber/on,/turf/simulated/floor/grass,/area/hydroponics/cafegarden) "bds" = (/obj/machinery/alarm{pixel_y = 25},/obj/machinery/atmospherics/unary/vent_pump/on,/turf/simulated/floor/grass,/area/hydroponics/cafegarden) "bdt" = (/obj/machinery/atmospherics/unary/vent_scrubber/on,/turf/simulated/floor/wood,/area/tether/surfacebase/bar_backroom) @@ -2882,19 +2882,107 @@ "bdv" = (/obj/machinery/atmospherics/unary/vent_pump/on,/turf/simulated/floor/wood,/area/crew_quarters/bar) "bdw" = (/obj/machinery/atmospherics/unary/vent_scrubber/on,/turf/simulated/floor/wood,/area/crew_quarters/bar) "bdx" = (/obj/effect/floor_decal/corner/grey/diagonal,/obj/machinery/atmospherics/unary/vent_pump/on{dir = 8},/turf/simulated/floor/tiled/white,/area/crew_quarters/kitchen) -"bdy" = (/obj/machinery/hologram/holopad,/turf/simulated/floor/tiled,/area/hydroponics) -"bdz" = (/obj/machinery/atmospherics/unary/vent_pump/on{dir = 1},/turf/simulated/floor/tiled/eris/steel/bar_dance,/area/crew_quarters/barrestroom) -"bdA" = (/obj/machinery/power/apc{dir = 4; name = "east bump"; pixel_x = 28},/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 1},/turf/simulated/floor/tiled/eris/steel/bar_dance,/area/crew_quarters/barrestroom) +"bdy" = (/obj/machinery/light{dir = 8},/obj/effect/decal/cleanable/tomato_smudge,/turf/simulated/floor/lino,/area/tether/surfacebase/entertainment/stage) +"bdz" = (/obj/machinery/light/small{dir = 1},/obj/machinery/space_heater,/turf/simulated/floor/tiled/techmaint,/area/vacant/vacant_bar_upper) +"bdA" = (/obj/machinery/door/airlock/maintenance/common,/obj/machinery/door/firedoor/glass,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/tiled/techmaint,/area/vacant/vacant_bar_upper) "bdB" = (/obj/machinery/hologram/holopad,/turf/simulated/floor/tiled/eris/cafe,/area/hydroponics) "bdC" = (/obj/effect/floor_decal/corner/lime/border{dir = 4},/obj/machinery/hologram/holopad,/turf/simulated/floor/tiled,/area/hydroponics) "bdD" = (/obj/effect/floor_decal/corner/lightgrey{dir = 9},/obj/effect/floor_decal/corner/lightgrey{dir = 6},/obj/structure/extinguisher_cabinet{dir = 2; icon_state = "extinguisher_closed"; pixel_y = -32},/turf/simulated/floor/tiled,/area/tether/surfacebase/surface_three_hall) "bdE" = (/obj/effect/floor_decal/corner/grey/diagonal,/obj/machinery/hologram/holopad,/turf/simulated/floor/tiled/white,/area/crew_quarters/kitchen) -"bdF" = (/obj/machinery/hologram/holopad,/turf/simulated/floor/wood,/area/library) +"bdF" = (/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 1},/turf/simulated/floor/wood,/area/tether/surfacebase/entertainment) "bdG" = (/obj/machinery/hologram/holopad,/turf/simulated/floor/wood,/area/crew_quarters/bar) -"bdH" = (/obj/structure/bed/chair/wood{dir = 4},/obj/machinery/light,/obj/machinery/camera/network/outside{dir = 5; icon_state = "camera"},/turf/simulated/floor/wood,/area/library) +"bdH" = (/obj/machinery/firealarm{dir = 1; pixel_x = 0; pixel_y = -24},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/grass,/area/hydroponics) "bdI" = (/obj/machinery/camera/network/outside{dir = 5; icon_state = "camera"},/turf/simulated/floor/wood,/area/crew_quarters/bar) -"bdJ" = (/turf/simulated/floor/reinforced,/obj/structure/shuttle/engine/propulsion,/turf/simulated/shuttle/plating/carry,/area/shuttle/tether) -"bdK" = (/turf/simulated/floor/reinforced,/obj/machinery/atmospherics/unary/engine{dir = 1},/turf/simulated/shuttle/plating/carry,/area/shuttle/tourbus/engines) +"bdJ" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 9},/turf/simulated/floor/wood,/area/crew_quarters/bar) +"bdK" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 6},/turf/simulated/floor/tiled/eris/steel/bar_dance,/area/vacant/vacant_bar_upper) +"bdL" = (/obj/machinery/light/small{dir = 1},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled/eris/steel/bar_dance,/area/vacant/vacant_bar_upper) +"bdM" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/wood,/area/crew_quarters/bar) +"bdN" = (/obj/structure/bed/chair/comfy/beige,/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled/eris/steel/bar_dance,/area/vacant/vacant_bar_upper) +"bdO" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/wood,/area/crew_quarters/bar) +"bdP" = (/obj/item/device/radio/intercom{dir = 2; pixel_y = -24},/obj/structure/cable/green{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,/obj/machinery/atmospherics/pipe/manifold/hidden/supply,/turf/simulated/floor/wood,/area/crew_quarters/bar) +"bdQ" = (/obj/machinery/newscaster{pixel_y = -28},/obj/machinery/disposal,/obj/structure/disposalpipe/trunk{dir = 1},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/wood,/area/crew_quarters/bar) +"bdR" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 10; icon_state = "intact-scrubbers"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 10},/turf/simulated/floor/wood,/area/crew_quarters/bar) +"bdS" = (/obj/machinery/door/airlock{name = "Unisex Restrooms"},/obj/machinery/door/firedoor/glass,/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/white,/area/crew_quarters/barrestroom) +"bdT" = (/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/white,/area/crew_quarters/barrestroom) +"bdU" = (/obj/machinery/firealarm{dir = 2; layer = 3.3; pixel_x = 0; pixel_y = 26},/obj/machinery/atmospherics/unary/vent_pump/on,/turf/simulated/floor/tiled/white,/area/crew_quarters/barrestroom) +"bdV" = (/obj/machinery/atmospherics/unary/vent_scrubber/on,/turf/simulated/floor/tiled/white,/area/crew_quarters/barrestroom) +"bdW" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 9},/turf/simulated/floor/tiled/eris/steel/bar_dance,/area/vacant/vacant_bar_upper) +"bdX" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/tiled/eris/steel/bar_dance,/area/vacant/vacant_bar_upper) +"bdY" = (/obj/structure/cable/green{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 5; icon_state = "intact-scrubbers"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 5; icon_state = "intact-supply"},/turf/simulated/floor/tiled/white,/area/crew_quarters/barrestroom) +"bdZ" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled/white,/area/crew_quarters/barrestroom) +"bea" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 9},/turf/simulated/floor/tiled/white,/area/crew_quarters/barrestroom) +"beb" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 9},/turf/simulated/floor/tiled/white,/area/crew_quarters/barrestroom) +"bec" = (/obj/structure/bed/chair/comfy/beige{icon_state = "comfychair"; dir = 4},/turf/simulated/floor/tiled/eris/steel/bar_light,/area/vacant/vacant_bar_upper) +"bed" = (/obj/structure/table/gamblingtable,/turf/simulated/floor/tiled/eris/steel/bar_dance,/area/vacant/vacant_bar_upper) +"bee" = (/obj/structure/table/gamblingtable,/obj/item/weapon/storage/pill_bottle/dice,/turf/simulated/floor/tiled/eris/steel/bar_dance,/area/vacant/vacant_bar_upper) +"bef" = (/obj/structure/bed/chair/comfy/beige{icon_state = "comfychair"; dir = 8},/turf/simulated/floor/tiled/eris/steel/bar_light,/area/vacant/vacant_bar_upper) +"beg" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/tiled/eris/steel/bar_dance,/area/vacant/vacant_bar_upper) +"beh" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/door/airlock/maintenance/int{name = "Entertainment Backroom"; req_one_access = list(72)},/turf/simulated/floor/lino,/area/tether/surfacebase/entertainment/stage) +"bei" = (/obj/machinery/atmospherics/unary/vent_pump/on{dir = 1},/turf/simulated/floor/tiled/eris/steel/bar_dance,/area/vacant/vacant_bar_upper) +"bej" = (/obj/structure/bed/chair/comfy/beige{icon_state = "comfychair"; dir = 4},/turf/simulated/floor/tiled/eris/steel/bar_dance,/area/vacant/vacant_bar_upper) +"bek" = (/obj/structure/table/gamblingtable,/obj/item/weapon/storage/pill_bottle/dice_nerd,/turf/simulated/floor/tiled/eris/steel/bar_dance,/area/vacant/vacant_bar_upper) +"bel" = (/obj/structure/bed/chair/wood,/turf/simulated/floor/tiled/eris/steel/bar_dance,/area/vacant/vacant_bar_upper) +"bem" = (/obj/structure/table/gamblingtable,/obj/item/weapon/deck/cards,/turf/simulated/floor/tiled/eris/steel/bar_dance,/area/vacant/vacant_bar_upper) +"ben" = (/obj/structure/bed/chair/comfy/beige{icon_state = "comfychair"; dir = 8},/turf/simulated/floor/tiled/eris/steel/bar_dance,/area/vacant/vacant_bar_upper) +"beo" = (/obj/machinery/power/apc{dir = 4; name = "east bump"; pixel_x = 28},/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 1},/turf/simulated/floor/tiled/eris/steel/bar_dance,/area/vacant/vacant_bar_upper) +"bep" = (/turf/simulated/floor/tiled/eris/steel/bar_dance,/area/vacant/vacant_bar_upper) +"beq" = (/obj/machinery/door/firedoor/glass,/obj/effect/floor_decal/spline/plain{dir = 1},/obj/machinery/door/airlock/freezer{name = "Kitchen"; req_access = list(28)},/obj/effect/floor_decal/spline/plain{dir = 1},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/tiled/white,/area/crew_quarters/kitchen) +"ber" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/tiled/freezer,/area/crew_quarters/freezer) +"bes" = (/obj/effect/floor_decal/corner/grey/diagonal,/obj/machinery/button/remote/blast_door{id = "kitchen2"; name = "Kitchen shutters"; pixel_x = -24; pixel_y = 0},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 5; icon_state = "intact-scrubbers"},/turf/simulated/floor/tiled/white,/area/crew_quarters/kitchen) +"bet" = (/obj/effect/floor_decal/corner/grey/diagonal,/obj/machinery/alarm{pixel_y = 25},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 8},/turf/simulated/floor/tiled/white,/area/crew_quarters/kitchen) +"beu" = (/obj/effect/floor_decal/corner/grey/diagonal,/obj/structure/cable/green{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 8},/turf/simulated/floor/tiled/white,/area/crew_quarters/kitchen) +"bev" = (/obj/effect/floor_decal/corner/grey/diagonal,/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/cable/green{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 8},/turf/simulated/floor/tiled/white,/area/crew_quarters/kitchen) +"bew" = (/obj/effect/floor_decal/corner/grey/diagonal,/obj/machinery/power/apc{dir = 1; name = "north bump"; pixel_x = 0; pixel_y = 24},/obj/structure/cable/green{icon_state = "0-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 8},/turf/simulated/floor/tiled/white,/area/crew_quarters/kitchen) +"bex" = (/obj/effect/floor_decal/corner/grey/diagonal,/obj/machinery/light{dir = 1},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 8},/turf/simulated/floor/tiled/white,/area/crew_quarters/kitchen) +"bey" = (/obj/effect/floor_decal/corner/grey/diagonal,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 8},/turf/simulated/floor/tiled/white,/area/crew_quarters/kitchen) +"bez" = (/obj/effect/floor_decal/corner/grey/diagonal,/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 8},/turf/simulated/floor/tiled/white,/area/crew_quarters/kitchen) +"beA" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 5; icon_state = "intact-supply"},/turf/simulated/floor/tiled/freezer,/area/crew_quarters/freezer) +"beB" = (/obj/machinery/chem_master/condimaster,/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 9},/turf/simulated/floor/tiled/freezer,/area/crew_quarters/freezer) +"beC" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/tiled/freezer,/area/crew_quarters/freezer) +"beD" = (/obj/machinery/door/firedoor/glass,/obj/machinery/door/airlock/silver,/turf/simulated/floor/tiled/steel_grid,/area/tether/surfacebase/entertainment) +"beE" = (/obj/effect/floor_decal/corner/grey/diagonal,/obj/machinery/light{dir = 8; icon_state = "tube1"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 5; icon_state = "intact-supply"},/turf/simulated/floor/tiled/white,/area/crew_quarters/kitchen) +"beF" = (/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) +"beG" = (/obj/effect/floor_decal/corner/grey/diagonal,/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/cable/green{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled/white,/area/crew_quarters/kitchen) +"beH" = (/obj/effect/floor_decal/corner/grey/diagonal,/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled/white,/area/crew_quarters/kitchen) +"beI" = (/obj/effect/floor_decal/corner/grey/diagonal,/obj/structure/cable/green{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled/white,/area/crew_quarters/kitchen) +"beJ" = (/obj/machinery/power/apc{cell_type = /obj/item/weapon/cell/super; dir = 8; name = "west bump"; pixel_x = -30},/obj/structure/cable/green{icon_state = "0-4"},/turf/simulated/floor/lino,/area/tether/surfacebase/entertainment/stage) +"beK" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/mob/living/simple_mob/animal/passive/chicken,/turf/simulated/floor/grass,/area/hydroponics/cafegarden) +"beL" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 9},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 5; icon_state = "intact-scrubbers"},/turf/simulated/floor/tiled/freezer,/area/crew_quarters/freezer) +"beM" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 10; icon_state = "intact-scrubbers"},/turf/simulated/floor/tiled/freezer,/area/crew_quarters/freezer) +"beN" = (/obj/structure/cable/green{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/mob/living/simple_mob/animal/goat{name = "Spike"},/turf/simulated/floor/tiled/freezer,/area/crew_quarters/freezer) +"beO" = (/obj/machinery/light,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 5; icon_state = "intact-scrubbers"},/turf/simulated/floor/tiled/freezer,/area/crew_quarters/freezer) +"beP" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 9},/turf/simulated/floor/tiled/freezer,/area/crew_quarters/freezer) +"beQ" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/cable/green{d1 = 1; d2 = 8; icon_state = "1-8"},/turf/simulated/floor/lino,/area/tether/surfacebase/entertainment/stage) +"beR" = (/obj/machinery/hologram/holopad,/turf/simulated/floor/wood,/area/tether/surfacebase/entertainment) +"beS" = (/obj/effect/floor_decal/spline/plain,/obj/machinery/light{dir = 8},/turf/simulated/floor/lino,/area/tether/surfacebase/entertainment/stage) +"beT" = (/obj/effect/floor_decal/spline/plain,/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/cable/green{icon_state = "2-4"},/turf/simulated/floor/lino,/area/tether/surfacebase/entertainment/stage) +"beU" = (/obj/effect/floor_decal/spline/plain{dir = 6},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/effect/landmark/start{name = "Mime"},/turf/simulated/floor/lino,/area/tether/surfacebase/entertainment/stage) +"beV" = (/obj/machinery/computer/guestpass{dir = 4; pixel_x = -28; pixel_y = 0},/turf/simulated/floor/wood,/area/tether/surfacebase/entertainment) +"beW" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/wood,/area/tether/surfacebase/entertainment) +"beX" = (/obj/structure/table/woodentable,/turf/simulated/floor/wood,/area/tether/surfacebase/entertainment) +"beY" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/mob/living/simple_mob/animal/passive/cow,/turf/simulated/floor/grass,/area/hydroponics/cafegarden) +"beZ" = (/obj/structure/flora/ausbushes/ppflowers,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 5; icon_state = "intact-scrubbers"},/turf/simulated/floor/grass,/area/hydroponics/cafegarden) +"bfa" = (/obj/structure/flora/ausbushes/ppflowers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 10; icon_state = "intact-scrubbers"},/turf/simulated/floor/grass,/area/hydroponics/cafegarden) +"bfb" = (/obj/machinery/door/airlock/freezer{name = "Service"; req_access = list(28)},/obj/machinery/door/firedoor/glass,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/tiled,/area/hydroponics/cafegarden) +"bfc" = (/obj/structure/table/woodentable,/obj/item/weapon/flame/candle,/turf/simulated/floor/wood,/area/tether/surfacebase/entertainment) +"bfd" = (/obj/structure/grille,/obj/machinery/door/firedoor,/obj/machinery/door/blast/regular/open{dir = 2; icon_state = "pdoor0"; id = "DRAMATIC"},/obj/structure/cable/green,/obj/structure/window/reinforced/polarized/full{id = "draama"; name = "Mystery Window"},/obj/structure/window/reinforced/polarized{dir = 4; icon_state = "rwindow"; id = "draama"; name = "Mystery Window"},/obj/machinery/door/blast/shutters{dir = 2; id = "Druma"; layer = 3.3; name = "Entertainment Shutters"},/turf/simulated/floor/plating,/area/tether/surfacebase/entertainment) +"bfe" = (/obj/structure/bed/chair/wood{dir = 4},/obj/machinery/light,/obj/machinery/camera/network/outside{dir = 5; icon_state = "camera"},/obj/machinery/firealarm{dir = 8; pixel_x = -24; pixel_y = 0},/turf/simulated/floor/wood,/area/tether/surfacebase/entertainment) +"bff" = (/obj/structure/bed/chair/wood{dir = 1},/obj/machinery/light,/turf/simulated/floor/wood,/area/tether/surfacebase/entertainment) +"bfg" = (/obj/structure/sign/directions/medical{dir = 4; pixel_y = 8},/obj/structure/sign/directions/science{dir = 8; pixel_y = 3},/obj/structure/sign/directions/security{dir = 8; pixel_y = -4},/obj/structure/sign/directions/engineering{dir = 8; pixel_y = -10},/turf/simulated/wall,/area/tether/surfacebase/entertainment) +"bfh" = (/obj/structure/grille,/obj/machinery/door/firedoor,/obj/structure/window/reinforced/polarized/full{id = "draama"; name = "Mystery Window"},/obj/structure/window/reinforced/polarized{id = "draama"; name = "Mystery Window"},/obj/machinery/door/blast/shutters{dir = 2; id = "Druma"; layer = 3.3; name = "Entertainment Shutters"},/obj/machinery/door/blast/regular/open{dir = 4; icon_state = "pdoor0"; id = "DRAMATIC"; name = "Dramatic Blast Door"},/obj/structure/cable/green{icon_state = "0-4"},/obj/structure/cable/green{d1 = 1; d2 = 4; icon_state = "1-4"},/turf/simulated/floor/plating,/area/tether/surfacebase/entertainment) +"bfi" = (/obj/structure/grille,/obj/machinery/door/firedoor,/obj/structure/cable/green{icon_state = "0-4"},/obj/structure/cable/green{icon_state = "0-8"},/obj/machinery/door/blast/regular/open{dir = 4; icon_state = "pdoor0"; id = "DRAMATIC"; name = "Dramatic Blast Door"},/obj/structure/window/reinforced/polarized/full{id = "draama"; name = "Mystery Window"},/obj/structure/window/reinforced/polarized{id = "draama"; name = "Mystery Window"},/obj/machinery/door/blast/shutters{dir = 2; id = "Druma"; layer = 3.3; name = "Entertainment Shutters"},/turf/simulated/floor/plating,/area/tether/surfacebase/entertainment) +"bfj" = (/obj/structure/grille,/obj/machinery/door/firedoor,/obj/structure/cable/green{icon_state = "0-8"},/obj/machinery/door/blast/regular/open{dir = 4; icon_state = "pdoor0"; id = "DRAMATIC"; name = "Dramatic Blast Door"},/obj/structure/window/reinforced/polarized/full{id = "draama"; name = "Mystery Window"},/obj/structure/window/reinforced/polarized{id = "draama"; name = "Mystery Window"},/obj/machinery/door/blast/shutters{dir = 2; id = "Druma"; layer = 3.3; name = "Entertainment Shutters"},/turf/simulated/floor/plating,/area/tether/surfacebase/entertainment) +"bfk" = (/obj/machinery/light/small,/turf/simulated/floor/tiled/eris/steel/bar_dance,/area/vacant/vacant_bar_upper) +"bfl" = (/obj/machinery/portable_atmospherics/hydroponics,/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/effect/floor_decal/corner/mauve/border{dir = 9},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled,/area/rnd/xenobiology/xenoflora) +"bfm" = (/obj/structure/bed/chair/comfy/beige{icon_state = "comfychair"; dir = 1},/turf/simulated/floor/tiled/eris/steel/bar_dance,/area/vacant/vacant_bar_upper) +"bfn" = (/obj/machinery/button/windowtint{id = "draama"; layer = 3.3; name = "Mystery Window Tint Control"; pixel_x = 3; pixel_y = -29},/obj/machinery/button/remote/blast_door{id = "DRAMATIC"; name = "Dramatic Blast Doors"; pixel_x = 24; pixel_y = -10},/obj/machinery/button/remote/blast_door{id = "Druma"; name = "Entertainment Shutter Control"; pixel_x = 24; pixel_y = 10},/obj/item/weapon/stool/padded,/obj/effect/landmark/start{name = "Entertainer"},/turf/simulated/floor/lino,/area/tether/surfacebase/entertainment/backstage) +"bfo" = (/obj/effect/floor_decal/spline/plain{dir = 4},/obj/effect/landmark/start{name = "Clown"},/turf/simulated/floor/lino,/area/tether/surfacebase/entertainment/stage) +"bfp" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/requests_console{pixel_x = 32; pixel_y = -32},/turf/simulated/floor/grass,/area/hydroponics) +"bfq" = (/obj/effect/floor_decal/spline/plain{dir = 4},/obj/structure/table/marble,/obj/item/weapon/reagent_containers/glass/rag,/obj/item/weapon/reagent_containers/food/drinks/flask/vacuumflask,/obj/item/weapon/book/manual/barman_recipes,/turf/simulated/floor/lino,/area/crew_quarters/bar) +"bfr" = (/turf/simulated/floor/reinforced,/obj/structure/shuttle/engine/propulsion,/turf/simulated/shuttle/plating/carry,/area/shuttle/tether) +"bfs" = (/turf/simulated/floor/reinforced,/obj/machinery/atmospherics/unary/engine{dir = 1},/turf/simulated/shuttle/plating/carry,/area/shuttle/tourbus/engines) +"bft" = (/obj/machinery/light,/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/grass,/area/hydroponics) +"bfu" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/cable/green{d1 = 2; d2 = 8; icon_state = "2-8"},/turf/simulated/floor/grass,/area/hydroponics) "bhu" = (/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/corner/lightgrey/border,/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 1},/obj/machinery/atmospherics/unary/vent_pump/on{dir = 1},/turf/simulated/floor/tiled,/area/tether/surfacebase/surface_three_hall) "bkN" = (/obj/structure/grille,/obj/structure/window/reinforced/full,/obj/structure/window/reinforced{dir = 8},/obj/machinery/door/blast/regular{density = 0; dir = 1; icon_state = "pdoor0"; id = "shuttle blast"; name = "Shuttle Blast Doors"; opacity = 0},/obj/machinery/door/firedoor/glass,/turf/simulated/floor/plating/eris/under,/area/shuttle/tourbus/general) "bqs" = (/obj/structure/disposalpipe/segment,/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 1},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/tiled,/area/tether/surfacebase/surface_three_hall) @@ -3177,81 +3265,81 @@ aaaaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaa aaaaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaaqaacaRJaaqaaqaaqaaqaaqaaqaaqaaqaaqaacaacaacaaqaaqaaqaaqaacaacaacaacaacaacaacaacaagaataaoaapaaraagaagaagaagaagaagaagaagaaqaacaacaacaacaacaacaacaaqaaqaaqaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaaa aaaaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacadTaaiaaiadTaaiaaiadTaacaacaaqaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaagaatabhaaZaasaaDaaLaagagZacdaceaSoaagaacaacaacaacaacaacaacaacaacaaqaaqaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaaa aaaaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacadTaaeaakaalaamaajadTaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaagaagaagaVvaSbaSkasAaRKaSmaSnaUjabnaagaacaacaacaacaacaacaacaacaacaacaacaOmaOmaOmaOmaOmaOmaOmaOmaOmaOmaOmaOmaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaaa -aaaaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaauaavaawaaxaayaaGadTaanaanaafaafaanaanaafaacaacaacaacaacaacaacaaEaaEaaFaaFaaFaaFaaEaagaaUaadadwaaZaaZaSGaazaazaazaazaazaagaacaacaacaacaacaacaacaacaacaacaacadGadGaAHaAHaAHaAHaAHaAHaAHaAHaAHaAHaAIaeEaeEaeEaeEaeEaeFaabaabaabaabaabaabaabaabaabaaa -aaaaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacadTaaMaaNaaOaaPabjadTaaVaaWaaXaILaaYabiadOadOadOadOadOadOadOaaEaaEabkablabmakyaboabxaagaeHaaZaaZaaZaaZaSKabdabpabrabsacaaacaacaacaacaacaacaacaacaacaacaAJaAJaAJaAJacfacfacfacfacfacfacfacfacfaAHaAIaeEaeEaeEaeEaeEaeFaabaabaabaabaabaabaabaabaabaaa -aaaaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaauaamabDabEaamabFadTabGabHaaXaaXaWPabJadOabKacFabLabMabNadOabOaaEabPabQabRabSabSabTaagabwaaAaaBaaCagoaUhfXvacRaduadvacaaacaacaacaacaacaacaacaacaacaacaAJaAKaAKatjacVaeUacVacVacVacVacVacVacfaAHaAIaeEaeEaeEaeEaeEaeFaabaabaabaabaabaabaabaabaabaaa -aaaaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaacaacaacaacaacaacaacaacaacaacaacaacaacarWaCYaCYaCYarWaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacadTabUabVabWacqabXadTacpabYabZacoabIacradOacsacGactactacxadOacuaaEacvacwabRacyaaEaaEaagaaHaaIaaJaaKaQFaRGaedaedaedaedaedaacaacaacaacaacaacaacaacaacaacaAJaGGaAKbdaaCaaeWacVacVacVacVacVacVacfaAHaAQaARaeEaeEaeEaeEaeFaabaabaabaabaabaabaabaabaabaaa -aaaaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaacaacaacaacaacaacaacaacaacaacaacaacaacaacaCZarWaDaaDeaDaarWaDbaacaacaacaacaacaacaacaacaacaacaQWaacaacaacaacaacaacaacaauaczacAacBacCacDacEacHacIacJacKacLaddadeadmaWYadfactaeCadOabSaaEabSacMadaadbaagadcaaQaaRaaSaaTaaTaRNafxafyafAafDafEagiaacaacaacaacaacaacaacaacaacaacaAJaAKaAKaAKacVaeUacVacVacVacVacVacVacfahzahzahzaAQaeEaeEaeEaeFaabaabaabaabaabaabaabaabaabaaa -aaaaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaacaacaacaacaacaacaacaacaacaacaacaacaacaCZaDcaDdaDeaDeaDeaDdaDcaDbaacaacaacaacaacaacaacaacaacaTVaTVaTVaTVaTVaTVaTVaacadTabCadhadiadpadqadTadoadjadkadlaWZadnadOadradNadUactaXbadOadsaaEadtadLabSadVaagadMaaZabaaaIabbabcaSpaSqahOaihaDpaGmagiaacabeabfabfabeabfabfabeabfabfafJaAJaAJaAJackacfacfacfacfacfacfacfacfacfacfahzahzaAIaeEaeEaeFaabaabaabaabaabaabaabaabaabaaa -aaaaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaacaacaacaacaacaacaacaacaacaacaacaCZaDcaDfaDfaDjaDnaDhaDfaDfaDcaDbaacaacaacaacaacaacaacaacaTVaTWaTWaTWaTWaTWaTYadWafcafcafcafcafcafcafcaafaafadQadRadSadQadOaIFadYaebactadXadOaaEaaEaaEadZaaEaaEaagaeaaaZabqaaSaSMaSNaSOaSPaSPaSPaSPaSPaSPaacabeabtabuabeabtabuabeabtabuafJaAKaAKatjacVacfamVafXanPaoeagBagFagBahsacfahzahzaAQaeEaeEaeFaabaabaabaabaabaabaabaabaabaaa -aaaaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaacaacaacaacaacaacaacaacaacaacarWarWaiqaDeaDjajtajuakmaDmaDnacmarWaCYaCYarWaacaacaTVaTVaTVaTVaTWaTWaTWaTWaTWaTYaeqaeraesaetaeuadgcVgafcaevaewaexaeyaezagdadOactactactactafladOaepaaEaeDmzzdYXehNafaafbaSRacbaccaSSaSTaSUaSVaSZaTbmHOaTdaSPaTgabeacgachabeacSachabeacTachafJacnacZaAKacVafSadKafYafZafqajcajcajcajdacfamuamSahzaAIaeEaabaabaabaabaabaabaabaabaabaabaaa -aaaaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaacaacaacaacaacaacaacaacaacaacaDqaDasXaaDjajtaDgaDiaDkaDlaDgaDvaDwaDxaDyaDzaacaacaTVaTZaTZaTVaTWaTWaTWaTWaTWaTYafnafotYExaUpJLlsybzKafUafsaftafuafvafwaeBadOaeIafVagbagcaeIadOafmaaEafWhLdorcuOcaagagaaTjacNacOacPacQaTlaTmaTnaToaTpaTqaSPaTsabeacUabeabeaTOabeabeaTPabeafJagsaitaGGacVafSamWaibaiXaiZajFajFajFajGacfarPatzahzaAIaeEaabaabaabaabaabaabaabaabaabaabaaa -aaaaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaacaacaacaacaacaacaacaacaacaacaDqaDaaDeaDraDuaDBaDsaDsaDtaDuaDgaDgaDEaDFaDzaacaacaTVaTZaTZaTVaTWaTWaTWaTWaTWaTYadxageagOageageageaWWafcagfaggaghaXcagHaHHahxahxahxahxahxahxahxahxahxagJagKagLagMaagaecabvaUAazuadyadzadAaSPaUvaUDaUEaIRaSPaUGaUHaegadBaciaegadDadEaegadFafJatSajebdbaisajvajwajxajCajDalMalMamtavBacfarPaCfahzaAIaeEaabaabaabaabaabaabaabaabaabaabaaa -aaaaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabadGadGadHadIadJaacaacaacaacaacaDqaDaaDeaDraDuaDGaDsaDsrEZaDDaDJaDJaDKaDHaDzaacaacaTVaTZaTZaTVaTWaTWaTWaTWaTWaTYagQagRagSahvahvahvaeJafcagTaggagUagVagWahuahyahZahAaefagPahFahVahXahxahDahEaaEaaEaagaagaagagnagnaeeaUIaagaSPaUJaUKaULaeAaSPaUNabeaejaTLaehaTMaehaeiaTNaekafJajVajUaAKaonafSajYakoakWakXalralraENaITaJqaLIaLJaPFaAIaeEaabaabaabaabaabaabaabaabaabaabaaa -aaaaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabadGadGaelaemaenaacaacaacaacaacaDqaDLaDeaDAaDRaDgaUwaUzdgAaDgaUCaUFaUMaUOaDzaacaacaTVaTWxHgaTVaTWaTWaTWaTWaTWaTYafcafcahwahwahwahwahwafcahGahHadPahIagHahJahxaiaaiTaiWahCaiQaiRaiSahxaicaidaieaifaeGafFahWahYaiBaeLaeMaeNaSPaUPaUQaURaUSaSPaUGabeaeOaePaeQaeRaeSaeTadCaeVafJamXajWaAKaonafSamZandanlannanCanDanEanOacfahzahzahzaAIaeEaabaabaabaabaabaabaabaabaabaabaaa -aaaaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabadGadGaeXaabaeYaacaacaacaacaacarWarWaiFaDeaDAaDRaVbhxccwIaDNaDOarWaDPaDParWaacaacaTVaTWaTWaTWaTWaTWaTWaTWaTWaTWaTWagwaiLaiLaiLaiLaiLadPaiMaiNaiOagGagHaiPahxakzaiUakBaeKajSakwahxajTajTaiYbxHsWsaeGajaaigafzaUVafBagYaUWaUXaUYaUZaVaaJlaSPaVcabeafGafHafGabeabeabeabeabeafJaAJaAJaAJarxafSafSafSafSafSacfacfacfacfacfarLauRaAHaAIaeEaabaabaabaabaabaabaabaabaabaabaaa -aaaaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabadGadGaeXaabaeYaacaacaacaacaacaacaDQaDcaDfaDfaVriiverSaDfaDfaDcaDSaacaacaacaacaacaTVaTWaTWaTWaTWaTWaTWaTWaTWaTWaTWagwaiLaiLaiLajzaiLadPafRajJajLajNajOajPahxakAahxaHSakFaQXahxahxaWXaSLaTrvQPhYKaeGaTKagjagkaglagmafCaVeaVfaVgaVhaViaVjaSPaUGagwagpagqagramUaojaojaojaooaAJaoKaoOaoRapdapGapGapGbdcaqnapHaqXapHapHaqnarHaAhaAHaAIaeEaabaabaabaabaabaabaabaabaabaabaaa -aaaaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabadGadGagtaguagvaacaacaacaacaacaacaacaDQaDcaDTaDetqYaDeaDTaDcaDSaacaacagwagwagwagwagwaTWaTWaTWaTWaTWacWaTWaTWaTWaTWagwaiLajzaiLaiLaiLadPaiMaTXadPaUiajQaUxawIfrqeAMxAVpzHoCwxyKakeaVDajTaaEaaEtrAaeGaVFagXagXagXaVkagYaVlaVmaSPaSPaSPaSPaSPaUGagwahaaXKaXMarIaXTaXTaXTaFZaXUaGhaXTaXTaXVbcebcebcgaIjaIkaIkaRmaRXaShaAKaSlaFBadGaNMaabaabaabaabaabaabaabaabaabaabaabaaa -aaaaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaacaacaacaacaacaacaacaacaacaacaacaacaacaDQarWaVxtqYaDearWaDzaacaacaacagwahdagwabzagwaTWaTWaTWaTWaTWacXaTWaTWaTWaTWagwaiLaiLaiLaiLaiLadPaVHaVIaVJaItaVLaVMaVNjDCoRGsaKgRXmRsaVTaVUaXaajTahdaaEaUsaeGaVWaVnahKahLahMahNaVoaeGahdagwaVqauSagwaVsagwahPahQahcaXSaYNaYNaYNbchaAJbcibcjbcBbddbcDaclaYCbcEaAKaAKaAKaAKbcFaAKbcGaFBadGaNMaabaabaabaabaabaabaabaabaabaabaabaaa -aaaaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaacaacaacaacaacaacaacaacaacaacaacaacaacaacarWaDchaSaDcarWagwagwagwagwagwahSagwabBagwagwagwagwagwagwaUaaUbagwagwagwagwagwaVXaVXaVXagwadPaVYaVZaWaadPadPadPaWbajTajTajTajTaWcaWdajTajTaWeahSaaEaUtaWgaWhaeGaUUaUUaVtaiiaijaeGahSagwaVuaVuagwagwagwailaimainaioaioaioaioaioaioaioaioaioabybcHaclaYCbcIbcJbcJbcJbcJbcKaAKbcLaFBadGaNMaabaabaabaabaabaabaabaabaabaabaabaaa -aaaaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaacaacaacaacaacaacaacaacaacaacaacaacaacaacaVzaipxpJaVAaVEairairairaVGaircpdairjJdxkxabAairairairagIaUcairkuQfRHkuQmjsoAuaixaixaixaOaaWmaWnaWnaWnaWoaWpaWqaWnaWnaWsaWtaWuaWvaiVaWwaWnaWnaWxaWzaWAaWBqIbqIbqIbxIOajfaiVajgajhajiaWiaixaixaixaixajjajkahbaDVaioajlajmajnajoajpajqajrajsabybcMaclaYCaclaGGaAKbdaaAKaAKaAKbcNaFBadGaNMaabaabaabaabaabaabaabaabaabaabaabaaa -aaaaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaacaacaacaacaacaacaacaacaacaacaacaacaacaacaVzaVKorPsDGaWFaWFaWFaWFaWFaWFaWFaWFoELvunaDWajAaDWaUdaUeaUfaWFaWFaWFaWFaWFaWHajMaWFaWFaWFaWGaWFaWFaWFaWFajMajMajMajMajMaWHaWIaWJaWKajRajRajRajRajRaWLajRmFqavGavGislavGjriavGavGavGavGavGavGgTNakaakbakaakcakdaioaofakfakgakfakfakhakiakjabybcHaclaYCaclaAKaHwaAKaAKaAKaAKbcOaFBadGaNMaabaabaabaabaabaabaabaabaabaabaabaaa -aaaaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaacaacaacaacaacaacaacaacaacaacaacaacaacaacaVzaklaVQaknaknaknaknaknaknaknaknaknaknbhuaknakpakqakraiJakxakuakvaWNaNEakxaWUakxakxakxaWOaWSaWTaWTaWTaWTakvakxaNEakxakxaWUakCakDakEaWVaknaknaknaknaNpaknbazaknaknbhuaknaknaknaknaknaknaknakGakHakIakJakKakLagNaioakNakfakOakPakPakPakQakRabybcPaclaYCaGeaJuartaJubcQbcRbcRbcSaFBadGaNMaabaabaabaabaabaabaabaabaabaabaabaaa -aaaaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaacaacaacaacaacaacaacaacaacaacaacaacaacaacagwalPalPalPalPalPakSakSakSakSakSakSakSakSakTakTakUakVakTakTakSakSakYakYakZakZakZakZakZakYakYalaalaalaalbalcalcalcalcaldalealfalgalhalialjaljaljaljaljaYOaYVaYOaYOaloalkbbqalkalkalkbbqalkahaakHaMXaloalpalqaoNaioalsakfakfakfakfaltalualvabybdeaclbcTbcUbcVbcWbcVbcXaBzaphaphapPaGIaGJaOmaOmaOmaabaabbdfbdgbdhaabaabaabaaa -aaaaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacalwalxalyahqalAalBalCalDalEalEalFalGalEacYaMSalJakYalKalLalLamwalNalNalOakYagwalPalPagwalcalQalRalSalTalUalValWalhalialjallaqcawialjaZiaEjaEvaZsaloaZtaZubbsalkbbtaZubbsahaakHamaambamcalqamdaioameamfamgahtamiamjamkamlabybcYbcCbcZaBAaphaphaphaphaFRaGIaGIaGIaGIaGIadGadGadGaNMaabaabaabaabaabaabaabaaa -aaaaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacalwammamnamoampampampamqamramramramssSKueUjBBjBBfxhoSvgiRgiRtxoamwamwamxakYamyamyamyamyamzamAamBamCamDamEamFamGamHalialjawjawkawlaljawnawnawnaTtalovtNbbuaNobdDalkbbualkahaakHamIaioaioamJaioaioaioamKaioaioaioamKamLamKaioabyaGcaDIaGbaSxaqmaqmaopaqlaphaphaphaphaphaphaoDadGaNMaabaabaabaabaabaabaabaaa -aaaaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacalwamMamNamOamPamPamQamQamQamQamQamRamNargamvamvlqXaDZamwamwpeSyetyetanaanbamyamyamyamyalcalcancalcaQdaneanfahBanhalialjaljaxfaljaljatIaOUaJiaEbayxayxayxayxayxayxaouaAnahaxEBdmHankrXWjCneHkaioanoanpanqanraioansantanuajsaokashaopaopaopaopaopaopasiaplapFapFapFapFaraaFBadGaNMaabaabaabaabaabaabaabaaa -aaaaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacakSanvamNanwanxanxanyanyanyanyanyanzamNargamvanBqqVaDZamwamwweKolGolGanFanbamyamyanGamyalcanHanIanJaneanealcanKanhalialjaZkaZlaZmaljaYPaYQaYRaSEayxaZnaZoaZpaZqayxayxayxaksvJApleaiolXvqQZioGanQanRanSanTanUanVanUanWanXanYaokaopaUraVyaVyaVyaVyaVyarqaXiaoPaoParrarraroasEadGaNWaabaabaabaabaabaabaabaaa -aaaaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacakSanZamNanwanxanxanyanyanyanyanyanzamNargamvaoaakYaobamwamwaodamwamwaiIakYamyamyamyamyalcaogaohalcaneanealcaoianhalialjaZwaZxalmaljaYTaYUaYRaYSayxaYqaYWaZBaZCaTyaZEaZFapSvJAaliaoEaolaolaomaolaokapaaokaokaokaokaokaokaokaokaSyaWMaopaopaopaopaopasiarsarOarOaTcarTasnasEadGadGaNMaabaabaabaabaabaabaaa -aaaaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacakSaoqamNanwanxanxaoralEaosanyanyanzamNargamvaotakYaKvaovaowaoxamwamwaVSakYamyamyamyamyalcaoAaoBalcaneanealcaoCanhalialjatuaZLavlaljaYTaYUaYXaYhayxaZNaZbaZPaZCaTzaZRaqdaqQvJAaliaoFalYalZaXZaYaawParNasKasiaSxaopaopaoMbdiaopaopaWMaopaopaopaopaTwapjapkapkapkapkapkapkarYaoDadGaNMaabaabaabaabaabaabaaa -aaaaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacalwamMamNanwanxanxaoSaoTaoUanyanyanzamNargamvgLgakYakYakYakYaoVakZakZakYakYaikaikaoXaoXalcalcalcalcalcalcalcaoYaoZaOTaljaljaZWaljaljaljaljaYZaYSayxaPaaZzaZBaZCaTzaZRaqdcFAxmKbEdaoFalYalZaYdaYeawPaqoasPasiaopaqpaopaqpaopaopaopaWMaqqaqVaqqaopaopasEatmauiauLauMasmapFauNaFBadGaNMaabaabaabaabaabaabaaa -aaaaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacalwapmapnanwanxanxanxanxanxanyanyanzamNargamvamvakTapoairappapqapraixaixapsaptapuaoXapvapwapxapyagwapzaivagwapBanhalialjbafbagavRbaibajaZGaYRaYYaZvaZYaTUaZCaZCaTzaZRaqdaqRxUoapCagwagwapcaYkaYlawPateauOasiaopaopaopaopbdjaopbdkaWMaBGaDYaEhaopaopaEkarbaoPaoPaoPaoPaoPauPaFBadGaNMaabaabaabaabaabaabaaa -aaaaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacalwamMapIanwanxanxanxanxanxanyanyanzapJaeoapLapMapNapOajRajRaiCapQapQapQapRapSapTaoXapUapVapVapWagwafkafNagxagzaqbbaQaljbarbasbataZxbauaZHaYRaZaayxbavbaaaZCaVVaTzaZRaqdaZSbqsaqfaqgaqhaqiaqjaqkawPateauQasiaopaqpaopaqpaopaopaopaWMaEmaEnaEZaopaopasEarbbdyaGdauTaoPaoPauPaFBadGaNMaabaabaabaabaabaabaaa -aaaaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacakSaqrapIaqsaqtaqtaqtaqtaqtaquaquaqvapIargarhaiKakTaqBakxaiDavjaiGaqEasSaqGaqHaqIaqJaqKaqLaqLaqMagwaqNaqOagwagAalhbaJaljaPiaZUbaGbaKbaMaZHaYRaZcayxbaNbalbaUbaVaTzaZRaqdaZZxUoaOTaqTagwapcaoHapgawPateawRasiaopaopaopaUraVyaVyaVyaXjaqeaqeaqearKasoasJasQatKaAPaBdaoPaoPasCaFBadGaNMaabaabaabaabaabaabaaa -aaaaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacakSarcardarearearearearearearearearearfargarhariakSafjafjafjaiHafjafjahaakEapSarkaoXapvarlarmapyagwagwagwagwajbalhbaJaljawzaZVbbaaZxbbbaZHaZeajBayxbbcbambanbaoalnbbibbjanLxUoaqUapcapcapcarpapcawPateasPasjaBpaopaopaXvaVyaWEaopbdlaTEaopaopatRaopasEbdmaupafIaoPaoPaAKavbaFBadGaNMaabaabaabaabaabaabaaa -aaaaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacakSarvarwarwaMIarwarwarwarwarwaryarwarzarAarBarCakSaMwajKrAeopEaqDafjahaakEapSahcaoXaoXaoXaoXaoXaoXarEarFagwagEalhbaJaljbabaXWaYnaZjaZraYcaYRaPeayxbbpbbwbbxbapayxayxayxaxbxUoapSaBDaTFaspatRasqasZateasPavgaGHaopaopaWMaFEawPawPawPawPawPawPaveawPawPawPawPaBCaWCaFGaqWaCgaFBadGaNMaabaabaabaabaabaabaaa -aaaaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacarUarVakSakSakSarVarVarVakSakSakSarVarVarVakSakSakSarDavFslaxvNawoafjaObakEapSwPDaixjujuFIaixaOaascaixaixajjahealhbaJaljbbCbbDasTasTaBoasTaEaaZhasTasTaEcasTasTaloaqOaloviFatcavPaLhaVwaVyavqaVBaVCaVOaVPaVRaWkaVyaVyaXgaVyaWlaLeaZdaLeaLeaLeawQaZgarQarRaruaLfaLfaCoaqWaCgaFBadGaNMaabaabaabaabaabaabaaa -aaaaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacafjafQafjafPafjafOafjassastajRavGavGavGislavGajRajRajRajRasyahlaszbaJaljbbEbbHasTaEeaEgbacbadaZAajHaTCaYmaXXasTaqOaqOalovKmafTapSaBDaqoaqoaxnaqoaqoateasPaCjaClaopaopaopaTwawParXarXaJJaJJaJJaxraygayKaCEbdnaLEaLfaCpaCqaCDaFBadGaNMaabaabaabaabaabaabaaa -aaaaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacafjawLafjawMafjawMafjasRaozapXapXapXapXkeXapXapXapXapYapXapZaqaalhaxKasTasTasTasTaXYaYbaYbaYbaZOaYfaYgbakaYiasTasTasTasTnlfxUoapSaBDateateaCIbdBateateasPaCRbdCaopaopaopbdoaoJaoJaoJaskaoJaoJaoJaWDaLKaEMaJJaLFaLfaFHaFHaFHaqZadGaNMaabaabaabaabaabaabaaa -aaaaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacafjafjafjafjafjafjafjagwaqPalPagwalPalPagwalPalPagwagwagwagwahaalhaEoaTuaPkaYbaYjaYbaYbaYbaYbaYobaebaeaZIaYpaYraYpaPpaUywXrfOjapSaBDayGayIaEYateayLayLaZyaFlaFzaopaFSaFIaFKaoJasrasuasvanmasxaoJaBZaTGaEMaJJaZDaLfadGadGadGadGadGaNMaabaabaabaabaabaabaaa -aaaaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacafiarnarnarnarnarnaseaacaacaacaacaacaacaacaacatsatsatsattalhbaHasTasTasTasTaYsaYpaYpaYtaYuaYvaYbaYbaYwasTasTasTasTvvAahRajXaFbaHnasoaJVateaBEaBFawPawPasFasGawPawPawPaoJasHasvasvanMasIaoJaLCaTHaEMaJJaLDaLfadGarZaNCaNCaNCaabaabaabaabaabaabaabaaa -aaaaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacafMaEiaXGaEiafhafhatGatGatGatGatGatGatsaacaacaacaacatsatHatsaObalhbaLalXalYalYasTaYxaYyaYzaYAaYIaYBaTvaYyaYDasTalYalYalZmyZarGauhaCiaCkaruaKcasDaruaruaruanianNbaqaswasLasMasNasOathatnatvasIaoJaLHaTIaEMbdpaLEaLfadGaNMaabaabaabaabaabaabaabaabaabaabaaa -aaaaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacafMaXHaXIaXJaXLafLaudaudaudaudaudaudatsatsaueaueatsatsaufatsahaalhbaLalXalYalYasTaYEaYFaYGaYHaPCaYJaYKaYLaYMasTalYalYalZmyZakHauhaCiaCCataaKlaKmaKtaZJanjanjaKuanjbcfanjaKpasUasvasVasWasvasYaoJaUBaUTaEMaJJaZMaLfadGaNMaabaabaabaabaabaabaabaabaabaabaaa -aaaaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaacaacaacaacaacaacaacaacaacaSuaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacafMaxhayiafhafhagyaudauxauxauxauxaudaJraPDauAakkauBauCauDauEauFauGbaLauHauIauIasTaXxaXBaXBaXBaXDaXBaXBaXBaXEasTauIauIauJmyZakHauKaCiaZQanjanjatwbaqbaqbaqbaqbcsanjbdxanjaZTatbatbatbatbatbatbatbaUBaUTaEMbdqaLGaLfadGaNMaabaabaabaabaabaabaabaabaabaabaaa -aaaaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacafMaXNaXOaXLaXPagCaudauxauxauxauxauxauZavaavCavCavCavCavCqvpnbMkjnbbybbAbbAbbAbbFbbFbbFbbFbbFbbFbbFbbFbbFbbFbbFbbAbbAbbAdsFakHaOgaCKanjatMatdaLcatJatAanjbdEatfatgatPanjanjaJwbctbdrbdsatiatkatbaMgaVdaEMaJJaLDaLfadGaNMaabaabaabaabaabaabaabaabaabaabaaa -aaaaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacafMagDaXQafhafhahgaudauxauxauxauxauxauZawarMSsSWbSebSejFzxlWnflceNaEpafeajMajMajMajMajMajMaEqavGajRajRavHajRajRajRajRajRavGqZsavnatlanjatLanjatwbaqbaqbaqbaqbcwbcxbcybaqbaqbczbcAatxaeZatyatiatbaUnaTJaEMaJJaLEaLfadGaNMaabaabaabaabaabaabaabaabaabaabaaa -aaaaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacahhahjahjahjahhahjahjahjahhahkaXRahmahnahoaudauxauxauxauxavYavZcRihoQlpBaffaweawfawgakxakxafdafgaoGaoIapbapeapfapDapEaNEakxalzawpawqawqawqawrawqawShPFqWZatlaZXafpafraLgapiaqYatOanjaUqatQaujanjanjaJwatiaukaukatiaumatbaXhaTGaEMaJJbahaLfadGaNMaabaabaabaabaabaabaabaabaabaabaaa -aaaaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacahpahrahTahTahUaiuaiwaiyahhaizaiAajyajEajIaudaudaudaudaudaudawFawGaErawHazPazPazPazPazPaxiaxkaxSaxTaxkaxgaEAawJawNawuawJaxgaxgarSaunaunauoaxgaxgaxvxbmawUaruanjanjanjaKlbaqbaDbaEbaEbaEbaFbaEbaIbaOatbatbatbauUatbatbatbaTSaUgaEMaJJaLFaLfadGaNMaabaabaabaabaabaabaabaabaabaabaaa -aaaaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacahpapAatpatqatratBatCatDahhatEatFatEatTatTatTatTatTatTatTatTatUaxcaxdaxeazPaxUaxVaxWazPawdayyayzayAazhaxgahdawJavEavfazYaxgavIazpaFMazTaFOaxmavcaALaBBaCJavdawcawcawcawcawcaKxawcawvanjanjanjaKyaKuaruaJJaJJaJJaJJaJJbaPaKwaJJaEMaJJaLDaLfadGaNMaabaabaabaabaabaabaabaabaabaabaaa -aaaaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacahpatVatWaktatYauaaubalIauqahiawDawxatUaurausaqyauvauwanAamhaocaxRaErawHazPaziazjazmaTTazQazRazSazWwiXaxgaxgawJavraACaExaxgbaSaESbbrbbraEKaFgaGjaALayeaxwatlavhaviavkavmavoavoavparuanjanjatOaLbbaXbaYbaZbaZbaZbaZbaZbbdbbebbfbbgaruaLfaLfadGaNMaabaabaabaabaabaabaabaabaabaabaaa -aaaaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacahhahhahhahhahhahhahhahhahhawAaxIawBauYavtavuavvavwavxavQavXazkaAvaEraOqazPaAwaAyaCMazPaAzaAAayzaFrazTaHdazTawJaEBavfaADaxgaEFbbhaxsazTaFPaFPbcnaALayeaxwarJavyavzavzavzavzavzavAaruarManjanjbawavDaruaJJbaxaJJaruaruaruaruaruaruaLfadGadGadGaNMaabaMhaMhaabaabaabaabaabaabaabaaa -aaaaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacafKauuauuauuauuauuauVauWafKawWaxNaxDauYavSavTavUavVavWawyaymaGBaGCaErazgazPazPazPazPazPakMazVmXoaEJaBtaBvaCFawJawJaFkbbkaxgaFYbblazXazTazTaELaxgaGiayeaxwazvavLavMavMavMavMavMavNaruaruajZamYaruaJtaJtavOaJtaJtaJtadGadGadGadGadGadGadGarZaNCaabaabaMhaMhaabaabaabaabaabaabaabaaa -aaaaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaacaacaacaacaacaacaacaacaFfaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacafKauuauuauuauuauuauVawOafKaxGayOaxHawEawKawXawYawZavxasbatUatUpAhnLXazOaxgaCGaLPaCHaIEazTazTqfzaGxaEuaEzaECaEDawJaFkbbmaxgaxXbbnbbobbrbbvbbraBmaAdaBraAfarJaBxasXasXasXasXasXasXauyavJasBasBbayaJtawTawmawsawtaJtadGarZaNCaNCaNCaNCaNCaabaabaabaabaMhaMhaabaabaabaabaabaabaabaaa -aaaaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaacaacaacaacaacaacaacaFfaFhaFfaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacafKaxFauuaxOaxOaxOaykaylafKaHjayvayHazcazdaxjaxlaxzaxAaxaaytatUayYaEraAuaxgaEEazTazTaEPaEHaEIqfzaXoaEKaEOaXCaEQawJaHpbbzbbBbbIaDCbbJbbraFgbbrbcraByaBBaCJaCSaCTasXasXasXaLdaLdasXaETaIMaImaImaEWaJtaxobdtbduawwaJtadGaNMaabaabaabaabaabaabaabaabaabaMhaMhaabaabaabaabaabaabaabaaa -aaaaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaacaacaacaacaacaacaacaFfaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacafKayrayBayBayNayPayTazlazGaArazeawBauYaxCaxEaxJaxLaxMayjayVaynaBRaEraBkaxgaERaEUazTaEGaAAaEIcSlaFcaFdaFeaECaEEawJaHqaCWaxgaDMbblazXazTaFPazTaHAaCXaEdaxwavKaIlaIlaInasXaHeaHlasXaGkaIMaImaImaEXaJtaxqawmawmawVaJtadGaNMaabaabaabaabaabaabaabaabaabaMhaMhaabaabaabaabaabaabaabaaa -aaaaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaQWaacaacaacaacafKaBeaBgaBhaATaucayWaFiafKayuazJayQatUauYayoauYatUatUamhatUatUaBYauXaFjaxgaFnaBsaBsaBsaBsaBshENaFraFsaFsaCFaABaABaChaABaxgaHobblazXazTbdFaELaxgaGqaBBaCJaHraHsaHBaIgaIhaIiaIiaIhaIoaIJaIKaIPatoaJtaIQawmawmaxpaJtadGaNMaabaabaabaabaabaabaabaabaabaMhaMhaabaabaabaabaabaabaabaaa -aaaaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaacaacaacaacaacaacaacaacaacaacaacaacaacaacacjacjacjacjaiEaiEaiEaiEaiEaiEaiEaiEaoyafKafKaBjaBwafKafKafKafKaFmazeaAMaASaAWaysayXayZaBHaBSxdMazaazbazFawCaxgaFtaFuazTaFUazTaGwayzaFrazTaBqaSFaABaCLaCPaCQaxgaGabcubcvbbrbbvbbvaGjaGraIVaJcaCSbaAaJvaJKbdvbdGasXbdwaETaIMbbKbbLbbMbbNbbObbPbbPbbQaJtadGaNMaabaabaabaabaabaabaabaabaabaMhaMhaabaabaabaabaabaabaabaaa -aaaaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaacaacaacaacaacaacaacaacaacaacaacaacaacaacalHsLatZwaoWaqwaqAaqCaqFaqxasdasgarjamTaAmaAYaCsaCtkyCaBiaIqayRaCBaBXaySayUayUazyazAazAazzazBazCaAgazMazIeQNaxgaGYaHclxaaFUazTaHgayzaFraMkaxgaxgaABautaFxaznaxgaGgaFrazTazTaFDaBlbcnaALazFaCUavKaINaIHaKoasXaLdaLdasXaETaIMbbRaImatNaJtawmaxtaxuaxxaJtadGaNMaabaabaabaabaabaabaabaabaabaMhaMhaabaabaabaabaabaabaabaaa -aaaaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacalHaCcdVEaCmaFLaqzaBQaBNawbaBQazNaBPoblcGteJmmUEoUIjrnmXumXuttHqkfmelazfaCrazqazwaCNaCVaFTaHPaCVaWfaWjazFaXeaxgaXfaXfaEVaHcaHccAGeIsaFraXwaxgatHaABaFVaFWaFXaxgbdHazpaFMazTaFPaHxaxgaGtazFaGfarJaIOaIOaKqasXaHlaHeasXaETaIMbbSbaBarJaJtaxyaJtaJtaJtaJtadGaNMaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaaa -aaaaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacalHaCccWeawhaBKaFpaFJaCdangaGnaGpaFojAtcJLtRgtWnwrAfeukXolvHtxOdKjiXMazKazEaBnaCAaBnazEazEazEazEazEbbGlYTfgWaXkaxgaxgaxgaxgaxiaxkaxSaXlaxgaxgaGyaABaABaGzaABaxQaxgbcobcpbcpbcqaxgaxgaGugBGaIcarJbdIbbTbbUaxYbbWbbWbbVbbXbbYbbZbcaarJaxZaCnaGKaacaacadGadGaNMaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaaa -aaaaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaGLdrRhgfaGMaiEaGNaGPaiEaiEaiEaiEaGQazLazLazLaTelgoazLazLazLazLaGRaAoaApazEaGSaGTaAqaAUaAVaAXaAZaWraXdaGUaGWaGXaIGaGZaHaaHbaGXaXqaXraXsaXtaHhaUkaHiaHfaHkaJraHmaGvaGAaGAaGAaGAaGDaGEaGFazFaHtaHuasXbcbaKrbcbasXasXasXasXasXasXasXbaRaDXaGKaGKaacaacaNCaNCaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaaa -aaaaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaHEaCcaVpaNnaGOaacaacaacaacaacazLaoLaFNaBbaBcuaNlSvaFQaBIaoQazLaHIaBLapKazEaHJaHKatZaHLaBOaHNaHOaXmaHQaGVaHRaHRaHTaHRaHRaHRaHRaXnaXpaXuaIaaIaaIaaHVaHWaHXaHYaHZaIaaIbaIaaIaaIafyZsuTaHWgAFgVgsPdbbVbccaKsbcbaFaaHyaISbaCaIUbaTbaWarJaDXaGKaacaacaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaaa -aaaaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacacjaIpaVpaEwacjaacaacaacaacaacazLaBUaBWaBWaBWaBWkuUaBWaBWaCbazLaHjahfaCeaBnaIuaCzaIvaIwaCuaCvaCwazEaIxaAsaAsaqSaUlawfcmQawfawfaIyawfaIzaOJaIzaIzaIAaIzaIzaUmaICaIzaIDaIzaIBaIzaUmaICknUpgiaIIarJasXarJaGKbckaGKaGKaGKaGKaGKaGKaGKaGKaDXaGKaacaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaaa -aaaaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacacjaIWaVpaJBacjaacaacaacaacaacazLaCxaBWaCyaBWiQrkuUaJdaBWaSHaTeaThaJeaJfaJgaJhaSCaJjaJkasaazDazDazDaJmaJmaJmazDaJnaJnatsaJnaJnatsaJnaJnatsaJnaJnatsaJnaJnatsaJoaJnaJpatsatsatsaJnaJnaJnaUoaUparJaJsaGKayabclaycaydayfaybaydaHDaGKaElaDXaGKaacaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaaa -aaaaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaHEaCcaIYaNnaGOaacaacaacaacaacazLaJFaJGaJHaJIgtpmWXaJLaJGaJMazLaJNaJOaJPaBnaJQaJRatZaJSaJTazDaJUaslaJWaJXaJYazDaJZaKaaKbaKaaKaaKDaKaaKaiebaKaaKaaKbaKdbMKaKfaKgaKhaKiaKjaKkatsaANaANaANaKZaOQarJaKnaGKbcdbcmaybaybaybaybaybaHDaGKaDXaGKaGKaacaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaaa -aaaaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaacaacaacaacaacaacaacaacaacaacaacaacaacaacacjhJtaVpaNnacjaacaacaacaacaacazLaFwaKEaKFaKEaKGaKEaKHaKEaGlazLazoazoazoazEaKJaKKaKLaIvaKMaKNaKOaKPaKQaKRaKSazDaKTaKUaKUaKUaKUaKUaKUaKUaKUaKUaKUaKUwtdbMKaKfaKgaKWaKXaKjaKYatsaANaANaANaTQaTRarJarJaGKayhaGKayCaGKayDaGKaybaHDaGKaDXaGKaacaacaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaaa -aaaaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaacaacaacaacaacaacaacaacaacaacaacaacaacacjaBVaHFasfacjaacaacaacaacaacazLaLlaLlaLmaLlaLlaLlaLoaLlaLpazLaacaacaacazEaLqaLraLsaLtaLuaLvaLwaLxaLyaLyaLzazDaKTaKUaKUaKUaKUaKUaKUaKUaKUaKUaKUaKUwtdbMKaKjaLAaKfaLBaKjaKjatsaJnaJnaJnaJnaJnarJarJaGKayEaGKayFaGKayFaGKaybaHDaGKaDXaGKaacaacaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaaa -aaaaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaacaacaacaacaacaacaacaacaacaacaacaacaacaHEaCcaJCaNnaGOaacaacaacaacaacazLaLSaLTaLSaLTaLSaLTaLSaLTaLSazLaacaacaacazHaypaLUaLVaLWaLXaLYaLZaMaaKQaKRaKSazDaKTaKUaKUlCqjvKddnddnddnjvKxXfaKUaKUqemrxhaKgaKgaMbaMcaMdaMeaMfaKUaKUaKUaKUaKUaKUaKUaKjaGKaGKaGKaGKaGKaGKaGKaGKaGKaDXaGKaacaacaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaaa -aaaaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaacaacaacaacaacaacaacaacaacaacaacaacaacaGLaCcaLNaNnacjaacaacaacaacaacazLaLSaLSaLSaLSaLSaLSaLSaLSaLSazLaacaacaacazHayqaMraMsaMtaMuazDaMvaHGaMxaMyaMzazDaKTaKUaKUjvKjvKeCGpNkpwFjvKjvKaKUaKUaKVjZeaKeaKesFWaMBaMCaMDaKTaKUaMEaMFaMFaMFaMEaKUaKjaFqaFvaFyaFAaDXaDXaElaDXaHvaDXaGKaacaacaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaaa -aaaaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaacaacaacaacaacaacaacaacaacacjaIWaJxaulacjaacaacaacaacaacazLaMNaLTaLSaLTaLSaLTaLSaLTaMOazLaacaacaacazHaMPaMQaMRaBOatXazDazDazDazDazDazDazDaMTaKUaKUjvKkdxoLRvrUhlFivqjvKaKUaKUaKVuxTaKjaMVaMWaugaKjaMYaKTaKUaMEaMZaNaaNbaMEaKUaKjayJaHzaCnaCnaDXaGKaGKaGKaGKaGKaGKaacaacaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaaa -aaaaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaMGadGaHEaCcaVpaNnaGOaacaacaacaacaQUazLaLSaLSaLSaLSaLSaLSaLSaLSaLSazLaacaacaacazEaNeaNfatZaNgaNhazEaacaacaacaacaacaNiaKTaKUaKUjvKjvKjvKdJmjvKjvKjvKaKUaKUaKVjZeaKeaKesFWaKeaNjaKeaKTaKUaMEaNkaNlaNmaMEaKUaKjaHCayMaIdaIeaDXaDXaDXaIfaGKaacaacaacaacaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaaa -aaaaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaMGadGacjaMiaVpaMHacjadGadGadGadGadGazLaLSaNqaLSaNraLSaNraLSaNraLSazLaacaacaacazEaNsaNtaNuaNvaNwazEaacaacaacaacaacaNiaKTaKUaKUbkNcnNoPmkiwuhmrzVwyiaKUaKUaKVjZeaKgaKgghfaKgaNyaKeaKTaKUaNzuSAaNlaNlaMEaKIaKjaGKaGKaGKaGKaGKaGKazsaGKaGKaacaacaacaacaacaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaaa -aaaaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaMGadGacjaCcaVpaNcacjadGaNBaNCaNDadGazLaLSaLSaLSaLSaLSaLSaLSaLSaLSazLaacaacaacazEazEaNFaNFaNFazEazEaacaacaacaacaacaKjaKTaKUaKUjHwmDfkmKkcCgULfcgjHwaKUaKUaKVooMaNHaKgghfaKgaNIaNGaKTaKUaMEaNJaNKaNKaMEaKUaKjaztazxazZazZazZazxaztaGKaacaacaacaacaacaacaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaaa -aaaaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaMGadGaHEaCcaVpaNnaNLadGaNMaabaMGadGazLazLazLazLazLazLazLazLazLazLazLaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaKjaKTaKUaKUjMLeiOxOaeGvrbRtcWcawjYdjYdvoFuYOxZwxJygLdaKgaNOaNNaKTaKUaMEaNPaNPaNPaMEaKUaKjaztaAaaAbaAcaAbaAeaztaGKaacaacaacaacaacaacaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaaa -aaaaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaMGadGacjaxPaJEaNAacjadGaNMaabaMGadGazLazLazLazLazLazLazLazLazLazLazLaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaNiaKTaKUaKUjHwcnZdVWlFchCBiqbjHwaKUaKUaKVaKeaKgaKgaNxaKgaNyaKeaKTaKUaMEbdJbdJbdJaMEaKUaKjbdzaAiaAjaAlaAxaAEbdAaGKaacaacaacaacaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaaa -aaaaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaNUadGaNVaNSaODaOraNVadGaNWaabaMGadGazLazLazLazLazLazLazLazLazLazLazLaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaNiaKTaKUaKUjpBfYrkundGZwQffrugHhaKUaKUaKVaKeaNXaKeaMAaKeaKeaKeaKTaKUaNYaKUaKUaKUaKUaKUaKjaztaAaaAbaAbaAbaAeaztaGKaacaacaacaacaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaaa -aaaaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaMGadGadGaNZaEtaEyaEtaNZadGadGaNMaMGadGadGadGadGadGadGadGadGaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaKjaMTaKUaKUqWUqwmkBFsGVtLvqwmqWUaKUaKUaKVaMUaKjaOcaFCaOdaKjaMYaOeaKjaKjabgabgabgabgaKjaKjaztaAFaAGaAGaAGaAFaztaGKaacaacaacaacaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaaa -aaaaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaMGadGaOfaOfaGoaPjaGsaOfaOfadGaNMaabaOiaOiaOiaOiaOiaOiaOiaOiaabaabaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaKjaKTaKUaKUbdKqwmqomqomfNtqwmbdKaKUaKUaKVaKeaKeaKeaMAaKeaKeaKeaOeaKjaOjaOkaOkaOkaOkaOlaKjaGKaGKaGKaGKaGKaGKaGKaGKaacaacaacaacaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaaa +aaaaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaauaavaawaaxaayaaGadTaanaanaafaafaanaanaafaacaacaacaacaacaacaacaaEaaEaaFaaFaaFaaFaaEaagaaUaadadwaaZaaZaSGaazaazaazaazaazaagaacaacaacaacaacaacaacaacaacaacaacadGadGadGadGadGadGadGadGadGadGadGadGaNMaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaaa +aaaaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacadTaaMaaNaaOaaPabjadTaaVaaWaaXaILaaYabiadOadOadOadOadOadOadOaaEaaEabkablabmakyaboabxaagaeHaaZaaZaaZaaZaSKabdabpabrabsacaaacaacaacaacaacaacaacaacaacaacacfafSafSafSafSafSafSafSafSafSafSafSafSadGaNMaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaaa +aaaaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaauaamabDabEaamabFadTabGabHaaXaaXaWPabJadOabKacFabLabMabNadOabOaaEabPabQabRabSabSabTaagabwaaAaaBaaCagoaUhfXvacRaduadvacaaacaacaacaacaacaacaacaacaacaacacfafqafqabyafqackafqafqafqafqafqafqafSadGaNMaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaaa +aaaaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaacaacaacaacaacaacaacaacaacaacaacaacaacarWaCYaCYaCYarWaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacadTabUabVabWacqabXadTacpabYabZacoabIacradOacsacGactactacxadOacuaaEacvacwabRacyaaEaaEaagaaHaaIaaJaaKaQFaRGaedaedaedaedaedaacaacaacaacaacaacaacaacaacaacacfaclacnacZaeEaeFafqafqafqafqafqafqafSadGaNWaOmaabaabaabaabaabaabaabaabaabaabaabaabaabaabaaa +aaaaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaacaacaacaacaacaacaacaacaacaacaacaacaacaacaCZarWaDaaDeaDaarWaDbaacaacaacaacaacaacaacaacaacaacaQWaacaacaacaacaacaacaacaauaczacAacBacCacDacEacHacIacJacKacLaddadeadmaWYadfactaeCadOabSaaEabSacMadaadbaagadcaaQaaRaaSaaTaaTaRNafxafyafAafDafEagiaacaacaacaacaacaacaacaacaacaacacfafqaeUaeWafIackafqafqafqafqafqafqafSahzahzafXaNWaabaabaabaabaabaabaabaabaabaabaabaabaabaaa +aaaaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaacaacaacaacaacaacaacaacaacaacaacaacaacaCZaDcaDdaDeaDeaDeaDdaDcaDbaacaacaacaacaacaacaacaacaacaTVaTVaTVaTVaTVaTVaTVaacadTabCadhadiadpadqadTadoadjadkadlaWZadnadOadradNadUactaXbadOadsaaEadtadLabSadVaagadMaaZabaaaIabbabcaSpaSqahOaihaDpaGmagiaacabeabfabfabeabfabfabeabfabfafJafSafSafSagsafSafSafSafSafSafSafSafSafSafSafXafXaNMaabaabaabaabaabaabaabaabaabaabaabaabaaa +aaaaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaacaacaacaacaacaacaacaacaacaacaacaCZaDcaDfaDfaDjaDnaDhaDfaDfaDcaDbaacaacaacaacaacaacaacaacaTVaTWaTWaTWaTWaTWaTYadWafcafcafcafcafcafcafcaafaafadQadRadSadQadOaIFadYaebactadXadOaaEaaEaaEadZaaEaaEaagaeaaaZabqaaSaSMaSNaSOaSPaSPaSPaSPaSPaSPaacabeabtabuabeabtabuabeabtabuafJafqafqabyagBafSagFahsaisaitajcajdajcajeafSafXafXaNWaabaabaabaabaabaabaabaabaabaabaabaabaaa +aaaaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaacaacaacaacaacaacaacaacaacaacarWarWaiqaDeaDjajtajuakmaDmaDnacmarWaCYaCYarWaacaacaTVaTVaTVaTVaTWaTWaTWaTWaTWaTYaeqaeraesaetaeuadgcVgafcaevaewaexaeyaezagdadOactactactactafladOaepaaEaeDmzzdYXehNafaafbaSRacbaccaSSaSTaSUaSVaSZaTbmHOaTdaSPaTgabeacgachabeacSachabeacTachafJajvajwafqagBafSadKafYafZafqajxajxajxajFafSajGajUafXaNMaabaabaabaabaabaabaabaabaabaabaabaaa +aaaaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaacaacaacaacaacaacaacaacaacaacaDqaDasXaaDjajtaDgaDiaDkaDlaDgaDvaDwaDxaDyaDzaacaacaTVaTZaTZaTVaTWaTWaTWaTWaTWaTYafnafotYExaUpJLlsybzKafUafsaftafuafvafwaeBadOaeIafVagbagcaeIadOafmaaEafWhLdorcuOcaagagaaTjacNacOacPacQaTlaTmaTnaToaTpaTqaSPaTsabeacUabeabeaTOabeabeaTPabeafJajVajWaclagBafSamWaibaiXaiZalralralralMafSamtamuafXaNMaabaabaabaabaabaabaabaabaabaabaabaaa +aaaaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaacaacaacaacaacaacaacaacaacaacaDqaDaaDeaDraDuaDBaDsaDsaDtaDuaDgaDgaDEaDFaDzaacaacaTVaTZaTZaTVaTWaTWaTWaTWaTWaTYadxageagOageageageaWWafcagfaggaghaXcagHaHHahxahxahxahxahxahxahxahxahxagJagKagLagMaagaecabvaUAazuadyadzadAaSPaUvaUDaUEaIRaSPaUGaUHaegadBaciaegadDadEaegadFafJamSamVamXanCaqlarIaFZajCajDanDanDanEanMafSamtanOafXaNMaabaabaabaabaabaabaabaabaabaabaabaaa +aaaaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabadGadGadHadIadJaacaacaacaacaacaDqaDaaDeaDraDuaDGaDsaDsrEZaDDaDJaDJaDKaDHaDzaacaacaTVaTZaTZaTVaTWaTWaTWaTWaTWaTYagQagRagSahvahvahvaeJafcagTaggagUagVagWahuahyahZahAaefagPahFahVahXahxahDahEaaEaaEaagaagaagagnagnaeeaUIaagaSPaUJaUKaULaeAaSPaUNabeaejaTLaehaTMaehaeiaTNaekafJanPaoeafqaoDafSajYakoakWakXakXakXaoKaoOaoPaoRapdaphaNMaabaabaabaabaabaabaabaabaabaabaabaaa +aaaaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabadGadGaelaemaenaacaacaacaacaacaDqaDLaDeaDAaDRaDgaUwaUzdgAaDgaUCaUFaUMaUOaDzaacaacaTVaTWxHgaTVaTWaTWaTWaTWaTWaTYafcafcahwahwahwahwahwafcahGahHadPahIagHahJahxaiaaiTaiWahCaiQaiRaiSahxaicaidaieaifaeGafFahWahYaiBaeLaeMaeNaSPaUPaUQaURaUSaSPaUGabeaeOaePaeQaeRaeSaeTadCaeVafJapjapkafqaoDafSamZandanlannaplapFapGapPafSafXafXafXaNMaabaabaabaabaabaabaabaabaabaabaabaaa +aaaaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabadGadGaeXaabaeYaacaacaacaacaacarWarWaiFaDeaDAaDRaVbhxccwIaDNaDOarWaDPaDParWaacaacaTVaTWaTWaTWaTWaTWaTWaTWaTWaTWaTWagwaiLaiLaiLaiLaiLadPaiMaiNaiOagGagHaiPahxakzaiUakBaeKajSakwahxajTajTaiYbxHsWsaeGajaaigafzaUVafBagYaUWaUXaUYaUZaVaaJlaSPaVcabeafGafHafGabeabeabeabeabeafJafSafSafSarbafSafSafSafSafSafSacfafSafSafSarLauRadGaNMaabaabaabaabaabaabaabaabaabaabaabaaa +aaaaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabadGadGaeXaabaeYaacaacaacaacaacaacaDQaDcaDfaDfaVriiverSaDfaDfaDcaDSaacaacaacaacaacaTVaTWaTWaTWaTWaTWaTWaTWaTWaTWaTWagwaiLaiLaiLajzaiLadPafRajJajLajNajOajPahxakAahxaHSakFaQXahxahxaWXaSLaTrvQPhYKaeGaTKagjagkaglagmafCaVeaVfaVgaVhaViaVjaSPaUGagwagpagqagramUaojaojaojaooacfaqWaqZaraaIkapHapHapHbdcaqnapHaqXapHapHaqnarHaAhadGaNMaabaabaabaabaabaabaabaabaabaabaabaaa +aaaaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabadGadGagtaguagvaacaacaacaacaacaacaacaDQaDcaDTaDetqYaDeaDTaDcaDSaacaacagwagwagwagwagwaTWaTWaTWaTWaTWacWaTWaTWaTWaTWagwaiLajzaiLaiLaiLadPaiMaTXadPaUiajQaUxawIfrqeAMxAVpzHoCwxyKakeaVDajTaaEaaEtrAaeGaVFagXagXagXaVkagYaVlaVmaSPaSPaSPaSPaSPaUGagwahaaXKaXMaXTaXUaXUaXUaXVarxaroarqarqbdfarqarqarrbflarsartarOarParSacVarTaAhadGaNMaabaabaabaabaabaabaabaabaabaabaabaaa +aaaaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaacaacaacaacaacaacaacaacaacaacaacaacaacaDQarWaVxtqYaDearWaDzaacaacaacagwahdagwabzagwaTWaTWaTWaTWaTWacXaTWaTWaTWaTWagwaiLaiLaiLaiLaiLadPaVHaVIaVJaItaVLaVMaVNjDCoRGsaKgRXmRsaVTaVUaXaajTahdaaEaUsaeGaVWaVnahKahLahMahNaVoaeGahdagwaVqauSagwaVsagwahPahQahcaXSaYNaYNaYNbchacfarXarYasmasnasvacVasCasEacVaonacVacVasJacVasWaAhadGaNMaabaabaabaabaabaabaabaabaabaabaabaaa +aaaaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaacaacaacaacaacaacaacaacaacaacaacaacaacaacarWaDchaSaDcarWagwagwagwagwagwahSagwabBagwagwagwagwagwagwaUaaUbagwagwagwagwagwaVXaVXaVXagwadPaVYaVZaWaadPadPadPaWbajTajTajTajTaWcaWdajTajTaWeahSaaEaUtaWgaWhaeGaUUaUUaVtaiiaijaeGahSagwaVuaVuagwagwagwailaimainaioaioaioaioaioaioaioaioaioacfatjacVasCatmatvatxatvatvatzacVatKaAhadGaNMaabaabaabaabaabaabaabaabaabaabaabaaa +aaaaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaacaacaacaacaacaacaacaacaacaacaacaacaacaacaVzaipxpJaVAaVEairairairaVGaircpdairjJdxkxabAairairairagIaUcairkuQfRHkuQmjsoAuaixaixaixaOaaWmaWnaWnaWnaWoaWpaWqaWnaWnaWsaWtaWuaWvaiVaWwaWnaWnaWxaWzaWAaWBqIbqIbqIbxIOajfaiVajgajhajiaWiaixaixaixaixajjajkahbaDVaioajlajmajnajoajpajqajrajsacfatSacVasCacVauiaunauoacVacVacVaupaAhadGaNMaabaabaabaabaabaabaabaabaabaabaabaaa +aaaaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaacaacaacaacaacaacaacaacaacaacaacaacaacaacaVzaVKorPsDGaWFaWFaWFaWFaWFaWFaWFaWFoELvunaDWajAaDWaUdaUeaUfaWFaWFaWFaWFaWFaWHajMaWFaWFaWFaWGaWFaWFaWFaWFajMajMajMajMajMaWHaWIaWJaWKajRajRajRajRajRaWLajRmFqavGavGislavGjriavGavGavGavGavGavGgTNakaakbakaakcakdaioaofakfakgakfakfakhakiakjacfatjacVasCacVacVaCaacVacVacVacVauLaAhadGaNMaabaabaabaabaabaabaabaabaabaabaabaaa +aaaaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaacaacaacaacaacaacaacaacaacaacaacaacaacaacaVzaklaVQaknaknaknaknaknaknaknaknaknaknbhuaknakpakqakraiJakxakuakvaWNaNEakxaWUakxakxakxaWOaWSaWTaWTaWTaWTakvakxaNEakxakxaWUakCakDakEaWVaknaknaknaknaNpaknbazaknaknbhuaknaknaknaknaknaknaknakGakHakIakJakKakLagNaioakNakfakOakPakPakPakQakRacfauMacVasCauNauPauTauPavbavcavcaveaAhadGaNMaabaabaabaabaabaabaabaabaabaabaabaaa +aaaaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaacaacaacaacaacaacaacaacaacaacaacaacaacaacagwalPalPalPalPalPakSakSakSakSakSakSakSakSakTakTakUakVakTakTakSakSakYakYakZakZakZakZakZakYakYalaalaalaalbalcalcalcalcaldalealfalgalhalialjaljaljaljaljaYOaYVaYOaYOaloalkbbqalkalkalkbbqalkahaakHaMXaloalpalqaoNaioalsakfakfakfakfaltalualvacfavfacVavBavEavIawuavIawJawNarLarLaxmadGaOtaOmaOmaOmaabaabaabaabaabaabaabaabaaa +aaaaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacalwalxalyahqalAalBalCalDalEalEalFalGalEacYaMSalJakYalKalLalLamwalNalNalOakYagwalPalPagwalcalQalRalSalTalUalValWalhalialjallaqcawialjaZiaEjaEvaZsaloaZtaZubbsalkbbtaZubbsahaakHamaambamcalqamdaioameamfamgahtamiamjamkamlacfaxraxsaxQaxXarLarLarLarLaygadGadGadGadGadGadGadGadGaNMaabaabaabaabaabaabaabaaa +aaaaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacalwammamnamoampampampamqamramramramssSKueUjBBjBBfxhoSvgiRgiRtxoamwamwamxakYamyamyamyamyamzamAamBamCamDamEamFamGamHalialjawjawkawlaljawnawnawnaTtalovtNbbuaNobdDalkbbualkahaakHamIaioaioamJaioaioaioamKaioaioaioamKamLamKaioacfayKarLazpaSxaqmaqmaopazXazYazYazYazYazYazYaACadGaNMaabaabaabaabaabaabaabaaa +aaaaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacalwamMamNamOamPamPamQamQamQamQamQamRamNargamvamvlqXaDZamwamwpeSyetyetanaanbamyamyamyamyalcalcancalcaQdaneanfahBanhalialjaljaxfaljaljatIaOUaJiaEbayxayxayxayxayxayxaouaAnahaxEBdmHankrXWjCneHkaioanoanpanqanraioansantanuajsaokashaopaopaopaopaopaopaADaAHaAIaAJaAKaAPaAQaARadGaNMaabaabaabaabaabaabaabaaa +aaaaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacakSanvamNanwanxanxanyanyanyanyanyanzamNargamvanBqqVaDZamwamwweKolGolGanFanbamyamyanGamyalcanHanIanJaneanealcanKanhalialjaZkaZlaZmaljaYPaYQaYRaSEayxaZnaZoaZpaZqayxayxayxaksvJApleaiolXvqQZioGanQanRanSanTanUanVanUanWanXanYaokaopaUraVyaVyaVyaVyasQasFaBlaBmaBzaBAaBAaBCaARadGaNWaabaabaabaabaabaabaabaaa +aaaaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacakSanZamNanwanxanxanyanyanyanyanyanzamNargamvaoaakYaobamwamwaodamwamwaiIakYamyamyamyamyalcaogaohalcaneanealcaoianhalialjaZwaZxalmaljaYTaYUaYRaYSayxaYqaYWaZBaZCaTyaZEaZFapSvJAaliaoEaolaolaomaolaokapaaokaokaokaokaokaokaokaokaSyaWMaopaopaopaopaukaADaBFaBZaBZaCfaCgaCkaARadGadGaNMaabaabaabaabaabaabaaa +aaaaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacakSaoqamNanwanxanxaoralEaosanyanyanzamNargamvaotakYaKvaovaowaoxamwamwaVSakYamyamyamyamyalcaoAaoBalcaneanealcaoCanhalialjatuaZLavlaljaYTaYUaYXaYhayxaZNaZbaZPaZCaTzaZRaqdaqQvJAaliaoFalYalZaXZaYaawParNasKasiaSxaopaopaoMbdiaopaopaWMaopaopaopaopaEZaCoaCpaCpaCpaCpaCpaCpaCqaACadGaNMaabaabaabaabaabaabaaa +aaaaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacalwamMamNanwanxanxaoSaoTaoUanyanyanzamNargamvgLgakYakYakYakYaoVakZakZakYakYaikaikaoXaoXalcalcalcalcalcalcalcaoYaoZaOTaljaljaZWaljaljaljaljaYZaYSayxaPaaZzaZBaZCaTzaZRaqdcFAxmKbEdaoFalYalZaYdaYeawPaqoasPasiaopaqpaopaEXaopaopaopaWMaqqaqVaqqaopaukaARaCCaCDaCEaCWaDCaAPaDIaARadGaNMaabaabaabaabaabaabaaa +aaaaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacalwapmapnanwanxanxanxanxanxanyanyanzamNargamvamvakTapoairappapqapraixaixapsaptapuaoXapvapwapxapyagwapzaivagwapBanhalialjbafbagavRbaibajaZGaYRaYYaZvaZYaTUaZCaZCaTzaZRaqdaqRxUoapCagwagwapcaYkaYlawPateauOasiaopaopaopatRbdjaeZbdkaWMaBGaDYaEhaopaukaDMaEkaEmaEmaEmaEmaEmaEnaARadGaNMaabaabaabaabaabaabaaa +aaaaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacalwamMapIanwanxanxanxanxanxanyanyanzapJaeoapLapMapNapOajRajRaiCapQapQapQapRapSapTaoXapUapVapVapWagwafkafNagxagzaqbbaQaljbarbasbataZxbauaZHaYRaZaayxbavbaaaZCaVVaTzaZRaqdaZSbqsaqfaqgaqhaqiaqjaqkawPateauQasiaopaqpaopaEXarQarRaskasHasOasVataaskavraExaEBaEFaELaEMaENaEmaEnaARadGaNMaabaabaabaabaabaabaaa +aaaaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacakSaqrapIaqsaqtaqtaqtaqtaqtaquaquaqvapIargarhaiKakTaqBakxaiDavjaiGaqEasSaqGaqHaqIaqJaqKaqLaqLaqMagwaqNaqOagwagAalhbaJaljaPiaZUbaGbaKbaMaZHaYRaZcayxbaNbalbaUbaVaTzaZRaqdaZZxUoaOTaqTagwapcaoHapgawPateawRasiaopaopaopaTEauUaVyaVyaXjaqeaqeaqearKasoaBdaFbaFgaFkaFlaFBaEmaEnaARadGaNMaabaabaabaabaabaabaaa +aaaaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacakSarcardarearearearearearearearearearfargarhariakSafjafjafjaiHafjafjahaakEapSarkaoXapvarlarmapyagwagwagwagwajbalhbaJaljawzaZVbbaaZxbbbaZHaZeajBayxbbcbambanbaoalnbbibbjanLxUoaqUapcapcapcarpapcawPateasPasjaBpaopaopaWEaXvbdlasobdHbftbfpasobfuaopaARaFDaFEaFGaEmaFHaEmaFIaARadGaNMaabaabaabaabaabaabaaa +aaaaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacakSarvarwarwaMIarwarwarwarwarwaryarwarzarAarBarCakSaMwajKrAeopEaqDafjahaakEapSahcaoXaoXaoXaoXaoXaoXarEarFagwagEalhbaJaljbabaXWaYnaZjaZraYcaYRaPeayxbbpbbwbbxbapayxayxayxaxbxUoapSaBDaTFaspatRasqasZateasPavgaGHaopaopaWMawQaFMaFMawPaFMaFMaFMaFOaFMaFPaFPaFPaFRaFYaGaaGbaGcaARadGaNMaabaabaabaabaabaabaaa +aaaaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacarUarVakSakSakSarVarVarVakSakSakSarVarVarVakSakSakSarDavFslaxvNawoafjaObakEapSwPDaixjujuFIaixaOaascaixaixajjahealhbaJaljbbCbbDasTasTaBoasTaEaaZhasTasTaEcasTasTaloaqOaloviFatcavPaLhaVwaVyavqaVBaVCaVOaVPaVRaClaVyaVyaXgaBEaGdaGeaGgaGhaGeaGeaGjaGqaGGaGIaFMaFMaFMaGJaGbaGcaARadGaNMaabaabaabaabaabaabaaa +aaaaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacafjafQafjafPafjafOafjassastajRavGavGavGislavGajRajRajRajRasyahlaszbaJaljbbEbbHasTaEeaEgbacbadaZAajHaTCaYmaXXasTaqOaqOalovKmafTapSaBDaqoaqoaxnaqoaqoateasPaCjaESaopaopaopaEZaFMaHoaHoaHpaHqaHqaHwaHxaHAaIjaITaJqaFMaJuaJJaLfaARadGaNMaabaabaabaabaabaabaaa +aaaaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacafjawLafjawMafjawMafjasRaozapXapXapXapXkeXapXapXapXapYapXapZaqaalhaxKasTasTasTasTaXYaYbaYbaYbaZOaYfaYgbakaYiasTasTasTasTnlfxUoapSaBDateateaCIbdBateateasPaCRbdCaopaopaopaFzaoJaoJaoJaXiaoJaoJaoJaLCaLDaLEaHqaLFaFMazYazYazYaLGadGaNMaabaabaabaabaabaabaaa +aaaaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacafjafjafjafjafjafjafjagwaqPalPagwalPalPagwalPalPagwagwagwagwahaalhaEoaTuaPkaYbaYjaYbaYbaYbaYbaYobaebaeaZIaYpaYraYpaPpaUywXrfOjapSaBDayGayIaEYateayLaFKaFSaHnaJVaKmaKtaKwaLeaoJasrasubeCanmasxaoJaLHaLIaLEaHqaLJaFMadGadGadGadGadGaNMaabaabaabaabaabaabaaa +aaaaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacafiarnarnarnarnarnaseaacaacaacaacaacaacaacaacatsatsatsattalhbaHasTasTasTasTaYsaYpaYpaYtaYuaYvaYbaYbaYwasTasTasTasTvvAahRajXaZdaZgaZyaZJaZQbaPbbIawPawPaWkasGawPawPawPaoJbbJbcsbeLbeMasIaoJaLKaMgaLEaHqaMhaFMadGarZaNCaNCaNCaabaabaabaabaabaabaabaaa +aaaaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacafMaEiaXGaEiafhafhatGatGatGatGatGatGatsaacaacaacaacatsatHatsaObalhbaLalXalYalYasTaYxaYyaYzaYAaYIaYBaTvaYyaYDasTalYalYalZmyZarGauhaCibeqaruaKcasDaruaruaruanianNbaqaswasLasMasNberathatnbeNasIaoJaPFaRmaLEaRXaJqaFMadGaNMaabaabaabaabaabaabaabaabaabaabaaa +aaaaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacafMaXHaXIaXJaXLafLaudaudaudaudaudaudatsatsaueaueatsatsaufatsahaalhbaLalXalYalYasTaYEaYFaYGaYHaPCaYJaYKaYLaYMasTalYalYalZmyZakHauhaCibesbetbeubevbewbexbeybeybezbeybcfanjaKpasUbeAbeBbeObePasYaoJaShaSlaTcaTwaTGaFMadGaNMaabaabaabaabaabaabaabaabaabaabaaa +aaaaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaacaacaacaacaacaacaacaacaacaSuaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacafMaxhayiafhafhagyaudauxauxauxauxaudaJraPDauAakkauBauCauDauEauFauGbaLauHauIauIasTaXxaXBaXBaXBaXDaXBaXBaXBaXEasTauIauIauJmyZakHauKaCibeEbeFbeFbeGbeHbeHbeHbeHbeIbeFbdxanjaZTatbatbatbatbatbatbatbaShaSlaLEaTHaTIaFMadGaNMaabaabaabaabaabaabaabaabaabaabaaa +aaaaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacafMaXNaXOaXLaXPagCaudauxauxauxauxauxauZavaavCavCavCavCavCqvpnbMkjnbbybbAbbAbbAbbFbbFbbFbbFbbFbbFbbFbbFbbFbbFbbFbbAbbAbbAdsFakHaOgaCKanjatMatdaLcatJatAanjbdEatfatgatPanjanjaJwbctbdrbdsatiatkatbaTJaTSaUgaUnaMhaFMadGaNMaabaabaabaabaabaabaabaabaabaabaaa +aaaaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacafMagDaXQafhafhahgaudauxauxauxauxauxauZawarMSsSWbSebSejFzxlWnflceNaEpafeajMajMajMajMajMajMaEqavGajRajRavHajRajRajRajRajRavGqZsavnatlanjatLanjatwbaqbaqbaqbaqbcwbcxbcybaqbaqbczbcAbeYbeKatyatiatbaUBaUTaLEaHqaJqaFMadGaNMaabaabaabaabaabaabaabaabaabaabaaa +aaaaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacahhahjahjahjahhahjahjahjahhahkaXRahmahnahoaudauxauxauxauxavYavZcRihoQlpBaffaweawfawgakxakxafdafgaoGaoIapbapeapfapDapEaNEakxalzawpawqawqawqawrawqawShPFqWZatlaZXafpafraLgapiaqYatOanjaUqatQaujanjanjaJwatibeZbfaatiaumatbaVdaLIaLEaHqaWlaFMadGaNMaabaabaabaabaabaabaabaabaabaabaaa +aaaaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacahpahrahTahTahUaiuaiwaiyahhaizaiAajyajEajIaudaudaudaudaudaudawFawGaErawHazPazPazPazPazPaxiaxkaxSaxTaxkaxgaEAaWCaWDaXhaWCaYCaYCaZDaZMbahbaxaYCaYCaxvxbmawUaruanjanjanjaKlbaqbaDbaEbaEbaEbaFbaEbaIbaOatbatbatbbfbaFMaFMaFMbaSbaYaLEaHqaLFaFMadGaNMaabaabaabaabaabaabaabaabaabaabaaa +aaaaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacahpapAatpatqatratBatCatDahhatEatFatEatTatTatTatTatTatTatTatTatUaxcaxdaxeazPaxUaxVaxWazPawdayyayzayAazhaxgahdaWCbaZbbdbbeaYCbbfbbgbbhbbkbblbbmbbnaALaBBaCJavdawcawcawcawcawcaKxawcawvanjanjanjaKyaKuaFMaHqaHqbbobbrbbrbbvbbBbbrbceaHqaMhaFMadGaNMaabaabaabaabaabaabaabaabaabaabaaa +aaaaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacahpatVatWaktatYauaaubalIauqahiawDawxatUaurausaqyauvauwanAamhaocaxRaErawHazPaziazjazmaTTazQazRazSazWwiXaxgaxgaWCbcgbcibcjaYCbcnbcobcpbcpbcqbcrbcuaALayeaxwatlavhaviavkavmavoavoavparuanjanjatOaLbbaXbcvbcBbcBbcBbcBbcBbcCbcDbcEbcFaFMaFMaFMadGaNMaabaabaabaabaabaabaabaabaabaabaaa +aaaaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacahhahhahhahhahhahhahhahhahhawAaxIawBauYavtavuavvavwavxavQavXazkaAvaEraOqazPaAwaAyaCMazPaAzaAAayzaFrazTaHdazTaWCbcGbbdbcHbcIbcJbcKbcLbbkbdebcMbcNaALayeaxwarJavyavzavzavzavzavzavAaruarManjanjbawavDaFMaHqbcOaHqaFMaFMaFMaFMaFMaFMaFMadGadGadGaNMaabaabaabaabaabaabaabaabaabaabaaa +aaaaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacafKauuauuauuauuauuauVauWafKawWaxNaxDauYavSavTavUavVavWawyaymaGBaGCaErazgazPazPazPazPazPakMazVmXoaEJaBtaBvaCFaWCaWCbbdbcPbcIbcQbcRbcSbbkbbkbcTaYCaByayeaxwazvavLavMavMavMavMavMavNaruaruajZamYaruaJtaJtavOaJtaJtaJtadGadGadGadGadGadGadGarZaNCaabaabaabaabaabaabaabaabaabaabaabaaa +aaaaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaacaacaacaacaacaacaacaacaFfaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacafKauuauuauuauuauuauVawOafKaxGayOaxHawEawKawXawYawZavxasbatUatUpAhnLXazOaxgaCGaLPaCHaIEazTazTqfzaGxaEuaEzaECaEDaWCbbdbcUbcIbcVbcWbcXbcYbdqbcpbdaaAdaBraAfarJaBxasXasXasXasXasXasXauyavJasBasBbayaJtawTawmawsawtaJtadGarZaNCaNCaNCaNCaNCaabaabaabaabaabaabaabaabaabaabaabaabaabaaa +aaaaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaacaacaacaacaacaacaacaFfaFhaFfaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacafKaxFauuaxOaxOaxOaykaylafKaHjayvayHazcazdaxjaxlaxzaxAaxaaytatUayYaEraAuaxgaEEazTazTaEPaEHaEIqfzaXoaEKaEOaXCaEQaYCbdbbddbehbdgbdhbdmbdnbcrbcpbdoaGiaBBaCJaCSaCTasXasXasXaLdaLdasXaETaIMaImaImaEWaJtaxobdtbduawwaJtadGaNMaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaaa +aaaaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaacaacaacaacaacaacaacaFfaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacafKayrayBayBayNayPayTazlazGaArazeawBauYaxCaxEaxJaxLaxMayjayVaynaBRaEraBkaxgaERaEUazTaEGaAAaEIcSlaFcaFdaFeaECaEEbcIbdpbfnbcIbdybcRbfobdFbdebbkbeDaCXaEdaxwavKaIlaIlaInasXaHeaHlasXaGkaIMaImaImbfqaJtaxqaxyaxYawVaJtadGaNMaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaaa +aaaaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaQWaacaacaacaacafKaBeaBgaBhaATaucayWaFiafKayuazJayQatUauYayoauYatUatUamhatUatUaBYauXaFjaxgaFnaBsaBsaBsaBsaBshENaFraFsaFsaCFaABaABaChaABbcIbeJbeQbcSbbkbeRbcTaYCbbzaBBaCJaHraHsaHBaIgaIhaIiaIiaIhaIoaIJaIKaIPatoaJtaIQaxyaxYaxpaJtadGaNMaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaaa +aaaaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaacaacaacaacaacaacaacaacaacaacaacaacaacaacacjacjacjacjaiEaiEaiEaiEaiEaiEaiEaiEaoyafKafKaBjaBwafKafKafKafKaFmazeaAMaASaAWaysayXayZaBHaBSxdMazaazbazFawCaxgaFtaFuazTaFUazTaGwayzaFrazTaBqaSFaABaCLaCPaCQaYCbeSbeTbeUbcpbcZbcZbcuaGraIVaJcaCSbaAaJvaJKbdvbdGasXbdwaxZayfazsazxazZaDXaElaHvaKsbbQaJtadGaNMaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaaa +aaaaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaacaacaacaacaacaacaacaacaacaacaacaacaacaacalHsLatZwaoWaqwaqAaqCaqFaqxasdasgarjamTaAmaAYaCsaCtkyCaBiaIqayRaCBaBXaySayUayUazyazAazAazzazBazCaAgazMazIeQNaxgaGYaHclxaaFUazTaHgayzaFraMkaxgaxgaABautaFxaznaYCbeVbeWbbkbbkbeXbfcbfdaALazFaCUavKaINaIHaKobbKaLdaLdbbLbbMaIMbbRaImatNaJtbbNaxtaxuaxxaJtadGaNMaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaaa +aaaaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacalHaCcdVEaCmaFLaqzaBQaBNawbaBQazNaBPoblcGteJmmUEoUIjrnmXumXuttHqkfmelazfaCrazqazwaCNaCVaFTaHPaCVaWfaWjazFaXeaxgaXfaXfaEVaHcaHccAGeIsaFraXwaxgatHaABaFVaFWaFXaYCbfebbgbbhbbkbcMbffaYCaGtazFaGfarJaIOaIOaKqbbObbPbbTbbUbbVaIMbbSbaBarJaJtbbWaJtaJtaJtaJtadGaNMaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaaa +aaaaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacalHaCccWeawhaBKaFpaFJaCdangaGnaGpaFojAtcJLtRgtWnwrAfeukXolvHtxOdKjiXMazKazEaBnaCAaBnazEazEazEazEazEbbGlYTfgWaXkaxgaxgaxgaxgaxiaxkaxSaXlaxgaxgaGyaABaABaGzaABbfgaYCbfhbfibfibfjaYCaYCaGugBGaIcarJbdIbccbckbclbcmbcmbdJbbXbbYbbZbcaarJayJayMaztaacaacadGadGaNMaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaaa +aaaaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaGLdrRhgfaGMaiEaGNaGPaiEaiEaiEaiEaGQazLazLazLaTelgoazLazLazLazLaGRaAoaApazEaGSaGTaAqaAUaAVaAXaAZaWraXdaGUaGWaGXaIGaGZaHaaHbaGXaXqaXraXsaXtaHhaUkaHiaHfaHkaJraHmaGvaGAaGAaGAaGAaGDaGEaGFazFaHtaHuasXbdMaKrbcbasXasXasXasXasXasXasXbaRaAaaztaztaacaacaNCaNCaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaaa +aaaaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaHEaCcaVpaNnaGOaacaacaacaacaacazLaoLaFNaBbaBcuaNlSvaFQaBIaoQazLaHIaBLapKazEaHJaHKatZaHLaBOaHNaHOaXmaHQaGVaHRaHRaHTaHRaHRaHRaHRaXnaXpaXuaIaaIaaIaaHVaHWaHXaHYaHZaIaaIbaIaaIaaIafyZsuTaHWgAFgVgsPdbdObdPbdQbdRaFaaHyaISbaCaIUbaTbaWarJaAaaztaacaacaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaaa +aaaaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacacjaIpaVpaEwacjaacaacaacaacaacazLaBUaBWaBWaBWaBWkuUaBWaBWaCbazLaHjahfaCeaBnaIuaCzaIvaIwaCuaCvaCwazEaIxaAsaAsaqSaUlawfcmQawfawfaIyawfaIzaOJaIzaIzaIAaIzaIzaUmaICaIzaIDaIzaIBaIzaUmaICknUpgiaIIarJasXarJaGKbdSaGKaGKaGKaGKaGKaGKaGKaGKaAaaztaacaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaaa +aaaaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacacjaIWaVpaJBacjaacaacaacaacaacazLaCxaBWaCyaBWiQrkuUaJdaBWaSHaTeaThaJeaJfaJgaJhaSCaJjaJkasaazDazDazDaJmaJmaJmazDaJnaJnatsaJnaJnatsaJnaJnatsaJnaJnatsaJnaJnatsaJoaJnaJpatsatsatsaJnaJnaJnaUoaUparJaJsaGKayabdTaycaydbdUbdVaydaHDaGKaAbaAcaztaacaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaaa +aaaaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaHEaCcaIYaNnaGOaacaacaacaacaacazLaJFaJGaJHaJIgtpmWXaJLaJGaJMazLaJNaJOaJPaBnaJQaJRatZaJSaJTazDaJUaslaJWaJXaJYazDaJZaKaaKbaKaaKaaKDaKaaKaiebaKaaKaaKbaKdbMKaKfaKgaKhaKiaKjaKkatsaANaANaANaKZaOQarJaKnaGKbcdbdYbdZbdZbeabebaybaHDaGKaAaaztaztaacaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaaa +aaaaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaacaacaacaacaacaacaacaacaacaacaacaacaacaacacjhJtaVpaNnacjaacaacaacaacaacazLaFwaKEaKFaKEaKGaKEaKHaKEaGlazLazoazoazoazEaKJaKKaKLaIvaKMaKNaKOaKPaKQaKRaKSazDaKTaKUaKUaKUaKUaKUaKUaKUaKUaKUaKUaKUwtdbMKaKfaKgaKWaKXaKjaKYatsaANaANaANaTQaTRarJarJaGKayhaGKayCaGKayDaGKaybaHDaGKaAaaztaacaacaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaaa +aaaaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaacaacaacaacaacaacaacaacaacaacaacaacaacacjaBVaHFasfacjaacaacaacaacaacazLaLlaLlaLmaLlaLlaLlaLoaLlaLpazLaacaacaacazEaLqaLraLsaLtaLuaLvaLwaLxaLyaLyaLzazDaKTaKUaKUaKUaKUaKUaKUaKUaKUaKUaKUaKUwtdbMKaKjaLAaKfaLBaKjaKjatsaJnaJnaJnaJnaJnarJarJaGKayEaGKayFaGKayFaGKaybaHDaGKaAaaztaacaacaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaaa +aaaaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaacaacaacaacaacaacaacaacaacaacaacaacaacaHEaCcaJCaNnaGOaacaacaacaacaacazLaLSaLTaLSaLTaLSaLTaLSaLTaLSazLaacaacaacazHaypaLUaLVaLWaLXaLYaLZaMaaKQaKRaKSazDaKTaKUaKUlCqjvKddnddnddnjvKxXfaKUaKUqemrxhaKgaKgaMbaMcaMdaMeaMfaKUaKUaKUaKUaKUaKUaKUaKjaGKaGKaGKaGKaGKaGKaGKaGKaGKaAaaztaacaacaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaaa +aaaaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaacaacaacaacaacaacaacaacaacaacaacaacaacaGLaCcaLNaNnacjaacaacaacaacaacazLaLSaLSaLSaLSaLSaLSaLSaLSaLSazLaacaacaacazHayqaMraMsaMtaMuazDaMvaHGaMxaMyaMzazDaKTaKUaKUjvKjvKeCGpNkpwFjvKjvKaKUaKUaKVjZeaKeaKesFWaMBaMCaMDaKTaKUaMEaMFaMFaMFaMEaKUaKjaAeaAiaAjaAlaAxaAEaAFaAEaAGaAcaztaacaacaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaaa +aaaaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaacaacaacaacaacaacaacaacaacacjaIWaJxaulacjaacaacaacaacaacazLaMNaLTaLSaLTaLSaLTaLSaLTaMOazLaacaacaacazHaMPaMQaMRaBOatXazDazDazDazDazDazDazDaMTaKUaKUjvKkdxoLRvrUhlFivqjvKaKUaKUaKVuxTaKjaMVaMWaugaKjaMYaKTaKUaMEaMZaNaaNbaMEaKUaKjaCnaFqaFvaFvaFyaztaztaztaztaztaztaacaacaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaaa +aaaaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaMGadGaHEaCcaVpaNnaGOaacaacaacaacaQUazLaLSaLSaLSaLSaLSaLSaLSaLSaLSazLaacaacaacazEaNeaNfatZaNgaNhazEaacaacaacaacaacaNiaKTaKUaKUjvKjvKjvKdJmjvKjvKjvKaKUaKUaKVjZeaKeaKesFWaKeaNjaKeaKTaKUaMEaNkaNlaNmaMEaKUaKjaFAaHzaHCaIdaIeaAEaIfbdzaztaacaacaacaacaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaaa +aaaaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaMGadGacjaMiaVpaMHacjadGadGadGadGadGazLaLSaNqaLSaNraLSaNraLSaNraLSazLaacaacaacazEaNsaNtaNuaNvaNwazEaacaacaacaacaacaNiaKTaKUaKUbkNcnNoPmkiwuhmrzVwyiaKUaKUaKVjZeaKgaKgghfaKgaNyaKeaKTaKUaNzuSAaNlaNlaMEaKIaKjaztaztaztaztaztaztbdAaztaztaacaacaacaacaacaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaaa +aaaaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaMGadGacjaCcaVpaNcacjadGaNBaNCaNDadGazLaLSaLSaLSaLSaLSaLSaLSaLSaLSazLaacaacaacazEazEaNFaNFaNFazEazEaacaacaacaacaacaKjaKTaKUaKUjHwmDfkmKkcCgULfcgjHwaKUaKUaKVooMaNHaKgghfaKgaNIaNGaKTaKUaMEaNJaNKaNKaMEaKUaKjbdKbdLbdNbdNbdNbdLbdWaztaacaacaacaacaacaacaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaaa +aaaaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaMGadGaHEaCcaVpaNnaNLadGaNMaabaMGadGazLazLazLazLazLazLazLazLazLazLazLaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaKjaKTaKUaKUjMLeiOxOaeGvrbRtcWcawjYdjYdvoFuYOxZwxJygLdaKgaNOaNNaKTaKUaMEaNPaNPaNPaMEaKUaKjbdXbecbedbeebedbefbegaztaacaacaacaacaacaacaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaaa +aaaaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaMGadGacjaxPaJEaNAacjadGaNMaabaMGadGazLazLazLazLazLazLazLazLazLazLazLaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaNiaKTaKUaKUjHwcnZdVWlFchCBiqbjHwaKUaKUaKVaKeaKgaKgaNxaKgaNyaKeaKTaKUaMEbfrbfrbfraMEaKUaKjbeibejbekbelbembenbeoaztaacaacaacaacaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaaa +aaaaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaNUadGaNVaNSaODaOraNVadGaNWaabaMGadGazLazLazLazLazLazLazLazLazLazLazLaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaNiaKTaKUaKUjpBfYrkundGZwQffrugHhaKUaKUaKVaKeaNXaKeaMAaKeaKeaKeaKTaKUaNYaKUaKUaKUaKUaKUaKjbepbecbedbedbedbefbepaztaacaacaacaacaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaaa +aaaaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaMGadGadGaNZaEtaEyaEtaNZadGadGaNMaMGadGadGadGadGadGadGadGadGaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaKjaMTaKUaKUqWUqwmkBFsGVtLvqwmqWUaKUaKUaKVaMUaKjaOcaFCaOdaKjaMYaOeaKjaKjabgabgabgabgaKjaKjbepbfkbfmbfmbfmbfkbepaztaacaacaacaacaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaaa +aaaaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaMGadGaOfaOfaGoaPjaGsaOfaOfadGaNMaabaOiaOiaOiaOiaOiaOiaOiaOiaabaabaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaKjaKTaKUaKUbfsqwmqomqomfNtqwmbfsaKUaKUaKVaKeaKeaKeaMAaKeaKeaKeaOeaKjaOjaOkaOkaOkaOkaOlaKjaztaztaztaztaztaztaztaztaacaacaacaacaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaaa aaaaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaOmaOmaOmaOmaOnaQDaOfaOoaOpaKBaKCauzaOfaRhaOtaOmaOmaOmaOmaabaabaabaabaabaabaabaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaNiaKTaKUaKUaKUaKUaKUaKUaKUaKUaKUaKUaKUaKVaKeaKgaKgaOuaOvaOvaOwaOxaOyaOzaOAaOBaOBaOCoMKaKjaacaacaacaacaacaacaacaQfaacaacaacaacaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaaa aaaaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaMGadGadGadGadGadGadGaOfaHMaOpaOEaOpaTDaOfadGadGadGadGadGadGaNMaabaabaabaabaabaabaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaNiaOHaOIaLnaOIaOIavsaOIaOIaOKaOIaOIaOIaOLaKeaLLaKgaNxaKgaKgaKeaOeaKjaOMaONaOOaOPaxBaOkaKjaacaacaacaacaacaacaacaacaacaacaacaacaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaaa aaaaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaMGadGaORaORaORaORaORaOfaBJaOpaLjaMjaHUaOfaOWaOXaOYaOZaOWadGaNMaabaabaabaabaabaabaabaabaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaKjaPbaPbaKjaPbaPbaKjaPbaPbaKjaPbaPbaKjaKjaKjaKjaKjaPcaKjaKjaKjaKjaKjaKjaKjaKjaKjaKjaKjaKjaacaacaacaacaacaacaacaacaacaacaacaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaabaaa diff --git a/maps/tether/tether_areas.dm b/maps/tether/tether_areas.dm index 9c595e82e1..125632689f 100644 --- a/maps/tether/tether_areas.dm +++ b/maps/tether/tether_areas.dm @@ -221,6 +221,12 @@ name = "\improper Bar Backroom" icon_state = "red" sound_env = SMALL_SOFTFLOOR +/area/tether/surfacebase/servicebackroom + name = "\improper Service Block Backroom" + icon_state = "red" +/area/tether/surfacebase/maintdice + name = "\improper Bar Back Maint" + icon_state = "red" /area/tether/surfacebase/public_garden_lg name = "\improper Public Garden Looking Glass" @@ -378,6 +384,23 @@ lightswitch = 0 icon_state = "library" +/area/tether/surfacebase/entertainment + name = "\improper Entertainment Auditorium" + icon_state = "library" + +/area/tether/surfacebase/entertainment/stage + name = "\improper Entertainment Stage" + icon_state = "library" + +/area/tether/surfacebase/entertainment/backstage + name = "\improper Entertainment Backstage" + icon_state = "library" + +/area/tether/surfacebase/botanystorage + name = "\improper Botany Storage" + icon_state = "library" + + /area/tether/surfacebase/security icon_state = "security" /area/tether/surfacebase/security/breakroom @@ -537,6 +560,15 @@ /area/rnd/breakroom/bathroom name = "\improper Research Bathroom" icon_state = "research" +/area/rnd/testingroom + name = "\improper Research Testing Room" + icon_state = "research" +/area/rnd/hardstorage + name = "\improper Research Hard Storage" + icon_state = "research" +/area/rnd/tankstorage + name = "\improper Research Tank Storage" + icon_state = "research" //TFF 28/8/19 - cleanup of areas placement /area/rnd/research/testingrange