diff --git a/code/ATMOSPHERICS/components/binary_devices/algae_generator_vr.dm b/code/ATMOSPHERICS/components/binary_devices/algae_generator_vr.dm new file mode 100644 index 0000000000..84f84e9cff --- /dev/null +++ b/code/ATMOSPHERICS/components/binary_devices/algae_generator_vr.dm @@ -0,0 +1,269 @@ +#define MATERIAL_ALGAE "algae" +#define MATERIAL_CARBON "carbon" + +/obj/machinery/atmospherics/binary/algae_farm + name = "algae oxygen generator" + desc = "An oxygen generator using algae to convert carbon dioxide to oxygen." + icon = 'icons/obj/machines/algae_vr.dmi' + icon_state = "algae-off" + circuit = /obj/item/weapon/circuitboard/algae_farm + anchored = 1 + density = 1 + use_power = 2 + idle_power_usage = 100 // Minimal lights to keep algae alive + active_power_usage = 5000 // Powerful grow lights to stimulate oxygen production + //power_rating = 7500 //7500 W ~ 10 HP + + var/list/stored_material = list(MATERIAL_ALGAE = 10000, MATERIAL_CARBON = 0) + // Capacity increases with matter bin quality + var/list/storage_capacity = list(MATERIAL_ALGAE = 10000, MATERIAL_CARBON = 10000) + // Speed at which we convert CO2 to O2. Increases with manipulator quality + var/moles_per_tick = 1 + // Power required to convert one mole of CO2 to O2 (this is powering the grow lights). Improves with capacitors + var/power_per_mole = 1000 + var/algae_per_mole = 2 + var/carbon_per_mole = 2 + + var/recent_power_used = 0 + var/recent_moles_transferred = 0 + var/ui_error = null // For error messages to show up in nano ui. + + var/datum/gas_mixture/internal = new() + var/const/input_gas = "carbon_dioxide" + var/const/output_gas = "oxygen" + +/obj/machinery/atmospherics/binary/algae_farm/New() + ..() + desc = initial(desc) + " Its outlet port is to the [dir2text(dir)]." + default_apply_parts() + update_icon() + // TODO - Make these in acutal icon states so its not silly like this + var/image/I = image(icon = icon, icon_state = "algae-pipe-overlay", dir = dir) + I.color = PIPE_COLOR_BLUE + overlays += I + I = image(icon = icon, icon_state = "algae-pipe-overlay", dir = reverse_dir[dir]) + I.color = PIPE_COLOR_BLACK + overlays += I + +/obj/machinery/atmospherics/binary/algae_farm/Destroy() + ..() + internal = null + +/obj/machinery/atmospherics/binary/algae_farm/process() + ..() + recent_moles_transferred = 0 + + if(inoperable() || use_power < 2) + return 0 + + // STEP 1 - Check material resources + if(stored_material[MATERIAL_ALGAE] < algae_per_mole) + ui_error = "Insufficient [material_display_name(MATERIAL_ALGAE)] to process." + return + if(stored_material[MATERIAL_CARBON] + carbon_per_mole > storage_capacity[MATERIAL_CARBON]) + ui_error = "[material_display_name(MATERIAL_CARBON)] output storage is full." + return + var/moles_to_convert = min(moles_per_tick,\ + stored_material[MATERIAL_ALGAE] * algae_per_mole,\ + storage_capacity[MATERIAL_CARBON] - stored_material[MATERIAL_CARBON] * carbon_per_mole) + + // STEP 2 - Take the CO2 out of the input! + var/power_draw = scrub_gas(src, list(input_gas), air1, internal, moles_to_convert) + network1.update = 1 + if (power_draw > 0) + use_power(power_draw) + last_power_draw += power_draw + + // STEP 3 - Convert CO2 to O2 (Note: We know our internal group multipier is 1, so just be cool) + var/co2_moles = internal.gas[input_gas] + if(co2_moles < MINIMUM_MOLES_TO_FILTER) + ui_error = "Insufficient [gas_data.name[input_gas]] to process." + return + + // STEP 4 - Consume the resources + var/converted_moles = min(co2_moles, moles_per_tick) + use_power(converted_moles * power_per_mole) + last_power_draw += converted_moles * power_per_mole + stored_material[MATERIAL_ALGAE] -= converted_moles * algae_per_mole + stored_material[MATERIAL_CARBON] += converted_moles * carbon_per_mole + + // STEP 5 - Output the converted oxygen. Fow now we output for free! + internal.adjust_gas(input_gas, -converted_moles) + air2.adjust_gas_temp(output_gas, converted_moles, internal.temperature) + network2.update = 1 + recent_moles_transferred = converted_moles + ui_error = null // Success! + update_icon() + +/obj/machinery/atmospherics/binary/algae_farm/update_icon() + if(inoperable() || !anchored) + icon_state = "algae-off" + else if(recent_moles_transferred >= moles_per_tick) + icon_state = "aglae-full" + else if(recent_moles_transferred > 0) + icon_state = "algae-full" + else + icon_state = "algae-on" + return 1 + +/obj/machinery/atmospherics/binary/algae_farm/attackby(obj/item/weapon/W as obj, mob/user as mob) + src.add_fingerprint(user) + if(default_deconstruction_screwdriver(user, W)) + return + if(default_deconstruction_crowbar(user, W)) + return + if(try_load_materials(user, W)) + return + else + user << "You cannot insert this item into \the [src]!" + return + +/obj/machinery/atmospherics/binary/algae_farm/attack_hand(mob/user) + if(..()) return 1 + ui_interact(user) + +/obj/machinery/atmospherics/binary/algae_farm/ui_interact(mob/user, ui_key = "main", var/datum/nanoui/ui = null, var/force_open = 1, var/datum/nano_ui/master_ui = null, var/datum/topic_state/state = default_state) + var/data[0] + data["panelOpen"] = panel_open + + var/materials_ui[0] + for(var/M in stored_material) + materials_ui[++materials_ui.len] = list( + "name" = M, + "display" = material_display_name(M), + "qty" = stored_material[M], + "max" = storage_capacity[M], + "percent" = (stored_material[M] / storage_capacity[M] * 100)) + data["materials"] = materials_ui + data["last_flow_rate"] = last_flow_rate + data["last_power_draw"] = last_power_draw + data["inputDir"] = dir2text(reverse_dir[dir]) + data["outputDir"] = dir2text(dir) + data["usePower"] = use_power + data["errorText"] = ui_error + + if(air1 && network1 && node1) + data["input"] = list( + "pressure" = air1.return_pressure(), + "name" = gas_data.name[input_gas], + "percent" = air1.total_moles > 0 ? round((air1.gas[input_gas] / air1.total_moles) * 100) : 0, + "moles" = round(air1.gas[input_gas], 0.01)) + if(air2 && network2 && node2) + data["output"] = list( + "pressure" = air2.return_pressure(), + "name" = gas_data.name[output_gas], + "percent" = air2.total_moles ? round((air2.gas[output_gas] / air2.total_moles) * 100) : 0, + "moles" = round(air2.gas[output_gas], 0.01)) + + // update the ui if it exists, returns null if no ui is passed/found + ui = nanomanager.try_update_ui(user, src, ui_key, ui, data, force_open) + if (!ui) + ui = new(user, src, ui_key, "algae_farm_vr.tmpl", "Algae Farm Control Panel", 500, 600) + ui.set_initial_data(data) + ui.set_auto_update(TRUE) + ui.open() + +/obj/machinery/atmospherics/binary/algae_farm/Topic(href, href_list) + if(..()) + return 1 + usr.set_machine(src) + add_fingerprint(usr) + + // Queue management can be done even while busy + if(href_list["activate"]) + update_use_power(2) + update_icon() + updateUsrDialog() + return + + if(href_list["deactivate"]) + update_use_power(1) + update_icon() + updateUsrDialog() + return + + if(href_list["ejectMaterial"]) + var/matName = href_list["ejectMaterial"] + if(!(matName in stored_material)) + return + eject_materials(matName, 0) + updateUsrDialog() + return + + +// TODO - These should be replaced with materials datum. + +// 0 amount = 0 means ejecting a full stack; -1 means eject everything +/obj/machinery/atmospherics/binary/algae_farm/proc/eject_materials(var/material_name, var/amount) + var/recursive = amount == -1 ? 1 : 0 + var/material/matdata = get_material_by_name(material_name) + var/stack_type = matdata.stack_type + var/obj/item/stack/material/S = new stack_type(loc) + if(amount <= 0) + amount = S.max_amount + var/ejected = min(round(stored_material[material_name] / S.perunit), amount) + S.amount = min(ejected, amount) + if(S.amount <= 0) + qdel(S) + return + stored_material[material_name] -= ejected * S.perunit + if(recursive && stored_material[material_name] >= S.perunit) + eject_materials(material_name, -1) + +// Attept to load materials. Returns 0 if item wasn't a stack of materials, otherwise 1 (even if failed to load) +/obj/machinery/atmospherics/binary/algae_farm/proc/try_load_materials(var/mob/user, var/obj/item/stack/material/S) + if(!istype(S)) + return 0 + if(!(S.material.name in stored_material)) + user << "\The [src] doesn't accept [material_display_name(S.material)]!" + return 1 + var/max_res_amount = storage_capacity[S.material.name] + if(stored_material[S.material.name] + S.perunit <= max_res_amount) + var/count = 0 + while(stored_material[S.material.name] + S.perunit <= max_res_amount && S.amount >= 1) + stored_material[S.material.name] += S.perunit + S.use(1) + count++ + user.visible_message("\The [user] inserts [S.name] into \the [src].", "You insert [count] [S.name] into \the [src].") + updateUsrDialog() + else + user << "\The [src] cannot hold more [S.name]." + return 1 + +/material/algae + name = MATERIAL_ALGAE + stack_type = /obj/item/stack/material/algae + icon_colour = "#557722" + shard_type = SHARD_STONE_PIECE + weight = 10 + hardness = 10 + sheet_singular_name = "sheet" + sheet_plural_name = "sheets" + +/obj/item/stack/material/algae + name = "algae sheet" + icon_state = "sheet-uranium" + color = "#557722" + default_type = MATERIAL_ALGAE + +/material/carbon + name = MATERIAL_CARBON + stack_type = /obj/item/stack/material/carbon + icon_colour = "#303030" + shard_type = SHARD_SPLINTER + weight = 5 + hardness = 20 + icon_base = "stone" + icon_reinf = "reinf_stone" + door_icon_base = "stone" + sheet_singular_name = "sheet" + sheet_plural_name = "sheets" + +/obj/item/stack/material/carbon + name = "carbon sheet" + icon_state = "sheet-metal" + color = "#303030" + default_type = MATERIAL_CARBON + +#undef MATERIAL_ALGAE +#undef MATERIAL_CARBON diff --git a/code/game/objects/items/weapons/circuitboards/circuitboards_vr.dm b/code/game/objects/items/weapons/circuitboards/circuitboards_vr.dm index 25b2514c34..a41d620cb2 100644 --- a/code/game/objects/items/weapons/circuitboards/circuitboards_vr.dm +++ b/code/game/objects/items/weapons/circuitboards/circuitboards_vr.dm @@ -14,3 +14,15 @@ /obj/item/weapon/stock_parts/matter_bin = 2, /obj/item/weapon/stock_parts/manipulator = 2, /obj/item/weapon/stock_parts/console_screen = 1) + +// Board for the algae oxygen generator in algae_generator.dm +/obj/item/weapon/circuitboard/algae_farm + name = T_BOARD("algae oxygen generator") + build_path = /obj/machinery/atmospherics/binary/algae_farm + board_type = new /datum/frame/frame_types/machine + origin_tech = list(TECH_ENGINEERING = 3, TECH_BIO = 2) + req_components = list( + /obj/item/weapon/stock_parts/matter_bin = 2, + /obj/item/weapon/stock_parts/manipulator = 1, + /obj/item/weapon/stock_parts/capacitor = 1, + /obj/item/weapon/stock_parts/console_screen = 1) diff --git a/code/modules/research/designs_vr.dm b/code/modules/research/designs_vr.dm index 4e5ebe6ca3..07285cf921 100644 --- a/code/modules/research/designs_vr.dm +++ b/code/modules/research/designs_vr.dm @@ -128,3 +128,10 @@ materials = list(DEFAULT_WALL_MATERIAL = 6000, "glass" = 3000) build_path = /obj/item/weapon/gun/energy/netgun sort_string = "TAADF" + +/datum/design/circuit/algae_farm + name = "Algae Oxygen Generator" + id = "algae_farm" + req_tech = list(TECH_ENGINEERING = 3, TECH_BIO = 2) + build_path = /obj/item/weapon/circuitboard/algae_farm + sort_string = "HABAE" diff --git a/icons/obj/machines/algae_vr.dmi b/icons/obj/machines/algae_vr.dmi new file mode 100644 index 0000000000..37457037ca Binary files /dev/null and b/icons/obj/machines/algae_vr.dmi differ diff --git a/maps/tether/tether-1-surface.dmm b/maps/tether/tether-1-surface.dmm index a70d7d4e4c..336b3049f9 100644 --- a/maps/tether/tether-1-surface.dmm +++ b/maps/tether/tether-1-surface.dmm @@ -38,4455 +38,4470 @@ "aaL" = (/obj/machinery/mineral/output,/obj/machinery/conveyor{dir = 10; id = "mining_interior"},/turf/simulated/floor/plating,/area/tether/surfacebase/mining_main/refinery) "aaM" = (/obj/machinery/conveyor{dir = 4; id = "mining_interior"},/turf/simulated/floor/plating,/area/tether/surfacebase/mining_main/refinery) "aaN" = (/obj/machinery/mineral/input,/obj/machinery/conveyor{dir = 4; id = "mining_interior"},/turf/simulated/floor/plating,/area/tether/surfacebase/mining_main/refinery) -"aaO" = (/obj/machinery/mineral/processing_unit,/turf/simulated/floor/plating,/area/tether/surfacebase/mining_main/refinery) +"aaO" = (/obj/machinery/mineral/processing_unit,/turf/simulated/floor/tiled/techfloor,/area/tether/surfacebase/mining_main/refinery) "aaP" = (/obj/machinery/mineral/output,/obj/machinery/conveyor{dir = 4; id = "mining_interior"},/turf/simulated/floor/plating,/area/tether/surfacebase/mining_main/refinery) -"aaQ" = (/obj/machinery/mineral/stacking_machine,/turf/simulated/floor/plating,/area/tether/surfacebase/mining_main/refinery) +"aaQ" = (/obj/machinery/mineral/stacking_machine,/turf/simulated/floor/tiled/techfloor,/area/tether/surfacebase/mining_main/refinery) "aaR" = (/obj/machinery/mineral/output,/obj/machinery/conveyor{dir = 9; id = "mining_interior"},/turf/simulated/floor/plating,/area/tether/surfacebase/mining_main/refinery) "aaS" = (/obj/structure/grille,/obj/structure/railing{dir = 4},/obj/machinery/power/apc{dir = 2; name = "south bump"; pixel_y = -28},/obj/structure/cable/green{d2 = 4; icon_state = "0-4"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 5},/turf/simulated/floor/tiled/techmaint,/area/tether/surfacebase/mining_main/airlock) "aaT" = (/obj/effect/floor_decal/industrial/warning{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/cable/green{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 1},/turf/simulated/floor/tiled,/area/tether/surfacebase/mining_main/airlock) "aaU" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 9},/obj/machinery/embedded_controller/radio/airlock/phoron{id_tag = "mining_airlock"; pixel_x = 25},/obj/machinery/airlock_sensor/phoron{id_tag = "mining_airlock_sensor"; pixel_x = 25; pixel_y = 11},/turf/simulated/floor/tiled,/area/tether/surfacebase/mining_main/airlock) -"aaV" = (/obj/machinery/mineral/unloading_machine,/turf/simulated/floor/plating,/area/tether/surfacebase/mining_main/refinery) +"aaV" = (/obj/machinery/mineral/unloading_machine,/turf/simulated/floor/tiled/techfloor,/area/tether/surfacebase/mining_main/refinery) "aaW" = (/obj/structure/grille,/obj/structure/window/reinforced{dir = 5; icon_state = "fwindow"},/turf/simulated/floor/plating,/area/tether/surfacebase/mining_main/refinery) -"aaX" = (/obj/structure/grille,/obj/structure/window/reinforced{dir = 5; icon_state = "fwindow"},/obj/machinery/mineral/processing_unit_console{layer = 3.3},/turf/simulated/floor/plating,/area/tether/surfacebase/mining_main/refinery) -"aaY" = (/obj/structure/grille,/obj/structure/window/reinforced{dir = 5; icon_state = "fwindow"},/obj/machinery/mineral/stacking_unit_console{layer = 3.3},/turf/simulated/floor/plating,/area/tether/surfacebase/mining_main/refinery) -"aaZ" = (/obj/structure/plasticflaps,/obj/machinery/conveyor{dir = 2; id = "mining_interior"},/turf/simulated/floor/plating,/area/tether/surfacebase/mining_main/refinery) -"aba" = (/turf/simulated/wall,/area/maintenance/lower/trash_pit) -"abb" = (/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"},/obj/machinery/door/firedoor/glass,/obj/machinery/door/airlock/external{frequency = 1379; icon_state = "door_locked"; id_tag = "mining_airlock_inner"; locked = 1},/turf/simulated/floor/tiled,/area/tether/surfacebase/mining_main/airlock) -"abc" = (/obj/machinery/door/firedoor/glass,/obj/machinery/door/airlock/external{frequency = 1379; icon_state = "door_locked"; id_tag = "mining_airlock_inner"; locked = 1},/turf/simulated/floor/tiled,/area/tether/surfacebase/mining_main/airlock) -"abd" = (/obj/machinery/conveyor{dir = 6; id = "mining_inbound"},/turf/simulated/floor/plating,/area/tether/surfacebase/mining_main/refinery) -"abe" = (/obj/machinery/conveyor{dir = 8; id = "mining_inbound"},/turf/simulated/floor/plating,/area/tether/surfacebase/mining_main/refinery) -"abf" = (/obj/structure/plasticflaps/mining,/obj/machinery/conveyor{dir = 8; id = "mining_inbound"},/turf/simulated/floor/plating,/area/tether/surfacebase/mining_main/refinery) -"abg" = (/obj/machinery/mineral/input,/obj/machinery/conveyor{dir = 5; id = "mining_inbound"},/turf/simulated/floor/plating,/area/tether/surfacebase/mining_main/refinery) -"abh" = (/obj/machinery/disposal,/obj/structure/disposalpipe/trunk{dir = 4},/turf/simulated/floor/tiled,/area/tether/surfacebase/mining_main/refinery) -"abi" = (/obj/machinery/camera/network/cargo,/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled,/area/tether/surfacebase/mining_main/refinery) -"abj" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/unary/vent_scrubber/on,/turf/simulated/floor/tiled/steel_grid,/area/tether/surfacebase/mining_main/refinery) -"abk" = (/obj/machinery/alarm{frequency = 1441; pixel_y = 22},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled/steel_grid,/area/tether/surfacebase/mining_main/refinery) -"abl" = (/obj/machinery/firealarm{dir = 2; layer = 3.3; pixel_x = 0; pixel_y = 26},/obj/structure/disposalpipe/segment{dir = 2; icon_state = "pipe-c"},/turf/simulated/floor/tiled,/area/tether/surfacebase/mining_main/refinery) -"abm" = (/obj/machinery/conveyor_switch/oneway{id = "mining_internal"; layer = 3.3; name = "refining conveyor"; pixel_y = 14},/turf/simulated/floor/tiled,/area/tether/surfacebase/mining_main/refinery) -"abn" = (/turf/simulated/floor/tiled,/area/tether/surfacebase/mining_main/refinery) -"abo" = (/obj/machinery/atmospherics/unary/vent_pump/on,/turf/simulated/floor/tiled,/area/tether/surfacebase/mining_main/refinery) -"abp" = (/turf/simulated/floor/tiled/steel_grid,/area/tether/surfacebase/mining_main/refinery) -"abq" = (/obj/effect/floor_decal/industrial/loading,/obj/machinery/light_switch{pixel_x = 25},/obj/structure/closet/crate,/turf/simulated/floor/tiled,/area/tether/surfacebase/mining_main/refinery) -"abr" = (/obj/structure/catwalk,/obj/effect/decal/cleanable/dirt,/obj/structure/closet/crate,/turf/simulated/floor/plating,/area/maintenance/lower/trash_pit) -"abs" = (/obj/effect/floor_decal/techfloor{tag = "icon-techfloor_edges (NORTH)"; icon_state = "techfloor_edges"; dir = 1},/obj/effect/floor_decal/techfloor{tag = "icon-techfloor_edges (NORTHEAST)"; icon_state = "techfloor_edges"; dir = 5},/obj/structure/railing{dir = 8},/obj/effect/decal/cleanable/dirt,/obj/effect/floor_decal/rust,/obj/structure/closet,/obj/random/maintenance/clean,/obj/random/maintenance/cargo,/obj/random/drinkbottle,/obj/random/maintenance/cargo,/turf/simulated/floor/plating,/area/maintenance/lower/trash_pit) -"abt" = (/turf/simulated/wall,/area/tether/surfacebase/mining_main/storage) -"abu" = (/obj/machinery/computer/area_atmos/tag{dir = 4; scrub_id = "mining_airlock_scrubber"},/turf/simulated/floor/tiled/techfloor,/area/tether/surfacebase/mining_main/storage) -"abv" = (/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (WEST)"; icon_state = "borderfloor"; dir = 8},/obj/effect/floor_decal/corner/brown/border{tag = "icon-bordercolor (WEST)"; icon_state = "bordercolor"; dir = 8},/obj/effect/floor_decal/borderfloor/corner2{tag = "icon-borderfloorcorner2 (WEST)"; icon_state = "borderfloorcorner2"; dir = 8},/obj/effect/floor_decal/corner/brown/bordercorner2{tag = "icon-bordercolorcorner2 (WEST)"; icon_state = "bordercolorcorner2"; dir = 8},/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,/area/tether/surfacebase/mining_main/storage) -"abw" = (/obj/machinery/light{dir = 4; icon_state = "tube1"},/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (EAST)"; icon_state = "borderfloor"; dir = 4},/obj/effect/floor_decal/corner/brown/border{tag = "icon-bordercolor (EAST)"; icon_state = "bordercolor"; dir = 4},/obj/effect/floor_decal/borderfloor/corner2{tag = "icon-borderfloorcorner2 (SOUTHEAST)"; icon_state = "borderfloorcorner2"; dir = 6},/obj/effect/floor_decal/corner/brown/bordercorner2{tag = "icon-bordercolorcorner2 (SOUTHEAST)"; icon_state = "bordercolorcorner2"; dir = 6},/obj/machinery/access_button/airlock_interior{master_tag = "mining_airlock"; pixel_x = 25; pixel_y = -8},/turf/simulated/floor/tiled,/area/tether/surfacebase/mining_main/storage) -"abx" = (/obj/machinery/conveyor{dir = 6; id = "mining_outbound"},/turf/simulated/floor/plating,/area/tether/surfacebase/mining_main/refinery) -"aby" = (/obj/machinery/conveyor{dir = 8; id = "mining_outbound"},/turf/simulated/floor/plating,/area/tether/surfacebase/mining_main/refinery) -"abz" = (/obj/structure/plasticflaps/mining,/obj/machinery/conveyor{dir = 8; id = "mining_outbound"},/turf/simulated/floor/plating,/area/tether/surfacebase/mining_main/refinery) -"abA" = (/obj/effect/floor_decal/industrial/outline/yellow,/turf/simulated/floor/tiled/steel_dirty,/area/tether/surfacebase/mining_main/refinery) -"abB" = (/obj/effect/floor_decal/industrial/warning{dir = 8},/obj/machinery/conveyor_switch/oneway{id = "mining_outbound"; layer = 3.3; name = "outbound conveyor"; pixel_y = 14},/turf/simulated/floor/tiled/steel_grid,/area/tether/surfacebase/mining_main/refinery) -"abC" = (/obj/machinery/power/apc{dir = 2; name = "south bump"; pixel_y = -28},/obj/structure/cable/green{d2 = 4; icon_state = "0-4"},/turf/simulated/floor/tiled,/area/tether/surfacebase/mining_main/refinery) -"abD" = (/obj/item/device/radio/intercom{name = "Station Intercom (General)"; pixel_y = -21},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 5},/turf/simulated/floor/tiled,/area/tether/surfacebase/mining_main/refinery) -"abE" = (/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/tether/surfacebase/mining_main/refinery) -"abF" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 6},/obj/structure/cable/green{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/structure/disposalpipe/segment,/obj/structure/cable/green{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 1},/turf/simulated/floor/tiled,/area/tether/surfacebase/mining_main/refinery) -"abG" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/turf/simulated/floor/tiled,/area/tether/surfacebase/mining_main/refinery) -"abH" = (/obj/machinery/light,/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/manifold/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/turf/simulated/floor/tiled,/area/tether/surfacebase/mining_main/refinery) -"abI" = (/obj/machinery/newscaster{pixel_x = 0; pixel_y = -30},/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/steel_grid,/area/tether/surfacebase/mining_main/refinery) -"abJ" = (/obj/machinery/camera/network/cargo{c_tag = "CRG - Mining Dock"; dir = 1; name = "security camera"},/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,/area/tether/surfacebase/mining_main/refinery) -"abK" = (/obj/machinery/door/airlock/maintenance/common{name = "Trash Pit Access"; req_one_access = list(48)},/obj/machinery/door/firedoor/glass,/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/steel_grid,/area/tether/surfacebase/mining_main/refinery) -"abL" = (/obj/structure/catwalk,/obj/effect/decal/cleanable/dirt,/obj/structure/cable/green{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 10},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 10},/turf/simulated/floor/plating,/area/maintenance/lower/trash_pit) -"abM" = (/obj/structure/catwalk,/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/plating,/area/maintenance/lower/trash_pit) -"abN" = (/obj/effect/floor_decal/techfloor{tag = "icon-techfloor_edges (EAST)"; icon_state = "techfloor_edges"; dir = 4},/obj/structure/railing{dir = 8},/obj/effect/decal/cleanable/dirt,/obj/effect/floor_decal/rust,/obj/machinery/light/small{dir = 4; pixel_y = 0},/turf/simulated/floor/plating,/area/maintenance/lower/trash_pit) -"abO" = (/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (WEST)"; icon_state = "borderfloor"; dir = 8},/obj/effect/floor_decal/corner/brown/border{tag = "icon-bordercolor (WEST)"; icon_state = "bordercolor"; dir = 8},/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"},/obj/machinery/camera/network/cargo{c_tag = "CRG - Mining Airlock"; dir = 4},/turf/simulated/floor/tiled,/area/tether/surfacebase/mining_main/storage) -"abP" = (/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (EAST)"; icon_state = "borderfloor"; dir = 4},/obj/effect/floor_decal/corner/brown/border{tag = "icon-bordercolor (EAST)"; icon_state = "bordercolor"; dir = 4},/turf/simulated/floor/tiled,/area/tether/surfacebase/mining_main/storage) -"abQ" = (/turf/simulated/wall,/area/tether/surfacebase/mining_main/eva) -"abR" = (/obj/structure/grille,/obj/structure/window/reinforced{dir = 5; icon_state = "fwindow"},/obj/machinery/door/firedoor,/turf/simulated/floor/plating,/area/tether/surfacebase/mining_main/eva) -"abS" = (/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/structure/disposalpipe/segment,/obj/machinery/door/airlock/glass_mining{name = "Production Area"; req_access = list(48)},/turf/simulated/floor/tiled,/area/tether/surfacebase/mining_main/eva) -"abT" = (/obj/machinery/door/firedoor/glass,/obj/machinery/door/airlock/glass_mining{name = "Production Area"; req_access = list(48)},/turf/simulated/floor/tiled,/area/tether/surfacebase/mining_main/eva) -"abU" = (/turf/simulated/wall,/area/tether/surfacebase/mining_main/uxstorage) -"abV" = (/obj/structure/catwalk,/obj/effect/decal/cleanable/dirt,/obj/effect/floor_decal/rust,/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 5},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 5},/turf/simulated/floor/plating,/area/maintenance/lower/trash_pit) -"abW" = (/obj/structure/catwalk,/obj/effect/decal/cleanable/dirt,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 10},/turf/simulated/floor/plating,/area/maintenance/lower/trash_pit) -"abX" = (/obj/effect/floor_decal/techfloor{tag = "icon-techfloor_edges (EAST)"; icon_state = "techfloor_edges"; dir = 4},/obj/structure/railing{dir = 8},/obj/effect/decal/cleanable/dirt,/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 8},/turf/simulated/floor/plating,/area/maintenance/lower/trash_pit) -"abY" = (/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (WEST)"; icon_state = "borderfloor"; dir = 8},/obj/effect/floor_decal/corner/brown/border{tag = "icon-bordercolor (WEST)"; icon_state = "bordercolor"; dir = 8},/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"},/obj/item/device/radio/intercom{dir = 8; name = "Station Intercom (General)"; pixel_x = -28},/turf/simulated/floor/tiled,/area/tether/surfacebase/mining_main/storage) -"abZ" = (/obj/effect/floor_decal/borderfloor/corner{tag = "icon-borderfloorcorner (EAST)"; icon_state = "borderfloorcorner"; dir = 4},/obj/effect/floor_decal/corner/brown/bordercorner{tag = "icon-bordercolorcorner (EAST)"; icon_state = "bordercolorcorner"; dir = 4},/turf/simulated/floor/tiled,/area/tether/surfacebase/mining_main/storage) -"aca" = (/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (NORTH)"; icon_state = "borderfloor"; dir = 1},/obj/effect/floor_decal/corner/brown/border{tag = "icon-bordercolor (NORTH)"; icon_state = "bordercolor"; dir = 1},/obj/machinery/firealarm{dir = 2; layer = 3.3; pixel_x = 0; pixel_y = 26},/turf/simulated/floor/tiled,/area/tether/surfacebase/mining_main/storage) -"acb" = (/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (NORTH)"; icon_state = "borderfloor"; dir = 1},/obj/effect/floor_decal/corner/brown/border{tag = "icon-bordercolor (NORTH)"; icon_state = "bordercolor"; dir = 1},/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/tiled,/area/tether/surfacebase/mining_main/storage) -"acc" = (/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (NORTH)"; icon_state = "borderfloor"; dir = 1},/obj/effect/floor_decal/corner/brown/border{tag = "icon-bordercolor (NORTH)"; icon_state = "bordercolor"; dir = 1},/obj/machinery/light_switch{pixel_y = 25},/turf/simulated/floor/tiled,/area/tether/surfacebase/mining_main/storage) -"acd" = (/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (NORTH)"; icon_state = "borderfloor"; dir = 1},/obj/effect/floor_decal/corner/brown/border{tag = "icon-bordercolor (NORTH)"; icon_state = "bordercolor"; dir = 1},/turf/simulated/floor/tiled,/area/tether/surfacebase/mining_main/storage) -"ace" = (/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (NORTH)"; icon_state = "borderfloor"; dir = 1},/obj/effect/floor_decal/corner/brown/border{tag = "icon-bordercolor (NORTH)"; icon_state = "bordercolor"; dir = 1},/obj/machinery/alarm{frequency = 1441; pixel_y = 22},/turf/simulated/floor/tiled,/area/tether/surfacebase/mining_main/storage) -"acf" = (/obj/machinery/light{dir = 1},/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (NORTH)"; icon_state = "borderfloor"; dir = 1},/obj/effect/floor_decal/corner/brown/border{tag = "icon-bordercolor (NORTH)"; icon_state = "bordercolor"; dir = 1},/turf/simulated/floor/tiled,/area/tether/surfacebase/mining_main/storage) -"acg" = (/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (NORTH)"; icon_state = "borderfloor"; dir = 1},/obj/effect/floor_decal/corner/brown/border{tag = "icon-bordercolor (NORTH)"; icon_state = "bordercolor"; dir = 1},/obj/machinery/disposal,/obj/structure/disposalpipe/trunk,/turf/simulated/floor/tiled,/area/tether/surfacebase/mining_main/storage) -"ach" = (/obj/structure/reagent_dispensers/watertank,/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (NORTH)"; icon_state = "borderfloor"; dir = 1},/obj/effect/floor_decal/corner/brown/border{tag = "icon-bordercolor (NORTH)"; icon_state = "bordercolor"; dir = 1},/obj/machinery/camera/network/cargo,/turf/simulated/floor/tiled,/area/tether/surfacebase/mining_main/storage) -"aci" = (/obj/structure/reagent_dispensers/fueltank,/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (NORTHEAST)"; icon_state = "borderfloor"; dir = 5},/obj/effect/floor_decal/corner/brown/border{tag = "icon-bordercolor (NORTHEAST)"; icon_state = "bordercolor"; dir = 5},/obj/effect/floor_decal/borderfloor/corner2{tag = "icon-borderfloorcorner2 (NORTHEAST)"; icon_state = "borderfloorcorner2"; dir = 5},/obj/effect/floor_decal/corner/brown/bordercorner2{tag = "icon-bordercolorcorner2 (NORTHEAST)"; icon_state = "bordercolorcorner2"; dir = 5},/obj/machinery/status_display{pixel_x = 32; pixel_y = 0},/obj/structure/extinguisher_cabinet{pixel_y = 30},/turf/simulated/floor/tiled,/area/tether/surfacebase/mining_main/storage) -"acj" = (/obj/machinery/recharge_station,/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (NORTHWEST)"; icon_state = "borderfloor"; dir = 9},/obj/effect/floor_decal/corner/brown/border{tag = "icon-bordercolor (NORTHWEST)"; icon_state = "bordercolor"; dir = 9},/obj/effect/floor_decal/borderfloor/corner2{tag = "icon-borderfloorcorner2 (SOUTHWEST)"; icon_state = "borderfloorcorner2"; dir = 10},/obj/effect/floor_decal/corner/brown/bordercorner2{tag = "icon-bordercolorcorner2 (SOUTHWEST)"; icon_state = "bordercolorcorner2"; dir = 10},/turf/simulated/floor/tiled,/area/tether/surfacebase/mining_main/eva) -"ack" = (/obj/structure/closet/secure_closet/miner,/obj/item/weapon/tank/jetpack/oxygen,/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (NORTH)"; icon_state = "borderfloor"; dir = 1},/obj/effect/floor_decal/corner/brown/border{tag = "icon-bordercolor (NORTH)"; icon_state = "bordercolor"; dir = 1},/turf/simulated/floor/tiled,/area/tether/surfacebase/mining_main/eva) -"acl" = (/obj/structure/table/rack,/obj/item/clothing/mask/breath,/obj/item/weapon/mining_scanner,/obj/item/weapon/rig/industrial/equipped,/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (NORTHEAST)"; icon_state = "borderfloor"; dir = 5},/obj/effect/floor_decal/corner/brown/border{tag = "icon-bordercolor (NORTHEAST)"; icon_state = "bordercolor"; dir = 5},/turf/simulated/floor/tiled,/area/tether/surfacebase/mining_main/eva) -"acm" = (/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (NORTHWEST)"; icon_state = "borderfloor"; dir = 9},/obj/effect/floor_decal/corner/brown/border{tag = "icon-bordercolor (NORTHWEST)"; icon_state = "bordercolor"; dir = 9},/obj/effect/floor_decal/borderfloor/corner2{tag = "icon-borderfloorcorner2 (NORTH)"; icon_state = "borderfloorcorner2"; dir = 1},/obj/effect/floor_decal/corner/brown/bordercorner2{tag = "icon-bordercolorcorner2 (NORTH)"; icon_state = "bordercolorcorner2"; dir = 1},/obj/machinery/alarm{dir = 4; icon_state = "alarm0"; pixel_x = -22},/turf/simulated/floor/tiled,/area/tether/surfacebase/mining_main/eva) -"acn" = (/obj/effect/floor_decal/industrial/warning{dir = 1},/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"},/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled,/area/tether/surfacebase/mining_main/eva) -"aco" = (/obj/effect/floor_decal/industrial/warning{dir = 1},/turf/simulated/floor/tiled,/area/tether/surfacebase/mining_main/eva) -"acp" = (/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (NORTHEAST)"; icon_state = "borderfloor"; dir = 5},/obj/effect/floor_decal/corner/brown/border{tag = "icon-bordercolor (NORTHEAST)"; icon_state = "bordercolor"; dir = 5},/obj/effect/floor_decal/borderfloor/corner2{tag = "icon-borderfloorcorner2 (EAST)"; icon_state = "borderfloorcorner2"; dir = 4},/obj/effect/floor_decal/corner/brown/bordercorner2{tag = "icon-bordercolorcorner2 (EAST)"; icon_state = "bordercolorcorner2"; dir = 4},/obj/machinery/light_switch{pixel_x = 25},/obj/machinery/camera/network/cargo,/turf/simulated/floor/tiled,/area/tether/surfacebase/mining_main/eva) -"acq" = (/obj/structure/ore_box,/turf/simulated/floor/tiled,/area/tether/surfacebase/mining_main/uxstorage) -"acr" = (/obj/structure/catwalk,/obj/effect/decal/cleanable/dirt,/obj/effect/floor_decal/rust,/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/plating,/area/maintenance/lower/trash_pit) -"acs" = (/obj/structure/catwalk,/obj/effect/decal/cleanable/dirt,/obj/effect/floor_decal/rust,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/plating,/area/maintenance/lower/trash_pit) -"act" = (/obj/effect/floor_decal/techfloor{tag = "icon-techfloor_edges (EAST)"; icon_state = "techfloor_edges"; dir = 4},/obj/structure/railing{dir = 8},/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/plating,/area/maintenance/lower/trash_pit) -"acu" = (/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (SOUTHWEST)"; icon_state = "borderfloor"; dir = 10},/obj/effect/floor_decal/corner/brown/border{tag = "icon-bordercolor (SOUTHWEST)"; icon_state = "bordercolor"; dir = 10},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 8},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 8},/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/cable/green{d1 = 2; d2 = 4; icon_state = "2-4"},/turf/simulated/floor/tiled,/area/tether/surfacebase/mining_main/storage) -"acv" = (/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/corner/brown/border,/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/tether/surfacebase/mining_main/storage) -"acw" = (/obj/effect/floor_decal/borderfloor/corner{tag = "icon-borderfloorcorner (WEST)"; icon_state = "borderfloorcorner"; dir = 8},/obj/effect/floor_decal/corner/brown/bordercorner{tag = "icon-bordercolorcorner (WEST)"; icon_state = "bordercolorcorner"; dir = 8},/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/tether/surfacebase/mining_main/storage) -"acx" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 10},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 10},/obj/structure/cable/green{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/structure/cable/green{d1 = 1; d2 = 8; icon_state = "1-8"},/turf/simulated/floor/tiled,/area/tether/surfacebase/mining_main/storage) -"acy" = (/turf/simulated/floor/tiled,/area/tether/surfacebase/mining_main/storage) -"acz" = (/obj/machinery/atmospherics/unary/vent_pump/on,/turf/simulated/floor/tiled,/area/tether/surfacebase/mining_main/storage) -"acA" = (/obj/structure/disposalpipe/segment{dir = 1; icon_state = "pipe-c"},/turf/simulated/floor/tiled,/area/tether/surfacebase/mining_main/storage) -"acB" = (/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled,/area/tether/surfacebase/mining_main/storage) -"acC" = (/obj/machinery/door/airlock/glass_mining,/obj/machinery/door/firedoor/glass,/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled,/area/tether/surfacebase/mining_main/eva) -"acD" = (/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled,/area/tether/surfacebase/mining_main/eva) -"acE" = (/obj/machinery/atmospherics/unary/vent_pump/on,/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled,/area/tether/surfacebase/mining_main/eva) -"acF" = (/obj/effect/floor_decal/borderfloor/corner{tag = "icon-borderfloorcorner (EAST)"; icon_state = "borderfloorcorner"; dir = 4},/obj/effect/floor_decal/corner/brown/bordercorner{tag = "icon-bordercolorcorner (EAST)"; icon_state = "bordercolorcorner"; dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled,/area/tether/surfacebase/mining_main/eva) -"acG" = (/obj/machinery/light{dir = 1},/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (NORTH)"; icon_state = "borderfloor"; dir = 1},/obj/effect/floor_decal/corner/brown/border{tag = "icon-bordercolor (NORTH)"; icon_state = "bordercolor"; dir = 1},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled,/area/tether/surfacebase/mining_main/eva) -"acH" = (/obj/effect/floor_decal/borderfloor/corner{tag = "icon-borderfloorcorner (NORTH)"; icon_state = "borderfloorcorner"; dir = 1},/obj/effect/floor_decal/corner/brown/bordercorner{tag = "icon-bordercolorcorner (NORTH)"; icon_state = "bordercolorcorner"; dir = 1},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled,/area/tether/surfacebase/mining_main/eva) -"acI" = (/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"},/obj/structure/disposalpipe/junction,/turf/simulated/floor/tiled,/area/tether/surfacebase/mining_main/eva) -"acJ" = (/obj/machinery/atmospherics/unary/vent_scrubber/on,/turf/simulated/floor/tiled,/area/tether/surfacebase/mining_main/eva) -"acK" = (/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (EAST)"; icon_state = "borderfloor"; dir = 4},/obj/effect/floor_decal/corner/brown/border{tag = "icon-bordercolor (EAST)"; icon_state = "bordercolor"; dir = 4},/obj/effect/floor_decal/borderfloor/corner2{tag = "icon-borderfloorcorner2 (NORTHEAST)"; icon_state = "borderfloorcorner2"; dir = 5},/obj/effect/floor_decal/corner/brown/bordercorner2{tag = "icon-bordercolorcorner2 (NORTHEAST)"; icon_state = "bordercolorcorner2"; dir = 5},/turf/simulated/floor/tiled,/area/tether/surfacebase/mining_main/eva) -"acL" = (/obj/structure/ore_box,/obj/machinery/atmospherics/unary/vent_pump/on,/turf/simulated/floor/tiled,/area/tether/surfacebase/mining_main/uxstorage) -"acM" = (/obj/structure/ore_box,/obj/machinery/atmospherics/unary/vent_scrubber/on,/obj/machinery/alarm{dir = 8; icon_state = "alarm0"; pixel_x = 24},/turf/simulated/floor/tiled,/area/tether/surfacebase/mining_main/uxstorage) -"acN" = (/obj/structure/catwalk,/obj/effect/decal/cleanable/dirt,/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/plating,/area/maintenance/lower/trash_pit) -"acO" = (/obj/effect/floor_decal/techfloor{tag = "icon-techfloor_edges (EAST)"; icon_state = "techfloor_edges"; dir = 4},/obj/structure/railing,/obj/structure/railing{dir = 8},/obj/effect/decal/cleanable/dirt,/obj/machinery/alarm{dir = 8; icon_state = "alarm0"; pixel_x = 24},/obj/structure/closet/crate,/obj/random/maintenance/clean,/obj/random/maintenance/cargo,/obj/random/maintenance/cargo,/turf/simulated/floor/plating,/area/maintenance/lower/trash_pit) -"acP" = (/obj/machinery/door/airlock/maintenance/common{name = "Mining Maintenance Access"; req_one_access = list(48)},/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/firedoor/glass,/turf/simulated/floor/tiled/techfloor,/area/tether/surfacebase/mining_main/storage) -"acQ" = (/obj/machinery/light{dir = 8},/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (WEST)"; icon_state = "borderfloor"; dir = 8},/obj/effect/floor_decal/corner/brown/border{tag = "icon-bordercolor (WEST)"; icon_state = "bordercolor"; dir = 8},/turf/simulated/floor/tiled,/area/tether/surfacebase/mining_main/storage) -"acR" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 5},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 5},/obj/structure/cable/green{d1 = 1; d2 = 4; icon_state = "1-4"},/turf/simulated/floor/tiled,/area/tether/surfacebase/mining_main/storage) -"acS" = (/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/tether/surfacebase/mining_main/storage) -"acT" = (/obj/machinery/atmospherics/pipe/manifold4w/hidden/supply,/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 1},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/tiled,/area/tether/surfacebase/mining_main/storage) -"acU" = (/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/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled,/area/tether/surfacebase/mining_main/storage) -"acV" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/cable/green{d1 = 2; d2 = 8; icon_state = "2-8"},/turf/simulated/floor/tiled,/area/tether/surfacebase/mining_main/storage) -"acW" = (/obj/machinery/door/airlock/glass_mining,/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/tiled,/area/tether/surfacebase/mining_main/eva) -"acX" = (/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/tether/surfacebase/mining_main/eva) -"acY" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/manifold/hidden/supply,/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/tiled,/area/tether/surfacebase/mining_main/eva) -"acZ" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/cable/green{d1 = 2; d2 = 8; icon_state = "2-8"},/turf/simulated/floor/tiled,/area/tether/surfacebase/mining_main/eva) -"ada" = (/obj/machinery/atmospherics/pipe/manifold4w/hidden/supply,/obj/machinery/atmospherics/pipe/manifold4w/hidden/scrubbers,/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/structure/disposalpipe/segment,/turf/simulated/floor/tiled,/area/tether/surfacebase/mining_main/eva) -"adb" = (/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,/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/mining_main/eva) -"adc" = (/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/mining_main/eva) -"add" = (/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"},/turf/simulated/floor/tiled,/area/tether/surfacebase/mining_main/eva) -"ade" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 9},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/tiled,/area/tether/surfacebase/mining_main/uxstorage) -"adf" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 9},/obj/structure/cable/green{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/machinery/light_switch{pixel_x = 25},/turf/simulated/floor/tiled,/area/tether/surfacebase/mining_main/uxstorage) -"adg" = (/obj/structure/catwalk,/obj/effect/decal/cleanable/dirt,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/plating,/area/maintenance/lower/trash_pit) -"adh" = (/turf/simulated/wall,/area/maintenance/lower/xenoflora) -"adi" = (/obj/structure/catwalk,/obj/machinery/atmospherics/pipe/simple/visible/scrubbers,/obj/machinery/atmospherics/pipe/simple/visible/supply,/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/tiled/techfloor,/area/maintenance/lower/xenoflora) -"adj" = (/obj/machinery/recharger,/obj/structure/table/steel,/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (WEST)"; icon_state = "borderfloor"; dir = 8},/obj/effect/floor_decal/corner/brown/border{tag = "icon-bordercolor (WEST)"; icon_state = "bordercolor"; dir = 8},/obj/machinery/requests_console{department = "Cargo Bay"; departmentType = 2; pixel_x = -30; pixel_y = 0},/turf/simulated/floor/tiled,/area/tether/surfacebase/mining_main/storage) -"adk" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/tiled,/area/tether/surfacebase/mining_main/storage) -"adl" = (/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 1},/turf/simulated/floor/tiled,/area/tether/surfacebase/mining_main/storage) -"adm" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/tiled,/area/tether/surfacebase/mining_main/storage) -"adn" = (/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (EAST)"; icon_state = "borderfloor"; dir = 4},/obj/effect/floor_decal/corner/brown/border{tag = "icon-bordercolor (EAST)"; icon_state = "bordercolor"; dir = 4},/obj/effect/floor_decal/borderfloor/corner2{tag = "icon-borderfloorcorner2 (SOUTHEAST)"; icon_state = "borderfloorcorner2"; dir = 6},/obj/effect/floor_decal/corner/brown/bordercorner2{tag = "icon-bordercolorcorner2 (SOUTHEAST)"; icon_state = "bordercolorcorner2"; dir = 6},/turf/simulated/floor/tiled,/area/tether/surfacebase/mining_main/storage) -"ado" = (/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (WEST)"; icon_state = "borderfloor"; dir = 8},/obj/effect/floor_decal/corner/brown/border{tag = "icon-bordercolor (WEST)"; icon_state = "bordercolor"; dir = 8},/obj/effect/floor_decal/borderfloor/corner2{tag = "icon-borderfloorcorner2 (WEST)"; icon_state = "borderfloorcorner2"; dir = 8},/obj/effect/floor_decal/corner/brown/bordercorner2{tag = "icon-bordercolorcorner2 (WEST)"; icon_state = "bordercolorcorner2"; dir = 8},/turf/simulated/floor/tiled,/area/tether/surfacebase/mining_main/eva) -"adp" = (/turf/simulated/floor/tiled,/area/tether/surfacebase/mining_main/eva) -"adq" = (/obj/effect/floor_decal/borderfloor/corner,/obj/effect/floor_decal/corner/brown/bordercorner,/turf/simulated/floor/tiled,/area/tether/surfacebase/mining_main/eva) -"adr" = (/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/corner/brown/border,/obj/machinery/power/apc{dir = 2; name = "south bump"; pixel_y = -28},/obj/structure/cable/green,/turf/simulated/floor/tiled,/area/tether/surfacebase/mining_main/eva) -"ads" = (/obj/effect/floor_decal/borderfloor/corner{tag = "icon-borderfloorcorner (WEST)"; icon_state = "borderfloorcorner"; dir = 8},/obj/effect/floor_decal/corner/brown/bordercorner{tag = "icon-bordercolorcorner (WEST)"; icon_state = "bordercolorcorner"; dir = 8},/turf/simulated/floor/tiled,/area/tether/surfacebase/mining_main/eva) -"adt" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled,/area/tether/surfacebase/mining_main/eva) -"adu" = (/obj/machinery/door/airlock/multi_tile/glass{dir = 2; name = "Mining Storage"; req_one_access = list(48)},/obj/machinery/door/firedoor/glass,/turf/simulated/floor/tiled,/area/tether/surfacebase/mining_main/eva) -"adv" = (/turf/simulated/floor/tiled,/area/tether/surfacebase/mining_main/uxstorage) -"adw" = (/obj/machinery/power/apc{dir = 4; name = "east bump"; pixel_x = 28},/obj/structure/cable/green,/turf/simulated/floor/tiled,/area/tether/surfacebase/mining_main/uxstorage) -"adx" = (/obj/structure/catwalk,/obj/effect/decal/cleanable/dirt,/obj/effect/floor_decal/rust,/obj/structure/cable/green{d1 = 1; d2 = 4; icon_state = "1-4"},/turf/simulated/floor/plating,/area/maintenance/lower/trash_pit) -"ady" = (/obj/structure/catwalk,/obj/effect/decal/cleanable/dirt,/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/plating,/area/maintenance/lower/trash_pit) -"adz" = (/obj/structure/catwalk,/obj/effect/decal/cleanable/dirt,/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/plating,/area/maintenance/lower/trash_pit) -"adA" = (/obj/structure/catwalk,/obj/effect/decal/cleanable/dirt,/obj/structure/cable/green{d1 = 2; d2 = 8; icon_state = "2-8"},/turf/simulated/floor/plating,/area/maintenance/lower/trash_pit) -"adB" = (/obj/machinery/cell_charger,/obj/structure/table/steel,/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (SOUTHWEST)"; icon_state = "borderfloor"; dir = 10},/obj/effect/floor_decal/corner/brown/border{tag = "icon-bordercolor (SOUTHWEST)"; icon_state = "bordercolor"; dir = 10},/turf/simulated/floor/tiled,/area/tether/surfacebase/mining_main/storage) -"adC" = (/obj/structure/table/steel,/obj/item/device/suit_cooling_unit,/obj/item/device/suit_cooling_unit,/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/corner/brown/border,/turf/simulated/floor/tiled,/area/tether/surfacebase/mining_main/storage) -"adD" = (/obj/structure/table/steel,/obj/item/weapon/storage/toolbox/mechanical,/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/corner/brown/border,/obj/effect/floor_decal/borderfloor/corner2{tag = "icon-borderfloorcorner2 (NORTHWEST)"; icon_state = "borderfloorcorner2"; dir = 9},/obj/effect/floor_decal/corner/brown/bordercorner2{tag = "icon-bordercolorcorner2 (NORTHWEST)"; icon_state = "bordercolorcorner2"; dir = 9},/turf/simulated/floor/tiled,/area/tether/surfacebase/mining_main/storage) -"adE" = (/obj/structure/table/rack,/obj/item/weapon/pickaxe/hammer,/obj/item/weapon/wrench,/obj/item/weapon/crowbar,/obj/item/weapon/shovel,/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,/turf/simulated/floor/tiled,/area/tether/surfacebase/mining_main/storage) -"adF" = (/obj/structure/table/rack,/obj/item/weapon/pickaxe,/obj/item/weapon/wrench,/obj/item/weapon/crowbar,/obj/item/weapon/shovel,/obj/machinery/light,/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/corner/brown/border,/obj/effect/floor_decal/borderfloor/corner2{tag = "icon-borderfloorcorner2 (NORTHWEST)"; icon_state = "borderfloorcorner2"; dir = 9},/obj/effect/floor_decal/corner/brown/bordercorner2{tag = "icon-bordercolorcorner2 (NORTHWEST)"; icon_state = "bordercolorcorner2"; dir = 9},/turf/simulated/floor/tiled,/area/tether/surfacebase/mining_main/storage) -"adG" = (/obj/item/weapon/pickaxe,/obj/structure/table/steel,/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,/turf/simulated/floor/tiled,/area/tether/surfacebase/mining_main/storage) -"adH" = (/obj/item/stack/flag/green{pixel_x = -4; pixel_y = 0},/obj/item/stack/flag/red,/obj/item/stack/flag/yellow{pixel_x = 4},/obj/structure/table/steel,/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (SOUTHEAST)"; icon_state = "borderfloor"; dir = 6},/obj/effect/floor_decal/corner/brown/border{tag = "icon-bordercolor (SOUTHEAST)"; icon_state = "bordercolor"; dir = 6},/turf/simulated/floor/tiled,/area/tether/surfacebase/mining_main/storage) -"adI" = (/obj/machinery/suit_cycler/mining,/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (SOUTHWEST)"; icon_state = "borderfloor"; dir = 10},/obj/effect/floor_decal/corner/brown/border{tag = "icon-bordercolor (SOUTHWEST)"; icon_state = "bordercolor"; dir = 10},/turf/simulated/floor/tiled,/area/tether/surfacebase/mining_main/eva) -"adJ" = (/obj/structure/table/rack,/obj/item/clothing/suit/space/void/mining,/obj/item/clothing/mask/breath,/obj/item/clothing/head/helmet/space/void/mining,/obj/item/weapon/mining_scanner,/obj/item/clothing/suit/space/void/mining/taur,/obj/item/clothing/head/helmet/space/void/mining,/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/corner/brown/border,/turf/simulated/floor/tiled,/area/tether/surfacebase/mining_main/eva) -"adK" = (/obj/structure/table/rack,/obj/item/clothing/suit/space/void/mining,/obj/item/clothing/mask/breath,/obj/item/clothing/head/helmet/space/void/mining,/obj/item/weapon/mining_scanner,/obj/item/clothing/suit/space/void/mining/taur,/obj/item/clothing/head/helmet/space/void/mining,/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (SOUTHEAST)"; icon_state = "borderfloor"; dir = 6},/obj/effect/floor_decal/corner/brown/border{tag = "icon-bordercolor (SOUTHEAST)"; icon_state = "bordercolor"; dir = 6},/turf/simulated/floor/tiled,/area/tether/surfacebase/mining_main/eva) -"adL" = (/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (SOUTHWEST)"; icon_state = "borderfloor"; dir = 10},/obj/effect/floor_decal/corner/brown/border{tag = "icon-bordercolor (SOUTHWEST)"; icon_state = "bordercolor"; dir = 10},/obj/effect/floor_decal/borderfloor/corner2{tag = "icon-borderfloorcorner2 (NORTHWEST)"; icon_state = "borderfloorcorner2"; dir = 9},/obj/effect/floor_decal/corner/brown/bordercorner2{tag = "icon-bordercolorcorner2 (NORTHWEST)"; icon_state = "bordercolorcorner2"; dir = 9},/turf/simulated/floor/tiled,/area/tether/surfacebase/mining_main/eva) -"adM" = (/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (SOUTHEAST)"; icon_state = "borderfloor"; dir = 6},/obj/effect/floor_decal/corner/brown/border{tag = "icon-bordercolor (SOUTHEAST)"; icon_state = "bordercolor"; dir = 6},/obj/effect/floor_decal/borderfloor/corner2,/obj/effect/floor_decal/borderfloor/corner2{tag = "icon-borderfloorcorner2 (SOUTHEAST)"; icon_state = "borderfloorcorner2"; dir = 6},/obj/effect/floor_decal/corner/brown/bordercorner2{tag = "icon-bordercolorcorner2 (SOUTHEAST)"; icon_state = "bordercolorcorner2"; dir = 6},/obj/effect/floor_decal/corner/brown/bordercorner2,/obj/machinery/firealarm{dir = 4; pixel_x = 24},/turf/simulated/floor/tiled,/area/tether/surfacebase/mining_main/eva) -"adN" = (/obj/machinery/portable_atmospherics/canister/oxygen,/turf/simulated/floor/tiled,/area/tether/surfacebase/mining_main/uxstorage) -"adO" = (/obj/structure/dispenser/oxygen,/turf/simulated/floor/tiled,/area/tether/surfacebase/mining_main/uxstorage) -"adP" = (/obj/effect/floor_decal/techfloor{tag = "icon-techfloor_edges (SOUTHWEST)"; icon_state = "techfloor_edges"; dir = 10},/obj/structure/railing{dir = 1},/obj/effect/decal/cleanable/dirt,/obj/effect/floor_decal/rust,/obj/structure/table/rack,/obj/random/maintenance/clean,/obj/random/maintenance/cargo,/obj/random/maintenance/cargo,/turf/simulated/floor/plating,/area/maintenance/lower/trash_pit) -"adQ" = (/obj/effect/floor_decal/techfloor,/obj/structure/railing{dir = 1},/obj/effect/decal/cleanable/dirt,/obj/effect/floor_decal/rust,/obj/machinery/atmospherics/unary/vent_pump/on{dir = 1},/turf/simulated/floor/plating,/area/maintenance/lower/trash_pit) -"adR" = (/obj/effect/floor_decal/techfloor,/obj/structure/railing{dir = 1},/obj/effect/decal/cleanable/dirt,/obj/effect/floor_decal/rust,/turf/simulated/floor/plating,/area/maintenance/lower/trash_pit) -"adS" = (/obj/effect/floor_decal/techfloor,/obj/structure/railing{dir = 1},/obj/effect/decal/cleanable/dirt,/obj/random/toolbox,/turf/simulated/floor/plating,/area/maintenance/lower/trash_pit) -"adT" = (/obj/effect/floor_decal/techfloor,/obj/structure/railing{dir = 1},/obj/effect/decal/cleanable/dirt,/obj/machinery/light/small,/turf/simulated/floor/plating,/area/maintenance/lower/trash_pit) -"adU" = (/obj/effect/floor_decal/techfloor,/obj/structure/railing{dir = 1},/obj/structure/railing{dir = 4},/obj/effect/decal/cleanable/dirt,/obj/machinery/power/apc{dir = 2; name = "south bump"; pixel_y = -24},/obj/structure/cable/green,/turf/simulated/floor/plating,/area/maintenance/lower/trash_pit) -"adV" = (/turf/simulated/wall,/area/tether/surfacebase/mining_main/ore) -"adW" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/door/firedoor/glass,/obj/machinery/door/airlock/glass_mining{name = "Warehouse"},/turf/simulated/floor/tiled,/area/tether/surfacebase/mining_main/ore) -"adX" = (/obj/machinery/door/airlock/glass_mining{name = "Warehouse"},/obj/machinery/door/firedoor/glass,/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/tiled,/area/tether/surfacebase/mining_main/ore) -"adY" = (/obj/machinery/door/airlock/glass_mining,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/door/firedoor/glass,/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled,/area/tether/surfacebase/mining_main/eva) -"adZ" = (/obj/machinery/door/airlock/glass_mining,/obj/machinery/door/firedoor/glass,/turf/simulated/floor/tiled,/area/tether/surfacebase/mining_main/eva) -"aea" = (/turf/simulated/wall,/area/maintenance/substation/mining) -"aeb" = (/obj/structure/sign/securearea{desc = "A warning sign which reads 'HIGH VOLTAGE'"; icon_state = "shock"; name = "HIGH VOLTAGE"},/turf/simulated/wall,/area/maintenance/substation/mining) -"aec" = (/obj/structure/catwalk,/obj/machinery/atmospherics/pipe/simple/visible/scrubbers{dir = 5},/obj/machinery/atmospherics/pipe/simple/visible/supply{dir = 5},/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/tiled/techfloor,/area/maintenance/lower/xenoflora) -"aed" = (/obj/machinery/light/small{dir = 1},/obj/structure/railing{dir = 8},/obj/machinery/atmospherics/pipe/simple/visible/scrubbers{dir = 10},/obj/machinery/atmospherics/pipe/simple/visible/supply{dir = 10},/turf/simulated/floor/tiled/techfloor,/area/maintenance/lower/xenoflora) -"aee" = (/obj/effect/floor_decal/rust,/obj/structure/closet,/obj/random/maintenance/cargo,/obj/random/maintenance/clean,/obj/random/medical/lite,/obj/random/maintenance/cargo,/turf/simulated/floor/tiled/techfloor,/area/maintenance/lower/xenoflora) -"aef" = (/obj/structure/closet/crate,/obj/machinery/atmospherics/unary/vent_pump/on{dir = 4},/obj/structure/extinguisher_cabinet{pixel_y = 30},/turf/simulated/floor/tiled/steel_dirty,/area/tether/surfacebase/mining_main/ore) -"aeg" = (/obj/effect/floor_decal/rust,/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 9},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/tiled/steel_dirty,/area/tether/surfacebase/mining_main/ore) -"aeh" = (/obj/effect/floor_decal/rust,/obj/machinery/alarm{frequency = 1441; pixel_y = 22},/turf/simulated/floor/tiled/steel_dirty,/area/tether/surfacebase/mining_main/ore) -"aei" = (/obj/item/device/radio/intercom{dir = 1; name = "Station Intercom (General)"; pixel_y = 21},/turf/simulated/floor/tiled/steel_dirty,/area/tether/surfacebase/mining_main/ore) -"aej" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/tiled/steel_dirty,/area/tether/surfacebase/mining_main/ore) -"aek" = (/obj/machinery/firealarm{dir = 2; layer = 3.3; pixel_x = 0; pixel_y = 26},/turf/simulated/floor/tiled/steel_dirty,/area/tether/surfacebase/mining_main/ore) -"ael" = (/obj/machinery/light_switch{pixel_x = 25},/obj/machinery/camera/network/cargo,/turf/simulated/floor/tiled/steel_dirty,/area/tether/surfacebase/mining_main/ore) -"aem" = (/turf/simulated/wall,/area/tether/surfacebase/mining_main/lobby) -"aen" = (/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (NORTHWEST)"; icon_state = "borderfloor"; dir = 9},/obj/effect/floor_decal/corner/brown/border{tag = "icon-bordercolor (NORTHWEST)"; icon_state = "bordercolor"; dir = 9},/obj/effect/floor_decal/borderfloor/corner2{tag = "icon-borderfloorcorner2 (SOUTHWEST)"; icon_state = "borderfloorcorner2"; dir = 10},/obj/effect/floor_decal/corner/brown/bordercorner2{tag = "icon-bordercolorcorner2 (SOUTHWEST)"; icon_state = "bordercolorcorner2"; dir = 10},/obj/machinery/status_display{pixel_y = 30},/obj/machinery/button/remote/blast_door{id = "qm_warehouse"; name = "Warehouse Door Control"; pixel_x = -26; pixel_y = 0; req_access = list(31)},/turf/simulated/floor/tiled,/area/tether/surfacebase/mining_main/lobby) -"aeo" = (/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (NORTH)"; icon_state = "borderfloor"; dir = 1},/obj/effect/floor_decal/corner/brown/border{tag = "icon-bordercolor (NORTH)"; icon_state = "bordercolor"; dir = 1},/turf/simulated/floor/tiled,/area/tether/surfacebase/mining_main/lobby) -"aep" = (/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (NORTH)"; icon_state = "borderfloor"; dir = 1},/obj/effect/floor_decal/corner/brown/border{tag = "icon-bordercolor (NORTH)"; icon_state = "bordercolor"; dir = 1},/obj/machinery/firealarm{dir = 2; layer = 3.3; pixel_x = 0; pixel_y = 26},/turf/simulated/floor/tiled,/area/tether/surfacebase/mining_main/lobby) -"aeq" = (/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (NORTH)"; icon_state = "borderfloor"; dir = 1},/obj/effect/floor_decal/corner/brown/border{tag = "icon-bordercolor (NORTH)"; icon_state = "bordercolor"; dir = 1},/obj/machinery/alarm{frequency = 1441; pixel_y = 22},/turf/simulated/floor/tiled,/area/tether/surfacebase/mining_main/lobby) -"aer" = (/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (NORTH)"; icon_state = "borderfloor"; dir = 1},/obj/effect/floor_decal/corner/brown/border{tag = "icon-bordercolor (NORTH)"; icon_state = "bordercolor"; dir = 1},/obj/effect/floor_decal/borderfloor/corner2{tag = "icon-borderfloorcorner2 (NORTH)"; icon_state = "borderfloorcorner2"; dir = 1},/obj/effect/floor_decal/corner/brown/bordercorner2{tag = "icon-bordercolorcorner2 (NORTH)"; icon_state = "bordercolorcorner2"; dir = 1},/turf/simulated/floor/tiled,/area/tether/surfacebase/mining_main/lobby) -"aes" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/disposalpipe/junction{icon_state = "pipe-j2"; dir = 2},/turf/simulated/floor/tiled,/area/tether/surfacebase/mining_main/lobby) -"aet" = (/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled,/area/tether/surfacebase/mining_main/lobby) -"aeu" = (/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (NORTH)"; icon_state = "borderfloor"; dir = 1},/obj/effect/floor_decal/corner/brown/border{tag = "icon-bordercolor (NORTH)"; icon_state = "bordercolor"; dir = 1},/obj/effect/floor_decal/borderfloor/corner2{tag = "icon-borderfloorcorner2 (EAST)"; icon_state = "borderfloorcorner2"; dir = 4},/obj/effect/floor_decal/corner/brown/bordercorner2{tag = "icon-bordercolorcorner2 (EAST)"; icon_state = "bordercolorcorner2"; dir = 4},/obj/machinery/disposal,/obj/structure/disposalpipe/trunk{dir = 8},/turf/simulated/floor/tiled,/area/tether/surfacebase/mining_main/lobby) -"aev" = (/obj/structure/table/glass,/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (NORTH)"; icon_state = "borderfloor"; dir = 1},/obj/effect/floor_decal/corner/brown/border{tag = "icon-bordercolor (NORTH)"; icon_state = "bordercolor"; dir = 1},/obj/item/device/radio/intercom{dir = 1; name = "Station Intercom (General)"; pixel_y = 21},/turf/simulated/floor/tiled,/area/tether/surfacebase/mining_main/lobby) -"aew" = (/obj/structure/table/glass,/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (NORTH)"; icon_state = "borderfloor"; dir = 1},/obj/effect/floor_decal/corner/brown/border{tag = "icon-bordercolor (NORTH)"; icon_state = "bordercolor"; dir = 1},/obj/machinery/camera/network/mining,/turf/simulated/floor/tiled,/area/tether/surfacebase/mining_main/lobby) -"aex" = (/obj/structure/flora/pottedplant,/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (NORTHEAST)"; icon_state = "borderfloor"; dir = 5},/obj/effect/floor_decal/corner/brown/border{tag = "icon-bordercolor (NORTHEAST)"; icon_state = "bordercolor"; dir = 5},/obj/structure/extinguisher_cabinet{pixel_y = 30},/turf/simulated/floor/tiled,/area/tether/surfacebase/mining_main/lobby) -"aey" = (/obj/machinery/power/sensor{name = "Powernet Sensor - Mining Subgrid"; name_tag = "Mining Subgrid"},/obj/structure/cable/green{icon_state = "0-4"},/obj/structure/cable/green{d2 = 2; icon_state = "0-2"},/obj/effect/floor_decal/industrial/warning,/turf/simulated/floor,/area/maintenance/substation/mining) -"aez" = (/obj/machinery/light/small{dir = 1},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/effect/floor_decal/industrial/warning/corner{tag = "icon-warningcorner (WEST)"; icon_state = "warningcorner"; dir = 8},/obj/effect/floor_decal/rust,/turf/simulated/floor,/area/maintenance/substation/mining) -"aeA" = (/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/alarm{frequency = 1441; pixel_y = 22},/obj/effect/floor_decal/rust,/turf/simulated/floor,/area/maintenance/substation/mining) -"aeB" = (/obj/machinery/door/airlock/engineering{name = "Science Substation"; req_one_access = list(11,24,47)},/obj/machinery/door/firedoor/glass,/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor,/area/maintenance/substation/mining) -"aeC" = (/obj/structure/catwalk,/obj/structure/cable/green{d1 = 1; d2 = 8; icon_state = "1-8"},/turf/simulated/floor/tiled/techfloor,/area/maintenance/lower/xenoflora) -"aeD" = (/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{tag = "icon-16-0"; icon_state = "16-0"},/obj/structure/cable{icon_state = "0-2"; d2 = 2},/turf/simulated/floor/tiled/techfloor,/area/maintenance/lower/xenoflora) -"aeE" = (/obj/structure/table/rack,/obj/random/maintenance/clean,/obj/random/maintenance/clean,/obj/random/maintenance/cargo,/turf/simulated/floor/tiled/techfloor,/area/maintenance/lower/xenoflora) -"aeF" = (/obj/structure/closet/crate,/turf/simulated/floor/tiled/steel_dirty,/area/tether/surfacebase/mining_main/ore) -"aeG" = (/obj/effect/floor_decal/rust,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/tiled/steel_dirty,/area/tether/surfacebase/mining_main/ore) -"aeH" = (/turf/simulated/floor/tiled/steel_dirty,/area/tether/surfacebase/mining_main/ore) -"aeI" = (/obj/machinery/door/firedoor/glass,/obj/machinery/door/blast/shutters{dir = 8; id = "qm_warehouse"; name = "Warehouse Shutters"},/turf/simulated/floor/tiled,/area/tether/surfacebase/mining_main/lobby) -"aeJ" = (/turf/simulated/floor/tiled,/area/tether/surfacebase/mining_main/lobby) -"aeK" = (/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 4},/turf/simulated/floor/tiled,/area/tether/surfacebase/mining_main/lobby) -"aeL" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/turf/simulated/floor/tiled,/area/tether/surfacebase/mining_main/lobby) -"aeM" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/disposalpipe/segment{dir = 4; icon_state = "pipe-c"},/turf/simulated/floor/tiled,/area/tether/surfacebase/mining_main/lobby) -"aeN" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled,/area/tether/surfacebase/mining_main/lobby) -"aeO" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 9},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/disposalpipe/segment{dir = 8; icon_state = "pipe-c"},/turf/simulated/floor/tiled,/area/tether/surfacebase/mining_main/lobby) -"aeP" = (/obj/structure/table/glass,/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (EAST)"; icon_state = "borderfloor"; dir = 4},/obj/effect/floor_decal/corner/brown/border{tag = "icon-bordercolor (EAST)"; icon_state = "bordercolor"; dir = 4},/obj/machinery/computer/guestpass{dir = 8; pixel_x = 25},/turf/simulated/floor/tiled,/area/tether/surfacebase/mining_main/lobby) -"aeQ" = (/obj/machinery/power/smes/buildable{charge = 0; RCon_tag = "Substation - Mining"},/obj/structure/cable/green,/obj/structure/cable/green{d2 = 2; icon_state = "0-2"},/turf/simulated/floor,/area/maintenance/substation/mining) -"aeR" = (/obj/effect/floor_decal/industrial/warning{dir = 8},/obj/machinery/power/terminal{dir = 8},/obj/structure/cable{icon_state = "0-2"; d2 = 2},/turf/simulated/floor,/area/maintenance/substation/mining) -"aeS" = (/obj/machinery/power/apc{dir = 4; name = "east bump"; pixel_x = 28},/obj/structure/cable/green,/obj/effect/floor_decal/rust,/turf/simulated/floor,/area/maintenance/substation/mining) -"aeT" = (/obj/structure/catwalk,/turf/simulated/floor/tiled/techfloor,/area/maintenance/lower/xenoflora) -"aeU" = (/obj/structure/railing{dir = 8},/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0},/obj/random/junk,/mob/living/simple_animal/mouse,/turf/simulated/floor/tiled/techfloor,/area/maintenance/lower/xenoflora) -"aeV" = (/obj/effect/decal/cleanable/dirt,/obj/structure/table/rack,/obj/random/maintenance/clean,/obj/random/maintenance/clean,/obj/random/action_figure,/obj/random/maintenance/cargo,/turf/simulated/floor/tiled/techfloor,/area/maintenance/lower/xenoflora) -"aeW" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/tiled/steel_dirty,/area/tether/surfacebase/mining_main/ore) -"aeX" = (/obj/structure/cable/green{d1 = 1; d2 = 4; icon_state = "1-4"},/turf/simulated/floor/tiled/steel_dirty,/area/tether/surfacebase/mining_main/ore) -"aeY" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/tiled/steel_dirty,/area/tether/surfacebase/mining_main/ore) -"aeZ" = (/obj/machinery/door/firedoor/glass,/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/door/blast/shutters{dir = 8; id = "qm_warehouse"; name = "Warehouse Shutters"},/turf/simulated/floor/tiled,/area/tether/surfacebase/mining_main/lobby) -"afa" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/tiled,/area/tether/surfacebase/mining_main/lobby) -"afb" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled,/area/tether/surfacebase/mining_main/lobby) -"afc" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 5},/obj/structure/cable/green{d1 = 2; d2 = 8; icon_state = "2-8"},/turf/simulated/floor/tiled,/area/tether/surfacebase/mining_main/lobby) -"afd" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled,/area/tether/surfacebase/mining_main/lobby) -"afe" = (/obj/machinery/atmospherics/unary/vent_pump/on{dir = 8},/turf/simulated/floor/tiled,/area/tether/surfacebase/mining_main/lobby) -"aff" = (/obj/structure/table/glass,/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (EAST)"; icon_state = "borderfloor"; dir = 4},/obj/effect/floor_decal/corner/brown/border{tag = "icon-bordercolor (EAST)"; icon_state = "bordercolor"; dir = 4},/turf/simulated/floor/tiled,/area/tether/surfacebase/mining_main/lobby) -"afg" = (/obj/machinery/power/breakerbox/activated{RCon_tag = "Mining Substation Bypass"},/turf/simulated/floor,/area/maintenance/substation/mining) -"afh" = (/obj/effect/floor_decal/industrial/warning/corner{dir = 1},/obj/structure/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0},/obj/effect/floor_decal/industrial/warning{dir = 8},/obj/machinery/camera/network/engineering{c_tag = "ENG - Pump Station"; dir = 1},/turf/simulated/floor,/area/maintenance/substation/mining) -"afi" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0},/turf/simulated/floor,/area/maintenance/substation/mining) -"afj" = (/obj/machinery/door/airlock/engineering{name = "Science Substation"; req_one_access = list(11,24,47)},/obj/machinery/door/firedoor/glass,/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0},/turf/simulated/floor,/area/maintenance/substation/mining) -"afk" = (/obj/structure/catwalk,/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0},/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/tiled/techfloor,/area/maintenance/lower/xenoflora) -"afl" = (/obj/structure/railing{dir = 8},/obj/structure/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/turf/simulated/floor/tiled/techfloor,/area/maintenance/lower/xenoflora) -"afm" = (/obj/structure/closet/crate,/obj/random/maintenance/cargo,/obj/random/maintenance/clean,/obj/random/maintenance/cargo,/turf/simulated/floor/tiled/techfloor,/area/maintenance/lower/xenoflora) -"afn" = (/obj/effect/floor_decal/rust,/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 4},/turf/simulated/floor/tiled/steel_dirty,/area/tether/surfacebase/mining_main/ore) -"afo" = (/obj/effect/floor_decal/rust,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 9},/turf/simulated/floor/tiled/steel_dirty,/area/tether/surfacebase/mining_main/ore) -"afp" = (/obj/structure/closet/crate,/obj/machinery/light,/turf/simulated/floor/tiled/steel_dirty,/area/tether/surfacebase/mining_main/ore) -"afq" = (/obj/machinery/power/apc{dir = 2; name = "south bump"; pixel_y = -28},/turf/simulated/floor/tiled/steel_dirty,/area/tether/surfacebase/mining_main/ore) -"afr" = (/obj/machinery/button/remote/blast_door{id = "qm_warehouse"; name = "Warehouse Door Control"; pixel_x = 26; pixel_y = 0; req_access = list(31)},/turf/simulated/floor/tiled/steel_dirty,/area/tether/surfacebase/mining_main/ore) -"afs" = (/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (SOUTHWEST)"; icon_state = "borderfloor"; dir = 10},/obj/effect/floor_decal/corner/brown/border{tag = "icon-bordercolor (SOUTHWEST)"; icon_state = "bordercolor"; dir = 10},/obj/effect/floor_decal/borderfloor/corner2{tag = "icon-borderfloorcorner2 (WEST)"; icon_state = "borderfloorcorner2"; dir = 8},/obj/effect/floor_decal/corner/brown/bordercorner2{tag = "icon-bordercolorcorner2 (WEST)"; icon_state = "bordercolorcorner2"; dir = 8},/obj/machinery/disposal,/obj/structure/disposalpipe/trunk{dir = 4},/turf/simulated/floor/tiled,/area/tether/surfacebase/mining_main/lobby) -"aft" = (/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/corner/brown/border,/obj/effect/floor_decal/borderfloor/corner2{tag = "icon-borderfloorcorner2 (NORTHWEST)"; icon_state = "borderfloorcorner2"; dir = 9},/obj/effect/floor_decal/corner/brown/bordercorner2{tag = "icon-bordercolorcorner2 (NORTHWEST)"; icon_state = "bordercolorcorner2"; dir = 9},/obj/machinery/newscaster{pixel_x = 0; pixel_y = -30},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled,/area/tether/surfacebase/mining_main/lobby) -"afu" = (/obj/structure/disposalpipe/junction,/turf/simulated/floor/tiled,/area/tether/surfacebase/mining_main/lobby) -"afv" = (/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,/turf/simulated/floor/tiled,/area/tether/surfacebase/mining_main/lobby) -"afw" = (/obj/machinery/light,/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/corner/brown/border,/turf/simulated/floor/tiled,/area/tether/surfacebase/mining_main/lobby) -"afx" = (/obj/structure/bed/chair{dir = 1},/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/corner/brown/border,/obj/machinery/power/apc{dir = 2; name = "south bump"; pixel_y = -28},/obj/structure/cable/green,/turf/simulated/floor/tiled,/area/tether/surfacebase/mining_main/lobby) -"afy" = (/obj/structure/bed/chair{dir = 1},/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/corner/brown/border,/turf/simulated/floor/tiled,/area/tether/surfacebase/mining_main/lobby) -"afz" = (/obj/structure/reagent_dispensers/water_cooler/full,/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/corner/brown/border,/turf/simulated/floor/tiled,/area/tether/surfacebase/mining_main/lobby) -"afA" = (/obj/structure/flora/pottedplant,/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (SOUTHEAST)"; icon_state = "borderfloor"; dir = 6},/obj/effect/floor_decal/corner/brown/border{tag = "icon-bordercolor (SOUTHEAST)"; icon_state = "bordercolor"; dir = 6},/turf/simulated/floor/tiled,/area/tether/surfacebase/mining_main/lobby) -"afB" = (/obj/structure/catwalk,/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/tiled/techfloor,/area/maintenance/lower/xenoflora) -"afC" = (/obj/machinery/door/airlock/multi_tile/glass,/obj/machinery/door/firedoor/glass,/turf/simulated/floor/tiled,/area/tether/surfacebase/mining_main/lobby) -"afD" = (/obj/machinery/door/firedoor/glass,/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled,/area/tether/surfacebase/mining_main/lobby) -"afE" = (/obj/structure/catwalk,/obj/effect/decal/cleanable/dirt,/obj/random/junk,/obj/random/maintenance/clean,/turf/simulated/floor/plating,/area/maintenance/lower/trash_pit) -"afF" = (/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (WEST)"; icon_state = "borderfloor"; dir = 8},/obj/effect/floor_decal/corner/brown/border{tag = "icon-bordercolor (WEST)"; icon_state = "bordercolor"; dir = 8},/obj/effect/floor_decal/borderfloor/corner2{tag = "icon-borderfloorcorner2 (WEST)"; icon_state = "borderfloorcorner2"; dir = 8},/obj/effect/floor_decal/corner/brown/bordercorner2{tag = "icon-bordercolorcorner2 (WEST)"; icon_state = "bordercolorcorner2"; dir = 8},/obj/machinery/camera/network/mining{tag = "icon-camera (EAST)"; icon_state = "camera"; dir = 4},/turf/simulated/floor/tiled,/area/tether/surfacebase/mining_main/lobby) -"afG" = (/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (EAST)"; icon_state = "borderfloor"; dir = 4},/obj/effect/floor_decal/corner/brown/border{tag = "icon-bordercolor (EAST)"; icon_state = "bordercolor"; dir = 4},/obj/effect/floor_decal/borderfloor/corner2{tag = "icon-borderfloorcorner2 (SOUTHEAST)"; icon_state = "borderfloorcorner2"; dir = 6},/obj/effect/floor_decal/corner/brown/bordercorner2{tag = "icon-bordercolorcorner2 (SOUTHEAST)"; icon_state = "bordercolorcorner2"; dir = 6},/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled,/area/tether/surfacebase/mining_main/lobby) -"afH" = (/obj/structure/catwalk,/obj/structure/catwalk,/obj/effect/decal/cleanable/dirt,/obj/random/junk,/obj/random/maintenance/clean,/turf/simulated/floor/plating,/area/maintenance/lower/trash_pit) -"afI" = (/obj/structure/catwalk,/obj/effect/decal/cleanable/dirt,/obj/machinery/light/small{dir = 1},/obj/random/tool,/turf/simulated/floor/plating,/area/maintenance/lower/trash_pit) -"afJ" = (/obj/structure/catwalk,/obj/structure/catwalk,/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/plating,/area/maintenance/lower/trash_pit) -"afK" = (/obj/structure/catwalk,/obj/effect/decal/cleanable/dirt,/obj/machinery/light/small{dir = 1},/turf/simulated/floor/plating,/area/maintenance/lower/trash_pit) -"afL" = (/turf/simulated/wall,/area/tether/surfacebase/atrium_one) -"afM" = (/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (WEST)"; icon_state = "borderfloor"; dir = 8},/obj/effect/floor_decal/corner/brown/border{tag = "icon-bordercolor (WEST)"; icon_state = "bordercolor"; dir = 8},/obj/item/device/radio/intercom{dir = 8; name = "Station Intercom (General)"; pixel_x = -28},/turf/simulated/floor/tiled,/area/tether/surfacebase/mining_main/lobby) -"afN" = (/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (EAST)"; icon_state = "borderfloor"; dir = 4},/obj/effect/floor_decal/corner/brown/border{tag = "icon-bordercolor (EAST)"; icon_state = "bordercolor"; dir = 4},/obj/machinery/alarm{dir = 8; icon_state = "alarm0"; pixel_x = 24},/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled,/area/tether/surfacebase/mining_main/lobby) -"afO" = (/obj/structure/railing{dir = 8},/obj/structure/railing{dir = 1},/obj/effect/decal/cleanable/dirt,/obj/random/junk,/obj/random/maintenance/cargo,/obj/random/maintenance/clean,/turf/simulated/floor/plating,/area/maintenance/lower/trash_pit) -"afP" = (/obj/effect/decal/cleanable/dirt,/obj/effect/floor_decal/rust,/obj/effect/floor_decal/industrial/warning{icon_state = "warning"; dir = 1},/obj/random/junk,/obj/random/maintenance/clean,/obj/random/maintenance/clean,/turf/simulated/floor/plating,/area/maintenance/lower/trash_pit) -"afQ" = (/obj/structure/railing{dir = 1},/obj/structure/railing{dir = 4},/obj/effect/decal/cleanable/dirt,/obj/effect/floor_decal/rust,/obj/random/junk,/obj/random/junk,/obj/random/maintenance/clean,/mob/living/simple_animal/mouse,/turf/simulated/floor/plating,/area/maintenance/lower/trash_pit) -"afR" = (/obj/structure/catwalk,/obj/effect/decal/cleanable/dirt,/obj/random/junk,/obj/random/junk,/obj/random/maintenance/clean,/turf/simulated/floor/plating,/area/maintenance/lower/trash_pit) -"afS" = (/obj/structure/catwalk,/obj/machinery/alarm{frequency = 1441; pixel_y = 22},/turf/simulated/floor/tiled/techfloor,/area/maintenance/lower/xenoflora) -"afT" = (/obj/machinery/portable_atmospherics/powered/scrubber/huge/stationary{scrub_id = "atrium"},/turf/simulated/floor/tiled/techmaint,/area/tether/surfacebase/atrium_one) -"afU" = (/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (WEST)"; icon_state = "borderfloor"; dir = 8},/obj/effect/floor_decal/corner/brown/border{tag = "icon-bordercolor (WEST)"; icon_state = "bordercolor"; dir = 8},/obj/effect/floor_decal/borderfloor/corner2{tag = "icon-borderfloorcorner2 (SOUTHWEST)"; icon_state = "borderfloorcorner2"; dir = 10},/obj/effect/floor_decal/corner/brown/bordercorner2{tag = "icon-bordercolorcorner2 (SOUTHWEST)"; icon_state = "bordercolorcorner2"; dir = 10},/turf/simulated/floor/tiled,/area/tether/surfacebase/mining_main/lobby) -"afV" = (/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (EAST)"; icon_state = "borderfloor"; dir = 4},/obj/effect/floor_decal/corner/brown/border{tag = "icon-bordercolor (EAST)"; icon_state = "bordercolor"; dir = 4},/obj/effect/floor_decal/borderfloor/corner2{tag = "icon-borderfloorcorner2 (NORTHEAST)"; icon_state = "borderfloorcorner2"; dir = 5},/obj/effect/floor_decal/corner/brown/bordercorner2{tag = "icon-bordercolorcorner2 (NORTHEAST)"; icon_state = "bordercolorcorner2"; dir = 5},/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled,/area/tether/surfacebase/mining_main/lobby) -"afW" = (/obj/structure/catwalk,/obj/effect/decal/cleanable/dirt,/obj/random/junk,/obj/random/junk,/obj/random/maintenance/clean,/obj/random/maintenance/medical,/turf/simulated/floor/plating,/area/maintenance/lower/trash_pit) -"afX" = (/obj/effect/decal/cleanable/dirt,/obj/effect/floor_decal/industrial/warning{icon_state = "warning"; dir = 8},/obj/random/junk,/obj/random/maintenance/cargo,/obj/random/maintenance/clean,/mob/living/simple_animal/mouse,/turf/simulated/floor/plating,/area/maintenance/lower/trash_pit) -"afY" = (/obj/effect/decal/cleanable/dirt,/obj/effect/floor_decal/rust,/obj/random/junk,/obj/random/junk,/obj/random/junk,/obj/random/maintenance/clean,/obj/random/maintenance/clean,/turf/simulated/floor/plating,/area/maintenance/lower/trash_pit) -"afZ" = (/obj/effect/decal/cleanable/dirt,/obj/effect/floor_decal/industrial/warning{icon_state = "warning"; dir = 4},/obj/random/junk,/obj/random/maintenance/clean,/obj/random/maintenance/clean,/obj/random/medical/lite,/turf/simulated/floor/plating,/area/maintenance/lower/trash_pit) -"aga" = (/obj/structure/railing{dir = 1},/obj/structure/railing{dir = 8},/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/tiled/techfloor,/area/maintenance/lower/xenoflora) -"agb" = (/obj/structure/railing{dir = 1},/obj/effect/decal/cleanable/dirt,/obj/random/tool,/turf/simulated/floor/tiled/techfloor,/area/maintenance/lower/xenoflora) -"agc" = (/obj/structure/railing{dir = 1},/obj/effect/decal/cleanable/dirt,/obj/structure/table/rack,/obj/random/maintenance/clean,/obj/random/maintenance/clean,/obj/random/maintenance/cargo,/obj/random/maintenance/cargo,/turf/simulated/floor/tiled/techfloor,/area/maintenance/lower/xenoflora) -"agd" = (/obj/structure/railing{dir = 1},/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/tiled/techfloor,/area/maintenance/lower/xenoflora) -"age" = (/obj/structure/railing{dir = 1},/obj/effect/floor_decal/rust,/turf/simulated/floor/tiled/techfloor,/area/maintenance/lower/xenoflora) -"agf" = (/obj/structure/railing{dir = 1},/obj/effect/floor_decal/rust,/obj/random/junk,/turf/simulated/floor/tiled/techfloor,/area/maintenance/lower/xenoflora) -"agg" = (/obj/structure/railing{dir = 1},/turf/simulated/floor/tiled/techfloor,/area/maintenance/lower/xenoflora) -"agh" = (/obj/structure/grille,/obj/structure/railing,/turf/simulated/floor/tiled/techmaint,/area/tether/surfacebase/atrium_one) -"agi" = (/obj/machinery/door/airlock/multi_tile/glass,/obj/machinery/door/firedoor/glass,/turf/simulated/floor/tiled,/area/tether/surfacebase/atrium_one) -"agj" = (/obj/machinery/door/firedoor/glass,/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled,/area/tether/surfacebase/atrium_one) -"agk" = (/turf/simulated/wall,/area/tether/surfacebase/emergency_storage/atrium) -"agl" = (/obj/structure/catwalk,/obj/effect/decal/cleanable/dirt,/obj/effect/floor_decal/rust,/turf/simulated/floor/plating,/area/maintenance/lower/trash_pit) -"agm" = (/obj/structure/railing{dir = 8},/obj/structure/railing,/obj/effect/decal/cleanable/dirt,/obj/effect/floor_decal/rust,/obj/random/junk,/obj/random/maintenance/security,/obj/random/maintenance/clean,/obj/random/contraband,/obj/random/junk,/obj/random/junk,/obj/random/maintenance/clean,/turf/simulated/floor/plating,/area/maintenance/lower/trash_pit) -"agn" = (/obj/effect/decal/cleanable/dirt,/obj/effect/floor_decal/industrial/warning,/obj/random/junk,/obj/random/maintenance/research,/obj/random/maintenance/clean,/obj/random/tool,/turf/simulated/floor/plating,/area/maintenance/lower/trash_pit) -"ago" = (/obj/structure/railing,/obj/structure/railing{dir = 4},/obj/effect/decal/cleanable/dirt,/obj/random/junk,/obj/random/junk,/obj/random/maintenance/clean,/obj/random/maintenance/clean,/turf/simulated/floor/plating,/area/maintenance/lower/trash_pit) -"agp" = (/obj/structure/catwalk,/obj/effect/decal/cleanable/dirt,/obj/random/maintenance/cargo,/turf/simulated/floor/plating,/area/maintenance/lower/trash_pit) -"agq" = (/turf/simulated/wall,/area/tether/surfacebase/north_stairs_one) -"agr" = (/obj/structure/sign/directions/cargo{dir = 4},/turf/simulated/wall,/area/tether/surfacebase/north_stairs_one) -"ags" = (/obj/structure/sign/directions/evac{dir = 4},/turf/simulated/wall,/area/tether/surfacebase/north_stairs_one) -"agt" = (/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (NORTHWEST)"; icon_state = "borderfloor"; dir = 9},/obj/effect/floor_decal/borderfloor/corner2{tag = "icon-borderfloorcorner2 (SOUTHWEST)"; icon_state = "borderfloorcorner2"; dir = 10},/obj/structure/disposalpipe/segment{dir = 4; icon_state = "pipe-c"},/turf/simulated/floor/tiled,/area/tether/surfacebase/atrium_one) -"agu" = (/obj/machinery/atm{pixel_y = 31},/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (NORTH)"; icon_state = "borderfloor"; dir = 1},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled,/area/tether/surfacebase/atrium_one) -"agv" = (/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (NORTH)"; icon_state = "borderfloor"; dir = 1},/obj/machinery/status_display{pixel_y = 30},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled,/area/tether/surfacebase/atrium_one) -"agw" = (/obj/machinery/light{dir = 1},/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (NORTH)"; icon_state = "borderfloor"; dir = 1},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled,/area/tether/surfacebase/atrium_one) -"agx" = (/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (NORTH)"; icon_state = "borderfloor"; dir = 1},/obj/effect/floor_decal/industrial/warning/corner{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/camera/network/northern_star,/turf/simulated/floor/tiled,/area/tether/surfacebase/atrium_one) -"agy" = (/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (NORTH)"; icon_state = "borderfloor"; dir = 1},/obj/effect/floor_decal/industrial/warning{dir = 1},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled,/area/tether/surfacebase/atrium_one) -"agz" = (/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (NORTH)"; icon_state = "borderfloor"; dir = 1},/obj/effect/floor_decal/industrial/warning/corner{icon_state = "warningcorner"; dir = 1},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled,/area/tether/surfacebase/atrium_one) -"agA" = (/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (NORTH)"; icon_state = "borderfloor"; dir = 1},/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/extinguisher_cabinet{pixel_y = 30},/turf/simulated/floor/tiled,/area/tether/surfacebase/atrium_one) -"agB" = (/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (NORTH)"; icon_state = "borderfloor"; dir = 1},/obj/effect/floor_decal/corner/brown/border{tag = "icon-bordercolor (NORTH)"; icon_state = "bordercolor"; dir = 1},/obj/machinery/newscaster{pixel_x = 0; pixel_y = 30},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled,/area/tether/surfacebase/atrium_one) -"agC" = (/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (NORTH)"; icon_state = "borderfloor"; dir = 1},/obj/effect/floor_decal/corner/brown/border{tag = "icon-bordercolor (NORTH)"; icon_state = "bordercolor"; dir = 1},/obj/effect/floor_decal/borderfloor/corner2{tag = "icon-borderfloorcorner2 (NORTH)"; icon_state = "borderfloorcorner2"; dir = 1},/obj/effect/floor_decal/corner/brown/bordercorner2{tag = "icon-bordercolorcorner2 (NORTH)"; icon_state = "bordercolorcorner2"; dir = 1},/obj/item/device/radio/intercom{dir = 1; name = "Station Intercom (General)"; pixel_y = 21},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled,/area/tether/surfacebase/atrium_one) -"agD" = (/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled,/area/tether/surfacebase/atrium_one) -"agE" = (/obj/structure/disposalpipe/junction{dir = 8},/turf/simulated/floor/tiled,/area/tether/surfacebase/atrium_one) -"agF" = (/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (NORTH)"; icon_state = "borderfloor"; dir = 1},/obj/effect/floor_decal/corner/brown/border{tag = "icon-bordercolor (NORTH)"; icon_state = "bordercolor"; dir = 1},/obj/effect/floor_decal/borderfloor/corner2{tag = "icon-borderfloorcorner2 (EAST)"; icon_state = "borderfloorcorner2"; dir = 4},/obj/effect/floor_decal/corner/brown/bordercorner2{tag = "icon-bordercolorcorner2 (EAST)"; icon_state = "bordercolorcorner2"; dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled,/area/tether/surfacebase/atrium_one) -"agG" = (/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (NORTH)"; icon_state = "borderfloor"; dir = 1},/obj/effect/floor_decal/corner/brown/border{tag = "icon-bordercolor (NORTH)"; icon_state = "bordercolor"; dir = 1},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/camera/network/northern_star,/turf/simulated/floor/tiled,/area/tether/surfacebase/atrium_one) -"agH" = (/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (NORTH)"; icon_state = "borderfloor"; dir = 1},/obj/machinery/firealarm{dir = 2; layer = 3.3; pixel_x = 0; pixel_y = 26},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled,/area/tether/surfacebase/atrium_one) -"agI" = (/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (NORTH)"; icon_state = "borderfloor"; dir = 1},/obj/machinery/status_display{pixel_y = 30},/obj/structure/disposalpipe/junction{dir = 8; icon_state = "pipe-j2"},/turf/simulated/floor/tiled,/area/tether/surfacebase/atrium_one) -"agJ" = (/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (NORTHEAST)"; icon_state = "borderfloor"; dir = 5},/obj/machinery/disposal,/obj/structure/disposalpipe/trunk{dir = 8},/turf/simulated/floor/tiled,/area/tether/surfacebase/atrium_one) -"agK" = (/obj/structure/cable{icon_state = "0-2"; d2 = 2},/obj/machinery/power/apc{dir = 1; name = "north bump"; pixel_x = 0; pixel_y = 24},/turf/simulated/floor/tiled/techfloor,/area/tether/surfacebase/emergency_storage/atrium) -"agL" = (/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) -"agM" = (/obj/machinery/space_heater,/obj/effect/floor_decal/industrial/outline/grey,/obj/machinery/alarm{dir = 8; icon_state = "alarm0"; pixel_x = 24},/turf/simulated/floor/tiled/techfloor,/area/tether/surfacebase/emergency_storage/atrium) -"agN" = (/obj/structure/catwalk,/obj/structure/catwalk,/obj/effect/decal/cleanable/dirt,/obj/effect/floor_decal/rust,/obj/random/junk,/obj/random/maintenance/clean,/obj/random/maintenance/research,/turf/simulated/floor/plating,/area/maintenance/lower/trash_pit) -"agO" = (/obj/machinery/alarm{frequency = 1441; pixel_y = 22},/obj/item/device/radio/intercom{dir = 8; name = "Station Intercom (General)"; pixel_x = -28},/turf/simulated/floor/tiled,/area/tether/surfacebase/north_stairs_one) -"agP" = (/obj/machinery/firealarm{dir = 2; layer = 3.3; pixel_x = 0; pixel_y = 26},/turf/simulated/floor/tiled,/area/tether/surfacebase/north_stairs_one) -"agQ" = (/obj/machinery/atmospherics/unary/vent_pump/on,/obj/machinery/camera/network/northern_star,/turf/simulated/floor/tiled,/area/tether/surfacebase/north_stairs_one) -"agR" = (/turf/simulated/floor/tiled,/area/tether/surfacebase/north_stairs_one) -"agS" = (/obj/machinery/newscaster{pixel_x = 0; pixel_y = 30},/turf/simulated/floor/tiled,/area/tether/surfacebase/north_stairs_one) -"agT" = (/obj/machinery/atmospherics/unary/vent_scrubber/on,/turf/simulated/floor/tiled,/area/tether/surfacebase/north_stairs_one) -"agU" = (/obj/machinery/light{dir = 1},/turf/simulated/floor/tiled,/area/tether/surfacebase/north_stairs_one) -"agV" = (/obj/structure/extinguisher_cabinet{pixel_y = 30},/turf/simulated/floor/tiled,/area/tether/surfacebase/north_stairs_one) -"agW" = (/obj/effect/floor_decal/spline/plain{dir = 4},/obj/machinery/door/firedoor/glass,/turf/simulated/floor/tiled,/area/tether/surfacebase/atrium_one) -"agX" = (/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled,/area/tether/surfacebase/atrium_one) -"agY" = (/obj/structure/cable{d1 = 2; d2 = 4; icon_state = "2-4"},/turf/simulated/floor/tiled,/area/tether/surfacebase/atrium_one) -"agZ" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0},/turf/simulated/floor/tiled,/area/tether/surfacebase/atrium_one) -"aha" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0},/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled,/area/tether/surfacebase/atrium_one) -"ahb" = (/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (EAST)"; icon_state = "borderfloor"; dir = 4},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0},/turf/simulated/floor/tiled,/area/tether/surfacebase/atrium_one) -"ahc" = (/obj/machinery/door/airlock/maintenance/int{name = "Emergency Storage"},/obj/machinery/door/firedoor/glass,/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0},/turf/simulated/floor/tiled/techfloor,/area/tether/surfacebase/atrium_one) -"ahd" = (/obj/structure/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0},/turf/simulated/floor/tiled/techfloor,/area/tether/surfacebase/emergency_storage/atrium) -"ahe" = (/obj/structure/cable{d1 = 2; d2 = 8; icon_state = "2-8"},/turf/simulated/floor/tiled/techfloor,/area/tether/surfacebase/emergency_storage/atrium) -"ahf" = (/obj/machinery/floodlight,/obj/effect/floor_decal/industrial/outline/yellow,/obj/machinery/light/small{dir = 4; pixel_y = 0},/turf/simulated/floor/tiled/techfloor,/area/tether/surfacebase/emergency_storage/atrium) -"ahg" = (/obj/effect/floor_decal/industrial/warning,/obj/machinery/computer/guestpass{dir = 4; pixel_x = -28; pixel_y = 0},/turf/simulated/floor/tiled,/area/tether/surfacebase/north_stairs_one) -"ahh" = (/obj/effect/floor_decal/industrial/warning,/turf/simulated/floor/tiled,/area/tether/surfacebase/north_stairs_one) -"ahi" = (/obj/machinery/light/small,/obj/effect/floor_decal/industrial/warning/corner{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 5},/turf/simulated/floor/tiled,/area/tether/surfacebase/north_stairs_one) -"ahj" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled,/area/tether/surfacebase/north_stairs_one) -"ahk" = (/obj/structure/cable{icon_state = "0-4"},/obj/machinery/power/apc{dir = 2; name = "south bump"; pixel_y = -28},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 5},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled,/area/tether/surfacebase/north_stairs_one) -"ahl" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled,/area/tether/surfacebase/north_stairs_one) -"ahm" = (/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},/turf/simulated/floor/tiled,/area/tether/surfacebase/atrium_one) -"ahn" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 10},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 10},/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled,/area/tether/surfacebase/atrium_one) -"aho" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0},/obj/structure/cable{d1 = 2; d2 = 8; icon_state = "2-8"},/turf/simulated/floor/tiled,/area/tether/surfacebase/atrium_one) -"ahp" = (/turf/simulated/floor/grass,/area/tether/surfacebase/atrium_one) -"ahq" = (/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (EAST)"; icon_state = "borderfloor"; dir = 4},/turf/simulated/floor/tiled,/area/tether/surfacebase/atrium_one) -"ahr" = (/obj/structure/closet/firecloset,/turf/simulated/floor/tiled/techfloor,/area/tether/surfacebase/emergency_storage/atrium) -"ahs" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0},/turf/simulated/floor/tiled/techfloor,/area/tether/surfacebase/emergency_storage/atrium) -"aht" = (/obj/structure/table/standard,/obj/item/device/t_scanner,/obj/item/weapon/storage/briefcase/inflatable,/turf/simulated/floor/tiled/techfloor,/area/tether/surfacebase/emergency_storage/atrium) -"ahu" = (/obj/structure/extinguisher_cabinet{dir = 4; icon_state = "extinguisher_closed"; pixel_x = -30; tag = "icon-extinguisher_closed (EAST)"},/turf/simulated/floor/tiled,/area/tether/surfacebase/north_stairs_one) -"ahv" = (/obj/structure/sign/directions/medical{dir = 1; icon_state = "direction_med"; pixel_y = 8; tag = "icon-direction_med (EAST)"},/obj/structure/sign/directions/science{dir = 1; icon_state = "direction_sci"; pixel_y = 3; tag = "icon-direction_sci (WEST)"},/obj/structure/sign/directions/security{dir = 1; icon_state = "direction_sec"; pixel_y = -4; tag = "icon-direction_sec (WEST)"},/obj/structure/sign/directions/engineering{dir = 1; icon_state = "direction_eng"; pixel_y = -10; tag = "icon-direction_eng (WEST)"},/turf/simulated/wall,/area/tether/surfacebase/north_stairs_one) -"ahw" = (/obj/machinery/door/firedoor/glass,/obj/machinery/door/airlock{name = "Secondary Janitorial Closet"; req_access = list(26)},/turf/simulated/floor/tiled,/area/tether/surfacebase/north_stairs_one) -"ahx" = (/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (WEST)"; icon_state = "borderfloor"; dir = 8},/obj/effect/floor_decal/borderfloor/corner2{tag = "icon-borderfloorcorner2 (WEST)"; icon_state = "borderfloorcorner2"; dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled,/area/tether/surfacebase/atrium_one) -"ahy" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0},/turf/simulated/floor/tiled,/area/tether/surfacebase/atrium_one) -"ahz" = (/obj/machinery/light/flamp/noshade,/turf/simulated/floor/grass,/area/tether/surfacebase/atrium_one) -"ahA" = (/obj/structure/flora/ausbushes/ppflowers,/turf/simulated/floor/grass,/area/tether/surfacebase/atrium_one) -"ahB" = (/obj/machinery/door/airlock/maintenance/common,/obj/machinery/door/firedoor/glass,/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0},/turf/simulated/floor/tiled/techfloor,/area/tether/surfacebase/emergency_storage/atrium) -"ahC" = (/obj/structure/catwalk,/obj/machinery/light/small{dir = 4},/turf/simulated/floor/tiled/techfloor,/area/maintenance/lower/xenoflora) -"ahD" = (/obj/structure/stairs/south,/turf/simulated/floor/tiled,/area/tether/surfacebase/north_stairs_one) -"ahE" = (/obj/structure/reagent_dispensers/watertank,/turf/simulated/floor/tiled,/area/tether/surfacebase/north_stairs_one) -"ahF" = (/obj/machinery/light{dir = 8},/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (WEST)"; icon_state = "borderfloor"; dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled,/area/tether/surfacebase/atrium_one) -"ahG" = (/obj/structure/table/bench/wooden,/turf/simulated/floor/grass,/area/tether/surfacebase/atrium_one) -"ahH" = (/turf/simulated/floor/water/pool,/area/tether/surfacebase/atrium_one) -"ahI" = (/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (EAST)"; icon_state = "borderfloor"; dir = 4},/obj/machinery/light{dir = 4; icon_state = "tube1"},/turf/simulated/floor/tiled,/area/tether/surfacebase/atrium_one) -"ahJ" = (/turf/simulated/wall,/area/maintenance/lower/vacant_site) -"ahK" = (/obj/structure/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/turf/simulated/floor/tiled/techfloor,/area/maintenance/lower/vacant_site) -"ahL" = (/obj/structure/cable{d1 = 2; d2 = 8; icon_state = "2-8"},/turf/simulated/floor/tiled/techfloor,/area/maintenance/lower/vacant_site) -"ahM" = (/obj/machinery/alarm{dir = 8; icon_state = "alarm0"; pixel_x = 24},/turf/simulated/floor/tiled,/area/tether/surfacebase/north_stairs_one) -"ahN" = (/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (WEST)"; icon_state = "borderfloor"; dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled,/area/tether/surfacebase/atrium_one) -"ahO" = (/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (EAST)"; icon_state = "borderfloor"; dir = 4},/obj/effect/floor_decal/industrial/warning/corner,/turf/simulated/floor/tiled,/area/tether/surfacebase/atrium_one) -"ahP" = (/obj/machinery/door/airlock/maintenance/common,/obj/machinery/door/firedoor/glass,/obj/structure/cable{tag = "icon-1-2"; icon_state = "1-2"},/turf/simulated/floor/tiled/techfloor,/area/maintenance/lower/vacant_site) -"ahQ" = (/obj/structure/catwalk,/obj/structure/closet,/obj/random/maintenance/cargo,/obj/random/maintenance/clean,/obj/random/action_figure,/obj/random/maintenance/cargo,/turf/simulated/floor/plating,/area/maintenance/lower/vacant_site) -"ahR" = (/obj/structure/catwalk,/obj/machinery/alarm{frequency = 1441; pixel_y = 22},/turf/simulated/floor/plating,/area/maintenance/lower/vacant_site) -"ahS" = (/obj/structure/catwalk,/turf/simulated/floor/plating,/area/maintenance/lower/vacant_site) -"ahT" = (/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,/turf/simulated/floor/tiled,/area/tether/surfacebase/north_stairs_one) -"ahU" = (/obj/machinery/light/small,/obj/structure/mopbucket,/obj/item/weapon/reagent_containers/glass/bucket,/obj/item/weapon/mop,/turf/simulated/floor/tiled,/area/tether/surfacebase/north_stairs_one) -"ahV" = (/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (EAST)"; icon_state = "borderfloor"; dir = 4},/obj/effect/floor_decal/industrial/warning{icon_state = "warning"; dir = 4},/turf/simulated/floor/tiled,/area/tether/surfacebase/atrium_one) -"ahW" = (/obj/structure/grille,/obj/structure/railing{dir = 8},/turf/simulated/floor/tiled/techmaint,/area/tether/surfacebase/atrium_one) -"ahX" = (/obj/machinery/door/airlock/maintenance/common,/obj/machinery/door/firedoor/glass,/turf/simulated/floor/tiled/techfloor,/area/maintenance/lower/vacant_site) -"ahY" = (/obj/structure/catwalk,/obj/structure/cable{tag = "icon-1-4"; icon_state = "1-4"},/turf/simulated/floor/plating,/area/maintenance/lower/vacant_site) -"ahZ" = (/obj/structure/catwalk,/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0},/turf/simulated/floor/plating,/area/maintenance/lower/vacant_site) -"aia" = (/obj/structure/catwalk,/obj/structure/cable{d1 = 2; d2 = 8; icon_state = "2-8"},/turf/simulated/floor/plating,/area/maintenance/lower/vacant_site) -"aib" = (/obj/structure/ladder/up,/obj/structure/catwalk,/obj/effect/floor_decal/industrial/outline/yellow,/turf/simulated/floor/plating,/area/maintenance/lower/vacant_site) -"aic" = (/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (WEST)"; icon_state = "borderfloor"; dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/item/device/radio/intercom{dir = 8; name = "Station Intercom (General)"; pixel_x = -28},/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled,/area/tether/surfacebase/atrium_one) -"aid" = (/obj/structure/flora/ausbushes/brflowers,/turf/simulated/floor/grass,/area/tether/surfacebase/atrium_one) -"aie" = (/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (EAST)"; icon_state = "borderfloor"; dir = 4},/obj/effect/floor_decal/industrial/warning/corner{icon_state = "warningcorner"; dir = 4},/turf/simulated/floor/tiled,/area/tether/surfacebase/atrium_one) -"aif" = (/obj/structure/railing{dir = 1},/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/plating,/area/maintenance/lower/vacant_site) -"aig" = (/obj/structure/railing{dir = 1},/obj/structure/cable,/obj/machinery/power/apc{dir = 2; name = "south bump"; pixel_y = -28},/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/plating,/area/maintenance/lower/vacant_site) -"aih" = (/obj/structure/railing{dir = 1},/obj/effect/decal/cleanable/dirt,/obj/effect/floor_decal/rust,/turf/simulated/floor/plating,/area/maintenance/lower/vacant_site) -"aii" = (/obj/structure/railing{dir = 1},/turf/simulated/floor/plating,/area/maintenance/lower/vacant_site) -"aij" = (/obj/structure/railing{dir = 1},/obj/structure/table/rack,/obj/random/maintenance/clean,/obj/random/maintenance/clean,/obj/random/maintenance/cargo,/turf/simulated/floor/plating,/area/maintenance/lower/vacant_site) -"aik" = (/obj/structure/railing{dir = 1},/obj/structure/railing{dir = 4},/obj/structure/closet/crate,/obj/random/maintenance/cargo,/obj/random/maintenance/clean,/obj/random/maintenance/cargo,/turf/simulated/floor/plating,/area/maintenance/lower/vacant_site) -"ail" = (/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (WEST)"; icon_state = "borderfloor"; dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/disposalpipe/segment,/obj/machinery/camera/network/northern_star{tag = "icon-camera (NORTHEAST)"; icon_state = "camera"; dir = 5},/turf/simulated/floor/tiled,/area/tether/surfacebase/atrium_one) -"aim" = (/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (EAST)"; icon_state = "borderfloor"; dir = 4},/obj/machinery/camera/network/northern_star{tag = "icon-camera (NORTHWEST)"; icon_state = "camera"; dir = 9},/turf/simulated/floor/tiled,/area/tether/surfacebase/atrium_one) -"ain" = (/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/plating,/area/maintenance/lower/vacant_site) -"aio" = (/obj/structure/railing{dir = 4},/obj/structure/railing{dir = 1},/obj/random/junk,/turf/simulated/floor/tiled/techfloor,/area/maintenance/lower/xenoflora) -"aip" = (/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (WEST)"; icon_state = "borderfloor"; dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/computer/guestpass{dir = 4; pixel_x = -28; pixel_y = 0},/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled,/area/tether/surfacebase/atrium_one) -"aiq" = (/obj/structure/flora/ausbushes/ywflowers,/turf/simulated/floor/grass,/area/tether/surfacebase/atrium_one) -"air" = (/obj/structure/flora/ausbushes/ywflowers,/obj/structure/flora/ausbushes/ywflowers,/turf/simulated/floor/grass,/area/tether/surfacebase/atrium_one) -"ais" = (/obj/effect/decal/cleanable/dirt,/obj/effect/floor_decal/rust,/turf/simulated/floor/plating,/area/maintenance/lower/vacant_site) -"ait" = (/obj/effect/floor_decal/rust,/obj/effect/floor_decal/industrial/outline/yellow,/obj/structure/disposalpipe/up{tag = "icon-pipe-u (EAST)"; icon_state = "pipe-u"; dir = 4},/turf/simulated/floor/tiled/techfloor,/area/maintenance/lower/xenoflora) -"aiu" = (/obj/structure/railing{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled/techfloor,/area/maintenance/lower/xenoflora) -"aiv" = (/obj/structure/catwalk,/obj/structure/disposalpipe/segment{dir = 2; icon_state = "pipe-c"},/turf/simulated/floor/tiled/techfloor,/area/maintenance/lower/xenoflora) -"aiw" = (/obj/structure/sign/directions/evac,/turf/simulated/wall,/area/tether/surfacebase/atrium_one) -"aix" = (/turf/simulated/wall,/area/vacant/vacant_site) -"aiy" = (/obj/machinery/door/airlock/maintenance/common,/obj/machinery/door/firedoor/glass,/turf/simulated/floor/plating,/area/vacant/vacant_site) -"aiz" = (/turf/simulated/mineral,/area/vacant/vacant_site) -"aiA" = (/obj/machinery/door/airlock/maintenance/common,/obj/machinery/door/firedoor/glass,/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled/techfloor,/area/maintenance/lower/xenoflora) -"aiB" = (/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (EAST)"; icon_state = "borderfloor"; dir = 4},/obj/item/device/radio/intercom{dir = 4; name = "Station Intercom (General)"; pixel_x = 21},/turf/simulated/floor/tiled,/area/tether/surfacebase/atrium_one) -"aiC" = (/obj/machinery/alarm{frequency = 1441; pixel_y = 22},/obj/effect/floor_decal/rust,/turf/simulated/floor/plating,/area/vacant/vacant_site) -"aiD" = (/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/plating,/area/vacant/vacant_site) -"aiE" = (/turf/simulated/floor/plating,/area/vacant/vacant_site) -"aiF" = (/obj/structure/closet,/obj/random/maintenance/clean,/obj/random/medical/lite,/obj/random/maintenance/research,/obj/random/maintenance/medical,/turf/simulated/floor/plating,/area/vacant/vacant_site) -"aiG" = (/obj/structure/railing{dir = 4},/obj/machinery/atmospherics/pipe/simple/visible/scrubbers{tag = "icon-intact-scrubbers (SOUTHEAST)"; icon_state = "intact-scrubbers"; dir = 6},/obj/effect/floor_decal/rust,/obj/structure/closet,/obj/random/maintenance/engineering,/obj/random/maintenance/research,/obj/random/drinkbottle,/obj/random/maintenance/research,/turf/simulated/floor/tiled/techfloor,/area/maintenance/lower/xenoflora) -"aiH" = (/obj/structure/catwalk,/obj/machinery/atmospherics/pipe/simple/visible/scrubbers{tag = "icon-intact-scrubbers (EAST)"; icon_state = "intact-scrubbers"; dir = 4},/obj/machinery/alarm{frequency = 1441; pixel_y = 22},/obj/effect/floor_decal/rust,/turf/simulated/floor/tiled/techfloor,/area/maintenance/lower/xenoflora) -"aiI" = (/obj/structure/catwalk,/obj/machinery/atmospherics/pipe/simple/visible/scrubbers{tag = "icon-intact-scrubbers (SOUTHWEST)"; icon_state = "intact-scrubbers"; dir = 10},/turf/simulated/floor/tiled/techfloor,/area/maintenance/lower/xenoflora) -"aiJ" = (/obj/structure/catwalk,/obj/machinery/firealarm{dir = 2; layer = 3.3; pixel_x = 0; pixel_y = 26},/turf/simulated/floor/tiled/techfloor,/area/maintenance/lower/xenoflora) -"aiK" = (/obj/structure/catwalk,/obj/structure/disposalpipe/segment{dir = 1; icon_state = "pipe-c"},/turf/simulated/floor/tiled/techfloor,/area/maintenance/lower/xenoflora) -"aiL" = (/obj/structure/catwalk,/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled/techfloor,/area/maintenance/lower/xenoflora) -"aiM" = (/obj/machinery/door/airlock/maintenance/common,/obj/machinery/door/firedoor/glass,/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled/techfloor,/area/tether/surfacebase/atrium_one) -"aiN" = (/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (WEST)"; icon_state = "borderfloor"; dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/disposalpipe/segment{dir = 8; icon_state = "pipe-c"},/turf/simulated/floor/tiled,/area/tether/surfacebase/atrium_one) -"aiO" = (/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (EAST)"; icon_state = "borderfloor"; dir = 4},/obj/structure/extinguisher_cabinet{dir = 8; icon_state = "extinguisher_closed"; pixel_x = 30; tag = "icon-extinguisher_closed (WEST)"},/turf/simulated/floor/tiled,/area/tether/surfacebase/atrium_one) -"aiP" = (/obj/effect/floor_decal/rust,/obj/structure/closet/crate,/obj/random/maintenance/clean,/obj/random/toolbox,/obj/random/maintenance/security,/turf/simulated/floor/plating,/area/vacant/vacant_site) -"aiQ" = (/obj/effect/decal/cleanable/dirt,/obj/effect/floor_decal/rust,/turf/simulated/floor/plating,/area/vacant/vacant_site) -"aiR" = (/obj/structure/railing{dir = 4},/obj/machinery/atmospherics/pipe/simple/visible/scrubbers,/obj/effect/floor_decal/rust,/turf/simulated/floor/tiled/techfloor,/area/maintenance/lower/xenoflora) -"aiS" = (/obj/structure/railing{dir = 8},/obj/structure/railing{dir = 1},/obj/machinery/atmospherics/pipe/simple/visible/universal,/turf/simulated/floor/tiled/techfloor,/area/maintenance/lower/xenoflora) -"aiT" = (/obj/structure/railing{dir = 1},/obj/random/junk,/turf/simulated/floor/tiled/techfloor,/area/maintenance/lower/xenoflora) -"aiU" = (/obj/structure/railing{dir = 1},/obj/effect/decal/cleanable/dirt,/obj/structure/table/rack,/obj/random/maintenance/clean,/obj/random/maintenance/clean,/obj/random/maintenance/research,/turf/simulated/floor/tiled/techfloor,/area/maintenance/lower/xenoflora) -"aiV" = (/obj/structure/railing{dir = 1},/obj/structure/table/rack,/obj/random/maintenance/clean,/obj/random/maintenance/research,/obj/random/maintenance/research,/turf/simulated/floor/tiled/techfloor,/area/maintenance/lower/xenoflora) -"aiW" = (/obj/structure/railing{dir = 1},/obj/structure/closet/crate,/obj/random/maintenance/security,/obj/random/maintenance/clean,/obj/random/maintenance/research,/turf/simulated/floor/tiled/techfloor,/area/maintenance/lower/xenoflora) -"aiX" = (/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (WEST)"; icon_state = "borderfloor"; dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/tiled,/area/tether/surfacebase/atrium_one) -"aiY" = (/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (EAST)"; icon_state = "borderfloor"; dir = 4},/obj/machinery/status_display{pixel_x = 32; pixel_y = 0},/turf/simulated/floor/tiled,/area/tether/surfacebase/atrium_one) -"aiZ" = (/obj/random/junk,/turf/simulated/floor/plating,/area/vacant/vacant_site) -"aja" = (/turf/simulated/wall,/area/tether/surfacebase/tram) -"ajb" = (/obj/structure/sign/warning{name = "\improper STAND AWAY FROM TRACK EDGE"},/turf/simulated/wall,/area/tether/surfacebase/tram) -"ajc" = (/obj/machinery/door/blast/regular,/turf/simulated/wall,/area/tether/surfacebase/tram) -"ajd" = (/obj/machinery/door/blast/regular,/turf/simulated/floor/maglev,/area/tether/surfacebase/tram) -"aje" = (/obj/machinery/door/blast/regular,/turf/simulated/floor/tiled/techfloor/grid,/area/tether/surfacebase/tram) -"ajf" = (/obj/structure/sign/warning/docking_area,/turf/simulated/wall,/area/tether/surfacebase/tram) -"ajg" = (/obj/structure/railing{dir = 4},/obj/machinery/atmospherics/pipe/simple/visible/scrubbers,/turf/simulated/floor/tiled/techfloor,/area/maintenance/lower/xenoflora) -"ajh" = (/obj/structure/railing{dir = 8},/obj/machinery/atmospherics/binary/passive_gate{dir = 1},/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/tiled/techfloor,/area/maintenance/lower/xenoflora) -"aji" = (/obj/machinery/light/small{dir = 4; pixel_y = 0},/turf/simulated/floor/tiled/techfloor,/area/maintenance/lower/xenoflora) -"ajj" = (/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (WEST)"; icon_state = "borderfloor"; dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/extinguisher_cabinet{dir = 4; icon_state = "extinguisher_closed"; pixel_x = -30; tag = "icon-extinguisher_closed (EAST)"},/turf/simulated/floor/tiled,/area/tether/surfacebase/atrium_one) -"ajk" = (/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (EAST)"; icon_state = "borderfloor"; dir = 4},/obj/machinery/computer/guestpass{dir = 8; pixel_x = 25},/turf/simulated/floor/tiled,/area/tether/surfacebase/atrium_one) -"ajl" = (/obj/structure/flora/pottedplant{tag = "icon-plant-10"; icon_state = "plant-10"},/turf/simulated/floor/tiled,/area/tether/surfacebase/tram) -"ajm" = (/obj/structure/bed/chair,/obj/machinery/camera/network/northern_star,/turf/simulated/floor/tiled,/area/tether/surfacebase/tram) -"ajn" = (/obj/structure/bed/chair,/obj/machinery/firealarm{dir = 2; layer = 3.3; pixel_x = 0; pixel_y = 26},/turf/simulated/floor/tiled,/area/tether/surfacebase/tram) -"ajo" = (/obj/structure/bed/chair,/obj/machinery/status_display{pixel_y = 30},/turf/simulated/floor/tiled,/area/tether/surfacebase/tram) -"ajp" = (/obj/machinery/alarm{frequency = 1441; pixel_y = 22},/obj/machinery/disposal,/obj/structure/disposalpipe/trunk,/turf/simulated/floor/tiled,/area/tether/surfacebase/tram) -"ajq" = (/obj/machinery/light{dir = 1},/obj/item/device/radio/intercom{dir = 1; name = "Station Intercom (General)"; pixel_y = 21},/turf/simulated/floor/tiled,/area/tether/surfacebase/tram) -"ajr" = (/obj/effect/floor_decal/industrial/danger{tag = "icon-danger (EAST)"; icon_state = "danger"; dir = 4},/turf/simulated/floor/tiled/steel_grid,/area/tether/surfacebase/tram) -"ajs" = (/obj/effect/floor_decal/techfloor/orange{tag = "icon-techfloororange_edges (WEST)"; icon_state = "techfloororange_edges"; dir = 8},/turf/simulated/floor/tiled/techfloor/grid,/area/tether/surfacebase/tram) -"ajt" = (/turf/simulated/floor/tiled/techfloor/grid,/area/tether/surfacebase/tram) -"aju" = (/turf/simulated/floor/maglev,/area/tether/surfacebase/tram) -"ajv" = (/obj/effect/floor_decal/techfloor/orange{tag = "icon-techfloororange_edges (EAST)"; icon_state = "techfloororange_edges"; dir = 4},/turf/simulated/floor/tiled/techfloor/grid,/area/tether/surfacebase/tram) -"ajw" = (/obj/structure/railing{dir = 4},/obj/machinery/atmospherics/pipe/simple/visible/yellow{dir = 6},/obj/machinery/atmospherics/pipe/simple/visible/scrubbers,/obj/structure/table/rack,/obj/random/maintenance/clean,/obj/random/maintenance/clean,/obj/random/maintenance/research,/turf/simulated/floor/tiled/techfloor,/area/maintenance/lower/xenoflora) -"ajx" = (/obj/structure/catwalk,/obj/machinery/atmospherics/pipe/simple/visible/yellow{dir = 4},/turf/simulated/floor/tiled/techfloor,/area/maintenance/lower/xenoflora) -"ajy" = (/obj/structure/railing{dir = 8},/obj/machinery/atmospherics/pipe/manifold/visible/yellow,/turf/simulated/floor/tiled/techfloor,/area/maintenance/lower/xenoflora) -"ajz" = (/obj/machinery/atmospherics/pipe/tank/phoron{dir = 8; icon_state = "phoron_map"; name = "Xenoflora Waste Buffer"; start_pressure = 0; tag = "icon-phoron_map (WEST)"},/turf/simulated/floor/tiled/techfloor,/area/maintenance/lower/xenoflora) -"ajA" = (/obj/effect/floor_decal/rust,/turf/simulated/floor/plating,/area/vacant/vacant_site) -"ajB" = (/obj/effect/floor_decal/rust,/obj/structure/table/rack,/obj/random/maintenance/clean,/obj/random/maintenance/clean,/obj/random/maintenance/cargo,/turf/simulated/floor/plating,/area/vacant/vacant_site) -"ajC" = (/obj/structure/bed/chair{dir = 4},/obj/machinery/computer/guestpass{dir = 4; pixel_x = -28; pixel_y = 0},/turf/simulated/floor/tiled,/area/tether/surfacebase/tram) -"ajD" = (/turf/simulated/floor/tiled,/area/tether/surfacebase/tram) -"ajE" = (/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled,/area/tether/surfacebase/tram) -"ajF" = (/obj/effect/floor_decal/techfloor/orange{tag = "icon-techfloororange_edges (EAST)"; icon_state = "techfloororange_edges"; dir = 4},/obj/machinery/light{dir = 4; icon_state = "tube1"; pixel_x = 0},/turf/simulated/floor/tiled/techfloor/grid,/area/tether/surfacebase/tram) -"ajG" = (/obj/structure/railing{dir = 4},/obj/machinery/atmospherics/pipe/simple/visible/scrubbers,/obj/machinery/atmospherics/pipe/simple/visible/yellow,/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/tiled/techfloor,/area/maintenance/lower/xenoflora) -"ajH" = (/obj/machinery/light{dir = 8},/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (WEST)"; icon_state = "borderfloor"; dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/tiled,/area/tether/surfacebase/atrium_one) -"ajI" = (/obj/effect/decal/cleanable/dirt,/obj/random/junk,/turf/simulated/floor/plating,/area/vacant/vacant_site) -"ajJ" = (/obj/structure/bed/chair{dir = 4},/obj/machinery/light{dir = 8},/turf/simulated/floor/tiled,/area/tether/surfacebase/tram) -"ajK" = (/obj/machinery/atmospherics/unary/vent_pump/on,/turf/simulated/floor/tiled,/area/tether/surfacebase/tram) -"ajL" = (/obj/machinery/atmospherics/unary/vent_scrubber/on,/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled,/area/tether/surfacebase/tram) -"ajM" = (/turf/simulated/floor/maglev,/area/shuttle/escape/station) -"ajN" = (/turf/simulated/floor/tiled/techfloor/grid,/area/shuttle/escape/station) -"ajO" = (/obj/structure/railing{dir = 4},/obj/machinery/atmospherics/pipe/simple/visible/scrubbers,/obj/machinery/atmospherics/pipe/simple/visible/yellow,/obj/effect/decal/cleanable/dirt,/mob/living/simple_animal/mouse,/turf/simulated/floor/tiled/techfloor,/area/maintenance/lower/xenoflora) -"ajP" = (/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (WEST)"; icon_state = "borderfloor"; dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/camera/network/northern_star{tag = "icon-camera (NORTHEAST)"; icon_state = "camera"; dir = 5},/turf/simulated/floor/tiled,/area/tether/surfacebase/atrium_one) -"ajQ" = (/obj/machinery/door/firedoor/glass,/turf/simulated/floor/plating,/area/tether/surfacebase/atrium_one) -"ajR" = (/obj/effect/decal/cleanable/dirt,/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/plating,/area/vacant/vacant_site) -"ajS" = (/obj/machinery/light_switch{pixel_x = 25},/turf/simulated/floor/plating,/area/vacant/vacant_site) -"ajT" = (/obj/structure/bed/chair{dir = 4},/obj/structure/extinguisher_cabinet{dir = 4; icon_state = "extinguisher_closed"; pixel_x = -30; tag = "icon-extinguisher_closed (EAST)"},/turf/simulated/floor/tiled,/area/tether/surfacebase/tram) -"ajU" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 5},/turf/simulated/floor/tiled,/area/tether/surfacebase/tram) -"ajV" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled,/area/tether/surfacebase/tram) -"ajW" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 10},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled,/area/tether/surfacebase/tram) -"ajX" = (/obj/effect/floor_decal/techfloor/orange{tag = "icon-techfloororange_edges (EAST)"; icon_state = "techfloororange_edges"; dir = 4},/obj/machinery/camera/network/northern_star{tag = "icon-camera (NORTHWEST)"; icon_state = "camera"; dir = 9},/turf/simulated/floor/tiled/techfloor/grid,/area/tether/surfacebase/tram) -"ajY" = (/turf/simulated/wall,/area/rnd/xenobiology/xenoflora/lab_atmos) -"ajZ" = (/turf/simulated/wall/r_wall,/area/maintenance/lower/xenoflora) -"aka" = (/turf/simulated/wall/r_wall,/area/tether/surfacebase/atrium_one) -"akb" = (/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (WEST)"; icon_state = "borderfloor"; dir = 8},/obj/machinery/alarm{dir = 4; icon_state = "alarm0"; pixel_x = -22; pixel_y = 0},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/tiled,/area/tether/surfacebase/atrium_one) -"akc" = (/obj/machinery/door/airlock/multi_tile/glass{dir = 1},/obj/machinery/door/firedoor/glass,/turf/simulated/floor/plating,/area/tether/surfacebase/atrium_one) -"akd" = (/obj/structure/table/rack,/obj/random/maintenance/clean,/obj/random/maintenance/clean,/obj/random/maintenance/engineering,/turf/simulated/floor/plating,/area/vacant/vacant_site) -"ake" = (/obj/structure/bed/chair{dir = 1},/turf/simulated/floor/tiled,/area/tether/surfacebase/tram) -"akf" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled,/area/tether/surfacebase/tram) -"akg" = (/obj/structure/sign/securearea{desc = "A warning sign which reads 'HIGH VOLTAGE'"; icon_state = "shock"; name = "HIGH VOLTAGE"},/turf/simulated/wall,/area/tether/surfacebase/tram) -"akh" = (/obj/machinery/atmospherics/unary/freezer{dir = 2; icon_state = "freezer"},/obj/effect/floor_decal/corner/green{dir = 10},/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (NORTHWEST)"; icon_state = "borderfloor"; dir = 9},/obj/effect/floor_decal/industrial/danger{tag = "icon-danger (NORTHWEST)"; icon_state = "danger"; dir = 9},/turf/simulated/floor/tiled,/area/rnd/xenobiology/xenoflora/lab_atmos) -"aki" = (/obj/machinery/atmospherics/unary/heater{dir = 2; icon_state = "heater"},/obj/effect/floor_decal/corner/green{dir = 10},/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (NORTH)"; icon_state = "borderfloor"; dir = 1},/obj/effect/floor_decal/industrial/danger{tag = "icon-danger (NORTH)"; icon_state = "danger"; dir = 1},/turf/simulated/floor/tiled,/area/rnd/xenobiology/xenoflora/lab_atmos) -"akj" = (/obj/machinery/atmospherics/portables_connector,/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (NORTH)"; icon_state = "borderfloor"; dir = 1},/obj/effect/floor_decal/industrial/danger{tag = "icon-danger (NORTH)"; icon_state = "danger"; dir = 1},/obj/machinery/camera/network/research,/turf/simulated/floor/tiled,/area/rnd/xenobiology/xenoflora/lab_atmos) -"akk" = (/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (NORTH)"; icon_state = "borderfloor"; dir = 1},/obj/effect/floor_decal/industrial/danger{tag = "icon-danger (NORTH)"; icon_state = "danger"; dir = 1},/obj/machinery/alarm{frequency = 1441; pixel_y = 22},/turf/simulated/floor/tiled,/area/rnd/xenobiology/xenoflora/lab_atmos) -"akl" = (/obj/machinery/portable_atmospherics/hydroponics,/obj/machinery/atmospherics/portables_connector,/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (NORTH)"; icon_state = "borderfloor"; dir = 1},/obj/effect/floor_decal/industrial/danger{tag = "icon-danger (NORTH)"; icon_state = "danger"; dir = 1},/turf/simulated/floor/tiled,/area/rnd/xenobiology/xenoflora/lab_atmos) -"akm" = (/obj/machinery/portable_atmospherics/hydroponics,/obj/machinery/atmospherics/portables_connector,/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (NORTHEAST)"; icon_state = "borderfloor"; dir = 5},/obj/effect/floor_decal/industrial/danger{tag = "icon-danger (NORTHEAST)"; icon_state = "danger"; dir = 5},/turf/simulated/floor/tiled,/area/rnd/xenobiology/xenoflora/lab_atmos) -"akn" = (/obj/structure/railing{dir = 4},/obj/machinery/atmospherics/pipe/simple/visible/scrubbers,/obj/machinery/atmospherics/pipe/simple/visible/yellow,/obj/machinery/power/apc{cell_type = /obj/item/weapon/cell/super; dir = 8; name = "west bump"; pixel_x = -28},/obj/structure/cable{icon_state = "0-4"; d2 = 4},/turf/simulated/floor/tiled/techfloor,/area/maintenance/lower/xenoflora) -"ako" = (/obj/structure/catwalk,/obj/structure/cable{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/tiled/techfloor,/area/maintenance/lower/xenoflora) -"akp" = (/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{tag = "icon-16-0"; icon_state = "16-0"},/obj/structure/cable{icon_state = "0-2"; d2 = 2},/obj/structure/disposalpipe/up,/turf/simulated/floor/plating,/area/maintenance/lower/xenoflora) -"akq" = (/turf/simulated/shuttle/wall/voidcraft/green{hard_corner = 1},/area/tether/surfacebase/atrium_one) -"akr" = (/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (WEST)"; icon_state = "borderfloor"; dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 5},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 5},/turf/simulated/floor/tiled,/area/tether/surfacebase/atrium_one) -"aks" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0},/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/atrium_one) -"akt" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 10},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 10},/obj/structure/disposalpipe/segment{dir = 4; icon_state = "pipe-c"},/turf/simulated/floor/tiled,/area/tether/surfacebase/atrium_one) -"aku" = (/obj/structure/disposalpipe/junction{dir = 1; icon_state = "pipe-j2"},/turf/simulated/floor/tiled,/area/tether/surfacebase/atrium_one) -"akv" = (/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (EAST)"; icon_state = "borderfloor"; dir = 4},/obj/machinery/camera/network/northern_star{dir = 8; icon_state = "camera"; tag = "icon-camera (NORTHWEST)"},/turf/simulated/floor/tiled,/area/tether/surfacebase/atrium_one) -"akw" = (/obj/structure/cable{d2 = 2; icon_state = "0-2"; pixel_y = 0},/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/plating,/area/vacant/vacant_site) -"akx" = (/obj/structure/closet/crate,/obj/random/maintenance/clean,/obj/random/maintenance/cargo,/obj/random/drinkbottle,/obj/random/maintenance/medical,/turf/simulated/floor/plating,/area/vacant/vacant_site) -"aky" = (/obj/machinery/vending/snack,/turf/simulated/floor/tiled,/area/tether/surfacebase/tram) -"akz" = (/turf/simulated/wall,/area/rnd/xenobiology/xenoflora) -"akA" = (/obj/machinery/atmospherics/pipe/simple/visible{tag = "icon-intact (NORTHEAST)"; icon_state = "intact"; dir = 5},/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (WEST)"; icon_state = "borderfloor"; dir = 8},/obj/effect/floor_decal/industrial/danger{tag = "icon-danger (WEST)"; icon_state = "danger"; dir = 8},/turf/simulated/floor/tiled,/area/rnd/xenobiology/xenoflora/lab_atmos) -"akB" = (/obj/machinery/atmospherics/pipe/manifold/visible,/obj/machinery/meter,/turf/simulated/floor/tiled,/area/rnd/xenobiology/xenoflora/lab_atmos) -"akC" = (/obj/machinery/atmospherics/pipe/simple/visible{tag = "icon-intact (NORTHWEST)"; icon_state = "intact"; dir = 9},/turf/simulated/floor/tiled,/area/rnd/xenobiology/xenoflora/lab_atmos) -"akD" = (/turf/simulated/floor/tiled,/area/rnd/xenobiology/xenoflora/lab_atmos) -"akE" = (/obj/machinery/atmospherics/pipe/simple/visible,/obj/machinery/meter,/turf/simulated/floor/tiled,/area/rnd/xenobiology/xenoflora/lab_atmos) -"akF" = (/obj/machinery/atmospherics/pipe/simple/visible,/obj/machinery/meter,/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (EAST)"; icon_state = "borderfloor"; dir = 4},/obj/effect/floor_decal/industrial/danger{tag = "icon-danger (EAST)"; icon_state = "danger"; dir = 4},/turf/simulated/floor/tiled,/area/rnd/xenobiology/xenoflora/lab_atmos) -"akG" = (/obj/structure/railing{dir = 4},/obj/machinery/atmospherics/pipe/manifold/visible/scrubbers{dir = 8},/obj/machinery/atmospherics/pipe/simple/visible/supply{dir = 6},/obj/machinery/atmospherics/pipe/simple/visible/yellow,/obj/random/tool,/turf/simulated/floor/tiled/techfloor,/area/maintenance/lower/xenoflora) -"akH" = (/obj/structure/catwalk,/obj/machinery/atmospherics/pipe/simple/visible/supply{tag = "icon-intact-supply (EAST)"; icon_state = "intact-supply"; dir = 4},/obj/machinery/atmospherics/pipe/simple/visible/scrubbers{tag = "icon-intact-scrubbers (EAST)"; icon_state = "intact-scrubbers"; dir = 4},/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"},/turf/simulated/floor/tiled/techfloor,/area/maintenance/lower/xenoflora) -"akI" = (/obj/machinery/door/airlock/maintenance/engi,/obj/machinery/atmospherics/pipe/simple/visible/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/visible/scrubbers{dir = 4},/obj/machinery/door/firedoor/glass,/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/plating,/area/maintenance/lower/xenoflora) -"akJ" = (/obj/machinery/atmospherics/pipe/simple/visible/supply{dir = 9},/obj/machinery/atmospherics/pipe/simple/visible/scrubbers{dir = 9},/obj/structure/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/structure/disposalpipe/segment{dir = 8; icon_state = "pipe-c"},/turf/simulated/floor/plating,/area/maintenance/lower/xenoflora) -"akK" = (/turf/simulated/floor/holofloor/tiled/dark,/area/tether/surfacebase/atrium_one) -"akL" = (/obj/item/device/radio/intercom{dir = 1; name = "Station Intercom (General)"; pixel_y = 21},/turf/simulated/floor/tiled,/area/tether/surfacebase/atrium_one) -"akM" = (/obj/structure/flora/pottedplant{icon_state = "plant-22"},/obj/machinery/camera/network/northern_star,/turf/simulated/floor/tiled,/area/tether/surfacebase/atrium_one) -"akN" = (/obj/structure/sign/directions/evac{dir = 4},/turf/simulated/wall,/area/tether/surfacebase/atrium_one) -"akO" = (/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (WEST)"; icon_state = "borderfloor"; dir = 8},/turf/simulated/floor/tiled,/area/tether/surfacebase/atrium_one) -"akP" = (/obj/effect/floor_decal/borderfloor/corner,/obj/structure/cable{icon_state = "2-4"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled,/area/tether/surfacebase/atrium_one) -"akQ" = (/obj/effect/floor_decal/borderfloor,/obj/structure/cable{tag = "icon-4-8"; icon_state = "4-8"},/turf/simulated/floor/tiled,/area/tether/surfacebase/atrium_one) -"akR" = (/obj/effect/floor_decal/borderfloor,/obj/machinery/power/apc{dir = 2; name = "south bump"; pixel_y = -28},/obj/structure/cable{d2 = 8; icon_state = "0-8"},/turf/simulated/floor/tiled,/area/tether/surfacebase/atrium_one) -"akS" = (/obj/effect/floor_decal/borderfloor,/turf/simulated/floor/tiled,/area/tether/surfacebase/atrium_one) -"akT" = (/obj/effect/floor_decal/borderfloor,/obj/machinery/camera/network/northern_star{tag = "icon-camera (NORTH)"; icon_state = "camera"; dir = 1},/turf/simulated/floor/tiled,/area/tether/surfacebase/atrium_one) -"akU" = (/obj/effect/floor_decal/borderfloor,/obj/machinery/light,/turf/simulated/floor/tiled,/area/tether/surfacebase/atrium_one) -"akV" = (/obj/effect/floor_decal/borderfloor,/obj/item/device/radio/intercom{name = "Station Intercom (General)"; pixel_y = -21},/turf/simulated/floor/tiled,/area/tether/surfacebase/atrium_one) -"akW" = (/obj/effect/floor_decal/borderfloor,/obj/machinery/newscaster{pixel_x = 0; pixel_y = -30},/turf/simulated/floor/tiled,/area/tether/surfacebase/atrium_one) -"akX" = (/obj/effect/floor_decal/borderfloor/corner{tag = "icon-borderfloorcorner (WEST)"; icon_state = "borderfloorcorner"; dir = 8},/turf/simulated/floor/tiled,/area/tether/surfacebase/atrium_one) -"akY" = (/obj/structure/cable{tag = "icon-1-2"; icon_state = "1-2"},/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/plating,/area/vacant/vacant_site) -"akZ" = (/obj/machinery/portable_atmospherics/powered/scrubber/huge/stationary/tram,/turf/simulated/floor/tiled,/area/tether/surfacebase/tram) -"ala" = (/obj/machinery/vending/cola,/turf/simulated/floor/tiled,/area/tether/surfacebase/tram) -"alb" = (/obj/structure/closet/secure_closet/hydroponics,/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (NORTHWEST)"; icon_state = "borderfloor"; dir = 9},/obj/effect/floor_decal/corner/mauve/border{tag = "icon-bordercolor (NORTHWEST)"; icon_state = "bordercolor"; dir = 9},/obj/machinery/camera/network/research{c_tag = "SCI - Research Hallway Center"; dir = 4},/turf/simulated/floor/tiled,/area/rnd/xenobiology/xenoflora) -"alc" = (/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (NORTH)"; icon_state = "borderfloor"; dir = 1},/obj/effect/floor_decal/corner/mauve/border{tag = "icon-bordercolor (NORTH)"; icon_state = "bordercolor"; dir = 1},/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/tiled,/area/rnd/xenobiology/xenoflora) -"ald" = (/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (NORTH)"; icon_state = "borderfloor"; dir = 1},/obj/effect/floor_decal/corner/mauve/border{tag = "icon-bordercolor (NORTH)"; icon_state = "bordercolor"; dir = 1},/obj/machinery/firealarm{dir = 2; layer = 3.3; pixel_x = 0; pixel_y = 26},/turf/simulated/floor/tiled,/area/rnd/xenobiology/xenoflora) -"ale" = (/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (NORTHEAST)"; icon_state = "borderfloor"; dir = 5},/obj/effect/floor_decal/corner/mauve/border{tag = "icon-bordercolor (NORTHEAST)"; icon_state = "bordercolor"; dir = 5},/obj/effect/floor_decal/borderfloor/corner2{tag = "icon-borderfloorcorner2 (NORTHEAST)"; icon_state = "borderfloorcorner2"; dir = 5},/obj/effect/floor_decal/corner/mauve/bordercorner2{tag = "icon-bordercolorcorner2 (NORTHEAST)"; icon_state = "bordercolorcorner2"; dir = 5},/obj/structure/closet/crate/hydroponics,/turf/simulated/floor/tiled,/area/rnd/xenobiology/xenoflora) -"alf" = (/obj/structure/grille,/obj/structure/window/reinforced{dir = 5; icon_state = "fwindow"},/obj/machinery/door/firedoor,/turf/simulated/floor/plating,/area/rnd/xenobiology/xenoflora/lab_atmos) -"alg" = (/obj/structure/window/reinforced,/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (WEST)"; icon_state = "borderfloor"; dir = 8},/obj/effect/floor_decal/industrial/danger{tag = "icon-danger (WEST)"; icon_state = "danger"; dir = 8},/obj/effect/floor_decal/borderfloor/corner2{tag = "icon-borderfloorcorner2 (SOUTHWEST)"; icon_state = "borderfloorcorner2"; dir = 10},/turf/simulated/floor/tiled,/area/rnd/xenobiology/xenoflora/lab_atmos) -"alh" = (/obj/structure/window/reinforced,/obj/machinery/atmospherics/unary/vent_scrubber/on,/turf/simulated/floor/tiled,/area/rnd/xenobiology/xenoflora/lab_atmos) -"ali" = (/obj/structure/window/reinforced,/obj/machinery/atmospherics/unary/vent_pump/on,/turf/simulated/floor/tiled,/area/rnd/xenobiology/xenoflora/lab_atmos) -"alj" = (/obj/machinery/door/window/brigdoor/southright,/turf/simulated/floor/tiled,/area/rnd/xenobiology/xenoflora/lab_atmos) -"alk" = (/obj/structure/window/reinforced,/obj/machinery/atmospherics/portables_connector{dir = 1},/turf/simulated/floor/tiled,/area/rnd/xenobiology/xenoflora/lab_atmos) -"all" = (/obj/structure/window/reinforced,/obj/machinery/atmospherics/portables_connector{dir = 1},/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (EAST)"; icon_state = "borderfloor"; dir = 4},/obj/effect/floor_decal/industrial/danger{tag = "icon-danger (EAST)"; icon_state = "danger"; dir = 4},/obj/effect/floor_decal/borderfloor/corner2{tag = "icon-borderfloorcorner2 (NORTHEAST)"; icon_state = "borderfloorcorner2"; dir = 5},/obj/machinery/status_display{pixel_x = 32; pixel_y = 0},/turf/simulated/floor/tiled,/area/rnd/xenobiology/xenoflora/lab_atmos) -"alm" = (/obj/structure/railing{dir = 4},/obj/machinery/atmospherics/pipe/simple/visible/scrubbers,/obj/machinery/atmospherics/pipe/simple/visible/supply,/obj/machinery/atmospherics/pipe/simple/visible/yellow,/obj/structure/closet,/obj/random/maintenance/clean,/obj/random/maintenance/research,/obj/random/maintenance/research,/turf/simulated/floor/tiled/techfloor,/area/maintenance/lower/xenoflora) -"aln" = (/obj/structure/catwalk,/obj/structure/cable{tag = "icon-1-2"; icon_state = "1-2"},/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled/techfloor,/area/maintenance/lower/xenoflora) -"alo" = (/turf/simulated/floor/plating,/area/maintenance/lower/xenoflora) -"alp" = (/turf/simulated/floor/tiled,/area/tether/surfacebase/atrium_one) -"alq" = (/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (NORTH)"; icon_state = "borderfloor"; dir = 1},/obj/machinery/newscaster{pixel_x = 0; pixel_y = 30},/turf/simulated/floor/tiled,/area/tether/surfacebase/atrium_one) -"alr" = (/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (NORTH)"; icon_state = "borderfloor"; dir = 1},/obj/machinery/status_display{pixel_y = 30},/turf/simulated/floor/tiled,/area/tether/surfacebase/atrium_one) -"als" = (/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (NORTH)"; icon_state = "borderfloor"; dir = 1},/obj/machinery/alarm{frequency = 1441; pixel_y = 22},/turf/simulated/floor/tiled,/area/tether/surfacebase/atrium_one) -"alt" = (/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (NORTH)"; icon_state = "borderfloor"; dir = 1},/turf/simulated/floor/tiled,/area/tether/surfacebase/atrium_one) -"alu" = (/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (NORTH)"; icon_state = "borderfloor"; dir = 1},/obj/structure/extinguisher_cabinet{pixel_y = 30},/turf/simulated/floor/tiled,/area/tether/surfacebase/atrium_one) -"alv" = (/obj/machinery/light{dir = 1},/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (NORTH)"; icon_state = "borderfloor"; dir = 1},/turf/simulated/floor/tiled,/area/tether/surfacebase/atrium_one) -"alw" = (/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (NORTH)"; icon_state = "borderfloor"; dir = 1},/obj/machinery/firealarm{dir = 2; layer = 3.3; pixel_x = 0; pixel_y = 26},/turf/simulated/floor/tiled,/area/tether/surfacebase/atrium_one) -"alx" = (/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (NORTH)"; icon_state = "borderfloor"; dir = 1},/obj/machinery/door/firedoor/glass/hidden/steel{dir = 2},/turf/simulated/floor/tiled,/area/tether/surfacebase/atrium_one) -"aly" = (/obj/effect/floor_decal/borderfloor/corner{tag = "icon-borderfloorcorner (NORTH)"; icon_state = "borderfloorcorner"; dir = 1},/turf/simulated/floor/tiled,/area/tether/surfacebase/atrium_one) -"alz" = (/obj/machinery/atmospherics/unary/vent_pump/on{dir = 4},/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0},/turf/simulated/floor/tiled,/area/tether/surfacebase/atrium_one) -"alA" = (/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (EAST)"; icon_state = "borderfloor"; dir = 4},/obj/effect/floor_decal/industrial/warning/corner,/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled,/area/tether/surfacebase/atrium_one) -"alB" = (/turf/simulated/wall,/area/crew_quarters/locker) -"alC" = (/obj/structure/sign/directions/evac{dir = 4},/turf/simulated/wall,/area/crew_quarters/locker) -"alD" = (/obj/machinery/door/airlock/multi_tile/glass,/obj/machinery/door/firedoor/glass,/turf/simulated/floor/plating,/area/tether/surfacebase/atrium_one) -"alE" = (/obj/machinery/door/firedoor/glass,/obj/structure/cable{tag = "icon-1-2"; icon_state = "1-2"},/turf/simulated/floor/plating,/area/tether/surfacebase/atrium_one) -"alF" = (/obj/structure/grille,/obj/structure/railing,/turf/simulated/floor/tiled,/area/tether/surfacebase/tram) -"alG" = (/obj/structure/sign/warning/nosmoking_1,/turf/simulated/wall,/area/tether/surfacebase/tram) -"alH" = (/obj/machinery/light{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled,/area/tether/surfacebase/tram) -"alI" = (/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (WEST)"; icon_state = "borderfloor"; dir = 8},/obj/effect/floor_decal/corner/mauve/border{tag = "icon-bordercolor (WEST)"; icon_state = "bordercolor"; dir = 8},/obj/structure/closet/secure_closet/hydroponics,/turf/simulated/floor/tiled,/area/rnd/xenobiology/xenoflora) -"alJ" = (/obj/structure/cable/green{d1 = 1; d2 = 4; icon_state = "1-4"},/turf/simulated/floor/tiled,/area/rnd/xenobiology/xenoflora) -"alK" = (/obj/machinery/atmospherics/pipe/simple/hidden/yellow{dir = 6},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 6},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 6},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/cable/green{d1 = 2; d2 = 4; icon_state = "2-4"},/turf/simulated/floor/tiled,/area/rnd/xenobiology/xenoflora) -"alL" = (/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/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/tiled,/area/rnd/xenobiology/xenoflora) -"alM" = (/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,/area/rnd/xenobiology/xenoflora/lab_atmos) -"alN" = (/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"},/turf/simulated/floor/tiled,/area/rnd/xenobiology/xenoflora/lab_atmos) -"alO" = (/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/lab_atmos) -"alP" = (/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/lab_atmos) -"alQ" = (/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/lab_atmos) -"alR" = (/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/lab_atmos) -"alS" = (/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (EAST)"; icon_state = "borderfloor"; dir = 4},/obj/effect/floor_decal/corner/mauve/border{tag = "icon-bordercolor (EAST)"; icon_state = "bordercolor"; 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"},/turf/simulated/floor/tiled,/area/rnd/xenobiology/xenoflora/lab_atmos) -"alT" = (/obj/structure/railing,/obj/structure/railing{dir = 4},/obj/machinery/atmospherics/pipe/simple/visible/scrubbers,/obj/machinery/atmospherics/pipe/simple/visible/supply,/obj/machinery/atmospherics/pipe/simple/visible/yellow,/turf/simulated/floor/tiled/techfloor,/area/maintenance/lower/xenoflora) -"alU" = (/obj/machinery/atmospherics/unary/vent_scrubber/on,/turf/simulated/floor/tiled,/area/tether/surfacebase/atrium_one) -"alV" = (/obj/machinery/atmospherics/unary/vent_pump/on,/turf/simulated/floor/tiled,/area/tether/surfacebase/atrium_one) -"alW" = (/obj/structure/disposalpipe/segment{dir = 4; icon_state = "pipe-c"},/turf/simulated/floor/tiled,/area/tether/surfacebase/atrium_one) -"alX" = (/obj/machinery/door/firedoor/glass/hidden/steel,/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled,/area/tether/surfacebase/atrium_one) -"alY" = (/obj/machinery/atmospherics/unary/vent_scrubber/on,/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled,/area/tether/surfacebase/atrium_one) -"alZ" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled,/area/tether/surfacebase/atrium_one) -"ama" = (/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (EAST)"; icon_state = "borderfloor"; dir = 4},/obj/effect/floor_decal/industrial/warning{icon_state = "warning"; dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/disposalpipe/junction{dir = 1; icon_state = "pipe-j2"},/turf/simulated/floor/tiled,/area/tether/surfacebase/atrium_one) -"amb" = (/obj/structure/closet/secure_closet/personal,/obj/machinery/status_display{pixel_y = 30},/turf/simulated/floor/tiled,/area/crew_quarters/locker) -"amc" = (/obj/structure/closet/secure_closet/personal,/obj/item/device/radio/intercom{dir = 1; name = "Station Intercom (General)"; pixel_y = 21},/turf/simulated/floor/tiled,/area/crew_quarters/locker) -"amd" = (/obj/machinery/vending/snack,/turf/simulated/floor/tiled,/area/crew_quarters/locker) -"ame" = (/obj/structure/closet/secure_closet/personal,/obj/machinery/camera/network/civilian,/turf/simulated/floor/tiled,/area/crew_quarters/locker) -"amf" = (/obj/structure/closet/secure_closet/personal,/turf/simulated/floor/tiled,/area/crew_quarters/locker) -"amg" = (/obj/structure/table/standard,/obj/item/weapon/storage/laundry_basket,/obj/item/weapon/tape_roll,/turf/simulated/floor/tiled,/area/crew_quarters/locker) -"amh" = (/obj/structure/table/standard,/obj/item/weapon/storage/toolbox/mechanical{pixel_x = -2; pixel_y = -1},/obj/machinery/firealarm{dir = 2; layer = 3.3; pixel_x = 0; pixel_y = 26},/turf/simulated/floor/tiled,/area/crew_quarters/locker) -"ami" = (/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (WEST)"; icon_state = "borderfloor"; dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 6},/turf/simulated/floor/tiled,/area/tether/surfacebase/atrium_one) -"amj" = (/obj/machinery/atmospherics/unary/vent_pump/on{dir = 8},/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled,/area/tether/surfacebase/atrium_one) -"amk" = (/obj/effect/floor_decal/borderfloor/corner{tag = "icon-borderfloorcorner (EAST)"; icon_state = "borderfloorcorner"; dir = 4},/turf/simulated/floor/tiled,/area/tether/surfacebase/atrium_one) -"aml" = (/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (NORTH)"; icon_state = "borderfloor"; dir = 1},/obj/machinery/light{dir = 1},/turf/simulated/floor/tiled,/area/tether/surfacebase/atrium_one) -"amm" = (/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (NORTH)"; icon_state = "borderfloor"; dir = 1},/obj/structure/cable{tag = "icon-1-2"; icon_state = "1-2"},/turf/simulated/floor/tiled,/area/tether/surfacebase/atrium_one) -"amn" = (/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (NORTH)"; icon_state = "borderfloor"; dir = 1},/obj/item/device/radio/intercom{dir = 1; name = "Station Intercom (General)"; pixel_y = 21},/turf/simulated/floor/tiled,/area/tether/surfacebase/atrium_one) -"amo" = (/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (NORTH)"; icon_state = "borderfloor"; dir = 1},/obj/machinery/camera/network/northern_star,/turf/simulated/floor/tiled,/area/tether/surfacebase/atrium_one) -"amp" = (/obj/machinery/door/firedoor/glass,/obj/machinery/door/airlock/external{req_one_access = list()},/turf/simulated/floor/tiled,/area/tether/surfacebase/tram) -"amq" = (/obj/effect/floor_decal/industrial/warning{icon_state = "warning"; dir = 1},/turf/simulated/floor/tiled,/area/tether/surfacebase/tram) -"amr" = (/obj/effect/floor_decal/industrial/warning{icon_state = "warning"; dir = 1},/obj/effect/landmark{name = "JoinLate"},/turf/simulated/floor/tiled,/area/tether/surfacebase/tram) -"ams" = (/obj/effect/floor_decal/industrial/warning{icon_state = "warning"; dir = 1},/obj/machinery/status_display{pixel_y = 30},/obj/effect/landmark/tram,/turf/simulated/floor/tiled,/area/tether/surfacebase/tram) -"amt" = (/obj/machinery/door/firedoor/glass,/obj/machinery/cryopod/robot/door/tram,/turf/simulated/floor/tiled,/area/tether/surfacebase/tram) -"amu" = (/obj/structure/table/glass,/obj/item/weapon/paper_bin{pixel_x = 1; pixel_y = 9},/obj/item/weapon/pen,/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (NORTHWEST)"; icon_state = "borderfloor"; dir = 9},/obj/effect/floor_decal/corner/mauve/border{tag = "icon-bordercolor (NORTHWEST)"; icon_state = "bordercolor"; dir = 9},/turf/simulated/floor/tiled,/area/rnd/xenobiology/xenoflora) -"amv" = (/obj/structure/table/glass,/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (NORTH)"; icon_state = "borderfloor"; dir = 1},/obj/effect/floor_decal/corner/mauve/border{tag = "icon-bordercolor (NORTH)"; icon_state = "bordercolor"; dir = 1},/obj/machinery/camera/network/research,/turf/simulated/floor/tiled,/area/rnd/xenobiology/xenoflora) -"amw" = (/obj/structure/table/glass,/obj/item/weapon/storage/box/botanydisk,/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (NORTH)"; icon_state = "borderfloor"; dir = 1},/obj/effect/floor_decal/corner/mauve/border{tag = "icon-bordercolor (NORTH)"; icon_state = "bordercolor"; dir = 1},/obj/item/device/radio/intercom{dir = 1; name = "Station Intercom (General)"; pixel_y = 21},/turf/simulated/floor/tiled,/area/rnd/xenobiology/xenoflora) -"amx" = (/obj/structure/table/glass,/obj/item/weapon/storage/box/beakers{pixel_x = 2; pixel_y = 2},/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (NORTH)"; icon_state = "borderfloor"; dir = 1},/obj/effect/floor_decal/corner/mauve/border{tag = "icon-bordercolor (NORTH)"; icon_state = "bordercolor"; dir = 1},/obj/machinery/alarm{frequency = 1441; pixel_y = 22},/turf/simulated/floor/tiled,/area/rnd/xenobiology/xenoflora) -"amy" = (/obj/structure/reagent_dispensers/watertank,/obj/item/weapon/reagent_containers/glass/bucket,/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (NORTH)"; icon_state = "borderfloor"; dir = 1},/obj/effect/floor_decal/corner/mauve/border{tag = "icon-bordercolor (NORTH)"; icon_state = "bordercolor"; dir = 1},/obj/machinery/status_display{pixel_y = 30},/turf/simulated/floor/tiled,/area/rnd/xenobiology/xenoflora) -"amz" = (/obj/machinery/smartfridge/drying_rack,/obj/machinery/light{dir = 1},/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (NORTH)"; icon_state = "borderfloor"; dir = 1},/obj/effect/floor_decal/corner/mauve/border{tag = "icon-bordercolor (NORTH)"; icon_state = "bordercolor"; dir = 1},/turf/simulated/floor/tiled,/area/rnd/xenobiology/xenoflora) -"amA" = (/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (NORTH)"; icon_state = "borderfloor"; dir = 1},/obj/effect/floor_decal/corner/mauve/border{tag = "icon-bordercolor (NORTH)"; icon_state = "bordercolor"; dir = 1},/obj/machinery/light_switch{pixel_y = 25},/turf/simulated/floor/tiled,/area/rnd/xenobiology/xenoflora) -"amB" = (/obj/effect/floor_decal/borderfloor/corner{tag = "icon-borderfloorcorner (NORTH)"; icon_state = "borderfloorcorner"; dir = 1},/obj/effect/floor_decal/corner/mauve/bordercorner{tag = "icon-bordercolorcorner (NORTH)"; icon_state = "bordercolorcorner"; dir = 1},/turf/simulated/floor/tiled,/area/rnd/xenobiology/xenoflora) -"amC" = (/turf/simulated/floor/tiled,/area/rnd/xenobiology/xenoflora) -"amD" = (/obj/machinery/atmospherics/pipe/simple/hidden/yellow,/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,/area/rnd/xenobiology/xenoflora) -"amE" = (/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (EAST)"; icon_state = "borderfloor"; dir = 4},/obj/effect/floor_decal/corner/mauve/border{tag = "icon-bordercolor (EAST)"; icon_state = "bordercolor"; dir = 4},/obj/effect/floor_decal/borderfloor/corner2{tag = "icon-borderfloorcorner2 (SOUTHEAST)"; icon_state = "borderfloorcorner2"; dir = 6},/obj/effect/floor_decal/corner/mauve/bordercorner2{tag = "icon-bordercolorcorner2 (SOUTHEAST)"; icon_state = "bordercolorcorner2"; dir = 6},/turf/simulated/floor/tiled,/area/rnd/xenobiology/xenoflora) -"amF" = (/obj/machinery/atmospherics/pipe/simple/visible{icon_state = "intact"; dir = 6},/obj/machinery/meter,/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (WEST)"; icon_state = "borderfloor"; dir = 8},/obj/effect/floor_decal/corner/mauve/border{tag = "icon-bordercolor (WEST)"; icon_state = "bordercolor"; dir = 8},/obj/effect/floor_decal/borderfloor/corner2{tag = "icon-borderfloorcorner2 (WEST)"; icon_state = "borderfloorcorner2"; dir = 8},/obj/effect/floor_decal/corner/mauve/bordercorner2{tag = "icon-bordercolorcorner2 (WEST)"; icon_state = "bordercolorcorner2"; dir = 8},/turf/simulated/floor/tiled,/area/rnd/xenobiology/xenoflora/lab_atmos) -"amG" = (/obj/machinery/atmospherics/binary/pump{dir = 4; name = "Port to Isolation"},/turf/simulated/floor/tiled,/area/rnd/xenobiology/xenoflora/lab_atmos) -"amH" = (/obj/machinery/atmospherics/pipe/simple/visible{dir = 4},/obj/machinery/meter,/turf/simulated/floor/tiled,/area/rnd/xenobiology/xenoflora/lab_atmos) -"amI" = (/obj/machinery/atmospherics/pipe/manifold/visible{dir = 1},/turf/simulated/floor/tiled,/area/rnd/xenobiology/xenoflora/lab_atmos) -"amJ" = (/obj/machinery/atmospherics/pipe/manifold/visible{dir = 1},/obj/structure/disposalpipe/segment{dir = 4; icon_state = "pipe-c"},/turf/simulated/floor/tiled,/area/rnd/xenobiology/xenoflora/lab_atmos) -"amK" = (/obj/machinery/atmospherics/pipe/manifold/visible{dir = 1},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled,/area/rnd/xenobiology/xenoflora/lab_atmos) -"amL" = (/obj/machinery/atmospherics/binary/pump{dir = 4; name = "Isolation to Waste"},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 8},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled,/area/rnd/xenobiology/xenoflora/lab_atmos) -"amM" = (/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (EAST)"; icon_state = "borderfloor"; dir = 4},/obj/effect/floor_decal/corner/mauve/border{tag = "icon-bordercolor (EAST)"; icon_state = "bordercolor"; dir = 4},/obj/machinery/atmospherics/pipe/manifold4w/hidden/yellow,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 5},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled,/area/rnd/xenobiology/xenoflora/lab_atmos) -"amN" = (/obj/machinery/door/airlock/maintenance/rnd{req_access = list(55)},/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/machinery/door/firedoor/glass,/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled/steel_dirty,/area/rnd/xenobiology/xenoflora/lab_atmos) -"amO" = (/obj/structure/catwalk,/obj/machinery/atmospherics/pipe/simple/visible/scrubbers{tag = "icon-intact-scrubbers (NORTHWEST)"; icon_state = "intact-scrubbers"; dir = 9},/obj/machinery/atmospherics/pipe/simple/visible/supply{dir = 9},/obj/machinery/atmospherics/pipe/simple/visible/yellow{dir = 9},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled/techfloor,/area/maintenance/lower/xenoflora) -"amP" = (/obj/structure/catwalk,/obj/structure/cable{tag = "icon-1-2"; icon_state = "1-2"},/obj/structure/disposalpipe/junction,/turf/simulated/floor/tiled/techfloor,/area/maintenance/lower/xenoflora) -"amQ" = (/obj/turbolift_map_holder/tether{dir = 4},/turf/simulated/floor/holofloor/tiled/dark,/area/tether/surfacebase/atrium_one) -"amR" = (/obj/machinery/light,/obj/effect/floor_decal/borderfloor,/turf/simulated/floor/tiled,/area/tether/surfacebase/atrium_one) -"amS" = (/obj/effect/floor_decal/borderfloor,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 5},/turf/simulated/floor/tiled,/area/tether/surfacebase/atrium_one) -"amT" = (/obj/effect/floor_decal/borderfloor,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/turf/simulated/floor/tiled,/area/tether/surfacebase/atrium_one) -"amU" = (/obj/effect/floor_decal/borderfloor,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/newscaster{pixel_x = 0; pixel_y = -30},/turf/simulated/floor/tiled,/area/tether/surfacebase/atrium_one) -"amV" = (/obj/effect/floor_decal/borderfloor,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 5},/turf/simulated/floor/tiled,/area/tether/surfacebase/atrium_one) -"amW" = (/obj/effect/floor_decal/borderfloor,/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/atrium_one) -"amX" = (/obj/effect/floor_decal/borderfloor,/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 1},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 1},/obj/structure/cable{icon_state = "2-4"},/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled,/area/tether/surfacebase/atrium_one) -"amY" = (/obj/effect/floor_decal/borderfloor,/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0},/obj/machinery/camera/network/northern_star{tag = "icon-camera (NORTH)"; icon_state = "camera"; dir = 1},/turf/simulated/floor/tiled,/area/tether/surfacebase/atrium_one) -"amZ" = (/obj/effect/floor_decal/borderfloor,/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0},/obj/machinery/door/firedoor/glass/hidden/steel{dir = 1},/turf/simulated/floor/tiled,/area/tether/surfacebase/atrium_one) -"ana" = (/obj/effect/floor_decal/borderfloor,/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,/turf/simulated/floor/tiled,/area/tether/surfacebase/atrium_one) -"anb" = (/obj/effect/floor_decal/borderfloor,/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/cable{icon_state = "1-8"},/obj/item/device/radio/intercom{name = "Station Intercom (General)"; pixel_y = -21},/turf/simulated/floor/tiled,/area/tether/surfacebase/atrium_one) -"anc" = (/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (SOUTHEAST)"; icon_state = "borderfloor"; dir = 6},/obj/effect/floor_decal/industrial/warning/corner{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 9},/obj/structure/cable{icon_state = "1-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 9},/obj/machinery/disposal,/obj/structure/disposalpipe/trunk{dir = 1},/turf/simulated/floor/tiled,/area/tether/surfacebase/atrium_one) -"and" = (/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/tiled,/area/crew_quarters/locker) -"ane" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 6},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 10},/turf/simulated/floor/tiled,/area/crew_quarters/locker) -"anf" = (/obj/machinery/atmospherics/unary/vent_pump/on{dir = 8},/turf/simulated/floor/tiled,/area/crew_quarters/locker) -"ang" = (/turf/simulated/floor/tiled,/area/crew_quarters/locker) -"anh" = (/obj/machinery/door/firedoor/glass,/turf/simulated/floor/tiled,/area/crew_quarters/locker) -"ani" = (/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (WEST)"; icon_state = "borderfloor"; dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/tiled,/area/tether/surfacebase/atrium_one) -"anj" = (/obj/structure/disposalpipe/junction{dir = 1},/turf/simulated/floor/tiled,/area/tether/surfacebase/atrium_one) -"ank" = (/obj/machinery/door/firedoor/glass/hidden/steel{dir = 8},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled,/area/tether/surfacebase/atrium_one) -"anl" = (/obj/machinery/atmospherics/unary/vent_pump/on,/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled,/area/tether/surfacebase/atrium_one) -"anm" = (/obj/structure/cable{tag = "icon-1-2"; icon_state = "1-2"},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled,/area/tether/surfacebase/atrium_one) -"ann" = (/obj/structure/grille,/obj/structure/window/reinforced{dir = 5; icon_state = "fwindow"},/obj/machinery/door/firedoor,/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/plating,/area/tether/surfacebase/tram) -"ano" = (/obj/effect/landmark{name = "JoinLate"},/obj/machinery/atmospherics/unary/vent_pump/on,/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled,/area/tether/surfacebase/tram) -"anp" = (/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled,/area/tether/surfacebase/tram) -"anq" = (/obj/effect/landmark{name = "JoinLate"},/obj/machinery/atmospherics/unary/vent_scrubber/on,/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled,/area/tether/surfacebase/tram) -"anr" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/disposalpipe/segment{dir = 8; icon_state = "pipe-c"},/obj/machinery/camera/network/northern_star{tag = "icon-camera (NORTHEAST)"; icon_state = "camera"; dir = 5},/turf/simulated/floor/tiled,/area/tether/surfacebase/tram) -"ans" = (/turf/simulated/wall,/area/rnd/hallway) -"ant" = (/obj/structure/table/glass,/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (WEST)"; icon_state = "borderfloor"; dir = 8},/obj/effect/floor_decal/corner/mauve/border{tag = "icon-bordercolor (WEST)"; icon_state = "bordercolor"; dir = 8},/obj/item/weapon/storage/box/gloves{pixel_x = 4; pixel_y = 4},/obj/item/weapon/storage/box/syringes,/turf/simulated/floor/tiled,/area/rnd/xenobiology/xenoflora) -"anu" = (/obj/structure/bed/chair/office/light{dir = 1},/turf/simulated/floor/tiled,/area/rnd/xenobiology/xenoflora) -"anv" = (/obj/machinery/atmospherics/pipe/simple/hidden/yellow{dir = 6},/turf/simulated/floor/tiled,/area/rnd/xenobiology/xenoflora) -"anw" = (/obj/machinery/atmospherics/pipe/simple/hidden/yellow{dir = 4},/turf/simulated/floor/tiled,/area/rnd/xenobiology/xenoflora) -"anx" = (/obj/machinery/atmospherics/pipe/manifold/hidden/yellow{tag = "icon-map (EAST)"; icon_state = "map"; dir = 4},/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,/area/rnd/xenobiology/xenoflora) -"any" = (/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (EAST)"; icon_state = "borderfloor"; dir = 4},/obj/effect/floor_decal/corner/mauve/border{tag = "icon-bordercolor (EAST)"; icon_state = "bordercolor"; dir = 4},/turf/simulated/floor/tiled,/area/rnd/xenobiology/xenoflora) -"anz" = (/obj/machinery/atmospherics/portables_connector{dir = 1},/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (SOUTHWEST)"; icon_state = "borderfloor"; dir = 10},/obj/effect/floor_decal/corner/mauve/border{tag = "icon-bordercolor (SOUTHWEST)"; icon_state = "bordercolor"; dir = 10},/obj/item/device/radio/intercom{name = "Station Intercom (General)"; pixel_y = -21},/turf/simulated/floor/tiled,/area/rnd/xenobiology/xenoflora/lab_atmos) -"anA" = (/obj/machinery/portable_atmospherics/canister/nitrogen,/obj/effect/floor_decal/industrial/warning{dir = 9},/turf/simulated/floor/tiled/white,/area/rnd/xenobiology/xenoflora/lab_atmos) -"anB" = (/obj/machinery/portable_atmospherics/canister/carbon_dioxide,/obj/effect/floor_decal/industrial/warning{dir = 5},/turf/simulated/floor/tiled/white,/area/rnd/xenobiology/xenoflora/lab_atmos) -"anC" = (/obj/machinery/atmospherics/portables_connector{dir = 1},/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/corner/mauve/border,/obj/machinery/light,/turf/simulated/floor/tiled,/area/rnd/xenobiology/xenoflora/lab_atmos) -"anD" = (/obj/machinery/atmospherics/portables_connector{dir = 1},/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/corner/mauve/border,/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled,/area/rnd/xenobiology/xenoflora/lab_atmos) -"anE" = (/obj/machinery/atmospherics/portables_connector{dir = 1},/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/corner/mauve/border,/obj/machinery/camera/network/research{c_tag = "SCI - Research Dock Hallway Starboard"; dir = 1},/turf/simulated/floor/tiled,/area/rnd/xenobiology/xenoflora/lab_atmos) -"anF" = (/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},/turf/simulated/floor/tiled,/area/rnd/xenobiology/xenoflora/lab_atmos) -"anG" = (/obj/structure/table/glass,/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (SOUTHEAST)"; icon_state = "borderfloor"; dir = 6},/obj/effect/floor_decal/corner/mauve/border{tag = "icon-bordercolor (SOUTHEAST)"; icon_state = "bordercolor"; 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/lab_atmos) -"anH" = (/obj/machinery/door/airlock/maintenance/engi,/obj/machinery/door/firedoor/glass,/obj/structure/cable{tag = "icon-1-2"; icon_state = "1-2"},/obj/structure/disposalpipe/segment,/turf/simulated/floor/plating,/area/maintenance/lower/xenoflora) -"anI" = (/obj/structure/closet/crate,/obj/random/maintenance/engineering,/obj/random/maintenance/engineering,/obj/random/toolbox,/obj/random/maintenance/research,/obj/random/maintenance/research,/turf/simulated/floor/plating,/area/maintenance/lower/xenoflora) -"anJ" = (/obj/structure/flora/pottedplant{icon_state = "plant-22"},/turf/simulated/floor/tiled,/area/tether/surfacebase/atrium_one) -"anK" = (/obj/machinery/door/airlock/maintenance/common,/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0},/obj/machinery/atmospherics/pipe/simple/visible/scrubbers,/obj/machinery/atmospherics/pipe/simple/visible/supply,/obj/structure/disposalpipe/segment,/obj/machinery/door/firedoor/glass,/turf/simulated/floor/tiled/techfloor,/area/tether/surfacebase/atrium_one) -"anL" = (/obj/structure/disposalpipe/segment{dir = 4; icon_state = "pipe-c"},/turf/simulated/floor/tiled,/area/crew_quarters/locker) -"anM" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/cable{icon_state = "2-4"},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled,/area/crew_quarters/locker) -"anN" = (/obj/structure/cable{tag = "icon-4-8"; icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled,/area/crew_quarters/locker) -"anO" = (/obj/machinery/light,/obj/structure/cable{tag = "icon-4-8"; icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled,/area/crew_quarters/locker) -"anP" = (/obj/structure/cable{tag = "icon-2-8"; icon_state = "2-8"},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled,/area/crew_quarters/locker) -"anQ" = (/obj/machinery/door/airlock/multi_tile/glass{dir = 1; name = "Locker Room"},/obj/machinery/door/firedoor/glass,/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled,/area/crew_quarters/locker) -"anR" = (/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (SOUTHWEST)"; icon_state = "borderfloor"; dir = 10},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 5},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled,/area/tether/surfacebase/atrium_one) -"anS" = (/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/industrial/warning/corner,/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/atrium_one) -"anT" = (/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/industrial/warning,/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 5},/turf/simulated/floor/tiled,/area/tether/surfacebase/atrium_one) -"anU" = (/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/industrial/warning/corner{icon_state = "warningcorner"; dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/door/firedoor/glass/hidden/steel{dir = 1},/turf/simulated/floor/tiled,/area/tether/surfacebase/atrium_one) -"anV" = (/obj/effect/floor_decal/borderfloor,/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/camera/network/northern_star{tag = "icon-camera (NORTH)"; icon_state = "camera"; dir = 1},/turf/simulated/floor/tiled,/area/tether/surfacebase/atrium_one) -"anW" = (/obj/effect/floor_decal/borderfloor,/obj/machinery/atmospherics/pipe/manifold/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/turf/simulated/floor/tiled,/area/tether/surfacebase/atrium_one) -"anX" = (/obj/effect/floor_decal/borderfloor,/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 1},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 1},/obj/structure/cable{icon_state = "2-4"},/obj/structure/cable{tag = "icon-1-2"; icon_state = "1-2"},/turf/simulated/floor/tiled,/area/tether/surfacebase/atrium_one) -"anY" = (/obj/effect/floor_decal/borderfloor,/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/cable{tag = "icon-4-8"; icon_state = "4-8"},/turf/simulated/floor/tiled,/area/tether/surfacebase/atrium_one) -"anZ" = (/obj/effect/floor_decal/borderfloor,/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/alarm{dir = 1; pixel_y = -25},/obj/structure/cable{tag = "icon-4-8"; icon_state = "4-8"},/turf/simulated/floor/tiled,/area/tether/surfacebase/atrium_one) -"aoa" = (/obj/effect/floor_decal/borderfloor,/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,/obj/structure/cable{tag = "icon-4-8"; icon_state = "4-8"},/turf/simulated/floor/tiled,/area/tether/surfacebase/atrium_one) -"aob" = (/obj/effect/floor_decal/borderfloor,/obj/machinery/light,/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/cable{tag = "icon-4-8"; icon_state = "4-8"},/turf/simulated/floor/tiled,/area/tether/surfacebase/atrium_one) -"aoc" = (/obj/machinery/door/airlock/external{req_one_access = list()},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/cable{tag = "icon-4-8"; icon_state = "4-8"},/obj/machinery/door/firedoor/glass,/turf/simulated/floor/tiled,/area/tether/surfacebase/tram) -"aod" = (/obj/effect/floor_decal/industrial/warning,/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/manifold/hidden/supply,/obj/structure/cable{tag = "icon-4-8"; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/turf/simulated/floor/tiled,/area/tether/surfacebase/tram) -"aoe" = (/obj/effect/floor_decal/industrial/warning,/obj/effect/landmark{name = "JoinLate"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/cable{tag = "icon-4-8"; icon_state = "4-8"},/turf/simulated/floor/tiled,/area/tether/surfacebase/tram) -"aof" = (/obj/effect/floor_decal/industrial/warning,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,/obj/structure/cable{tag = "icon-4-8"; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/computer/cryopod{pixel_y = -30},/obj/effect/landmark/tram,/turf/simulated/floor/tiled,/area/tether/surfacebase/tram) -"aog" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/cable{tag = "icon-4-8"; icon_state = "4-8"},/obj/machinery/door/firedoor/glass,/obj/machinery/cryopod/robot/door/tram,/turf/simulated/floor/tiled,/area/tether/surfacebase/tram) -"aoh" = (/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 4},/obj/structure/cable{tag = "icon-2-8"; icon_state = "2-8"},/turf/simulated/floor/tiled,/area/tether/surfacebase/tram) -"aoi" = (/turf/simulated/wall/r_wall,/area/rnd/misc_lab) -"aoj" = (/turf/simulated/wall,/area/rnd/misc_lab) -"aok" = (/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (NORTHWEST)"; icon_state = "borderfloor"; dir = 9},/obj/effect/floor_decal/corner/mauve/border{tag = "icon-bordercolor (NORTHWEST)"; icon_state = "bordercolor"; dir = 9},/obj/item/device/radio/intercom{dir = 1; name = "Station Intercom (General)"; pixel_y = 21},/turf/simulated/floor/tiled,/area/rnd/hallway) -"aol" = (/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (NORTHEAST)"; icon_state = "borderfloor"; dir = 5},/obj/effect/floor_decal/corner/mauve/border{tag = "icon-bordercolor (NORTHEAST)"; icon_state = "bordercolor"; dir = 5},/obj/effect/floor_decal/borderfloor/corner2{tag = "icon-borderfloorcorner2 (NORTHEAST)"; icon_state = "borderfloorcorner2"; dir = 5},/obj/effect/floor_decal/corner/mauve/bordercorner2{tag = "icon-bordercolorcorner2 (NORTHEAST)"; icon_state = "bordercolorcorner2"; dir = 5},/obj/machinery/light_switch{pixel_y = 25},/turf/simulated/floor/tiled,/area/rnd/hallway) -"aom" = (/obj/machinery/light{icon_state = "tube1"; dir = 8},/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (WEST)"; icon_state = "borderfloor"; dir = 8},/obj/effect/floor_decal/corner/mauve/border{tag = "icon-bordercolor (WEST)"; icon_state = "bordercolor"; dir = 8},/obj/effect/floor_decal/borderfloor/corner2{tag = "icon-borderfloorcorner2 (SOUTHWEST)"; icon_state = "borderfloorcorner2"; dir = 10},/obj/effect/floor_decal/corner/mauve/bordercorner2{tag = "icon-bordercolorcorner2 (SOUTHWEST)"; icon_state = "bordercolorcorner2"; dir = 10},/obj/machinery/disposal,/obj/structure/disposalpipe/trunk,/turf/simulated/floor/tiled,/area/rnd/xenobiology/xenoflora) -"aon" = (/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 1},/turf/simulated/floor/tiled,/area/rnd/xenobiology/xenoflora) -"aoo" = (/obj/machinery/portable_atmospherics/hydroponics,/turf/simulated/floor/tiled,/area/rnd/xenobiology/xenoflora) -"aop" = (/obj/machinery/atmospherics/unary/vent_pump/on{dir = 4},/turf/simulated/floor/tiled,/area/rnd/xenobiology/xenoflora) -"aoq" = (/obj/machinery/atmospherics/pipe/simple/hidden/yellow,/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/tiled,/area/rnd/xenobiology/xenoflora) -"aor" = (/obj/machinery/biogenerator,/obj/machinery/light{icon_state = "tube1"; dir = 4},/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (EAST)"; icon_state = "borderfloor"; dir = 4},/obj/effect/floor_decal/corner/mauve/border{tag = "icon-bordercolor (EAST)"; icon_state = "bordercolor"; dir = 4},/turf/simulated/floor/tiled,/area/rnd/xenobiology/xenoflora) -"aos" = (/obj/structure/grille,/obj/structure/window/reinforced{dir = 5; icon_state = "fwindow"},/obj/machinery/door/firedoor,/obj/structure/disposalpipe/segment,/turf/simulated/floor/plating,/area/rnd/xenobiology/xenoflora/lab_atmos) -"aot" = (/obj/structure/cable{tag = "icon-1-2"; icon_state = "1-2"},/obj/structure/disposalpipe/segment,/turf/simulated/floor/plating,/area/maintenance/lower/atmos) -"aou" = (/turf/simulated/wall,/area/maintenance/lower/atmos) -"aov" = (/obj/structure/catwalk,/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0},/obj/machinery/atmospherics/pipe/simple/visible/scrubbers,/obj/machinery/atmospherics/pipe/simple/visible/supply,/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled/techfloor,/area/maintenance/lower/atmos) -"aow" = (/obj/structure/grille,/obj/structure/window/reinforced{dir = 5; icon_state = "fwindow"},/obj/machinery/door/firedoor,/obj/structure/disposalpipe/segment,/turf/simulated/floor/plating,/area/crew_quarters/locker) -"aox" = (/obj/machinery/door/airlock/glass,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/door/firedoor/glass,/obj/structure/cable{tag = "icon-1-2"; icon_state = "1-2"},/turf/simulated/floor/tiled,/area/crew_quarters/locker) -"aoy" = (/obj/structure/grille,/obj/structure/window/reinforced{dir = 5; icon_state = "fwindow"},/obj/machinery/door/firedoor,/turf/simulated/floor/plating,/area/crew_quarters/locker) -"aoz" = (/obj/machinery/vending/fitness,/turf/simulated/floor/tiled,/area/crew_quarters/locker) -"aoA" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0},/turf/simulated/floor/tiled,/area/crew_quarters/locker) -"aoB" = (/obj/structure/grille,/obj/structure/railing{dir = 1},/turf/simulated/floor/tiled/techmaint,/area/tether/surfacebase/atrium_one) -"aoC" = (/obj/machinery/door/airlock/maintenance/common,/obj/machinery/door/firedoor/glass,/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,/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/tiled/techfloor,/area/tether/surfacebase/atrium_one) -"aoD" = (/obj/structure/grille,/obj/structure/railing{dir = 1},/turf/simulated/floor/tiled,/area/tether/surfacebase/tram) -"aoE" = (/obj/machinery/light{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/cable{tag = "icon-1-2"; icon_state = "1-2"},/turf/simulated/floor/tiled,/area/tether/surfacebase/tram) -"aoF" = (/obj/effect/floor_decal/rust,/turf/simulated/floor/tiled/steel_dirty,/area/rnd/misc_lab) -"aoG" = (/obj/machinery/shieldwallgen{anchored = 1; req_access = list(47)},/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (NORTHWEST)"; icon_state = "borderfloor"; dir = 9},/obj/effect/floor_decal/industrial/danger{tag = "icon-danger (NORTHWEST)"; icon_state = "danger"; dir = 9},/turf/simulated/floor/tiled,/area/rnd/misc_lab) -"aoH" = (/obj/machinery/suit_storage_unit/standard_unit,/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (NORTH)"; icon_state = "borderfloor"; dir = 1},/obj/effect/floor_decal/corner/mauve/border{tag = "icon-bordercolor (NORTH)"; icon_state = "bordercolor"; dir = 1},/turf/simulated/floor/tiled,/area/rnd/misc_lab) -"aoI" = (/obj/structure/closet/bombcloset,/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (NORTH)"; icon_state = "borderfloor"; dir = 1},/obj/effect/floor_decal/corner/mauve/border{tag = "icon-bordercolor (NORTH)"; icon_state = "bordercolor"; dir = 1},/obj/machinery/camera/network/research,/turf/simulated/floor/tiled,/area/rnd/misc_lab) -"aoJ" = (/obj/machinery/disposal,/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (NORTHEAST)"; icon_state = "borderfloor"; dir = 5},/obj/effect/floor_decal/corner/mauve/border{tag = "icon-bordercolor (NORTHEAST)"; icon_state = "bordercolor"; dir = 5},/obj/machinery/newscaster{pixel_x = 0; pixel_y = 30},/obj/structure/disposalpipe/trunk,/turf/simulated/floor/tiled,/area/rnd/misc_lab) -"aoK" = (/obj/structure/grille,/obj/structure/window/reinforced{dir = 5; icon_state = "fwindow"},/obj/machinery/door/firedoor,/turf/simulated/floor/plating,/area/rnd/misc_lab) -"aoL" = (/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (WEST)"; icon_state = "borderfloor"; dir = 8},/obj/effect/floor_decal/corner/mauve/border{tag = "icon-bordercolor (WEST)"; icon_state = "bordercolor"; dir = 8},/obj/machinery/camera/network/research{c_tag = "SCI - Research Hallway Center"; dir = 4},/turf/simulated/floor/tiled,/area/rnd/hallway) -"aoM" = (/obj/structure/disposalpipe/segment{dir = 4; icon_state = "pipe-c"},/turf/simulated/floor/tiled,/area/rnd/hallway) -"aoN" = (/obj/machinery/door/firedoor/glass,/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/door/airlock/glass_research{name = "Xenoflora Research"; req_access = list(55)},/turf/simulated/floor/tiled,/area/rnd/xenobiology/xenoflora) -"aoO" = (/obj/structure/disposalpipe/segment{dir = 8; icon_state = "pipe-c"},/turf/simulated/floor/tiled,/area/rnd/xenobiology/xenoflora) -"aoP" = (/turf/simulated/floor/grass,/area/rnd/xenobiology/xenoflora) -"aoQ" = (/obj/machinery/seed_extractor,/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (EAST)"; icon_state = "borderfloor"; dir = 4},/obj/effect/floor_decal/corner/mauve/border{tag = "icon-bordercolor (EAST)"; icon_state = "bordercolor"; dir = 4},/turf/simulated/floor/tiled,/area/rnd/xenobiology/xenoflora) -"aoR" = (/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (NORTHWEST)"; icon_state = "borderfloor"; dir = 9},/obj/effect/floor_decal/corner/mauve/border{tag = "icon-bordercolor (NORTHWEST)"; icon_state = "bordercolor"; dir = 9},/obj/machinery/recharge_station,/obj/effect/floor_decal/steeldecal/steel_decals6,/turf/simulated/floor/tiled,/area/rnd/hallway) -"aoS" = (/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (NORTH)"; icon_state = "borderfloor"; dir = 1},/obj/effect/floor_decal/corner/mauve/border{tag = "icon-bordercolor (NORTH)"; icon_state = "bordercolor"; dir = 1},/obj/machinery/firealarm{dir = 2; layer = 3.3; pixel_x = 0; pixel_y = 26},/turf/simulated/floor/tiled,/area/rnd/hallway) -"aoT" = (/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (NORTH)"; icon_state = "borderfloor"; dir = 1},/obj/effect/floor_decal/corner/mauve/border{tag = "icon-bordercolor (NORTH)"; icon_state = "bordercolor"; dir = 1},/turf/simulated/floor/tiled,/area/rnd/hallway) -"aoU" = (/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (NORTH)"; icon_state = "borderfloor"; dir = 1},/obj/effect/floor_decal/corner/mauve/border{tag = "icon-bordercolor (NORTH)"; icon_state = "bordercolor"; dir = 1},/obj/machinery/camera/network/research,/turf/simulated/floor/tiled,/area/rnd/hallway) -"aoV" = (/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (NORTH)"; icon_state = "borderfloor"; dir = 1},/obj/effect/floor_decal/corner/mauve/border{tag = "icon-bordercolor (NORTH)"; icon_state = "bordercolor"; dir = 1},/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled,/area/rnd/hallway) -"aoW" = (/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (NORTH)"; icon_state = "borderfloor"; dir = 1},/obj/effect/floor_decal/corner/mauve/border{tag = "icon-bordercolor (NORTH)"; icon_state = "bordercolor"; dir = 1},/obj/machinery/light_switch{pixel_y = 25},/turf/simulated/floor/tiled,/area/rnd/hallway) -"aoX" = (/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (NORTH)"; icon_state = "borderfloor"; dir = 1},/obj/effect/floor_decal/corner/mauve/border{tag = "icon-bordercolor (NORTH)"; icon_state = "bordercolor"; dir = 1},/obj/machinery/newscaster{pixel_x = 0; pixel_y = 30},/turf/simulated/floor/tiled,/area/rnd/hallway) -"aoY" = (/obj/structure/flora/pottedplant,/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (NORTHEAST)"; icon_state = "borderfloor"; dir = 5},/obj/effect/floor_decal/corner/mauve/border{tag = "icon-bordercolor (NORTHEAST)"; icon_state = "bordercolor"; dir = 5},/obj/effect/floor_decal/steeldecal/steel_decals6{tag = "icon-steel_decals6 (WEST)"; icon_state = "steel_decals6"; dir = 8},/obj/structure/extinguisher_cabinet{pixel_y = 30},/turf/simulated/floor/tiled,/area/rnd/hallway) -"aoZ" = (/obj/structure/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/structure/disposalpipe/segment{dir = 1; icon_state = "pipe-c"},/turf/simulated/floor/plating,/area/maintenance/lower/atmos) -"apa" = (/obj/structure/cable{tag = "icon-4-8"; icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/effect/decal/cleanable/dirt,/obj/effect/floor_decal/rust,/turf/simulated/floor/plating,/area/maintenance/lower/atmos) -"apb" = (/obj/structure/cable{tag = "icon-4-8"; icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/plating,/area/maintenance/lower/atmos) -"apc" = (/obj/structure/cable{tag = "icon-4-8"; icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/plating,/area/maintenance/lower/atmos) -"apd" = (/obj/structure/cable{tag = "icon-4-8"; icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/effect/decal/cleanable/dirt,/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/plating,/area/maintenance/lower/atmos) -"ape" = (/obj/machinery/door/airlock/maintenance/engi,/obj/machinery/door/firedoor/glass,/obj/structure/cable{tag = "icon-4-8"; icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/plating,/area/maintenance/lower/atmos) -"apf" = (/obj/structure/catwalk,/obj/structure/cable{icon_state = "1-8"},/obj/structure/cable{tag = "icon-1-2"; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/visible/scrubbers,/obj/machinery/atmospherics/pipe/simple/visible/supply,/obj/structure/disposalpipe/segment{dir = 8; icon_state = "pipe-c"},/turf/simulated/floor/tiled/techfloor,/area/maintenance/lower/atmos) -"apg" = (/obj/machinery/recharge_station,/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled,/area/crew_quarters/locker) -"aph" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 8},/obj/structure/cable{tag = "icon-1-2"; icon_state = "1-2"},/turf/simulated/floor/tiled,/area/crew_quarters/locker) -"api" = (/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 8},/turf/simulated/floor/tiled,/area/crew_quarters/locker) -"apj" = (/obj/structure/reagent_dispensers/watertank,/obj/machinery/alarm{dir = 8; icon_state = "alarm0"; pixel_x = 24},/turf/simulated/floor/tiled,/area/crew_quarters/locker) -"apk" = (/obj/machinery/vending/coffee,/turf/simulated/floor/tiled,/area/crew_quarters/locker) -"apl" = (/obj/machinery/power/apc{dir = 4; name = "east bump"; pixel_x = 28},/obj/structure/cable,/turf/simulated/floor/tiled,/area/crew_quarters/locker) -"apm" = (/turf/simulated/wall,/area/maintenance/lower/locker_room) -"apn" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/tiled/techfloor,/area/maintenance/lower/locker_room) -"apo" = (/obj/machinery/vending/fitness,/turf/simulated/floor/tiled,/area/tether/surfacebase/tram) -"app" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/cable{tag = "icon-1-2"; icon_state = "1-2"},/turf/simulated/floor/tiled,/area/tether/surfacebase/tram) -"apq" = (/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (WEST)"; icon_state = "borderfloor"; dir = 8},/obj/effect/floor_decal/industrial/danger{tag = "icon-danger (WEST)"; icon_state = "danger"; dir = 8},/obj/machinery/alarm{dir = 4; icon_state = "alarm0"; pixel_x = -22; pixel_y = 0},/turf/simulated/floor/tiled,/area/rnd/misc_lab) -"apr" = (/turf/simulated/floor/tiled,/area/rnd/misc_lab) -"aps" = (/obj/machinery/light{icon_state = "tube1"; dir = 4},/obj/machinery/portable_atmospherics/canister,/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (EAST)"; icon_state = "borderfloor"; dir = 4},/obj/effect/floor_decal/corner/mauve/border{tag = "icon-bordercolor (EAST)"; icon_state = "bordercolor"; dir = 4},/obj/structure/disposalpipe/segment{dir = 1; icon_state = "pipe-c"},/turf/simulated/floor/tiled,/area/rnd/misc_lab) -"apt" = (/obj/structure/grille,/obj/structure/window/reinforced{dir = 5; icon_state = "fwindow"},/obj/machinery/door/firedoor,/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/plating,/area/rnd/misc_lab) -"apu" = (/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (WEST)"; icon_state = "borderfloor"; dir = 8},/obj/effect/floor_decal/corner/mauve/border{tag = "icon-bordercolor (WEST)"; icon_state = "bordercolor"; dir = 8},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled,/area/rnd/hallway) -"apv" = (/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (EAST)"; icon_state = "borderfloor"; dir = 4},/obj/effect/floor_decal/corner/mauve/border{tag = "icon-bordercolor (EAST)"; icon_state = "bordercolor"; dir = 4},/obj/effect/floor_decal/borderfloor/corner2{tag = "icon-borderfloorcorner2 (SOUTHEAST)"; icon_state = "borderfloorcorner2"; dir = 6},/obj/effect/floor_decal/corner/mauve/bordercorner2{tag = "icon-bordercolorcorner2 (SOUTHEAST)"; icon_state = "bordercolorcorner2"; dir = 6},/obj/structure/disposalpipe/junction,/turf/simulated/floor/tiled,/area/rnd/hallway) -"apw" = (/obj/structure/grille,/obj/structure/window/reinforced{dir = 5; icon_state = "fwindow"},/obj/machinery/door/firedoor,/turf/simulated/floor/plating,/area/rnd/xenobiology/xenoflora) -"apx" = (/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (WEST)"; icon_state = "borderfloor"; dir = 8},/obj/effect/floor_decal/corner/mauve/border{tag = "icon-bordercolor (WEST)"; icon_state = "bordercolor"; dir = 8},/obj/effect/floor_decal/borderfloor/corner2{tag = "icon-borderfloorcorner2 (WEST)"; icon_state = "borderfloorcorner2"; dir = 8},/obj/effect/floor_decal/corner/mauve/bordercorner2{tag = "icon-bordercolorcorner2 (WEST)"; icon_state = "bordercolorcorner2"; dir = 8},/obj/structure/sink{icon_state = "sink"; dir = 8; pixel_x = -12; pixel_y = 2},/turf/simulated/floor/tiled,/area/rnd/xenobiology/xenoflora) -"apy" = (/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (EAST)"; icon_state = "borderfloor"; dir = 4},/obj/effect/floor_decal/corner/mauve/border{tag = "icon-bordercolor (EAST)"; icon_state = "bordercolor"; dir = 4},/obj/effect/floor_decal/borderfloor/corner2{tag = "icon-borderfloorcorner2 (NORTHEAST)"; icon_state = "borderfloorcorner2"; dir = 5},/obj/effect/floor_decal/corner/mauve/bordercorner2{tag = "icon-bordercolorcorner2 (NORTHEAST)"; icon_state = "bordercolorcorner2"; dir = 5},/obj/machinery/requests_console{department = "Science"; departmentType = 2; name = "Science Requests Console"; pixel_x = 30; pixel_y = 0},/turf/simulated/floor/tiled,/area/rnd/xenobiology/xenoflora) -"apz" = (/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (WEST)"; icon_state = "borderfloor"; dir = 8},/obj/effect/floor_decal/corner/mauve/border{tag = "icon-bordercolor (WEST)"; icon_state = "bordercolor"; dir = 8},/obj/effect/floor_decal/borderfloor/corner2{tag = "icon-borderfloorcorner2 (SOUTHWEST)"; icon_state = "borderfloorcorner2"; dir = 10},/obj/effect/floor_decal/corner/mauve/bordercorner2{tag = "icon-bordercolorcorner2 (SOUTHWEST)"; icon_state = "bordercolorcorner2"; dir = 10},/turf/simulated/floor/tiled,/area/rnd/hallway) -"apA" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 6},/turf/simulated/floor/tiled,/area/rnd/hallway) -"apB" = (/obj/machinery/atmospherics/unary/vent_pump/on{dir = 8},/turf/simulated/floor/tiled,/area/rnd/hallway) -"apC" = (/turf/simulated/floor/tiled,/area/rnd/hallway) -"apD" = (/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled,/area/rnd/hallway) -"apE" = (/obj/structure/window/reinforced,/turf/simulated/floor/tiled,/area/rnd/hallway) -"apF" = (/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (EAST)"; icon_state = "borderfloor"; dir = 4},/obj/effect/floor_decal/corner/mauve/border{tag = "icon-bordercolor (EAST)"; icon_state = "bordercolor"; dir = 4},/obj/machinery/alarm{dir = 8; icon_state = "alarm0"; pixel_x = 24},/turf/simulated/floor/tiled,/area/rnd/hallway) -"apG" = (/turf/simulated/wall,/area/tether/surfacebase/emergency_storage/rnd) -"apH" = (/obj/structure/catwalk,/obj/machinery/atmospherics/pipe/simple/visible/scrubbers,/obj/structure/cable{tag = "icon-1-4"; icon_state = "1-4"},/obj/machinery/atmospherics/pipe/simple/visible/supply,/turf/simulated/floor/tiled/techfloor,/area/maintenance/lower/atmos) -"apI" = (/obj/structure/catwalk,/obj/structure/cable{tag = "icon-4-8"; icon_state = "4-8"},/turf/simulated/floor/tiled/techfloor,/area/maintenance/lower/atmos) -"apJ" = (/obj/structure/catwalk,/obj/machinery/alarm{frequency = 1441; pixel_y = 22},/obj/structure/cable{tag = "icon-4-8"; icon_state = "4-8"},/turf/simulated/floor/tiled/techfloor,/area/maintenance/lower/atmos) -"apK" = (/obj/structure/catwalk,/obj/structure/cable{tag = "icon-2-8"; icon_state = "2-8"},/turf/simulated/floor/tiled/techfloor,/area/maintenance/lower/atmos) -"apL" = (/obj/machinery/disposal,/obj/structure/disposalpipe/trunk{dir = 1},/turf/simulated/floor/tiled,/area/crew_quarters/locker) -"apM" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 8},/obj/structure/cable{tag = "icon-1-2"; icon_state = "1-2"},/turf/simulated/floor/tiled,/area/crew_quarters/locker) -"apN" = (/obj/machinery/atmospherics/unary/vent_pump/on{dir = 8},/obj/machinery/light_switch{pixel_y = -25},/turf/simulated/floor/tiled,/area/crew_quarters/locker) -"apO" = (/obj/structure/reagent_dispensers/fueltank,/obj/machinery/firealarm{dir = 4; pixel_x = 24},/turf/simulated/floor/tiled,/area/crew_quarters/locker) -"apP" = (/obj/machinery/vending/cola,/turf/simulated/floor/tiled,/area/crew_quarters/locker) -"apQ" = (/obj/machinery/light_switch{pixel_y = -25},/obj/structure/extinguisher_cabinet{dir = 8; icon_state = "extinguisher_closed"; pixel_x = 30; tag = "icon-extinguisher_closed (WEST)"},/turf/simulated/floor/tiled,/area/crew_quarters/locker) -"apR" = (/turf/simulated/floor/tiled/techfloor,/area/tether/surfacebase/atrium_one) -"apS" = (/obj/machinery/door/airlock/maintenance/common,/obj/machinery/door/firedoor/glass,/turf/simulated/floor/tiled/techfloor,/area/maintenance/lower/locker_room) -"apT" = (/obj/effect/decal/cleanable/dirt,/obj/effect/floor_decal/rust,/turf/simulated/floor/tiled/techfloor,/area/maintenance/lower/locker_room) -"apU" = (/obj/machinery/vending/coffee,/turf/simulated/floor/tiled,/area/tether/surfacebase/tram) -"apV" = (/obj/effect/floor_decal/rust,/obj/machinery/camera/network/research{c_tag = "SCI - Research Hallway Center"; dir = 4},/turf/simulated/floor/tiled/steel_dirty,/area/rnd/misc_lab) -"apW" = (/turf/simulated/floor/tiled/steel_dirty,/area/rnd/misc_lab) -"apX" = (/obj/machinery/atmospherics/portables_connector,/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (WEST)"; icon_state = "borderfloor"; dir = 8},/obj/effect/floor_decal/industrial/danger{tag = "icon-danger (WEST)"; icon_state = "danger"; dir = 8},/obj/structure/extinguisher_cabinet{dir = 4; icon_state = "extinguisher_closed"; pixel_x = -30; tag = "icon-extinguisher_closed (EAST)"},/turf/simulated/floor/tiled,/area/rnd/misc_lab) -"apY" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 6},/turf/simulated/floor/tiled,/area/rnd/misc_lab) -"apZ" = (/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 8},/turf/simulated/floor/tiled,/area/rnd/misc_lab) -"aqa" = (/obj/machinery/portable_atmospherics/canister,/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (EAST)"; icon_state = "borderfloor"; dir = 4},/obj/effect/floor_decal/corner/mauve/border{tag = "icon-bordercolor (EAST)"; icon_state = "bordercolor"; dir = 4},/obj/effect/floor_decal/borderfloor/corner2{tag = "icon-borderfloorcorner2 (NORTHEAST)"; icon_state = "borderfloorcorner2"; dir = 5},/obj/effect/floor_decal/corner/mauve/bordercorner2{tag = "icon-bordercolorcorner2 (NORTHEAST)"; icon_state = "bordercolorcorner2"; dir = 5},/turf/simulated/floor/tiled,/area/rnd/misc_lab) -"aqb" = (/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (WEST)"; icon_state = "borderfloor"; dir = 8},/obj/effect/floor_decal/corner/mauve/border{tag = "icon-bordercolor (WEST)"; icon_state = "bordercolor"; dir = 8},/obj/effect/floor_decal/borderfloor/corner2{tag = "icon-borderfloorcorner2 (SOUTHWEST)"; icon_state = "borderfloorcorner2"; dir = 10},/obj/effect/floor_decal/corner/mauve/bordercorner2{tag = "icon-bordercolorcorner2 (SOUTHWEST)"; icon_state = "bordercolorcorner2"; dir = 10},/obj/machinery/computer/guestpass{dir = 4; pixel_x = -28; pixel_y = 0},/turf/simulated/floor/tiled,/area/rnd/hallway) -"aqc" = (/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (EAST)"; icon_state = "borderfloor"; dir = 4},/obj/effect/floor_decal/corner/mauve/border{tag = "icon-bordercolor (EAST)"; icon_state = "bordercolor"; dir = 4},/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled,/area/rnd/hallway) -"aqd" = (/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (WEST)"; icon_state = "borderfloor"; dir = 8},/obj/effect/floor_decal/corner/mauve/border{tag = "icon-bordercolor (WEST)"; icon_state = "bordercolor"; dir = 8},/turf/simulated/floor/tiled,/area/rnd/xenobiology/xenoflora) -"aqe" = (/obj/machinery/atmospherics/unary/vent_pump/on,/turf/simulated/floor/tiled,/area/rnd/xenobiology/xenoflora) -"aqf" = (/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 4},/turf/simulated/floor/tiled,/area/rnd/xenobiology/xenoflora) -"aqg" = (/obj/machinery/atmospherics/pipe/simple/hidden/yellow{dir = 9},/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,/area/rnd/xenobiology/xenoflora) -"aqh" = (/obj/machinery/door/firedoor/glass,/obj/machinery/door/airlock/glass_research{name = "Xenoflora Research"; req_access = list(55)},/turf/simulated/floor/tiled,/area/rnd/xenobiology/xenoflora) -"aqi" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/tiled,/area/rnd/hallway) -"aqj" = (/obj/structure/window/reinforced{dir = 4},/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled,/area/rnd/hallway) -"aqk" = (/obj/structure/stairs/north,/turf/simulated/floor/tiled,/area/rnd/hallway) -"aql" = (/obj/structure/window/reinforced{dir = 8},/turf/simulated/floor/tiled,/area/rnd/hallway) -"aqm" = (/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (EAST)"; icon_state = "borderfloor"; dir = 4},/obj/effect/floor_decal/corner/mauve/border{tag = "icon-bordercolor (EAST)"; icon_state = "bordercolor"; dir = 4},/obj/machinery/status_display{pixel_x = 32; pixel_y = 0},/turf/simulated/floor/tiled,/area/rnd/hallway) -"aqn" = (/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/tiled/techfloor,/area/tether/surfacebase/emergency_storage/rnd) -"aqo" = (/obj/machinery/portable_atmospherics/powered/pump/filled,/obj/effect/floor_decal/industrial/outline/blue,/turf/simulated/floor/tiled/techfloor,/area/tether/surfacebase/emergency_storage/rnd) -"aqp" = (/obj/machinery/space_heater,/obj/effect/floor_decal/industrial/outline/grey,/turf/simulated/floor/tiled/techfloor,/area/tether/surfacebase/emergency_storage/rnd) -"aqq" = (/obj/structure/railing{dir = 1},/obj/machinery/atmospherics/pipe/simple/visible/scrubbers{tag = "icon-intact-scrubbers (NORTHEAST)"; icon_state = "intact-scrubbers"; dir = 5},/obj/machinery/atmospherics/pipe/simple/visible/supply{tag = "icon-intact-supply (NORTHEAST)"; icon_state = "intact-supply"; dir = 5},/obj/effect/floor_decal/rust,/turf/simulated/floor/tiled/techfloor,/area/maintenance/lower/atmos) -"aqr" = (/obj/structure/railing{dir = 1},/obj/machinery/atmospherics/pipe/simple/visible/scrubbers{tag = "icon-intact-scrubbers (SOUTHWEST)"; icon_state = "intact-scrubbers"; dir = 10},/obj/machinery/atmospherics/pipe/simple/visible/supply{dir = 10},/obj/effect/floor_decal/rust,/turf/simulated/floor/tiled/techfloor,/area/maintenance/lower/atmos) -"aqs" = (/obj/structure/railing{dir = 4},/obj/structure/railing{dir = 1},/turf/simulated/floor/tiled/techfloor,/area/maintenance/lower/atmos) -"aqt" = (/obj/structure/catwalk,/obj/machinery/light/small{dir = 4; pixel_y = 0},/obj/structure/cable{tag = "icon-1-2"; icon_state = "1-2"},/turf/simulated/floor/tiled/techfloor,/area/maintenance/lower/atmos) -"aqu" = (/obj/machinery/door/airlock/maintenance/common,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/tiled/techfloor,/area/crew_quarters/locker) -"aqv" = (/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/tiled/techfloor,/area/maintenance/lower/locker_room) -"aqw" = (/obj/machinery/light/small{dir = 4; pixel_y = 0},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/tiled/techfloor,/area/maintenance/lower/locker_room) -"aqx" = (/obj/machinery/atmospherics/binary/pump,/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (WEST)"; icon_state = "borderfloor"; dir = 8},/obj/effect/floor_decal/industrial/danger{tag = "icon-danger (WEST)"; icon_state = "danger"; dir = 8},/turf/simulated/floor/tiled,/area/rnd/misc_lab) -"aqy" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/tiled,/area/rnd/misc_lab) -"aqz" = (/obj/machinery/door/firedoor/glass,/obj/machinery/door/airlock/research{name = "Miscellaneous Reseach Room"; req_access = list(); req_one_access = list(7,29)},/turf/simulated/floor/tiled,/area/rnd/misc_lab) -"aqA" = (/obj/machinery/light{icon_state = "tube1"; dir = 4},/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (EAST)"; icon_state = "borderfloor"; dir = 4},/obj/effect/floor_decal/corner/mauve/border{tag = "icon-bordercolor (EAST)"; icon_state = "bordercolor"; dir = 4},/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled,/area/rnd/hallway) -"aqB" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 5},/turf/simulated/floor/tiled,/area/rnd/xenobiology/xenoflora) -"aqC" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled,/area/rnd/xenobiology/xenoflora) -"aqD" = (/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 1},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 6},/obj/structure/cable/green{d1 = 2; d2 = 4; icon_state = "2-4"},/turf/simulated/floor/tiled,/area/rnd/xenobiology/xenoflora) -"aqE" = (/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) -"aqF" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 9},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 9},/obj/structure/cable/green{d1 = 1; d2 = 8; icon_state = "1-8"},/turf/simulated/floor/tiled,/area/rnd/xenobiology/xenoflora) -"aqG" = (/obj/machinery/botany/editor,/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (EAST)"; icon_state = "borderfloor"; dir = 4},/obj/effect/floor_decal/corner/mauve/border{tag = "icon-bordercolor (EAST)"; icon_state = "bordercolor"; dir = 4},/obj/effect/floor_decal/borderfloor/corner2{tag = "icon-borderfloorcorner2 (SOUTHEAST)"; icon_state = "borderfloorcorner2"; dir = 6},/obj/effect/floor_decal/corner/mauve/bordercorner2{tag = "icon-bordercolorcorner2 (SOUTHEAST)"; icon_state = "bordercolorcorner2"; dir = 6},/turf/simulated/floor/tiled,/area/rnd/xenobiology/xenoflora) -"aqH" = (/obj/machinery/light{icon_state = "tube1"; dir = 8},/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (WEST)"; icon_state = "borderfloor"; dir = 8},/obj/effect/floor_decal/corner/mauve/border{tag = "icon-bordercolor (WEST)"; icon_state = "bordercolor"; dir = 8},/obj/effect/floor_decal/borderfloor/corner2{tag = "icon-borderfloorcorner2 (WEST)"; icon_state = "borderfloorcorner2"; dir = 8},/obj/effect/floor_decal/corner/mauve/bordercorner2{tag = "icon-bordercolorcorner2 (WEST)"; icon_state = "bordercolorcorner2"; dir = 8},/turf/simulated/floor/tiled,/area/rnd/hallway) -"aqI" = (/obj/structure/window/reinforced{dir = 8},/obj/structure/cable/green{d1 = 2; d2 = 4; icon_state = "2-4"},/turf/simulated/floor/tiled,/area/rnd/hallway) -"aqJ" = (/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (EAST)"; icon_state = "borderfloor"; dir = 4},/obj/effect/floor_decal/corner/mauve/border{tag = "icon-bordercolor (EAST)"; icon_state = "bordercolor"; dir = 4},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/tiled,/area/rnd/hallway) -"aqK" = (/obj/machinery/door/airlock/maintenance/int{name = "Emergency Storage"},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/door/firedoor/glass,/turf/simulated/floor/tiled/techfloor,/area/rnd/hallway) -"aqL" = (/obj/structure/cable/green{d1 = 1; d2 = 8; icon_state = "1-8"},/turf/simulated/floor/tiled/techfloor,/area/tether/surfacebase/emergency_storage/rnd) -"aqM" = (/turf/simulated/floor/tiled/techfloor,/area/tether/surfacebase/emergency_storage/rnd) -"aqN" = (/obj/machinery/floodlight,/obj/effect/floor_decal/industrial/outline/yellow,/obj/machinery/alarm{dir = 8; icon_state = "alarm0"; pixel_x = 24},/turf/simulated/floor/tiled/techfloor,/area/tether/surfacebase/emergency_storage/rnd) -"aqO" = (/obj/effect/decal/cleanable/dirt,/obj/effect/floor_decal/rust,/obj/machinery/camera/network/northern_star{tag = "icon-camera (EAST)"; icon_state = "camera"; dir = 4},/turf/simulated/floor/tiled/techfloor,/area/maintenance/lower/atmos) -"aqP" = (/obj/machinery/atmospherics/pipe/simple/visible/scrubbers,/obj/machinery/atmospherics/pipe/simple/visible/supply,/obj/effect/decal/cleanable/dirt,/obj/random/tool,/turf/simulated/floor/tiled/techfloor,/area/maintenance/lower/atmos) -"aqQ" = (/obj/structure/railing{dir = 4},/obj/random/junk,/turf/simulated/floor/tiled/techfloor,/area/maintenance/lower/atmos) -"aqR" = (/obj/structure/catwalk,/obj/structure/cable{tag = "icon-1-2"; icon_state = "1-2"},/turf/simulated/floor/tiled/techfloor,/area/maintenance/lower/atmos) -"aqS" = (/obj/machinery/power/apc{dir = 1; name = "north bump"; pixel_x = 0; pixel_y = 24},/obj/structure/cable{icon_state = "0-2"; d2 = 2},/obj/effect/decal/cleanable/dirt,/mob/living/simple_animal/mouse,/turf/simulated/floor/tiled/techfloor,/area/maintenance/lower/locker_room) -"aqT" = (/obj/effect/decal/cleanable/dirt,/obj/structure/closet/crate,/obj/random/maintenance/clean,/obj/random/maintenance/research,/obj/random/maintenance/research,/turf/simulated/floor/tiled/techfloor,/area/maintenance/lower/locker_room) -"aqU" = (/obj/machinery/alarm{dir = 8; icon_state = "alarm0"; pixel_x = 24},/turf/simulated/floor/tiled/techfloor,/area/maintenance/lower/locker_room) -"aqV" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 6},/turf/simulated/floor/tiled,/area/tether/surfacebase/tram) -"aqW" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/turf/simulated/floor/tiled,/area/tether/surfacebase/tram) -"aqX" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 9},/obj/structure/cable{tag = "icon-1-2"; icon_state = "1-2"},/turf/simulated/floor/tiled,/area/tether/surfacebase/tram) -"aqY" = (/obj/machinery/light{icon_state = "tube1"; dir = 8},/turf/simulated/floor/tiled/steel_dirty,/area/rnd/misc_lab) -"aqZ" = (/obj/machinery/atmospherics/pipe/simple/visible{icon_state = "intact"; dir = 6},/turf/simulated/floor/tiled/steel_dirty,/area/rnd/misc_lab) -"ara" = (/obj/machinery/atmospherics/pipe/simple/visible{dir = 4},/turf/simulated/floor/tiled/steel_dirty,/area/rnd/misc_lab) -"arb" = (/obj/structure/grille,/obj/structure/window/reinforced{dir = 5; icon_state = "fwindow"},/obj/machinery/door/firedoor,/obj/machinery/atmospherics/pipe/simple/visible{dir = 4},/turf/simulated/floor/plating,/area/rnd/misc_lab) -"arc" = (/obj/machinery/atmospherics/pipe/simple/visible{tag = "icon-intact (NORTHWEST)"; icon_state = "intact"; dir = 9},/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (WEST)"; icon_state = "borderfloor"; dir = 8},/obj/effect/floor_decal/industrial/danger{tag = "icon-danger (WEST)"; icon_state = "danger"; dir = 8},/turf/simulated/floor/tiled,/area/rnd/misc_lab) -"ard" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 6},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/tiled,/area/rnd/misc_lab) -"are" = (/obj/machinery/atmospherics/unary/vent_pump/on{dir = 8},/turf/simulated/floor/tiled,/area/rnd/misc_lab) -"arf" = (/obj/structure/reagent_dispensers/fueltank,/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (EAST)"; icon_state = "borderfloor"; dir = 4},/obj/effect/floor_decal/corner/mauve/border{tag = "icon-bordercolor (EAST)"; icon_state = "bordercolor"; dir = 4},/obj/effect/floor_decal/borderfloor/corner2{tag = "icon-borderfloorcorner2 (SOUTHEAST)"; icon_state = "borderfloorcorner2"; dir = 6},/obj/effect/floor_decal/corner/mauve/bordercorner2{tag = "icon-bordercolorcorner2 (SOUTHEAST)"; icon_state = "bordercolorcorner2"; dir = 6},/turf/simulated/floor/tiled,/area/rnd/misc_lab) -"arg" = (/obj/structure/sign/warning/caution,/turf/simulated/wall,/area/rnd/misc_lab) -"arh" = (/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (WEST)"; icon_state = "borderfloor"; dir = 8},/obj/effect/floor_decal/corner/mauve/border{tag = "icon-bordercolor (WEST)"; icon_state = "bordercolor"; dir = 8},/obj/effect/floor_decal/borderfloor/corner2{tag = "icon-borderfloorcorner2 (WEST)"; icon_state = "borderfloorcorner2"; dir = 8},/obj/effect/floor_decal/corner/mauve/bordercorner2{tag = "icon-bordercolorcorner2 (WEST)"; icon_state = "bordercolorcorner2"; dir = 8},/turf/simulated/floor/tiled,/area/rnd/hallway) -"ari" = (/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (EAST)"; icon_state = "borderfloor"; dir = 4},/obj/effect/floor_decal/corner/mauve/border{tag = "icon-bordercolor (EAST)"; icon_state = "bordercolor"; dir = 4},/obj/machinery/atmospherics/unary/vent_pump/on,/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled,/area/rnd/hallway) -"arj" = (/obj/machinery/seed_storage/xenobotany,/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (SOUTHWEST)"; icon_state = "borderfloor"; dir = 10},/obj/effect/floor_decal/corner/mauve/border{tag = "icon-bordercolor (SOUTHWEST)"; icon_state = "bordercolor"; dir = 10},/turf/simulated/floor/tiled,/area/rnd/xenobiology/xenoflora) -"ark" = (/obj/machinery/vending/hydronutrients{categories = 3},/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/corner/mauve/border,/turf/simulated/floor/tiled,/area/rnd/xenobiology/xenoflora) -"arl" = (/obj/machinery/smartfridge,/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/corner/mauve/border,/turf/simulated/floor/tiled,/area/rnd/xenobiology/xenoflora) -"arm" = (/obj/structure/table/glass,/obj/item/weapon/tape_roll,/obj/item/device/analyzer/plant_analyzer,/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/corner/mauve/border,/turf/simulated/floor/tiled,/area/rnd/xenobiology/xenoflora) -"arn" = (/obj/structure/table/glass,/obj/item/weapon/clipboard,/obj/item/weapon/folder/white,/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/corner/mauve/border,/turf/simulated/floor/tiled,/area/rnd/xenobiology/xenoflora) -"aro" = (/obj/machinery/reagentgrinder,/obj/structure/table/glass,/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/corner/mauve/border,/obj/effect/floor_decal/borderfloor/corner2{tag = "icon-borderfloorcorner2 (NORTHWEST)"; icon_state = "borderfloorcorner2"; dir = 9},/obj/effect/floor_decal/corner/mauve/bordercorner2{tag = "icon-bordercolorcorner2 (NORTHWEST)"; icon_state = "bordercolorcorner2"; dir = 9},/obj/machinery/light,/turf/simulated/floor/tiled,/area/rnd/xenobiology/xenoflora) -"arp" = (/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,/area/rnd/xenobiology/xenoflora) -"arq" = (/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/corner/mauve/border,/obj/effect/floor_decal/borderfloor/corner2,/obj/effect/floor_decal/corner/mauve/bordercorner2,/obj/machinery/newscaster{pixel_x = 0; pixel_y = -30},/turf/simulated/floor/tiled,/area/rnd/xenobiology/xenoflora) -"arr" = (/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/corner/mauve/border,/turf/simulated/floor/tiled,/area/rnd/xenobiology/xenoflora) -"ars" = (/obj/machinery/botany/extractor,/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (SOUTHEAST)"; icon_state = "borderfloor"; dir = 6},/obj/effect/floor_decal/corner/mauve/border{tag = "icon-bordercolor (SOUTHEAST)"; icon_state = "bordercolor"; dir = 6},/turf/simulated/floor/tiled,/area/rnd/xenobiology/xenoflora) -"art" = (/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (WEST)"; icon_state = "borderfloor"; dir = 8},/obj/effect/floor_decal/corner/mauve/border{tag = "icon-bordercolor (WEST)"; icon_state = "bordercolor"; dir = 8},/turf/simulated/floor/tiled,/area/rnd/hallway) -"aru" = (/obj/effect/floor_decal/steeldecal/steel_decals9{tag = "icon-steel_decals9 (EAST)"; icon_state = "steel_decals9"; dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals9{tag = "icon-steel_decals9 (NORTH)"; icon_state = "steel_decals9"; dir = 1},/turf/simulated/floor/tiled,/area/rnd/hallway) -"arv" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/tiled,/area/rnd/hallway) -"arw" = (/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (EAST)"; icon_state = "borderfloor"; dir = 4},/obj/effect/floor_decal/corner/mauve/border{tag = "icon-bordercolor (EAST)"; icon_state = "bordercolor"; dir = 4},/obj/machinery/light{dir = 4; icon_state = "tube1"; pixel_x = 0},/turf/simulated/floor/tiled,/area/rnd/hallway) -"arx" = (/obj/structure/closet/firecloset,/turf/simulated/floor/tiled/techfloor,/area/tether/surfacebase/emergency_storage/rnd) -"ary" = (/obj/machinery/light/small,/turf/simulated/floor/tiled/techfloor,/area/tether/surfacebase/emergency_storage/rnd) -"arz" = (/obj/structure/table/standard,/obj/item/device/t_scanner,/obj/item/weapon/storage/briefcase/inflatable,/turf/simulated/floor/tiled/techfloor,/area/tether/surfacebase/emergency_storage/rnd) -"arA" = (/obj/machinery/atmospherics/pipe/simple/visible/supply{dir = 6},/obj/machinery/atmospherics/pipe/simple/visible/scrubbers{tag = "icon-intact-scrubbers (SOUTHEAST)"; icon_state = "intact-scrubbers"; dir = 6},/turf/simulated/floor/tiled/techfloor,/area/maintenance/lower/atmos) -"arB" = (/obj/machinery/atmospherics/pipe/manifold/visible/supply,/obj/machinery/atmospherics/pipe/manifold/visible/scrubbers,/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/tiled/techfloor,/area/maintenance/lower/atmos) -"arC" = (/obj/structure/railing{dir = 4},/obj/machinery/atmospherics/pipe/simple/visible/supply{tag = "icon-intact-supply (EAST)"; icon_state = "intact-supply"; dir = 4},/obj/machinery/atmospherics/pipe/simple/visible/scrubbers{tag = "icon-intact-scrubbers (EAST)"; icon_state = "intact-scrubbers"; dir = 4},/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/tiled/techfloor,/area/maintenance/lower/atmos) -"arD" = (/obj/structure/catwalk,/obj/machinery/atmospherics/pipe/simple/visible/supply{tag = "icon-intact-supply (EAST)"; icon_state = "intact-supply"; dir = 4},/obj/machinery/atmospherics/pipe/simple/visible/scrubbers{tag = "icon-intact-scrubbers (EAST)"; icon_state = "intact-scrubbers"; dir = 4},/obj/structure/cable{tag = "icon-4-8"; icon_state = "4-8"},/obj/structure/cable{tag = "icon-1-4"; icon_state = "1-4"},/turf/simulated/floor/tiled/techfloor,/area/maintenance/lower/atmos) -"arE" = (/obj/machinery/door/airlock/maintenance/common,/obj/machinery/door/firedoor/glass,/obj/structure/cable{tag = "icon-4-8"; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0},/turf/simulated/floor/tiled/techfloor,/area/maintenance/lower/atmos) -"arF" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0},/turf/simulated/floor/tiled/techfloor,/area/maintenance/lower/locker_room) -"arG" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0},/obj/structure/cable{icon_state = "1-8"},/turf/simulated/floor/tiled/techfloor,/area/maintenance/lower/locker_room) -"arH" = (/obj/machinery/light/small{dir = 4; pixel_y = 0},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/cable{d1 = 2; d2 = 8; icon_state = "2-8"},/turf/simulated/floor/tiled/techfloor,/area/maintenance/lower/locker_room) -"arI" = (/obj/effect/decal/cleanable/dirt,/obj/effect/decal/cleanable/dirt,/obj/random/junk,/turf/simulated/floor/tiled/techfloor,/area/maintenance/lower/locker_room) -"arJ" = (/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 1},/turf/simulated/floor/tiled,/area/tether/surfacebase/tram) -"arK" = (/obj/machinery/atmospherics/unary/vent_pump/on{dir = 1},/obj/structure/cable{tag = "icon-1-2"; icon_state = "1-2"},/turf/simulated/floor/tiled,/area/tether/surfacebase/tram) -"arL" = (/obj/machinery/alarm{dir = 4; icon_state = "alarm0"; pixel_x = -22; pixel_y = 0},/turf/simulated/floor/tiled/steel_dirty,/area/rnd/misc_lab) -"arM" = (/obj/machinery/atmospherics/pipe/simple/visible,/turf/simulated/floor/tiled/steel_dirty,/area/rnd/misc_lab) -"arN" = (/obj/machinery/door/blast/regular,/obj/machinery/door/firedoor/glass,/turf/simulated/floor/tiled,/area/rnd/misc_lab) -"arO" = (/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (WEST)"; icon_state = "borderfloor"; dir = 8},/obj/effect/floor_decal/industrial/danger{tag = "icon-danger (WEST)"; icon_state = "danger"; dir = 8},/turf/simulated/floor/tiled,/area/rnd/misc_lab) -"arP" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/tiled,/area/rnd/misc_lab) -"arQ" = (/obj/structure/table/reinforced,/obj/item/weapon/crowbar/red,/obj/item/weapon/wrench,/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (EAST)"; icon_state = "borderfloor"; dir = 4},/obj/effect/floor_decal/corner/mauve/border{tag = "icon-bordercolor (EAST)"; icon_state = "bordercolor"; dir = 4},/turf/simulated/floor/tiled,/area/rnd/misc_lab) -"arR" = (/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (WEST)"; icon_state = "borderfloor"; dir = 8},/obj/effect/floor_decal/corner/mauve/border{tag = "icon-bordercolor (WEST)"; icon_state = "bordercolor"; dir = 8},/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 4},/turf/simulated/floor/tiled,/area/rnd/hallway) -"arS" = (/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (EAST)"; icon_state = "borderfloor"; dir = 4},/obj/effect/floor_decal/corner/mauve/border{tag = "icon-bordercolor (EAST)"; icon_state = "bordercolor"; dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 10},/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled,/area/rnd/hallway) -"arT" = (/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/glass_research{name = "Xenoflora Research"; req_access = list(55)},/turf/simulated/floor/tiled,/area/rnd/xenobiology/xenoflora) -"arU" = (/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (EAST)"; icon_state = "borderfloor"; dir = 4},/obj/effect/floor_decal/corner/mauve/border{tag = "icon-bordercolor (EAST)"; icon_state = "bordercolor"; dir = 4},/obj/machinery/requests_console{department = "Science"; departmentType = 2; name = "Science Requests Console"; pixel_x = 30; pixel_y = 0},/turf/simulated/floor/tiled,/area/rnd/hallway) -"arV" = (/obj/effect/decal/cleanable/blood,/obj/item/clothing/shoes/athletic{desc = "Assault"},/obj/item/clothing/under/pants{desc = "Overdose"},/obj/item/weapon/material/twohanded/baseballbat{desc = "Decadence"; health = 1989},/obj/effect/floor_decal/rust,/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/plating,/area/maintenance/lower/atmos) -"arW" = (/obj/effect/decal/cleanable/blood,/obj/item/device/tape{desc = "No Talk"},/obj/item/clothing/suit/varsity/brown{desc = "Showdown"},/obj/item/clothing/head/richard,/obj/effect/floor_decal/rust,/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/plating,/area/maintenance/lower/atmos) -"arX" = (/obj/structure/railing,/obj/machinery/atmospherics/pipe/simple/visible/supply,/obj/machinery/atmospherics/pipe/simple/visible/scrubbers,/obj/structure/closet,/obj/random/maintenance/clean,/obj/random/maintenance/engineering,/obj/random/tool,/obj/random/maintenance/engineering,/turf/simulated/floor/tiled/techfloor,/area/maintenance/lower/atmos) -"arY" = (/obj/structure/railing,/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/tiled/techfloor,/area/maintenance/lower/atmos) -"arZ" = (/obj/structure/railing{dir = 4},/obj/structure/railing,/obj/structure/table/rack,/obj/random/maintenance/clean,/obj/random/maintenance/clean,/obj/random/maintenance/engineering,/turf/simulated/floor/tiled/techfloor,/area/maintenance/lower/atmos) -"asa" = (/obj/structure/catwalk,/turf/simulated/floor/tiled/techfloor,/area/maintenance/lower/atmos) -"asb" = (/obj/structure/closet/crate,/obj/item/weapon/handcuffs/fuzzy,/obj/random/maintenance/security,/obj/random/contraband,/turf/simulated/floor/plating,/area/maintenance/lower/locker_room) -"asc" = (/obj/structure/cable{tag = "icon-1-2"; icon_state = "1-2"},/turf/simulated/floor/tiled,/area/tether/surfacebase/tram) -"asd" = (/obj/machinery/light_switch{pixel_x = -25},/turf/simulated/floor/tiled/steel_dirty,/area/rnd/misc_lab) -"ase" = (/obj/machinery/atmospherics/unary/outlet_injector{dir = 1; frequency = 1441; icon_state = "map_injector"; id = "n2_in"; use_power = 1},/turf/simulated/floor/tiled/steel_dirty,/area/rnd/misc_lab) -"asf" = (/obj/machinery/atmospherics/unary/vent_scrubber/on,/turf/simulated/floor/tiled/steel_dirty,/area/rnd/misc_lab) -"asg" = (/obj/machinery/light{icon_state = "tube1"; dir = 4},/obj/structure/table/reinforced,/obj/item/clothing/mask/gas,/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (EAST)"; icon_state = "borderfloor"; dir = 4},/obj/effect/floor_decal/corner/mauve/border{tag = "icon-bordercolor (EAST)"; icon_state = "bordercolor"; dir = 4},/turf/simulated/floor/tiled,/area/rnd/misc_lab) -"ash" = (/obj/effect/floor_decal/borderfloor/corner{tag = "icon-borderfloorcorner (EAST)"; icon_state = "borderfloorcorner"; dir = 4},/obj/effect/floor_decal/corner/mauve/bordercorner{tag = "icon-bordercolorcorner (EAST)"; icon_state = "bordercolorcorner"; dir = 4},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/cable/green{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/structure/disposalpipe/segment{dir = 1; icon_state = "pipe-c"},/turf/simulated/floor/tiled,/area/rnd/hallway) -"asi" = (/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (NORTH)"; icon_state = "borderfloor"; dir = 1},/obj/effect/floor_decal/corner/mauve/border{tag = "icon-bordercolor (NORTH)"; icon_state = "bordercolor"; dir = 1},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/extinguisher_cabinet{pixel_y = 30},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled,/area/rnd/hallway) -"asj" = (/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (NORTH)"; icon_state = "borderfloor"; dir = 1},/obj/effect/floor_decal/corner/mauve/border{tag = "icon-bordercolor (NORTH)"; icon_state = "bordercolor"; dir = 1},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/alarm{frequency = 1441; pixel_y = 22},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled,/area/rnd/hallway) -"ask" = (/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (NORTH)"; icon_state = "borderfloor"; dir = 1},/obj/effect/floor_decal/corner/mauve/border{tag = "icon-bordercolor (NORTH)"; icon_state = "bordercolor"; dir = 1},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/firealarm{dir = 2; layer = 3.3; pixel_x = 0; pixel_y = 26},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled,/area/rnd/hallway) -"asl" = (/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (NORTH)"; icon_state = "borderfloor"; dir = 1},/obj/effect/floor_decal/corner/mauve/border{tag = "icon-bordercolor (NORTH)"; icon_state = "bordercolor"; dir = 1},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 1},/obj/structure/cable/green{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/status_display{pixel_y = 30},/obj/structure/disposalpipe/junction{icon_state = "pipe-j1"; dir = 4},/turf/simulated/floor/tiled,/area/rnd/hallway) -"asm" = (/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (NORTH)"; icon_state = "borderfloor"; dir = 1},/obj/effect/floor_decal/corner/mauve/border{tag = "icon-bordercolor (NORTH)"; icon_state = "bordercolor"; dir = 1},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/camera/network/research,/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled,/area/rnd/hallway) -"asn" = (/obj/machinery/light{dir = 1},/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (NORTH)"; icon_state = "borderfloor"; dir = 1},/obj/effect/floor_decal/corner/mauve/border{tag = "icon-bordercolor (NORTH)"; icon_state = "bordercolor"; dir = 1},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled,/area/rnd/hallway) -"aso" = (/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (NORTH)"; icon_state = "borderfloor"; dir = 1},/obj/effect/floor_decal/corner/mauve/border{tag = "icon-bordercolor (NORTH)"; icon_state = "bordercolor"; dir = 1},/obj/effect/floor_decal/borderfloor/corner2{tag = "icon-borderfloorcorner2 (NORTH)"; icon_state = "borderfloorcorner2"; dir = 1},/obj/effect/floor_decal/corner/mauve/bordercorner2{tag = "icon-bordercolorcorner2 (NORTH)"; icon_state = "bordercolorcorner2"; dir = 1},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/door/firedoor/glass/hidden/steel{dir = 2},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled,/area/rnd/hallway) -"asp" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,/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/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled,/area/rnd/hallway) -"asq" = (/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (NORTH)"; icon_state = "borderfloor"; dir = 1},/obj/effect/floor_decal/corner/mauve/border{tag = "icon-bordercolor (NORTH)"; icon_state = "bordercolor"; dir = 1},/obj/effect/floor_decal/borderfloor/corner2{tag = "icon-borderfloorcorner2 (EAST)"; icon_state = "borderfloorcorner2"; dir = 4},/obj/effect/floor_decal/corner/mauve/bordercorner2{tag = "icon-bordercolorcorner2 (EAST)"; icon_state = "bordercolorcorner2"; dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled,/area/rnd/hallway) -"asr" = (/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (NORTH)"; icon_state = "borderfloor"; dir = 1},/obj/effect/floor_decal/corner/mauve/border{tag = "icon-bordercolor (NORTH)"; icon_state = "bordercolor"; dir = 1},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled,/area/rnd/hallway) -"ass" = (/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (NORTH)"; icon_state = "borderfloor"; dir = 1},/obj/effect/floor_decal/corner/mauve/border{tag = "icon-bordercolor (NORTH)"; icon_state = "bordercolor"; dir = 1},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 1},/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/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled,/area/rnd/hallway) -"ast" = (/obj/effect/floor_decal/borderfloor/corner{tag = "icon-borderfloorcorner (NORTH)"; icon_state = "borderfloorcorner"; dir = 1},/obj/effect/floor_decal/corner/mauve/bordercorner{tag = "icon-bordercolorcorner (NORTH)"; icon_state = "bordercolorcorner"; dir = 1},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled,/area/rnd/hallway) -"asu" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled,/area/rnd/hallway) -"asv" = (/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 8},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled,/area/rnd/hallway) -"asw" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled,/area/rnd/hallway) -"asx" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 8; icon_state = "pipe-c"},/turf/simulated/floor/tiled,/area/rnd/hallway) -"asy" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/tiled,/area/rnd/hallway) -"asz" = (/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/structure/cable/green{d1 = 1; d2 = 8; icon_state = "1-8"},/turf/simulated/floor/tiled,/area/rnd/hallway) -"asA" = (/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (EAST)"; icon_state = "borderfloor"; dir = 4},/obj/effect/floor_decal/corner/mauve/border{tag = "icon-bordercolor (EAST)"; icon_state = "bordercolor"; dir = 4},/obj/machinery/power/apc{dir = 4; name = "east bump"; pixel_x = 28},/obj/structure/cable/green{icon_state = "0-8"},/turf/simulated/floor/tiled,/area/rnd/hallway) -"asB" = (/obj/structure/catwalk,/obj/machinery/alarm{frequency = 1441; pixel_y = 22},/turf/simulated/floor/tiled/techfloor,/area/maintenance/lower/atmos) -"asC" = (/obj/structure/railing{dir = 8},/obj/effect/floor_decal/industrial/outline/yellow,/obj/machinery/atmospherics/pipe/zpipe/up/scrubbers,/obj/machinery/atmospherics/pipe/zpipe/up/supply,/obj/structure/cable/cyan{d1 = 16; d2 = 0; icon_state = "16-0"},/obj/structure/cable/cyan{d2 = 2; icon_state = "0-2"},/obj/structure/cable/cyan{d2 = 4; icon_state = "0-4"},/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/tiled/techfloor,/area/maintenance/lower/atmos) -"asD" = (/obj/machinery/power/apc{dir = 1; name = "north bump"; pixel_x = 0; pixel_y = 24},/obj/structure/cable/cyan{d2 = 8; icon_state = "0-8"},/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/tiled/techfloor,/area/maintenance/lower/atmos) -"asE" = (/obj/structure/catwalk,/obj/machinery/atmospherics/pipe/simple/visible/supply,/obj/machinery/atmospherics/pipe/simple/visible/scrubbers,/turf/simulated/floor/tiled/techfloor,/area/maintenance/lower/atmos) -"asF" = (/obj/structure/catwalk,/obj/structure/catwalk,/turf/simulated/floor/tiled/techfloor,/area/maintenance/lower/atmos) -"asG" = (/obj/structure/bed/chair{dir = 1},/obj/machinery/firealarm{dir = 1; pixel_x = 0; pixel_y = -25},/turf/simulated/floor/tiled,/area/tether/surfacebase/tram) -"asH" = (/obj/machinery/power/apc{dir = 2; name = "south bump"; pixel_y = -28},/obj/structure/cable,/turf/simulated/floor/tiled,/area/tether/surfacebase/tram) -"asI" = (/obj/machinery/light,/obj/item/device/radio/intercom{name = "Station Intercom (General)"; pixel_y = -21},/turf/simulated/floor/tiled,/area/tether/surfacebase/tram) -"asJ" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 5},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 6},/turf/simulated/floor/tiled/steel_dirty,/area/rnd/misc_lab) -"asK" = (/obj/structure/grille,/obj/structure/window/reinforced{dir = 5; icon_state = "fwindow"},/obj/machinery/door/firedoor,/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/turf/simulated/floor/plating,/area/rnd/misc_lab) -"asL" = (/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (WEST)"; icon_state = "borderfloor"; dir = 8},/obj/effect/floor_decal/industrial/danger{tag = "icon-danger (WEST)"; icon_state = "danger"; dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/turf/simulated/floor/tiled,/area/rnd/misc_lab) -"asM" = (/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 4},/turf/simulated/floor/tiled,/area/rnd/misc_lab) -"asN" = (/obj/structure/closet/crate,/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (EAST)"; icon_state = "borderfloor"; dir = 4},/obj/effect/floor_decal/corner/mauve/border{tag = "icon-bordercolor (EAST)"; icon_state = "bordercolor"; dir = 4},/obj/item/device/radio/intercom{dir = 4; name = "Station Intercom (General)"; pixel_x = 21},/turf/simulated/floor/tiled,/area/rnd/misc_lab) -"asO" = (/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (SOUTHWEST)"; icon_state = "borderfloor"; dir = 10},/obj/effect/floor_decal/corner/mauve/border{tag = "icon-bordercolor (SOUTHWEST)"; icon_state = "bordercolor"; dir = 10},/obj/effect/floor_decal/borderfloor/corner2{tag = "icon-borderfloorcorner2 (NORTHWEST)"; icon_state = "borderfloorcorner2"; dir = 9},/obj/effect/floor_decal/corner/mauve/bordercorner2{tag = "icon-bordercolorcorner2 (NORTHWEST)"; icon_state = "bordercolorcorner2"; dir = 9},/turf/simulated/floor/tiled,/area/rnd/hallway) -"asP" = (/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/tiled,/area/rnd/hallway) -"asQ" = (/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/corner/mauve/border,/obj/effect/floor_decal/borderfloor/corner2,/obj/effect/floor_decal/corner/mauve/bordercorner2,/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled,/area/rnd/hallway) -"asR" = (/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/corner/mauve/border,/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled,/area/rnd/hallway) -"asS" = (/obj/effect/floor_decal/borderfloor/corner{tag = "icon-borderfloorcorner (WEST)"; icon_state = "borderfloorcorner"; dir = 8},/obj/effect/floor_decal/corner/mauve/bordercorner{tag = "icon-bordercolorcorner (WEST)"; icon_state = "bordercolorcorner"; dir = 8},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 1},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled,/area/rnd/hallway) -"asT" = (/obj/effect/floor_decal/borderfloor/corner,/obj/effect/floor_decal/corner/mauve/bordercorner,/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled,/area/rnd/hallway) -"asU" = (/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/corner/mauve/border,/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/door/firedoor/glass/hidden/steel{dir = 1},/turf/simulated/floor/tiled,/area/rnd/hallway) -"asV" = (/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/corner/mauve/border,/obj/machinery/atmospherics/pipe/manifold/hidden/supply,/turf/simulated/floor/tiled,/area/rnd/hallway) -"asW" = (/obj/machinery/light,/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/corner/mauve/border,/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled,/area/rnd/hallway) -"asX" = (/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/corner/mauve/border,/obj/effect/floor_decal/borderfloor/corner2{tag = "icon-borderfloorcorner2 (NORTHWEST)"; icon_state = "borderfloorcorner2"; dir = 9},/obj/effect/floor_decal/corner/mauve/bordercorner2{tag = "icon-bordercolorcorner2 (NORTHWEST)"; icon_state = "bordercolorcorner2"; dir = 9},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled,/area/rnd/hallway) -"asY" = (/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 1},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/tiled,/area/rnd/hallway) -"asZ" = (/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/corner/mauve/border,/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 9},/obj/machinery/camera/network/research{c_tag = "SCI - Research Dock Hallway Starboard"; dir = 1},/turf/simulated/floor/tiled,/area/rnd/hallway) -"ata" = (/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/corner/mauve/border,/obj/machinery/computer/guestpass{dir = 1; icon_state = "guest"; pixel_y = -28; tag = "icon-guest (NORTH)"},/turf/simulated/floor/tiled,/area/rnd/hallway) -"atb" = (/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/corner/mauve/border,/turf/simulated/floor/tiled,/area/rnd/hallway) -"atc" = (/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/corner/mauve/border,/obj/item/device/radio/intercom{name = "Station Intercom (General)"; pixel_y = -21},/turf/simulated/floor/tiled,/area/rnd/hallway) -"atd" = (/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/corner/mauve/border,/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/tiled,/area/rnd/hallway) -"ate" = (/obj/structure/flora/pottedplant,/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (SOUTHEAST)"; icon_state = "borderfloor"; dir = 6},/obj/effect/floor_decal/corner/mauve/border{tag = "icon-bordercolor (SOUTHEAST)"; icon_state = "bordercolor"; dir = 6},/turf/simulated/floor/tiled,/area/rnd/hallway) -"atf" = (/turf/simulated/wall,/area/maintenance/lower/research) -"atg" = (/obj/structure/catwalk,/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/tiled/techfloor,/area/maintenance/lower/atmos) -"ath" = (/obj/structure/railing{dir = 8},/obj/machinery/atmospherics/pipe/simple/visible/scrubbers{tag = "icon-intact-scrubbers (NORTHEAST)"; icon_state = "intact-scrubbers"; dir = 5},/obj/machinery/atmospherics/pipe/simple/visible/supply{tag = "icon-intact-supply (NORTHEAST)"; icon_state = "intact-supply"; dir = 5},/obj/structure/cable/cyan{d1 = 1; d2 = 4; icon_state = "1-4"},/turf/simulated/floor/tiled/techfloor,/area/maintenance/lower/atmos) -"ati" = (/obj/machinery/atmospherics/pipe/simple/visible/scrubbers{tag = "icon-intact-scrubbers (SOUTHWEST)"; icon_state = "intact-scrubbers"; dir = 10},/obj/machinery/atmospherics/pipe/simple/visible/supply{dir = 10},/obj/structure/cable/cyan{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/tiled/techfloor,/area/maintenance/lower/atmos) -"atj" = (/obj/structure/ladder/up,/obj/machinery/light/small{dir = 8; pixel_x = 0},/turf/simulated/floor/tiled/techfloor,/area/maintenance/lower/atmos) -"atk" = (/obj/structure/catwalk,/obj/machinery/atmospherics/pipe/simple/visible/supply,/obj/machinery/atmospherics/pipe/simple/visible/scrubbers,/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/tiled/techfloor,/area/maintenance/lower/atmos) -"atl" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 5},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 5},/obj/structure/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/turf/simulated/floor/tiled/techfloor,/area/maintenance/lower/locker_room) -"atm" = (/obj/effect/floor_decal/techfloor/orange{tag = "icon-techfloororange_edges (WEST)"; icon_state = "techfloororange_edges"; dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0},/turf/simulated/floor/tiled/techfloor/grid,/area/maintenance/lower/locker_room) -"atn" = (/obj/machinery/light/small,/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0},/turf/simulated/floor/tiled/techfloor,/area/maintenance/lower/locker_room) -"ato" = (/obj/machinery/door/airlock/maintenance/common,/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0},/turf/simulated/floor/tiled/techfloor,/area/maintenance/lower/locker_room) -"atp" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 9; pixel_y = 0},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 9},/obj/structure/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/turf/simulated/floor/tiled/techfloor,/area/maintenance/lower/locker_room) -"atq" = (/obj/machinery/atmospherics/unary/vent_pump/on{dir = 1},/turf/simulated/floor/tiled/steel_dirty,/area/rnd/misc_lab) -"atr" = (/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (WEST)"; icon_state = "borderfloor"; dir = 8},/obj/effect/floor_decal/industrial/danger{tag = "icon-danger (WEST)"; icon_state = "danger"; dir = 8},/obj/machinery/camera/network/research{c_tag = "SCI - Research Hallway Center"; dir = 4},/turf/simulated/floor/tiled,/area/rnd/misc_lab) -"ats" = (/obj/structure/closet/crate,/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (EAST)"; icon_state = "borderfloor"; dir = 4},/obj/effect/floor_decal/corner/mauve/border{tag = "icon-bordercolor (EAST)"; icon_state = "bordercolor"; dir = 4},/turf/simulated/floor/tiled,/area/rnd/misc_lab) -"att" = (/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 = "Miscellaneous Reseach Room"; req_access = list(); req_one_access = list(7,29)},/turf/simulated/floor/tiled,/area/rnd/misc_lab) -"atu" = (/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (WEST)"; icon_state = "borderfloor"; dir = 8},/obj/effect/floor_decal/corner/mauve/border{tag = "icon-bordercolor (WEST)"; icon_state = "bordercolor"; dir = 8},/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"},/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled,/area/rnd/hallway) -"atv" = (/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (EAST)"; icon_state = "borderfloor"; dir = 4},/obj/effect/floor_decal/corner/mauve/border{tag = "icon-bordercolor (EAST)"; icon_state = "bordercolor"; dir = 4},/turf/simulated/floor/tiled,/area/rnd/hallway) -"atw" = (/turf/simulated/wall/r_wall,/area/rnd/xenobiology/xenoflora_storage) -"atx" = (/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,/area/rnd/xenobiology/xenoflora_storage) -"aty" = (/obj/structure/sign/warning/caution,/turf/simulated/wall/r_wall,/area/rnd/xenobiology/xenoflora_storage) -"atz" = (/obj/machinery/door/airlock/maintenance/rnd,/obj/machinery/door/firedoor/glass,/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/tiled/steel_dirty,/area/rnd/hallway) -"atA" = (/obj/structure/railing{dir = 4},/obj/random/junk,/turf/simulated/floor/tiled/techfloor,/area/maintenance/lower/research) -"atB" = (/obj/structure/catwalk,/turf/simulated/floor/tiled/techfloor,/area/maintenance/lower/research) -"atC" = (/obj/structure/catwalk,/obj/machinery/alarm{frequency = 1441; pixel_y = 22},/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/tiled/techfloor,/area/maintenance/lower/research) -"atD" = (/obj/structure/catwalk,/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/tiled/techfloor,/area/maintenance/lower/research) -"atE" = (/obj/machinery/door/airlock/maintenance/rnd,/obj/machinery/door/firedoor/glass,/turf/simulated/floor/tiled/techfloor,/area/maintenance/lower/atmos) -"atF" = (/obj/machinery/light/small{dir = 8; pixel_x = 0},/obj/structure/catwalk,/obj/effect/decal/cleanable/dirt,/obj/effect/floor_decal/rust,/turf/simulated/floor/tiled/techfloor,/area/maintenance/lower/atmos) -"atG" = (/obj/structure/railing,/obj/structure/railing{dir = 8},/obj/effect/decal/cleanable/dirt,/obj/effect/floor_decal/rust,/obj/random/junk,/turf/simulated/floor/tiled/techfloor,/area/maintenance/lower/atmos) -"atH" = (/obj/structure/railing,/obj/machinery/atmospherics/pipe/simple/visible/scrubbers,/obj/machinery/atmospherics/pipe/simple/visible/supply,/obj/structure/cable/cyan{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/tiled/techfloor,/area/maintenance/lower/atmos) -"atI" = (/obj/machinery/door/airlock/maintenance/engi,/obj/machinery/door/firedoor/glass,/turf/simulated/floor/tiled/techfloor,/area/maintenance/lower/atmos) -"atJ" = (/obj/structure/sign/warning/nosmoking_2,/turf/simulated/wall/r_wall,/area/rnd/misc_lab) -"atK" = (/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 8},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 8},/turf/simulated/floor/tiled,/area/rnd/misc_lab) -"atL" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled,/area/rnd/misc_lab) -"atM" = (/obj/effect/floor_decal/borderfloor/corner{tag = "icon-borderfloorcorner (EAST)"; icon_state = "borderfloorcorner"; dir = 4},/obj/effect/floor_decal/corner/mauve/bordercorner{tag = "icon-bordercolorcorner (EAST)"; icon_state = "bordercolorcorner"; 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/misc_lab) -"atN" = (/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (NORTH)"; icon_state = "borderfloor"; dir = 1},/obj/effect/floor_decal/corner/mauve/border{tag = "icon-bordercolor (NORTH)"; icon_state = "bordercolor"; dir = 1},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 1},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 1},/obj/machinery/firealarm{dir = 2; layer = 3.3; pixel_x = 0; pixel_y = 26},/turf/simulated/floor/tiled,/area/rnd/misc_lab) -"atO" = (/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (NORTH)"; icon_state = "borderfloor"; dir = 1},/obj/effect/floor_decal/corner/mauve/border{tag = "icon-bordercolor (NORTH)"; icon_state = "bordercolor"; dir = 1},/obj/effect/floor_decal/borderfloor/corner2{tag = "icon-borderfloorcorner2 (NORTH)"; icon_state = "borderfloorcorner2"; dir = 1},/obj/effect/floor_decal/corner/mauve/bordercorner2{tag = "icon-bordercolorcorner2 (NORTH)"; icon_state = "bordercolorcorner2"; dir = 1},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/power/apc{dir = 1; name = "north bump"; pixel_x = 0; pixel_y = 24},/obj/structure/cable/green{icon_state = "0-4"},/turf/simulated/floor/tiled,/area/rnd/misc_lab) -"atP" = (/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 4},/obj/structure/cable/green{d1 = 1; d2 = 8; icon_state = "1-8"},/turf/simulated/floor/tiled,/area/rnd/misc_lab) -"atQ" = (/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (NORTH)"; icon_state = "borderfloor"; dir = 1},/obj/effect/floor_decal/corner/mauve/border{tag = "icon-bordercolor (NORTH)"; icon_state = "bordercolor"; dir = 1},/obj/effect/floor_decal/borderfloor/corner2{tag = "icon-borderfloorcorner2 (EAST)"; icon_state = "borderfloorcorner2"; dir = 4},/obj/effect/floor_decal/corner/mauve/bordercorner2{tag = "icon-bordercolorcorner2 (EAST)"; icon_state = "bordercolorcorner2"; dir = 4},/turf/simulated/floor/tiled,/area/rnd/misc_lab) -"atR" = (/obj/machinery/disposal,/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (NORTHEAST)"; icon_state = "borderfloor"; dir = 5},/obj/effect/floor_decal/corner/mauve/border{tag = "icon-bordercolor (NORTHEAST)"; icon_state = "bordercolor"; dir = 5},/obj/structure/extinguisher_cabinet{pixel_y = 30},/obj/structure/disposalpipe/trunk,/turf/simulated/floor/tiled,/area/rnd/misc_lab) -"atS" = (/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (EAST)"; icon_state = "borderfloor"; dir = 4},/obj/effect/floor_decal/corner/mauve/border{tag = "icon-bordercolor (EAST)"; icon_state = "bordercolor"; dir = 4},/obj/item/device/radio/intercom{dir = 4; name = "Station Intercom (General)"; pixel_x = 21},/turf/simulated/floor/tiled,/area/rnd/hallway) -"atT" = (/obj/machinery/portable_atmospherics/powered/scrubber/huge/stationary{scrub_id = "rnd_can_store"},/turf/simulated/floor/tiled/techmaint,/area/rnd/xenobiology/xenoflora_storage) -"atU" = (/obj/structure/grille,/obj/structure/railing{dir = 4},/turf/simulated/floor/tiled/techmaint,/area/rnd/xenobiology/xenoflora_storage) -"atV" = (/obj/effect/floor_decal/industrial/warning{icon_state = "warning"; dir = 8},/obj/machinery/computer/area_atmos/tag{dir = 4; scrub_id = "rnd_can_store"},/turf/simulated/floor/tiled,/area/rnd/xenobiology/xenoflora_storage) -"atW" = (/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"},/turf/simulated/floor/tiled,/area/rnd/xenobiology/xenoflora_storage) -"atX" = (/obj/structure/sign/warning/nosmoking_2,/turf/simulated/wall/r_wall,/area/rnd/xenobiology/xenoflora_storage) -"atY" = (/obj/effect/floor_decal/rust,/obj/machinery/portable_atmospherics/canister/phoron,/turf/simulated/floor/tiled/steel_dirty,/area/rnd/xenobiology/xenoflora_storage) -"atZ" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/tiled/steel_dirty,/area/maintenance/lower/research) -"aua" = (/obj/structure/railing{dir = 4},/obj/machinery/light/small{dir = 8},/obj/effect/decal/cleanable/dirt,/mob/living/simple_animal/mouse,/turf/simulated/floor/tiled/techfloor,/area/maintenance/lower/research) -"aub" = (/obj/structure/catwalk,/obj/effect/floor_decal/rust,/obj/effect/floor_decal/rust,/turf/simulated/floor/tiled/techfloor,/area/maintenance/lower/atmos) -"auc" = (/obj/structure/catwalk,/obj/effect/decal/cleanable/dirt,/obj/effect/floor_decal/rust,/turf/simulated/floor/tiled/techfloor,/area/maintenance/lower/atmos) -"aud" = (/obj/structure/catwalk,/obj/machinery/atmospherics/pipe/manifold/visible/scrubbers{dir = 8},/obj/machinery/atmospherics/pipe/manifold/visible/supply{dir = 8},/obj/structure/cable/cyan{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/tiled/techfloor,/area/maintenance/lower/atmos) -"aue" = (/obj/structure/catwalk,/obj/machinery/atmospherics/pipe/simple/visible/supply{tag = "icon-intact-supply (EAST)"; icon_state = "intact-supply"; dir = 4},/obj/machinery/atmospherics/pipe/simple/visible/scrubbers{tag = "icon-intact-scrubbers (EAST)"; icon_state = "intact-scrubbers"; dir = 4},/obj/machinery/firealarm{dir = 2; layer = 3.3; pixel_x = 0; pixel_y = 26},/turf/simulated/floor/tiled/techfloor,/area/maintenance/lower/atmos) -"auf" = (/obj/structure/catwalk,/obj/machinery/atmospherics/pipe/simple/visible/supply{tag = "icon-intact-supply (EAST)"; icon_state = "intact-supply"; dir = 4},/obj/machinery/atmospherics/pipe/simple/visible/scrubbers{tag = "icon-intact-scrubbers (EAST)"; icon_state = "intact-scrubbers"; dir = 4},/turf/simulated/floor/tiled/techfloor,/area/maintenance/lower/atmos) -"aug" = (/obj/machinery/door/airlock/maintenance/common,/obj/machinery/atmospherics/pipe/simple/visible/supply{tag = "icon-intact-supply (EAST)"; icon_state = "intact-supply"; dir = 4},/obj/machinery/atmospherics/pipe/simple/visible/scrubbers{tag = "icon-intact-scrubbers (EAST)"; icon_state = "intact-scrubbers"; dir = 4},/obj/machinery/door/firedoor/glass,/turf/simulated/floor/tiled/techfloor,/area/maintenance/lower/atmos) -"auh" = (/obj/structure/catwalk,/obj/machinery/atmospherics/pipe/simple/visible/supply{dir = 9},/obj/machinery/atmospherics/pipe/simple/visible/scrubbers{tag = "icon-intact-scrubbers (NORTHWEST)"; icon_state = "intact-scrubbers"; dir = 9},/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/tiled/techfloor,/area/maintenance/lower/atmos) -"aui" = (/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (WEST)"; icon_state = "borderfloor"; dir = 8},/obj/effect/floor_decal/industrial/danger{tag = "icon-danger (WEST)"; icon_state = "danger"; dir = 8},/obj/machinery/light_switch{pixel_x = -25},/turf/simulated/floor/tiled,/area/rnd/misc_lab) -"auj" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/tiled,/area/rnd/misc_lab) -"auk" = (/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 4},/turf/simulated/floor/tiled,/area/rnd/misc_lab) -"aul" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 5},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 9},/turf/simulated/floor/tiled,/area/rnd/misc_lab) -"aum" = (/obj/machinery/light{icon_state = "tube1"; dir = 4},/obj/structure/table/standard,/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (EAST)"; icon_state = "borderfloor"; dir = 4},/obj/effect/floor_decal/corner/mauve/border{tag = "icon-bordercolor (EAST)"; icon_state = "bordercolor"; dir = 4},/obj/structure/disposalpipe/segment{dir = 1; icon_state = "pipe-c"},/turf/simulated/floor/tiled,/area/rnd/misc_lab) -"aun" = (/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (WEST)"; icon_state = "borderfloor"; dir = 8},/obj/effect/floor_decal/corner/mauve/border{tag = "icon-bordercolor (WEST)"; icon_state = "bordercolor"; dir = 8},/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"},/obj/structure/disposalpipe/segment{dir = 8; icon_state = "pipe-c"},/turf/simulated/floor/tiled,/area/rnd/hallway) -"auo" = (/obj/machinery/light/small{dir = 8},/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/tiled/steel_dirty,/area/maintenance/lower/research) -"aup" = (/obj/structure/railing{dir = 4},/obj/structure/table/rack,/obj/random/maintenance/clean,/obj/random/maintenance/clean,/obj/random/maintenance/research,/obj/random/action_figure,/obj/random/maintenance/research,/turf/simulated/floor/tiled/techfloor,/area/maintenance/lower/research) -"auq" = (/obj/machinery/door/airlock/multi_tile/metal/mait{name = "Atmospherics Maintenance"; req_access = list(24); req_one_access = list(24)},/obj/machinery/atmospherics/pipe/simple/visible/scrubbers,/obj/machinery/atmospherics/pipe/simple/visible/supply,/obj/structure/cable/cyan{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/door/firedoor/glass,/turf/simulated/floor/tiled/techfloor,/area/maintenance/lower/atmos) -"aur" = (/obj/machinery/door/firedoor/glass,/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/tiled/techfloor,/area/maintenance/lower/atmos) -"aus" = (/obj/machinery/shieldwallgen{anchored = 1; req_access = list(47)},/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (SOUTHWEST)"; icon_state = "borderfloor"; dir = 10},/obj/effect/floor_decal/industrial/danger{tag = "icon-danger (SOUTHWEST)"; icon_state = "danger"; dir = 10},/turf/simulated/floor/tiled,/area/rnd/misc_lab) -"aut" = (/obj/effect/floor_decal/rust/steel_decals_rusted2,/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/industrial/danger,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/tiled,/area/rnd/misc_lab) -"auu" = (/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/industrial/danger,/turf/simulated/floor/tiled,/area/rnd/misc_lab) -"auv" = (/obj/machinery/shieldwallgen{anchored = 1; req_access = list(47)},/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/industrial/danger,/turf/simulated/floor/tiled,/area/rnd/misc_lab) -"auw" = (/obj/effect/floor_decal/borderfloor/corner{tag = "icon-borderfloorcorner (WEST)"; icon_state = "borderfloorcorner"; dir = 8},/obj/effect/floor_decal/corner/mauve/bordercorner{tag = "icon-bordercolorcorner (WEST)"; icon_state = "bordercolorcorner"; dir = 8},/turf/simulated/floor/tiled,/area/rnd/misc_lab) -"aux" = (/obj/structure/table/standard,/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (EAST)"; icon_state = "borderfloor"; dir = 4},/obj/effect/floor_decal/corner/mauve/border{tag = "icon-bordercolor (EAST)"; icon_state = "bordercolor"; dir = 4},/turf/simulated/floor/tiled,/area/rnd/misc_lab) -"auy" = (/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (WEST)"; icon_state = "borderfloor"; dir = 8},/obj/effect/floor_decal/corner/mauve/border{tag = "icon-bordercolor (WEST)"; icon_state = "bordercolor"; dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 5},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/camera/network/research{c_tag = "SCI - Mech Bay Port"; dir = 4},/obj/structure/cable/green{d1 = 1; d2 = 4; icon_state = "1-4"},/turf/simulated/floor/tiled,/area/rnd/hallway) -"auz" = (/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (EAST)"; icon_state = "borderfloor"; dir = 4},/obj/effect/floor_decal/corner/mauve/border{tag = "icon-bordercolor (EAST)"; icon_state = "bordercolor"; dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 10},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/tiled,/area/rnd/hallway) -"auA" = (/obj/machinery/door/airlock/maintenance/rnd,/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/plating,/area/rnd/hallway) -"auB" = (/obj/effect/decal/cleanable/dirt,/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/plating,/area/maintenance/asmaint2) -"auC" = (/obj/effect/floor_decal/rust,/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/plating,/area/maintenance/asmaint2) -"auD" = (/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) -"auE" = (/obj/machinery/atmospherics/unary/vent_pump/on{dir = 4},/obj/machinery/light_switch{pixel_y = 25},/obj/item/device/radio/intercom{dir = 8; name = "Station Intercom (General)"; pixel_x = -28},/turf/simulated/floor/tiled/steel_dirty,/area/rnd/xenobiology/xenoflora_storage) -"auF" = (/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"},/turf/simulated/floor/tiled/steel_dirty,/area/rnd/xenobiology/xenoflora_storage) -"auG" = (/obj/effect/floor_decal/industrial/warning/dust/corner{tag = "icon-warningcorner_dust (EAST)"; icon_state = "warningcorner_dust"; dir = 4},/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 8},/turf/simulated/floor/tiled/steel_dirty,/area/rnd/xenobiology/xenoflora_storage) -"auH" = (/obj/effect/floor_decal/industrial/warning/dust{tag = "icon-warning_dust (NORTH)"; icon_state = "warning_dust"; dir = 1},/turf/simulated/floor/tiled/steel_dirty,/area/rnd/xenobiology/xenoflora_storage) -"auI" = (/obj/effect/floor_decal/rust,/obj/effect/floor_decal/industrial/warning/dust{tag = "icon-warning_dust (NORTH)"; icon_state = "warning_dust"; dir = 1},/obj/machinery/firealarm{dir = 4; pixel_x = 24},/turf/simulated/floor/tiled/steel_dirty,/area/rnd/xenobiology/xenoflora_storage) -"auJ" = (/obj/structure/catwalk,/obj/machinery/atmospherics/pipe/simple/visible/scrubbers,/obj/machinery/atmospherics/pipe/simple/visible/supply,/obj/structure/cable/cyan{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/tiled/techfloor,/area/maintenance/lower/atmos) -"auK" = (/obj/machinery/camera/network/research{c_tag = "SCI - Research Hallway Center"; dir = 4},/turf/simulated/floor/tiled/steel_dirty,/area/rnd/misc_lab) -"auL" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/door/firedoor/glass,/obj/machinery/door/airlock/external{req_one_access = list(47)},/turf/simulated/floor/tiled,/area/rnd/misc_lab) -"auM" = (/obj/structure/reagent_dispensers/watertank,/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (SOUTHWEST)"; icon_state = "borderfloor"; dir = 10},/obj/effect/floor_decal/corner/mauve/border{tag = "icon-bordercolor (SOUTHWEST)"; icon_state = "bordercolor"; dir = 10},/turf/simulated/floor/tiled,/area/rnd/misc_lab) -"auN" = (/obj/structure/table/standard,/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (SOUTHEAST)"; icon_state = "borderfloor"; dir = 6},/obj/effect/floor_decal/corner/mauve/border{tag = "icon-bordercolor (SOUTHEAST)"; icon_state = "bordercolor"; dir = 6},/obj/machinery/status_display{pixel_x = 32; pixel_y = 0},/turf/simulated/floor/tiled,/area/rnd/misc_lab) -"auO" = (/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (WEST)"; icon_state = "borderfloor"; dir = 8},/obj/effect/floor_decal/corner/mauve/border{tag = "icon-bordercolor (WEST)"; icon_state = "bordercolor"; dir = 8},/obj/effect/floor_decal/borderfloor/corner2{tag = "icon-borderfloorcorner2 (SOUTHWEST)"; icon_state = "borderfloorcorner2"; dir = 10},/obj/effect/floor_decal/corner/mauve/bordercorner2{tag = "icon-bordercolorcorner2 (SOUTHWEST)"; icon_state = "bordercolorcorner2"; dir = 10},/obj/effect/floor_decal/steeldecal/steel_decals10{tag = "icon-steel_decals10 (NORTHEAST)"; icon_state = "steel_decals10"; dir = 5},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/tiled,/area/rnd/hallway) -"auP" = (/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (EAST)"; icon_state = "borderfloor"; dir = 4},/obj/effect/floor_decal/corner/mauve/border{tag = "icon-bordercolor (EAST)"; icon_state = "bordercolor"; dir = 4},/obj/effect/floor_decal/borderfloor/corner2{tag = "icon-borderfloorcorner2 (NORTHEAST)"; icon_state = "borderfloorcorner2"; dir = 5},/obj/effect/floor_decal/corner/mauve/bordercorner2{tag = "icon-bordercolorcorner2 (NORTHEAST)"; icon_state = "bordercolorcorner2"; dir = 5},/obj/effect/floor_decal/steeldecal/steel_decals10{tag = "icon-steel_decals10 (SOUTHEAST)"; icon_state = "steel_decals10"; dir = 6},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/tiled,/area/rnd/hallway) -"auQ" = (/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 = -28},/obj/structure/cable/green{icon_state = "0-4"},/turf/simulated/floor/tiled/steel_dirty,/area/rnd/xenobiology/xenoflora_storage) -"auR" = (/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) -"auS" = (/obj/effect/floor_decal/industrial/warning/dust/corner{tag = "icon-warningcorner_dust (WEST)"; icon_state = "warningcorner_dust"; dir = 8},/obj/effect/floor_decal/industrial/warning/dust/corner,/turf/simulated/floor/tiled/steel_dirty,/area/rnd/xenobiology/xenoflora_storage) -"auT" = (/obj/effect/floor_decal/industrial/warning/dust,/turf/simulated/floor/tiled/steel_dirty,/area/rnd/xenobiology/xenoflora_storage) -"auU" = (/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) -"auV" = (/obj/machinery/door/blast/regular,/obj/machinery/door/firedoor,/turf/simulated/floor/tiled/steel_dirty,/area/rnd/misc_lab) -"auW" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/tiled/steel_dirty,/area/rnd/misc_lab) -"auX" = (/turf/simulated/wall,/area/rnd/external) -"auY" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/door/firedoor/glass,/obj/machinery/door/airlock/external{req_one_access = list(47)},/turf/simulated/floor/tiled,/area/rnd/external) -"auZ" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/door/firedoor/glass,/obj/machinery/door/airlock/external{req_one_access = list(47)},/obj/machinery/access_button/airlock_interior{master_tag = "rnd_s_airlock"; pixel_x = 25; pixel_y = 24},/turf/simulated/floor/tiled,/area/rnd/external) -"ava" = (/obj/machinery/portable_atmospherics/canister/carbon_dioxide,/obj/machinery/camera/network/research{c_tag = "SCI - Research Hallway Center"; dir = 4},/turf/simulated/floor/tiled/steel_dirty,/area/rnd/xenobiology/xenoflora_storage) -"avb" = (/obj/machinery/portable_atmospherics/canister/carbon_dioxide,/turf/simulated/floor/tiled/steel_dirty,/area/rnd/xenobiology/xenoflora_storage) -"avc" = (/obj/effect/floor_decal/industrial/warning/dust{tag = "icon-warning_dust (EAST)"; icon_state = "warning_dust"; dir = 4},/obj/effect/floor_decal/industrial/warning/dust{tag = "icon-warning_dust (WEST)"; icon_state = "warning_dust"; dir = 8},/turf/simulated/floor/tiled/steel_dirty,/area/rnd/xenobiology/xenoflora_storage) -"avd" = (/obj/machinery/portable_atmospherics/canister/sleeping_agent,/turf/simulated/floor/tiled/steel_dirty,/area/rnd/xenobiology/xenoflora_storage) -"ave" = (/obj/machinery/power/apc{cell_type = /obj/item/weapon/cell/super; dir = 8; name = "west bump"; pixel_x = -28},/obj/structure/cable/green,/turf/simulated/floor/tiled/steel_dirty,/area/maintenance/lower/research) -"avf" = (/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/tiled/steel_dirty,/area/maintenance/lower/research) -"avg" = (/obj/structure/catwalk,/obj/machinery/atmospherics/pipe/simple/visible/scrubbers,/obj/machinery/atmospherics/pipe/simple/visible/supply,/obj/structure/cable/cyan{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/light/small{dir = 8; pixel_x = 0},/turf/simulated/floor/tiled/techfloor,/area/maintenance/lower/atmos) -"avh" = (/obj/structure/catwalk,/obj/machinery/alarm{dir = 8; icon_state = "alarm0"; pixel_x = 24},/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/tiled/techfloor,/area/maintenance/lower/atmos) -"avi" = (/obj/machinery/atmospherics/unary/vent_pump/on{dir = 4},/turf/simulated/floor/tiled/steel_dirty,/area/rnd/misc_lab) -"avj" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 9},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 5},/turf/simulated/floor/tiled/steel_dirty,/area/rnd/misc_lab) -"avk" = (/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 8},/obj/machinery/alarm{dir = 1; pixel_y = -25},/turf/simulated/floor/tiled/steel_dirty,/area/rnd/misc_lab) -"avl" = (/obj/effect/floor_decal/rust,/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 9},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 5},/turf/simulated/floor/tiled/steel_dirty,/area/rnd/misc_lab) -"avm" = (/obj/effect/floor_decal/rust,/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 8},/obj/machinery/alarm{dir = 1; pixel_y = -25},/turf/simulated/floor/tiled/steel_dirty,/area/rnd/misc_lab) -"avn" = (/obj/machinery/portable_atmospherics/powered/scrubber/huge/stationary{frequency = 1379; scrub_id = "rnd_s_airlock_scrubber"; scrubbing_gas = list("phoron")},/turf/simulated/floor/tiled/techmaint,/area/rnd/external) -"avo" = (/obj/structure/grille,/obj/structure/railing{dir = 4},/turf/simulated/floor/tiled/techmaint,/area/rnd/external) -"avp" = (/obj/effect/floor_decal/industrial/warning{icon_state = "warning"; dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals3{tag = "icon-steel_decals3 (SOUTHEAST)"; icon_state = "steel_decals3"; dir = 6},/obj/effect/floor_decal/steeldecal/steel_decals3,/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 4},/obj/machinery/embedded_controller/radio/airlock/phoron{id_tag = "rnd_s_airlock"; pixel_x = 0; pixel_y = 30},/obj/machinery/airlock_sensor/phoron{id_tag = "rnd_s_airlock_sensor"; pixel_x = 11; pixel_y = 30},/turf/simulated/floor/tiled,/area/rnd/external) -"avq" = (/obj/effect/floor_decal/steeldecal/steel_decals10{tag = "icon-steel_decals10 (NORTHWEST)"; icon_state = "steel_decals10"; dir = 9},/obj/effect/floor_decal/steeldecal/steel_decals10{tag = "icon-steel_decals10 (SOUTHWEST)"; icon_state = "steel_decals10"; dir = 10},/obj/effect/floor_decal/steeldecal/steel_decals7{tag = "icon-steel_decals7 (NORTHWEST)"; icon_state = "steel_decals7"; dir = 9},/obj/effect/floor_decal/steeldecal/steel_decals7{tag = "icon-steel_decals7 (SOUTHEAST)"; icon_state = "steel_decals7"; dir = 6},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 9},/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/tiled,/area/rnd/external) -"avr" = (/obj/effect/floor_decal/steeldecal/steel_decals10{tag = "icon-steel_decals10 (NORTHWEST)"; icon_state = "steel_decals10"; dir = 9},/obj/effect/floor_decal/steeldecal/steel_decals10{tag = "icon-steel_decals10 (SOUTHWEST)"; icon_state = "steel_decals10"; dir = 10},/obj/effect/floor_decal/steeldecal/steel_decals7{tag = "icon-steel_decals7 (NORTHWEST)"; icon_state = "steel_decals7"; dir = 9},/obj/effect/floor_decal/steeldecal/steel_decals7{tag = "icon-steel_decals7 (SOUTHEAST)"; icon_state = "steel_decals7"; dir = 6},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 8},/turf/simulated/floor/tiled,/area/rnd/external) -"avs" = (/obj/effect/floor_decal/industrial/warning{icon_state = "warning"; dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals3{tag = "icon-steel_decals3 (EAST)"; icon_state = "steel_decals3"; dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals3{tag = "icon-steel_decals3 (NORTHEAST)"; icon_state = "steel_decals3"; dir = 5},/obj/machinery/light_switch{pixel_y = 25},/obj/machinery/atmospherics/unary/vent_pump/high_volume{dir = 8; icon_state = "map_vent_out"; use_power = 1},/turf/simulated/floor/tiled,/area/rnd/external) -"avt" = (/obj/structure/grille,/obj/structure/railing{dir = 8},/turf/simulated/floor/tiled/techmaint,/area/rnd/external) -"avu" = (/obj/machinery/portable_atmospherics/canister/oxygen,/turf/simulated/floor/tiled/steel_dirty,/area/rnd/xenobiology/xenoflora_storage) -"avv" = (/obj/machinery/portable_atmospherics/canister/nitrogen,/turf/simulated/floor/tiled/steel_dirty,/area/rnd/xenobiology/xenoflora_storage) -"avw" = (/turf/simulated/mineral,/area/maintenance/lower/research) -"avx" = (/obj/effect/floor_decal/rust,/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/tiled/steel_dirty,/area/maintenance/lower/research) -"avy" = (/obj/effect/floor_decal/rust,/obj/machinery/door/airlock/external{req_one_access = list(47)},/turf/simulated/floor/tiled,/area/rnd/misc_lab) -"avz" = (/obj/machinery/door/airlock/external,/obj/effect/floor_decal/rust,/turf/simulated/floor/tiled,/area/rnd/misc_lab) -"avA" = (/obj/effect/floor_decal/industrial/warning/corner{icon_state = "warningcorner"; dir = 1},/obj/machinery/light{icon_state = "tube1"; dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals9,/obj/effect/floor_decal/steeldecal/steel_decals4{tag = "icon-steel_decals4 (EAST)"; icon_state = "steel_decals4"; dir = 4},/obj/machinery/power/apc{dir = 2; name = "south bump"; pixel_y = -28},/obj/structure/cable/green{icon_state = "0-4"},/turf/simulated/floor/tiled,/area/rnd/external) -"avB" = (/obj/effect/floor_decal/steeldecal/steel_decals10{tag = "icon-steel_decals10 (SOUTHEAST)"; icon_state = "steel_decals10"; dir = 6},/obj/effect/floor_decal/steeldecal/steel_decals10{tag = "icon-steel_decals10 (NORTHEAST)"; icon_state = "steel_decals10"; dir = 5},/obj/effect/floor_decal/steeldecal/steel_decals7{tag = "icon-steel_decals7 (NORTHEAST)"; icon_state = "steel_decals7"; dir = 5},/obj/effect/floor_decal/steeldecal/steel_decals7{tag = "icon-steel_decals7 (SOUTHWEST)"; icon_state = "steel_decals7"; dir = 10},/obj/structure/cable/green{d1 = 1; d2 = 8; icon_state = "1-8"},/turf/simulated/floor/tiled,/area/rnd/external) -"avC" = (/obj/effect/floor_decal/steeldecal/steel_decals10{tag = "icon-steel_decals10 (SOUTHEAST)"; icon_state = "steel_decals10"; dir = 6},/obj/effect/floor_decal/steeldecal/steel_decals10{tag = "icon-steel_decals10 (NORTHEAST)"; icon_state = "steel_decals10"; dir = 5},/obj/effect/floor_decal/steeldecal/steel_decals7{tag = "icon-steel_decals7 (NORTHEAST)"; icon_state = "steel_decals7"; dir = 5},/obj/effect/floor_decal/steeldecal/steel_decals7{tag = "icon-steel_decals7 (SOUTHWEST)"; icon_state = "steel_decals7"; dir = 10},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 5},/turf/simulated/floor/tiled,/area/rnd/external) -"avD" = (/obj/effect/floor_decal/industrial/warning/corner{dir = 4},/obj/machinery/light{icon_state = "tube1"; dir = 4},/obj/machinery/computer/area_atmos/tag{dir = 1; scrub_id = "rnd_s_airlock_scrubber"},/obj/machinery/atmospherics/unary/vent_pump/high_volume{dir = 8; icon_state = "map_vent_out"; use_power = 1},/turf/simulated/floor/tiled,/area/rnd/external) -"avE" = (/obj/effect/floor_decal/industrial/warning/dust{tag = "icon-warning_dust (EAST)"; icon_state = "warning_dust"; dir = 4},/obj/effect/floor_decal/industrial/warning/dust{tag = "icon-warning_dust (WEST)"; icon_state = "warning_dust"; dir = 8},/obj/machinery/light/small,/turf/simulated/floor/tiled/steel_dirty,/area/rnd/xenobiology/xenoflora_storage) -"avF" = (/obj/effect/floor_decal/rust,/turf/simulated/floor/tiled/steel_dirty,/area/maintenance/lower/research) -"avG" = (/obj/effect/floor_decal/rust,/obj/machinery/alarm{frequency = 1441; pixel_y = 22},/turf/simulated/floor/tiled/steel_dirty,/area/maintenance/lower/research) -"avH" = (/turf/simulated/floor/outdoors/grass/sif/virgo3b,/area/rnd/misc_lab) -"avI" = (/obj/effect/floor_decal/rust,/turf/simulated/floor/tiled,/area/rnd/misc_lab) -"avJ" = (/obj/item/device/radio/intercom{dir = 1; name = "Station Intercom (General)"; pixel_y = 21},/turf/simulated/floor/outdoors/grass/sif/virgo3b,/area/rnd/misc_lab) -"avK" = (/obj/machinery/camera/network/research{c_tag = "SCI - Xenoflora"; dir = 2},/turf/simulated/floor/outdoors/grass/sif/virgo3b,/area/rnd/misc_lab) -"avL" = (/obj/machinery/door/airlock/external{req_one_access = list(47)},/turf/simulated/floor/tiled,/area/rnd/external) -"avM" = (/obj/machinery/door/airlock/external{req_one_access = list(47)},/obj/machinery/access_button/airlock_exterior{master_tag = "rnd_s_airlock"; pixel_x = 25; pixel_y = -8},/turf/simulated/floor/tiled,/area/rnd/external) -"avN" = (/obj/structure/grille,/obj/structure/railing{dir = 1},/turf/simulated/floor/tiled/techmaint,/area/rnd/xenobiology/xenoflora_storage) -"avO" = (/obj/structure/ladder/up,/obj/effect/floor_decal/rust,/turf/simulated/floor/tiled/steel_dirty,/area/maintenance/lower/research) -"avP" = (/obj/machinery/door/airlock/maintenance/rnd,/obj/machinery/door/firedoor/glass,/turf/simulated/floor/tiled/techfloor,/area/maintenance/lower/research) -"avQ" = (/turf/simulated/mineral,/area/rnd/external) -"avR" = (/obj/effect/floor_decal/steeldecal/steel_decals10{tag = "icon-steel_decals10 (SOUTHWEST)"; icon_state = "steel_decals10"; dir = 10},/obj/effect/floor_decal/steeldecal/steel_decals10{tag = "icon-steel_decals10 (NORTHWEST)"; icon_state = "steel_decals10"; dir = 9},/turf/simulated/floor/outdoors/grass/sif/virgo3b,/area/rnd/external) -"avS" = (/obj/machinery/camera/network/research{c_tag = "SCI - Xenoflora"; dir = 2},/turf/simulated/floor/outdoors/grass/sif/virgo3b,/area/rnd/external) -"avT" = (/obj/effect/floor_decal/rust,/obj/structure/closet/crate,/obj/random/maintenance/clean,/obj/random/maintenance/clean,/obj/random/maintenance/research,/turf/simulated/floor/tiled/steel_dirty,/area/maintenance/lower/research) -"avU" = (/obj/effect/floor_decal/rust,/obj/structure/closet,/obj/random/maintenance/research,/obj/random/maintenance/engineering,/obj/random/maintenance/research,/turf/simulated/floor/tiled/steel_dirty,/area/maintenance/lower/research) -"avV" = (/turf/simulated/wall/r_wall,/area/engineering/atmos/processing) -"avW" = (/obj/machinery/atmospherics/pipe/simple/visible/supply,/obj/machinery/atmospherics/pipe/simple/visible/scrubbers,/obj/structure/cable/cyan{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/door/firedoor/glass,/obj/machinery/door/airlock/multi_tile/metal/mait{name = "Atmospherics Maintenance"; req_access = list(24); req_one_access = list(24)},/turf/simulated/floor/tiled/techfloor,/area/engineering/atmos/processing) -"avX" = (/obj/machinery/door/firedoor/glass,/turf/simulated/floor/tiled/techfloor,/area/engineering/atmos/processing) -"avY" = (/obj/effect/floor_decal/techfloor{tag = "icon-techfloor_edges (NORTHWEST)"; icon_state = "techfloor_edges"; dir = 9},/obj/machinery/firealarm{dir = 2; layer = 3.3; pixel_x = 0; pixel_y = 26},/turf/simulated/floor/tiled/techfloor,/area/engineering/atmos/processing) -"avZ" = (/obj/effect/floor_decal/techfloor{tag = "icon-techfloor_edges (NORTH)"; icon_state = "techfloor_edges"; dir = 1},/obj/machinery/atmospherics/unary/vent_scrubber/on,/turf/simulated/floor/tiled/techfloor,/area/engineering/atmos/processing) -"awa" = (/obj/effect/floor_decal/techfloor{tag = "icon-techfloor_edges (NORTH)"; icon_state = "techfloor_edges"; dir = 1},/obj/machinery/atmospherics/unary/vent_pump/on,/obj/structure/extinguisher_cabinet{pixel_y = 30},/turf/simulated/floor/tiled/techfloor,/area/engineering/atmos/processing) -"awb" = (/obj/machinery/light{dir = 1},/obj/effect/floor_decal/techfloor{tag = "icon-techfloor_edges (NORTH)"; icon_state = "techfloor_edges"; dir = 1},/turf/simulated/floor/tiled/techfloor,/area/engineering/atmos/processing) -"awc" = (/obj/effect/floor_decal/techfloor/corner{tag = "icon-techfloor_corners (NORTH)"; icon_state = "techfloor_corners"; dir = 1},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/cable/cyan{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/cable/cyan{d1 = 1; d2 = 4; icon_state = "1-4"},/turf/simulated/floor/tiled/techfloor,/area/engineering/atmos/processing) -"awd" = (/obj/effect/floor_decal/techfloor/corner{tag = "icon-techfloor_corners (EAST)"; icon_state = "techfloor_corners"; dir = 4},/obj/structure/cable/cyan{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/tiled/techfloor,/area/engineering/atmos/processing) -"awe" = (/obj/effect/floor_decal/techfloor{tag = "icon-techfloor_edges (NORTH)"; icon_state = "techfloor_edges"; dir = 1},/obj/structure/cable/cyan{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/visible{icon_state = "intact"; dir = 6},/obj/machinery/light_switch{pixel_y = 25},/turf/simulated/floor/tiled/techfloor,/area/engineering/atmos/processing) -"awf" = (/obj/effect/floor_decal/techfloor{tag = "icon-techfloor_edges (NORTH)"; icon_state = "techfloor_edges"; dir = 1},/obj/structure/cable/cyan{d2 = 8; icon_state = "0-8"},/obj/machinery/power/apc{dir = 1; name = "north bump"; pixel_x = 0; pixel_y = 24},/obj/machinery/atmospherics/pipe/simple/visible{dir = 4},/turf/simulated/floor/tiled/techfloor,/area/engineering/atmos/processing) -"awg" = (/obj/effect/floor_decal/techfloor{tag = "icon-techfloor_edges (NORTH)"; icon_state = "techfloor_edges"; dir = 1},/obj/machinery/atmospherics/pipe/simple/visible{tag = "icon-intact (SOUTHWEST)"; icon_state = "intact"; dir = 10},/obj/machinery/camera/network/engineering,/turf/simulated/floor/tiled/techfloor,/area/engineering/atmos/processing) -"awh" = (/obj/effect/floor_decal/techfloor{tag = "icon-techfloor_edges (NORTH)"; icon_state = "techfloor_edges"; dir = 1},/obj/machinery/newscaster{pixel_x = 0; pixel_y = 30},/turf/simulated/floor/tiled/techfloor,/area/engineering/atmos/processing) -"awi" = (/obj/effect/floor_decal/techfloor{tag = "icon-techfloor_edges (NORTH)"; icon_state = "techfloor_edges"; dir = 1},/obj/item/device/radio/intercom{dir = 1; name = "Station Intercom (General)"; pixel_y = 21},/turf/simulated/floor/tiled/techfloor,/area/engineering/atmos/processing) -"awj" = (/obj/effect/floor_decal/techfloor{tag = "icon-techfloor_edges (NORTH)"; icon_state = "techfloor_edges"; dir = 1},/obj/machinery/status_display{pixel_y = 30},/turf/simulated/floor/tiled/techfloor,/area/engineering/atmos/processing) -"awk" = (/obj/effect/floor_decal/techfloor{tag = "icon-techfloor_edges (NORTH)"; icon_state = "techfloor_edges"; dir = 1},/obj/machinery/alarm{frequency = 1441; pixel_y = 22},/turf/simulated/floor/tiled/techfloor,/area/engineering/atmos/processing) -"awl" = (/obj/effect/floor_decal/techfloor{tag = "icon-techfloor_edges (NORTH)"; icon_state = "techfloor_edges"; dir = 1},/obj/machinery/requests_console{department = "Atmospherics"; departmentType = 3; name = "Atmos RC"; pixel_x = 0; pixel_y = 28},/turf/simulated/floor/tiled/techfloor,/area/engineering/atmos/processing) -"awm" = (/obj/effect/floor_decal/techfloor{tag = "icon-techfloor_edges (NORTH)"; icon_state = "techfloor_edges"; dir = 1},/obj/structure/extinguisher_cabinet{pixel_y = 30},/turf/simulated/floor/tiled/techfloor,/area/engineering/atmos/processing) -"awn" = (/obj/effect/floor_decal/techfloor{tag = "icon-techfloor_edges (NORTH)"; icon_state = "techfloor_edges"; dir = 1},/obj/machinery/atmospherics/unary/vent_pump/on,/turf/simulated/floor/tiled/techfloor,/area/engineering/atmos/processing) -"awo" = (/obj/effect/floor_decal/techfloor{tag = "icon-techfloor_edges (NORTHEAST)"; icon_state = "techfloor_edges"; dir = 5},/turf/simulated/floor/tiled/techfloor,/area/engineering/atmos/processing) -"awp" = (/obj/effect/floor_decal/techfloor{tag = "icon-techfloor_edges (WEST)"; icon_state = "techfloor_edges"; dir = 8},/turf/simulated/floor/tiled/techfloor,/area/engineering/atmos/processing) -"awq" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 5},/turf/simulated/floor/tiled/techfloor,/area/engineering/atmos/processing) -"awr" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 5},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/turf/simulated/floor/tiled/techfloor,/area/engineering/atmos/processing) -"aws" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/turf/simulated/floor/tiled/techfloor,/area/engineering/atmos/processing) -"awt" = (/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,/obj/machinery/atmospherics/pipe/manifold/hidden/supply,/obj/structure/cable/cyan{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/tiled/techfloor,/area/engineering/atmos/processing) -"awu" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/visible{tag = "icon-intact (NORTHEAST)"; icon_state = "intact"; dir = 5},/turf/simulated/floor/tiled/techfloor,/area/engineering/atmos/processing) -"awv" = (/obj/machinery/atmospherics/omni/filter{tag_east = 1; tag_south = 6; tag_west = 2},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/turf/simulated/floor/tiled/techfloor,/area/engineering/atmos/processing) -"aww" = (/obj/effect/floor_decal/industrial/warning/corner,/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/manifold/visible,/turf/simulated/floor/tiled/techfloor,/area/engineering/atmos/processing) -"awx" = (/obj/effect/floor_decal/industrial/warning,/obj/machinery/atmospherics/pipe/simple/visible{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/turf/simulated/floor/tiled/techfloor,/area/engineering/atmos/processing) -"awy" = (/obj/effect/floor_decal/industrial/warning/corner{tag = "icon-warningcorner (WEST)"; icon_state = "warningcorner"; dir = 8},/obj/machinery/atmospherics/pipe/simple/visible{tag = "icon-intact (SOUTHWEST)"; icon_state = "intact"; dir = 10},/obj/machinery/meter,/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/turf/simulated/floor/tiled/techfloor,/area/engineering/atmos/processing) -"awz" = (/obj/effect/floor_decal/industrial/warning/corner,/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 1},/turf/simulated/floor/tiled/techfloor,/area/engineering/atmos/processing) -"awA" = (/obj/structure/window/reinforced,/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 9},/turf/simulated/floor/tiled/techfloor,/area/engineering/atmos/processing) -"awB" = (/obj/structure/window/reinforced,/obj/effect/floor_decal/techfloor{tag = "icon-techfloor_edges (EAST)"; icon_state = "techfloor_edges"; dir = 4},/turf/simulated/floor/tiled/techfloor,/area/engineering/atmos/processing) -"awC" = (/obj/machinery/light{dir = 8; icon_state = "tube1"; pixel_y = 0},/obj/effect/floor_decal/techfloor{tag = "icon-techfloor_edges (WEST)"; icon_state = "techfloor_edges"; dir = 8},/turf/simulated/floor/tiled/techfloor,/area/engineering/atmos/processing) -"awD" = (/turf/simulated/floor/tiled/techfloor,/area/engineering/atmos/processing) -"awE" = (/obj/structure/cable/cyan{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/tiled/techfloor,/area/engineering/atmos/processing) -"awF" = (/obj/machinery/atmospherics/pipe/simple/visible,/turf/simulated/floor/tiled/techfloor,/area/engineering/atmos/processing) -"awG" = (/obj/effect/floor_decal/industrial/warning{icon_state = "warning"; dir = 4},/turf/simulated/floor/tiled/techfloor,/area/engineering/atmos/processing) -"awH" = (/turf/simulated/floor/tiled/techmaint,/area/engineering/atmos/processing) -"awI" = (/obj/effect/floor_decal/industrial/warning{dir = 8},/obj/machinery/atmospherics/pipe/simple/visible,/turf/simulated/floor/tiled/techfloor,/area/engineering/atmos/processing) -"awJ" = (/obj/effect/floor_decal/industrial/warning{icon_state = "warning"; dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/tiled/techfloor,/area/engineering/atmos/processing) -"awK" = (/obj/machinery/portable_atmospherics/canister/empty,/turf/simulated/floor/tiled/techmaint,/area/engineering/atmos/processing) -"awL" = (/obj/machinery/portable_atmospherics/canister/empty,/obj/machinery/light{dir = 4; icon_state = "tube1"; pixel_x = 0},/turf/simulated/floor/tiled/techmaint,/area/engineering/atmos/processing) -"awM" = (/obj/effect/floor_decal/industrial/warning/corner{tag = "icon-warningcorner (WEST)"; icon_state = "warningcorner"; dir = 8},/obj/structure/cable/cyan{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/tiled/techfloor,/area/engineering/atmos/processing) -"awN" = (/obj/machinery/atmospherics/pipe/manifold/visible{dir = 8},/turf/simulated/floor/tiled/techfloor,/area/engineering/atmos/processing) -"awO" = (/obj/effect/floor_decal/industrial/warning{icon_state = "warning"; dir = 4},/obj/machinery/atmospherics/pipe/simple/visible{dir = 4},/turf/simulated/floor/tiled/techfloor,/area/engineering/atmos/processing) -"awP" = (/obj/machinery/atmospherics/valve/digital{dir = 4},/turf/simulated/floor/tiled/techmaint,/area/engineering/atmos/processing) -"awQ" = (/obj/machinery/atmospherics/pipe/tank/phoron{tag = "icon-phoron_map (WEST)"; icon_state = "phoron_map"; dir = 8},/obj/effect/floor_decal/industrial/outline/yellow,/turf/simulated/floor/tiled/techmaint,/area/engineering/atmos/processing) -"awR" = (/obj/machinery/portable_atmospherics/canister/empty,/obj/machinery/camera/network/engineering{c_tag = "ENG - Workshop Starboard"; dir = 8},/turf/simulated/floor/tiled/techmaint,/area/engineering/atmos/processing) -"awS" = (/obj/structure/stairs/north,/turf/simulated/floor/tiled/techfloor,/area/engineering/atmos/processing) -"awT" = (/obj/effect/floor_decal/industrial/warning{dir = 8},/obj/structure/cable/cyan{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/tiled/techfloor,/area/engineering/atmos/processing) -"awU" = (/obj/machinery/atmospherics/pipe/zpipe/up{dir = 4; icon_state = "up"; level = 2; tag = "icon-up (EAST)"},/turf/simulated/floor/tiled/techmaint,/area/engineering/atmos/processing) -"awV" = (/obj/effect/floor_decal/industrial/warning{dir = 8},/obj/machinery/atmospherics/pipe/manifold/visible{dir = 4},/turf/simulated/floor/tiled/techfloor,/area/engineering/atmos/processing) -"awW" = (/obj/machinery/portable_atmospherics/canister/empty/phoron,/turf/simulated/floor/tiled/techmaint,/area/engineering/atmos/processing) -"awX" = (/turf/simulated/wall/r_wall,/area/engineering/atmos/intake) -"awY" = (/obj/effect/floor_decal/techfloor{tag = "icon-techfloor_edges (WEST)"; icon_state = "techfloor_edges"; dir = 8},/obj/structure/extinguisher_cabinet{dir = 4; icon_state = "extinguisher_closed"; pixel_x = -30; tag = "icon-extinguisher_closed (EAST)"},/turf/simulated/floor/tiled/techfloor,/area/engineering/atmos/processing) -"awZ" = (/turf/simulated/floor/outdoors/grass/sif/virgo3b,/area/engineering/atmos/intake) -"axa" = (/turf/simulated/mineral,/area/engineering/atmos/intake) -"axb" = (/obj/effect/floor_decal/techfloor{tag = "icon-techfloor_edges (WEST)"; icon_state = "techfloor_edges"; dir = 8},/obj/machinery/camera/network/engineering{c_tag = "ENG - Locker Room"; dir = 4},/turf/simulated/floor/tiled/techfloor,/area/engineering/atmos/processing) -"axc" = (/obj/effect/floor_decal/industrial/warning{dir = 1},/turf/simulated/floor/tiled/techfloor,/area/engineering/atmos/processing) -"axd" = (/obj/effect/floor_decal/industrial/warning/corner{icon_state = "warningcorner"; dir = 1},/obj/structure/cable/cyan{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/tiled/techfloor,/area/engineering/atmos/processing) -"axe" = (/obj/effect/floor_decal/industrial/warning/corner{icon_state = "warningcorner"; dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/tiled/techfloor,/area/engineering/atmos/processing) -"axf" = (/obj/effect/floor_decal/techfloor{tag = "icon-techfloor_edges (EAST)"; icon_state = "techfloor_edges"; dir = 4},/turf/simulated/floor/tiled/techfloor,/area/engineering/atmos/processing) -"axg" = (/obj/structure/sign/warning/caution{name = "\improper CAUTION - ATMOSPHERICS AREA"},/turf/simulated/wall/r_wall,/area/engineering/atmos/intake) -"axh" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/tiled/techfloor,/area/engineering/atmos/processing) -"axi" = (/obj/machinery/atmospherics/portables_connector,/obj/effect/floor_decal/industrial/hatch/yellow,/turf/simulated/floor/tiled/techmaint,/area/engineering/atmos/processing) -"axj" = (/obj/effect/floor_decal/techfloor{tag = "icon-techfloor_edges (EAST)"; icon_state = "techfloor_edges"; dir = 4},/obj/structure/extinguisher_cabinet{dir = 8; icon_state = "extinguisher_closed"; pixel_x = 30; tag = "icon-extinguisher_closed (WEST)"},/turf/simulated/floor/tiled/techfloor,/area/engineering/atmos/processing) -"axk" = (/obj/machinery/atmospherics/pipe/simple/visible{tag = "icon-intact (NORTHEAST)"; icon_state = "intact"; dir = 5},/obj/machinery/meter,/turf/simulated/floor/tiled/techfloor,/area/engineering/atmos/processing) -"axl" = (/obj/machinery/atmospherics/binary/pump{dir = 4},/obj/effect/floor_decal/industrial/warning/corner{icon_state = "warningcorner"; dir = 4},/turf/simulated/floor/tiled/techfloor,/area/engineering/atmos/processing) -"axm" = (/obj/machinery/atmospherics/pipe/manifold/visible,/obj/effect/floor_decal/industrial/warning{icon_state = "warning"; dir = 1},/turf/simulated/floor/tiled/techfloor,/area/engineering/atmos/processing) -"axn" = (/obj/machinery/atmospherics/pipe/simple/visible{tag = "icon-intact (NORTHWEST)"; icon_state = "intact"; dir = 9},/obj/effect/floor_decal/industrial/warning{icon_state = "warning"; dir = 1},/turf/simulated/floor/tiled/techfloor,/area/engineering/atmos/processing) -"axo" = (/obj/effect/floor_decal/industrial/warning/corner{icon_state = "warningcorner"; dir = 1},/obj/machinery/atmospherics/pipe/simple/visible,/turf/simulated/floor/tiled/techfloor,/area/engineering/atmos/processing) -"axp" = (/turf/simulated/floor/tiled/steel_dirty/virgo3b,/area/engineering/atmos/intake) -"axq" = (/obj/machinery/light/small{dir = 4; pixel_y = 0},/turf/simulated/floor/tiled/steel_dirty/virgo3b,/area/engineering/atmos/intake) -"axr" = (/obj/machinery/light{dir = 4; icon_state = "tube1"; pixel_x = 0},/obj/effect/floor_decal/techfloor{tag = "icon-techfloor_edges (EAST)"; icon_state = "techfloor_edges"; dir = 4},/turf/simulated/floor/tiled/techfloor,/area/engineering/atmos/processing) -"axs" = (/obj/machinery/atmospherics/pipe/vent/high_volume{dir = 4},/turf/simulated/floor/tiled/steel_dirty/virgo3b,/area/engineering/atmos/intake) -"axt" = (/obj/machinery/atmospherics/pipe/simple/visible{dir = 4},/turf/simulated/floor/tiled/steel_dirty/virgo3b,/area/engineering/atmos/intake) -"axu" = (/obj/structure/grille,/obj/structure/window/reinforced{dir = 5; icon_state = "fwindow"},/obj/machinery/door/firedoor,/obj/machinery/atmospherics/pipe/simple/visible{dir = 4},/turf/simulated/floor/plating,/area/engineering/atmos/processing) -"axv" = (/obj/machinery/atmospherics/pipe/simple/visible{dir = 4},/obj/effect/floor_decal/techfloor/corner{tag = "icon-techfloor_corners (NORTH)"; icon_state = "techfloor_corners"; dir = 1},/turf/simulated/floor/tiled/techfloor,/area/engineering/atmos/processing) -"axw" = (/obj/machinery/atmospherics/binary/passive_gate{dir = 8; target_pressure = 4500},/turf/simulated/floor/tiled/techfloor,/area/engineering/atmos/processing) -"axx" = (/obj/machinery/atmospherics/pipe/simple/visible{dir = 4},/obj/machinery/meter,/turf/simulated/floor/tiled/techfloor,/area/engineering/atmos/processing) -"axy" = (/obj/machinery/atmospherics/valve/digital{dir = 4},/turf/simulated/floor/tiled/techfloor,/area/engineering/atmos/processing) -"axz" = (/obj/machinery/atmospherics/pipe/simple/visible{tag = "icon-intact (SOUTHWEST)"; icon_state = "intact"; dir = 10},/obj/structure/cable/cyan{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/tiled/techfloor,/area/engineering/atmos/processing) -"axA" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 5},/turf/simulated/floor/tiled/techfloor,/area/engineering/atmos/processing) -"axB" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 10},/turf/simulated/floor/tiled/techfloor,/area/engineering/atmos/processing) -"axC" = (/obj/effect/floor_decal/techfloor{tag = "icon-techfloor_edges (EAST)"; icon_state = "techfloor_edges"; dir = 4},/obj/machinery/camera/network/engineering{c_tag = "ENG - Workshop Starboard"; dir = 8},/turf/simulated/floor/tiled/techfloor,/area/engineering/atmos/processing) -"axD" = (/obj/machinery/atmospherics/pipe/simple/visible{icon_state = "intact"; dir = 6},/turf/simulated/floor/tiled/steel_dirty/virgo3b,/area/engineering/atmos/intake) -"axE" = (/obj/machinery/atmospherics/pipe/simple/visible{dir = 4},/obj/structure/cable/cyan{d1 = 2; d2 = 4; icon_state = "2-4"},/turf/simulated/floor/tiled/steel_dirty/virgo3b,/area/engineering/atmos/intake) -"axF" = (/obj/structure/grille,/obj/structure/window/reinforced{dir = 5; icon_state = "fwindow"},/obj/machinery/door/firedoor,/obj/machinery/atmospherics/pipe/simple/visible{dir = 4},/obj/structure/cable/cyan{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/plating,/area/engineering/atmos/processing) -"axG" = (/obj/machinery/atmospherics/pipe/simple/visible{dir = 4},/obj/effect/floor_decal/techfloor,/obj/structure/cable/cyan{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/tiled/techfloor,/area/engineering/atmos/processing) -"axH" = (/obj/machinery/atmospherics/binary/pump{dir = 4},/obj/effect/floor_decal/techfloor,/obj/structure/cable/cyan{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/camera/network/engineering{c_tag = "ENG - Pump Station"; dir = 1},/turf/simulated/floor/tiled/techfloor,/area/engineering/atmos/processing) -"axI" = (/obj/machinery/atmospherics/pipe/simple/visible{dir = 4},/obj/machinery/meter,/obj/effect/floor_decal/techfloor,/obj/structure/cable/cyan{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/tiled/techfloor,/area/engineering/atmos/processing) -"axJ" = (/obj/machinery/atmospherics/pipe/simple/visible{dir = 4},/obj/machinery/light,/obj/effect/floor_decal/techfloor,/obj/structure/cable/cyan{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/tiled/techfloor,/area/engineering/atmos/processing) -"axK" = (/obj/machinery/atmospherics/pipe/manifold/visible,/obj/effect/floor_decal/techfloor,/obj/structure/cable/cyan{d1 = 1; d2 = 8; icon_state = "1-8"},/turf/simulated/floor/tiled/techfloor,/area/engineering/atmos/processing) -"axL" = (/obj/machinery/atmospherics/pipe/simple/visible{dir = 4},/obj/effect/floor_decal/techfloor,/turf/simulated/floor/tiled/techfloor,/area/engineering/atmos/processing) -"axM" = (/obj/machinery/atmospherics/pipe/simple/visible{dir = 4},/obj/effect/floor_decal/techfloor,/obj/item/device/radio/intercom{name = "Station Intercom (General)"; pixel_y = -21},/turf/simulated/floor/tiled/techfloor,/area/engineering/atmos/processing) -"axN" = (/obj/machinery/atmospherics/pipe/simple/visible{dir = 4},/obj/effect/floor_decal/techfloor,/obj/machinery/camera/network/engineering{c_tag = "ENG - Pump Station"; dir = 1},/turf/simulated/floor/tiled/techfloor,/area/engineering/atmos/processing) -"axO" = (/obj/machinery/atmospherics/pipe/simple/visible{tag = "icon-intact (NORTHWEST)"; icon_state = "intact"; dir = 9},/obj/effect/floor_decal/techfloor,/turf/simulated/floor/tiled/techfloor,/area/engineering/atmos/processing) -"axP" = (/obj/effect/floor_decal/techfloor,/obj/machinery/light_switch{pixel_y = -25},/turf/simulated/floor/tiled/techfloor,/area/engineering/atmos/processing) -"axQ" = (/obj/machinery/light,/obj/effect/floor_decal/techfloor,/turf/simulated/floor/tiled/techfloor,/area/engineering/atmos/processing) -"axR" = (/obj/effect/floor_decal/techfloor,/turf/simulated/floor/tiled/techfloor,/area/engineering/atmos/processing) -"axS" = (/obj/effect/floor_decal/techfloor,/obj/machinery/atmospherics/unary/vent_pump/on{dir = 1},/turf/simulated/floor/tiled/techfloor,/area/engineering/atmos/processing) -"axT" = (/obj/effect/floor_decal/techfloor,/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 1},/turf/simulated/floor/tiled/techfloor,/area/engineering/atmos/processing) -"axU" = (/obj/effect/floor_decal/techfloor{tag = "icon-techfloor_edges (SOUTHEAST)"; icon_state = "techfloor_edges"; dir = 6},/turf/simulated/floor/tiled/techfloor,/area/engineering/atmos/processing) -"axV" = (/obj/machinery/atmospherics/pipe/simple/visible,/turf/simulated/floor/tiled/steel_dirty/virgo3b,/area/engineering/atmos/intake) -"axW" = (/obj/structure/cable/cyan,/obj/machinery/power/apc{dir = 4; name = "east bump"; pixel_x = 28},/turf/simulated/floor/tiled/steel_dirty/virgo3b,/area/engineering/atmos/intake) -"axX" = (/obj/machinery/atmospherics/pipe/simple/visible{tag = "icon-intact (NORTHWEST)"; icon_state = "intact"; dir = 9},/turf/simulated/floor/tiled/steel_dirty/virgo3b,/area/engineering/atmos/intake) -"axY" = (/turf/unsimulated/wall/planetary/virgo3b,/area/tether/surfacebase/outside/outside2) -"axZ" = (/turf/simulated/open/virgo3b,/area/tether/surfacebase/outside/outside2) -"aya" = (/turf/simulated/mineral,/area/tether/surfacebase/outside/outside2) -"ayb" = (/turf/simulated/wall,/area/maintenance/lower/mining) -"ayc" = (/turf/simulated/wall/r_wall,/area/gateway) -"ayd" = (/obj/structure/table/steel,/obj/item/weapon/storage/box/bodybags,/turf/simulated/floor/tiled/techfloor,/area/maintenance/lower/mining) -"aye" = (/obj/machinery/alarm{frequency = 1441; pixel_y = 22},/turf/simulated/floor/tiled/techfloor,/area/maintenance/lower/mining) -"ayf" = (/obj/machinery/light_switch{pixel_y = 25},/turf/simulated/floor/tiled/techfloor,/area/maintenance/lower/mining) -"ayg" = (/obj/item/device/radio/intercom{dir = 1; name = "Station Intercom (General)"; pixel_y = 21},/turf/simulated/floor/tiled/techfloor,/area/maintenance/lower/mining) -"ayh" = (/obj/structure/table/steel,/obj/item/weapon/surgical/circular_saw,/obj/item/weapon/storage/briefcase/inflatable,/turf/simulated/floor/tiled/techfloor,/area/maintenance/lower/mining) -"ayi" = (/obj/machinery/gateway{dir = 9},/turf/simulated/floor/tiled/dark,/area/gateway) -"ayj" = (/obj/machinery/gateway{dir = 1},/obj/machinery/light{dir = 1},/turf/simulated/floor/tiled/dark,/area/gateway) -"ayk" = (/obj/machinery/gateway{dir = 5},/obj/machinery/camera/network/command,/turf/simulated/floor/tiled/dark,/area/gateway) -"ayl" = (/turf/simulated/wall,/area/maintenance/substation/medsec) -"aym" = (/turf/simulated/wall,/area/maintenance/lower/north) -"ayn" = (/obj/structure/closet/firecloset,/obj/random/maintenance/medical,/turf/simulated/floor/tiled/techfloor,/area/maintenance/lower/mining) -"ayo" = (/turf/simulated/floor/tiled/techfloor,/area/maintenance/lower/mining) -"ayp" = (/obj/structure/ladder/up,/obj/effect/floor_decal/industrial/outline/yellow,/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/tiled/techfloor,/area/maintenance/lower/mining) -"ayq" = (/obj/structure/table/steel,/obj/item/weapon/backup_implanter,/turf/simulated/floor/tiled/techfloor,/area/maintenance/lower/mining) -"ayr" = (/obj/machinery/gateway{dir = 8},/turf/simulated/floor/tiled/dark,/area/gateway) -"ays" = (/obj/machinery/gateway/centerstation,/turf/simulated/floor/tiled/dark,/area/gateway) -"ayt" = (/obj/machinery/gateway{dir = 4},/turf/simulated/floor/tiled/dark,/area/gateway) -"ayu" = (/obj/machinery/power/breakerbox/activated{RCon_tag = "MedSec Substation Bypass"},/turf/simulated/floor,/area/maintenance/substation/medsec) -"ayv" = (/obj/effect/floor_decal/industrial/warning{dir = 8},/obj/structure/cable{tag = "icon-4-8"; icon_state = "4-8"},/obj/structure/cable{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/machinery/light/small{dir = 1},/turf/simulated/floor,/area/maintenance/substation/medsec) -"ayw" = (/obj/structure/cable{tag = "icon-4-8"; icon_state = "4-8"},/obj/machinery/camera/network/engineering,/turf/simulated/floor,/area/maintenance/substation/medsec) -"ayx" = (/obj/structure/cable{tag = "icon-4-8"; icon_state = "4-8"},/obj/machinery/door/airlock/engineering{name = "MedSec Substation"},/obj/machinery/door/firedoor/glass,/turf/simulated/floor,/area/maintenance/substation/medsec) -"ayy" = (/obj/structure/cable{tag = "icon-4-8"; icon_state = "4-8"},/obj/structure/catwalk,/turf/simulated/floor,/area/maintenance/lower/north) -"ayz" = (/obj/structure/cable{tag = "icon-2-8"; icon_state = "2-8"},/obj/structure/catwalk,/obj/machinery/alarm{frequency = 1441; pixel_y = 22},/obj/structure/cable{icon_state = "2-4"},/turf/simulated/floor,/area/maintenance/lower/north) -"ayA" = (/obj/structure/catwalk,/obj/structure/extinguisher_cabinet{pixel_y = 30},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0},/turf/simulated/floor/tiled/techfloor,/area/maintenance/lower/north) -"ayB" = (/obj/machinery/door/airlock/maintenance/medical,/obj/machinery/door/firedoor/glass,/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0},/turf/simulated/floor/tiled/techfloor,/area/maintenance/lower/mining) -"ayC" = (/obj/effect/decal/cleanable/blood/splatter,/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0},/obj/machinery/light/small{brightness_color = "#DA0205"; brightness_power = 1; brightness_range = 5},/turf/simulated/floor/tiled/techfloor,/area/maintenance/lower/mining) -"ayD" = (/obj/machinery/power/apc{dir = 2; name = "south bump"; pixel_y = -28},/obj/structure/cable{icon_state = "0-8"},/turf/simulated/floor/tiled/techfloor,/area/maintenance/lower/mining) -"ayE" = (/obj/effect/decal/cleanable/dirt,/obj/machinery/camera/network/medbay{c_tag = "MED - Operating Theatre 2"; dir = 1},/turf/simulated/floor/tiled/techfloor,/area/maintenance/lower/mining) -"ayF" = (/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/tiled/techfloor,/area/maintenance/lower/mining) -"ayG" = (/obj/structure/table/steel,/obj/item/bodybag/cryobag,/turf/simulated/floor/tiled/techfloor,/area/maintenance/lower/mining) -"ayH" = (/obj/machinery/gateway{dir = 10},/obj/effect/floor_decal/industrial/warning,/turf/simulated/floor/tiled/dark,/area/gateway) -"ayI" = (/obj/machinery/gateway,/obj/effect/floor_decal/industrial/warning,/turf/simulated/floor/tiled/dark,/area/gateway) -"ayJ" = (/obj/machinery/gateway{dir = 6},/obj/effect/floor_decal/industrial/warning,/turf/simulated/floor/tiled/dark,/area/gateway) -"ayK" = (/obj/structure/cable/green,/obj/structure/cable/green{d2 = 2; icon_state = "0-2"},/obj/machinery/power/smes/buildable{charge = 0; RCon_tag = "Substation - MedSec"},/turf/simulated/floor,/area/maintenance/substation/medsec) -"ayL" = (/obj/effect/floor_decal/industrial/warning{dir = 8},/obj/machinery/power/terminal{dir = 8},/obj/structure/cable,/turf/simulated/floor,/area/maintenance/substation/medsec) -"ayM" = (/obj/machinery/power/apc{dir = 4; name = "east bump"; pixel_x = 28},/obj/structure/cable/green{d2 = 2; icon_state = "0-2"},/turf/simulated/floor,/area/maintenance/substation/medsec) -"ayN" = (/obj/structure/catwalk,/turf/simulated/floor,/area/maintenance/lower/north) -"ayO" = (/obj/structure/cable{tag = "icon-1-2"; icon_state = "1-2"},/obj/structure/catwalk,/turf/simulated/floor,/area/maintenance/lower/north) -"ayP" = (/obj/structure/railing{dir = 8},/obj/structure/railing{dir = 1},/turf/simulated/floor/tiled/techfloor,/area/maintenance/lower/north) -"ayQ" = (/obj/machinery/door/blast/shutters{dir = 2; id = "PubPrep"; layer = 3.3; name = "Gateway Shutter"},/turf/simulated/floor/holofloor/tiled/dark,/area/gateway) -"ayR" = (/obj/effect/floor_decal/industrial/warning{dir = 1},/obj/structure/cable/green,/obj/structure/cable/green{icon_state = "0-4"},/obj/machinery/power/sensor{name = "Powernet Sensor - MedSec Subgrid"; name_tag = "MedSec Subgrid"},/obj/machinery/alarm{dir = 4; icon_state = "alarm0"; pixel_x = -22},/turf/simulated/floor,/area/maintenance/substation/medsec) -"ayS" = (/obj/structure/cable/green{icon_state = "16-0"},/obj/structure/cable/green{d2 = 8; icon_state = "0-8"},/obj/structure/cable/green{icon_state = "0-4"},/obj/effect/floor_decal/industrial/warning/corner{dir = 1},/turf/simulated/floor,/area/maintenance/substation/medsec) -"ayT" = (/obj/structure/cable/green{d1 = 1; d2 = 8; icon_state = "1-8"},/turf/simulated/floor,/area/maintenance/substation/medsec) -"ayU" = (/obj/structure/sign/warning/high_voltage,/turf/simulated/wall,/area/maintenance/substation/medsec) -"ayV" = (/obj/structure/railing{dir = 8},/obj/random/tool,/turf/simulated/floor/tiled/techfloor,/area/maintenance/lower/north) -"ayW" = (/turf/simulated/open,/area/maintenance/lower/mining) -"ayX" = (/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/plating,/area/maintenance/lower/mining) -"ayY" = (/obj/effect/decal/cleanable/dirt,/obj/machinery/alarm{frequency = 1441; pixel_y = 22},/turf/simulated/floor/plating,/area/maintenance/lower/mining) -"ayZ" = (/obj/structure/closet,/obj/random/maintenance/engineering,/obj/random/maintenance/research,/obj/random/toolbox,/obj/random/maintenance/cargo,/turf/simulated/floor/plating,/area/maintenance/lower/mining) -"aza" = (/obj/machinery/light_switch{pixel_x = -25},/turf/simulated/floor/holofloor/tiled/dark,/area/gateway) -"azb" = (/turf/simulated/floor/holofloor/tiled/dark,/area/gateway) -"azc" = (/obj/structure/closet/firecloset,/obj/machinery/camera/network/command,/turf/simulated/floor/holofloor/tiled/dark,/area/gateway) -"azd" = (/obj/structure/closet/emcloset,/turf/simulated/floor/holofloor/tiled/dark,/area/gateway) -"aze" = (/obj/structure/ladder/up,/obj/effect/floor_decal/industrial/outline/yellow,/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/tiled/techfloor,/area/maintenance/lower/north) -"azf" = (/obj/random/junk,/obj/random/cigarettes,/obj/random/maintenance/cargo,/turf/simulated/floor/plating,/area/maintenance/lower/mining) -"azg" = (/obj/effect/floor_decal/rust,/turf/simulated/floor/plating,/area/maintenance/lower/mining) -"azh" = (/obj/machinery/light/small{dir = 4; pixel_y = 0},/turf/simulated/floor/plating,/area/maintenance/lower/mining) -"azi" = (/obj/structure/cable{icon_state = "2-4"},/obj/effect/decal/cleanable/dirt,/obj/effect/floor_decal/rust,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 6},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 6},/turf/simulated/floor/plating,/area/gateway) -"azj" = (/obj/machinery/door/airlock/maintenance/engi,/obj/machinery/door/firedoor/glass,/obj/structure/cable{tag = "icon-4-8"; icon_state = "4-8"},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/plating,/area/gateway) -"azk" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/holofloor/tiled/dark,/area/gateway) -"azl" = (/obj/structure/cable{icon_state = "0-8"},/obj/machinery/power/apc{dir = 4; name = "east bump"; pixel_x = 24},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 10},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 10},/turf/simulated/floor/holofloor/tiled/dark,/area/gateway) -"azm" = (/obj/effect/floor_decal/techfloor{tag = "icon-techfloor_edges (NORTHWEST)"; icon_state = "techfloor_edges"; dir = 9},/obj/effect/decal/cleanable/dirt,/obj/random/cigarettes,/turf/simulated/floor/tiled/techfloor,/area/maintenance/lower/north) -"azn" = (/obj/structure/railing{dir = 4},/obj/effect/floor_decal/techfloor{tag = "icon-techfloor_edges (NORTH)"; icon_state = "techfloor_edges"; dir = 1},/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/tiled/techfloor,/area/maintenance/lower/north) -"azo" = (/obj/structure/catwalk,/obj/effect/floor_decal/techfloor{tag = "icon-techfloor_edges (NORTH)"; icon_state = "techfloor_edges"; dir = 1},/obj/machinery/firealarm{dir = 2; layer = 3.3; pixel_x = 0; pixel_y = 26},/turf/simulated/floor/tiled/techfloor,/area/maintenance/lower/north) -"azp" = (/obj/structure/catwalk,/obj/effect/floor_decal/techfloor{tag = "icon-techfloor_edges (NORTH)"; icon_state = "techfloor_edges"; dir = 1},/obj/machinery/power/apc{dir = 1; name = "north bump"; pixel_x = 0; pixel_y = 24},/obj/structure/cable{tag = "icon-0-2"; icon_state = "0-2"},/turf/simulated/floor/tiled/techfloor,/area/maintenance/lower/north) -"azq" = (/obj/effect/decal/cleanable/dirt,/obj/machinery/door/firedoor/glass,/turf/simulated/floor/tiled/techfloor/grid,/area/maintenance/lower/north) -"azr" = (/obj/effect/decal/cleanable/dirt,/obj/machinery/atmospherics/unary/vent_scrubber/on,/turf/simulated/floor/tiled/techfloor,/area/maintenance/lower/north) -"azs" = (/obj/effect/decal/cleanable/dirt,/obj/machinery/atmospherics/unary/vent_pump/on,/turf/simulated/floor/tiled/techfloor,/area/maintenance/lower/north) -"azt" = (/obj/effect/decal/cleanable/dirt,/obj/structure/cable{tag = "icon-1-2"; icon_state = "1-2"},/turf/simulated/floor/tiled/techfloor,/area/maintenance/lower/north) -"azu" = (/obj/structure/railing,/turf/simulated/open,/area/maintenance/lower/mining) -"azv" = (/mob/living/simple_animal/mouse,/turf/simulated/floor/plating,/area/maintenance/lower/mining) -"azw" = (/turf/simulated/floor/plating,/area/maintenance/lower/mining) -"azx" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0},/obj/effect/decal/cleanable/dirt,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/plating,/area/gateway) -"azy" = (/obj/machinery/firealarm{dir = 8; pixel_x = -24},/turf/simulated/floor/holofloor/tiled/dark,/area/gateway) -"azz" = (/obj/machinery/light{icon_state = "tube1"; dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/holofloor/tiled/dark,/area/gateway) -"azA" = (/obj/effect/floor_decal/techfloor{tag = "icon-techfloor_edges (WEST)"; icon_state = "techfloor_edges"; dir = 8},/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/tiled/techfloor,/area/maintenance/lower/north) -"azB" = (/obj/structure/railing{dir = 4},/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/tiled/techfloor,/area/maintenance/lower/north) -"azC" = (/obj/structure/catwalk,/turf/simulated/floor/tiled/techfloor,/area/maintenance/lower/north) -"azD" = (/obj/structure/catwalk,/obj/structure/cable{icon_state = "2-4"},/obj/structure/cable{tag = "icon-1-2"; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/visible/scrubbers{dir = 6},/obj/machinery/atmospherics/pipe/simple/visible/supply{dir = 6},/turf/simulated/floor/tiled/techfloor,/area/maintenance/lower/north) -"azE" = (/obj/machinery/door/airlock/multi_tile/metal/mait{dir = 1},/obj/effect/decal/cleanable/dirt,/obj/machinery/door/firedoor/glass,/obj/structure/cable{tag = "icon-4-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/maintenance/lower/north) -"azF" = (/obj/effect/decal/cleanable/dirt,/obj/structure/cable{tag = "icon-4-8"; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,/turf/simulated/floor/tiled/techfloor,/area/maintenance/lower/north) -"azG" = (/obj/effect/decal/cleanable/dirt,/obj/structure/cable{tag = "icon-4-8"; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/manifold/hidden/supply,/turf/simulated/floor/tiled/techfloor,/area/maintenance/lower/north) -"azH" = (/obj/effect/decal/cleanable/dirt,/obj/structure/cable{tag = "icon-4-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,/area/maintenance/lower/north) -"azI" = (/obj/effect/decal/cleanable/dirt,/obj/structure/cable{tag = "icon-4-8"; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 10},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 10},/turf/simulated/floor/tiled/techfloor,/area/maintenance/lower/north) -"azJ" = (/obj/effect/decal/cleanable/dirt,/obj/structure/cable{tag = "icon-2-8"; icon_state = "2-8"},/obj/structure/cable{icon_state = "1-8"},/turf/simulated/floor/tiled/techfloor,/area/maintenance/lower/north) -"azK" = (/obj/structure/railing{dir = 4},/turf/simulated/open,/area/maintenance/lower/mining) -"azL" = (/obj/structure/catwalk,/turf/simulated/floor/tiled/techfloor,/area/maintenance/lower/mining) -"azM" = (/obj/machinery/door/airlock/maintenance/common,/obj/machinery/door/firedoor/glass,/turf/simulated/floor/tiled/techfloor/grid,/area/maintenance/lower/mining) -"azN" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0},/obj/effect/decal/cleanable/dirt,/obj/effect/floor_decal/rust,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/plating,/area/gateway) -"azO" = (/obj/effect/floor_decal/industrial/warning,/obj/machinery/alarm{dir = 4; icon_state = "alarm0"; pixel_x = -22; pixel_y = 0},/turf/simulated/floor/holofloor/tiled/dark,/area/gateway) -"azP" = (/obj/effect/floor_decal/industrial/warning,/turf/simulated/floor/holofloor/tiled/dark,/area/gateway) -"azQ" = (/obj/machinery/button/remote/blast_door{id = "GateShut"; name = "Gateway Shutter"; pixel_y = -22; req_access = list(62)},/turf/simulated/floor/holofloor/tiled/dark,/area/gateway) -"azR" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/extinguisher_cabinet{pixel_x = 27},/turf/simulated/floor/holofloor/tiled/dark,/area/gateway) -"azS" = (/obj/structure/railing{dir = 4},/turf/simulated/floor/tiled/techfloor,/area/maintenance/lower/north) -"azT" = (/obj/structure/catwalk,/obj/structure/cable{tag = "icon-1-2"; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/visible/scrubbers,/obj/machinery/atmospherics/pipe/simple/visible/supply,/turf/simulated/floor/tiled/techfloor,/area/maintenance/lower/north) -"azU" = (/obj/effect/decal/cleanable/dirt,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/tiled/techfloor,/area/maintenance/lower/north) -"azV" = (/obj/machinery/light/small{dir = 4; pixel_y = 0},/obj/effect/decal/cleanable/dirt,/obj/structure/cable{tag = "icon-1-2"; icon_state = "1-2"},/turf/simulated/floor/tiled/techfloor,/area/maintenance/lower/north) -"azW" = (/obj/structure/catwalk,/obj/random/junk,/turf/simulated/floor/tiled/techfloor,/area/maintenance/lower/mining) -"azX" = (/obj/structure/catwalk,/obj/machinery/light/small,/turf/simulated/floor/tiled/techfloor,/area/maintenance/lower/mining) -"azY" = (/obj/structure/closet/crate,/obj/random/maintenance/clean,/obj/random/maintenance/cargo,/obj/random/action_figure,/obj/random/tool,/obj/random/maintenance/cargo,/obj/effect/floor_decal/rust,/turf/simulated/floor/plating,/area/maintenance/lower/mining) -"azZ" = (/turf/simulated/mineral,/area/gateway) -"aAa" = (/obj/structure/closet/crate,/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 6},/turf/simulated/floor/holofloor/tiled/dark,/area/gateway) -"aAb" = (/obj/structure/closet/crate,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 9},/turf/simulated/floor/holofloor/tiled/dark,/area/gateway) -"aAc" = (/obj/structure/catwalk,/obj/random/junk,/turf/simulated/floor/tiled/techfloor,/area/maintenance/lower/north) -"aAd" = (/obj/structure/catwalk,/obj/machinery/light/small{dir = 4; pixel_y = 0},/obj/structure/cable{tag = "icon-1-2"; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/visible/scrubbers,/obj/machinery/atmospherics/pipe/simple/visible/supply,/turf/simulated/floor/tiled/techfloor,/area/maintenance/lower/north) -"aAe" = (/obj/effect/decal/cleanable/dirt,/obj/structure/closet/crate,/obj/random/maintenance/clean,/obj/random/maintenance/clean,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/tiled/techfloor,/area/maintenance/lower/north) -"aAf" = (/obj/structure/railing{dir = 4},/obj/structure/railing,/turf/simulated/open,/area/maintenance/lower/mining) -"aAg" = (/obj/structure/stairs/south,/turf/simulated/mineral,/area/gateway) -"aAh" = (/obj/structure/closet/crate,/obj/machinery/atmospherics/unary/vent_pump/on{dir = 1},/turf/simulated/floor/holofloor/tiled/dark,/area/gateway) -"aAi" = (/obj/structure/closet/crate,/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 1},/turf/simulated/floor/holofloor/tiled/dark,/area/gateway) -"aAj" = (/obj/effect/decal/cleanable/dirt,/obj/structure/closet/crate,/obj/random/maintenance/clean,/obj/random/maintenance/clean,/obj/random/maintenance/cargo,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/tiled/techfloor,/area/maintenance/lower/north) -"aAk" = (/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/tiled/techfloor,/area/maintenance/lower/north) -"aAl" = (/obj/effect/decal/cleanable/dirt,/obj/machinery/door/firedoor/glass,/turf/simulated/floor/tiled/techfloor/grid,/area/maintenance/lower/mining) -"aAm" = (/obj/structure/catwalk,/obj/machinery/alarm{dir = 8; icon_state = "alarm0"; pixel_x = 24},/turf/simulated/floor/tiled/techfloor,/area/maintenance/lower/mining) -"aAn" = (/obj/structure/railing{dir = 4},/obj/machinery/atmospherics/pipe/simple/visible/scrubbers{dir = 6},/obj/machinery/atmospherics/pipe/simple/visible/supply{dir = 6},/turf/simulated/floor/tiled/techfloor,/area/maintenance/lower/north) -"aAo" = (/obj/structure/catwalk,/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/north) -"aAp" = (/obj/structure/catwalk,/obj/structure/cable{tag = "icon-1-2"; icon_state = "1-2"},/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/north) -"aAq" = (/obj/effect/decal/cleanable/dirt,/obj/structure/closet,/obj/random/maintenance/clean,/obj/random/maintenance/cargo,/obj/random/medical/lite,/obj/random/maintenance/cargo,/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 5},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 5},/turf/simulated/floor/tiled/techfloor,/area/maintenance/lower/north) -"aAr" = (/obj/effect/decal/cleanable/dirt,/obj/structure/cable{tag = "icon-1-4"; icon_state = "1-4"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/turf/simulated/floor/tiled/techfloor,/area/maintenance/lower/north) -"aAs" = (/obj/machinery/door/airlock/multi_tile/metal/mait{dir = 1},/obj/effect/decal/cleanable/dirt,/obj/machinery/door/firedoor/glass,/obj/structure/cable{tag = "icon-4-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/maintenance/lower/mining) -"aAt" = (/obj/structure/catwalk,/obj/structure/cable{tag = "icon-4-8"; icon_state = "4-8"},/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/mining) -"aAu" = (/obj/structure/catwalk,/obj/structure/cable{tag = "icon-2-8"; icon_state = "2-8"},/obj/structure/cable{tag = "icon-4-8"; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/visible/supply{dir = 10},/obj/machinery/atmospherics/pipe/simple/visible/scrubbers{dir = 10},/turf/simulated/floor/tiled/techfloor,/area/maintenance/lower/mining) -"aAv" = (/obj/structure/catwalk,/obj/machinery/power/apc{dir = 4; name = "east bump"; pixel_x = 28},/obj/structure/cable{d2 = 8; icon_state = "0-8"},/turf/simulated/floor/tiled/techfloor,/area/maintenance/lower/mining) -"aAw" = (/obj/effect/floor_decal/rust,/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/tiled/techfloor,/area/maintenance/lower/north) -"aAx" = (/obj/effect/floor_decal/techfloor/hole{tag = "icon-techfloor_hole_left (NORTH)"; icon_state = "techfloor_hole_left"; dir = 1},/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/tiled/techfloor,/area/maintenance/lower/north) -"aAy" = (/obj/effect/floor_decal/techfloor{tag = "icon-techfloor_edges (NORTH)"; icon_state = "techfloor_edges"; dir = 1},/obj/effect/decal/cleanable/dirt,/mob/living/simple_animal/mouse,/turf/simulated/floor/tiled/techfloor,/area/maintenance/lower/north) -"aAz" = (/obj/effect/floor_decal/techfloor{tag = "icon-techfloor_edges (NORTH)"; icon_state = "techfloor_edges"; dir = 1},/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/tiled/techfloor,/area/maintenance/lower/north) -"aAA" = (/obj/effect/floor_decal/techfloor/hole{tag = "icon-techfloor_hole_left (WEST)"; icon_state = "techfloor_hole_left"; dir = 8},/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/tiled/techfloor,/area/maintenance/lower/north) -"aAB" = (/obj/structure/railing{dir = 4},/obj/structure/lattice,/obj/structure/cable{tag = "icon-32-2"; icon_state = "32-2"},/obj/machinery/atmospherics/pipe/zpipe/down/supply{dir = 1},/obj/machinery/atmospherics/pipe/zpipe/down/scrubbers{dir = 1},/obj/machinery/door/firedoor/glass,/turf/simulated/open,/area/maintenance/lower/north) -"aAC" = (/obj/structure/catwalk,/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0},/obj/machinery/atmospherics/pipe/simple/visible/supply,/obj/machinery/atmospherics/pipe/simple/visible/scrubbers,/obj/machinery/atmospherics/pipe/simple/visible/supply,/turf/simulated/floor/tiled/techfloor,/area/maintenance/lower/north) -"aAD" = (/obj/structure/railing{dir = 1},/turf/simulated/open,/area/maintenance/lower/mining) -"aAE" = (/obj/structure/railing{dir = 4},/obj/structure/railing{dir = 1},/turf/simulated/open,/area/maintenance/lower/mining) -"aAF" = (/obj/structure/catwalk,/obj/structure/cable{tag = "icon-1-2"; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/visible/supply,/obj/machinery/atmospherics/pipe/simple/visible/scrubbers,/turf/simulated/floor/tiled/techfloor,/area/maintenance/lower/mining) -"aAG" = (/turf/simulated/wall,/area/maintenance/lower/bar) -"aAH" = (/obj/effect/floor_decal/rust,/obj/effect/decal/cleanable/dirt,/obj/structure/closet/crate,/obj/random/maintenance/clean,/obj/random/maintenance/clean,/obj/random/maintenance/engineering,/turf/simulated/floor/tiled/techfloor,/area/maintenance/lower/north) -"aAI" = (/obj/structure/railing,/obj/effect/floor_decal/rust,/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/tiled/techfloor,/area/maintenance/lower/north) -"aAJ" = (/obj/structure/railing,/obj/effect/floor_decal/rust,/obj/effect/decal/cleanable/dirt,/obj/random/tool,/turf/simulated/floor/tiled/techfloor,/area/maintenance/lower/north) -"aAK" = (/obj/structure/railing,/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/tiled/techfloor,/area/maintenance/lower/north) -"aAL" = (/obj/structure/railing,/obj/effect/decal/cleanable/dirt,/obj/random/junk,/turf/simulated/floor/tiled/techfloor,/area/maintenance/lower/north) -"aAM" = (/obj/structure/railing,/obj/structure/cable{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/tiled/techfloor,/area/maintenance/lower/north) -"aAN" = (/obj/structure/railing,/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0},/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/tiled/techfloor,/area/maintenance/lower/north) -"aAO" = (/obj/structure/railing{dir = 4},/obj/structure/railing,/obj/effect/decal/cleanable/dirt,/obj/structure/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0},/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/tiled/techfloor,/area/maintenance/lower/north) -"aAP" = (/obj/structure/catwalk,/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0},/turf/simulated/floor/tiled/techfloor,/area/maintenance/lower/north) -"aAQ" = (/obj/structure/catwalk,/obj/structure/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0},/obj/machinery/atmospherics/pipe/simple/visible/supply,/obj/machinery/atmospherics/pipe/simple/visible/scrubbers,/obj/machinery/atmospherics/pipe/simple/visible/supply,/turf/simulated/floor/tiled/techfloor,/area/maintenance/lower/north) -"aAR" = (/obj/structure/catwalk,/obj/structure/disposalpipe/segment{dir = 4; icon_state = "pipe-c"},/turf/simulated/floor/tiled/techfloor,/area/maintenance/lower/mining) -"aAS" = (/obj/structure/catwalk,/obj/machinery/firealarm{dir = 2; layer = 3.3; pixel_x = 0; pixel_y = 26},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled/techfloor,/area/maintenance/lower/mining) -"aAT" = (/obj/structure/catwalk,/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled/techfloor,/area/maintenance/lower/mining) -"aAU" = (/obj/structure/catwalk,/obj/machinery/light/small{dir = 1},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled/techfloor,/area/maintenance/lower/mining) -"aAV" = (/obj/structure/catwalk,/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled/techfloor,/area/maintenance/lower/bar) -"aAW" = (/obj/structure/catwalk,/obj/structure/disposalpipe/segment{dir = 4},/obj/random/junk,/turf/simulated/floor/tiled/techfloor,/area/maintenance/lower/bar) -"aAX" = (/obj/structure/catwalk,/obj/structure/disposalpipe/segment{dir = 4},/mob/living/simple_animal/mouse,/turf/simulated/floor/tiled/techfloor,/area/maintenance/lower/bar) -"aAY" = (/obj/structure/catwalk,/obj/structure/disposalpipe/segment{dir = 2; icon_state = "pipe-c"},/obj/structure/closet/crate,/obj/random/maintenance/clean,/obj/random/maintenance/cargo,/obj/random/maintenance/cargo,/turf/simulated/floor/tiled/techfloor,/area/maintenance/lower/bar) -"aAZ" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0},/obj/effect/decal/cleanable/dirt,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/railing,/turf/simulated/floor/plating,/area/gateway) -"aBa" = (/obj/structure/catwalk,/obj/effect/floor_decal/rust,/turf/simulated/floor/tiled/techfloor,/area/maintenance/lower/north) -"aBb" = (/obj/structure/catwalk,/obj/structure/cable{tag = "icon-1-2"; icon_state = "1-2"},/turf/simulated/floor/tiled/techfloor,/area/maintenance/lower/north) -"aBc" = (/obj/structure/catwalk,/obj/machinery/alarm{dir = 8; icon_state = "alarm0"; pixel_x = 24},/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0},/obj/machinery/atmospherics/pipe/simple/visible/supply,/obj/machinery/atmospherics/pipe/simple/visible/scrubbers,/obj/machinery/atmospherics/pipe/simple/visible/supply,/turf/simulated/floor/tiled/techfloor,/area/maintenance/lower/north) -"aBd" = (/turf/simulated/wall,/area/tether/surfacebase/atrium_two) -"aBe" = (/obj/structure/catwalk,/obj/structure/cable{tag = "icon-1-4"; icon_state = "1-4"},/obj/machinery/atmospherics/pipe/simple/visible/supply{dir = 5},/obj/machinery/atmospherics/pipe/simple/visible/scrubbers{dir = 5},/turf/simulated/floor/tiled/techfloor,/area/maintenance/lower/mining) -"aBf" = (/obj/structure/catwalk,/obj/structure/cable{tag = "icon-4-8"; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/manifold/visible/supply{dir = 1},/obj/machinery/atmospherics/pipe/manifold/visible/scrubbers{dir = 1},/turf/simulated/floor/tiled/techfloor,/area/maintenance/lower/mining) -"aBg" = (/obj/structure/catwalk,/obj/structure/cable{tag = "icon-4-8"; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/visible/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/visible/scrubbers{dir = 4},/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled/techfloor,/area/maintenance/lower/mining) -"aBh" = (/obj/structure/catwalk,/obj/structure/cable{tag = "icon-4-8"; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/visible/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/visible/scrubbers{dir = 4},/obj/random/junk,/turf/simulated/floor/tiled/techfloor,/area/maintenance/lower/mining) -"aBi" = (/obj/structure/catwalk,/obj/structure/cable{tag = "icon-4-8"; icon_state = "4-8"},/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/bar) -"aBj" = (/obj/structure/catwalk,/obj/structure/cable{tag = "icon-2-8"; icon_state = "2-8"},/obj/machinery/atmospherics/pipe/simple/visible/supply{dir = 10},/obj/machinery/atmospherics/pipe/simple/visible/scrubbers{dir = 10},/turf/simulated/floor/tiled/techfloor,/area/maintenance/lower/bar) -"aBk" = (/obj/structure/catwalk,/turf/simulated/floor/tiled/techfloor,/area/maintenance/lower/bar) -"aBl" = (/obj/structure/catwalk,/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled/techfloor,/area/maintenance/lower/bar) -"aBm" = (/obj/effect/floor_decal/industrial/outline/yellow,/obj/structure/cable{tag = "icon-16-0"; icon_state = "16-0"},/obj/structure/cable,/obj/effect/decal/cleanable/dirt,/obj/effect/floor_decal/rust,/obj/machinery/atmospherics/pipe/zpipe/up/scrubbers{dir = 1},/obj/machinery/atmospherics/pipe/zpipe/up/supply{dir = 1},/turf/simulated/floor/plating,/area/gateway) -"aBn" = (/obj/effect/floor_decal/rust,/obj/structure/closet,/obj/random/maintenance/clean,/obj/random/maintenance/research,/obj/random/maintenance/engineering,/turf/simulated/floor/tiled/techfloor,/area/maintenance/lower/north) -"aBo" = (/obj/structure/catwalk,/obj/structure/cable{tag = "icon-1-2"; icon_state = "1-2"},/obj/structure/disposalpipe/segment{dir = 4; icon_state = "pipe-c"},/turf/simulated/floor/tiled/techfloor,/area/maintenance/lower/north) -"aBp" = (/obj/structure/catwalk,/obj/machinery/light/small,/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled/techfloor,/area/maintenance/lower/north) -"aBq" = (/obj/structure/catwalk,/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled/techfloor,/area/maintenance/lower/north) -"aBr" = (/obj/structure/catwalk,/obj/structure/disposalpipe/segment{dir = 2; icon_state = "pipe-c"},/turf/simulated/floor/tiled/techfloor,/area/maintenance/lower/north) -"aBs" = (/obj/machinery/portable_atmospherics/powered/scrubber/huge/stationary{scrub_id = "atrium"},/turf/simulated/floor/tiled/techmaint,/area/tether/surfacebase/atrium_two) -"aBt" = (/obj/structure/railing{dir = 1},/obj/structure/railing{dir = 4},/turf/simulated/open,/area/maintenance/lower/mining) -"aBu" = (/obj/structure/catwalk,/obj/machinery/atmospherics/pipe/simple/visible/scrubbers,/obj/machinery/atmospherics/pipe/simple/visible/supply,/turf/simulated/floor/tiled/techfloor,/area/maintenance/lower/mining) -"aBv" = (/obj/structure/catwalk,/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled/techfloor,/area/maintenance/lower/mining) -"aBw" = (/obj/structure/railing{dir = 1},/obj/structure/railing{dir = 8},/turf/simulated/floor/tiled/techfloor,/area/maintenance/lower/mining) -"aBx" = (/obj/structure/railing{dir = 1},/obj/effect/floor_decal/rust,/turf/simulated/floor/tiled/techfloor,/area/maintenance/lower/mining) -"aBy" = (/obj/structure/railing{dir = 1},/turf/simulated/floor/tiled/techfloor,/area/maintenance/lower/bar) -"aBz" = (/obj/structure/railing{dir = 4},/obj/structure/railing{dir = 1},/obj/effect/floor_decal/rust,/turf/simulated/floor/tiled/techfloor,/area/maintenance/lower/bar) -"aBA" = (/obj/structure/catwalk,/obj/effect/floor_decal/rust,/obj/structure/cable{tag = "icon-1-2"; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/visible/supply,/obj/machinery/atmospherics/pipe/simple/visible/scrubbers,/turf/simulated/floor/tiled/techfloor,/area/maintenance/lower/bar) -"aBB" = (/obj/structure/catwalk,/obj/effect/floor_decal/rust,/turf/simulated/floor/tiled/techfloor,/area/maintenance/lower/bar) -"aBC" = (/obj/structure/railing{dir = 8},/obj/structure/railing{dir = 1},/obj/effect/floor_decal/rust,/turf/simulated/floor/tiled/techmaint,/area/maintenance/lower/bar) -"aBD" = (/obj/structure/railing{dir = 1},/obj/structure/railing{dir = 4},/obj/effect/floor_decal/rust,/turf/simulated/floor/tiled/techmaint,/area/maintenance/lower/bar) -"aBE" = (/obj/structure/railing{dir = 1},/obj/effect/floor_decal/techfloor{tag = "icon-techfloor_edges (WEST)"; icon_state = "techfloor_edges"; dir = 8},/turf/simulated/floor/tiled/techfloor,/area/maintenance/lower/north) -"aBF" = (/obj/structure/railing{dir = 1},/turf/simulated/floor/tiled/techfloor,/area/maintenance/lower/north) -"aBG" = (/obj/structure/railing{dir = 1},/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/tiled/techfloor,/area/maintenance/lower/north) -"aBH" = (/obj/structure/railing{dir = 1},/obj/effect/floor_decal/techfloor{tag = "icon-techfloor_edges (EAST)"; icon_state = "techfloor_edges"; dir = 4},/turf/simulated/floor/tiled/techfloor,/area/maintenance/lower/north) -"aBI" = (/obj/machinery/door/airlock/maintenance/common,/obj/machinery/door/firedoor/glass,/obj/structure/cable{tag = "icon-1-2"; icon_state = "1-2"},/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled/techfloor/grid,/area/maintenance/lower/north) -"aBJ" = (/obj/machinery/door/firedoor/glass,/obj/machinery/door/airlock/multi_tile/metal/mait,/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled/techfloor/grid,/area/tether/surfacebase/atrium_two) -"aBK" = (/obj/machinery/door/firedoor/glass,/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/tiled/techfloor/grid,/area/tether/surfacebase/atrium_two) -"aBL" = (/obj/structure/grille,/obj/structure/railing,/turf/simulated/floor/tiled/techmaint,/area/tether/surfacebase/atrium_two) -"aBM" = (/obj/machinery/door/airlock/multi_tile/metal/mait,/obj/machinery/door/firedoor/glass,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/tiled/techfloor/grid,/area/tether/surfacebase/atrium_two) -"aBN" = (/obj/machinery/door/firedoor/glass,/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled/techfloor/grid,/area/tether/surfacebase/atrium_two) -"aBO" = (/obj/effect/floor_decal/rust,/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/plating,/area/maintenance/lower/mining) -"aBP" = (/obj/effect/floor_decal/techfloor/orange{tag = "icon-techfloororange_edges (NORTHWEST)"; icon_state = "techfloororange_edges"; dir = 9},/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/tiled/techfloor,/area/maintenance/lower/bar) -"aBQ" = (/obj/structure/railing{dir = 4},/obj/effect/floor_decal/techfloor/orange{tag = "icon-techfloororange_edges (NORTH)"; icon_state = "techfloororange_edges"; dir = 1},/turf/simulated/floor/tiled/techfloor,/area/maintenance/lower/bar) -"aBR" = (/obj/structure/catwalk,/obj/effect/floor_decal/techfloor/orange{tag = "icon-techfloororange_edges (NORTH)"; icon_state = "techfloororange_edges"; dir = 1},/obj/structure/cable{tag = "icon-1-2"; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/visible/supply,/obj/machinery/atmospherics/pipe/simple/visible/scrubbers,/turf/simulated/floor/tiled/techfloor,/area/maintenance/lower/bar) -"aBS" = (/obj/structure/catwalk,/obj/effect/floor_decal/techfloor/orange{tag = "icon-techfloororange_edges (NORTH)"; icon_state = "techfloororange_edges"; dir = 1},/turf/simulated/floor/tiled/techfloor,/area/maintenance/lower/bar) -"aBT" = (/obj/structure/railing{dir = 8},/obj/effect/floor_decal/techfloor/orange{tag = "icon-techfloororange_edges (NORTHEAST)"; icon_state = "techfloororange_edges"; dir = 5},/turf/simulated/floor/tiled/techfloor,/area/maintenance/lower/bar) -"aBU" = (/obj/structure/railing{dir = 4},/obj/effect/floor_decal/rust,/turf/simulated/floor/tiled/techmaint,/area/maintenance/lower/bar) -"aBV" = (/obj/effect/floor_decal/techfloor{tag = "icon-techfloor_edges (SOUTHWEST)"; icon_state = "techfloor_edges"; dir = 10},/turf/simulated/floor/tiled/techfloor,/area/maintenance/lower/north) -"aBW" = (/obj/effect/floor_decal/techfloor,/obj/effect/floor_decal/techfloor/hole,/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/tiled/techfloor,/area/maintenance/lower/north) -"aBX" = (/obj/effect/floor_decal/techfloor,/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/tiled/techfloor,/area/maintenance/lower/north) -"aBY" = (/obj/effect/floor_decal/techfloor{tag = "icon-techfloor_edges (SOUTHEAST)"; icon_state = "techfloor_edges"; dir = 6},/turf/simulated/floor/tiled/techfloor,/area/maintenance/lower/north) -"aBZ" = (/obj/effect/floor_decal/techfloor{tag = "icon-techfloor_edges (EAST)"; icon_state = "techfloor_edges"; dir = 4},/obj/effect/floor_decal/techfloor{tag = "icon-techfloor_edges (WEST)"; icon_state = "techfloor_edges"; dir = 8},/obj/structure/cable{tag = "icon-1-2"; icon_state = "1-2"},/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled/techfloor,/area/maintenance/lower/north) -"aCa" = (/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (NORTHWEST)"; icon_state = "borderfloor"; dir = 9},/obj/effect/floor_decal/borderfloor/corner2{tag = "icon-borderfloorcorner2 (NORTH)"; icon_state = "borderfloorcorner2"; dir = 1},/obj/machinery/light/small{dir = 8; pixel_x = 0},/turf/simulated/floor/tiled/techmaint,/area/tether/surfacebase/atrium_two) -"aCb" = (/obj/structure/disposalpipe/segment{dir = 1; icon_state = "pipe-c"},/turf/simulated/floor/tiled/techmaint,/area/tether/surfacebase/atrium_two) -"aCc" = (/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/structure/cable{icon_state = "2-4"},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled/techmaint,/area/tether/surfacebase/atrium_two) -"aCd" = (/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (NORTH)"; icon_state = "borderfloor"; dir = 1},/obj/effect/floor_decal/borderfloor/corner2{tag = "icon-borderfloorcorner2 (EAST)"; icon_state = "borderfloorcorner2"; dir = 4},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/camera/network/northern_star,/turf/simulated/floor/tiled/techmaint,/area/tether/surfacebase/atrium_two) -"aCe" = (/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (NORTH)"; icon_state = "borderfloor"; dir = 1},/obj/item/device/radio/intercom{dir = 1; name = "Station Intercom (General)"; pixel_y = 21},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled/techmaint,/area/tether/surfacebase/atrium_two) -"aCf" = (/obj/machinery/light/small{dir = 1},/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (NORTH)"; icon_state = "borderfloor"; dir = 1},/obj/effect/floor_decal/borderfloor/corner2{tag = "icon-borderfloorcorner2 (NORTH)"; icon_state = "borderfloorcorner2"; dir = 1},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled/techmaint,/area/tether/surfacebase/atrium_two) -"aCg" = (/obj/effect/floor_decal/industrial/warning/corner{dir = 4},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0},/obj/structure/extinguisher_cabinet{pixel_y = 30},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled/techmaint,/area/tether/surfacebase/atrium_two) -"aCh" = (/obj/effect/floor_decal/industrial/warning{dir = 1},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled/techmaint,/area/tether/surfacebase/atrium_two) -"aCi" = (/obj/effect/floor_decal/industrial/warning/corner{icon_state = "warningcorner"; dir = 1},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled/techmaint,/area/tether/surfacebase/atrium_two) -"aCj" = (/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (NORTH)"; icon_state = "borderfloor"; dir = 1},/obj/effect/floor_decal/borderfloor/corner2{tag = "icon-borderfloorcorner2 (EAST)"; icon_state = "borderfloorcorner2"; dir = 4},/obj/machinery/newscaster{pixel_x = 0; pixel_y = 30},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled/techmaint,/area/tether/surfacebase/atrium_two) -"aCk" = (/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (NORTH)"; icon_state = "borderfloor"; dir = 1},/obj/machinery/status_display{pixel_y = 30},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled/techmaint,/area/tether/surfacebase/atrium_two) -"aCl" = (/obj/machinery/light/small{dir = 1},/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (NORTH)"; icon_state = "borderfloor"; dir = 1},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled/techmaint,/area/tether/surfacebase/atrium_two) -"aCm" = (/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (NORTH)"; icon_state = "borderfloor"; dir = 1},/obj/machinery/firealarm{dir = 2; layer = 3.3; pixel_x = 0; pixel_y = 26},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled/techmaint,/area/tether/surfacebase/atrium_two) -"aCn" = (/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (NORTH)"; icon_state = "borderfloor"; dir = 1},/obj/machinery/power/apc{dir = 1; name = "north bump"; pixel_x = 0; pixel_y = 28},/obj/structure/cable{d2 = 8; icon_state = "0-8"},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled/techmaint,/area/tether/surfacebase/atrium_two) -"aCo" = (/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (NORTH)"; icon_state = "borderfloor"; dir = 1},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled/techmaint,/area/tether/surfacebase/atrium_two) -"aCp" = (/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (NORTH)"; icon_state = "borderfloor"; dir = 1},/obj/structure/extinguisher_cabinet{pixel_y = 30},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled/techmaint,/area/tether/surfacebase/atrium_two) -"aCq" = (/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (NORTH)"; icon_state = "borderfloor"; dir = 1},/obj/item/device/radio/intercom{dir = 1; name = "Station Intercom (General)"; pixel_y = 21},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled/techmaint,/area/tether/surfacebase/atrium_two) -"aCr" = (/obj/machinery/light/small{dir = 1},/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (NORTH)"; icon_state = "borderfloor"; dir = 1},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled/techmaint,/area/tether/surfacebase/atrium_two) -"aCs" = (/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (NORTH)"; icon_state = "borderfloor"; dir = 1},/obj/effect/floor_decal/borderfloor/corner2{tag = "icon-borderfloorcorner2 (NORTH)"; icon_state = "borderfloorcorner2"; dir = 1},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/camera/network/northern_star,/turf/simulated/floor/tiled/techmaint,/area/tether/surfacebase/atrium_two) -"aCt" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled/techmaint,/area/tether/surfacebase/atrium_two) -"aCu" = (/obj/structure/disposalpipe/junction{dir = 8},/turf/simulated/floor/tiled/techmaint,/area/tether/surfacebase/atrium_two) -"aCv" = (/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (NORTH)"; icon_state = "borderfloor"; dir = 1},/obj/effect/floor_decal/borderfloor/corner2{tag = "icon-borderfloorcorner2 (EAST)"; icon_state = "borderfloorcorner2"; dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled/techmaint,/area/tether/surfacebase/atrium_two) -"aCw" = (/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (NORTHEAST)"; icon_state = "borderfloor"; dir = 5},/obj/machinery/disposal,/obj/structure/disposalpipe/trunk{dir = 8},/turf/simulated/floor/tiled/techmaint,/area/tether/surfacebase/atrium_two) -"aCx" = (/obj/effect/floor_decal/techfloor/orange{tag = "icon-techfloororange_edges (WEST)"; icon_state = "techfloororange_edges"; dir = 8},/obj/effect/decal/cleanable/dirt,/obj/structure/closet/crate,/obj/random/maintenance/clean,/obj/random/maintenance/security,/obj/random/tool,/obj/random/maintenance/cargo,/turf/simulated/floor/tiled/techfloor,/area/maintenance/lower/bar) -"aCy" = (/obj/structure/railing{dir = 4},/turf/simulated/open,/area/maintenance/lower/bar) -"aCz" = (/obj/structure/catwalk,/obj/structure/cable{tag = "icon-1-2"; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/visible/supply,/obj/machinery/atmospherics/pipe/simple/visible/scrubbers,/turf/simulated/open,/area/maintenance/lower/bar) -"aCA" = (/obj/structure/catwalk,/turf/simulated/open,/area/maintenance/lower/bar) -"aCB" = (/obj/structure/railing{dir = 8},/obj/effect/floor_decal/techfloor/orange{tag = "icon-techfloororange_edges (EAST)"; icon_state = "techfloororange_edges"; dir = 4},/obj/random/junk,/turf/simulated/floor/tiled/techfloor,/area/maintenance/lower/bar) -"aCC" = (/obj/structure/railing{dir = 4},/turf/simulated/floor/tiled/techmaint,/area/maintenance/lower/bar) -"aCD" = (/obj/effect/floor_decal/techfloor{tag = "icon-techfloor_edges (EAST)"; icon_state = "techfloor_edges"; dir = 4},/obj/effect/floor_decal/techfloor{tag = "icon-techfloor_edges (WEST)"; icon_state = "techfloor_edges"; dir = 8},/obj/effect/floor_decal/techfloor/hole{tag = "icon-techfloor_hole_left (EAST)"; icon_state = "techfloor_hole_left"; dir = 4},/obj/structure/cable{tag = "icon-1-2"; icon_state = "1-2"},/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled/techfloor,/area/maintenance/lower/north) -"aCE" = (/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (WEST)"; icon_state = "borderfloor"; dir = 8},/obj/machinery/status_display{pixel_x = -32},/turf/simulated/floor/tiled/techmaint,/area/tether/surfacebase/atrium_two) -"aCF" = (/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 4},/turf/simulated/floor/tiled/techmaint,/area/tether/surfacebase/atrium_two) -"aCG" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 5},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 9},/turf/simulated/floor/tiled/techmaint,/area/tether/surfacebase/atrium_two) -"aCH" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled/techmaint,/area/tether/surfacebase/atrium_two) -"aCI" = (/obj/machinery/atmospherics/unary/vent_pump/on{dir = 8},/turf/simulated/floor/tiled/techmaint,/area/tether/surfacebase/atrium_two) -"aCJ" = (/turf/simulated/floor/tiled/techmaint,/area/tether/surfacebase/atrium_two) -"aCK" = (/obj/machinery/atmospherics/unary/vent_pump/on{dir = 4},/turf/simulated/floor/tiled/techmaint,/area/tether/surfacebase/atrium_two) -"aCL" = (/obj/machinery/atmospherics/pipe/manifold/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 5},/turf/simulated/floor/tiled/techmaint,/area/tether/surfacebase/atrium_two) -"aCM" = (/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 1},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 10},/turf/simulated/floor/tiled/techmaint,/area/tether/surfacebase/atrium_two) -"aCN" = (/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 8},/turf/simulated/floor/tiled/techmaint,/area/tether/surfacebase/atrium_two) -"aCO" = (/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (EAST)"; icon_state = "borderfloor"; dir = 4},/turf/simulated/floor/tiled/techmaint,/area/tether/surfacebase/atrium_two) -"aCP" = (/obj/effect/floor_decal/techfloor/orange{tag = "icon-techfloororange_edges (WEST)"; icon_state = "techfloororange_edges"; dir = 8},/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/tiled/techfloor,/area/maintenance/lower/bar) -"aCQ" = (/obj/structure/catwalk,/obj/structure/cable{tag = "icon-1-2"; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/visible/supply,/obj/machinery/atmospherics/pipe/simple/visible/scrubbers,/obj/structure/disposalpipe/down,/turf/simulated/open,/area/maintenance/lower/bar) -"aCR" = (/obj/structure/railing{dir = 8},/obj/effect/floor_decal/techfloor/orange{tag = "icon-techfloororange_edges (EAST)"; icon_state = "techfloororange_edges"; dir = 4},/turf/simulated/floor/tiled/techfloor,/area/maintenance/lower/bar) -"aCS" = (/obj/machinery/light/small{dir = 8},/obj/effect/floor_decal/techfloor{tag = "icon-techfloor_edges (NORTHWEST)"; icon_state = "techfloor_edges"; dir = 9},/obj/structure/cable{icon_state = "2-4"},/obj/structure/disposalpipe/segment{dir = 4; icon_state = "pipe-c"},/turf/simulated/floor/tiled/techfloor/grid,/area/maintenance/lower/north) -"aCT" = (/obj/effect/floor_decal/techfloor{tag = "icon-techfloor_edges (NORTH)"; icon_state = "techfloor_edges"; dir = 1},/obj/effect/floor_decal/techfloor,/obj/effect/floor_decal/techfloor/hole/right{tag = "icon-techfloor_hole_right (NORTH)"; icon_state = "techfloor_hole_right"; dir = 1},/obj/structure/cable{tag = "icon-4-8"; icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled/techfloor,/area/maintenance/lower/north) -"aCU" = (/obj/effect/floor_decal/techfloor{tag = "icon-techfloor_edges (NORTH)"; icon_state = "techfloor_edges"; dir = 1},/obj/effect/floor_decal/techfloor,/obj/structure/cable{tag = "icon-4-8"; icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled/techfloor,/area/maintenance/lower/north) -"aCV" = (/obj/effect/floor_decal/techfloor{tag = "icon-techfloor_edges (NORTH)"; icon_state = "techfloor_edges"; dir = 1},/obj/effect/floor_decal/techfloor,/obj/effect/floor_decal/techfloor/hole/right,/obj/structure/cable{tag = "icon-4-8"; icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled/techfloor,/area/maintenance/lower/north) -"aCW" = (/obj/effect/floor_decal/techfloor{tag = "icon-techfloor_edges (SOUTHEAST)"; icon_state = "techfloor_edges"; dir = 6},/obj/structure/cable{icon_state = "1-8"},/obj/structure/disposalpipe/segment{dir = 8; icon_state = "pipe-c"},/turf/simulated/floor/tiled/techfloor/grid,/area/maintenance/lower/north) -"aCX" = (/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (WEST)"; icon_state = "borderfloor"; dir = 8},/turf/simulated/floor/tiled/techmaint,/area/tether/surfacebase/atrium_two) -"aCY" = (/obj/structure/disposalpipe/segment{dir = 4; icon_state = "pipe-c"},/turf/simulated/floor/tiled/techmaint,/area/tether/surfacebase/atrium_two) -"aCZ" = (/obj/effect/floor_decal/borderfloor/corner,/obj/effect/floor_decal/corner/orange/bordercorner,/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled/techmaint,/area/tether/surfacebase/atrium_two) -"aDa" = (/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/corner/orange/border,/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled/techmaint,/area/tether/surfacebase/atrium_two) -"aDb" = (/obj/effect/floor_decal/borderfloor/corner{tag = "icon-borderfloorcorner (WEST)"; icon_state = "borderfloorcorner"; dir = 8},/obj/effect/floor_decal/corner/orange/bordercorner{tag = "icon-bordercolorcorner (WEST)"; icon_state = "bordercolorcorner"; dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 5},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 5},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled/techmaint,/area/tether/surfacebase/atrium_two) -"aDc" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 10},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 10},/obj/structure/disposalpipe/segment{dir = 2; icon_state = "pipe-c"},/turf/simulated/floor/tiled/techmaint,/area/tether/surfacebase/atrium_two) -"aDd" = (/obj/effect/floor_decal/techfloor/orange{tag = "icon-techfloororange_edges (WEST)"; icon_state = "techfloororange_edges"; dir = 8},/turf/simulated/floor/tiled/techfloor,/area/maintenance/lower/bar) -"aDe" = (/obj/structure/catwalk,/obj/structure/cable{tag = "icon-1-2"; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/visible/supply,/obj/machinery/atmospherics/pipe/simple/visible/scrubbers,/obj/structure/disposalpipe/segment,/turf/simulated/open,/area/maintenance/lower/bar) -"aDf" = (/obj/effect/floor_decal/techfloor{tag = "icon-techfloor_edges (WEST)"; icon_state = "techfloor_edges"; dir = 8},/obj/structure/cable{tag = "icon-1-2"; icon_state = "1-2"},/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled/techfloor,/area/maintenance/lower/north) -"aDg" = (/turf/simulated/wall,/area/tether/surfacebase/north_staires_two) -"aDh" = (/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (WEST)"; icon_state = "borderfloor"; dir = 8},/obj/machinery/computer/guestpass{dir = 4; pixel_x = -28; pixel_y = 0},/turf/simulated/floor/tiled/techmaint,/area/tether/surfacebase/atrium_two) -"aDi" = (/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled/techmaint,/area/tether/surfacebase/atrium_two) -"aDj" = (/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (EAST)"; icon_state = "borderfloor"; dir = 4},/obj/effect/floor_decal/corner/orange/border{tag = "icon-bordercolor (EAST)"; icon_state = "bordercolor"; dir = 4},/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0},/turf/simulated/floor/tiled/techmaint,/area/tether/surfacebase/atrium_two) -"aDk" = (/obj/structure/railing{dir = 1},/obj/structure/railing{dir = 8},/turf/simulated/open,/area/tether/surfacebase/atrium_two) -"aDl" = (/obj/structure/railing{dir = 1},/turf/simulated/open,/area/tether/surfacebase/atrium_two) -"aDm" = (/obj/structure/railing{dir = 1},/obj/structure/railing{dir = 4},/turf/simulated/open,/area/tether/surfacebase/atrium_two) -"aDn" = (/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (WEST)"; icon_state = "borderfloor"; dir = 8},/obj/effect/floor_decal/corner/orange/border{tag = "icon-bordercolor (WEST)"; icon_state = "bordercolor"; dir = 8},/turf/simulated/floor/tiled/techmaint,/area/tether/surfacebase/atrium_two) -"aDo" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled/techmaint,/area/tether/surfacebase/atrium_two) -"aDp" = (/obj/machinery/light/small{dir = 8},/obj/effect/floor_decal/techfloor/orange{tag = "icon-techfloororange_edges (SOUTHWEST)"; icon_state = "techfloororange_edges"; dir = 10},/obj/random/junk,/turf/simulated/floor/tiled/techfloor,/area/maintenance/lower/bar) -"aDq" = (/obj/structure/railing{dir = 4},/obj/effect/floor_decal/techfloor/orange,/obj/structure/railing,/turf/simulated/floor/tiled/techfloor,/area/maintenance/lower/bar) -"aDr" = (/obj/structure/catwalk,/obj/effect/floor_decal/techfloor/orange,/obj/structure/cable{tag = "icon-1-2"; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/visible/supply,/obj/machinery/atmospherics/pipe/simple/visible/scrubbers,/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled/techfloor,/area/maintenance/lower/bar) -"aDs" = (/obj/structure/catwalk,/obj/effect/floor_decal/techfloor/orange,/turf/simulated/floor/tiled/techfloor,/area/maintenance/lower/bar) -"aDt" = (/obj/structure/railing{dir = 8},/obj/effect/floor_decal/techfloor/orange{tag = "icon-techfloororange_edges (SOUTHEAST)"; icon_state = "techfloororange_edges"; dir = 6},/obj/random/junk,/turf/simulated/floor/tiled/techfloor,/area/maintenance/lower/bar) -"aDu" = (/turf/simulated/open,/area/tether/surfacebase/north_staires_two) -"aDv" = (/obj/structure/railing{dir = 8},/turf/simulated/open,/area/tether/surfacebase/atrium_two) -"aDw" = (/turf/simulated/open,/area/tether/surfacebase/atrium_two) -"aDx" = (/obj/structure/railing{dir = 4},/turf/simulated/open,/area/tether/surfacebase/atrium_two) -"aDy" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/disposalpipe/sortjunction/flipped,/turf/simulated/floor/tiled/techmaint,/area/tether/surfacebase/atrium_two) -"aDz" = (/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (EAST)"; icon_state = "borderfloor"; dir = 4},/obj/structure/disposalpipe/segment{dir = 2; icon_state = "pipe-c"},/turf/simulated/floor/tiled/techmaint,/area/tether/surfacebase/atrium_two) -"aDA" = (/obj/effect/decal/cleanable/dirt,/obj/structure/railing{dir = 4},/turf/simulated/floor/tiled/techfloor,/area/maintenance/lower/bar) -"aDB" = (/obj/structure/catwalk,/obj/structure/ladder/up,/obj/effect/floor_decal/industrial/outline/yellow,/turf/simulated/floor/tiled/techfloor,/area/maintenance/lower/bar) -"aDC" = (/obj/structure/catwalk,/obj/structure/cable{tag = "icon-1-2"; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/visible/supply,/obj/machinery/atmospherics/pipe/simple/visible/scrubbers,/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled/techfloor,/area/maintenance/lower/bar) -"aDD" = (/obj/structure/railing{dir = 8},/turf/simulated/floor/tiled/techmaint,/area/maintenance/lower/bar) -"aDE" = (/obj/effect/floor_decal/techfloor{tag = "icon-techfloor_edges (WEST)"; icon_state = "techfloor_edges"; dir = 8},/obj/effect/floor_decal/techfloor/hole/right{tag = "icon-techfloor_hole_right (WEST)"; icon_state = "techfloor_hole_right"; dir = 8},/obj/effect/decal/cleanable/dirt,/obj/structure/cable{tag = "icon-1-2"; icon_state = "1-2"},/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled/techfloor,/area/maintenance/lower/north) -"aDF" = (/obj/machinery/light/small{dir = 8; pixel_x = 0},/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (WEST)"; icon_state = "borderfloor"; dir = 8},/turf/simulated/floor/tiled/techmaint,/area/tether/surfacebase/atrium_two) -"aDG" = (/obj/machinery/light/small{dir = 4},/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (EAST)"; icon_state = "borderfloor"; dir = 4},/obj/effect/floor_decal/borderfloor/corner2{tag = "icon-borderfloorcorner2 (NORTHEAST)"; icon_state = "borderfloorcorner2"; dir = 5},/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled/techmaint,/area/tether/surfacebase/atrium_two) -"aDH" = (/obj/structure/railing{dir = 8},/obj/structure/railing,/turf/simulated/floor/tiled/techmaint,/area/maintenance/lower/bar) -"aDI" = (/obj/structure/railing{dir = 4},/obj/structure/railing,/turf/simulated/floor/tiled/techmaint,/area/maintenance/lower/bar) -"aDJ" = (/obj/effect/floor_decal/rust,/obj/structure/cable{tag = "icon-1-2"; icon_state = "1-2"},/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled/techfloor,/area/maintenance/lower/north) -"aDK" = (/turf/simulated/floor/tiled,/area/tether/surfacebase/north_staires_two) -"aDL" = (/obj/structure/extinguisher_cabinet{dir = 8; icon_state = "extinguisher_closed"; pixel_x = 30; tag = "icon-extinguisher_closed (WEST)"},/turf/simulated/floor/tiled,/area/tether/surfacebase/north_staires_two) -"aDM" = (/obj/structure/stairs/north,/turf/simulated/floor/tiled,/area/tether/surfacebase/north_staires_two) -"aDN" = (/obj/machinery/door/airlock/maintenance/common,/obj/machinery/door/firedoor/glass,/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled/techfloor/grid,/area/tether/surfacebase/atrium_two) -"aDO" = (/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled/techfloor,/area/maintenance/lower/bar) -"aDP" = (/obj/machinery/alarm{frequency = 1441; pixel_y = 22},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled/techfloor,/area/maintenance/lower/bar) -"aDQ" = (/obj/effect/floor_decal/rust,/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled/techfloor,/area/maintenance/lower/bar) -"aDR" = (/obj/machinery/door/airlock/maintenance/common,/obj/machinery/door/firedoor/glass,/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled/techfloor/grid,/area/maintenance/lower/bar) -"aDS" = (/obj/structure/catwalk,/obj/structure/cable{tag = "icon-1-2"; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/visible/supply,/obj/machinery/atmospherics/pipe/simple/visible/scrubbers,/obj/structure/disposalpipe/segment{dir = 8; icon_state = "pipe-c"},/turf/simulated/floor/tiled/techfloor,/area/maintenance/lower/bar) -"aDT" = (/obj/structure/catwalk,/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/tiled/techfloor,/area/maintenance/lower/bar) -"aDU" = (/obj/structure/catwalk,/obj/random/junk,/turf/simulated/floor/tiled/techfloor,/area/maintenance/lower/bar) -"aDV" = (/obj/structure/sign/directions/evac{tag = "icon-direction_evac (NORTH)"; icon_state = "direction_evac"; dir = 1},/turf/simulated/wall,/area/tether/surfacebase/north_staires_two) -"aDW" = (/obj/machinery/camera/network/northern_star{tag = "icon-camera (EAST)"; icon_state = "camera"; dir = 4},/turf/simulated/floor/tiled,/area/tether/surfacebase/north_staires_two) -"aDX" = (/obj/structure/sign/directions/medical{dir = 1; icon_state = "direction_med"; pixel_y = 8; tag = "icon-direction_med (EAST)"},/obj/structure/sign/directions/science{dir = 1; icon_state = "direction_sci"; pixel_y = 3; tag = "icon-direction_sci (WEST)"},/obj/structure/sign/directions/security{dir = 1; icon_state = "direction_sec"; pixel_y = -4; tag = "icon-direction_sec (WEST)"},/obj/structure/sign/directions/engineering{dir = 4; icon_state = "direction_eng"; pixel_y = -10; tag = "icon-direction_eng (WEST)"},/turf/simulated/wall,/area/tether/surfacebase/north_staires_two) -"aDY" = (/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (WEST)"; icon_state = "borderfloor"; dir = 8},/obj/effect/floor_decal/borderfloor/corner2{tag = "icon-borderfloorcorner2 (SOUTHWEST)"; icon_state = "borderfloorcorner2"; dir = 10},/obj/machinery/camera/network/northern_star{tag = "icon-camera (EAST)"; icon_state = "camera"; dir = 4},/turf/simulated/floor/tiled/techmaint,/area/tether/surfacebase/atrium_two) -"aDZ" = (/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (EAST)"; icon_state = "borderfloor"; dir = 4},/obj/effect/floor_decal/borderfloor/corner2{tag = "icon-borderfloorcorner2 (SOUTHEAST)"; icon_state = "borderfloorcorner2"; dir = 6},/obj/machinery/camera/network/northern_star{tag = "icon-camera (NORTHWEST)"; icon_state = "camera"; dir = 9},/turf/simulated/floor/tiled/techmaint,/area/tether/surfacebase/atrium_two) -"aEa" = (/obj/structure/catwalk,/obj/structure/cable{tag = "icon-1-2"; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/visible/supply,/obj/machinery/atmospherics/pipe/simple/visible/scrubbers,/turf/simulated/floor/tiled/techfloor,/area/maintenance/lower/bar) -"aEb" = (/obj/structure/catwalk,/obj/structure/disposalpipe/segment{dir = 4; icon_state = "pipe-c"},/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/tiled/techfloor,/area/maintenance/lower/bar) -"aEc" = (/obj/structure/catwalk,/obj/structure/closet,/obj/structure/disposalpipe/segment{dir = 8; icon_state = "pipe-c"},/obj/random/maintenance/medical,/obj/random/maintenance/clean,/obj/random/maintenance/cargo,/obj/random/maintenance/cargo,/turf/simulated/floor/tiled/techfloor,/area/maintenance/lower/bar) -"aEd" = (/obj/effect/floor_decal/industrial/warning{icon_state = "warning"; dir = 1},/obj/item/device/radio/intercom{dir = 8; name = "Station Intercom (General)"; pixel_x = -28},/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 4},/turf/simulated/floor/tiled,/area/tether/surfacebase/north_staires_two) -"aEe" = (/obj/effect/floor_decal/industrial/warning{icon_state = "warning"; dir = 1},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 10},/turf/simulated/floor/tiled,/area/tether/surfacebase/north_staires_two) -"aEf" = (/obj/machinery/light/small{dir = 1},/obj/effect/floor_decal/industrial/warning{icon_state = "warning"; dir = 1},/turf/simulated/floor/tiled,/area/tether/surfacebase/north_staires_two) -"aEg" = (/obj/effect/floor_decal/industrial/warning{icon_state = "warning"; dir = 1},/turf/simulated/floor/tiled,/area/tether/surfacebase/north_staires_two) -"aEh" = (/obj/effect/floor_decal/spline/plain{dir = 4},/obj/machinery/door/firedoor/glass,/turf/simulated/floor/tiled,/area/tether/surfacebase/atrium_two) -"aEi" = (/obj/machinery/recharge_station,/obj/effect/floor_decal/techfloor{tag = "icon-techfloor_edges (NORTHWEST)"; icon_state = "techfloor_edges"; dir = 9},/turf/simulated/floor/tiled/techfloor,/area/maintenance/lower/bar) -"aEj" = (/obj/effect/floor_decal/techfloor{tag = "icon-techfloor_edges (NORTH)"; icon_state = "techfloor_edges"; dir = 1},/obj/effect/floor_decal/rust/steel_decals_rusted2,/obj/machinery/alarm{frequency = 1441; pixel_y = 22},/turf/simulated/floor/tiled/techfloor,/area/maintenance/lower/bar) -"aEk" = (/obj/machinery/light/small{dir = 1},/obj/effect/floor_decal/techfloor{tag = "icon-techfloor_edges (NORTH)"; icon_state = "techfloor_edges"; dir = 1},/turf/simulated/floor/tiled/techfloor,/area/maintenance/lower/bar) -"aEl" = (/obj/effect/floor_decal/techfloor{tag = "icon-techfloor_edges (NORTH)"; icon_state = "techfloor_edges"; dir = 1},/obj/machinery/light_switch{pixel_y = 25},/turf/simulated/floor/tiled/techfloor,/area/maintenance/lower/bar) -"aEm" = (/obj/effect/floor_decal/techfloor{tag = "icon-techfloor_edges (NORTHEAST)"; icon_state = "techfloor_edges"; dir = 5},/obj/machinery/space_heater,/obj/structure/extinguisher_cabinet{pixel_y = 30},/turf/simulated/floor/tiled/techfloor,/area/maintenance/lower/bar) -"aEn" = (/obj/structure/catwalk,/obj/structure/cable{tag = "icon-1-2"; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/visible/supply,/obj/machinery/atmospherics/pipe/simple/visible/scrubbers,/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/tiled/techfloor,/area/maintenance/lower/bar) -"aEo" = (/obj/structure/catwalk,/obj/structure/disposalpipe/segment,/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/tiled/techfloor,/area/maintenance/lower/bar) -"aEp" = (/obj/structure/cable{tag = "icon-1-2"; icon_state = "1-2"},/obj/structure/disposalpipe/segment,/turf/simulated/floor/plating,/area/maintenance/lower/north) -"aEq" = (/obj/machinery/light_switch{pixel_x = -25},/obj/machinery/atmospherics/unary/vent_pump/on{dir = 4},/turf/simulated/floor/tiled,/area/tether/surfacebase/north_staires_two) -"aEr" = (/obj/machinery/alarm{dir = 1; pixel_y = -25},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 5},/turf/simulated/floor/tiled,/area/tether/surfacebase/north_staires_two) -"aEs" = (/obj/machinery/firealarm{dir = 1; pixel_x = 0; pixel_y = -25},/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/north_staires_two) -"aEt" = (/obj/structure/cable{icon_state = "0-4"; d2 = 4},/obj/machinery/power/apc{dir = 2; name = "south bump"; pixel_y = -28},/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/north_staires_two) -"aEu" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/turf/simulated/floor/tiled,/area/tether/surfacebase/north_staires_two) -"aEv" = (/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/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/door/airlock/multi_tile/glass{dir = 1},/turf/simulated/floor/tiled,/area/tether/surfacebase/atrium_two) -"aEw" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/turf/simulated/floor/tiled/techmaint,/area/tether/surfacebase/atrium_two) -"aEx" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 10},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 10},/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled/techmaint,/area/tether/surfacebase/atrium_two) -"aEy" = (/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (EAST)"; icon_state = "borderfloor"; dir = 4},/obj/effect/floor_decal/corner/orange/border{tag = "icon-bordercolor (EAST)"; icon_state = "bordercolor"; dir = 4},/obj/structure/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/turf/simulated/floor/tiled/techmaint,/area/tether/surfacebase/atrium_two) -"aEz" = (/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (EAST)"; icon_state = "borderfloor"; dir = 4},/obj/machinery/computer/guestpass{dir = 8; pixel_x = 25},/turf/simulated/floor/tiled/techmaint,/area/tether/surfacebase/atrium_two) -"aEA" = (/obj/effect/floor_decal/techfloor{tag = "icon-techfloor_edges (WEST)"; icon_state = "techfloor_edges"; dir = 8},/turf/simulated/floor/tiled/techfloor,/area/maintenance/lower/bar) -"aEB" = (/turf/simulated/floor/tiled/techfloor,/area/maintenance/lower/bar) -"aEC" = (/obj/effect/floor_decal/corner_techfloor_grid/diagonal,/obj/effect/floor_decal/industrial/outline/yellow,/obj/machinery/atmospherics/pipe/zpipe/up/scrubbers,/obj/machinery/atmospherics/pipe/zpipe/up/supply,/obj/structure/disposalpipe/up,/turf/simulated/floor/tiled/techfloor,/area/maintenance/lower/bar) -"aED" = (/obj/effect/floor_decal/techfloor{tag = "icon-techfloor_edges (EAST)"; icon_state = "techfloor_edges"; dir = 4},/turf/simulated/floor/tiled/techfloor,/area/maintenance/lower/bar) -"aEE" = (/obj/structure/catwalk,/obj/machinery/atmospherics/pipe/simple/visible/supply,/obj/structure/cable{tag = "icon-1-2"; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/visible/scrubbers,/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/tiled/techfloor,/area/maintenance/lower/bar) -"aEF" = (/obj/structure/railing{dir = 8},/obj/effect/floor_decal/techfloor{tag = "icon-techfloor_edges (NORTH)"; icon_state = "techfloor_edges"; dir = 1},/turf/simulated/floor/tiled/techfloor,/area/maintenance/lower/bar) -"aEG" = (/obj/effect/floor_decal/techfloor{tag = "icon-techfloor_edges (NORTHEAST)"; icon_state = "techfloor_edges"; dir = 5},/turf/simulated/floor/tiled/techfloor,/area/maintenance/lower/bar) -"aEH" = (/obj/effect/floor_decal/corner_techfloor_grid,/obj/machinery/alarm{frequency = 1441; pixel_y = 22},/turf/simulated/floor/tiled/techfloor,/area/maintenance/lower/bar) -"aEI" = (/obj/structure/ladder{layer = 3.3; pixel_y = 16},/obj/effect/floor_decal/industrial/outline/blue,/turf/simulated/floor/tiled/techfloor,/area/maintenance/lower/bar) -"aEJ" = (/obj/effect/floor_decal/rust,/turf/simulated/floor/tiled/techfloor,/area/maintenance/lower/bar) -"aEK" = (/obj/structure/sign/warning/caution{name = "\improper CAUTION - DANGEROUS EQUIPMENT AND DROPS"},/turf/simulated/wall,/area/tether/surfacebase/north_staires_two) -"aEL" = (/obj/machinery/light/small{dir = 8; pixel_x = 0},/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (WEST)"; icon_state = "borderfloor"; dir = 8},/obj/effect/floor_decal/borderfloor/corner2{tag = "icon-borderfloorcorner2 (WEST)"; icon_state = "borderfloorcorner2"; dir = 8},/turf/simulated/floor/tiled/techmaint,/area/tether/surfacebase/atrium_two) -"aEM" = (/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (EAST)"; icon_state = "borderfloor"; dir = 4},/obj/effect/floor_decal/corner/orange/border{tag = "icon-bordercolor (EAST)"; icon_state = "bordercolor"; dir = 4},/turf/simulated/floor/tiled/techmaint,/area/tether/surfacebase/atrium_two) -"aEN" = (/obj/machinery/light/small{dir = 4},/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (EAST)"; icon_state = "borderfloor"; dir = 4},/turf/simulated/floor/tiled/techmaint,/area/tether/surfacebase/atrium_two) -"aEO" = (/obj/effect/decal/cleanable/dirt,/obj/machinery/atmospherics/pipe/simple/visible/supply,/obj/machinery/atmospherics/pipe/simple/visible/scrubbers,/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled/techfloor,/area/maintenance/lower/bar) -"aEP" = (/obj/effect/floor_decal/techfloor{tag = "icon-techfloor_edges (EAST)"; icon_state = "techfloor_edges"; dir = 4},/obj/item/device/radio/intercom{dir = 4; name = "Station Intercom (General)"; pixel_x = 21},/turf/simulated/floor/tiled/techfloor,/area/maintenance/lower/bar) -"aEQ" = (/obj/structure/catwalk,/obj/machinery/atmospherics/pipe/simple/visible/supply,/obj/machinery/atmospherics/pipe/simple/visible/scrubbers,/obj/structure/cable{tag = "icon-1-2"; icon_state = "1-2"},/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/tiled/techfloor,/area/maintenance/lower/bar) -"aER" = (/obj/structure/railing{dir = 8},/obj/effect/floor_decal/rust,/turf/simulated/floor/tiled/techfloor,/area/maintenance/lower/bar) -"aES" = (/obj/machinery/light/small{dir = 4; pixel_y = 0},/turf/simulated/floor/tiled/techfloor,/area/maintenance/lower/bar) -"aET" = (/turf/simulated/wall,/area/maintenance/lower/rnd) -"aEU" = (/obj/machinery/door/airlock/maintenance/common,/obj/machinery/door/firedoor/glass,/obj/structure/cable{tag = "icon-1-2"; icon_state = "1-2"},/obj/structure/disposalpipe/segment,/turf/simulated/floor/plating,/area/maintenance/lower/rnd) -"aEV" = (/obj/machinery/power/apc{dir = 1; name = "north bump"; pixel_x = 0; pixel_y = 24},/obj/structure/cable{tag = "icon-0-2"; icon_state = "0-2"},/turf/simulated/floor/plating,/area/maintenance/lower/rnd) -"aEW" = (/turf/simulated/floor/plating,/area/maintenance/lower/rnd) -"aEX" = (/obj/structure/table/rack,/obj/random/maintenance/clean,/obj/random/maintenance/clean,/obj/random/maintenance/engineering,/turf/simulated/floor/plating,/area/maintenance/lower/rnd) -"aEY" = (/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (EAST)"; icon_state = "borderfloor"; dir = 4},/obj/item/device/radio/intercom{dir = 4; name = "Station Intercom (General)"; pixel_x = 21},/turf/simulated/floor/tiled/techmaint,/area/tether/surfacebase/atrium_two) -"aEZ" = (/obj/effect/floor_decal/techfloor{tag = "icon-techfloor_edges (SOUTHWEST)"; icon_state = "techfloor_edges"; dir = 10},/obj/structure/closet,/obj/random/maintenance/engineering,/obj/random/maintenance/clean,/obj/random/maintenance/engineering,/turf/simulated/floor/tiled/techfloor,/area/maintenance/lower/bar) -"aFa" = (/obj/effect/floor_decal/techfloor,/obj/effect/floor_decal/techfloor/hole,/obj/effect/floor_decal/techfloor/hole/right,/turf/simulated/floor/tiled/techfloor,/area/maintenance/lower/bar) -"aFb" = (/obj/effect/floor_decal/techfloor/corner{tag = "icon-techfloor_corners (WEST)"; icon_state = "techfloor_corners"; dir = 8},/obj/effect/floor_decal/techfloor/corner,/obj/machinery/atmospherics/pipe/simple/visible/supply{dir = 6},/obj/machinery/atmospherics/pipe/simple/visible/scrubbers{tag = "icon-intact-scrubbers (SOUTHEAST)"; icon_state = "intact-scrubbers"; dir = 6},/obj/structure/disposalpipe/segment{dir = 4; icon_state = "pipe-c"},/turf/simulated/floor/tiled/techfloor,/area/maintenance/lower/bar) -"aFc" = (/obj/effect/floor_decal/techfloor,/obj/machinery/atmospherics/pipe/simple/visible/supply{dir = 9},/obj/machinery/atmospherics/pipe/simple/visible/scrubbers{tag = "icon-intact-scrubbers (NORTHWEST)"; icon_state = "intact-scrubbers"; dir = 9},/obj/structure/disposalpipe/segment{dir = 8; icon_state = "pipe-c"},/turf/simulated/floor/tiled/techfloor,/area/maintenance/lower/bar) -"aFd" = (/obj/effect/floor_decal/techfloor{tag = "icon-techfloor_edges (SOUTHEAST)"; icon_state = "techfloor_edges"; dir = 6},/turf/simulated/floor/tiled/techfloor,/area/maintenance/lower/bar) -"aFe" = (/obj/structure/catwalk,/obj/machinery/light/small{dir = 8},/obj/machinery/atmospherics/pipe/simple/visible/supply,/obj/machinery/atmospherics/pipe/simple/visible/scrubbers,/obj/structure/cable{tag = "icon-1-2"; icon_state = "1-2"},/turf/simulated/floor/tiled/techfloor,/area/maintenance/lower/bar) -"aFf" = (/obj/effect/floor_decal/techfloor{tag = "icon-techfloor_edges (EAST)"; icon_state = "techfloor_edges"; dir = 4},/obj/effect/floor_decal/techfloor/hole/right{tag = "icon-techfloor_hole_right (EAST)"; icon_state = "techfloor_hole_right"; dir = 4},/turf/simulated/floor/tiled/techfloor,/area/maintenance/lower/bar) -"aFg" = (/obj/structure/cable{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/effect/floor_decal/industrial/warning/corner,/obj/structure/disposalpipe/segment{dir = 4; icon_state = "pipe-c"},/turf/simulated/floor/plating,/area/maintenance/lower/rnd) -"aFh" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/effect/floor_decal/industrial/warning,/obj/structure/disposalpipe/segment{dir = 8; icon_state = "pipe-c"},/turf/simulated/floor/plating,/area/maintenance/lower/rnd) -"aFi" = (/obj/machinery/light/small{dir = 1},/obj/structure/cable{tag = "icon-4-8"; icon_state = "4-8"},/obj/effect/floor_decal/industrial/warning/corner{tag = "icon-warningcorner (WEST)"; icon_state = "warningcorner"; dir = 8},/turf/simulated/floor/plating,/area/maintenance/lower/rnd) -"aFj" = (/obj/structure/cable{tag = "icon-4-8"; icon_state = "4-8"},/obj/structure/cable{icon_state = "1-8"},/turf/simulated/floor/plating,/area/maintenance/lower/rnd) -"aFk" = (/obj/structure/cable{tag = "icon-4-8"; icon_state = "4-8"},/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/plating,/area/maintenance/lower/rnd) -"aFl" = (/obj/structure/cable{tag = "icon-4-8"; icon_state = "4-8"},/turf/simulated/floor/plating,/area/maintenance/lower/rnd) -"aFm" = (/obj/structure/cable{tag = "icon-16-0"; icon_state = "16-0"},/obj/structure/cable{icon_state = "0-8"},/obj/effect/floor_decal/industrial/outline/yellow,/turf/simulated/floor/plating,/area/maintenance/lower/rnd) -"aFn" = (/obj/machinery/alarm{dir = 8; icon_state = "alarm0"; pixel_x = 24},/turf/simulated/floor/plating,/area/maintenance/lower/rnd) -"aFo" = (/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (EAST)"; icon_state = "borderfloor"; dir = 4},/obj/effect/floor_decal/industrial/danger{tag = "icon-danger (EAST)"; icon_state = "danger"; dir = 4},/turf/simulated/floor/tiled/techmaint,/area/tether/surfacebase/atrium_two) -"aFp" = (/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (WEST)"; icon_state = "borderfloor"; dir = 8},/obj/effect/floor_decal/industrial/danger{tag = "icon-danger (WEST)"; icon_state = "danger"; dir = 8},/turf/simulated/floor/tiled/techmaint,/area/tether/surfacebase/atrium_two) -"aFq" = (/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (EAST)"; icon_state = "borderfloor"; dir = 4},/obj/effect/floor_decal/borderfloor/corner2{tag = "icon-borderfloorcorner2 (NORTHEAST)"; icon_state = "borderfloorcorner2"; dir = 5},/turf/simulated/floor/tiled/techmaint,/area/tether/surfacebase/atrium_two) -"aFr" = (/obj/structure/sign/nosmoking_1,/turf/simulated/wall,/area/tether/surfacebase/atrium_two) -"aFs" = (/obj/machinery/door/airlock/maintenance/engi,/obj/machinery/atmospherics/pipe/simple/visible/supply,/obj/machinery/atmospherics/pipe/simple/visible/scrubbers,/obj/machinery/door/firedoor/glass,/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled/techfloor/grid,/area/maintenance/lower/bar) -"aFt" = (/obj/structure/catwalk,/obj/machinery/atmospherics/pipe/simple/visible/supply,/obj/machinery/atmospherics/pipe/simple/visible/scrubbers,/obj/structure/cable{tag = "icon-1-2"; icon_state = "1-2"},/obj/structure/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/turf/simulated/floor/tiled/techfloor,/area/maintenance/lower/bar) -"aFu" = (/obj/structure/catwalk,/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0},/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled/techfloor,/area/maintenance/lower/bar) -"aFv" = (/obj/structure/railing{dir = 8},/obj/structure/cable{icon_state = "0-8"},/obj/machinery/power/apc{dir = 2; name = "south bump"; pixel_y = -28},/turf/simulated/floor/tiled/techfloor,/area/maintenance/lower/bar) -"aFw" = (/obj/effect/floor_decal/techfloor/corner{tag = "icon-techfloor_corners (EAST)"; icon_state = "techfloor_corners"; dir = 4},/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/tiled/techfloor,/area/maintenance/lower/bar) -"aFx" = (/obj/machinery/door/airlock/maintenance/common,/obj/machinery/door/firedoor/glass,/turf/simulated/floor/tiled/techfloor/grid,/area/maintenance/lower/bar) -"aFy" = (/obj/effect/floor_decal/corner_techfloor_grid,/turf/simulated/floor/tiled/techfloor,/area/maintenance/lower/bar) -"aFz" = (/obj/structure/closet/crate,/obj/random/maintenance/clean,/obj/random/maintenance/medical,/obj/random/maintenance/cargo,/turf/simulated/floor/tiled/techfloor,/area/maintenance/lower/bar) -"aFA" = (/obj/structure/cable{icon_state = "2-4"},/obj/random/junk,/turf/simulated/floor/plating,/area/maintenance/lower/rnd) -"aFB" = (/obj/structure/cable{tag = "icon-4-8"; icon_state = "4-8"},/mob/living/simple_animal/mouse,/turf/simulated/floor/plating,/area/maintenance/lower/rnd) -"aFC" = (/obj/structure/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/effect/floor_decal/industrial/warning{icon_state = "warning"; dir = 4},/obj/structure/disposalpipe/segment,/turf/simulated/floor/plating,/area/maintenance/lower/rnd) -"aFD" = (/obj/structure/lattice,/obj/structure/disposalpipe/down{tag = "icon-pipe-d (EAST)"; icon_state = "pipe-d"; dir = 4},/obj/machinery/door/firedoor/glass,/turf/simulated/open,/area/maintenance/lower/rnd) -"aFE" = (/obj/effect/decal/cleanable/dirt,/obj/effect/floor_decal/industrial/warning{icon_state = "warning"; dir = 8},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/plating,/area/maintenance/lower/rnd) -"aFF" = (/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/plating,/area/maintenance/lower/rnd) -"aFG" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/random/junk,/turf/simulated/floor/plating,/area/maintenance/lower/rnd) -"aFH" = (/obj/effect/decal/cleanable/dirt,/obj/structure/disposalpipe/segment{dir = 2; icon_state = "pipe-c"},/turf/simulated/floor/plating,/area/maintenance/lower/rnd) -"aFI" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 5},/obj/structure/disposalpipe/segment{dir = 1; icon_state = "pipe-c"},/turf/simulated/floor/tiled/techmaint,/area/tether/surfacebase/atrium_two) -"aFJ" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled/techmaint,/area/tether/surfacebase/atrium_two) -"aFK" = (/obj/machinery/door/airlock/maintenance/common,/obj/machinery/door/firedoor/glass,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled/techfloor/grid,/area/tether/surfacebase/atrium_two) -"aFL" = (/obj/structure/catwalk,/obj/machinery/atmospherics/pipe/simple/visible/scrubbers{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled/techfloor,/area/maintenance/lower/bar) -"aFM" = (/obj/structure/catwalk,/obj/machinery/atmospherics/pipe/simple/visible/supply{tag = "icon-intact-supply (NORTHEAST)"; icon_state = "intact-supply"; dir = 5},/obj/machinery/atmospherics/pipe/manifold/visible/scrubbers,/obj/structure/disposalpipe/segment{dir = 8; icon_state = "pipe-c"},/turf/simulated/floor/tiled/techfloor,/area/maintenance/lower/bar) -"aFN" = (/obj/structure/catwalk,/obj/machinery/atmospherics/pipe/simple/visible/supply{tag = "icon-intact-supply (EAST)"; icon_state = "intact-supply"; dir = 4},/obj/machinery/atmospherics/pipe/simple/visible/scrubbers{tag = "icon-intact-scrubbers (EAST)"; icon_state = "intact-scrubbers"; dir = 4},/turf/simulated/floor/tiled/techfloor,/area/maintenance/lower/bar) -"aFO" = (/obj/machinery/door/airlock/maintenance/common,/obj/machinery/atmospherics/pipe/simple/visible/supply{tag = "icon-intact-supply (EAST)"; icon_state = "intact-supply"; dir = 4},/obj/machinery/atmospherics/pipe/simple/visible/scrubbers{tag = "icon-intact-scrubbers (EAST)"; icon_state = "intact-scrubbers"; dir = 4},/obj/machinery/door/firedoor/glass,/turf/simulated/floor/tiled/techfloor/grid,/area/maintenance/lower/bar) -"aFP" = (/obj/structure/catwalk,/obj/machinery/atmospherics/pipe/manifold/visible/supply{dir = 4},/obj/machinery/atmospherics/pipe/manifold/visible/scrubbers{dir = 4},/obj/structure/cable{tag = "icon-1-2"; icon_state = "1-2"},/turf/simulated/floor/tiled/techfloor,/area/maintenance/lower/bar) -"aFQ" = (/obj/structure/cable{tag = "icon-1-2"; icon_state = "1-2"},/obj/structure/disposalpipe/segment{dir = 4; icon_state = "pipe-c"},/turf/simulated/floor/plating,/area/maintenance/lower/rnd) -"aFR" = (/obj/effect/decal/cleanable/dirt,/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/plating,/area/maintenance/lower/rnd) -"aFS" = (/obj/effect/floor_decal/industrial/warning/corner{dir = 4},/obj/structure/disposalpipe/segment{dir = 8; icon_state = "pipe-c"},/turf/simulated/floor/plating,/area/maintenance/lower/rnd) -"aFT" = (/obj/effect/floor_decal/industrial/warning{icon_state = "warning"; dir = 1},/turf/simulated/floor/plating,/area/maintenance/lower/rnd) -"aFU" = (/obj/effect/floor_decal/industrial/warning/corner{dir = 1},/turf/simulated/floor/plating,/area/maintenance/lower/rnd) -"aFV" = (/obj/structure/disposalpipe/segment{dir = 1; icon_state = "pipe-c"},/turf/simulated/floor/plating,/area/maintenance/lower/rnd) -"aFW" = (/obj/machinery/door/airlock/maintenance/common,/obj/machinery/door/firedoor/glass,/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/plating,/area/tether/surfacebase/atrium_two) -"aFX" = (/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (WEST)"; icon_state = "borderfloor"; dir = 8},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled/techmaint,/area/tether/surfacebase/atrium_two) -"aFY" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/disposalpipe/segment{dir = 8; icon_state = "pipe-c"},/turf/simulated/floor/tiled/techmaint,/area/tether/surfacebase/atrium_two) -"aFZ" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/tiled/techmaint,/area/tether/surfacebase/atrium_two) -"aGa" = (/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (EAST)"; icon_state = "borderfloor"; dir = 4},/obj/effect/floor_decal/borderfloor/corner2{tag = "icon-borderfloorcorner2 (SOUTHEAST)"; icon_state = "borderfloorcorner2"; dir = 6},/turf/simulated/floor/tiled/techmaint,/area/tether/surfacebase/atrium_two) -"aGb" = (/obj/structure/catwalk,/obj/machinery/atmospherics/pipe/simple/visible/supply,/obj/machinery/atmospherics/pipe/simple/visible/scrubbers,/obj/structure/cable{tag = "icon-1-2"; icon_state = "1-2"},/turf/simulated/floor/tiled/techfloor,/area/maintenance/lower/bar) -"aGc" = (/obj/effect/floor_decal/techfloor{tag = "icon-techfloor_edges (NORTHWEST)"; icon_state = "techfloor_edges"; dir = 9},/obj/structure/closet,/obj/random/maintenance/security,/obj/random/maintenance/engineering,/obj/random/maintenance/research,/turf/simulated/floor/tiled/techfloor/grid,/area/maintenance/lower/bar) -"aGd" = (/obj/effect/floor_decal/techfloor{tag = "icon-techfloor_edges (NORTH)"; icon_state = "techfloor_edges"; dir = 1},/obj/effect/floor_decal/rust/steel_decals_rusted1,/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/tiled/techfloor/grid,/area/maintenance/lower/bar) -"aGe" = (/obj/effect/floor_decal/techfloor{tag = "icon-techfloor_edges (NORTH)"; icon_state = "techfloor_edges"; dir = 1},/turf/simulated/floor/tiled/techfloor/grid,/area/maintenance/lower/bar) -"aGf" = (/obj/effect/floor_decal/techfloor{tag = "icon-techfloor_edges (NORTHEAST)"; icon_state = "techfloor_edges"; dir = 5},/obj/random/tool,/turf/simulated/floor/tiled/techfloor/grid,/area/maintenance/lower/bar) -"aGg" = (/obj/structure/cable{tag = "icon-1-2"; icon_state = "1-2"},/obj/structure/disposalpipe/segment,/turf/simulated/floor/plating,/area/maintenance/lower/rnd) -"aGh" = (/obj/structure/closet,/obj/random/maintenance/clean,/obj/random/maintenance/clean,/obj/random/drinkbottle,/obj/random/maintenance/research,/turf/simulated/floor/plating,/area/maintenance/lower/rnd) -"aGi" = (/obj/structure/closet/crate,/obj/random/maintenance/clean,/obj/random/maintenance/clean,/obj/random/maintenance/engineering,/turf/simulated/floor/plating,/area/maintenance/lower/rnd) -"aGj" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/tiled/techmaint,/area/tether/surfacebase/atrium_two) -"aGk" = (/obj/structure/railing{dir = 1},/obj/effect/floor_decal/techfloor{tag = "icon-techfloor_edges (EAST)"; icon_state = "techfloor_edges"; dir = 4},/turf/simulated/floor/tiled/techfloor,/area/maintenance/lower/bar) -"aGl" = (/obj/structure/railing,/obj/effect/floor_decal/techfloor/hole/right{tag = "icon-techfloor_hole_right (EAST)"; icon_state = "techfloor_hole_right"; dir = 4},/obj/effect/floor_decal/techfloor/hole{tag = "icon-techfloor_hole_left (WEST)"; icon_state = "techfloor_hole_left"; dir = 8},/obj/random/junk,/obj/effect/floor_decal/rust,/turf/simulated/floor/tiled/techfloor/grid,/area/maintenance/lower/bar) -"aGm" = (/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (EAST)"; icon_state = "borderfloor"; dir = 4},/obj/structure/extinguisher_cabinet{dir = 8; icon_state = "extinguisher_closed"; pixel_x = 30; tag = "icon-extinguisher_closed (WEST)"},/turf/simulated/floor/tiled/techmaint,/area/tether/surfacebase/atrium_two) -"aGn" = (/obj/structure/railing{dir = 4},/obj/effect/floor_decal/techfloor{tag = "icon-techfloor_edges (NORTHWEST)"; icon_state = "techfloor_edges"; dir = 9},/turf/simulated/floor/tiled/techfloor,/area/maintenance/lower/bar) -"aGo" = (/turf/simulated/floor/tiled/steel_dirty/virgo3b,/area/tether/surfacebase/outside/outside2) -"aGp" = (/obj/effect/decal/cleanable/dirt,/obj/structure/closet,/obj/random/maintenance/engineering,/obj/random/maintenance/clean,/obj/random/maintenance/medical,/turf/simulated/floor/plating,/area/maintenance/lower/rnd) -"aGq" = (/obj/machinery/atmospherics/unary/vent_pump/on{dir = 1},/turf/simulated/floor/tiled/techmaint,/area/tether/surfacebase/atrium_two) -"aGr" = (/obj/structure/railing{dir = 4},/obj/effect/floor_decal/techfloor{tag = "icon-techfloor_edges (WEST)"; icon_state = "techfloor_edges"; dir = 8},/turf/simulated/floor/tiled/techfloor,/area/maintenance/lower/bar) -"aGs" = (/obj/structure/catwalk,/obj/machinery/atmospherics/pipe/simple/visible/supply{dir = 6},/obj/machinery/atmospherics/pipe/simple/visible/scrubbers{tag = "icon-intact-scrubbers (SOUTHEAST)"; icon_state = "intact-scrubbers"; dir = 6},/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/tiled/techfloor,/area/maintenance/lower/bar) -"aGt" = (/obj/structure/catwalk,/obj/machinery/atmospherics/pipe/simple/visible/scrubbers{tag = "icon-intact-scrubbers (EAST)"; icon_state = "intact-scrubbers"; dir = 4},/obj/machinery/atmospherics/pipe/simple/visible/supply{tag = "icon-intact-supply (EAST)"; icon_state = "intact-supply"; dir = 4},/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/tiled/techfloor,/area/maintenance/lower/bar) -"aGu" = (/obj/structure/catwalk,/obj/machinery/atmospherics/pipe/simple/visible/scrubbers{tag = "icon-intact-scrubbers (EAST)"; icon_state = "intact-scrubbers"; dir = 4},/obj/machinery/atmospherics/pipe/simple/visible/supply{tag = "icon-intact-supply (EAST)"; icon_state = "intact-supply"; dir = 4},/obj/structure/cable{d1 = 2; d2 = 4; icon_state = "2-4"},/turf/simulated/floor/tiled/techfloor,/area/maintenance/lower/bar) -"aGv" = (/obj/structure/catwalk,/obj/machinery/atmospherics/pipe/simple/visible/supply{dir = 9},/obj/machinery/atmospherics/pipe/simple/visible/scrubbers{tag = "icon-intact-scrubbers (NORTHWEST)"; icon_state = "intact-scrubbers"; dir = 9},/obj/structure/cable{icon_state = "1-8"},/obj/structure/disposalpipe/segment{dir = 4; icon_state = "pipe-c"},/turf/simulated/floor/tiled/techfloor,/area/maintenance/lower/bar) -"aGw" = (/obj/structure/catwalk,/obj/machinery/firealarm{dir = 4; pixel_x = 24},/obj/structure/disposalpipe/segment{dir = 8; icon_state = "pipe-c"},/turf/simulated/floor/tiled/techfloor,/area/maintenance/lower/bar) -"aGx" = (/turf/simulated/wall,/area/maintenance/asmaint2) -"aGy" = (/obj/effect/decal/cleanable/dirt,/obj/structure/table/rack,/obj/random/maintenance/clean,/obj/random/maintenance/research,/obj/random/maintenance/research,/turf/simulated/floor/plating,/area/maintenance/lower/rnd) -"aGz" = (/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/plating,/area/maintenance/lower/rnd) -"aGA" = (/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (WEST)"; icon_state = "borderfloor"; dir = 8},/obj/effect/floor_decal/industrial/warning/corner{icon_state = "warningcorner"; dir = 8},/obj/machinery/camera/network/northern_star{tag = "icon-camera (EAST)"; icon_state = "camera"; dir = 4},/turf/simulated/floor/tiled/techmaint,/area/tether/surfacebase/atrium_two) -"aGB" = (/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (EAST)"; icon_state = "borderfloor"; dir = 4},/obj/machinery/camera/network/northern_star{tag = "icon-camera (NORTHWEST)"; icon_state = "camera"; dir = 9},/turf/simulated/floor/tiled/techmaint,/area/tether/surfacebase/atrium_two) -"aGC" = (/obj/structure/catwalk,/obj/machinery/atmospherics/pipe/simple/visible/supply,/obj/machinery/atmospherics/pipe/simple/visible/scrubbers,/turf/simulated/floor/tiled/techfloor,/area/maintenance/lower/bar) -"aGD" = (/obj/structure/railing{dir = 8},/obj/structure/railing{dir = 1},/obj/effect/decal/cleanable/dirt,/obj/structure/cable{tag = "icon-1-2"; icon_state = "1-2"},/obj/effect/decal/cleanable/dirt,/mob/living/simple_animal/mouse,/turf/simulated/floor/tiled/techfloor,/area/maintenance/lower/bar) -"aGE" = (/obj/structure/railing{dir = 1},/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled/techfloor,/area/maintenance/lower/bar) -"aGF" = (/obj/structure/railing{dir = 1},/obj/effect/floor_decal/techfloor{tag = "icon-techfloor_edges (EAST)"; icon_state = "techfloor_edges"; dir = 4},/obj/effect/floor_decal/rust,/turf/simulated/floor/tiled/techfloor,/area/maintenance/lower/bar) -"aGG" = (/obj/item/toy/plushie/kitten{desc = "An odd appearing, cryptic plush of a cat."; name = "Pablo"},/obj/effect/floor_decal/rust,/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/plating,/area/maintenance/lower/bar) -"aGH" = (/obj/item/clothing/under/batter,/obj/effect/floor_decal/rust,/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/plating,/area/maintenance/lower/bar) -"aGI" = (/obj/structure/catwalk,/obj/machinery/alarm{dir = 8; icon_state = "alarm0"; pixel_x = 24},/turf/simulated/floor/tiled/techfloor,/area/maintenance/lower/bar) -"aGJ" = (/obj/effect/floor_decal/techfloor{tag = "icon-techfloor_edges (WEST)"; icon_state = "techfloor_edges"; dir = 8},/obj/effect/decal/cleanable/dirt,/obj/structure/closet,/obj/random/maintenance/research,/obj/random/maintenance/clean,/obj/random/drinkbottle,/turf/simulated/floor/tiled/techfloor,/area/maintenance/asmaint2) -"aGK" = (/obj/structure/catwalk,/obj/structure/grille/broken,/obj/effect/decal/cleanable/dirt,/obj/effect/floor_decal/rust,/obj/random/toolbox,/turf/simulated/floor/tiled/techfloor,/area/maintenance/asmaint2) -"aGL" = (/obj/random/junk,/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/tiled/techfloor,/area/maintenance/lower/rnd) -"aGM" = (/turf/simulated/floor/tiled/techfloor,/area/maintenance/lower/rnd) -"aGN" = (/obj/effect/floor_decal/rust,/turf/simulated/floor/tiled/techfloor,/area/maintenance/lower/rnd) -"aGO" = (/obj/structure/cable{icon_state = "2-4"},/obj/structure/disposalpipe/segment{dir = 4; icon_state = "pipe-c"},/turf/simulated/floor/plating,/area/maintenance/lower/rnd) -"aGP" = (/obj/structure/cable{tag = "icon-4-8"; icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/plating,/area/maintenance/lower/rnd) -"aGQ" = (/obj/structure/cable{icon_state = "1-8"},/obj/effect/decal/cleanable/dirt,/obj/structure/disposalpipe/segment{dir = 8; icon_state = "pipe-c"},/turf/simulated/floor/plating,/area/maintenance/lower/rnd) -"aGR" = (/obj/structure/grille,/obj/structure/railing{dir = 4},/turf/simulated/floor/tiled/techmaint,/area/tether/surfacebase/atrium_two) -"aGS" = (/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (WEST)"; icon_state = "borderfloor"; dir = 8},/obj/effect/floor_decal/industrial/warning{dir = 8},/turf/simulated/floor/tiled/techmaint,/area/tether/surfacebase/atrium_two) -"aGT" = (/obj/machinery/atmospherics/unary/vent_scrubber/on,/turf/simulated/floor/tiled/techmaint,/area/tether/surfacebase/atrium_two) -"aGU" = (/obj/effect/floor_decal/techfloor{tag = "icon-techfloor_edges (EAST)"; icon_state = "techfloor_edges"; dir = 4},/obj/structure/closet/crate,/obj/random/maintenance/security,/obj/random/maintenance/clean,/obj/random/contraband,/obj/random/maintenance/medical,/turf/simulated/floor/tiled/techfloor,/area/maintenance/lower/bar) -"aGV" = (/obj/structure/railing{dir = 4},/obj/machinery/light/small{dir = 8},/obj/effect/floor_decal/techfloor{tag = "icon-techfloor_edges (WEST)"; icon_state = "techfloor_edges"; dir = 8},/turf/simulated/floor/tiled/techfloor,/area/maintenance/lower/bar) -"aGW" = (/obj/structure/railing{dir = 8},/obj/structure/cable{tag = "icon-1-2"; icon_state = "1-2"},/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/tiled/techfloor,/area/maintenance/lower/bar) -"aGX" = (/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled/techfloor,/area/maintenance/lower/bar) -"aGY" = (/obj/effect/floor_decal/techfloor{tag = "icon-techfloor_edges (EAST)"; icon_state = "techfloor_edges"; dir = 4},/obj/random/tool,/turf/simulated/floor/tiled/techfloor,/area/maintenance/lower/bar) -"aGZ" = (/obj/item/clothing/shoes/boots/jackboots{desc = "Very old and worn baseball cleats."; name = "baseball cleats"},/obj/effect/floor_decal/rust,/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/plating,/area/maintenance/lower/bar) -"aHa" = (/obj/item/clothing/head/soft/black{desc = "Its a dusty old cap, It hides most your eyes."},/obj/effect/floor_decal/rust,/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/plating,/area/maintenance/lower/bar) -"aHb" = (/obj/structure/catwalk,/obj/machinery/light/small{dir = 4; pixel_y = 0},/turf/simulated/floor/tiled/techfloor,/area/maintenance/lower/bar) -"aHc" = (/obj/effect/floor_decal/techfloor{tag = "icon-techfloor_edges (WEST)"; icon_state = "techfloor_edges"; dir = 8},/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/tiled/techfloor,/area/maintenance/asmaint2) -"aHd" = (/obj/structure/catwalk,/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/tiled/techfloor,/area/maintenance/asmaint2) -"aHe" = (/obj/structure/railing{dir = 8},/obj/machinery/light{dir = 4; icon_state = "tube1"; pixel_x = 0},/obj/effect/floor_decal/techfloor{tag = "icon-techfloor_edges (EAST)"; icon_state = "techfloor_edges"; dir = 4},/obj/effect/decal/cleanable/dirt,/obj/machinery/atmospherics/pipe/simple/visible/black{tag = "icon-intact (NORTH)"; icon_state = "intact"; dir = 1},/obj/random/tool,/turf/simulated/floor/tiled/techfloor,/area/maintenance/asmaint2) -"aHf" = (/obj/random/maintenance/research,/obj/random/maintenance/clean,/obj/structure/closet/crate,/obj/random/tool,/obj/random/maintenance/research,/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/tiled/techfloor,/area/maintenance/lower/rnd) -"aHg" = (/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/tiled/techfloor,/area/maintenance/lower/rnd) -"aHh" = (/obj/machinery/light/small{dir = 8; pixel_x = 0},/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (WEST)"; icon_state = "borderfloor"; dir = 8},/obj/effect/floor_decal/industrial/warning/corner{icon_state = "warningcorner"; dir = 1},/turf/simulated/floor/tiled/techmaint,/area/tether/surfacebase/atrium_two) -"aHi" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/tiled/techmaint,/area/tether/surfacebase/atrium_two) -"aHj" = (/obj/structure/railing{dir = 4},/obj/effect/floor_decal/techfloor{tag = "icon-techfloor_edges (WEST)"; icon_state = "techfloor_edges"; dir = 8},/obj/effect/floor_decal/techfloor/hole/right{tag = "icon-techfloor_hole_right (WEST)"; icon_state = "techfloor_hole_right"; dir = 8},/turf/simulated/floor/tiled/techfloor,/area/maintenance/lower/bar) -"aHk" = (/obj/structure/railing{dir = 8},/obj/structure/railing,/obj/structure/cable{tag = "icon-1-2"; icon_state = "1-2"},/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/tiled/techfloor,/area/maintenance/lower/bar) -"aHl" = (/obj/structure/railing,/obj/structure/disposalpipe/segment,/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/tiled/techfloor,/area/maintenance/lower/bar) -"aHm" = (/obj/structure/railing,/obj/effect/floor_decal/techfloor{tag = "icon-techfloor_edges (EAST)"; icon_state = "techfloor_edges"; dir = 4},/turf/simulated/floor/tiled/techfloor,/area/maintenance/lower/bar) -"aHn" = (/turf/simulated/mineral,/area/maintenance/lower/bar) -"aHo" = (/obj/item/weapon/material/twohanded/baseballbat{desc = "This bat looks very off."; health = 500},/obj/effect/floor_decal/rust,/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/plating,/area/maintenance/lower/bar) -"aHp" = (/obj/structure/railing{dir = 4},/obj/effect/floor_decal/techfloor{tag = "icon-techfloor_edges (WEST)"; icon_state = "techfloor_edges"; dir = 8},/obj/effect/decal/cleanable/dirt,/obj/machinery/atmospherics/pipe/simple/visible/purple{tag = "icon-intact (NORTH)"; icon_state = "intact"; dir = 1},/turf/simulated/floor/tiled/techfloor,/area/maintenance/asmaint2) -"aHq" = (/obj/structure/catwalk,/mob/living/simple_animal/mouse,/turf/simulated/floor/tiled/techfloor,/area/maintenance/asmaint2) -"aHr" = (/obj/structure/railing{dir = 8},/obj/effect/floor_decal/techfloor{tag = "icon-techfloor_edges (EAST)"; icon_state = "techfloor_edges"; dir = 4},/obj/effect/decal/cleanable/dirt,/obj/machinery/atmospherics/pipe/simple/visible/black{tag = "icon-intact (NORTH)"; icon_state = "intact"; dir = 1},/turf/simulated/floor/tiled/techfloor,/area/maintenance/asmaint2) -"aHs" = (/obj/structure/cable{tag = "icon-1-2"; icon_state = "1-2"},/obj/effect/decal/cleanable/dirt,/obj/structure/disposalpipe/segment,/turf/simulated/floor/plating,/area/maintenance/lower/rnd) -"aHt" = (/turf/simulated/wall/r_wall,/area/maintenance/lower/rnd) -"aHu" = (/turf/simulated/wall/r_wall,/area/tether/surfacebase/atrium_two) -"aHv" = (/obj/structure/catwalk,/obj/structure/cable{tag = "icon-1-2"; icon_state = "1-2"},/turf/simulated/floor/tiled/techfloor,/area/maintenance/lower/bar) -"aHw" = (/obj/structure/railing{dir = 4},/obj/effect/floor_decal/rust,/obj/effect/floor_decal/techfloor{tag = "icon-techfloor_edges (WEST)"; icon_state = "techfloor_edges"; dir = 8},/obj/machinery/atmospherics/pipe/simple/visible/purple{tag = "icon-intact (NORTH)"; icon_state = "intact"; dir = 1},/turf/simulated/floor/tiled/techfloor,/area/maintenance/asmaint2) -"aHx" = (/obj/structure/catwalk,/turf/simulated/floor/tiled/techfloor,/area/maintenance/asmaint2) -"aHy" = (/obj/structure/catwalk,/obj/effect/decal/cleanable/dirt,/obj/random/junk,/turf/simulated/floor/tiled/techfloor,/area/maintenance/asmaint2) -"aHz" = (/obj/effect/floor_decal/techfloor{tag = "icon-techfloor_edges (EAST)"; icon_state = "techfloor_edges"; dir = 4},/obj/effect/decal/cleanable/dirt,/obj/effect/floor_decal/rust,/obj/structure/cable/green{d2 = 2; icon_state = "0-2"},/turf/simulated/floor/tiled/techfloor,/area/maintenance/asmaint2) -"aHA" = (/turf/simulated/wall,/area/maintenance/research) -"aHB" = (/obj/structure/sign/securearea{desc = "A warning sign which reads 'HIGH VOLTAGE'"; icon_state = "shock"; name = "HIGH VOLTAGE"},/turf/simulated/wall,/area/maintenance/research) -"aHC" = (/obj/effect/floor_decal/industrial/warning/corner,/obj/structure/cable{tag = "icon-1-2"; icon_state = "1-2"},/obj/structure/disposalpipe/segment,/turf/simulated/floor/plating,/area/maintenance/lower/rnd) -"aHD" = (/obj/structure/sign/warning/caution{name = "\improper CAUTION - DANGEROUS EQUIPMENT AND DROPS"},/turf/simulated/wall/r_wall,/area/maintenance/lower/rnd) -"aHE" = (/obj/machinery/light/small{dir = 4; pixel_y = 0},/obj/machinery/atmospherics/pipe/zpipe/down/scrubbers,/obj/machinery/atmospherics/pipe/zpipe/down/supply,/obj/structure/lattice,/obj/structure/cable{tag = "icon-32-2"; icon_state = "32-2"},/obj/structure/disposalpipe/down,/turf/simulated/open,/area/maintenance/lower/rnd) -"aHF" = (/turf/simulated/shuttle/wall/voidcraft/green{hard_corner = 1},/area/tether/surfacebase/atrium_two) -"aHG" = (/obj/effect/floor_decal/techfloor/corner{tag = "icon-techfloor_corners (EAST)"; icon_state = "techfloor_corners"; dir = 4},/obj/effect/floor_decal/rust,/turf/simulated/floor/tiled/techfloor,/area/maintenance/lower/bar) -"aHH" = (/obj/effect/floor_decal/techfloor{tag = "icon-techfloor_edges (NORTH)"; icon_state = "techfloor_edges"; dir = 1},/turf/simulated/floor/tiled/techfloor,/area/maintenance/lower/bar) -"aHI" = (/obj/structure/railing{dir = 4},/obj/effect/floor_decal/techfloor/corner{tag = "icon-techfloor_corners (NORTH)"; icon_state = "techfloor_corners"; dir = 1},/turf/simulated/floor/tiled/techfloor,/area/maintenance/lower/bar) -"aHJ" = (/obj/structure/catwalk,/obj/machinery/atmospherics/pipe/simple/visible/supply{tag = "icon-intact-supply (NORTHEAST)"; icon_state = "intact-supply"; dir = 5},/obj/machinery/atmospherics/pipe/simple/visible/scrubbers{tag = "icon-intact-scrubbers (NORTHEAST)"; icon_state = "intact-scrubbers"; dir = 5},/turf/simulated/floor/tiled/techfloor,/area/maintenance/lower/bar) -"aHK" = (/obj/structure/catwalk,/obj/machinery/atmospherics/pipe/simple/visible/supply{tag = "icon-intact-supply (EAST)"; icon_state = "intact-supply"; dir = 4},/obj/machinery/atmospherics/pipe/simple/visible/scrubbers{tag = "icon-intact-scrubbers (EAST)"; icon_state = "intact-scrubbers"; dir = 4},/obj/structure/cable{tag = "icon-1-4"; icon_state = "1-4"},/turf/simulated/floor/tiled/techfloor,/area/maintenance/lower/bar) -"aHL" = (/obj/structure/catwalk,/obj/machinery/atmospherics/pipe/simple/visible/supply{dir = 10},/obj/machinery/atmospherics/pipe/simple/visible/scrubbers{tag = "icon-intact-scrubbers (SOUTHWEST)"; icon_state = "intact-scrubbers"; dir = 10},/obj/structure/cable{tag = "icon-2-8"; icon_state = "2-8"},/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled/techfloor,/area/maintenance/lower/bar) -"aHM" = (/obj/structure/catwalk,/obj/effect/decal/cleanable/dirt,/obj/structure/cable/green{icon_state = "0-4"},/turf/simulated/floor/tiled/techfloor,/area/maintenance/asmaint2) -"aHN" = (/obj/structure/catwalk,/obj/effect/decal/cleanable/dirt,/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/tiled/techfloor,/area/maintenance/asmaint2) -"aHO" = (/obj/structure/railing{dir = 8},/obj/effect/floor_decal/techfloor{tag = "icon-techfloor_edges (EAST)"; icon_state = "techfloor_edges"; dir = 4},/obj/effect/decal/cleanable/dirt,/obj/structure/cable/green{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/machinery/atmospherics/pipe/simple/visible/black{tag = "icon-intact (NORTH)"; icon_state = "intact"; dir = 1},/turf/simulated/floor/tiled/techfloor,/area/maintenance/asmaint2) -"aHP" = (/obj/machinery/power/breakerbox/activated{RCon_tag = "Research Substation Bypass"},/turf/simulated/floor,/area/maintenance/research) -"aHQ" = (/obj/effect/floor_decal/industrial/warning{dir = 8},/obj/structure/cable{tag = "icon-4-8"; icon_state = "4-8"},/obj/structure/cable{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/machinery/light/small{dir = 1},/turf/simulated/floor,/area/maintenance/research) -"aHR" = (/obj/structure/cable{tag = "icon-4-8"; icon_state = "4-8"},/obj/machinery/alarm{frequency = 1441; pixel_y = 22},/turf/simulated/floor,/area/maintenance/research) -"aHS" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/door/airlock/engineering{name = "Science Substation"; req_one_access = list(11,24,47)},/obj/machinery/door/firedoor,/obj/structure/cable{tag = "icon-4-8"; icon_state = "4-8"},/turf/simulated/floor,/area/maintenance/research) -"aHT" = (/obj/machinery/atmospherics/pipe/simple/visible/supply{dir = 6},/obj/machinery/atmospherics/pipe/simple/visible/scrubbers{dir = 6},/obj/effect/floor_decal/industrial/warning{dir = 4},/obj/structure/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/structure/cable{tag = "icon-4-8"; icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 1; icon_state = "pipe-c"},/turf/simulated/floor/plating,/area/maintenance/lower/rnd) -"aHU" = (/obj/machinery/door/airlock/maintenance/engi,/obj/machinery/atmospherics/pipe/simple/visible/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/visible/supply{dir = 4},/obj/machinery/door/firedoor/glass,/obj/structure/cable{tag = "icon-4-8"; icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/plating,/area/maintenance/lower/rnd) -"aHV" = (/obj/machinery/atmospherics/pipe/manifold/visible/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/manifold/visible/supply{dir = 4},/obj/structure/cable{tag = "icon-1-2"; icon_state = "1-2"},/obj/structure/cable{tag = "icon-2-8"; icon_state = "2-8"},/obj/structure/disposalpipe/segment{dir = 8; icon_state = "pipe-c"},/turf/simulated/floor/plating,/area/maintenance/lower/rnd) -"aHW" = (/turf/simulated/floor/holofloor/tiled/dark,/area/tether/surfacebase/atrium_two) -"aHX" = (/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (NORTH)"; icon_state = "borderfloor"; dir = 1},/turf/simulated/floor/tiled/techmaint,/area/tether/surfacebase/atrium_two) -"aHY" = (/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (NORTHEAST)"; icon_state = "borderfloor"; dir = 5},/obj/structure/extinguisher_cabinet{pixel_y = 30},/turf/simulated/floor/tiled/techmaint,/area/tether/surfacebase/atrium_two) -"aHZ" = (/obj/structure/sign/warning/caution{name = "\improper CAUTION - DANGEROUS EQUIPMENT AND DROPS"},/turf/simulated/wall,/area/tether/surfacebase/atrium_two) -"aIa" = (/obj/structure/railing,/obj/structure/railing{dir = 8},/turf/simulated/open,/area/tether/surfacebase/atrium_two) -"aIb" = (/obj/structure/railing,/turf/simulated/open,/area/tether/surfacebase/atrium_two) -"aIc" = (/obj/structure/railing{dir = 4},/obj/structure/railing,/turf/simulated/open,/area/tether/surfacebase/atrium_two) -"aId" = (/obj/structure/catwalk,/obj/machinery/atmospherics/pipe/simple/visible/supply,/obj/machinery/atmospherics/pipe/simple/visible/scrubbers,/obj/structure/cable{tag = "icon-1-2"; icon_state = "1-2"},/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled/techfloor,/area/maintenance/lower/bar) -"aIe" = (/obj/machinery/power/smes/buildable{charge = 0; RCon_tag = "Substation - Research"},/obj/structure/cable/green,/obj/structure/cable/green{d2 = 2; icon_state = "0-2"},/turf/simulated/floor,/area/maintenance/research) -"aIf" = (/obj/effect/floor_decal/industrial/warning{dir = 8},/obj/machinery/power/terminal{dir = 8},/obj/structure/cable,/turf/simulated/floor,/area/maintenance/research) -"aIg" = (/obj/machinery/power/apc{dir = 4; name = "east bump"; pixel_x = 28},/obj/structure/cable/green{d2 = 2; icon_state = "0-2"},/turf/simulated/floor,/area/maintenance/research) -"aIh" = (/obj/effect/decal/cleanable/dirt,/obj/machinery/atmospherics/pipe/simple/visible/supply,/obj/machinery/atmospherics/pipe/simple/visible/scrubbers,/obj/effect/floor_decal/industrial/warning/corner{dir = 4},/turf/simulated/floor/plating,/area/maintenance/lower/rnd) -"aIi" = (/obj/machinery/atmospherics/pipe/zpipe/up/supply{dir = 1},/obj/machinery/atmospherics/pipe/zpipe/up/scrubbers{dir = 1},/obj/structure/railing,/obj/structure/cable{tag = "icon-16-0"; icon_state = "16-0"},/obj/structure/cable,/obj/structure/cable{tag = "icon-0-2"; icon_state = "0-2"},/obj/structure/disposalpipe/up,/obj/effect/floor_decal/industrial/outline/yellow,/turf/simulated/floor/plating,/area/maintenance/lower/rnd) -"aIj" = (/obj/effect/floor_decal/borderfloor/corner{tag = "icon-borderfloorcorner (EAST)"; icon_state = "borderfloorcorner"; dir = 4},/turf/simulated/floor/tiled/techmaint,/area/tether/surfacebase/atrium_two) -"aIk" = (/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (NORTH)"; icon_state = "borderfloor"; dir = 1},/obj/item/device/radio/intercom{dir = 1; name = "Station Intercom (General)"; pixel_y = 21},/turf/simulated/floor/tiled/techmaint,/area/tether/surfacebase/atrium_two) -"aIl" = (/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (NORTH)"; icon_state = "borderfloor"; dir = 1},/obj/machinery/camera/network/northern_star,/turf/simulated/floor/tiled/techmaint,/area/tether/surfacebase/atrium_two) -"aIm" = (/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (NORTH)"; icon_state = "borderfloor"; dir = 1},/obj/machinery/status_display{pixel_y = 30},/turf/simulated/floor/tiled/techmaint,/area/tether/surfacebase/atrium_two) -"aIn" = (/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (NORTH)"; icon_state = "borderfloor"; dir = 1},/obj/machinery/firealarm{dir = 2; layer = 3.3; pixel_x = 0; pixel_y = 26},/turf/simulated/floor/tiled/techmaint,/area/tether/surfacebase/atrium_two) -"aIo" = (/obj/machinery/light/small{dir = 1},/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (NORTH)"; icon_state = "borderfloor"; dir = 1},/turf/simulated/floor/tiled/techmaint,/area/tether/surfacebase/atrium_two) -"aIp" = (/obj/effect/floor_decal/borderfloor/corner{tag = "icon-borderfloorcorner (NORTH)"; icon_state = "borderfloorcorner"; dir = 1},/turf/simulated/floor/tiled/techmaint,/area/tether/surfacebase/atrium_two) -"aIq" = (/obj/effect/floor_decal/borderfloor/corner{tag = "icon-borderfloorcorner (EAST)"; icon_state = "borderfloorcorner"; dir = 4},/obj/effect/floor_decal/corner/orange/bordercorner{tag = "icon-bordercolorcorner (EAST)"; icon_state = "bordercolorcorner"; dir = 4},/turf/simulated/floor/tiled/techmaint,/area/tether/surfacebase/atrium_two) -"aIr" = (/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (NORTH)"; icon_state = "borderfloor"; dir = 1},/obj/effect/floor_decal/corner/orange/border{tag = "icon-bordercolor (NORTH)"; icon_state = "bordercolor"; dir = 1},/turf/simulated/floor/tiled/techmaint,/area/tether/surfacebase/atrium_two) -"aIs" = (/obj/effect/floor_decal/borderfloor/corner{tag = "icon-borderfloorcorner (NORTH)"; icon_state = "borderfloorcorner"; dir = 1},/obj/effect/floor_decal/corner/orange/bordercorner{tag = "icon-bordercolorcorner (NORTH)"; icon_state = "bordercolorcorner"; dir = 1},/turf/simulated/floor/tiled/techmaint,/area/tether/surfacebase/atrium_two) -"aIt" = (/obj/machinery/door/firedoor/glass,/turf/simulated/floor/tiled/techfloor/grid,/area/tether/surfacebase/atrium_two) -"aIu" = (/obj/structure/catwalk,/obj/structure/extinguisher_cabinet{pixel_y = 30},/turf/simulated/floor/tiled/techfloor,/area/maintenance/lower/bar) -"aIv" = (/obj/structure/catwalk,/obj/machinery/alarm{frequency = 1441; pixel_y = 22},/turf/simulated/floor/tiled/techfloor,/area/maintenance/lower/bar) -"aIw" = (/obj/structure/catwalk,/obj/machinery/light/small{dir = 1},/turf/simulated/floor/tiled/techfloor,/area/maintenance/lower/bar) -"aIx" = (/obj/structure/catwalk,/obj/machinery/status_display{pixel_y = 30},/turf/simulated/floor/tiled/techfloor,/area/maintenance/lower/bar) -"aIy" = (/obj/machinery/door/firedoor/glass,/turf/simulated/floor/tiled/techfloor/grid,/area/maintenance/lower/bar) -"aIz" = (/obj/structure/railing{dir = 4},/obj/effect/floor_decal/techfloor{tag = "icon-techfloor_edges (WEST)"; icon_state = "techfloor_edges"; dir = 8},/obj/effect/decal/cleanable/dirt,/obj/machinery/atmospherics/pipe/simple/visible/purple{tag = "icon-intact (NORTH)"; icon_state = "intact"; dir = 1},/obj/structure/table/rack,/obj/random/maintenance/research,/obj/random/maintenance/clean,/obj/random/action_figure,/obj/random/cigarettes,/turf/simulated/floor/tiled/techfloor,/area/maintenance/asmaint2) -"aIA" = (/obj/structure/railing{dir = 8},/obj/effect/floor_decal/techfloor{tag = "icon-techfloor_edges (EAST)"; icon_state = "techfloor_edges"; dir = 4},/obj/structure/railing,/obj/effect/decal/cleanable/dirt,/obj/effect/floor_decal/rust,/turf/simulated/floor/tiled/techfloor,/area/maintenance/asmaint2) -"aIB" = (/obj/effect/decal/cleanable/dirt,/obj/effect/floor_decal/rust,/turf/simulated/floor/tiled/techfloor,/area/maintenance/lower/rnd) -"aIC" = (/obj/effect/floor_decal/rust,/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/tiled/techfloor,/area/maintenance/lower/rnd) -"aID" = (/obj/machinery/power/sensor{name = "Powernet Sensor - Research Subgrid"; name_tag = "Research Subgrid"},/obj/effect/floor_decal/industrial/warning{dir = 1},/obj/structure/cable/green,/obj/structure/cable/green{icon_state = "0-4"},/turf/simulated/floor,/area/maintenance/research) -"aIE" = (/obj/effect/floor_decal/industrial/warning/corner{dir = 1},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/camera/network/engineering{c_tag = "ENG - Pump Station"; dir = 1},/turf/simulated/floor,/area/maintenance/research) -"aIF" = (/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,/area/maintenance/research) -"aIG" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0},/obj/machinery/door/airlock/engineering{name = "Science Substation"; req_one_access = list(11,24,47)},/obj/machinery/door/firedoor,/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor,/area/maintenance/research) -"aIH" = (/obj/effect/decal/cleanable/dirt,/obj/machinery/atmospherics/pipe/manifold/visible/supply{dir = 8},/obj/machinery/atmospherics/pipe/manifold/visible/scrubbers{dir = 8},/obj/structure/cable/green{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/structure/disposalpipe/segment{dir = 4; icon_state = "pipe-c"},/turf/simulated/floor/plating,/area/maintenance/lower/rnd) -"aII" = (/obj/machinery/door/airlock/maintenance/engi,/obj/machinery/atmospherics/pipe/simple/visible/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/visible/scrubbers{dir = 4},/obj/machinery/door/firedoor/glass,/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/plating,/area/maintenance/lower/rnd) -"aIJ" = (/obj/machinery/atmospherics/pipe/simple/visible/supply{dir = 10},/obj/machinery/atmospherics/pipe/simple/visible/scrubbers{dir = 10},/obj/structure/cable{tag = "icon-1-2"; icon_state = "1-2"},/obj/structure/disposalpipe/junction,/turf/simulated/floor/plating,/area/maintenance/lower/rnd) -"aIK" = (/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 1},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 6},/turf/simulated/floor/tiled/techmaint,/area/tether/surfacebase/atrium_two) -"aIL" = (/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,/obj/machinery/atmospherics/pipe/manifold4w/hidden/supply,/turf/simulated/floor/tiled/techmaint,/area/tether/surfacebase/atrium_two) -"aIM" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/disposalpipe/segment{dir = 4; icon_state = "pipe-c"},/turf/simulated/floor/tiled/techmaint,/area/tether/surfacebase/atrium_two) -"aIN" = (/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/techmaint,/area/tether/surfacebase/atrium_two) -"aIO" = (/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 1},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 1},/obj/structure/cable{icon_state = "2-4"},/obj/structure/disposalpipe/junction{icon_state = "pipe-j1"; dir = 4},/turf/simulated/floor/tiled/techmaint,/area/tether/surfacebase/atrium_two) -"aIP" = (/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{tag = "icon-4-8"; icon_state = "4-8"},/turf/simulated/floor/tiled/techmaint,/area/tether/surfacebase/atrium_two) -"aIQ" = (/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{tag = "icon-4-8"; icon_state = "4-8"},/turf/simulated/floor/tiled/techmaint,/area/tether/surfacebase/atrium_two) -"aIR" = (/obj/machinery/door/airlock/multi_tile/metal/mait{dir = 1},/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/structure/cable{tag = "icon-4-8"; icon_state = "4-8"},/turf/simulated/floor/tiled/techfloor/grid,/area/tether/surfacebase/atrium_two) -"aIS" = (/obj/structure/catwalk,/obj/machinery/atmospherics/pipe/simple/visible/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/visible/supply{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{tag = "icon-4-8"; icon_state = "4-8"},/turf/simulated/floor/tiled/techfloor,/area/maintenance/lower/bar) -"aIT" = (/obj/structure/catwalk,/obj/machinery/atmospherics/pipe/simple/visible/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/visible/supply{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{tag = "icon-4-8"; icon_state = "4-8"},/obj/machinery/camera/network/northern_star{tag = "icon-camera (NORTH)"; icon_state = "camera"; dir = 1},/turf/simulated/floor/tiled/techfloor,/area/maintenance/lower/bar) -"aIU" = (/obj/machinery/door/airlock/multi_tile/metal/mait{dir = 1},/obj/machinery/atmospherics/pipe/simple/visible/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/visible/supply{dir = 4},/obj/machinery/door/firedoor/glass,/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{tag = "icon-4-8"; icon_state = "4-8"},/turf/simulated/floor/tiled/techfloor/grid,/area/maintenance/lower/bar) -"aIV" = (/obj/structure/catwalk,/obj/machinery/atmospherics/pipe/manifold/visible/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/manifold/visible/supply{dir = 4},/obj/structure/cable{tag = "icon-1-2"; icon_state = "1-2"},/obj/structure/disposalpipe/segment{dir = 8; icon_state = "pipe-c"},/obj/structure/cable{tag = "icon-2-8"; icon_state = "2-8"},/turf/simulated/floor/tiled/techfloor,/area/maintenance/lower/bar) -"aIW" = (/obj/structure/catwalk,/obj/effect/decal/cleanable/dirt,/obj/effect/floor_decal/rust,/turf/simulated/floor/tiled/techfloor,/area/maintenance/asmaint2) -"aIX" = (/obj/effect/floor_decal/techfloor{tag = "icon-techfloor_edges (EAST)"; icon_state = "techfloor_edges"; dir = 4},/obj/structure/catwalk,/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/tiled/techfloor,/area/maintenance/asmaint2) -"aIY" = (/obj/machinery/door/airlock/maintenance/common,/obj/machinery/door/firedoor/glass,/turf/simulated/floor/tiled/techfloor,/area/maintenance/lower/rnd) -"aIZ" = (/turf/simulated/wall,/area/rnd/lockers) -"aJa" = (/turf/simulated/wall,/area/rnd/research) -"aJb" = (/obj/machinery/door/airlock/maintenance/rnd{req_access = list(7)},/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/structure/disposalpipe/segment,/turf/simulated/floor/plating,/area/rnd/research) -"aJc" = (/turf/simulated/wall/r_wall,/area/rnd/research) -"aJd" = (/obj/machinery/atmospherics/pipe/simple/visible/supply,/obj/machinery/atmospherics/pipe/simple/visible/scrubbers,/obj/structure/cable{tag = "icon-1-2"; icon_state = "1-2"},/obj/structure/disposalpipe/segment,/mob/living/simple_animal/mouse,/turf/simulated/floor/plating,/area/maintenance/lower/rnd) -"aJe" = (/obj/effect/floor_decal/borderfloor/corner,/turf/simulated/floor/tiled/techmaint,/area/tether/surfacebase/atrium_two) -"aJf" = (/obj/machinery/light/small,/obj/effect/floor_decal/borderfloor,/turf/simulated/floor/tiled/techmaint,/area/tether/surfacebase/atrium_two) -"aJg" = (/obj/effect/floor_decal/borderfloor,/turf/simulated/floor/tiled/techmaint,/area/tether/surfacebase/atrium_two) -"aJh" = (/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/borderfloor/corner2{tag = "icon-borderfloorcorner2 (NORTHWEST)"; icon_state = "borderfloorcorner2"; dir = 9},/turf/simulated/floor/tiled/techmaint,/area/tether/surfacebase/atrium_two) -"aJi" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/tiled/techmaint,/area/tether/surfacebase/atrium_two) -"aJj" = (/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/borderfloor/corner2,/turf/simulated/floor/tiled/techmaint,/area/tether/surfacebase/atrium_two) -"aJk" = (/obj/effect/floor_decal/borderfloor,/obj/machinery/camera/network/northern_star{tag = "icon-camera (NORTH)"; icon_state = "camera"; dir = 1},/turf/simulated/floor/tiled/techmaint,/area/tether/surfacebase/atrium_two) -"aJl" = (/obj/effect/floor_decal/borderfloor,/obj/machinery/newscaster{pixel_x = 0; pixel_y = -30},/turf/simulated/floor/tiled/techmaint,/area/tether/surfacebase/atrium_two) -"aJm" = (/obj/effect/floor_decal/borderfloor,/obj/item/device/radio/intercom{name = "Station Intercom (General)"; pixel_y = -21},/turf/simulated/floor/tiled/techmaint,/area/tether/surfacebase/atrium_two) -"aJn" = (/obj/machinery/light/small,/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/borderfloor/corner2{tag = "icon-borderfloorcorner2 (NORTHWEST)"; icon_state = "borderfloorcorner2"; dir = 9},/turf/simulated/floor/tiled/techmaint,/area/tether/surfacebase/atrium_two) -"aJo" = (/obj/effect/floor_decal/industrial/warning/corner,/turf/simulated/floor/tiled/techmaint,/area/tether/surfacebase/atrium_two) -"aJp" = (/obj/effect/floor_decal/industrial/warning,/turf/simulated/floor/tiled/techmaint,/area/tether/surfacebase/atrium_two) -"aJq" = (/obj/effect/floor_decal/industrial/warning/corner{dir = 8},/turf/simulated/floor/tiled/techmaint,/area/tether/surfacebase/atrium_two) -"aJr" = (/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/borderfloor/corner2,/obj/machinery/camera/network/northern_star{tag = "icon-camera (NORTH)"; icon_state = "camera"; dir = 1},/turf/simulated/floor/tiled/techmaint,/area/tether/surfacebase/atrium_two) -"aJs" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0},/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled/techmaint,/area/tether/surfacebase/atrium_two) -"aJt" = (/obj/effect/floor_decal/borderfloor,/obj/machinery/light/small,/obj/effect/floor_decal/borderfloor/corner2,/turf/simulated/floor/tiled/techmaint,/area/tether/surfacebase/atrium_two) -"aJu" = (/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (SOUTHEAST)"; icon_state = "borderfloor"; dir = 6},/obj/effect/floor_decal/borderfloor/corner2{tag = "icon-borderfloorcorner2 (SOUTHEAST)"; icon_state = "borderfloorcorner2"; dir = 6},/obj/item/device/radio/intercom{dir = 4; name = "Station Intercom (General)"; pixel_x = 21},/turf/simulated/floor/tiled/techmaint,/area/tether/surfacebase/atrium_two) -"aJv" = (/obj/structure/catwalk,/obj/structure/cable{tag = "icon-1-2"; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/visible/scrubbers,/obj/machinery/atmospherics/pipe/simple/visible/supply,/turf/simulated/floor/tiled/techfloor,/area/maintenance/lower/bar) -"aJw" = (/obj/structure/railing{dir = 8},/obj/effect/floor_decal/techfloor{tag = "icon-techfloor_edges (EAST)"; icon_state = "techfloor_edges"; dir = 4},/obj/structure/railing{dir = 1},/obj/effect/decal/cleanable/dirt,/obj/effect/floor_decal/rust,/turf/simulated/floor/tiled/techfloor,/area/maintenance/asmaint2) -"aJx" = (/turf/simulated/wall,/area/rnd/workshop) -"aJy" = (/obj/machinery/autolathe{hacked = 1},/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (NORTHWEST)"; icon_state = "borderfloor"; dir = 9},/obj/effect/floor_decal/corner/mauve/border{tag = "icon-bordercolor (NORTHWEST)"; icon_state = "bordercolor"; dir = 9},/turf/simulated/floor/tiled,/area/rnd/research) -"aJz" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (NORTHEAST)"; icon_state = "borderfloor"; dir = 5},/obj/effect/floor_decal/corner/mauve/border{tag = "icon-bordercolor (NORTHEAST)"; icon_state = "bordercolor"; dir = 5},/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled,/area/rnd/research) -"aJA" = (/obj/machinery/atmospherics/pipe/simple/visible/supply,/obj/machinery/atmospherics/pipe/simple/visible/scrubbers,/obj/structure/cable{tag = "icon-1-2"; icon_state = "1-2"},/obj/structure/disposalpipe/segment,/turf/simulated/floor/plating,/area/maintenance/lower/rnd) -"aJB" = (/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (SOUTHEAST)"; icon_state = "borderfloor"; dir = 6},/obj/machinery/newscaster{pixel_x = 0; pixel_y = -30},/turf/simulated/floor/tiled/techmaint,/area/tether/surfacebase/atrium_two) -"aJC" = (/turf/simulated/wall,/area/engineering/lower/lobby) -"aJD" = (/obj/machinery/door/airlock/glass,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/door/firedoor/glass,/turf/simulated/floor/tiled,/area/engineering/lower/lobby) -"aJE" = (/obj/structure/grille,/obj/structure/window/reinforced{dir = 5; icon_state = "fwindow"},/obj/machinery/door/firedoor,/turf/simulated/floor/plating,/area/engineering/lower/lobby) -"aJF" = (/obj/machinery/door/airlock/glass,/obj/machinery/door/firedoor/glass,/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled,/area/engineering/lower/lobby) -"aJG" = (/turf/simulated/wall,/area/engineering/lower/breakroom) -"aJH" = (/obj/structure/grille,/obj/structure/railing{dir = 1},/turf/simulated/floor/tiled/techmaint,/area/tether/surfacebase/atrium_two) -"aJI" = (/turf/simulated/wall,/area/janitor) -"aJJ" = (/obj/machinery/door/firedoor/border_only,/obj/machinery/door/airlock{name = "Custodial Closet"; req_access = list(26)},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0},/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled,/area/janitor) -"aJK" = (/obj/structure/table/reinforced,/obj/machinery/door/window/eastleft{tag = "icon-left"; name = "Janitorial Desk"; icon_state = "left"; dir = 2},/obj/machinery/door/window/eastleft{tag = "icon-left (NORTH)"; name = "Janitorial Desk"; icon_state = "left"; dir = 1},/obj/machinery/door/blast/shutters{dir = 2; id = "janitor_blast"; layer = 3.3; name = "Janitorial Shutters"},/turf/simulated/floor/tiled,/area/janitor) -"aJL" = (/obj/effect/floor_decal/corner_techfloor_grid{tag = "icon-corner_techfloor_grid (NORTHWEST)"; icon_state = "corner_techfloor_grid"; dir = 9},/obj/effect/floor_decal/corner_techfloor_grid{tag = "icon-corner_techfloor_grid (NORTHEAST)"; icon_state = "corner_techfloor_grid"; dir = 5},/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/tiled/techfloor,/area/maintenance/lower/bar) -"aJM" = (/obj/effect/floor_decal/rust,/obj/structure/railing{dir = 4},/obj/effect/floor_decal/corner_techfloor_grid{tag = "icon-corner_techfloor_grid (NORTHEAST)"; icon_state = "corner_techfloor_grid"; dir = 5},/turf/simulated/floor/tiled/techfloor,/area/maintenance/lower/bar) -"aJN" = (/obj/effect/floor_decal/rust,/obj/structure/catwalk,/obj/structure/closet/crate,/obj/random/maintenance/research,/obj/random/maintenance/clean,/obj/random/maintenance/clean,/obj/item/clothing/mask/gas,/obj/random/toolbox,/obj/random/maintenance/medical,/turf/simulated/floor/tiled/techfloor,/area/maintenance/lower/bar) -"aJO" = (/obj/structure/railing{dir = 4},/obj/effect/floor_decal/techfloor{tag = "icon-techfloor_edges (WEST)"; icon_state = "techfloor_edges"; dir = 8},/obj/effect/decal/cleanable/dirt,/obj/machinery/atmospherics/pipe/simple/visible/purple{tag = "icon-intact (NORTH)"; icon_state = "intact"; dir = 1},/obj/random/junk,/turf/simulated/floor/tiled/techfloor,/area/maintenance/asmaint2) -"aJP" = (/obj/effect/floor_decal/techfloor{tag = "icon-techfloor_edges (NORTHWEST)"; icon_state = "techfloor_edges"; dir = 9},/obj/structure/table/steel,/obj/item/weapon/storage/bag/circuits/basic,/turf/simulated/floor/tiled/techfloor,/area/rnd/workshop) -"aJQ" = (/obj/effect/floor_decal/techfloor{tag = "icon-techfloor_edges (NORTH)"; icon_state = "techfloor_edges"; dir = 1},/obj/structure/table/steel,/obj/machinery/camera/network/research,/turf/simulated/floor/tiled/techfloor,/area/rnd/workshop) -"aJR" = (/obj/effect/floor_decal/techfloor{tag = "icon-techfloor_edges (NORTHEAST)"; icon_state = "techfloor_edges"; dir = 5},/obj/structure/table/steel,/obj/item/stack/material/glass{amount = 50; pixel_x = 3; pixel_y = 3},/turf/simulated/floor/tiled/techfloor,/area/rnd/workshop) -"aJS" = (/obj/structure/closet/secure_closet/scientist,/obj/effect/floor_decal/industrial/outline,/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (NORTHWEST)"; icon_state = "borderfloor"; dir = 9},/obj/effect/floor_decal/corner/mauve/border{tag = "icon-bordercolor (NORTHWEST)"; icon_state = "bordercolor"; dir = 9},/turf/simulated/floor/tiled,/area/rnd/lockers) -"aJT" = (/obj/structure/closet/secure_closet/scientist,/obj/effect/floor_decal/industrial/outline,/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (NORTH)"; icon_state = "borderfloor"; dir = 1},/obj/effect/floor_decal/corner/mauve/border{tag = "icon-bordercolor (NORTH)"; icon_state = "bordercolor"; dir = 1},/obj/structure/extinguisher_cabinet{pixel_y = 30},/turf/simulated/floor/tiled,/area/rnd/lockers) -"aJU" = (/obj/structure/closet/secure_closet/scientist,/obj/effect/floor_decal/industrial/outline,/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (NORTH)"; icon_state = "borderfloor"; dir = 1},/obj/effect/floor_decal/corner/mauve/border{tag = "icon-bordercolor (NORTH)"; icon_state = "bordercolor"; dir = 1},/turf/simulated/floor/tiled,/area/rnd/lockers) -"aJV" = (/obj/structure/table/standard,/obj/machinery/recharger{pixel_y = 0},/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (NORTH)"; icon_state = "borderfloor"; dir = 1},/obj/effect/floor_decal/corner/mauve/border{tag = "icon-bordercolor (NORTH)"; icon_state = "bordercolor"; dir = 1},/obj/machinery/atmospherics/unary/vent_scrubber/on,/obj/machinery/status_display{pixel_y = 30},/turf/simulated/floor/tiled,/area/rnd/lockers) -"aJW" = (/obj/structure/table/standard,/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (NORTH)"; icon_state = "borderfloor"; dir = 1},/obj/effect/floor_decal/corner/mauve/border{tag = "icon-bordercolor (NORTH)"; icon_state = "bordercolor"; dir = 1},/obj/machinery/atmospherics/unary/vent_pump/on,/obj/machinery/firealarm{dir = 2; layer = 3.3; pixel_x = 0; pixel_y = 26},/turf/simulated/floor/tiled,/area/rnd/lockers) -"aJX" = (/obj/structure/closet/secure_closet/scientist,/obj/effect/floor_decal/industrial/outline,/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (NORTH)"; icon_state = "borderfloor"; dir = 1},/obj/effect/floor_decal/corner/mauve/border{tag = "icon-bordercolor (NORTH)"; icon_state = "bordercolor"; dir = 1},/obj/machinery/camera/network/research,/turf/simulated/floor/tiled,/area/rnd/lockers) -"aJY" = (/obj/structure/closet/secure_closet/scientist,/obj/effect/floor_decal/industrial/outline,/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (NORTHEAST)"; icon_state = "borderfloor"; dir = 5},/obj/effect/floor_decal/corner/mauve/border{tag = "icon-bordercolor (NORTHEAST)"; icon_state = "bordercolor"; dir = 5},/turf/simulated/floor/tiled,/area/rnd/lockers) -"aJZ" = (/obj/structure/table/standard,/obj/item/weapon/storage/belt/utility,/obj/item/clothing/gloves/sterile/latex,/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (WEST)"; icon_state = "borderfloor"; dir = 8},/obj/effect/floor_decal/corner/mauve/border{tag = "icon-bordercolor (WEST)"; icon_state = "bordercolor"; dir = 8},/turf/simulated/floor/tiled,/area/rnd/research) -"aKa" = (/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (EAST)"; icon_state = "borderfloor"; dir = 4},/obj/effect/floor_decal/corner/mauve/border{tag = "icon-bordercolor (EAST)"; icon_state = "bordercolor"; dir = 4},/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"},/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled,/area/rnd/research) -"aKb" = (/obj/machinery/atmospherics/pipe/simple/visible/supply{dir = 5},/obj/machinery/atmospherics/pipe/simple/visible/scrubbers{dir = 5},/obj/structure/cable{tag = "icon-1-4"; icon_state = "1-4"},/obj/structure/disposalpipe/segment{dir = 1; icon_state = "pipe-c"},/turf/simulated/floor/plating,/area/maintenance/lower/rnd) -"aKc" = (/obj/machinery/atmospherics/pipe/simple/visible/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/visible/scrubbers{dir = 4},/obj/structure/cable{tag = "icon-4-8"; icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/plating,/area/maintenance/lower/rnd) -"aKd" = (/obj/machinery/atmospherics/pipe/simple/visible/supply{dir = 10},/obj/machinery/atmospherics/pipe/simple/visible/scrubbers{dir = 10},/obj/structure/cable{tag = "icon-2-8"; icon_state = "2-8"},/obj/structure/disposalpipe/segment{dir = 2; icon_state = "pipe-c"},/turf/simulated/floor/plating,/area/maintenance/lower/rnd) -"aKe" = (/turf/simulated/floor/plating,/area/tether/surfacebase/atrium_two) -"aKf" = (/obj/machinery/atmospherics/portables_connector{dir = 4},/obj/effect/floor_decal/industrial/outline,/obj/machinery/portable_atmospherics/powered/scrubber,/obj/structure/extinguisher_cabinet{pixel_y = 30},/turf/simulated/floor/tiled/techfloor,/area/engineering/lower/lobby) -"aKg" = (/obj/machinery/atmospherics/pipe/simple/hidden/yellow{dir = 10},/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (NORTH)"; icon_state = "borderfloor"; dir = 1},/obj/effect/floor_decal/corner/yellow/border{tag = "icon-bordercolor (NORTH)"; icon_state = "bordercolor"; dir = 1},/obj/effect/floor_decal/borderfloor/corner2{tag = "icon-borderfloorcorner2 (NORTH)"; icon_state = "borderfloorcorner2"; dir = 1},/obj/effect/floor_decal/corner/yellow/bordercorner2{tag = "icon-bordercolorcorner2 (NORTH)"; icon_state = "bordercolorcorner2"; dir = 1},/obj/machinery/firealarm{dir = 2; layer = 3.3; pixel_x = 0; pixel_y = 26},/turf/simulated/floor/tiled,/area/engineering/lower/lobby) -"aKh" = (/obj/effect/floor_decal/steeldecal/steel_decals10{tag = "icon-steel_decals10 (NORTH)"; icon_state = "steel_decals10"; dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals10{tag = "icon-steel_decals10 (EAST)"; icon_state = "steel_decals10"; dir = 4},/obj/effect/decal/cleanable/dirt,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/tiled,/area/engineering/lower/lobby) -"aKi" = (/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (NORTH)"; icon_state = "borderfloor"; dir = 1},/obj/effect/floor_decal/corner/yellow/border{tag = "icon-bordercolor (NORTH)"; icon_state = "bordercolor"; dir = 1},/obj/effect/floor_decal/borderfloor/corner2{tag = "icon-borderfloorcorner2 (EAST)"; icon_state = "borderfloorcorner2"; dir = 4},/obj/effect/floor_decal/borderfloor/corner2{tag = "icon-borderfloorcorner2 (NORTH)"; icon_state = "borderfloorcorner2"; dir = 1},/obj/effect/floor_decal/corner/yellow/bordercorner2{tag = "icon-bordercolorcorner2 (EAST)"; icon_state = "bordercolorcorner2"; dir = 4},/obj/effect/floor_decal/corner/yellow/bordercorner2{tag = "icon-bordercolorcorner2 (NORTH)"; icon_state = "bordercolorcorner2"; dir = 1},/turf/simulated/floor/tiled,/area/engineering/lower/lobby) -"aKj" = (/obj/effect/floor_decal/steeldecal/steel_decals10{tag = "icon-steel_decals10 (EAST)"; icon_state = "steel_decals10"; dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals10{tag = "icon-steel_decals10 (NORTH)"; icon_state = "steel_decals10"; dir = 1},/obj/effect/decal/cleanable/dirt,/obj/structure/disposalpipe/sortjunction{dir = 1; icon_state = "pipe-j1s"; name = "Atmospherics"; sortType = "Atmospherics"},/turf/simulated/floor/tiled,/area/engineering/lower/lobby) -"aKk" = (/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (NORTH)"; icon_state = "borderfloor"; dir = 1},/obj/effect/floor_decal/corner/yellow/border{tag = "icon-bordercolor (NORTH)"; icon_state = "bordercolor"; dir = 1},/obj/effect/floor_decal/borderfloor/corner2{tag = "icon-borderfloorcorner2 (EAST)"; icon_state = "borderfloorcorner2"; dir = 4},/obj/effect/floor_decal/corner/yellow/bordercorner2{tag = "icon-bordercolorcorner2 (EAST)"; icon_state = "bordercolorcorner2"; dir = 4},/obj/machinery/alarm{frequency = 1441; pixel_y = 22},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled,/area/engineering/lower/lobby) -"aKl" = (/obj/structure/bed/chair{dir = 8},/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (NORTHEAST)"; icon_state = "borderfloor"; dir = 5},/obj/effect/floor_decal/corner/yellow/border{tag = "icon-bordercolor (NORTHEAST)"; icon_state = "bordercolor"; dir = 5},/obj/machinery/computer/guestpass{pixel_x = 0; pixel_y = 28},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled,/area/engineering/lower/lobby) -"aKm" = (/obj/structure/grille,/obj/structure/window/reinforced{dir = 5; icon_state = "fwindow"},/obj/machinery/door/firedoor,/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/plating,/area/engineering/lower/breakroom) -"aKn" = (/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (NORTHWEST)"; icon_state = "borderfloor"; dir = 9},/obj/effect/floor_decal/corner/yellow/border{tag = "icon-bordercolor (NORTHWEST)"; icon_state = "bordercolor"; dir = 9},/obj/item/device/radio/intercom{dir = 1; name = "Station Intercom (General)"; pixel_y = 21},/obj/machinery/disposal,/obj/structure/disposalpipe/trunk{dir = 8},/turf/simulated/floor/tiled,/area/engineering/lower/breakroom) -"aKo" = (/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (NORTH)"; icon_state = "borderfloor"; dir = 1},/obj/effect/floor_decal/corner/yellow/border{tag = "icon-bordercolor (NORTH)"; icon_state = "bordercolor"; dir = 1},/obj/machinery/alarm{frequency = 1441; pixel_y = 22},/turf/simulated/floor/tiled,/area/engineering/lower/breakroom) -"aKp" = (/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (NORTH)"; icon_state = "borderfloor"; dir = 1},/obj/effect/floor_decal/corner/yellow/border{tag = "icon-bordercolor (NORTH)"; icon_state = "bordercolor"; dir = 1},/obj/machinery/light_switch{pixel_y = 25},/turf/simulated/floor/tiled,/area/engineering/lower/breakroom) -"aKq" = (/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (NORTH)"; icon_state = "borderfloor"; dir = 1},/obj/effect/floor_decal/corner/yellow/border{tag = "icon-bordercolor (NORTH)"; icon_state = "bordercolor"; dir = 1},/obj/machinery/firealarm{dir = 2; layer = 3.3; pixel_x = 0; pixel_y = 26},/turf/simulated/floor/tiled,/area/engineering/lower/breakroom) -"aKr" = (/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (NORTH)"; icon_state = "borderfloor"; dir = 1},/obj/effect/floor_decal/corner/yellow/border{tag = "icon-bordercolor (NORTH)"; icon_state = "bordercolor"; dir = 1},/obj/machinery/camera/network/engineering,/turf/simulated/floor/tiled,/area/engineering/lower/breakroom) -"aKs" = (/obj/machinery/vending/snack,/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (NORTHEAST)"; icon_state = "borderfloor"; dir = 5},/obj/effect/floor_decal/corner/yellow/border{tag = "icon-bordercolor (NORTHEAST)"; icon_state = "bordercolor"; dir = 5},/turf/simulated/floor/tiled,/area/engineering/lower/breakroom) -"aKt" = (/obj/item/weapon/grenade/chem_grenade/cleaner,/obj/item/weapon/grenade/chem_grenade/cleaner,/obj/item/weapon/grenade/chem_grenade/cleaner,/obj/machinery/requests_console{department = "Janitorial"; departmentType = 1; pixel_y = 28},/obj/item/weapon/reagent_containers/spray/cleaner,/obj/structure/table/steel,/obj/item/weapon/storage/box/mousetraps,/obj/item/weapon/storage/box/lights/mixed,/obj/item/weapon/storage/box/lights/mixed,/obj/item/weapon/reagent_containers/spray/cleaner,/obj/machinery/atmospherics/unary/vent_pump/on{dir = 4},/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (NORTHWEST)"; icon_state = "borderfloor"; dir = 9},/obj/effect/floor_decal/corner/purple/border{tag = "icon-bordercolor (NORTHWEST)"; icon_state = "bordercolor"; dir = 9},/turf/simulated/floor/tiled,/area/janitor) -"aKu" = (/obj/structure/table/steel,/obj/item/weapon/paper_bin{pixel_x = -3; pixel_y = 7},/obj/item/weapon/pen,/obj/machinery/newscaster{pixel_y = 32},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (NORTH)"; icon_state = "borderfloor"; dir = 1},/obj/effect/floor_decal/corner/purple/border{tag = "icon-bordercolor (NORTH)"; icon_state = "bordercolor"; dir = 1},/turf/simulated/floor/tiled,/area/janitor) -"aKv" = (/obj/machinery/power/apc{dir = 1; name = "north bump"; pixel_x = 0; pixel_y = 24},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/cable{icon_state = "0-4"; d2 = 4},/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (NORTH)"; icon_state = "borderfloor"; dir = 1},/obj/effect/floor_decal/corner/purple/border{tag = "icon-bordercolor (NORTH)"; icon_state = "bordercolor"; dir = 1},/turf/simulated/floor/tiled,/area/janitor) -"aKw" = (/obj/machinery/status_display{pixel_x = 0; pixel_y = 32},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (NORTH)"; icon_state = "borderfloor"; dir = 1},/obj/effect/floor_decal/corner/purple/border{tag = "icon-bordercolor (NORTH)"; icon_state = "bordercolor"; dir = 1},/obj/effect/floor_decal/borderfloor/corner2{tag = "icon-borderfloorcorner2 (NORTH)"; icon_state = "borderfloorcorner2"; dir = 1},/obj/effect/floor_decal/corner/purple/bordercorner2{tag = "icon-bordercolorcorner2 (NORTH)"; icon_state = "bordercolorcorner2"; dir = 1},/turf/simulated/floor/tiled,/area/janitor) -"aKx" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 9},/obj/structure/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled,/area/janitor) -"aKy" = (/obj/machinery/alarm{pixel_y = 22},/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (NORTH)"; icon_state = "borderfloor"; dir = 1},/obj/effect/floor_decal/corner/purple/border{tag = "icon-bordercolor (NORTH)"; icon_state = "bordercolor"; dir = 1},/obj/effect/floor_decal/borderfloor/corner2{tag = "icon-borderfloorcorner2 (EAST)"; icon_state = "borderfloorcorner2"; dir = 4},/obj/effect/floor_decal/corner/purple/bordercorner2{tag = "icon-bordercolorcorner2 (EAST)"; icon_state = "bordercolorcorner2"; dir = 4},/turf/simulated/floor/tiled,/area/janitor) -"aKz" = (/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (NORTH)"; icon_state = "borderfloor"; dir = 1},/obj/effect/floor_decal/corner/purple/border{tag = "icon-bordercolor (NORTH)"; icon_state = "bordercolor"; dir = 1},/turf/simulated/floor/tiled,/area/janitor) -"aKA" = (/obj/structure/extinguisher_cabinet{pixel_x = 25; pixel_y = 0},/obj/machinery/light_switch{pixel_x = 34; pixel_y = 1},/obj/machinery/button/remote/blast_door{id = "chemwindow"; name = "Privacy Shutters"; pixel_x = 0; pixel_y = 24; pixel_z = 0},/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (NORTHEAST)"; icon_state = "borderfloor"; dir = 5},/obj/effect/floor_decal/corner/purple/border{tag = "icon-bordercolor (NORTHEAST)"; icon_state = "bordercolor"; dir = 5},/turf/simulated/floor/tiled,/area/janitor) -"aKB" = (/obj/effect/floor_decal/corner_techfloor_grid{tag = "icon-corner_techfloor_grid (NORTHWEST)"; icon_state = "corner_techfloor_grid"; dir = 9},/obj/effect/decal/cleanable/dirt,/obj/machinery/portable_atmospherics/hydroponics,/turf/simulated/floor/tiled/techfloor,/area/maintenance/lower/bar) -"aKC" = (/obj/structure/railing{dir = 4},/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/tiled/techfloor,/area/maintenance/lower/bar) -"aKD" = (/obj/machinery/door/airlock/maintenance/common,/turf/simulated/floor,/area/maintenance/lower/bar) -"aKE" = (/obj/effect/floor_decal/techfloor{tag = "icon-techfloor_edges (WEST)"; icon_state = "techfloor_edges"; dir = 8},/obj/effect/floor_decal/rust,/turf/simulated/floor/tiled/techfloor,/area/maintenance/asmaint2) -"aKF" = (/obj/structure/catwalk,/obj/effect/decal/cleanable/dirt,/obj/random/tool,/turf/simulated/floor/tiled/techfloor,/area/maintenance/asmaint2) -"aKG" = (/obj/effect/floor_decal/techfloor{tag = "icon-techfloor_edges (WEST)"; icon_state = "techfloor_edges"; dir = 8},/obj/structure/table/steel,/obj/item/device/integrated_electronics/wirer{pixel_x = 5; pixel_y = 0},/obj/item/device/integrated_electronics/debugger{pixel_x = -5; pixel_y = 0},/obj/machinery/newscaster{pixel_x = -25},/turf/simulated/floor/tiled/techfloor,/area/rnd/workshop) -"aKH" = (/obj/structure/bed/chair/office/dark{dir = 1},/turf/simulated/floor/tiled/techfloor,/area/rnd/workshop) -"aKI" = (/obj/effect/floor_decal/techfloor{tag = "icon-techfloor_edges (EAST)"; icon_state = "techfloor_edges"; dir = 4},/obj/structure/table/steel,/obj/item/device/electronic_assembly/large{pixel_y = 6},/turf/simulated/floor/tiled/techfloor,/area/rnd/workshop) -"aKJ" = (/obj/machinery/light{icon_state = "tube1"; dir = 8},/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (WEST)"; icon_state = "borderfloor"; dir = 8},/obj/effect/floor_decal/corner/mauve/border{tag = "icon-bordercolor (WEST)"; icon_state = "bordercolor"; dir = 8},/obj/machinery/computer/guestpass{dir = 4; pixel_x = -28; pixel_y = 0},/turf/simulated/floor/tiled,/area/rnd/lockers) -"aKK" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 6},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 6},/turf/simulated/floor/tiled,/area/rnd/lockers) -"aKL" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled,/area/rnd/lockers) -"aKM" = (/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled,/area/rnd/lockers) -"aKN" = (/obj/machinery/atmospherics/pipe/manifold/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/turf/simulated/floor/tiled,/area/rnd/lockers) -"aKO" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 10},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 10},/turf/simulated/floor/tiled,/area/rnd/lockers) -"aKP" = (/obj/machinery/light{icon_state = "tube1"; dir = 4},/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (EAST)"; icon_state = "borderfloor"; dir = 4},/obj/effect/floor_decal/corner/mauve/border{tag = "icon-bordercolor (EAST)"; icon_state = "bordercolor"; dir = 4},/turf/simulated/floor/tiled,/area/rnd/lockers) -"aKQ" = (/obj/structure/table/standard,/obj/item/weapon/stock_parts/manipulator,/obj/item/weapon/stock_parts/capacitor,/obj/item/weapon/stock_parts/capacitor,/obj/item/weapon/stock_parts/manipulator,/obj/item/weapon/stock_parts/micro_laser,/obj/item/weapon/stock_parts/micro_laser,/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (WEST)"; icon_state = "borderfloor"; dir = 8},/obj/effect/floor_decal/corner/mauve/border{tag = "icon-bordercolor (WEST)"; icon_state = "bordercolor"; dir = 8},/turf/simulated/floor/tiled,/area/rnd/research) -"aKR" = (/obj/machinery/atmospherics/pipe/simple/visible/scrubbers,/obj/machinery/atmospherics/pipe/simple/visible/supply,/obj/structure/cable{tag = "icon-1-2"; icon_state = "1-2"},/obj/structure/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/structure/disposalpipe/segment,/obj/effect/floor_decal/industrial/warning/corner,/turf/simulated/floor/plating,/area/maintenance/lower/rnd) -"aKS" = (/obj/structure/cable{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/effect/floor_decal/industrial/warning,/turf/simulated/floor/plating,/area/maintenance/lower/rnd) -"aKT" = (/obj/machinery/atmospherics/portables_connector{dir = 4},/obj/effect/floor_decal/industrial/outline,/obj/machinery/portable_atmospherics/powered/scrubber,/turf/simulated/floor/tiled/techfloor,/area/engineering/lower/lobby) -"aKU" = (/obj/machinery/atmospherics/pipe/manifold/hidden/yellow{tag = "icon-map (EAST)"; icon_state = "map"; dir = 4},/turf/simulated/floor/tiled,/area/engineering/lower/lobby) -"aKV" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 8},/turf/simulated/floor/tiled,/area/engineering/lower/lobby) -"aKW" = (/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 8},/turf/simulated/floor/tiled,/area/engineering/lower/lobby) -"aKX" = (/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled,/area/engineering/lower/lobby) -"aKY" = (/turf/simulated/floor/tiled,/area/engineering/lower/lobby) -"aKZ" = (/obj/structure/bed/chair{dir = 8},/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (EAST)"; icon_state = "borderfloor"; dir = 4},/obj/effect/floor_decal/corner/yellow/border{tag = "icon-bordercolor (EAST)"; icon_state = "bordercolor"; dir = 4},/turf/simulated/floor/tiled,/area/engineering/lower/lobby) -"aLa" = (/obj/structure/grille,/obj/structure/window/reinforced{dir = 5; icon_state = "fwindow"},/obj/machinery/door/firedoor,/turf/simulated/floor/plating,/area/engineering/lower/breakroom) -"aLb" = (/turf/simulated/floor/carpet,/area/engineering/lower/breakroom) -"aLc" = (/obj/structure/bed/chair,/turf/simulated/floor/carpet,/area/engineering/lower/breakroom) -"aLd" = (/turf/simulated/floor/tiled,/area/engineering/lower/breakroom) -"aLe" = (/obj/machinery/vending/cola,/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (EAST)"; icon_state = "borderfloor"; dir = 4},/obj/effect/floor_decal/corner/yellow/border{tag = "icon-bordercolor (EAST)"; icon_state = "bordercolor"; dir = 4},/turf/simulated/floor/tiled,/area/engineering/lower/breakroom) -"aLf" = (/obj/item/device/radio/intercom{dir = 8; name = "Station Intercom (General)"; pixel_x = -21},/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (WEST)"; icon_state = "borderfloor"; dir = 8},/obj/effect/floor_decal/corner/purple/border{tag = "icon-bordercolor (WEST)"; icon_state = "bordercolor"; dir = 8},/obj/item/weapon/stool/padded,/obj/effect/landmark/start{name = "Janitor"},/turf/simulated/floor/tiled,/area/janitor) -"aLg" = (/obj/item/weapon/stool/padded,/obj/effect/landmark/start{name = "Janitor"},/turf/simulated/floor/tiled,/area/janitor) -"aLh" = (/turf/simulated/floor/tiled,/area/janitor) -"aLi" = (/obj/machinery/hologram/holopad,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled,/area/janitor) -"aLj" = (/obj/structure/janitorialcart,/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (EAST)"; icon_state = "borderfloor"; dir = 4},/obj/effect/floor_decal/corner/purple/border{tag = "icon-bordercolor (EAST)"; icon_state = "bordercolor"; dir = 4},/turf/simulated/floor/tiled,/area/janitor) -"aLk" = (/obj/effect/floor_decal/corner_techfloor_grid{tag = "icon-corner_techfloor_grid (NORTHWEST)"; icon_state = "corner_techfloor_grid"; dir = 9},/turf/simulated/floor/tiled/techfloor,/area/maintenance/lower/bar) -"aLl" = (/obj/effect/floor_decal/techfloor{tag = "icon-techfloor_edges (WEST)"; icon_state = "techfloor_edges"; dir = 8},/obj/item/device/radio/intercom{dir = 8; name = "Station Intercom (General)"; pixel_x = -28},/turf/simulated/floor/tiled/techfloor,/area/rnd/workshop) -"aLm" = (/obj/machinery/atmospherics/unary/vent_pump/on,/turf/simulated/floor/tiled/techfloor,/area/rnd/workshop) -"aLn" = (/obj/effect/floor_decal/techfloor{tag = "icon-techfloor_edges (EAST)"; icon_state = "techfloor_edges"; dir = 4},/obj/machinery/firealarm{dir = 4; pixel_x = 24},/turf/simulated/floor/tiled/techfloor,/area/rnd/workshop) -"aLo" = (/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (WEST)"; icon_state = "borderfloor"; dir = 8},/obj/effect/floor_decal/corner/mauve/border{tag = "icon-bordercolor (WEST)"; icon_state = "bordercolor"; dir = 8},/obj/effect/floor_decal/borderfloor/corner2{tag = "icon-borderfloorcorner2 (SOUTHWEST)"; icon_state = "borderfloorcorner2"; dir = 10},/obj/effect/floor_decal/corner/mauve/bordercorner2{tag = "icon-bordercolorcorner2 (SOUTHWEST)"; icon_state = "bordercolorcorner2"; dir = 10},/turf/simulated/floor/tiled,/area/rnd/lockers) -"aLp" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/tiled,/area/rnd/lockers) -"aLq" = (/turf/simulated/floor/tiled,/area/rnd/lockers) -"aLr" = (/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (EAST)"; icon_state = "borderfloor"; dir = 4},/obj/effect/floor_decal/corner/mauve/border{tag = "icon-bordercolor (EAST)"; icon_state = "bordercolor"; dir = 4},/obj/effect/floor_decal/borderfloor/corner2{tag = "icon-borderfloorcorner2 (NORTHEAST)"; icon_state = "borderfloorcorner2"; dir = 5},/obj/effect/floor_decal/corner/mauve/bordercorner2{tag = "icon-bordercolorcorner2 (NORTHEAST)"; icon_state = "bordercolorcorner2"; dir = 5},/turf/simulated/floor/tiled,/area/rnd/lockers) -"aLs" = (/obj/structure/table/standard,/obj/item/stack/cable_coil,/obj/item/stack/cable_coil{pixel_x = 3; pixel_y = 3},/obj/item/weapon/stock_parts/scanning_module{pixel_x = 2; pixel_y = 3},/obj/item/weapon/stock_parts/scanning_module,/obj/item/clothing/glasses/omnihud/rnd,/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (WEST)"; icon_state = "borderfloor"; dir = 8},/obj/effect/floor_decal/corner/mauve/border{tag = "icon-bordercolor (WEST)"; icon_state = "bordercolor"; dir = 8},/obj/effect/floor_decal/borderfloor/corner2{tag = "icon-borderfloorcorner2 (SOUTHWEST)"; icon_state = "borderfloorcorner2"; dir = 10},/obj/effect/floor_decal/corner/mauve/bordercorner2{tag = "icon-bordercolorcorner2 (SOUTHWEST)"; icon_state = "bordercolorcorner2"; dir = 10},/obj/machinery/newscaster{pixel_x = -25},/turf/simulated/floor/tiled,/area/rnd/research) -"aLt" = (/obj/effect/floor_decal/borderfloor/corner{tag = "icon-borderfloorcorner (EAST)"; icon_state = "borderfloorcorner"; dir = 4},/obj/effect/floor_decal/corner/mauve/bordercorner{tag = "icon-bordercolorcorner (EAST)"; icon_state = "bordercolorcorner"; dir = 4},/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"},/obj/structure/cable/green{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled,/area/rnd/research) -"aLu" = (/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (NORTH)"; icon_state = "borderfloor"; dir = 1},/obj/effect/floor_decal/corner/mauve/border{tag = "icon-bordercolor (NORTH)"; icon_state = "bordercolor"; dir = 1},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/light_switch{pixel_y = 25},/turf/simulated/floor/tiled,/area/rnd/research) -"aLv" = (/obj/structure/table/standard,/obj/item/weapon/storage/toolbox/mechanical{pixel_x = 2; pixel_y = 3},/obj/item/weapon/storage/toolbox/mechanical{pixel_x = -2; pixel_y = -1},/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (NORTH)"; icon_state = "borderfloor"; dir = 1},/obj/effect/floor_decal/corner/mauve/border{tag = "icon-bordercolor (NORTH)"; icon_state = "bordercolor"; dir = 1},/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,/area/rnd/research) -"aLw" = (/obj/structure/table/standard{name = "plastic table frame"},/obj/item/stack/material/glass{amount = 50; pixel_x = 3; pixel_y = 3},/obj/item/stack/material/steel{amount = 50},/obj/item/clothing/glasses/welding,/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (NORTH)"; icon_state = "borderfloor"; dir = 1},/obj/effect/floor_decal/corner/mauve/border{tag = "icon-bordercolor (NORTH)"; icon_state = "bordercolor"; dir = 1},/obj/machinery/camera/network/research,/turf/simulated/floor/tiled,/area/rnd/research) -"aLx" = (/obj/structure/table/standard,/obj/item/weapon/hand_labeler,/obj/item/weapon/pen,/obj/item/weapon/packageWrap,/obj/item/weapon/packageWrap,/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (NORTH)"; icon_state = "borderfloor"; dir = 1},/obj/effect/floor_decal/corner/mauve/border{tag = "icon-bordercolor (NORTH)"; icon_state = "bordercolor"; dir = 1},/obj/machinery/firealarm{dir = 2; layer = 3.3; pixel_x = 0; pixel_y = 26},/turf/simulated/floor/tiled,/area/rnd/research) -"aLy" = (/obj/item/weapon/stock_parts/console_screen,/obj/structure/table/standard,/obj/item/weapon/stock_parts/console_screen,/obj/item/weapon/stock_parts/console_screen,/obj/item/weapon/stock_parts/matter_bin,/obj/item/weapon/stock_parts/matter_bin,/obj/machinery/recharger{pixel_y = 0},/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (NORTHEAST)"; icon_state = "borderfloor"; dir = 5},/obj/effect/floor_decal/corner/mauve/border{tag = "icon-bordercolor (NORTHEAST)"; icon_state = "bordercolor"; dir = 5},/turf/simulated/floor/tiled,/area/rnd/research) -"aLz" = (/obj/machinery/atmospherics/pipe/simple/visible/scrubbers,/obj/machinery/atmospherics/pipe/simple/visible/supply,/obj/structure/cable{tag = "icon-1-2"; icon_state = "1-2"},/obj/structure/disposalpipe/segment,/obj/effect/floor_decal/industrial/warning{dir = 4},/turf/simulated/floor/plating,/area/maintenance/lower/rnd) -"aLA" = (/obj/machinery/power/breakerbox/activated{RCon_tag = "Atmos Substation Bypass"},/turf/simulated/floor/plating,/area/maintenance/lower/rnd) -"aLB" = (/obj/structure/sign/warning/high_voltage,/turf/simulated/wall,/area/maintenance/lower/rnd) -"aLC" = (/obj/machinery/atmospherics/pipe/manifold/hidden/yellow,/turf/simulated/floor/tiled,/area/engineering/lower/lobby) -"aLD" = (/obj/machinery/atmospherics/pipe/simple/hidden/yellow{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/tiled,/area/engineering/lower/lobby) -"aLE" = (/obj/machinery/atmospherics/pipe/simple/hidden/yellow{dir = 4},/obj/machinery/hologram/holopad,/turf/simulated/floor/tiled,/area/engineering/lower/lobby) -"aLF" = (/obj/machinery/atmospherics/pipe/simple/hidden/yellow{dir = 10},/obj/structure/disposalpipe/junction{dir = 1},/turf/simulated/floor/tiled,/area/engineering/lower/lobby) -"aLG" = (/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled,/area/engineering/lower/lobby) -"aLH" = (/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (EAST)"; icon_state = "borderfloor"; dir = 4},/obj/effect/floor_decal/corner/yellow/border{tag = "icon-bordercolor (EAST)"; icon_state = "bordercolor"; dir = 4},/obj/machinery/disposal,/obj/structure/disposalpipe/trunk{dir = 8},/turf/simulated/floor/tiled,/area/engineering/lower/lobby) -"aLI" = (/obj/structure/bed/chair{dir = 4},/turf/simulated/floor/carpet,/area/engineering/lower/breakroom) -"aLJ" = (/obj/structure/table/glass,/turf/simulated/floor/carpet,/area/engineering/lower/breakroom) -"aLK" = (/obj/structure/table/glass,/obj/machinery/computer/atmoscontrol/laptop,/turf/simulated/floor/carpet,/area/engineering/lower/breakroom) -"aLL" = (/obj/structure/bed/chair{dir = 8},/turf/simulated/floor/carpet,/area/engineering/lower/breakroom) -"aLM" = (/obj/machinery/vending/coffee,/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (EAST)"; icon_state = "borderfloor"; dir = 4},/obj/effect/floor_decal/corner/yellow/border{tag = "icon-bordercolor (EAST)"; icon_state = "bordercolor"; dir = 4},/turf/simulated/floor/tiled,/area/engineering/lower/breakroom) -"aLN" = (/obj/effect/decal/cleanable/dirt,/obj/effect/floor_decal/rust,/obj/structure/table/rack,/obj/random/maintenance/clean,/obj/random/maintenance/clean,/obj/random/maintenance/engineering,/obj/random/junk,/obj/random/drinkbottle,/turf/simulated/floor/tiled/techfloor,/area/maintenance/lower/south) -"aLO" = (/obj/machinery/light{dir = 8; icon_state = "tube1"; pixel_y = 0},/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (WEST)"; icon_state = "borderfloor"; dir = 8},/obj/effect/floor_decal/corner/purple/border{tag = "icon-bordercolor (WEST)"; icon_state = "bordercolor"; dir = 8},/turf/simulated/floor/tiled,/area/janitor) -"aLP" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 5},/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled,/area/janitor) -"aLQ" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/turf/simulated/floor/tiled,/area/janitor) -"aLR" = (/obj/structure/janitorialcart,/obj/machinery/light{icon_state = "tube1"; dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 10},/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (EAST)"; icon_state = "borderfloor"; dir = 4},/obj/effect/floor_decal/corner/purple/border{tag = "icon-bordercolor (EAST)"; icon_state = "bordercolor"; dir = 4},/turf/simulated/floor/tiled,/area/janitor) -"aLS" = (/obj/effect/floor_decal/corner_techfloor_grid{tag = "icon-corner_techfloor_grid (NORTHWEST)"; icon_state = "corner_techfloor_grid"; dir = 9},/obj/random/junk,/turf/simulated/floor/tiled/techfloor,/area/maintenance/lower/bar) -"aLT" = (/obj/structure/catwalk,/obj/machinery/portable_atmospherics/hydroponics,/turf/simulated/floor/tiled/techfloor,/area/maintenance/lower/bar) -"aLU" = (/obj/structure/railing{dir = 8},/obj/effect/floor_decal/techfloor{tag = "icon-techfloor_edges (EAST)"; icon_state = "techfloor_edges"; dir = 4},/obj/effect/decal/cleanable/dirt,/obj/effect/floor_decal/rust,/obj/structure/table/rack,/obj/random/maintenance/research,/obj/random/maintenance/clean,/turf/simulated/floor/tiled/techfloor,/area/maintenance/asmaint2) -"aLV" = (/obj/effect/floor_decal/techfloor{tag = "icon-techfloor_edges (WEST)"; icon_state = "techfloor_edges"; dir = 8},/obj/machinery/computer/rdconsole/core{dir = 4},/turf/simulated/floor/tiled/techfloor,/area/rnd/workshop) -"aLW" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 5},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 6},/turf/simulated/floor/tiled/techfloor,/area/rnd/workshop) -"aLX" = (/obj/effect/floor_decal/techfloor/corner{tag = "icon-techfloor_corners (EAST)"; icon_state = "techfloor_corners"; dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled/techfloor,/area/rnd/workshop) -"aLY" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/door/firedoor/glass,/obj/machinery/door/airlock/glass_research{name = "Workshop"; req_access = list(47)},/turf/simulated/floor/tiled,/area/rnd/workshop) -"aLZ" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 9},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 9},/turf/simulated/floor/tiled,/area/rnd/lockers) -"aMa" = (/obj/structure/railing{dir = 8},/obj/structure/railing{dir = 1},/obj/structure/railing,/turf/simulated/open,/area/rnd/lockers) -"aMb" = (/obj/structure/railing{dir = 1},/turf/simulated/open,/area/rnd/lockers) -"aMc" = (/obj/structure/railing{dir = 4},/turf/simulated/open,/area/rnd/lockers) -"aMd" = (/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 8},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 8},/turf/simulated/floor/tiled,/area/rnd/lockers) -"aMe" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/door/firedoor/glass,/obj/machinery/door/airlock/glass_research{name = "Research and Development"; req_access = list(7)},/turf/simulated/floor/tiled,/area/rnd/research) -"aMf" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled,/area/rnd/research) -"aMg" = (/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,/obj/machinery/atmospherics/pipe/manifold/hidden/supply,/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled,/area/rnd/research) -"aMh" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 10},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 10},/turf/simulated/floor/tiled,/area/rnd/research) -"aMi" = (/turf/simulated/floor/tiled,/area/rnd/research) -"aMj" = (/obj/item/weapon/folder/white,/obj/structure/table/standard,/obj/item/weapon/disk/tech_disk{pixel_x = 0; pixel_y = 0},/obj/item/weapon/disk/tech_disk{pixel_x = 0; pixel_y = 0},/obj/item/weapon/disk/design_disk,/obj/item/weapon/disk/design_disk,/obj/item/weapon/reagent_containers/dropper{pixel_y = -4},/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (EAST)"; icon_state = "borderfloor"; dir = 4},/obj/effect/floor_decal/corner/mauve/border{tag = "icon-bordercolor (EAST)"; icon_state = "bordercolor"; dir = 4},/turf/simulated/floor/tiled,/area/rnd/research) -"aMk" = (/obj/machinery/atmospherics/pipe/simple/visible/scrubbers,/obj/machinery/atmospherics/pipe/simple/visible/supply,/obj/machinery/power/terminal{dir = 4},/obj/structure/cable,/obj/structure/disposalpipe/segment,/obj/effect/floor_decal/industrial/warning{dir = 4},/turf/simulated/floor/plating,/area/maintenance/lower/rnd) -"aMl" = (/obj/structure/cable/cyan{d2 = 2; icon_state = "0-2"},/obj/structure/cable/cyan,/obj/machinery/power/smes/buildable{charge = 2e+006; RCon_tag = "Substation - Atmospherics"},/turf/simulated/floor,/area/maintenance/lower/rnd) -"aMm" = (/obj/effect/floor_decal/industrial/hatch/yellow,/obj/machinery/light{dir = 8; icon_state = "tube1"; pixel_y = 0},/turf/simulated/floor/tiled,/area/engineering/lower/lobby) -"aMn" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 8},/turf/simulated/floor/tiled,/area/engineering/lower/lobby) -"aMo" = (/obj/machinery/atmospherics/unary/vent_pump/on{dir = 8},/turf/simulated/floor/tiled,/area/engineering/lower/lobby) -"aMp" = (/obj/machinery/atmospherics/pipe/simple/hidden/yellow,/obj/structure/disposalpipe/junction{dir = 1},/turf/simulated/floor/tiled,/area/engineering/lower/lobby) -"aMq" = (/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (EAST)"; icon_state = "borderfloor"; dir = 4},/obj/effect/floor_decal/corner/yellow/border{tag = "icon-bordercolor (EAST)"; icon_state = "bordercolor"; dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled,/area/engineering/lower/lobby) -"aMr" = (/obj/structure/bed/chair{dir = 4},/obj/structure/disposalpipe/segment{dir = 2; icon_state = "pipe-c"},/turf/simulated/floor/carpet,/area/engineering/lower/breakroom) -"aMs" = (/obj/machinery/vending/cigarette,/obj/machinery/light{dir = 4; icon_state = "tube1"; pixel_x = 0},/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (EAST)"; icon_state = "borderfloor"; dir = 4},/obj/effect/floor_decal/corner/yellow/border{tag = "icon-bordercolor (EAST)"; icon_state = "bordercolor"; dir = 4},/turf/simulated/floor/tiled,/area/engineering/lower/breakroom) -"aMt" = (/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/tiled/techfloor,/area/maintenance/lower/south) -"aMu" = (/obj/structure/closet/l3closet/janitor,/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (SOUTHWEST)"; icon_state = "borderfloor"; dir = 10},/obj/effect/floor_decal/corner/purple/border{tag = "icon-bordercolor (SOUTHWEST)"; icon_state = "bordercolor"; dir = 10},/turf/simulated/floor/tiled,/area/janitor) -"aMv" = (/obj/structure/closet/jcloset,/obj/item/weapon/soap/nanotrasen,/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/corner/purple/border,/turf/simulated/floor/tiled,/area/janitor) -"aMw" = (/obj/machinery/firealarm{dir = 1; pixel_x = 0; pixel_y = -26},/obj/structure/mopbucket,/obj/item/weapon/mop,/obj/item/weapon/reagent_containers/glass/bucket,/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/corner/purple/border,/turf/simulated/floor/tiled,/area/janitor) -"aMx" = (/obj/structure/mopbucket,/obj/item/weapon/mop,/obj/item/weapon/reagent_containers/glass/bucket,/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/corner/purple/border,/obj/structure/disposalpipe/segment{dir = 1; icon_state = "pipe-c"},/turf/simulated/floor/tiled,/area/janitor) -"aMy" = (/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/corner/purple/border,/obj/effect/floor_decal/borderfloor/corner2{tag = "icon-borderfloorcorner2 (NORTHWEST)"; icon_state = "borderfloorcorner2"; dir = 9},/obj/effect/floor_decal/corner/purple/bordercorner2{tag = "icon-bordercolorcorner2 (NORTHWEST)"; icon_state = "bordercolorcorner2"; dir = 9},/obj/machinery/disposal,/obj/structure/disposalpipe/trunk{dir = 8},/turf/simulated/floor/tiled,/area/janitor) -"aMz" = (/obj/structure/reagent_dispensers/watertank,/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 1},/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (SOUTHEAST)"; icon_state = "borderfloor"; dir = 6},/obj/effect/floor_decal/corner/purple/border{tag = "icon-bordercolor (SOUTHEAST)"; icon_state = "bordercolor"; dir = 6},/obj/effect/floor_decal/borderfloor/corner2,/obj/effect/floor_decal/corner/purple/bordercorner2,/turf/simulated/floor/tiled,/area/janitor) -"aMA" = (/obj/effect/floor_decal/rust,/obj/structure/railing{dir = 4},/turf/simulated/floor/tiled/techfloor,/area/maintenance/lower/bar) -"aMB" = (/turf/simulated/wall,/area/maintenance/lower/south) -"aMC" = (/obj/machinery/door/airlock/multi_tile/metal/mait,/obj/machinery/door/firedoor/glass,/obj/structure/cable{tag = "icon-1-2"; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/visible/scrubbers,/obj/machinery/atmospherics/pipe/simple/visible/supply,/turf/simulated/floor/tiled/techfloor/grid,/area/maintenance/lower/south) -"aMD" = (/obj/machinery/door/firedoor/glass,/turf/simulated/floor/tiled/techfloor/grid,/area/maintenance/lower/south) -"aME" = (/obj/structure/railing{dir = 4},/obj/effect/floor_decal/techfloor{tag = "icon-techfloor_edges (WEST)"; icon_state = "techfloor_edges"; dir = 8},/obj/effect/floor_decal/rust,/obj/machinery/atmospherics/pipe/simple/visible/purple{tag = "icon-intact (NORTH)"; icon_state = "intact"; dir = 1},/turf/simulated/floor/tiled/techfloor,/area/maintenance/asmaint2) -"aMF" = (/obj/effect/floor_decal/techfloor{tag = "icon-techfloor_edges (WEST)"; icon_state = "techfloor_edges"; dir = 8},/obj/structure/table/steel,/obj/machinery/cell_charger,/obj/structure/reagent_dispensers/acid{pixel_x = -32},/obj/machinery/light{dir = 8; icon_state = "tube1"; pixel_y = 0},/turf/simulated/floor/tiled/techfloor,/area/rnd/workshop) -"aMG" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/tiled/techfloor,/area/rnd/workshop) -"aMH" = (/turf/simulated/floor/tiled/techfloor,/area/rnd/workshop) -"aMI" = (/obj/structure/grille,/obj/structure/window/reinforced{dir = 5; icon_state = "fwindow"},/obj/machinery/door/firedoor,/turf/simulated/floor/plating,/area/rnd/workshop) -"aMJ" = (/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (WEST)"; icon_state = "borderfloor"; dir = 8},/obj/effect/floor_decal/corner/mauve/border{tag = "icon-bordercolor (WEST)"; icon_state = "bordercolor"; dir = 8},/obj/effect/floor_decal/borderfloor/corner2{tag = "icon-borderfloorcorner2 (WEST)"; icon_state = "borderfloorcorner2"; dir = 8},/obj/effect/floor_decal/borderfloor/corner2{tag = "icon-borderfloorcorner2 (SOUTHWEST)"; icon_state = "borderfloorcorner2"; dir = 10},/obj/effect/floor_decal/corner/mauve/bordercorner2{tag = "icon-bordercolorcorner2 (SOUTHWEST)"; icon_state = "bordercolorcorner2"; dir = 10},/obj/effect/floor_decal/corner/mauve/bordercorner2{tag = "icon-bordercolorcorner2 (WEST)"; icon_state = "bordercolorcorner2"; dir = 8},/turf/simulated/floor/tiled,/area/rnd/lockers) -"aMK" = (/obj/effect/decal/cleanable/dirt,/obj/effect/floor_decal/steeldecal/steel_decals9,/obj/effect/floor_decal/steeldecal/steel_decals9{tag = "icon-steel_decals9 (WEST)"; icon_state = "steel_decals9"; dir = 8},/turf/simulated/floor/tiled,/area/rnd/lockers) -"aML" = (/obj/structure/railing{dir = 8},/turf/simulated/open,/area/rnd/lockers) -"aMM" = (/turf/simulated/open,/area/rnd/lockers) -"aMN" = (/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (EAST)"; icon_state = "borderfloor"; dir = 4},/obj/effect/floor_decal/corner/mauve/border{tag = "icon-bordercolor (EAST)"; icon_state = "bordercolor"; dir = 4},/obj/effect/floor_decal/borderfloor/corner2{tag = "icon-borderfloorcorner2 (NORTHEAST)"; icon_state = "borderfloorcorner2"; dir = 5},/obj/effect/floor_decal/borderfloor/corner2{tag = "icon-borderfloorcorner2 (SOUTHEAST)"; icon_state = "borderfloorcorner2"; dir = 6},/obj/effect/floor_decal/corner/mauve/bordercorner2{tag = "icon-bordercolorcorner2 (NORTHEAST)"; icon_state = "bordercolorcorner2"; dir = 5},/obj/effect/floor_decal/corner/mauve/bordercorner2{tag = "icon-bordercolorcorner2 (SOUTHEAST)"; icon_state = "bordercolorcorner2"; dir = 6},/obj/structure/disposalpipe/segment{dir = 4; icon_state = "pipe-c"},/turf/simulated/floor/tiled,/area/rnd/lockers) -"aMO" = (/obj/structure/grille,/obj/structure/window/reinforced{dir = 5; icon_state = "fwindow"},/obj/machinery/door/firedoor,/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/plating,/area/rnd/research) -"aMP" = (/obj/machinery/light{icon_state = "tube1"; dir = 8},/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (WEST)"; icon_state = "borderfloor"; dir = 8},/obj/effect/floor_decal/corner/mauve/border{tag = "icon-bordercolor (WEST)"; icon_state = "bordercolor"; dir = 8},/obj/effect/floor_decal/borderfloor/corner2{tag = "icon-borderfloorcorner2 (SOUTHWEST)"; icon_state = "borderfloorcorner2"; dir = 10},/obj/effect/floor_decal/borderfloor/corner2{tag = "icon-borderfloorcorner2 (WEST)"; icon_state = "borderfloorcorner2"; dir = 8},/obj/effect/floor_decal/corner/mauve/bordercorner2{tag = "icon-bordercolorcorner2 (SOUTHWEST)"; icon_state = "bordercolorcorner2"; dir = 10},/obj/effect/floor_decal/corner/mauve/bordercorner2{tag = "icon-bordercolorcorner2 (WEST)"; icon_state = "bordercolorcorner2"; dir = 8},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled,/area/rnd/research) -"aMQ" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/disposalpipe/junction{dir = 1; icon_state = "pipe-j2"},/turf/simulated/floor/tiled,/area/rnd/research) -"aMR" = (/obj/machinery/atmospherics/unary/vent_pump/on{dir = 4},/turf/simulated/floor/tiled,/area/rnd/research) -"aMS" = (/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 8},/turf/simulated/floor/tiled,/area/rnd/research) -"aMT" = (/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 8},/turf/simulated/floor/tiled,/area/rnd/research) -"aMU" = (/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/effect/floor_decal/borderfloor{tag = "icon-borderfloor (EAST)"; icon_state = "borderfloor"; dir = 4},/obj/effect/floor_decal/corner/mauve/border{tag = "icon-bordercolor (EAST)"; icon_state = "bordercolor"; dir = 4},/turf/simulated/floor/tiled,/area/rnd/research) -"aMV" = (/obj/machinery/atmospherics/pipe/simple/visible/scrubbers,/obj/machinery/atmospherics/pipe/simple/visible/supply,/obj/machinery/alarm{dir = 4; icon_state = "alarm0"; pixel_x = -22; pixel_y = 0},/obj/effect/decal/cleanable/dirt,/obj/structure/disposalpipe/segment,/obj/effect/floor_decal/industrial/warning/corner{dir = 4},/turf/simulated/floor/plating,/area/maintenance/lower/rnd) -"aMW" = (/obj/structure/cable/cyan{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/power/sensor{name = "Powernet Sensor - Atmospherics Subgrid"; name_tag = "Atmospherics Subgrid"},/obj/effect/decal/cleanable/dirt,/obj/effect/floor_decal/industrial/warning{icon_state = "warning"; dir = 1},/turf/simulated/floor/plating,/area/maintenance/lower/rnd) -"aMX" = (/obj/machinery/atmospherics/portables_connector{dir = 4},/obj/effect/floor_decal/industrial/outline/blue,/obj/machinery/portable_atmospherics/powered/pump/filled,/turf/simulated/floor/tiled/techfloor,/area/engineering/lower/lobby) -"aMY" = (/obj/machinery/atmospherics/pipe/simple/hidden/cyan{dir = 10; icon_state = "intact"; tag = "icon-intact-f (NORTHWEST)"},/turf/simulated/floor/tiled,/area/engineering/lower/lobby) -"aMZ" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/tiled,/area/engineering/lower/lobby) -"aNa" = (/obj/machinery/atmospherics/pipe/simple/hidden/yellow,/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled,/area/engineering/lower/lobby) -"aNb" = (/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (EAST)"; icon_state = "borderfloor"; dir = 4},/obj/effect/floor_decal/corner/yellow/border{tag = "icon-bordercolor (EAST)"; icon_state = "bordercolor"; dir = 4},/obj/effect/floor_decal/borderfloor/corner2{tag = "icon-borderfloorcorner2 (NORTHEAST)"; icon_state = "borderfloorcorner2"; dir = 5},/obj/effect/floor_decal/corner/yellow/bordercorner2{tag = "icon-bordercolorcorner2 (NORTHEAST)"; icon_state = "bordercolorcorner2"; dir = 5},/turf/simulated/floor/tiled,/area/engineering/lower/lobby) -"aNc" = (/obj/structure/disposalpipe/segment,/turf/simulated/floor/carpet,/area/engineering/lower/breakroom) -"aNd" = (/obj/structure/bed/chair{dir = 1},/turf/simulated/floor/carpet,/area/engineering/lower/breakroom) -"aNe" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 6},/turf/simulated/floor/tiled,/area/engineering/lower/breakroom) -"aNf" = (/obj/structure/table/glass,/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (EAST)"; icon_state = "borderfloor"; dir = 4},/obj/effect/floor_decal/corner/yellow/border{tag = "icon-bordercolor (EAST)"; icon_state = "bordercolor"; dir = 4},/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 8},/obj/item/weapon/storage/box/glasses/pint,/obj/machinery/requests_console{announcementConsole = 0; department = "Engineering"; departmentType = 3; name = "Engineering RC"; pixel_x = 30; pixel_y = 0},/turf/simulated/floor/tiled,/area/engineering/lower/breakroom) -"aNg" = (/obj/machinery/door/airlock/maintenance{name = "Custodial Maintenance"; req_access = list(26)},/turf/simulated/floor,/area/janitor) -"aNh" = (/obj/effect/floor_decal/rust,/obj/effect/floor_decal/corner_techfloor_grid{tag = "icon-corner_techfloor_grid (NORTHWEST)"; icon_state = "corner_techfloor_grid"; dir = 9},/obj/effect/floor_decal/corner_techfloor_grid{tag = "icon-corner_techfloor_grid (SOUTHWEST)"; icon_state = "corner_techfloor_grid"; dir = 10},/obj/structure/table/rack,/obj/random/maintenance/clean,/obj/random/maintenance/clean,/obj/random/maintenance/research,/turf/simulated/floor/tiled/techfloor,/area/maintenance/lower/bar) -"aNi" = (/obj/structure/railing{dir = 4},/obj/effect/floor_decal/corner_techfloor_grid{tag = "icon-corner_techfloor_grid (SOUTHWEST)"; icon_state = "corner_techfloor_grid"; dir = 10},/turf/simulated/floor/tiled/techfloor,/area/maintenance/lower/bar) -"aNj" = (/obj/structure/railing{dir = 4},/obj/effect/floor_decal/corner_techfloor_grid/full{tag = "icon-corner_techfloor_grid_full (WEST)"; icon_state = "corner_techfloor_grid_full"; dir = 8},/obj/machinery/alarm{frequency = 1441; pixel_y = 22},/turf/simulated/floor/tiled/techfloor,/area/maintenance/lower/south) -"aNk" = (/obj/structure/catwalk,/obj/effect/floor_decal/corner_techfloor_grid{tag = "icon-corner_techfloor_grid (NORTHEAST)"; icon_state = "corner_techfloor_grid"; dir = 5},/obj/structure/cable{tag = "icon-1-2"; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/visible/scrubbers,/obj/machinery/atmospherics/pipe/simple/visible/supply,/turf/simulated/floor/tiled/techfloor,/area/maintenance/lower/south) -"aNl" = (/obj/structure/catwalk,/obj/effect/floor_decal/corner_techfloor_grid{tag = "icon-corner_techfloor_grid (NORTHEAST)"; icon_state = "corner_techfloor_grid"; dir = 5},/turf/simulated/floor/tiled/techfloor,/area/maintenance/lower/south) -"aNm" = (/obj/structure/railing{dir = 8},/obj/effect/floor_decal/corner_techfloor_grid/full{tag = "icon-corner_techfloor_grid_full (NORTH)"; icon_state = "corner_techfloor_grid_full"; dir = 1},/obj/item/device/radio/intercom{dir = 1; name = "Station Intercom (General)"; pixel_y = 21},/turf/simulated/floor/tiled/techfloor,/area/maintenance/lower/south) -"aNn" = (/obj/structure/catwalk,/obj/effect/decal/cleanable/dirt,/obj/structure/cable/green{d1 = 2; d2 = 4; icon_state = "2-4"},/turf/simulated/floor/tiled/techfloor,/area/maintenance/asmaint2) -"aNo" = (/obj/effect/floor_decal/techfloor{tag = "icon-techfloor_edges (WEST)"; icon_state = "techfloor_edges"; dir = 8},/obj/machinery/r_n_d/circuit_imprinter,/obj/item/weapon/reagent_containers/glass/beaker/sulphuric,/turf/simulated/floor/tiled/techfloor,/area/rnd/workshop) -"aNp" = (/obj/effect/floor_decal/techfloor/corner,/obj/structure/cable/green{d1 = 2; d2 = 4; icon_state = "2-4"},/turf/simulated/floor/tiled/techfloor,/area/rnd/workshop) -"aNq" = (/obj/machinery/door/firedoor/glass,/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/door/airlock/glass_research{name = "Workshop"; req_access = list(47)},/turf/simulated/floor/tiled,/area/rnd/workshop) -"aNr" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/tiled,/area/rnd/lockers) -"aNs" = (/obj/structure/cable/green{d1 = 2; d2 = 8; icon_state = "2-8"},/turf/simulated/floor/tiled,/area/rnd/lockers) -"aNt" = (/obj/structure/cable/green{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled,/area/rnd/lockers) -"aNu" = (/obj/machinery/door/firedoor/glass,/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/door/airlock/glass_research{name = "Research and Development"; req_access = list(7)},/turf/simulated/floor/tiled,/area/rnd/research) -"aNv" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/tiled,/area/rnd/research) -"aNw" = (/obj/effect/floor_decal/industrial/warning/corner,/obj/structure/cable/green{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/structure/cable/green{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/structure/disposalpipe/segment{dir = 1; icon_state = "pipe-c"},/turf/simulated/floor/tiled/steel_grid,/area/rnd/research) -"aNx" = (/obj/effect/floor_decal/industrial/warning,/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled/steel_grid,/area/rnd/research) -"aNy" = (/obj/effect/floor_decal/industrial/warning,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled/steel_grid,/area/rnd/research) -"aNz" = (/obj/effect/floor_decal/industrial/warning/corner{dir = 8},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled/steel_grid,/area/rnd/research) -"aNA" = (/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (EAST)"; icon_state = "borderfloor"; dir = 4},/obj/effect/floor_decal/corner/mauve/border{tag = "icon-bordercolor (EAST)"; icon_state = "bordercolor"; dir = 4},/obj/machinery/disposal,/obj/structure/disposalpipe/trunk{dir = 8},/turf/simulated/floor/tiled,/area/rnd/research) -"aNB" = (/obj/machinery/atmospherics/pipe/simple/visible/scrubbers,/obj/machinery/atmospherics/pipe/simple/visible/supply,/obj/structure/cable/cyan{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/effect/decal/cleanable/dirt,/obj/structure/disposalpipe/segment,/turf/simulated/floor/plating,/area/maintenance/lower/rnd) -"aNC" = (/obj/structure/cable/cyan{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/machinery/power/apc{dir = 4; name = "east bump"; pixel_x = 28},/obj/structure/cable/cyan,/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/plating,/area/maintenance/lower/rnd) -"aND" = (/obj/machinery/atmospherics/pipe/manifold/hidden/cyan{dir = 4},/turf/simulated/floor/tiled,/area/engineering/lower/lobby) -"aNE" = (/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 8},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 8},/turf/simulated/floor/tiled,/area/engineering/lower/lobby) -"aNF" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/turf/simulated/floor/tiled,/area/engineering/lower/lobby) -"aNG" = (/obj/machinery/atmospherics/pipe/simple/hidden/yellow,/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/cable/cyan{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled,/area/engineering/lower/lobby) -"aNH" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/cable/cyan{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/tiled,/area/engineering/lower/lobby) -"aNI" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/cable/cyan{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/cable/cyan{d1 = 2; d2 = 8; icon_state = "2-8"},/turf/simulated/floor/tiled,/area/engineering/lower/lobby) -"aNJ" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/cable/cyan{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/door/firedoor/glass,/obj/machinery/door/airlock/glass_engineering{name = "Break Room"; req_access = list(10)},/turf/simulated/floor/tiled,/area/engineering/lower/breakroom) -"aNK" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/cable/cyan{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled,/area/engineering/lower/breakroom) -"aNL" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/cable/cyan{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/tiled,/area/engineering/lower/breakroom) -"aNM" = (/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 1},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 1},/obj/structure/cable/cyan{d1 = 2; d2 = 8; icon_state = "2-8"},/turf/simulated/floor/tiled,/area/engineering/lower/breakroom) -"aNN" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/turf/simulated/floor/tiled,/area/engineering/lower/breakroom) -"aNO" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 9},/turf/simulated/floor/tiled,/area/engineering/lower/breakroom) -"aNP" = (/obj/structure/table/glass,/obj/item/weapon/storage/box/donkpockets,/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (EAST)"; icon_state = "borderfloor"; dir = 4},/obj/effect/floor_decal/corner/yellow/border{tag = "icon-bordercolor (EAST)"; icon_state = "bordercolor"; dir = 4},/obj/machinery/atmospherics/unary/vent_pump/on{dir = 8},/turf/simulated/floor/tiled,/area/engineering/lower/breakroom) -"aNQ" = (/obj/effect/decal/cleanable/dirt,/turf/simulated/floor,/area/maintenance/lower/south) -"aNR" = (/obj/effect/floor_decal/rust,/obj/effect/decal/cleanable/dirt,/turf/simulated/floor,/area/maintenance/lower/south) -"aNS" = (/obj/random/junk,/turf/simulated/floor/tiled/techfloor,/area/maintenance/lower/south) -"aNT" = (/obj/structure/railing{dir = 4},/obj/effect/floor_decal/corner_techfloor_grid{tag = "icon-corner_techfloor_grid (NORTHWEST)"; icon_state = "corner_techfloor_grid"; dir = 9},/turf/simulated/floor/tiled/techfloor,/area/maintenance/lower/south) -"aNU" = (/obj/structure/catwalk,/obj/structure/cable{tag = "icon-1-2"; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/visible/scrubbers,/obj/machinery/atmospherics/pipe/simple/visible/supply,/turf/simulated/floor/tiled/techfloor,/area/maintenance/lower/south) -"aNV" = (/obj/structure/catwalk,/turf/simulated/floor/tiled/techfloor,/area/maintenance/lower/south) -"aNW" = (/obj/structure/railing{dir = 8},/obj/machinery/light/small{dir = 4; pixel_y = 0},/obj/effect/floor_decal/corner_techfloor_grid{tag = "icon-corner_techfloor_grid (SOUTHEAST)"; icon_state = "corner_techfloor_grid"; dir = 6},/turf/simulated/floor/tiled/techfloor,/area/maintenance/lower/south) -"aNX" = (/obj/structure/railing{dir = 4},/obj/machinery/light{dir = 8; icon_state = "tube1"; pixel_y = 0},/obj/effect/floor_decal/techfloor{tag = "icon-techfloor_edges (WEST)"; icon_state = "techfloor_edges"; dir = 8},/obj/effect/decal/cleanable/dirt,/obj/machinery/atmospherics/pipe/simple/visible/purple{tag = "icon-intact (NORTH)"; icon_state = "intact"; dir = 1},/mob/living/simple_animal/mouse,/turf/simulated/floor/tiled/techfloor,/area/maintenance/asmaint2) -"aNY" = (/obj/effect/floor_decal/techfloor{tag = "icon-techfloor_edges (WEST)"; icon_state = "techfloor_edges"; dir = 8},/obj/machinery/media/jukebox,/turf/simulated/floor/tiled/techfloor,/area/rnd/workshop) -"aNZ" = (/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 1},/turf/simulated/floor/tiled/techfloor,/area/rnd/workshop) -"aOa" = (/obj/effect/floor_decal/techfloor{tag = "icon-techfloor_edges (EAST)"; icon_state = "techfloor_edges"; dir = 4},/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/light_switch{pixel_x = 25},/turf/simulated/floor/tiled/techfloor,/area/rnd/workshop) -"aOb" = (/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (WEST)"; icon_state = "borderfloor"; dir = 8},/obj/effect/floor_decal/corner/mauve/border{tag = "icon-bordercolor (WEST)"; icon_state = "bordercolor"; dir = 8},/obj/effect/floor_decal/borderfloor/corner2{tag = "icon-borderfloorcorner2 (WEST)"; icon_state = "borderfloorcorner2"; dir = 8},/obj/effect/floor_decal/corner/mauve/bordercorner2{tag = "icon-bordercolorcorner2 (WEST)"; icon_state = "bordercolorcorner2"; dir = 8},/obj/machinery/camera/network/research{c_tag = "SCI - Research Hallway Center"; dir = 4},/turf/simulated/floor/tiled,/area/rnd/lockers) -"aOc" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/tiled,/area/rnd/lockers) -"aOd" = (/obj/structure/stairs/south,/turf/simulated/floor/tiled,/area/rnd/lockers) -"aOe" = (/obj/structure/railing,/obj/structure/railing{dir = 8},/turf/simulated/open,/area/rnd/lockers) -"aOf" = (/obj/structure/railing,/turf/simulated/open,/area/rnd/lockers) -"aOg" = (/obj/structure/railing{dir = 4},/obj/structure/railing,/turf/simulated/open,/area/rnd/lockers) -"aOh" = (/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (EAST)"; icon_state = "borderfloor"; dir = 4},/obj/effect/floor_decal/corner/mauve/border{tag = "icon-bordercolor (EAST)"; icon_state = "bordercolor"; dir = 4},/obj/effect/floor_decal/borderfloor/corner2{tag = "icon-borderfloorcorner2 (SOUTHEAST)"; icon_state = "borderfloorcorner2"; dir = 6},/obj/effect/floor_decal/corner/mauve/bordercorner2{tag = "icon-bordercolorcorner2 (SOUTHEAST)"; icon_state = "bordercolorcorner2"; dir = 6},/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/light_switch{pixel_x = 25},/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled,/area/rnd/lockers) -"aOi" = (/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (WEST)"; icon_state = "borderfloor"; dir = 8},/obj/effect/floor_decal/corner/mauve/border{tag = "icon-bordercolor (WEST)"; icon_state = "bordercolor"; dir = 8},/obj/effect/floor_decal/borderfloor/corner2{tag = "icon-borderfloorcorner2 (WEST)"; icon_state = "borderfloorcorner2"; dir = 8},/obj/effect/floor_decal/corner/mauve/bordercorner2{tag = "icon-bordercolorcorner2 (WEST)"; icon_state = "bordercolorcorner2"; dir = 8},/obj/machinery/camera/network/research{c_tag = "SCI - Research Hallway Center"; dir = 4},/turf/simulated/floor/tiled,/area/rnd/research) -"aOj" = (/obj/effect/floor_decal/industrial/warning{dir = 4},/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/tiled/steel_grid,/area/rnd/research) -"aOk" = (/obj/machinery/computer/rdconsole/core{dir = 8},/turf/simulated/floor/tiled/steel_grid,/area/rnd/research) -"aOl" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/tiled/steel_grid,/area/rnd/research) -"aOm" = (/obj/machinery/r_n_d/protolathe,/turf/simulated/floor/tiled/steel_grid,/area/rnd/research) -"aOn" = (/obj/effect/floor_decal/industrial/warning{dir = 8},/turf/simulated/floor/tiled/steel_grid,/area/rnd/research) -"aOo" = (/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (EAST)"; icon_state = "borderfloor"; dir = 4},/obj/effect/floor_decal/corner/mauve/border{tag = "icon-bordercolor (EAST)"; icon_state = "bordercolor"; dir = 4},/obj/machinery/light{icon_state = "tube1"; dir = 4},/turf/simulated/floor/tiled,/area/rnd/research) -"aOp" = (/obj/machinery/atmospherics/pipe/simple/visible/scrubbers,/obj/machinery/atmospherics/pipe/simple/visible/supply,/obj/structure/cable/cyan{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/effect/decal/cleanable/dirt,/obj/structure/disposalpipe/segment,/turf/simulated/floor/plating,/area/maintenance/lower/rnd) -"aOq" = (/obj/effect/decal/cleanable/dirt,/obj/structure/table/rack,/obj/random/maintenance/engineering,/obj/random/maintenance/clean,/obj/random/junk,/turf/simulated/floor/plating,/area/maintenance/lower/rnd) -"aOr" = (/turf/simulated/wall,/area/engineering/atmos/hallway) -"aOs" = (/obj/machinery/atmospherics/pipe/manifold/hidden/cyan,/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/corner/yellow/border,/obj/effect/floor_decal/borderfloor/corner2{tag = "icon-borderfloorcorner2 (NORTHWEST)"; icon_state = "borderfloorcorner2"; dir = 9},/obj/effect/floor_decal/corner/yellow/bordercorner2{tag = "icon-bordercolorcorner2 (NORTHWEST)"; icon_state = "bordercolorcorner2"; dir = 9},/turf/simulated/floor/tiled,/area/engineering/lower/lobby) -"aOt" = (/obj/machinery/atmospherics/pipe/simple/hidden/cyan{dir = 10; icon_state = "intact"; tag = "icon-intact-f (NORTHWEST)"},/obj/effect/floor_decal/steeldecal/steel_decals_central4,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/tiled,/area/engineering/lower/lobby) -"aOu" = (/obj/machinery/light,/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/corner/yellow/border,/obj/effect/floor_decal/borderfloor/corner2{tag = "icon-borderfloorcorner2 (NORTHWEST)"; icon_state = "borderfloorcorner2"; dir = 9},/obj/effect/floor_decal/borderfloor/corner2,/obj/effect/floor_decal/corner/yellow/bordercorner2,/obj/effect/floor_decal/corner/yellow/bordercorner2{tag = "icon-bordercolorcorner2 (NORTHWEST)"; icon_state = "bordercolorcorner2"; dir = 9},/turf/simulated/floor/tiled,/area/engineering/lower/lobby) -"aOv" = (/obj/machinery/atmospherics/pipe/simple/hidden/yellow,/obj/effect/floor_decal/steeldecal/steel_decals_central4,/obj/structure/cable/cyan{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled,/area/engineering/lower/lobby) -"aOw" = (/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/corner/yellow/border,/obj/effect/floor_decal/borderfloor/corner2,/obj/effect/floor_decal/corner/yellow/bordercorner2,/obj/machinery/camera/network/engineering{c_tag = "ENG - Pump Station"; dir = 1},/turf/simulated/floor/tiled,/area/engineering/lower/lobby) -"aOx" = (/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (SOUTHEAST)"; icon_state = "borderfloor"; dir = 6},/obj/effect/floor_decal/corner/yellow/border{tag = "icon-bordercolor (SOUTHEAST)"; icon_state = "bordercolor"; dir = 6},/obj/effect/floor_decal/borderfloor/corner2{tag = "icon-borderfloorcorner2 (SOUTHEAST)"; icon_state = "borderfloorcorner2"; dir = 6},/obj/effect/floor_decal/corner/yellow/bordercorner2{tag = "icon-bordercolorcorner2 (SOUTHEAST)"; icon_state = "bordercolorcorner2"; dir = 6},/obj/structure/cable/cyan,/obj/machinery/power/apc{dir = 2; name = "south bump"; pixel_y = -28},/turf/simulated/floor/tiled,/area/engineering/lower/lobby) -"aOy" = (/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (SOUTHWEST)"; icon_state = "borderfloor"; dir = 10},/obj/effect/floor_decal/corner/yellow/border{tag = "icon-bordercolor (SOUTHWEST)"; icon_state = "bordercolor"; dir = 10},/obj/effect/floor_decal/borderfloor/corner2{tag = "icon-borderfloorcorner2 (WEST)"; icon_state = "borderfloorcorner2"; dir = 8},/obj/effect/floor_decal/corner/yellow/bordercorner2{tag = "icon-bordercolorcorner2 (WEST)"; icon_state = "bordercolorcorner2"; dir = 8},/obj/machinery/newscaster{pixel_x = -25},/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled,/area/engineering/lower/breakroom) -"aOz" = (/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/corner/yellow/border,/turf/simulated/floor/tiled,/area/engineering/lower/breakroom) -"aOA" = (/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/corner/yellow/border,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/cable/cyan{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/cable/cyan{d1 = 1; d2 = 4; icon_state = "1-4"},/turf/simulated/floor/tiled,/area/engineering/lower/breakroom) -"aOB" = (/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/corner/yellow/border,/obj/machinery/power/apc{dir = 2; name = "south bump"; pixel_y = -28},/obj/structure/cable/cyan{d2 = 8; icon_state = "0-8"},/turf/simulated/floor/tiled,/area/engineering/lower/breakroom) -"aOC" = (/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/corner/yellow/border,/obj/machinery/camera/network/engineering{c_tag = "ENG - Pump Station"; dir = 1},/turf/simulated/floor/tiled,/area/engineering/lower/breakroom) -"aOD" = (/obj/structure/table/glass,/obj/machinery/microwave,/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (SOUTHEAST)"; icon_state = "borderfloor"; dir = 6},/obj/effect/floor_decal/corner/yellow/border{tag = "icon-bordercolor (SOUTHEAST)"; icon_state = "bordercolor"; dir = 6},/turf/simulated/floor/tiled,/area/engineering/lower/breakroom) -"aOE" = (/turf/simulated/floor,/area/maintenance/lower/south) -"aOF" = (/obj/effect/decal/cleanable/dirt,/obj/structure/closet,/obj/random/maintenance/cargo,/obj/random/maintenance/research,/obj/random/maintenance/engineering,/turf/simulated/floor,/area/maintenance/lower/south) -"aOG" = (/obj/effect/floor_decal/corner_techfloor_grid/full{tag = "icon-corner_techfloor_grid_full (WEST)"; icon_state = "corner_techfloor_grid_full"; dir = 8},/obj/effect/decal/cleanable/dirt,/obj/effect/floor_decal/rust,/mob/living/simple_animal/mouse,/turf/simulated/floor/tiled/techfloor,/area/maintenance/lower/south) -"aOH" = (/obj/effect/floor_decal/corner_techfloor_grid{tag = "icon-corner_techfloor_grid (NORTHEAST)"; icon_state = "corner_techfloor_grid"; dir = 5},/obj/structure/cable{icon_state = "2-4"},/turf/simulated/floor/tiled/techfloor,/area/maintenance/lower/south) -"aOI" = (/obj/effect/floor_decal/corner_techfloor_grid{tag = "icon-corner_techfloor_grid (NORTHEAST)"; icon_state = "corner_techfloor_grid"; dir = 5},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0},/turf/simulated/floor/tiled/techfloor,/area/maintenance/lower/south) -"aOJ" = (/obj/structure/railing{dir = 4},/obj/effect/floor_decal/corner_techfloor_grid{tag = "icon-corner_techfloor_grid (NORTH)"; icon_state = "corner_techfloor_grid"; dir = 1},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0},/turf/simulated/floor/tiled/techfloor,/area/maintenance/lower/south) -"aOK" = (/obj/structure/catwalk,/obj/structure/cable{icon_state = "1-8"},/obj/machinery/atmospherics/pipe/simple/visible/scrubbers,/obj/machinery/atmospherics/pipe/simple/visible/supply,/turf/simulated/floor/tiled/techfloor,/area/maintenance/lower/south) -"aOL" = (/obj/structure/railing{dir = 8},/obj/effect/floor_decal/corner_techfloor_grid{tag = "icon-corner_techfloor_grid (SOUTHEAST)"; icon_state = "corner_techfloor_grid"; dir = 6},/turf/simulated/floor/tiled/techfloor,/area/maintenance/lower/south) -"aOM" = (/obj/structure/railing{dir = 4},/obj/effect/floor_decal/techfloor{tag = "icon-techfloor_edges (WEST)"; icon_state = "techfloor_edges"; dir = 8},/obj/effect/decal/cleanable/dirt,/obj/machinery/atmospherics/pipe/simple/visible/purple{tag = "icon-intact (NORTH)"; icon_state = "intact"; dir = 1},/obj/structure/table/rack,/obj/random/maintenance/research,/obj/random/maintenance/clean,/turf/simulated/floor/tiled/techfloor,/area/maintenance/asmaint2) -"aON" = (/obj/structure/railing{dir = 8},/obj/effect/floor_decal/techfloor{tag = "icon-techfloor_edges (EAST)"; icon_state = "techfloor_edges"; dir = 4},/obj/effect/decal/cleanable/dirt,/obj/structure/cable/green{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/machinery/atmospherics/pipe/simple/visible/black{tag = "icon-intact (NORTH)"; icon_state = "intact"; dir = 1},/turf/simulated/floor/tiled/techfloor,/area/maintenance/asmaint2) -"aOO" = (/obj/effect/floor_decal/techfloor{tag = "icon-techfloor_edges (WEST)"; icon_state = "techfloor_edges"; dir = 8},/obj/machinery/alarm{dir = 4; icon_state = "alarm0"; pixel_x = -22; pixel_y = 0},/turf/simulated/floor/tiled/techfloor,/area/rnd/workshop) -"aOP" = (/obj/effect/floor_decal/techfloor{tag = "icon-techfloor_edges (EAST)"; icon_state = "techfloor_edges"; dir = 4},/obj/machinery/power/apc{dir = 4; name = "east bump"; pixel_x = 28},/obj/structure/cable/green,/turf/simulated/floor/tiled/techfloor,/area/rnd/workshop) -"aOQ" = (/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (WEST)"; icon_state = "borderfloor"; dir = 8},/obj/effect/floor_decal/corner/mauve/border{tag = "icon-bordercolor (WEST)"; icon_state = "bordercolor"; dir = 8},/obj/machinery/disposal,/obj/structure/disposalpipe/trunk{dir = 4},/turf/simulated/floor/tiled,/area/rnd/lockers) -"aOR" = (/obj/structure/cable/green{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/structure/cable/green{d1 = 1; d2 = 4; icon_state = "1-4"},/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,/area/rnd/lockers) -"aOS" = (/obj/structure/window/reinforced{dir = 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/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled,/area/rnd/lockers) -"aOT" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled,/area/rnd/lockers) -"aOU" = (/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/scrubbers{dir = 9},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled,/area/rnd/lockers) -"aOV" = (/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (EAST)"; icon_state = "borderfloor"; dir = 4},/obj/effect/floor_decal/corner/mauve/border{tag = "icon-bordercolor (EAST)"; icon_state = "bordercolor"; dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals4{tag = "icon-steel_decals4 (NORTHEAST)"; icon_state = "steel_decals4"; dir = 5},/obj/machinery/power/apc{dir = 4; name = "east bump"; pixel_x = 28},/obj/structure/cable/green{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/structure/cable/green{icon_state = "0-8"},/obj/structure/disposalpipe/segment{dir = 8; icon_state = "pipe-c"},/turf/simulated/floor/tiled,/area/rnd/lockers) -"aOW" = (/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (WEST)"; icon_state = "borderfloor"; dir = 8},/obj/effect/floor_decal/corner/mauve/border{tag = "icon-bordercolor (WEST)"; icon_state = "bordercolor"; dir = 8},/turf/simulated/floor/tiled,/area/rnd/research) -"aOX" = (/obj/machinery/r_n_d/destructive_analyzer,/turf/simulated/floor/tiled/steel_grid,/area/rnd/research) -"aOY" = (/obj/machinery/hologram/holopad,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/tiled/steel_grid,/area/rnd/research) -"aOZ" = (/obj/machinery/r_n_d/circuit_imprinter,/obj/item/weapon/reagent_containers/glass/beaker/sulphuric,/turf/simulated/floor/tiled/steel_grid,/area/rnd/research) -"aPa" = (/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (EAST)"; icon_state = "borderfloor"; dir = 4},/obj/effect/floor_decal/corner/mauve/border{tag = "icon-bordercolor (EAST)"; icon_state = "bordercolor"; dir = 4},/obj/item/device/radio/intercom{dir = 4; name = "Station Intercom (General)"; pixel_x = 21},/turf/simulated/floor/tiled,/area/rnd/research) -"aPb" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/cable/cyan{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/door/firedoor/glass,/obj/structure/disposalpipe/segment,/obj/machinery/door/airlock/atmos{name = "Atmospherics Maintenance"; req_access = list(24)},/turf/simulated/floor/tiled,/area/engineering/atmos/hallway) -"aPc" = (/obj/structure/lattice,/obj/structure/railing,/obj/machinery/atmospherics/pipe/zpipe/down/supply,/obj/machinery/atmospherics/pipe/zpipe/down/scrubbers,/obj/structure/cable/cyan{d1 = 32; d2 = 2; icon_state = "32-2"},/obj/machinery/door/firedoor/glass,/turf/simulated/open,/area/engineering/atmos/hallway) -"aPd" = (/obj/machinery/atmospherics/pipe/simple/hidden/cyan,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/door/firedoor/glass,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/door/airlock/glass_atmos{name = "Atmospherics"; req_access = list(24)},/turf/simulated/floor/tiled,/area/engineering/atmos/hallway) -"aPe" = (/obj/machinery/atmospherics/pipe/zpipe/up/scrubbers,/obj/machinery/atmospherics/pipe/zpipe/up/supply,/obj/structure/window/reinforced{dir = 1},/obj/structure/window/reinforced{dir = 8},/obj/structure/window/reinforced{dir = 4},/obj/machinery/door/firedoor/glass,/obj/structure/cable/cyan{d2 = 2; icon_state = "0-2"},/obj/structure/cable/cyan{d1 = 16; d2 = 0; icon_state = "16-0"},/turf/simulated/floor/plating,/area/engineering/atmos/hallway) -"aPf" = (/obj/machinery/atmospherics/pipe/simple/hidden/yellow,/obj/structure/cable/cyan{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/door/firedoor/glass,/obj/structure/disposalpipe/segment,/obj/machinery/door/airlock/glass_atmos{name = "Atmospherics"; req_access = list(24)},/turf/simulated/floor/tiled,/area/engineering/atmos/hallway) -"aPg" = (/turf/simulated/wall,/area/engineering/atmos/monitoring) -"aPh" = (/obj/structure/grille,/obj/structure/window/reinforced{dir = 5; icon_state = "fwindow"},/obj/machinery/door/firedoor,/obj/structure/disposalpipe/segment,/turf/simulated/floor/plating,/area/engineering/atmos/monitoring) -"aPi" = (/obj/structure/grille,/obj/structure/window/reinforced{dir = 5; icon_state = "fwindow"},/obj/machinery/door/firedoor,/turf/simulated/floor/plating,/area/engineering/atmos/monitoring) -"aPj" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/cable/cyan{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/door/firedoor/glass,/obj/machinery/door/airlock/glass_atmos{name = "Atmospherics Monitoring Room"; req_access = list(24)},/turf/simulated/floor/tiled,/area/engineering/atmos/monitoring) -"aPk" = (/obj/structure/cable/cyan{d2 = 2; icon_state = "0-2"},/obj/machinery/power/apc{cell_type = /obj/item/weapon/cell/super; dir = 8; name = "west bump"; pixel_x = -28},/turf/simulated/floor/tiled/techfloor,/area/tether/surfacebase/emergency_storage/atrium) -"aPl" = (/obj/machinery/space_heater,/obj/effect/floor_decal/industrial/outline/grey,/turf/simulated/floor/tiled/techfloor,/area/tether/surfacebase/emergency_storage/atrium) -"aPm" = (/obj/effect/floor_decal/corner_techfloor_grid{tag = "icon-corner_techfloor_grid (NORTHWEST)"; icon_state = "corner_techfloor_grid"; dir = 9},/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/tiled/techfloor,/area/maintenance/lower/south) -"aPn" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/tiled/techfloor,/area/maintenance/lower/south) -"aPo" = (/obj/effect/decal/cleanable/dirt,/obj/structure/table/rack,/obj/random/maintenance/cargo,/obj/random/maintenance/clean,/obj/random/junk,/turf/simulated/floor/tiled/techfloor,/area/maintenance/lower/south) -"aPp" = (/obj/structure/railing{dir = 4},/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/tiled/techfloor,/area/maintenance/lower/south) -"aPq" = (/obj/structure/catwalk,/obj/machinery/atmospherics/pipe/simple/visible/scrubbers,/obj/machinery/atmospherics/pipe/simple/visible/supply,/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/tiled/techfloor,/area/maintenance/lower/south) -"aPr" = (/obj/structure/catwalk,/obj/effect/floor_decal/rust,/turf/simulated/floor/tiled/techfloor,/area/maintenance/lower/south) -"aPs" = (/obj/structure/railing{dir = 8},/obj/effect/floor_decal/techfloor{tag = "icon-techfloor_edges (EAST)"; icon_state = "techfloor_edges"; dir = 4},/obj/effect/decal/cleanable/dirt,/obj/structure/cable/green,/obj/machinery/atmospherics/pipe/simple/visible/black{tag = "icon-intact (NORTH)"; icon_state = "intact"; dir = 1},/turf/simulated/floor/tiled/techfloor,/area/maintenance/asmaint2) -"aPt" = (/obj/effect/floor_decal/techfloor{tag = "icon-techfloor_edges (WEST)"; icon_state = "techfloor_edges"; dir = 8},/obj/structure/table/steel,/obj/item/device/electronic_assembly/large{pixel_y = 6},/turf/simulated/floor/tiled/techfloor,/area/rnd/workshop) -"aPu" = (/obj/structure/bed/chair/office/dark,/turf/simulated/floor/tiled/techfloor,/area/rnd/workshop) -"aPv" = (/obj/effect/floor_decal/techfloor{tag = "icon-techfloor_edges (EAST)"; icon_state = "techfloor_edges"; dir = 4},/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/structure/extinguisher_cabinet{dir = 8; icon_state = "extinguisher_closed"; pixel_x = 30; tag = "icon-extinguisher_closed (WEST)"},/turf/simulated/floor/tiled/techfloor,/area/rnd/workshop) -"aPw" = (/obj/structure/flora/pottedplant,/obj/machinery/light,/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (SOUTHWEST)"; icon_state = "borderfloor"; dir = 10},/obj/effect/floor_decal/corner/mauve/border{tag = "icon-bordercolor (SOUTHWEST)"; icon_state = "bordercolor"; dir = 10},/turf/simulated/floor/tiled,/area/rnd/lockers) -"aPx" = (/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/corner/mauve/border,/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/rnd/lockers) -"aPy" = (/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/corner/mauve/border,/turf/simulated/floor/tiled,/area/rnd/lockers) -"aPz" = (/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/corner/mauve/border,/obj/machinery/alarm{dir = 1; pixel_y = -25},/turf/simulated/floor/tiled,/area/rnd/lockers) -"aPA" = (/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/corner/mauve/border,/obj/machinery/newscaster{pixel_x = 0; pixel_y = -30},/turf/simulated/floor/tiled,/area/rnd/lockers) -"aPB" = (/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/corner/mauve/border,/obj/item/device/radio/intercom{name = "Station Intercom (General)"; pixel_y = -21},/turf/simulated/floor/tiled,/area/rnd/lockers) -"aPC" = (/obj/machinery/light,/obj/structure/flora/pottedplant,/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (SOUTHEAST)"; icon_state = "borderfloor"; dir = 6},/obj/effect/floor_decal/corner/mauve/border{tag = "icon-bordercolor (SOUTHEAST)"; icon_state = "bordercolor"; dir = 6},/turf/simulated/floor/tiled,/area/rnd/lockers) -"aPD" = (/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (WEST)"; icon_state = "borderfloor"; dir = 8},/obj/effect/floor_decal/corner/mauve/border{tag = "icon-bordercolor (WEST)"; icon_state = "bordercolor"; dir = 8},/obj/machinery/alarm{dir = 4; icon_state = "alarm0"; pixel_x = -22; pixel_y = 0},/turf/simulated/floor/tiled,/area/rnd/research) -"aPE" = (/obj/effect/floor_decal/industrial/warning/corner{dir = 4},/obj/structure/cable/green{d1 = 1; d2 = 4; icon_state = "1-4"},/turf/simulated/floor/tiled/steel_grid,/area/rnd/research) -"aPF" = (/obj/effect/floor_decal/industrial/warning{dir = 1},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/tiled/steel_grid,/area/rnd/research) -"aPG" = (/obj/effect/floor_decal/industrial/warning{dir = 1},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/cable/green{d1 = 2; d2 = 8; icon_state = "2-8"},/turf/simulated/floor/tiled/steel_grid,/area/rnd/research) -"aPH" = (/obj/effect/floor_decal/industrial/warning{dir = 1},/turf/simulated/floor/tiled/steel_grid,/area/rnd/research) -"aPI" = (/obj/effect/floor_decal/industrial/warning/corner{dir = 1},/turf/simulated/floor/tiled/steel_grid,/area/rnd/research) -"aPJ" = (/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (EAST)"; icon_state = "borderfloor"; dir = 4},/obj/effect/floor_decal/corner/mauve/border{tag = "icon-bordercolor (EAST)"; icon_state = "bordercolor"; dir = 4},/obj/machinery/requests_console{department = "Science"; departmentType = 2; name = "Science Requests Console"; pixel_x = 30; pixel_y = 0},/turf/simulated/floor/tiled,/area/rnd/research) -"aPK" = (/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (NORTHWEST)"; icon_state = "borderfloor"; dir = 9},/obj/effect/floor_decal/corner/yellow/border{tag = "icon-bordercolor (NORTHWEST)"; icon_state = "bordercolor"; dir = 9},/obj/effect/floor_decal/steeldecal/steel_decals7,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/cable/cyan{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/cable/cyan{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled,/area/engineering/atmos/hallway) -"aPL" = (/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (NORTH)"; icon_state = "borderfloor"; dir = 1},/obj/effect/floor_decal/corner/yellow/border{tag = "icon-bordercolor (NORTH)"; icon_state = "bordercolor"; dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals7{tag = "icon-steel_decals7 (EAST)"; icon_state = "steel_decals7"; dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals7,/obj/machinery/recharge_station,/obj/structure/cable/cyan{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/tiled,/area/engineering/atmos/hallway) -"aPM" = (/obj/structure/closet/secure_closet/atmos_personal,/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (NORTH)"; icon_state = "borderfloor"; dir = 1},/obj/effect/floor_decal/corner/yellow/border{tag = "icon-bordercolor (NORTH)"; icon_state = "bordercolor"; dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals5,/obj/machinery/atmospherics/unary/vent_pump/on,/obj/structure/cable/cyan{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/tiled,/area/engineering/atmos/hallway) -"aPN" = (/obj/structure/closet/secure_closet/atmos_personal,/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (NORTH)"; icon_state = "borderfloor"; dir = 1},/obj/effect/floor_decal/corner/yellow/border{tag = "icon-bordercolor (NORTH)"; icon_state = "bordercolor"; dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals5,/obj/machinery/atmospherics/unary/vent_scrubber/on,/obj/structure/cable/cyan{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/extinguisher_cabinet{pixel_y = 30},/turf/simulated/floor/tiled,/area/engineering/atmos/hallway) -"aPO" = (/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (NORTH)"; icon_state = "borderfloor"; dir = 1},/obj/effect/floor_decal/corner/yellow/border{tag = "icon-bordercolor (NORTH)"; icon_state = "bordercolor"; dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals5,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/cable/cyan{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/structure/cable/cyan{d1 = 2; d2 = 8; icon_state = "2-8"},/turf/simulated/floor/tiled,/area/engineering/atmos/hallway) -"aPP" = (/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (NORTH)"; icon_state = "borderfloor"; dir = 1},/obj/effect/floor_decal/corner/yellow/border{tag = "icon-bordercolor (NORTH)"; icon_state = "bordercolor"; dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals5,/obj/structure/closet/secure_closet/engineering_electrical,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/tiled,/area/engineering/atmos/hallway) -"aPQ" = (/obj/structure/closet/secure_closet/engineering_welding,/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (NORTH)"; icon_state = "borderfloor"; dir = 1},/obj/effect/floor_decal/corner/yellow/border{tag = "icon-bordercolor (NORTH)"; icon_state = "bordercolor"; dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals5,/obj/machinery/camera/network/engineering,/turf/simulated/floor/tiled,/area/engineering/atmos/hallway) -"aPR" = (/obj/structure/ladder/updown,/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (NORTH)"; icon_state = "borderfloor"; dir = 1},/obj/effect/floor_decal/corner/yellow/border{tag = "icon-bordercolor (NORTH)"; icon_state = "bordercolor"; dir = 1},/obj/machinery/status_display{pixel_y = 30},/turf/simulated/floor/tiled,/area/engineering/atmos/hallway) -"aPS" = (/obj/structure/grille,/obj/structure/window/reinforced{dir = 5; icon_state = "fwindow"},/obj/machinery/door/firedoor,/turf/simulated/floor/plating,/area/engineering/atmos/hallway) -"aPT" = (/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (NORTHWEST)"; icon_state = "borderfloor"; dir = 9},/obj/effect/floor_decal/corner/yellow/border{tag = "icon-bordercolor (NORTHWEST)"; icon_state = "bordercolor"; dir = 9},/obj/effect/floor_decal/borderfloor/corner2{tag = "icon-borderfloorcorner2 (SOUTHWEST)"; icon_state = "borderfloorcorner2"; dir = 10},/obj/effect/floor_decal/borderfloor/corner2{tag = "icon-borderfloorcorner2 (NORTH)"; icon_state = "borderfloorcorner2"; dir = 1},/obj/effect/floor_decal/corner/yellow/bordercorner2{tag = "icon-bordercolorcorner2 (NORTH)"; icon_state = "bordercolorcorner2"; dir = 1},/obj/effect/floor_decal/corner/yellow/bordercorner2{tag = "icon-bordercolorcorner2 (SOUTHWEST)"; icon_state = "bordercolorcorner2"; dir = 10},/obj/machinery/light_switch{pixel_y = 25},/turf/simulated/floor/tiled,/area/engineering/atmos/hallway) -"aPU" = (/obj/machinery/atmospherics/pipe/simple/hidden/cyan,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/tiled,/area/engineering/atmos/hallway) -"aPV" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (NORTH)"; icon_state = "borderfloor"; dir = 1},/obj/effect/floor_decal/corner/yellow/border{tag = "icon-bordercolor (NORTH)"; icon_state = "bordercolor"; dir = 1},/obj/effect/floor_decal/borderfloor/corner2{tag = "icon-borderfloorcorner2 (EAST)"; icon_state = "borderfloorcorner2"; dir = 4},/obj/effect/floor_decal/borderfloor/corner2{tag = "icon-borderfloorcorner2 (NORTH)"; icon_state = "borderfloorcorner2"; dir = 1},/obj/effect/floor_decal/corner/yellow/bordercorner2{tag = "icon-bordercolorcorner2 (EAST)"; icon_state = "bordercolorcorner2"; dir = 4},/obj/effect/floor_decal/corner/yellow/bordercorner2{tag = "icon-bordercolorcorner2 (NORTH)"; icon_state = "bordercolorcorner2"; dir = 1},/obj/structure/cable/cyan{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/tiled,/area/engineering/atmos/hallway) -"aPW" = (/obj/machinery/atmospherics/pipe/simple/hidden/yellow{dir = 5; icon_state = "intact"; tag = "icon-intact (NORTHEAST)"},/obj/structure/cable/cyan{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled,/area/engineering/atmos/hallway) -"aPX" = (/obj/machinery/atmospherics/pipe/simple/hidden/yellow{dir = 10},/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (NORTH)"; icon_state = "borderfloor"; dir = 1},/obj/effect/floor_decal/corner/yellow/border{tag = "icon-bordercolor (NORTH)"; icon_state = "bordercolor"; dir = 1},/obj/effect/floor_decal/borderfloor/corner2{tag = "icon-borderfloorcorner2 (EAST)"; icon_state = "borderfloorcorner2"; dir = 4},/obj/effect/floor_decal/corner/yellow/bordercorner2{tag = "icon-bordercolorcorner2 (EAST)"; icon_state = "bordercolorcorner2"; dir = 4},/obj/machinery/firealarm{dir = 2; layer = 3.3; pixel_x = 0; pixel_y = 26},/turf/simulated/floor/tiled,/area/engineering/atmos/hallway) -"aPY" = (/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (NORTHEAST)"; icon_state = "borderfloor"; dir = 5},/obj/effect/floor_decal/corner/yellow/border{tag = "icon-bordercolor (NORTHEAST)"; icon_state = "bordercolor"; dir = 5},/turf/simulated/floor/tiled,/area/engineering/atmos/hallway) -"aPZ" = (/obj/effect/floor_decal/steeldecal/steel_decals5{tag = "icon-steel_decals5 (WEST)"; icon_state = "steel_decals5"; dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals5{tag = "icon-steel_decals5 (EAST)"; icon_state = "steel_decals5"; dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals9,/obj/effect/floor_decal/steeldecal/steel_decals4{tag = "icon-steel_decals4 (NORTH)"; icon_state = "steel_decals4"; dir = 1},/obj/machinery/firealarm{dir = 8; pixel_x = -24},/obj/machinery/disposal,/obj/structure/disposalpipe/trunk{dir = 1},/turf/simulated/floor/tiled,/area/engineering/atmos/monitoring) -"aQa" = (/obj/effect/floor_decal/steeldecal/steel_decals5{tag = "icon-steel_decals5 (EAST)"; icon_state = "steel_decals5"; dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals5{tag = "icon-steel_decals5 (WEST)"; icon_state = "steel_decals5"; dir = 8},/obj/machinery/atmospherics/unary/vent_pump/on{dir = 4},/turf/simulated/floor/tiled,/area/engineering/atmos/monitoring) -"aQb" = (/obj/effect/floor_decal/steeldecal/steel_decals5{tag = "icon-steel_decals5 (EAST)"; icon_state = "steel_decals5"; dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals5{tag = "icon-steel_decals5 (WEST)"; icon_state = "steel_decals5"; dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 5},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 9},/obj/structure/cable/cyan{d1 = 1; d2 = 4; icon_state = "1-4"},/turf/simulated/floor/tiled,/area/engineering/atmos/monitoring) -"aQc" = (/obj/machinery/light{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals5{tag = "icon-steel_decals5 (EAST)"; icon_state = "steel_decals5"; dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals5{tag = "icon-steel_decals5 (WEST)"; icon_state = "steel_decals5"; dir = 8},/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 8},/obj/structure/cable/cyan{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/tiled,/area/engineering/atmos/monitoring) -"aQd" = (/obj/effect/floor_decal/steeldecal/steel_decals5{tag = "icon-steel_decals5 (EAST)"; icon_state = "steel_decals5"; dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals5{tag = "icon-steel_decals5 (WEST)"; icon_state = "steel_decals5"; dir = 8},/obj/structure/cable/cyan{d2 = 8; icon_state = "0-8"},/obj/machinery/power/apc{dir = 1; name = "north bump"; pixel_x = 0; pixel_y = 24},/obj/structure/cable/cyan{d2 = 4; icon_state = "0-4"},/turf/simulated/floor/tiled,/area/engineering/atmos/monitoring) -"aQe" = (/obj/effect/floor_decal/steeldecal/steel_decals5{tag = "icon-steel_decals5 (EAST)"; icon_state = "steel_decals5"; dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals5{tag = "icon-steel_decals5 (WEST)"; icon_state = "steel_decals5"; dir = 8},/obj/structure/cable/cyan{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/light_switch{pixel_y = 25},/turf/simulated/floor/tiled,/area/engineering/atmos/monitoring) -"aQf" = (/obj/machinery/door/airlock/maintenance/int{name = "Emergency Storage"},/obj/structure/cable/cyan{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/door/firedoor/glass,/turf/simulated/floor/tiled/techfloor,/area/engineering/atmos/monitoring) -"aQg" = (/obj/structure/cable/cyan{d1 = 1; d2 = 8; icon_state = "1-8"},/turf/simulated/floor/tiled/techfloor,/area/tether/surfacebase/emergency_storage/atrium) -"aQh" = (/turf/simulated/floor/tiled/techfloor,/area/tether/surfacebase/emergency_storage/atrium) -"aQi" = (/obj/machinery/floodlight,/obj/effect/floor_decal/industrial/outline/yellow,/obj/machinery/alarm{dir = 8; icon_state = "alarm0"; pixel_x = 24},/turf/simulated/floor/tiled/techfloor,/area/tether/surfacebase/emergency_storage/atrium) -"aQj" = (/obj/machinery/door/airlock/maintenance/common,/turf/simulated/floor,/area/maintenance/lower/south) -"aQk" = (/obj/structure/railing{dir = 4},/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/tiled/techfloor,/area/maintenance/lower/south) -"aQl" = (/obj/structure/catwalk,/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/tiled/techfloor,/area/maintenance/lower/south) -"aQm" = (/obj/structure/railing{dir = 8},/obj/structure/railing,/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/tiled/techfloor,/area/maintenance/lower/south) -"aQn" = (/obj/structure/railing{dir = 4},/obj/structure/railing,/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/tiled/techfloor,/area/maintenance/lower/south) -"aQo" = (/obj/effect/floor_decal/techfloor{tag = "icon-techfloor_edges (WEST)"; icon_state = "techfloor_edges"; dir = 8},/obj/effect/decal/cleanable/dirt,/obj/effect/floor_decal/rust,/turf/simulated/floor/tiled/techfloor,/area/maintenance/asmaint2) -"aQp" = (/obj/structure/railing{dir = 8},/obj/effect/floor_decal/techfloor{tag = "icon-techfloor_edges (EAST)"; icon_state = "techfloor_edges"; dir = 4},/obj/effect/decal/cleanable/dirt,/obj/effect/floor_decal/rust,/turf/simulated/floor/tiled/techfloor,/area/maintenance/asmaint2) -"aQq" = (/obj/effect/floor_decal/techfloor{tag = "icon-techfloor_edges (SOUTHWEST)"; icon_state = "techfloor_edges"; dir = 10},/obj/structure/table/steel,/obj/item/stack/material/glass{amount = 50; pixel_x = 3; pixel_y = 3},/turf/simulated/floor/tiled/techfloor,/area/rnd/workshop) -"aQr" = (/obj/effect/floor_decal/techfloor,/obj/structure/table/steel,/obj/machinery/camera/network/research{c_tag = "SCI - Research Dock Hallway Starboard"; dir = 1},/turf/simulated/floor/tiled/techfloor,/area/rnd/workshop) -"aQs" = (/obj/effect/floor_decal/techfloor{tag = "icon-techfloor_edges (SOUTHEAST)"; icon_state = "techfloor_edges"; dir = 6},/obj/structure/table/steel,/obj/item/weapon/storage/bag/circuits/basic,/turf/simulated/floor/tiled/techfloor,/area/rnd/workshop) -"aQt" = (/obj/machinery/door/airlock/maintenance/rnd,/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,/turf/simulated/floor/tiled,/area/rnd/lockers) -"aQu" = (/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (SOUTHWEST)"; icon_state = "borderfloor"; dir = 10},/obj/effect/floor_decal/corner/mauve/border{tag = "icon-bordercolor (SOUTHWEST)"; icon_state = "bordercolor"; dir = 10},/obj/machinery/status_display{pixel_x = -32},/turf/simulated/floor/tiled,/area/rnd/research) -"aQv" = (/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/corner/mauve/border,/obj/machinery/computer/guestpass{dir = 1; icon_state = "guest"; pixel_y = -28; tag = "icon-guest (NORTH)"},/turf/simulated/floor/tiled,/area/rnd/research) -"aQw" = (/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/corner/mauve/border,/obj/effect/floor_decal/borderfloor/corner2{tag = "icon-borderfloorcorner2 (NORTHWEST)"; icon_state = "borderfloorcorner2"; dir = 9},/obj/effect/floor_decal/corner/mauve/bordercorner2{tag = "icon-bordercolorcorner2 (NORTHWEST)"; icon_state = "bordercolorcorner2"; dir = 9},/turf/simulated/floor/tiled,/area/rnd/research) -"aQx" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/tiled,/area/rnd/research) -"aQy" = (/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/corner/mauve/border,/obj/effect/floor_decal/borderfloor/corner2,/obj/effect/floor_decal/corner/mauve/bordercorner2,/turf/simulated/floor/tiled,/area/rnd/research) -"aQz" = (/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/corner/mauve/border,/obj/structure/reagent_dispensers/acid{density = 0; pixel_x = 0; pixel_y = -30},/turf/simulated/floor/tiled,/area/rnd/research) -"aQA" = (/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (SOUTHEAST)"; icon_state = "borderfloor"; dir = 6},/obj/effect/floor_decal/corner/mauve/border{tag = "icon-bordercolor (SOUTHEAST)"; icon_state = "bordercolor"; dir = 6},/turf/simulated/floor/tiled,/area/rnd/research) -"aQB" = (/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (WEST)"; icon_state = "borderfloor"; dir = 8},/obj/effect/floor_decal/corner/yellow/border{tag = "icon-bordercolor (WEST)"; icon_state = "bordercolor"; dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals7{tag = "icon-steel_decals7 (WEST)"; icon_state = "steel_decals7"; dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals7,/obj/effect/floor_decal/steeldecal/steel_decals10{tag = "icon-steel_decals10 (EAST)"; icon_state = "steel_decals10"; dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals4{tag = "icon-steel_decals4 (NORTHWEST)"; icon_state = "steel_decals4"; dir = 9},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 8},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 8},/obj/structure/cable/cyan{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/disposalpipe/segment{dir = 1; icon_state = "pipe-c"},/turf/simulated/floor/tiled,/area/engineering/atmos/hallway) -"aQC" = (/obj/effect/floor_decal/borderfloor/corner,/obj/effect/floor_decal/corner/yellow/bordercorner,/obj/effect/floor_decal/steeldecal/steel_decals7{tag = "icon-steel_decals7 (NORTH)"; icon_state = "steel_decals7"; dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals7{tag = "icon-steel_decals7 (WEST)"; icon_state = "steel_decals7"; dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals7{tag = "icon-steel_decals7 (EAST)"; icon_state = "steel_decals7"; dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals10{tag = "icon-steel_decals10 (NORTH)"; icon_state = "steel_decals10"; dir = 1},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/disposalpipe/junction{icon_state = "pipe-j1"; dir = 4},/turf/simulated/floor/tiled,/area/engineering/atmos/hallway) -"aQD" = (/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/corner/yellow/border,/obj/effect/floor_decal/steeldecal/steel_decals7{tag = "icon-steel_decals7 (NORTH)"; icon_state = "steel_decals7"; dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals7{tag = "icon-steel_decals7 (WEST)"; icon_state = "steel_decals7"; dir = 8},/obj/machinery/atmospherics/pipe/manifold/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled,/area/engineering/atmos/hallway) -"aQE" = (/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/corner/yellow/border,/obj/effect/floor_decal/steeldecal/steel_decals7{tag = "icon-steel_decals7 (NORTH)"; icon_state = "steel_decals7"; dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals7{tag = "icon-steel_decals7 (WEST)"; icon_state = "steel_decals7"; dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled,/area/engineering/atmos/hallway) -"aQF" = (/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/corner/yellow/border,/obj/effect/floor_decal/steeldecal/steel_decals7{tag = "icon-steel_decals7 (NORTH)"; icon_state = "steel_decals7"; dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals7{tag = "icon-steel_decals7 (WEST)"; icon_state = "steel_decals7"; dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals4{tag = "icon-steel_decals4 (SOUTHEAST)"; icon_state = "steel_decals4"; dir = 6},/obj/machinery/atmospherics/pipe/manifold/hidden/supply,/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,/obj/machinery/light,/obj/structure/cable/cyan{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled,/area/engineering/atmos/hallway) -"aQG" = (/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/corner/yellow/border,/obj/effect/floor_decal/steeldecal/steel_decals7{tag = "icon-steel_decals7 (NORTH)"; icon_state = "steel_decals7"; dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals7{tag = "icon-steel_decals7 (WEST)"; icon_state = "steel_decals7"; dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/cable/cyan{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/item/device/radio/intercom{name = "Station Intercom (General)"; pixel_y = -21},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled,/area/engineering/atmos/hallway) -"aQH" = (/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/corner/yellow/border,/obj/effect/floor_decal/borderfloor/corner2{tag = "icon-borderfloorcorner2 (NORTHWEST)"; icon_state = "borderfloorcorner2"; dir = 9},/obj/effect/floor_decal/corner/yellow/bordercorner2{tag = "icon-bordercolorcorner2 (NORTHWEST)"; icon_state = "bordercolorcorner2"; dir = 9},/obj/effect/floor_decal/steeldecal/steel_decals7{tag = "icon-steel_decals7 (NORTH)"; icon_state = "steel_decals7"; dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals7{tag = "icon-steel_decals7 (WEST)"; icon_state = "steel_decals7"; dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/cable/cyan{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled,/area/engineering/atmos/hallway) -"aQI" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/cable/cyan{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled/steel_grid,/area/engineering/atmos/hallway) -"aQJ" = (/obj/machinery/door/airlock/glass_atmos,/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/cable/cyan{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/door/firedoor/glass,/turf/simulated/floor/tiled,/area/engineering/atmos/hallway) -"aQK" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/cable/cyan{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled,/area/engineering/atmos/hallway) -"aQL" = (/obj/machinery/atmospherics/pipe/simple/hidden/cyan{dir = 5; icon_state = "intact"; tag = "icon-intact-f (NORTHWEST)"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 9},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 9},/obj/structure/cable/cyan{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled,/area/engineering/atmos/hallway) -"aQM" = (/obj/machinery/atmospherics/pipe/simple/hidden/cyan{dir = 4; icon_state = "intact"; tag = "icon-intact-f (EAST)"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/cable/cyan{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/cable/cyan{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/structure/cable/cyan{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled,/area/engineering/atmos/hallway) -"aQN" = (/obj/machinery/atmospherics/pipe/simple/hidden/cyan{dir = 10; icon_state = "intact"; tag = "icon-intact-f (NORTHWEST)"},/obj/structure/cable/cyan{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/structure/disposalpipe/segment{dir = 8; icon_state = "pipe-c"},/turf/simulated/floor/tiled,/area/engineering/atmos/hallway) -"aQO" = (/obj/machinery/atmospherics/pipe/simple/hidden/yellow,/turf/simulated/floor/tiled,/area/engineering/atmos/hallway) -"aQP" = (/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (EAST)"; icon_state = "borderfloor"; dir = 4},/obj/effect/floor_decal/corner/yellow/border{tag = "icon-bordercolor (EAST)"; icon_state = "bordercolor"; dir = 4},/turf/simulated/floor/tiled,/area/engineering/atmos/hallway) -"aQQ" = (/obj/effect/floor_decal/steeldecal/steel_decals5{tag = "icon-steel_decals5 (EAST)"; icon_state = "steel_decals5"; dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals5{tag = "icon-steel_decals5 (WEST)"; icon_state = "steel_decals5"; dir = 8},/turf/simulated/floor/tiled,/area/engineering/atmos/monitoring) -"aQR" = (/obj/effect/floor_decal/steeldecal/steel_decals5{tag = "icon-steel_decals5 (EAST)"; icon_state = "steel_decals5"; dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals5{tag = "icon-steel_decals5 (WEST)"; icon_state = "steel_decals5"; dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals6{tag = "icon-steel_decals6 (NORTHEAST)"; icon_state = "steel_decals6"; dir = 5},/obj/machinery/alarm{dir = 8; icon_state = "alarm0"; pixel_x = 24},/turf/simulated/floor/tiled,/area/engineering/atmos/monitoring) -"aQS" = (/obj/machinery/light/small,/turf/simulated/floor/tiled/techfloor,/area/tether/surfacebase/emergency_storage/atrium) -"aQT" = (/obj/effect/decal/cleanable/dirt,/obj/structure/catwalk,/turf/simulated/floor/tiled/techfloor,/area/maintenance/lower/south) -"aQU" = (/obj/structure/railing,/obj/random/junk,/turf/simulated/floor,/area/maintenance/lower/south) -"aQV" = (/obj/structure/catwalk,/obj/machinery/atmospherics/pipe/simple/visible/scrubbers{dir = 6},/obj/machinery/atmospherics/pipe/simple/visible/supply{dir = 6},/turf/simulated/floor/tiled/techfloor,/area/maintenance/lower/south) -"aQW" = (/obj/structure/catwalk,/obj/machinery/atmospherics/pipe/simple/visible/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/visible/supply{dir = 4},/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/tiled/techfloor,/area/maintenance/lower/south) -"aQX" = (/obj/structure/catwalk,/obj/machinery/atmospherics/pipe/simple/visible/scrubbers{dir = 9},/obj/machinery/atmospherics/pipe/simple/visible/supply{dir = 9},/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/tiled/techfloor,/area/maintenance/lower/south) -"aQY" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/effect/decal/cleanable/dirt,/obj/machinery/atmospherics/pipe/simple/visible/supply,/obj/machinery/atmospherics/pipe/simple/visible/scrubbers,/obj/structure/catwalk,/turf/simulated/floor/plating,/area/rnd/lockers) -"aQZ" = (/obj/effect/floor_decal/techfloor{tag = "icon-techfloor_edges (NORTHEAST)"; icon_state = "techfloor_edges"; dir = 5},/obj/structure/railing{dir = 8},/obj/effect/floor_decal/rust,/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/tiled/techfloor,/area/rnd/lockers) -"aRa" = (/turf/simulated/wall/r_wall,/area/server) -"aRb" = (/obj/structure/sign/warning/server_room,/turf/simulated/wall/r_wall,/area/server) -"aRc" = (/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/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/door/airlock/command{name = "Server Room"; req_access = list(30)},/turf/simulated/floor/tiled,/area/server) -"aRd" = (/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (WEST)"; icon_state = "borderfloor"; dir = 8},/obj/effect/floor_decal/corner/yellow/border{tag = "icon-bordercolor (WEST)"; icon_state = "bordercolor"; dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals9,/obj/effect/floor_decal/steeldecal/steel_decals7{tag = "icon-steel_decals7 (WEST)"; icon_state = "steel_decals7"; dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/cable/cyan{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/firealarm{dir = 8; pixel_x = -24},/turf/simulated/floor/tiled,/area/engineering/atmos/hallway) -"aRe" = (/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (EAST)"; icon_state = "borderfloor"; dir = 4},/obj/effect/floor_decal/corner/yellow/border{tag = "icon-bordercolor (EAST)"; icon_state = "bordercolor"; dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals7{tag = "icon-steel_decals7 (EAST)"; icon_state = "steel_decals7"; dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals7{tag = "icon-steel_decals7 (NORTH)"; icon_state = "steel_decals7"; dir = 1},/obj/machinery/light_switch{pixel_x = 25},/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled,/area/engineering/atmos/hallway) -"aRf" = (/turf/simulated/wall,/area/engineering/drone_fabrication) -"aRg" = (/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (SOUTHWEST)"; icon_state = "borderfloor"; dir = 10},/obj/effect/floor_decal/corner/yellow/border{tag = "icon-bordercolor (SOUTHWEST)"; icon_state = "bordercolor"; dir = 10},/obj/effect/floor_decal/borderfloor/corner2{tag = "icon-borderfloorcorner2 (WEST)"; icon_state = "borderfloorcorner2"; dir = 8},/obj/effect/floor_decal/corner/yellow/bordercorner2{tag = "icon-bordercolorcorner2 (WEST)"; icon_state = "bordercolorcorner2"; dir = 8},/turf/simulated/floor/tiled,/area/engineering/atmos/hallway) -"aRh" = (/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/corner/yellow/border,/turf/simulated/floor/tiled,/area/engineering/atmos/hallway) -"aRi" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/effect/floor_decal/borderfloor/corner{tag = "icon-borderfloorcorner (WEST)"; icon_state = "borderfloorcorner"; dir = 8},/obj/effect/floor_decal/corner/yellow/bordercorner{tag = "icon-bordercolorcorner (WEST)"; icon_state = "bordercolorcorner"; dir = 8},/obj/structure/cable/cyan{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/tiled,/area/engineering/atmos/hallway) -"aRj" = (/obj/machinery/atmospherics/pipe/simple/hidden/cyan,/turf/simulated/floor/tiled,/area/engineering/atmos/hallway) -"aRk" = (/obj/machinery/light{dir = 4; icon_state = "tube1"; pixel_x = 0},/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (EAST)"; icon_state = "borderfloor"; dir = 4},/obj/effect/floor_decal/corner/yellow/border{tag = "icon-bordercolor (EAST)"; icon_state = "bordercolor"; dir = 4},/turf/simulated/floor/tiled,/area/engineering/atmos/hallway) -"aRl" = (/obj/machinery/computer/atmos_alert{dir = 4},/turf/simulated/floor/tiled,/area/engineering/atmos/monitoring) -"aRm" = (/obj/structure/bed/chair/office/light,/turf/simulated/floor/tiled,/area/engineering/atmos/monitoring) -"aRn" = (/obj/machinery/computer/security/engineering{dir = 8},/turf/simulated/floor/tiled,/area/engineering/atmos/monitoring) -"aRo" = (/obj/machinery/computer/rcon{dir = 4},/turf/simulated/floor/tiled,/area/engineering/atmos/monitoring) -"aRp" = (/obj/machinery/computer/power_monitor{dir = 8},/turf/simulated/floor/tiled,/area/engineering/atmos/monitoring) -"aRq" = (/obj/effect/floor_decal/corner_techfloor_grid{tag = "icon-corner_techfloor_grid (NORTHWEST)"; icon_state = "corner_techfloor_grid"; dir = 9},/turf/simulated/floor/tiled/techfloor,/area/maintenance/lower/south) -"aRr" = (/obj/structure/railing{dir = 4},/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/turf/simulated/floor/tiled/techfloor,/area/maintenance/lower/south) -"aRs" = (/obj/structure/catwalk,/obj/machinery/atmospherics/pipe/simple/visible/scrubbers,/obj/machinery/atmospherics/pipe/simple/visible/supply,/obj/structure/cable{d1 = 2; d2 = 8; icon_state = "2-8"},/turf/simulated/floor/tiled/techfloor,/area/maintenance/lower/south) -"aRt" = (/obj/effect/floor_decal/techfloor/corner{tag = "icon-techfloor_corners (EAST)"; icon_state = "techfloor_corners"; dir = 4},/obj/effect/decal/cleanable/dirt,/obj/effect/floor_decal/rust,/obj/machinery/atmospherics/pipe/simple/visible/black{dir = 5},/obj/random/tool,/turf/simulated/floor/tiled/techfloor,/area/maintenance/asmaint2) -"aRu" = (/obj/machinery/alarm{dir = 4; icon_state = "alarm0"; pixel_x = -22},/obj/effect/decal/cleanable/dirt,/obj/effect/floor_decal/rust,/obj/structure/cable/green{d1 = 2; d2 = 4; icon_state = "2-4"},/turf/simulated/floor/plating,/area/maintenance/asmaint2) -"aRv" = (/obj/structure/cable/green{icon_state = "16-0"},/obj/structure/cable/green{icon_state = "0-4"},/obj/machinery/atmospherics/pipe/zpipe/up/scrubbers{tag = "icon-up-scrubbers (EAST)"; icon_state = "up-scrubbers"; dir = 4},/obj/machinery/atmospherics/pipe/zpipe/up/supply{tag = "icon-up-supply (EAST)"; icon_state = "up-supply"; dir = 4},/obj/effect/decal/cleanable/dirt,/obj/structure/cable/green{d2 = 8; icon_state = "0-8"},/turf/simulated/floor/plating,/area/maintenance/asmaint2) -"aRw" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/visible/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/visible/scrubbers{dir = 4},/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/plating,/area/maintenance/asmaint2) -"aRx" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/visible/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/visible/scrubbers{dir = 4},/obj/effect/decal/cleanable/dirt,/obj/structure/railing{dir = 4},/turf/simulated/floor/plating,/area/maintenance/asmaint2) -"aRy" = (/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/effect/decal/cleanable/dirt,/obj/machinery/atmospherics/pipe/manifold/visible/supply{dir = 4},/obj/machinery/atmospherics/pipe/manifold/visible/scrubbers{dir = 4},/obj/structure/catwalk,/turf/simulated/floor/plating,/area/maintenance/asmaint2) -"aRz" = (/obj/effect/floor_decal/techfloor{tag = "icon-techfloor_edges (EAST)"; icon_state = "techfloor_edges"; dir = 4},/obj/structure/railing{dir = 8},/obj/effect/floor_decal/rust,/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/tiled/techfloor,/area/maintenance/asmaint2) -"aRA" = (/obj/machinery/computer/message_monitor{dir = 4},/obj/effect/floor_decal/techfloor{tag = "icon-techfloor_edges (NORTHWEST)"; icon_state = "techfloor_edges"; dir = 9},/turf/simulated/floor/tiled/techfloor,/area/server) -"aRB" = (/obj/structure/bed/chair/office/light{dir = 8},/obj/effect/floor_decal/techfloor{tag = "icon-techfloor_edges (NORTH)"; icon_state = "techfloor_edges"; dir = 1},/turf/simulated/floor/tiled/techfloor,/area/server) -"aRC" = (/obj/effect/floor_decal/techfloor{tag = "icon-techfloor_edges (NORTH)"; icon_state = "techfloor_edges"; dir = 1},/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/server) -"aRD" = (/obj/effect/floor_decal/techfloor{tag = "icon-techfloor_edges (NORTH)"; icon_state = "techfloor_edges"; dir = 1},/obj/machinery/camera/network/research,/turf/simulated/floor/tiled/techfloor,/area/server) -"aRE" = (/obj/machinery/atmospherics/portables_connector,/obj/machinery/portable_atmospherics/canister/nitrogen,/obj/effect/floor_decal/techfloor{tag = "icon-techfloor_edges (NORTH)"; icon_state = "techfloor_edges"; dir = 1},/obj/effect/floor_decal/industrial/outline/blue,/turf/simulated/floor/tiled/techfloor,/area/server) -"aRF" = (/obj/machinery/atmospherics/unary/freezer{dir = 2; icon_state = "freezer_1"; use_power = 1; power_setting = 20; set_temperature = 73},/obj/effect/floor_decal/techfloor{tag = "icon-techfloor_edges (NORTHEAST)"; icon_state = "techfloor_edges"; dir = 5},/obj/effect/floor_decal/industrial/outline/blue,/turf/simulated/floor/tiled/techfloor,/area/server) -"aRG" = (/obj/machinery/light{dir = 8; icon_state = "tube1"; pixel_y = 0},/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (WEST)"; icon_state = "borderfloor"; dir = 8},/obj/effect/floor_decal/corner/yellow/border{tag = "icon-bordercolor (WEST)"; icon_state = "bordercolor"; dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals7{tag = "icon-steel_decals7 (WEST)"; icon_state = "steel_decals7"; dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals7,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/cable/cyan{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/tiled,/area/engineering/atmos/hallway) -"aRH" = (/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (EAST)"; icon_state = "borderfloor"; dir = 4},/obj/effect/floor_decal/corner/yellow/border{tag = "icon-bordercolor (EAST)"; icon_state = "bordercolor"; dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals7{tag = "icon-steel_decals7 (EAST)"; icon_state = "steel_decals7"; dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals7{tag = "icon-steel_decals7 (NORTH)"; icon_state = "steel_decals7"; dir = 1},/obj/machinery/alarm{dir = 8; icon_state = "alarm0"; pixel_x = 24},/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled,/area/engineering/atmos/hallway) -"aRI" = (/obj/item/weapon/pickaxe,/turf/simulated/floor/tiled/techfloor,/area/engineering/atmos/hallway) -"aRJ" = (/obj/effect/floor_decal/techfloor{tag = "icon-techfloor_edges (NORTHWEST)"; icon_state = "techfloor_edges"; dir = 9},/obj/machinery/recharge_station,/turf/simulated/floor/tiled/techfloor,/area/engineering/drone_fabrication) -"aRK" = (/obj/effect/floor_decal/techfloor{tag = "icon-techfloor_edges (NORTH)"; icon_state = "techfloor_edges"; dir = 1},/obj/machinery/computer/cryopod/robot{pixel_y = 30},/turf/simulated/floor/tiled/techfloor,/area/engineering/drone_fabrication) -"aRL" = (/obj/effect/floor_decal/techfloor{tag = "icon-techfloor_edges (NORTHEAST)"; icon_state = "techfloor_edges"; dir = 5},/obj/machinery/cryopod/robot,/turf/simulated/floor/tiled/techfloor,/area/engineering/drone_fabrication) -"aRM" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (WEST)"; icon_state = "borderfloor"; dir = 8},/obj/effect/floor_decal/corner/yellow/border{tag = "icon-bordercolor (WEST)"; icon_state = "bordercolor"; dir = 8},/obj/structure/cable/cyan{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/tiled,/area/engineering/atmos/hallway) -"aRN" = (/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (EAST)"; icon_state = "borderfloor"; dir = 4},/obj/effect/floor_decal/corner/yellow/border{tag = "icon-bordercolor (EAST)"; icon_state = "bordercolor"; dir = 4},/obj/machinery/alarm{dir = 8; icon_state = "alarm0"; pixel_x = 24},/turf/simulated/floor/tiled,/area/engineering/atmos/hallway) -"aRO" = (/obj/structure/table/glass,/obj/item/weapon/wrench,/turf/simulated/floor/tiled,/area/engineering/atmos/monitoring) -"aRP" = (/obj/machinery/computer/atmoscontrol{dir = 1},/turf/simulated/floor/tiled,/area/engineering/atmos/monitoring) -"aRQ" = (/obj/structure/table/glass,/obj/machinery/camera/network/engineering{c_tag = "ENG - Pump Station"; dir = 1},/turf/simulated/floor/tiled,/area/engineering/atmos/monitoring) -"aRR" = (/obj/structure/table/glass,/obj/item/weapon/storage/box/donkpockets,/turf/simulated/floor/tiled,/area/engineering/atmos/monitoring) -"aRS" = (/obj/machinery/computer/station_alert{dir = 1},/turf/simulated/floor/tiled,/area/engineering/atmos/monitoring) -"aRT" = (/obj/structure/table/glass,/obj/item/device/radio/intercom{name = "Station Intercom (General)"; pixel_y = -21},/turf/simulated/floor/tiled,/area/engineering/atmos/monitoring) -"aRU" = (/obj/effect/decal/cleanable/dirt,/obj/structure/catwalk,/obj/structure/closet/crate,/obj/random/maintenance/clean,/obj/random/firstaid,/obj/random/maintenance/engineering,/obj/random/maintenance/security,/turf/simulated/floor,/area/maintenance/lower/south) -"aRV" = (/obj/effect/floor_decal/rust,/obj/effect/decal/cleanable/dirt,/obj/structure/catwalk,/obj/structure/closet/crate,/obj/random/maintenance/clean,/obj/random/maintenance/clean,/obj/random/junk,/obj/random/maintenance/engineering,/turf/simulated/floor,/area/maintenance/lower/south) -"aRW" = (/obj/effect/decal/cleanable/dirt,/obj/structure/catwalk,/obj/random/junk,/turf/simulated/floor,/area/maintenance/lower/south) -"aRX" = (/obj/effect/decal/cleanable/dirt,/obj/structure/catwalk,/turf/simulated/floor,/area/maintenance/lower/south) -"aRY" = (/obj/effect/floor_decal/rust,/obj/effect/decal/cleanable/dirt,/obj/structure/catwalk,/turf/simulated/floor,/area/maintenance/lower/south) -"aRZ" = (/obj/effect/floor_decal/rust,/obj/structure/table/rack,/obj/random/maintenance/clean,/obj/random/maintenance/clean,/obj/structure/catwalk,/obj/random/medical/lite,/obj/random/maintenance/cargo,/turf/simulated/floor/tiled/techfloor,/area/maintenance/lower/south) -"aSa" = (/obj/machinery/light/small,/obj/effect/floor_decal/corner_techfloor_grid/full,/turf/simulated/floor/tiled/techfloor,/area/maintenance/lower/south) -"aSb" = (/obj/structure/railing{dir = 4},/obj/effect/floor_decal/corner_techfloor_grid{tag = "icon-corner_techfloor_grid (SOUTHWEST)"; icon_state = "corner_techfloor_grid"; dir = 10},/obj/machinery/power/apc{dir = 2; name = "south bump"; pixel_y = -28},/obj/structure/cable,/turf/simulated/floor/tiled/techfloor,/area/maintenance/lower/south) -"aSc" = (/obj/structure/catwalk,/obj/effect/floor_decal/corner_techfloor_grid{tag = "icon-corner_techfloor_grid (WEST)"; icon_state = "corner_techfloor_grid"; dir = 8},/obj/machinery/atmospherics/pipe/simple/visible/scrubbers,/obj/machinery/atmospherics/pipe/simple/visible/supply,/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0},/turf/simulated/floor/tiled/techfloor,/area/maintenance/lower/south) -"aSd" = (/obj/structure/railing{dir = 8},/obj/structure/railing{dir = 1},/turf/simulated/floor/tiled/techfloor,/area/maintenance/lower/south) -"aSe" = (/obj/structure/railing{dir = 1},/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/tiled/techfloor,/area/maintenance/lower/south) -"aSf" = (/obj/structure/railing{dir = 1},/obj/effect/floor_decal/corner_techfloor_grid,/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/tiled/techfloor,/area/maintenance/lower/south) -"aSg" = (/obj/effect/floor_decal/corner_techfloor_grid/full{tag = "icon-corner_techfloor_grid_full (EAST)"; icon_state = "corner_techfloor_grid_full"; dir = 4},/turf/simulated/floor/tiled/techfloor,/area/maintenance/lower/south) -"aSh" = (/obj/effect/decal/cleanable/dirt,/obj/structure/lattice,/obj/structure/cable/green{icon_state = "32-1"},/obj/machinery/door/firedoor/glass,/turf/simulated/open,/area/maintenance/asmaint2) -"aSi" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/effect/decal/cleanable/dirt,/obj/machinery/atmospherics/pipe/simple/visible/supply,/obj/machinery/atmospherics/pipe/simple/visible/scrubbers,/obj/structure/catwalk,/turf/simulated/floor/plating,/area/maintenance/asmaint2) -"aSj" = (/obj/effect/floor_decal/techfloor{tag = "icon-techfloor_edges (EAST)"; icon_state = "techfloor_edges"; dir = 4},/obj/structure/railing{dir = 8},/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/tiled/techfloor,/area/maintenance/asmaint2) -"aSk" = (/obj/machinery/computer/rdservercontrol{dir = 4},/obj/effect/floor_decal/techfloor{tag = "icon-techfloor_edges (WEST)"; icon_state = "techfloor_edges"; dir = 8},/obj/machinery/alarm{dir = 4; icon_state = "alarm0"; pixel_x = -22; pixel_y = 0},/turf/simulated/floor/tiled/techfloor,/area/server) -"aSl" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 6},/turf/simulated/floor/tiled/techfloor,/area/server) -"aSm" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 9},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 5},/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/tiled/techfloor,/area/server) -"aSn" = (/obj/machinery/atmospherics/unary/vent_pump/on{dir = 8},/turf/simulated/floor/tiled/techfloor,/area/server) -"aSo" = (/obj/machinery/atmospherics/pipe/manifold/hidden{dir = 8; icon_state = "map"; tag = "icon-manifold-f (WEST)"},/turf/simulated/floor/tiled/techfloor,/area/server) -"aSp" = (/obj/machinery/atmospherics/pipe/simple/hidden{dir = 9; icon_state = "intact"; tag = "icon-intact-f (NORTHWEST)"},/obj/effect/floor_decal/techfloor{tag = "icon-techfloor_edges (EAST)"; icon_state = "techfloor_edges"; dir = 4},/obj/machinery/light{icon_state = "tube1"; dir = 4},/turf/simulated/floor/tiled/techfloor,/area/server) -"aSq" = (/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (WEST)"; icon_state = "borderfloor"; dir = 8},/obj/effect/floor_decal/corner/yellow/border{tag = "icon-bordercolor (WEST)"; icon_state = "bordercolor"; dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals7{tag = "icon-steel_decals7 (WEST)"; icon_state = "steel_decals7"; dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/cable/cyan{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/effect/floor_decal/steeldecal/steel_decals7,/obj/machinery/status_display{pixel_x = -32},/turf/simulated/floor/tiled,/area/engineering/atmos/hallway) -"aSr" = (/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (EAST)"; icon_state = "borderfloor"; dir = 4},/obj/effect/floor_decal/corner/yellow/border{tag = "icon-bordercolor (EAST)"; icon_state = "bordercolor"; dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals7{tag = "icon-steel_decals7 (EAST)"; icon_state = "steel_decals7"; dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals7{tag = "icon-steel_decals7 (NORTH)"; icon_state = "steel_decals7"; dir = 1},/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled,/area/engineering/atmos/hallway) -"aSs" = (/turf/simulated/floor/tiled/techfloor,/area/engineering/atmos/hallway) -"aSt" = (/obj/effect/floor_decal/techfloor{tag = "icon-techfloor_edges (WEST)"; icon_state = "techfloor_edges"; dir = 8},/obj/effect/floor_decal/industrial/warning,/turf/simulated/floor/tiled/techfloor,/area/engineering/drone_fabrication) -"aSu" = (/obj/effect/floor_decal/industrial/warning,/turf/simulated/floor/tiled/techfloor,/area/engineering/drone_fabrication) -"aSv" = (/obj/effect/floor_decal/corner_techfloor_grid{tag = "icon-corner_techfloor_grid (EAST)"; icon_state = "corner_techfloor_grid"; dir = 4},/obj/effect/floor_decal/industrial/warning,/obj/effect/landmark{name = "JoinLateCyborg"},/turf/simulated/floor/tiled/techfloor,/area/engineering/drone_fabrication) -"aSw" = (/obj/effect/floor_decal/techfloor{tag = "icon-techfloor_edges (NORTH)"; icon_state = "techfloor_edges"; dir = 1},/obj/effect/floor_decal/industrial/warning,/obj/machinery/alarm{frequency = 1441; pixel_y = 22},/turf/simulated/floor/tiled/techfloor,/area/engineering/drone_fabrication) -"aSx" = (/obj/effect/floor_decal/techfloor{tag = "icon-techfloor_edges (NORTHEAST)"; icon_state = "techfloor_edges"; dir = 5},/obj/effect/floor_decal/industrial/warning/corner{dir = 8},/obj/structure/cable/cyan{d2 = 2; icon_state = "0-2"},/obj/machinery/power/apc{dir = 4; name = "east bump"; pixel_x = 28},/obj/machinery/light_switch{pixel_y = 25},/turf/simulated/floor/tiled/techfloor,/area/engineering/drone_fabrication) -"aSy" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 5},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 5},/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (WEST)"; icon_state = "borderfloor"; dir = 8},/obj/effect/floor_decal/corner/yellow/border{tag = "icon-bordercolor (WEST)"; icon_state = "bordercolor"; dir = 8},/obj/effect/floor_decal/borderfloor/corner2{tag = "icon-borderfloorcorner2 (SOUTHWEST)"; icon_state = "borderfloorcorner2"; dir = 10},/obj/effect/floor_decal/corner/yellow/bordercorner2{tag = "icon-bordercolorcorner2 (SOUTHWEST)"; icon_state = "bordercolorcorner2"; dir = 10},/obj/structure/cable/cyan{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/tiled,/area/engineering/atmos/hallway) -"aSz" = (/obj/machinery/atmospherics/pipe/simple/hidden/cyan,/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/turf/simulated/floor/tiled,/area/engineering/atmos/hallway) -"aSA" = (/obj/machinery/atmospherics/pipe/simple/hidden/yellow,/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/turf/simulated/floor/tiled,/area/engineering/atmos/hallway) -"aSB" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 10},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 10},/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (EAST)"; icon_state = "borderfloor"; dir = 4},/obj/effect/floor_decal/corner/yellow/border{tag = "icon-bordercolor (EAST)"; icon_state = "bordercolor"; dir = 4},/turf/simulated/floor/tiled,/area/engineering/atmos/hallway) -"aSC" = (/turf/simulated/wall/r_wall,/area/engineering/atmos/storage) -"aSD" = (/obj/structure/catwalk,/obj/effect/floor_decal/corner_techfloor_grid/full,/obj/machinery/atmospherics/pipe/simple/visible/scrubbers,/obj/machinery/atmospherics/pipe/simple/visible/supply,/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0},/turf/simulated/floor/tiled/techfloor,/area/maintenance/lower/south) -"aSE" = (/obj/structure/catwalk,/obj/effect/floor_decal/corner_techfloor_grid{tag = "icon-corner_techfloor_grid (SOUTHWEST)"; icon_state = "corner_techfloor_grid"; dir = 10},/turf/simulated/floor/tiled/techfloor,/area/maintenance/lower/south) -"aSF" = (/obj/structure/railing{dir = 8},/obj/effect/floor_decal/corner_techfloor_grid{tag = "icon-corner_techfloor_grid (SOUTHWEST)"; icon_state = "corner_techfloor_grid"; dir = 10},/obj/random/junk,/turf/simulated/floor/tiled/techfloor,/area/maintenance/lower/south) -"aSG" = (/obj/effect/floor_decal/corner_techfloor_grid{tag = "icon-corner_techfloor_grid (SOUTHWEST)"; icon_state = "corner_techfloor_grid"; dir = 10},/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/tiled/techfloor,/area/maintenance/lower/south) -"aSH" = (/obj/effect/floor_decal/corner_techfloor_grid/full{tag = "icon-corner_techfloor_grid_full (EAST)"; icon_state = "corner_techfloor_grid_full"; dir = 4},/obj/effect/decal/cleanable/dirt,/obj/structure/closet/crate,/obj/random/maintenance/clean,/obj/random/maintenance/clean,/obj/random/maintenance/cargo,/obj/random/maintenance/research,/turf/simulated/floor/tiled/techfloor,/area/maintenance/lower/south) -"aSI" = (/obj/structure/railing{dir = 4},/obj/effect/floor_decal/techfloor{tag = "icon-techfloor_edges (WEST)"; icon_state = "techfloor_edges"; dir = 8},/obj/effect/decal/cleanable/dirt,/obj/effect/floor_decal/rust,/obj/machinery/atmospherics/pipe/simple/visible/purple{tag = "icon-intact (NORTH)"; icon_state = "intact"; dir = 1},/turf/simulated/floor/tiled/techfloor,/area/maintenance/asmaint2) -"aSJ" = (/obj/structure/catwalk,/obj/machinery/alarm{dir = 8; icon_state = "alarm0"; pixel_x = 24},/obj/effect/decal/cleanable/dirt,/mob/living/simple_animal/mouse,/turf/simulated/floor/tiled/techfloor,/area/maintenance/asmaint2) -"aSK" = (/obj/effect/floor_decal/techfloor{tag = "icon-techfloor_edges (WEST)"; icon_state = "techfloor_edges"; dir = 8},/obj/machinery/firealarm{dir = 8; pixel_x = -24},/turf/simulated/floor/tiled/techfloor,/area/server) -"aSL" = (/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 1},/obj/structure/cable/green{d1 = 2; d2 = 4; icon_state = "2-4"},/turf/simulated/floor/tiled/techfloor,/area/server) -"aSM" = (/obj/machinery/hologram/holopad,/obj/structure/cable/green{d1 = 1; d2 = 8; icon_state = "1-8"},/turf/simulated/floor/tiled/techfloor,/area/server) -"aSN" = (/obj/machinery/r_n_d/server/robotics,/obj/structure/window/reinforced{dir = 1},/obj/structure/window/reinforced{dir = 8},/turf/simulated/floor/bluegrid{name = "Server Base"; nitrogen = 500; oxygen = 0; temperature = 80},/area/server) -"aSO" = (/obj/machinery/atmospherics/pipe/simple/hidden,/obj/structure/window/reinforced{dir = 1},/turf/simulated/floor/bluegrid{name = "Server Base"; nitrogen = 500; oxygen = 0; temperature = 80},/area/server) -"aSP" = (/obj/machinery/r_n_d/server/core,/obj/structure/window/reinforced{dir = 1},/turf/simulated/floor/bluegrid{name = "Server Base"; nitrogen = 500; oxygen = 0; temperature = 80},/area/server) -"aSQ" = (/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (WEST)"; icon_state = "borderfloor"; dir = 8},/obj/effect/floor_decal/corner/yellow/border{tag = "icon-bordercolor (WEST)"; icon_state = "bordercolor"; dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/cable/cyan{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/effect/floor_decal/steeldecal/steel_decals7,/obj/effect/floor_decal/steeldecal/steel_decals7{tag = "icon-steel_decals7 (WEST)"; icon_state = "steel_decals7"; dir = 8},/obj/structure/cable/cyan{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/machinery/camera/network/engineering{c_tag = "ENG - Locker Room"; dir = 4},/turf/simulated/floor/tiled,/area/engineering/atmos/hallway) -"aSR" = (/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (EAST)"; icon_state = "borderfloor"; dir = 4},/obj/effect/floor_decal/corner/yellow/border{tag = "icon-bordercolor (EAST)"; icon_state = "bordercolor"; dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals7{tag = "icon-steel_decals7 (EAST)"; icon_state = "steel_decals7"; dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals7{tag = "icon-steel_decals7 (NORTH)"; icon_state = "steel_decals7"; dir = 1},/obj/machinery/power/apc{dir = 4; name = "east bump"; pixel_x = 28},/obj/structure/cable/cyan{d2 = 8; icon_state = "0-8"},/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled,/area/engineering/atmos/hallway) -"aSS" = (/obj/structure/bed/chair{dir = 4},/turf/simulated/floor/tiled/steel_dirty,/area/engineering/drone_fabrication) -"aST" = (/obj/machinery/computer/drone_control{dir = 8},/turf/simulated/floor/tiled/steel_dirty,/area/engineering/drone_fabrication) -"aSU" = (/obj/machinery/drone_fabricator,/turf/simulated/floor/tiled/steel_dirty,/area/engineering/drone_fabrication) -"aSV" = (/turf/simulated/floor/tiled/steel_dirty,/area/engineering/drone_fabrication) -"aSW" = (/obj/effect/floor_decal/techfloor/corner,/obj/effect/floor_decal/techfloor/corner{tag = "icon-techfloor_corners (EAST)"; icon_state = "techfloor_corners"; dir = 4},/obj/effect/floor_decal/industrial/warning{dir = 8},/obj/structure/cable/cyan{d1 = 1; d2 = 4; icon_state = "1-4"},/turf/simulated/floor/tiled/techfloor,/area/engineering/drone_fabrication) -"aSX" = (/obj/structure/cable/cyan{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/door/firedoor/glass,/obj/machinery/door/airlock/engineering{name = "Engineering Drone Fabrication"; req_one_access = list(11,24)},/turf/simulated/floor/tiled,/area/engineering/drone_fabrication) -"aSY" = (/obj/structure/cable/cyan{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/structure/cable/cyan{d1 = 1; d2 = 4; icon_state = "1-4"},/turf/simulated/floor/tiled,/area/engineering/atmos/hallway) -"aSZ" = (/obj/machinery/atmospherics/pipe/simple/hidden/cyan,/obj/structure/cable/cyan{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/tiled,/area/engineering/atmos/hallway) -"aTa" = (/obj/machinery/atmospherics/pipe/simple/hidden/yellow,/obj/structure/cable/cyan{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/tiled,/area/engineering/atmos/hallway) -"aTb" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/effect/floor_decal/borderfloor/corner{tag = "icon-borderfloorcorner (EAST)"; icon_state = "borderfloorcorner"; dir = 4},/obj/effect/floor_decal/corner/yellow/bordercorner{tag = "icon-bordercolorcorner (EAST)"; icon_state = "bordercolorcorner"; dir = 4},/obj/structure/cable/cyan{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/tiled,/area/engineering/atmos/hallway) -"aTc" = (/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (NORTH)"; icon_state = "borderfloor"; dir = 1},/obj/effect/floor_decal/corner/yellow/border{tag = "icon-bordercolor (NORTH)"; icon_state = "bordercolor"; dir = 1},/obj/structure/cable/cyan{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/extinguisher_cabinet{pixel_y = 30},/turf/simulated/floor/tiled,/area/engineering/atmos/hallway) -"aTd" = (/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (NORTH)"; icon_state = "borderfloor"; dir = 1},/obj/effect/floor_decal/corner/yellow/border{tag = "icon-bordercolor (NORTH)"; icon_state = "bordercolor"; dir = 1},/obj/structure/cable/cyan{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/power/apc{dir = 1; name = "north bump"; pixel_x = 0; pixel_y = 24},/obj/structure/cable/cyan{d2 = 8; icon_state = "0-8"},/turf/simulated/floor/tiled,/area/engineering/atmos/hallway) -"aTe" = (/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (NORTH)"; icon_state = "borderfloor"; dir = 1},/obj/effect/floor_decal/corner/yellow/border{tag = "icon-bordercolor (NORTH)"; icon_state = "bordercolor"; dir = 1},/obj/structure/cable/cyan{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/tiled,/area/engineering/atmos/hallway) -"aTf" = (/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (NORTHEAST)"; icon_state = "borderfloor"; dir = 5},/obj/effect/floor_decal/corner/yellow/border{tag = "icon-bordercolor (NORTHEAST)"; icon_state = "bordercolor"; dir = 5},/obj/effect/floor_decal/borderfloor/corner2{tag = "icon-borderfloorcorner2 (NORTHEAST)"; icon_state = "borderfloorcorner2"; dir = 5},/obj/effect/floor_decal/corner/yellow/bordercorner2{tag = "icon-bordercolorcorner2 (NORTHEAST)"; icon_state = "bordercolorcorner2"; dir = 5},/obj/structure/cable/cyan{d1 = 2; d2 = 8; icon_state = "2-8"},/turf/simulated/floor/tiled,/area/engineering/atmos/hallway) -"aTg" = (/obj/machinery/light_switch{pixel_y = 25},/turf/simulated/floor,/area/engineering/atmos/storage) -"aTh" = (/obj/machinery/alarm{frequency = 1441; pixel_y = 22},/turf/simulated/floor,/area/engineering/atmos/storage) -"aTi" = (/obj/machinery/space_heater,/turf/simulated/floor,/area/engineering/atmos/storage) -"aTj" = (/obj/machinery/door/airlock/multi_tile/metal/mait,/obj/machinery/door/firedoor/glass,/obj/machinery/atmospherics/pipe/simple/visible/scrubbers,/obj/machinery/atmospherics/pipe/simple/visible/supply,/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0},/turf/simulated/floor/tiled/techfloor/grid,/area/maintenance/lower/south) -"aTk" = (/obj/effect/floor_decal/techfloor{tag = "icon-techfloor_edges (SOUTHWEST)"; icon_state = "techfloor_edges"; dir = 10},/obj/effect/decal/cleanable/dirt,/obj/effect/floor_decal/rust,/obj/machinery/atmospherics/pipe/simple/visible/purple{tag = "icon-intact (NORTHEAST)"; icon_state = "intact"; dir = 5},/turf/simulated/floor/tiled/techfloor,/area/maintenance/asmaint2) -"aTl" = (/obj/effect/floor_decal/techfloor,/obj/effect/decal/cleanable/dirt,/obj/effect/floor_decal/rust,/obj/structure/closet,/obj/random/maintenance/research,/obj/random/maintenance/research,/obj/random/maintenance/engineering,/obj/random/drinkbottle,/obj/random/medical/lite,/obj/random/cigarettes,/turf/simulated/floor/tiled/techfloor,/area/maintenance/asmaint2) -"aTm" = (/obj/structure/railing{dir = 1},/obj/effect/floor_decal/techfloor,/obj/effect/decal/cleanable/dirt,/obj/effect/floor_decal/rust,/obj/machinery/atmospherics/pipe/simple/visible/purple{tag = "icon-intact (EAST)"; icon_state = "intact"; dir = 4},/turf/simulated/floor/tiled/techfloor,/area/maintenance/asmaint2) -"aTn" = (/obj/effect/floor_decal/techfloor,/obj/machinery/light_switch{pixel_x = -25},/obj/item/device/radio/intercom{name = "Station Intercom (General)"; pixel_y = -21},/turf/simulated/floor/tiled/techfloor/grid,/area/server) -"aTo" = (/obj/effect/floor_decal/techfloor,/obj/machinery/power/apc{dir = 2; name = "south bump"; pixel_y = -28},/obj/structure/cable/green,/turf/simulated/floor/tiled/techfloor,/area/server) -"aTp" = (/obj/machinery/door/window/westleft{dir = 8; name = "Server Room"; opacity = 0; req_access = list(30)},/obj/machinery/door/window/eastleft{name = "Server Room"},/obj/structure/window/reinforced{dir = 1},/turf/simulated/floor/tiled/techfloor/grid,/area/server) -"aTq" = (/obj/machinery/atmospherics/unary/vent_pump{dir = 4; icon_state = "map_vent_out"; use_power = 1},/turf/simulated/floor/bluegrid{name = "Server Base"; nitrogen = 500; oxygen = 0; temperature = 80},/area/server) -"aTr" = (/obj/machinery/atmospherics/pipe/manifold/hidden,/obj/machinery/alarm/server{dir = 1; pixel_x = 0; pixel_y = -22},/turf/simulated/floor/bluegrid{name = "Server Base"; nitrogen = 500; oxygen = 0; temperature = 80},/area/server) -"aTs" = (/obj/machinery/atmospherics/unary/vent_pump{dir = 8; external_pressure_bound = 0; external_pressure_bound_default = 0; icon_state = "map_vent_in"; initialize_directions = 1; internal_pressure_bound = 4000; internal_pressure_bound_default = 4000; pressure_checks = 2; pressure_checks_default = 2; pump_direction = 0; use_power = 1},/turf/simulated/floor/bluegrid{name = "Server Base"; nitrogen = 500; oxygen = 0; temperature = 80},/area/server) -"aTt" = (/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (WEST)"; icon_state = "borderfloor"; dir = 8},/obj/effect/floor_decal/corner/yellow/border{tag = "icon-bordercolor (WEST)"; icon_state = "bordercolor"; dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals7{tag = "icon-steel_decals7 (WEST)"; icon_state = "steel_decals7"; dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals7,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/cable/cyan{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/tiled,/area/engineering/atmos/hallway) -"aTu" = (/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (EAST)"; icon_state = "borderfloor"; dir = 4},/obj/effect/floor_decal/corner/yellow/border{tag = "icon-bordercolor (EAST)"; icon_state = "bordercolor"; dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals7{tag = "icon-steel_decals7 (EAST)"; icon_state = "steel_decals7"; dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals7{tag = "icon-steel_decals7 (NORTH)"; icon_state = "steel_decals7"; dir = 1},/obj/effect/decal/cleanable/dirt,/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled,/area/engineering/atmos/hallway) -"aTv" = (/obj/effect/floor_decal/techfloor{tag = "icon-techfloor_edges (SOUTHWEST)"; icon_state = "techfloor_edges"; dir = 10},/obj/effect/floor_decal/industrial/warning{dir = 1},/turf/simulated/floor/tiled/techfloor,/area/engineering/drone_fabrication) -"aTw" = (/obj/effect/floor_decal/techfloor,/obj/effect/floor_decal/industrial/warning{dir = 1},/turf/simulated/floor/tiled/techfloor,/area/engineering/drone_fabrication) -"aTx" = (/obj/machinery/light,/obj/effect/floor_decal/techfloor,/obj/effect/floor_decal/industrial/warning{dir = 1},/turf/simulated/floor/tiled/techfloor,/area/engineering/drone_fabrication) -"aTy" = (/obj/effect/floor_decal/techfloor,/obj/effect/floor_decal/industrial/warning{dir = 1},/obj/machinery/camera/network/engineering{c_tag = "ENG - Pump Station"; dir = 1},/turf/simulated/floor/tiled/techfloor,/area/engineering/drone_fabrication) -"aTz" = (/obj/effect/floor_decal/techfloor{tag = "icon-techfloor_edges (SOUTHEAST)"; icon_state = "techfloor_edges"; dir = 6},/obj/effect/floor_decal/industrial/warning/corner{icon_state = "warningcorner"; dir = 1},/obj/machinery/firealarm{dir = 4; pixel_x = 24},/turf/simulated/floor/tiled/techfloor,/area/engineering/drone_fabrication) -"aTA" = (/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (SOUTHWEST)"; icon_state = "borderfloor"; dir = 10},/obj/effect/floor_decal/corner/yellow/border{tag = "icon-bordercolor (SOUTHWEST)"; icon_state = "bordercolor"; dir = 10},/obj/effect/floor_decal/borderfloor/corner2{tag = "icon-borderfloorcorner2 (WEST)"; icon_state = "borderfloorcorner2"; dir = 8},/obj/effect/floor_decal/corner/yellow/bordercorner2{tag = "icon-bordercolorcorner2 (WEST)"; icon_state = "bordercolorcorner2"; dir = 8},/obj/machinery/camera/network/engineering{c_tag = "ENG - Pump Station"; dir = 1},/turf/simulated/floor/tiled,/area/engineering/atmos/hallway) -"aTB" = (/obj/machinery/atmospherics/pipe/simple/hidden/cyan,/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/corner/yellow/border,/obj/effect/floor_decal/borderfloor/corner2{tag = "icon-borderfloorcorner2 (NORTHWEST)"; icon_state = "borderfloorcorner2"; dir = 9},/obj/effect/floor_decal/corner/yellow/bordercorner2{tag = "icon-bordercolorcorner2 (NORTHWEST)"; icon_state = "bordercolorcorner2"; dir = 9},/turf/simulated/floor/tiled,/area/engineering/atmos/hallway) -"aTC" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/corner/yellow/border,/obj/effect/floor_decal/borderfloor/corner2,/obj/effect/floor_decal/corner/yellow/bordercorner2,/turf/simulated/floor/tiled,/area/engineering/atmos/hallway) -"aTD" = (/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/corner/yellow/border,/obj/item/device/radio/intercom{name = "Station Intercom (General)"; pixel_y = -21},/turf/simulated/floor/tiled,/area/engineering/atmos/hallway) -"aTE" = (/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/corner/yellow/border,/obj/effect/floor_decal/borderfloor/corner2{tag = "icon-borderfloorcorner2 (NORTHWEST)"; icon_state = "borderfloorcorner2"; dir = 9},/obj/effect/floor_decal/corner/yellow/bordercorner2{tag = "icon-bordercolorcorner2 (NORTHWEST)"; icon_state = "bordercolorcorner2"; dir = 9},/turf/simulated/floor/tiled,/area/engineering/atmos/hallway) -"aTF" = (/obj/structure/cable/cyan{d1 = 1; d2 = 4; icon_state = "1-4"},/turf/simulated/floor/tiled,/area/engineering/atmos/hallway) -"aTG" = (/obj/structure/cable/cyan{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/door/firedoor/glass,/obj/machinery/door/airlock/atmos,/turf/simulated/floor/tiled,/area/engineering/atmos/storage) -"aTH" = (/obj/effect/decal/cleanable/dirt,/obj/structure/cable/cyan{d1 = 2; d2 = 8; icon_state = "2-8"},/turf/simulated/floor,/area/engineering/atmos/storage) -"aTI" = (/obj/effect/decal/cleanable/dirt,/turf/simulated/floor,/area/engineering/atmos/storage) -"aTJ" = (/turf/simulated/floor,/area/engineering/atmos/storage) -"aTK" = (/obj/machinery/light/small{dir = 4; pixel_y = 0},/turf/simulated/floor,/area/engineering/atmos/storage) -"aTL" = (/obj/structure/catwalk,/obj/machinery/atmospherics/pipe/simple/visible/scrubbers,/obj/machinery/atmospherics/pipe/simple/visible/supply,/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0},/turf/simulated/floor/tiled/techfloor,/area/maintenance/lower/south) -"aTM" = (/turf/simulated/wall,/area/rnd/research_storage) -"aTN" = (/obj/machinery/atmospherics/pipe/simple/visible/scrubbers,/obj/machinery/atmospherics/pipe/simple/visible/supply,/obj/structure/cable/cyan{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/door/firedoor/glass,/obj/machinery/door/airlock/glass_atmos{name = "Atmospherics"; req_access = list(24)},/turf/simulated/floor/tiled,/area/engineering/atmos) -"aTO" = (/obj/machinery/door/firedoor/glass,/obj/structure/disposalpipe/segment,/obj/machinery/door/airlock/glass_atmos{name = "Atmospherics"; req_access = list(24)},/turf/simulated/floor/tiled,/area/engineering/atmos) -"aTP" = (/turf/simulated/wall,/area/engineering/atmos) -"aTQ" = (/obj/structure/grille,/obj/structure/window/reinforced{dir = 5; icon_state = "fwindow"},/obj/machinery/door/firedoor,/obj/machinery/atmospherics/pipe/simple/hidden/cyan,/turf/simulated/floor/plating,/area/engineering/atmos) -"aTR" = (/obj/machinery/door/firedoor,/obj/machinery/atmospherics/pipe/simple/hidden/yellow,/obj/machinery/door/airlock/glass_atmos{name = "Atmospherics"; req_access = list(24)},/turf/simulated/floor/plating,/area/engineering/atmos) -"aTS" = (/obj/structure/grille,/obj/structure/window/reinforced{dir = 5; icon_state = "fwindow"},/obj/machinery/door/firedoor,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/plating,/area/engineering/atmos) -"aTT" = (/obj/effect/decal/cleanable/dirt,/obj/structure/cable/cyan,/obj/machinery/power/apc{cell_type = /obj/item/weapon/cell/super; dir = 8; name = "west bump"; pixel_x = -28},/turf/simulated/floor,/area/engineering/atmos/storage) -"aTU" = (/obj/item/device/radio/intercom{dir = 4; name = "Station Intercom (General)"; pixel_x = 21},/turf/simulated/floor,/area/engineering/atmos/storage) -"aTV" = (/obj/structure/closet/firecloset,/turf/simulated/floor/tiled/steel_dirty,/area/rnd/research_storage) -"aTW" = (/obj/structure/closet/secure_closet/scientist,/obj/item/weapon/handcuffs/fuzzy,/turf/simulated/floor/tiled/steel_dirty,/area/rnd/research_storage) -"aTX" = (/obj/machinery/firealarm{dir = 2; layer = 3.3; pixel_x = 0; pixel_y = 26},/turf/simulated/floor/tiled/steel_dirty,/area/rnd/research_storage) -"aTY" = (/obj/effect/floor_decal/rust,/obj/machinery/camera/network/research,/turf/simulated/floor/tiled/steel_dirty,/area/rnd/research_storage) -"aTZ" = (/obj/effect/floor_decal/rust,/obj/machinery/light_switch{pixel_y = 25},/obj/item/device/radio/intercom{dir = 4; name = "Station Intercom (General)"; pixel_x = 21},/turf/simulated/floor/tiled/steel_dirty,/area/rnd/research_storage) -"aUa" = (/obj/effect/floor_decal/techfloor{tag = "icon-techfloor_edges (NORTHWEST)"; icon_state = "techfloor_edges"; dir = 9},/obj/structure/extinguisher_cabinet{pixel_y = 30},/turf/simulated/floor/tiled/techfloor,/area/engineering/atmos) -"aUb" = (/obj/machinery/atmospherics/pipe/simple/visible/cyan{tag = "icon-intact (SOUTHEAST)"; icon_state = "intact"; dir = 6},/obj/machinery/meter,/obj/effect/floor_decal/techfloor{tag = "icon-techfloor_edges (NORTH)"; icon_state = "techfloor_edges"; dir = 1},/turf/simulated/floor/tiled/techfloor,/area/engineering/atmos) -"aUc" = (/obj/machinery/atmospherics/pipe/simple/visible/cyan{dir = 4; icon_state = "intact"; tag = "icon-intact (EAST)"},/obj/machinery/light{dir = 1},/obj/effect/floor_decal/techfloor{tag = "icon-techfloor_edges (NORTH)"; icon_state = "techfloor_edges"; dir = 1},/turf/simulated/floor/tiled/techfloor,/area/engineering/atmos) -"aUd" = (/obj/machinery/atmospherics/pipe/simple/visible/cyan{dir = 4; icon_state = "intact"; tag = "icon-intact (EAST)"},/obj/effect/floor_decal/techfloor{tag = "icon-techfloor_edges (NORTH)"; icon_state = "techfloor_edges"; dir = 1},/obj/machinery/power/apc{dir = 1; name = "north bump"; pixel_x = 0; pixel_y = 24},/obj/structure/cable/cyan{d2 = 4; icon_state = "0-4"},/turf/simulated/floor/tiled/techfloor,/area/engineering/atmos) -"aUe" = (/obj/machinery/atmospherics/pipe/simple/visible/universal{dir = 4},/obj/effect/floor_decal/techfloor{tag = "icon-techfloor_edges (NORTH)"; icon_state = "techfloor_edges"; dir = 1},/obj/structure/cable/cyan{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/light_switch{pixel_y = 25},/turf/simulated/floor/tiled/techfloor,/area/engineering/atmos) -"aUf" = (/obj/machinery/atmospherics/pipe/simple/visible/supply{dir = 9},/obj/machinery/atmospherics/pipe/simple/visible/scrubbers{tag = "icon-intact-scrubbers (NORTHEAST)"; icon_state = "intact-scrubbers"; dir = 5},/obj/effect/floor_decal/techfloor/corner{tag = "icon-techfloor_corners (NORTH)"; icon_state = "techfloor_corners"; dir = 1},/obj/structure/cable/cyan{d1 = 1; d2 = 8; icon_state = "1-8"},/turf/simulated/floor/tiled/techfloor,/area/engineering/atmos) -"aUg" = (/obj/machinery/atmospherics/pipe/simple/visible/scrubbers{tag = "icon-intact-scrubbers (EAST)"; icon_state = "intact-scrubbers"; dir = 4},/obj/effect/floor_decal/techfloor/corner{tag = "icon-techfloor_corners (EAST)"; icon_state = "techfloor_corners"; dir = 4},/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled/techfloor,/area/engineering/atmos) -"aUh" = (/obj/machinery/atmospherics/pipe/simple/visible/universal{dir = 4},/obj/effect/floor_decal/techfloor{tag = "icon-techfloor_edges (NORTH)"; icon_state = "techfloor_edges"; dir = 1},/obj/machinery/status_display{pixel_y = 30},/turf/simulated/floor/tiled/techfloor,/area/engineering/atmos) -"aUi" = (/obj/machinery/atmospherics/pipe/simple/visible/yellow{dir = 10},/obj/machinery/meter,/obj/effect/floor_decal/techfloor{tag = "icon-techfloor_edges (NORTH)"; icon_state = "techfloor_edges"; dir = 1},/obj/item/device/radio/intercom{dir = 1; name = "Station Intercom (General)"; pixel_y = 21},/turf/simulated/floor/tiled/techfloor,/area/engineering/atmos) -"aUj" = (/obj/structure/table/standard,/obj/item/clothing/head/welding{pixel_x = -5; pixel_y = 3},/obj/item/clothing/glasses/welding,/obj/effect/floor_decal/techfloor{tag = "icon-techfloor_edges (NORTH)"; icon_state = "techfloor_edges"; dir = 1},/obj/structure/extinguisher_cabinet{pixel_y = 30},/turf/simulated/floor/tiled/techfloor,/area/engineering/atmos) -"aUk" = (/obj/structure/table/standard,/obj/machinery/requests_console{department = "Atmospherics"; departmentType = 3; name = "Atmos RC"; pixel_x = 0; pixel_y = 28},/obj/item/device/t_scanner,/obj/item/device/multitool{pixel_x = 5},/obj/item/device/radio/headset/headset_eng,/obj/item/weapon/cartridge/atmos,/obj/item/clothing/ears/earmuffs,/obj/item/clothing/ears/earmuffs,/obj/item/weapon/cartridge/atmos,/obj/item/device/pipe_painter,/obj/effect/floor_decal/techfloor{tag = "icon-techfloor_edges (NORTH)"; icon_state = "techfloor_edges"; dir = 1},/turf/simulated/floor/tiled/techfloor,/area/engineering/atmos) -"aUl" = (/obj/structure/table/standard,/obj/structure/closet/fireaxecabinet{pixel_y = 32},/obj/machinery/cell_charger,/obj/item/weapon/wrench,/obj/effect/floor_decal/techfloor{tag = "icon-techfloor_edges (NORTH)"; icon_state = "techfloor_edges"; dir = 1},/turf/simulated/floor/tiled/techfloor,/area/engineering/atmos) -"aUm" = (/obj/structure/table/standard,/obj/machinery/newscaster{pixel_y = 30},/obj/item/stack/material/steel{amount = 50},/obj/item/stack/material/glass{amount = 50},/obj/item/clothing/gloves/black,/obj/item/clothing/gloves/black,/obj/item/weapon/storage/belt/utility/atmostech,/obj/item/weapon/storage/belt/utility/atmostech,/obj/machinery/camera/network/engineering{c_tag = "ENG - Atmospherics Fore Starboard"; dir = 2},/obj/effect/floor_decal/techfloor{tag = "icon-techfloor_edges (NORTH)"; icon_state = "techfloor_edges"; dir = 1},/turf/simulated/floor/tiled/techfloor,/area/engineering/atmos) -"aUn" = (/obj/machinery/atmospherics/pipe/simple/visible/cyan{tag = "icon-intact (SOUTHEAST)"; icon_state = "intact"; dir = 6},/obj/machinery/light{dir = 1},/obj/effect/floor_decal/techfloor{tag = "icon-techfloor_edges (NORTH)"; icon_state = "techfloor_edges"; dir = 1},/turf/simulated/floor/tiled/techfloor,/area/engineering/atmos) -"aUo" = (/obj/machinery/atmospherics/pipe/simple/visible/cyan{dir = 4; icon_state = "intact"; tag = "icon-intact (EAST)"},/obj/effect/floor_decal/techfloor{tag = "icon-techfloor_edges (NORTH)"; icon_state = "techfloor_edges"; dir = 1},/obj/machinery/firealarm{dir = 2; layer = 3.3; pixel_x = 0; pixel_y = 26},/turf/simulated/floor/tiled/techfloor,/area/engineering/atmos) -"aUp" = (/obj/machinery/atmospherics/pipe/simple/visible/cyan{dir = 4; icon_state = "intact"; tag = "icon-intact (EAST)"},/obj/effect/floor_decal/techfloor{tag = "icon-techfloor_edges (NORTH)"; icon_state = "techfloor_edges"; dir = 1},/obj/machinery/alarm{frequency = 1441; pixel_y = 22},/turf/simulated/floor/tiled/techfloor,/area/engineering/atmos) -"aUq" = (/obj/machinery/atmospherics/pipe/simple/visible/cyan{dir = 4; icon_state = "intact"; tag = "icon-intact (EAST)"},/obj/effect/floor_decal/techfloor{tag = "icon-techfloor_edges (NORTH)"; icon_state = "techfloor_edges"; dir = 1},/obj/machinery/light_switch{pixel_y = 25},/turf/simulated/floor/tiled/techfloor,/area/engineering/atmos) -"aUr" = (/obj/machinery/atmospherics/pipe/manifold/visible/cyan{tag = "icon-map (EAST)"; icon_state = "map"; dir = 4},/obj/machinery/meter,/obj/effect/floor_decal/techfloor/corner{tag = "icon-techfloor_corners (NORTH)"; icon_state = "techfloor_corners"; dir = 1},/turf/simulated/floor/tiled/techfloor,/area/engineering/atmos) -"aUs" = (/obj/machinery/atmospherics/pipe/simple/visible/yellow,/turf/simulated/floor/tiled/techfloor,/area/engineering/atmos) -"aUt" = (/obj/machinery/atmospherics/pipe/simple/visible/supply,/obj/machinery/atmospherics/pipe/simple/visible/scrubbers{tag = "icon-intact-scrubbers (NORTHEAST)"; icon_state = "intact-scrubbers"; dir = 5},/obj/effect/floor_decal/techfloor/corner{tag = "icon-techfloor_corners (EAST)"; icon_state = "techfloor_corners"; dir = 4},/turf/simulated/floor/tiled/techfloor,/area/engineering/atmos) -"aUu" = (/obj/machinery/atmospherics/pipe/simple/visible/scrubbers{tag = "icon-intact-scrubbers (SOUTHWEST)"; icon_state = "intact-scrubbers"; dir = 10},/obj/effect/floor_decal/techfloor{tag = "icon-techfloor_edges (NORTH)"; icon_state = "techfloor_edges"; dir = 1},/obj/item/device/radio/intercom{dir = 1; name = "Station Intercom (General)"; pixel_y = 21},/turf/simulated/floor/tiled/techfloor,/area/engineering/atmos) -"aUv" = (/obj/effect/floor_decal/techfloor{tag = "icon-techfloor_edges (NORTH)"; icon_state = "techfloor_edges"; dir = 1},/obj/machinery/camera/network/engineering,/turf/simulated/floor/tiled/techfloor,/area/engineering/atmos) -"aUw" = (/obj/machinery/atmospherics/unary/freezer,/turf/simulated/floor/tiled/steel_dirty,/area/engineering/atmos) -"aUx" = (/obj/machinery/light{dir = 1},/obj/machinery/atmospherics/unary/heater{dir = 2; icon_state = "heater"},/turf/simulated/floor/tiled/steel_dirty,/area/engineering/atmos) -"aUy" = (/obj/machinery/atmospherics/portables_connector,/obj/effect/floor_decal/industrial/hatch/yellow,/obj/structure/extinguisher_cabinet{pixel_y = 30},/turf/simulated/floor/tiled/steel_dirty,/area/engineering/atmos) -"aUz" = (/obj/machinery/atmospherics/portables_connector,/obj/effect/floor_decal/industrial/hatch/yellow,/turf/simulated/floor/tiled/steel_dirty,/area/engineering/atmos) -"aUA" = (/obj/structure/closet/firecloset,/obj/random/maintenance/engineering,/turf/simulated/floor,/area/engineering/atmos/storage) -"aUB" = (/obj/effect/decal/cleanable/dirt,/mob/living/simple_animal/mouse,/turf/simulated/floor,/area/engineering/atmos/storage) -"aUC" = (/obj/effect/decal/cleanable/dirt,/obj/structure/dispenser{oxygentanks = 0},/turf/simulated/floor,/area/engineering/atmos/storage) -"aUD" = (/turf/simulated/mineral,/area/maintenance/lower/south) -"aUE" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/effect/decal/cleanable/dirt,/obj/machinery/atmospherics/pipe/simple/visible/supply,/obj/machinery/atmospherics/pipe/simple/visible/scrubbers,/obj/effect/floor_decal/rust,/obj/structure/catwalk,/turf/simulated/floor/plating,/area/maintenance/asmaint2) -"aUF" = (/obj/effect/floor_decal/techfloor{tag = "icon-techfloor_edges (EAST)"; icon_state = "techfloor_edges"; dir = 4},/obj/effect/floor_decal/techfloor{tag = "icon-techfloor_edges (SOUTHEAST)"; icon_state = "techfloor_edges"; dir = 6},/obj/structure/railing,/obj/structure/railing{dir = 8},/obj/effect/decal/cleanable/dirt,/obj/structure/closet/crate,/obj/random/maintenance/clean,/obj/random/maintenance/research,/obj/random/maintenance/research,/turf/simulated/floor/tiled/techfloor,/area/maintenance/asmaint2) -"aUG" = (/obj/machinery/alarm{dir = 4; icon_state = "alarm0"; pixel_x = -22; pixel_y = 0},/turf/simulated/floor/tiled/steel_dirty,/area/rnd/research_storage) -"aUH" = (/turf/simulated/floor/tiled/steel_dirty,/area/rnd/research_storage) -"aUI" = (/obj/effect/floor_decal/rust,/turf/simulated/floor/tiled/steel_dirty,/area/rnd/research_storage) -"aUJ" = (/obj/structure/ladder/updown,/obj/effect/floor_decal/rust,/turf/simulated/floor/tiled/steel_dirty,/area/rnd/research_storage) -"aUK" = (/obj/effect/floor_decal/techfloor{tag = "icon-techfloor_edges (WEST)"; icon_state = "techfloor_edges"; dir = 8},/turf/simulated/floor/tiled/techfloor,/area/engineering/atmos) -"aUL" = (/obj/machinery/atmospherics/binary/pump{dir = 1},/obj/effect/floor_decal/industrial/outline/yellow,/turf/simulated/floor/tiled/techfloor,/area/engineering/atmos) -"aUM" = (/turf/simulated/floor/tiled/techfloor,/area/engineering/atmos) -"aUN" = (/obj/machinery/atmospherics/pipe/simple/visible/cyan{tag = "icon-intact (SOUTHEAST)"; icon_state = "intact"; dir = 6},/turf/simulated/floor/tiled/techfloor,/area/engineering/atmos) -"aUO" = (/obj/machinery/atmospherics/binary/pump{dir = 4},/turf/simulated/floor/tiled/techfloor,/area/engineering/atmos) -"aUP" = (/obj/machinery/atmospherics/pipe/simple/visible/yellow{dir = 4},/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled/techfloor,/area/engineering/atmos) -"aUQ" = (/obj/machinery/atmospherics/pipe/manifold/visible/yellow{tag = "icon-map (NORTH)"; icon_state = "map"; dir = 1},/turf/simulated/floor/tiled/techfloor,/area/engineering/atmos) -"aUR" = (/obj/machinery/atmospherics/pipe/manifold/visible/yellow,/turf/simulated/floor/tiled/techfloor,/area/engineering/atmos) -"aUS" = (/obj/machinery/atmospherics/pipe/simple/visible/yellow{dir = 4},/turf/simulated/floor/tiled/techfloor,/area/engineering/atmos) -"aUT" = (/obj/machinery/atmospherics/pipe/simple/visible/cyan,/obj/machinery/atmospherics/pipe/simple/visible/yellow{dir = 4},/turf/simulated/floor/tiled/techfloor,/area/engineering/atmos) -"aUU" = (/obj/machinery/atmospherics/pipe/manifold/visible/yellow{tag = "icon-map (EAST)"; icon_state = "map"; dir = 4},/obj/machinery/meter,/turf/simulated/floor/tiled/techfloor,/area/engineering/atmos) -"aUV" = (/obj/machinery/atmospherics/pipe/simple/visible/universal,/turf/simulated/floor/tiled/techfloor,/area/engineering/atmos) -"aUW" = (/obj/machinery/atmospherics/pipe/manifold/visible/green{dir = 8},/turf/simulated/floor/tiled/techfloor,/area/engineering/atmos) -"aUX" = (/obj/machinery/atmospherics/pipe/manifold/visible/green{tag = "icon-map (EAST)"; icon_state = "map"; dir = 4},/turf/simulated/floor/tiled/techfloor,/area/engineering/atmos) -"aUY" = (/obj/machinery/atmospherics/pipe/manifold/visible/green{tag = "icon-map (EAST)"; icon_state = "map"; dir = 4},/obj/effect/floor_decal/techfloor{tag = "icon-techfloor_edges (EAST)"; icon_state = "techfloor_edges"; dir = 4},/turf/simulated/floor/tiled/techfloor,/area/engineering/atmos) -"aUZ" = (/obj/machinery/floodlight,/obj/effect/floor_decal/industrial/outline/yellow,/turf/simulated/floor,/area/engineering/atmos/storage) -"aVa" = (/obj/effect/decal/cleanable/dirt,/obj/machinery/floodlight,/obj/effect/floor_decal/industrial/outline/yellow,/turf/simulated/floor,/area/engineering/atmos/storage) -"aVb" = (/obj/structure/cable/green{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/effect/decal/cleanable/dirt,/obj/machinery/atmospherics/pipe/simple/visible/supply{tag = "icon-intact-supply (NORTHEAST)"; icon_state = "intact-supply"; dir = 5},/obj/machinery/atmospherics/pipe/simple/visible/scrubbers{tag = "icon-intact-scrubbers (NORTHEAST)"; icon_state = "intact-scrubbers"; dir = 5},/obj/effect/floor_decal/rust,/obj/structure/catwalk,/turf/simulated/floor/plating,/area/maintenance/asmaint2) -"aVc" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/effect/decal/cleanable/dirt,/obj/machinery/atmospherics/pipe/simple/visible/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/visible/scrubbers{dir = 4},/obj/effect/floor_decal/rust,/obj/structure/catwalk,/turf/simulated/floor/plating,/area/maintenance/asmaint2) -"aVd" = (/obj/machinery/door/firedoor/glass,/obj/machinery/door/airlock/maintenance/rnd,/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,/area/rnd/research_storage) -"aVe" = (/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 = 10},/turf/simulated/floor/tiled/steel_dirty,/area/rnd/research_storage) -"aVf" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 10},/turf/simulated/floor/tiled/steel_dirty,/area/rnd/research_storage) -"aVg" = (/obj/structure/cable/green{d1 = 2; d2 = 8; icon_state = "2-8"},/turf/simulated/floor/tiled/steel_dirty,/area/rnd/research_storage) -"aVh" = (/obj/effect/floor_decal/rust,/obj/structure/extinguisher_cabinet{dir = 8; icon_state = "extinguisher_closed"; pixel_x = 30; tag = "icon-extinguisher_closed (WEST)"},/turf/simulated/floor/tiled/steel_dirty,/area/rnd/research_storage) -"aVi" = (/obj/effect/floor_decal/techfloor{tag = "icon-techfloor_edges (WEST)"; icon_state = "techfloor_edges"; dir = 8},/obj/machinery/requests_console{pixel_x = -30},/turf/simulated/floor/tiled/techfloor,/area/engineering/atmos) -"aVj" = (/obj/machinery/atmospherics/pipe/manifold/visible/cyan{tag = "icon-map (WEST)"; icon_state = "map"; dir = 8},/obj/effect/floor_decal/corner_techfloor_gray{tag = "icon-corner_techfloor_gray (NORTH)"; icon_state = "corner_techfloor_gray"; dir = 1},/turf/simulated/floor/tiled/techmaint,/area/engineering/atmos) -"aVk" = (/obj/effect/floor_decal/industrial/warning/corner,/obj/machinery/atmospherics/pipe/simple/visible/cyan{dir = 4; icon_state = "intact"; tag = "icon-intact (EAST)"},/turf/simulated/floor/tiled/techmaint,/area/engineering/atmos) -"aVl" = (/obj/effect/floor_decal/industrial/warning,/obj/machinery/atmospherics/pipe/simple/visible/cyan{dir = 4; icon_state = "intact"; tag = "icon-intact (EAST)"},/turf/simulated/floor/tiled/techmaint,/area/engineering/atmos) -"aVm" = (/obj/effect/floor_decal/industrial/warning,/obj/machinery/atmospherics/pipe/manifold/visible/cyan,/turf/simulated/floor/tiled/techmaint,/area/engineering/atmos) -"aVn" = (/obj/effect/floor_decal/industrial/warning/corner{icon_state = "warningcorner"; dir = 8},/obj/machinery/atmospherics/pipe/simple/visible/cyan{dir = 4; icon_state = "intact"; tag = "icon-intact (EAST)"},/obj/effect/floor_decal/corner_techfloor_gray{tag = "icon-corner_techfloor_gray (EAST)"; icon_state = "corner_techfloor_gray"; dir = 4},/obj/structure/disposalpipe/segment{dir = 1; icon_state = "pipe-c"},/turf/simulated/floor/tiled/techmaint,/area/engineering/atmos) -"aVo" = (/obj/machinery/atmospherics/pipe/simple/visible/yellow,/obj/machinery/atmospherics/pipe/simple/visible/cyan{dir = 4; icon_state = "intact"; tag = "icon-intact (EAST)"},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled/techfloor,/area/engineering/atmos) -"aVp" = (/obj/machinery/atmospherics/pipe/simple/visible/cyan{dir = 4; icon_state = "intact"; tag = "icon-intact (EAST)"},/obj/structure/disposalpipe/segment{dir = 2; icon_state = "pipe-c"},/turf/simulated/floor/tiled/techfloor,/area/engineering/atmos) -"aVq" = (/obj/machinery/atmospherics/pipe/simple/visible/cyan{dir = 4; icon_state = "intact"; tag = "icon-intact (EAST)"},/turf/simulated/floor/tiled/techfloor,/area/engineering/atmos) -"aVr" = (/obj/machinery/atmospherics/binary/pump{dir = 4},/obj/effect/floor_decal/industrial/outline/blue,/turf/simulated/floor/tiled/techfloor,/area/engineering/atmos) -"aVs" = (/obj/machinery/atmospherics/pipe/simple/visible/cyan{dir = 9},/turf/simulated/floor/tiled/techfloor,/area/engineering/atmos) -"aVt" = (/obj/machinery/atmospherics/binary/pump{dir = 1},/turf/simulated/floor/tiled/techfloor,/area/engineering/atmos) -"aVu" = (/obj/machinery/atmospherics/binary/pump,/turf/simulated/floor/tiled/techfloor,/area/engineering/atmos) -"aVv" = (/obj/machinery/atmospherics/pipe/simple/visible/cyan{tag = "icon-intact (NORTHEAST)"; icon_state = "intact"; dir = 5},/turf/simulated/floor/tiled/techfloor,/area/engineering/atmos) -"aVw" = (/obj/machinery/atmospherics/pipe/simple/visible/yellow,/obj/machinery/atmospherics/pipe/simple/visible/cyan{dir = 4; icon_state = "intact"; tag = "icon-intact (EAST)"},/turf/simulated/floor/tiled/techfloor,/area/engineering/atmos) -"aVx" = (/obj/machinery/atmospherics/valve/digital/open,/turf/simulated/floor/tiled/techfloor,/area/engineering/atmos) -"aVy" = (/obj/machinery/atmospherics/binary/pump,/obj/effect/floor_decal/techfloor{tag = "icon-techfloor_edges (EAST)"; icon_state = "techfloor_edges"; dir = 4},/turf/simulated/floor/tiled/techfloor,/area/engineering/atmos) -"aVz" = (/obj/structure/table/steel,/obj/item/weapon/implantcase/chem,/obj/machinery/atmospherics/unary/vent_pump/on{dir = 1},/turf/simulated/floor/tiled/steel_dirty,/area/rnd/research_storage) -"aVA" = (/obj/structure/table/steel,/obj/item/weapon/locator,/obj/machinery/light/small{brightness_color = "#DA0205"; brightness_power = 1; brightness_range = 5},/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 1},/turf/simulated/floor/tiled/steel_dirty,/area/rnd/research_storage) -"aVB" = (/obj/structure/cable/green,/obj/machinery/power/apc{dir = 2; name = "south bump"; pixel_y = -28},/turf/simulated/floor/tiled/steel_dirty,/area/rnd/research_storage) -"aVC" = (/obj/structure/closet/wardrobe/robotics_black,/turf/simulated/floor/tiled/steel_dirty,/area/rnd/research_storage) -"aVD" = (/obj/structure/closet/wardrobe/robotics_black,/obj/effect/floor_decal/rust,/obj/random/maintenance/research,/turf/simulated/floor/tiled/steel_dirty,/area/rnd/research_storage) -"aVE" = (/obj/effect/floor_decal/techfloor{tag = "icon-techfloor_edges (WEST)"; icon_state = "techfloor_edges"; dir = 8},/obj/machinery/camera/network/engineering{c_tag = "ENG - Locker Room"; dir = 4},/turf/simulated/floor/tiled/techfloor,/area/engineering/atmos) -"aVF" = (/obj/machinery/atmospherics/pipe/simple/visible/cyan,/turf/simulated/floor/tiled/techmaint,/area/engineering/atmos) -"aVG" = (/obj/machinery/atmospherics/portables_connector,/obj/effect/floor_decal/industrial/warning{icon_state = "warning"; dir = 4},/obj/effect/floor_decal/industrial/hatch/yellow,/turf/simulated/floor/tiled/steel_dirty,/area/engineering/atmos) -"aVH" = (/obj/machinery/atmospherics/pipe/tank/nitrogen,/obj/effect/floor_decal/industrial/outline/yellow,/turf/simulated/floor/tiled/steel_dirty,/area/engineering/atmos) -"aVI" = (/obj/effect/floor_decal/industrial/warning{dir = 8},/turf/simulated/floor/tiled/techmaint,/area/engineering/atmos) -"aVJ" = (/obj/machinery/atmospherics/binary/pump,/obj/effect/floor_decal/industrial/outline/yellow,/turf/simulated/floor/tiled/techfloor,/area/engineering/atmos) -"aVK" = (/obj/machinery/atmospherics/pipe/simple/visible/green{tag = "icon-intact (SOUTHEAST)"; icon_state = "intact"; dir = 6},/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled/techfloor,/area/engineering/atmos) -"aVL" = (/obj/machinery/atmospherics/pipe/simple/visible/green{tag = "icon-intact (EAST)"; icon_state = "intact"; dir = 4},/turf/simulated/floor/tiled/techfloor,/area/engineering/atmos) -"aVM" = (/obj/machinery/atmospherics/pipe/manifold/visible/green{dir = 1},/turf/simulated/floor/tiled/techfloor,/area/engineering/atmos) -"aVN" = (/obj/machinery/atmospherics/pipe/manifold4w/visible/green,/turf/simulated/floor/tiled/techfloor,/area/engineering/atmos) -"aVO" = (/obj/machinery/atmospherics/pipe/simple/visible/yellow{tag = "icon-intact (NORTHEAST)"; icon_state = "intact"; dir = 5},/turf/simulated/floor/tiled/techfloor,/area/engineering/atmos) -"aVP" = (/obj/machinery/atmospherics/pipe/simple/visible/yellow{dir = 10},/turf/simulated/floor/tiled/techfloor,/area/engineering/atmos) -"aVQ" = (/obj/machinery/atmospherics/pipe/simple/visible/green,/turf/simulated/floor/tiled/techfloor,/area/engineering/atmos) -"aVR" = (/obj/machinery/atmospherics/pipe/simple/visible/green{dir = 5; icon_state = "intact"; tag = "icon-intact (SOUTHEAST)"},/turf/simulated/floor/tiled/techfloor,/area/engineering/atmos) -"aVS" = (/obj/machinery/atmospherics/pipe/manifold/visible/green,/obj/effect/floor_decal/corner_techfloor_gray{tag = "icon-corner_techfloor_gray (NORTH)"; icon_state = "corner_techfloor_gray"; dir = 1},/turf/simulated/floor/tiled/techmaint,/area/engineering/atmos) -"aVT" = (/obj/machinery/atmospherics/pipe/simple/visible/green{dir = 9; icon_state = "intact"; tag = "icon-intact (SOUTHEAST)"},/obj/structure/extinguisher_cabinet{dir = 8; icon_state = "extinguisher_closed"; pixel_x = 30; tag = "icon-extinguisher_closed (WEST)"},/turf/simulated/floor/tiled/techmaint,/area/engineering/atmos) -"aVU" = (/obj/structure/catwalk,/obj/machinery/firealarm{dir = 2; layer = 3.3; pixel_x = 0; pixel_y = 26},/turf/simulated/floor/tiled/techfloor,/area/maintenance/lower/south) -"aVV" = (/obj/machinery/light{dir = 8; icon_state = "tube1"; pixel_y = 0},/obj/effect/floor_decal/techfloor{tag = "icon-techfloor_edges (WEST)"; icon_state = "techfloor_edges"; dir = 8},/turf/simulated/floor/tiled/techfloor,/area/engineering/atmos) -"aVW" = (/obj/machinery/atmospherics/binary/pump{dir = 1},/obj/effect/floor_decal/industrial/warning/corner{icon_state = "warningcorner"; dir = 4},/turf/simulated/floor/tiled/techmaint,/area/engineering/atmos) -"aVX" = (/obj/machinery/atmospherics/pipe/manifold/visible/red{tag = "icon-map (WEST)"; icon_state = "map"; dir = 8},/obj/effect/floor_decal/industrial/warning{icon_state = "warning"; dir = 1},/turf/simulated/floor/tiled/techmaint,/area/engineering/atmos) -"aVY" = (/obj/machinery/atmospherics/pipe/manifold4w/visible/red,/obj/effect/floor_decal/industrial/warning{icon_state = "warning"; dir = 1},/obj/machinery/meter,/turf/simulated/floor/tiled/techmaint,/area/engineering/atmos) -"aVZ" = (/obj/machinery/atmospherics/pipe/manifold/visible/red{dir = 4; initialize_directions = 11},/obj/effect/floor_decal/industrial/warning{icon_state = "warning"; dir = 1},/turf/simulated/floor/tiled/techmaint,/area/engineering/atmos) -"aWa" = (/obj/effect/floor_decal/industrial/warning/corner{icon_state = "warningcorner"; dir = 1},/turf/simulated/floor/tiled/techmaint,/area/engineering/atmos) -"aWb" = (/obj/machinery/atmospherics/pipe/simple/visible/green,/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled/techfloor,/area/engineering/atmos) -"aWc" = (/obj/effect/floor_decal/industrial/outline/yellow,/turf/simulated/floor/tiled/steel_dirty,/area/engineering/atmos) -"aWd" = (/obj/machinery/atmospherics/portables_connector{dir = 1},/obj/effect/floor_decal/industrial/hatch/yellow,/turf/simulated/floor/tiled/steel_dirty,/area/engineering/atmos) -"aWe" = (/obj/machinery/atmospherics/pipe/simple/visible/yellow,/obj/machinery/atmospherics/pipe/simple/visible/green{tag = "icon-intact (EAST)"; icon_state = "intact"; dir = 4},/turf/simulated/floor/tiled/techfloor,/area/engineering/atmos) -"aWf" = (/obj/machinery/atmospherics/pipe/simple/visible/green{dir = 9; icon_state = "intact"; tag = "icon-intact (SOUTHEAST)"},/turf/simulated/floor/tiled/techfloor,/area/engineering/atmos) -"aWg" = (/obj/machinery/atmospherics/pipe/simple/visible/purple{tag = "icon-intact (SOUTHEAST)"; icon_state = "intact"; dir = 6},/turf/simulated/floor/tiled/techmaint,/area/engineering/atmos) -"aWh" = (/obj/effect/floor_decal/industrial/warning/corner,/obj/machinery/atmospherics/binary/pump{dir = 4},/turf/simulated/floor/tiled/techmaint,/area/engineering/atmos) -"aWi" = (/obj/effect/floor_decal/industrial/warning,/obj/machinery/atmospherics/portables_connector{dir = 8},/obj/effect/floor_decal/industrial/hatch/yellow,/obj/machinery/light{dir = 4; icon_state = "tube1"; pixel_x = 0},/turf/simulated/floor/tiled/steel_dirty,/area/engineering/atmos) -"aWj" = (/obj/structure/catwalk,/obj/machinery/atmospherics/pipe/simple/visible/scrubbers,/obj/machinery/atmospherics/pipe/simple/visible/supply,/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0},/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/tiled/techfloor,/area/maintenance/lower/south) -"aWk" = (/obj/effect/floor_decal/industrial/warning,/turf/simulated/floor/tiled/techmaint,/area/engineering/atmos) -"aWl" = (/obj/effect/floor_decal/industrial/warning/corner{icon_state = "warningcorner"; dir = 8},/obj/machinery/atmospherics/pipe/simple/visible/cyan,/turf/simulated/floor/tiled/techmaint,/area/engineering/atmos) -"aWm" = (/obj/machinery/atmospherics/pipe/simple/visible/red{tag = "icon-intact (NORTHEAST)"; icon_state = "intact"; dir = 5},/turf/simulated/floor/tiled/techmaint,/area/engineering/atmos) -"aWn" = (/obj/machinery/atmospherics/pipe/manifold/visible/red{dir = 4; initialize_directions = 11},/turf/simulated/floor/tiled/techmaint,/area/engineering/atmos) -"aWo" = (/obj/machinery/atmospherics/binary/pump,/turf/simulated/floor/tiled/techmaint,/area/engineering/atmos) -"aWp" = (/obj/machinery/atmospherics/binary/pump{dir = 1},/turf/simulated/floor/tiled/techmaint,/area/engineering/atmos) -"aWq" = (/turf/simulated/floor/tiled/techmaint,/area/engineering/atmos) -"aWr" = (/obj/structure/railing{dir = 1},/obj/structure/railing{dir = 8},/turf/simulated/open,/area/engineering/atmos) -"aWs" = (/obj/structure/railing{dir = 1},/turf/simulated/open,/area/engineering/atmos) -"aWt" = (/obj/structure/railing{dir = 1},/obj/structure/railing{dir = 4},/turf/simulated/open,/area/engineering/atmos) -"aWu" = (/obj/machinery/atmospherics/unary/vent_pump/on{dir = 4},/turf/simulated/floor/tiled/techfloor,/area/engineering/atmos) -"aWv" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 10},/turf/simulated/floor/tiled/techfloor,/area/engineering/atmos) -"aWw" = (/obj/machinery/atmospherics/omni/filter{tag_east = 4; tag_north = 2; tag_south = 1},/turf/simulated/floor/tiled/techmaint,/area/engineering/atmos) -"aWx" = (/obj/machinery/atmospherics/valve/digital/open{dir = 4; icon_state = "map_valve1"; tag = "icon-map_valve1 (WEST)"},/turf/simulated/floor/tiled/techmaint,/area/engineering/atmos) -"aWy" = (/obj/machinery/atmospherics/pipe/manifold/visible/purple,/turf/simulated/floor/tiled/techmaint,/area/engineering/atmos) -"aWz" = (/obj/effect/floor_decal/industrial/warning{icon_state = "warning"; dir = 4},/obj/machinery/atmospherics/pipe/manifold/visible/purple{tag = "icon-map (NORTH)"; icon_state = "map"; dir = 1},/obj/machinery/meter,/turf/simulated/floor/tiled/techmaint,/area/engineering/atmos) -"aWA" = (/obj/machinery/atmospherics/pipe/tank/nitrous_oxide{tag = "icon-n2o_map (WEST)"; icon_state = "n2o_map"; dir = 8},/obj/effect/floor_decal/industrial/outline/yellow,/turf/simulated/floor/tiled/steel_dirty,/area/engineering/atmos) -"aWB" = (/obj/machinery/atmospherics/pipe/tank/air{dir = 4},/obj/effect/floor_decal/industrial/outline/yellow,/turf/simulated/floor/tiled/steel_dirty,/area/engineering/atmos) -"aWC" = (/obj/effect/floor_decal/industrial/warning{dir = 8},/obj/machinery/atmospherics/pipe/manifold/visible/cyan{tag = "icon-map (EAST)"; icon_state = "map"; dir = 4},/turf/simulated/floor/tiled/techmaint,/area/engineering/atmos) -"aWD" = (/obj/machinery/atmospherics/valve/digital/open,/turf/simulated/floor/tiled/techmaint,/area/engineering/atmos) -"aWE" = (/obj/machinery/atmospherics/pipe/simple/visible/green,/turf/simulated/floor/tiled/techmaint,/area/engineering/atmos) -"aWF" = (/obj/machinery/atmospherics/omni/filter{tag_north = 1; tag_south = 2; tag_west = 3},/turf/simulated/floor/tiled/techmaint,/area/engineering/atmos) -"aWG" = (/obj/machinery/atmospherics/pipe/simple/visible/green,/obj/effect/floor_decal/industrial/warning/corner,/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled/techfloor,/area/engineering/atmos) -"aWH" = (/obj/effect/floor_decal/industrial/warning,/turf/simulated/floor/tiled/techfloor,/area/engineering/atmos) -"aWI" = (/obj/structure/railing{dir = 8},/turf/simulated/open,/area/engineering/atmos) -"aWJ" = (/turf/simulated/open,/area/engineering/atmos) -"aWK" = (/obj/structure/railing{dir = 4},/turf/simulated/open,/area/engineering/atmos) -"aWL" = (/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 4},/turf/simulated/floor/tiled/techfloor,/area/engineering/atmos) -"aWM" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 10},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/tiled/techfloor,/area/engineering/atmos) -"aWN" = (/obj/machinery/atmospherics/pipe/simple/visible/yellow,/obj/machinery/atmospherics/pipe/simple/visible/purple{tag = "icon-intact (EAST)"; icon_state = "intact"; dir = 4},/obj/effect/floor_decal/corner_techfloor_gray{tag = "icon-corner_techfloor_gray (WEST)"; icon_state = "corner_techfloor_gray"; dir = 8},/turf/simulated/floor/tiled/techmaint,/area/engineering/atmos) -"aWO" = (/obj/machinery/atmospherics/pipe/simple/visible/purple{tag = "icon-intact (EAST)"; icon_state = "intact"; dir = 4},/turf/simulated/floor/tiled/techmaint,/area/engineering/atmos) -"aWP" = (/obj/machinery/atmospherics/binary/pump{dir = 8},/turf/simulated/floor/tiled/techmaint,/area/engineering/atmos) -"aWQ" = (/obj/effect/floor_decal/industrial/warning{icon_state = "warning"; dir = 4},/obj/machinery/atmospherics/pipe/manifold/visible/purple,/turf/simulated/floor/tiled/techmaint,/area/engineering/atmos) -"aWR" = (/obj/structure/catwalk,/obj/machinery/atmospherics/pipe/simple/visible/scrubbers,/obj/machinery/atmospherics/pipe/simple/visible/supply,/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0},/obj/effect/decal/cleanable/dirt,/obj/structure/table/rack,/obj/random/maintenance/clean,/obj/random/maintenance/clean,/turf/simulated/floor/tiled/techfloor,/area/maintenance/lower/south) -"aWS" = (/obj/structure/catwalk,/obj/machinery/light/small{dir = 4; pixel_y = 0},/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/tiled/techfloor,/area/maintenance/lower/south) -"aWT" = (/obj/machinery/atmospherics/pipe/manifold4w/visible/cyan,/obj/effect/floor_decal/industrial/warning{dir = 8},/turf/simulated/floor/tiled/techmaint,/area/engineering/atmos) -"aWU" = (/obj/machinery/atmospherics/omni/mixer{tag_north = 1; tag_north_con = 0.79; tag_south = 1; tag_south_con = 0.21; tag_west = 2},/obj/effect/floor_decal/industrial/outline/yellow,/turf/simulated/floor/tiled/techmaint,/area/engineering/atmos) -"aWV" = (/obj/machinery/atmospherics/pipe/manifold/visible/green{dir = 8},/turf/simulated/floor/tiled/techmaint,/area/engineering/atmos) -"aWW" = (/obj/machinery/atmospherics/pipe/simple/visible/green{tag = "icon-intact (EAST)"; icon_state = "intact"; dir = 4},/turf/simulated/floor/tiled/techmaint,/area/engineering/atmos) -"aWX" = (/obj/machinery/atmospherics/pipe/simple/visible/yellow,/obj/machinery/atmospherics/pipe/simple/visible/green{tag = "icon-intact (EAST)"; icon_state = "intact"; dir = 4},/turf/simulated/floor/tiled/techmaint,/area/engineering/atmos) -"aWY" = (/obj/machinery/atmospherics/pipe/simple/visible/green{dir = 9; icon_state = "intact"; tag = "icon-intact (SOUTHEAST)"},/obj/effect/floor_decal/industrial/warning{dir = 4},/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled/techfloor,/area/engineering/atmos) -"aWZ" = (/turf/simulated/floor/tiled/steel_dirty,/area/engineering/atmos) -"aXa" = (/obj/structure/railing{dir = 4},/obj/machinery/atmospherics/pipe/zpipe/down{tag = "icon-down (EAST)"; icon_state = "down"; dir = 4},/turf/simulated/open,/area/engineering/atmos) -"aXb" = (/obj/machinery/atmospherics/pipe/simple/visible{tag = "icon-intact (SOUTHWEST)"; icon_state = "intact"; dir = 10},/turf/simulated/floor/tiled/techfloor,/area/engineering/atmos) -"aXc" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/tiled/techfloor,/area/engineering/atmos) -"aXd" = (/obj/machinery/atmospherics/pipe/simple/visible/black,/turf/simulated/floor/tiled/techfloor,/area/engineering/atmos) -"aXe" = (/obj/machinery/hologram/holopad,/turf/simulated/floor/tiled/techfloor,/area/engineering/atmos) -"aXf" = (/obj/effect/floor_decal/industrial/warning/corner{icon_state = "warningcorner"; dir = 4},/turf/simulated/floor/tiled/techmaint,/area/engineering/atmos) -"aXg" = (/obj/effect/floor_decal/industrial/warning{dir = 1},/obj/machinery/camera/network/engineering{c_tag = "ENG - Workshop Starboard"; dir = 8},/turf/simulated/floor/tiled/techmaint,/area/engineering/atmos) -"aXh" = (/obj/structure/catwalk,/obj/machinery/atmospherics/pipe/simple/visible/scrubbers,/obj/machinery/atmospherics/pipe/simple/visible/supply,/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0},/obj/structure/closet/crate,/obj/random/maintenance/clean,/obj/random/maintenance/clean,/turf/simulated/floor/tiled/techfloor,/area/maintenance/lower/south) -"aXi" = (/obj/effect/floor_decal/industrial/warning/dust{tag = "icon-warning_dust (WEST)"; icon_state = "warning_dust"; dir = 8},/obj/effect/floor_decal/industrial/warning/dust{tag = "icon-warning_dust (EAST)"; icon_state = "warning_dust"; dir = 4},/turf/simulated/floor/tiled/steel_dirty/virgo3b,/area/engineering/atmos/intake) -"aXj" = (/obj/machinery/atmospherics/pipe/simple/visible/blue{tag = "icon-intact (SOUTHEAST)"; icon_state = "intact"; dir = 6},/turf/simulated/floor/tiled/techmaint,/area/engineering/atmos) -"aXk" = (/obj/effect/floor_decal/industrial/warning{dir = 4},/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled/techfloor,/area/engineering/atmos) -"aXl" = (/obj/effect/floor_decal/industrial/warning/corner,/turf/simulated/floor/tiled/techmaint,/area/engineering/atmos) -"aXm" = (/obj/effect/floor_decal/industrial/warning,/obj/machinery/light_switch{pixel_x = 25},/turf/simulated/floor/tiled/techmaint,/area/engineering/atmos) -"aXn" = (/obj/structure/catwalk,/obj/machinery/atmospherics/pipe/simple/visible/scrubbers{dir = 5},/obj/machinery/atmospherics/pipe/simple/visible/supply{dir = 5},/obj/structure/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/structure/closet/crate,/obj/random/maintenance/clean,/obj/random/maintenance/cargo,/turf/simulated/floor/tiled/techfloor,/area/maintenance/lower/south) -"aXo" = (/obj/structure/catwalk,/obj/machinery/atmospherics/pipe/simple/visible/scrubbers{dir = 10},/obj/machinery/atmospherics/pipe/simple/visible/supply{dir = 10},/obj/structure/cable{d1 = 2; d2 = 8; icon_state = "2-8"},/turf/simulated/floor/tiled/techfloor,/area/maintenance/lower/south) -"aXp" = (/obj/effect/floor_decal/industrial/warning{icon_state = "warning"; dir = 1},/obj/machinery/camera/network/engineering{c_tag = "ENG - Locker Room"; dir = 4},/turf/simulated/floor/tiled/techmaint,/area/engineering/atmos) -"aXq" = (/obj/effect/floor_decal/industrial/warning/corner{icon_state = "warningcorner"; dir = 1},/obj/machinery/atmospherics/pipe/simple/visible/cyan,/turf/simulated/floor/tiled/techmaint,/area/engineering/atmos) -"aXr" = (/obj/machinery/atmospherics/pipe/manifold/visible/blue{tag = "icon-map (EAST)"; icon_state = "map"; dir = 4},/turf/simulated/floor/tiled/techmaint,/area/engineering/atmos) -"aXs" = (/obj/effect/floor_decal/industrial/warning/corner{icon_state = "warningcorner"; dir = 4},/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled/techfloor,/area/engineering/atmos) -"aXt" = (/obj/machinery/atmospherics/pipe/simple/visible/black{dir = 5},/turf/simulated/floor/tiled/techfloor,/area/engineering/atmos) -"aXu" = (/obj/machinery/atmospherics/pipe/simple/visible/yellow,/obj/machinery/atmospherics/pipe/simple/visible/black{dir = 4},/obj/effect/floor_decal/corner_techfloor_gray{tag = "icon-corner_techfloor_gray (NORTH)"; icon_state = "corner_techfloor_gray"; dir = 1},/turf/simulated/floor/tiled/techmaint,/area/engineering/atmos) -"aXv" = (/obj/machinery/atmospherics/pipe/simple/visible/black{dir = 4},/turf/simulated/floor/tiled/techmaint,/area/engineering/atmos) -"aXw" = (/obj/effect/floor_decal/industrial/warning{icon_state = "warning"; dir = 4},/obj/machinery/atmospherics/pipe/manifold/visible/black{dir = 1},/turf/simulated/floor/tiled/techmaint,/area/engineering/atmos) -"aXx" = (/obj/machinery/atmospherics/pipe/tank/carbon_dioxide{tag = "icon-co2_map (WEST)"; icon_state = "co2_map"; dir = 8},/obj/effect/floor_decal/industrial/outline/yellow,/turf/simulated/floor/tiled/steel_dirty,/area/engineering/atmos) -"aXy" = (/obj/machinery/atmospherics/binary/pump,/obj/effect/floor_decal/industrial/warning/corner,/turf/simulated/floor/tiled/techmaint,/area/engineering/atmos) -"aXz" = (/obj/machinery/atmospherics/pipe/manifold/visible/blue{tag = "icon-map (WEST)"; icon_state = "map"; dir = 8},/obj/effect/floor_decal/industrial/warning,/turf/simulated/floor/tiled/techmaint,/area/engineering/atmos) -"aXA" = (/obj/machinery/atmospherics/pipe/manifold4w/visible/blue,/obj/effect/floor_decal/industrial/warning,/obj/machinery/meter,/turf/simulated/floor/tiled/techmaint,/area/engineering/atmos) -"aXB" = (/obj/machinery/atmospherics/pipe/manifold/visible/blue{tag = "icon-map (EAST)"; icon_state = "map"; dir = 4},/obj/effect/floor_decal/industrial/warning,/turf/simulated/floor/tiled/techmaint,/area/engineering/atmos) -"aXC" = (/obj/effect/floor_decal/industrial/warning/corner{icon_state = "warningcorner"; dir = 8},/turf/simulated/floor/tiled/techmaint,/area/engineering/atmos) -"aXD" = (/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled/techfloor,/area/engineering/atmos) -"aXE" = (/obj/structure/railing{dir = 8},/obj/structure/railing,/turf/simulated/open,/area/engineering/atmos) -"aXF" = (/obj/structure/railing,/turf/simulated/open,/area/engineering/atmos) -"aXG" = (/obj/structure/railing,/obj/structure/railing{dir = 4},/turf/simulated/open,/area/engineering/atmos) -"aXH" = (/obj/machinery/atmospherics/omni/filter{tag_east = 5; tag_north = 2; tag_south = 1},/turf/simulated/floor/tiled/techmaint,/area/engineering/atmos) -"aXI" = (/obj/machinery/atmospherics/pipe/manifold/visible/black{dir = 1},/turf/simulated/floor/tiled/techmaint,/area/engineering/atmos) -"aXJ" = (/obj/effect/floor_decal/industrial/warning{icon_state = "warning"; dir = 4},/obj/machinery/atmospherics/pipe/manifold/visible/black,/obj/machinery/meter,/turf/simulated/floor/tiled/techmaint,/area/engineering/atmos) -"aXK" = (/obj/structure/closet,/obj/random/maintenance/security,/obj/random/contraband,/obj/random/maintenance/engineering,/obj/random/maintenance/engineering,/obj/effect/floor_decal/rust,/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/plating,/area/maintenance/lower/south) -"aXL" = (/obj/effect/floor_decal/techfloor{tag = "icon-techfloor_edges (WEST)"; icon_state = "techfloor_edges"; dir = 8},/obj/item/device/radio/intercom{dir = 8; name = "Station Intercom (General)"; pixel_x = -28},/turf/simulated/floor/tiled/techfloor,/area/engineering/atmos) -"aXM" = (/obj/machinery/atmospherics/portables_connector{dir = 1},/obj/effect/floor_decal/industrial/warning{icon_state = "warning"; dir = 4},/obj/effect/floor_decal/industrial/hatch/yellow,/turf/simulated/floor/tiled/steel_dirty,/area/engineering/atmos) -"aXN" = (/obj/machinery/atmospherics/pipe/tank/oxygen{tag = "icon-o2_map (NORTH)"; icon_state = "o2_map"; dir = 1},/obj/effect/floor_decal/industrial/outline/yellow,/turf/simulated/floor/tiled/steel_dirty,/area/engineering/atmos) -"aXO" = (/obj/machinery/atmospherics/pipe/manifold4w/visible/yellow,/obj/machinery/meter,/turf/simulated/floor/tiled/techfloor,/area/engineering/atmos) -"aXP" = (/obj/machinery/atmospherics/pipe/simple/visible/yellow{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 5},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 5},/turf/simulated/floor/tiled/techfloor,/area/engineering/atmos) -"aXQ" = (/obj/machinery/atmospherics/pipe/simple/visible/yellow{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled/techfloor,/area/engineering/atmos) -"aXR" = (/obj/machinery/atmospherics/pipe/simple/visible/yellow{dir = 9},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled/techfloor,/area/engineering/atmos) -"aXS" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 10},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 10},/turf/simulated/floor/tiled/techfloor,/area/engineering/atmos) -"aXT" = (/obj/machinery/atmospherics/pipe/simple/visible/black{dir = 5},/turf/simulated/floor/tiled/techmaint,/area/engineering/atmos) -"aXU" = (/obj/effect/floor_decal/industrial/warning/corner{icon_state = "warningcorner"; dir = 4},/obj/machinery/atmospherics/binary/pump{dir = 4},/turf/simulated/floor/tiled/techmaint,/area/engineering/atmos) -"aXV" = (/obj/effect/floor_decal/industrial/warning{icon_state = "warning"; dir = 1},/obj/machinery/atmospherics/portables_connector{dir = 8},/obj/effect/floor_decal/industrial/hatch/yellow,/obj/machinery/light{dir = 4; icon_state = "tube1"; pixel_x = 0},/turf/simulated/floor/tiled/steel_dirty,/area/engineering/atmos) -"aXW" = (/obj/structure/catwalk,/obj/effect/decal/cleanable/cobweb,/turf/simulated/floor/tiled/techfloor,/area/maintenance/lower/south) -"aXX" = (/obj/structure/catwalk,/obj/machinery/alarm{frequency = 1441; pixel_y = 22},/turf/simulated/floor/tiled/techfloor,/area/maintenance/lower/south) -"aXY" = (/obj/effect/floor_decal/rust,/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/plating,/area/maintenance/lower/south) -"aXZ" = (/obj/effect/floor_decal/techfloor{tag = "icon-techfloor_edges (WEST)"; icon_state = "techfloor_edges"; dir = 8},/obj/machinery/light_switch{pixel_x = -25},/turf/simulated/floor/tiled/techfloor,/area/engineering/atmos) -"aYa" = (/obj/effect/floor_decal/corner_techfloor_gray{tag = "icon-corner_techfloor_gray (WEST)"; icon_state = "corner_techfloor_gray"; dir = 8},/turf/simulated/floor/tiled/techmaint,/area/engineering/atmos) -"aYb" = (/obj/effect/floor_decal/industrial/warning{icon_state = "warning"; dir = 1},/turf/simulated/floor/tiled/techmaint,/area/engineering/atmos) -"aYc" = (/obj/effect/floor_decal/industrial/warning/corner{icon_state = "warningcorner"; dir = 1},/obj/effect/floor_decal/corner_techfloor_gray,/turf/simulated/floor/tiled/techmaint,/area/engineering/atmos) -"aYd" = (/obj/effect/floor_decal/industrial/warning/corner,/turf/simulated/floor/tiled/techfloor,/area/engineering/atmos) -"aYe" = (/obj/effect/floor_decal/industrial/warning/corner{icon_state = "warningcorner"; dir = 8},/turf/simulated/floor/tiled/techfloor,/area/engineering/atmos) -"aYf" = (/obj/effect/floor_decal/corner_techfloor_grid,/turf/simulated/floor/tiled/techfloor,/area/engineering/atmos) -"aYg" = (/obj/machinery/light,/obj/effect/floor_decal/techfloor,/turf/simulated/floor/tiled/techfloor,/area/engineering/atmos) -"aYh" = (/obj/effect/floor_decal/techfloor,/turf/simulated/floor/tiled/techfloor,/area/engineering/atmos) -"aYi" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/tiled/techfloor,/area/engineering/atmos) -"aYj" = (/obj/effect/floor_decal/techfloor,/obj/item/device/radio/intercom{name = "Station Intercom (General)"; pixel_y = -21},/turf/simulated/floor/tiled/techfloor,/area/engineering/atmos) -"aYk" = (/obj/structure/extinguisher_cabinet{dir = 8; icon_state = "extinguisher_closed"; pixel_x = 30; tag = "icon-extinguisher_closed (WEST)"},/turf/simulated/floor/tiled/techmaint,/area/engineering/atmos) -"aYl" = (/obj/structure/railing{dir = 1},/obj/structure/railing{dir = 8},/obj/effect/decal/cleanable/dirt,/obj/structure/table/rack,/obj/random/maintenance/engineering,/obj/random/maintenance/engineering,/obj/random/maintenance/cargo,/turf/simulated/floor/tiled/techfloor,/area/maintenance/lower/south) -"aYm" = (/obj/structure/railing{dir = 1},/turf/simulated/floor/tiled/techfloor,/area/maintenance/lower/south) -"aYn" = (/obj/structure/railing{dir = 1},/obj/structure/railing{dir = 4},/turf/simulated/floor/tiled/techfloor,/area/maintenance/lower/south) -"aYo" = (/obj/structure/table/standard,/obj/effect/floor_decal/techfloor{tag = "icon-techfloor_edges (WEST)"; icon_state = "techfloor_edges"; dir = 8},/turf/simulated/floor/tiled/techfloor,/area/engineering/atmos) -"aYp" = (/obj/structure/window/reinforced{dir = 4},/turf/simulated/floor/tiled/techfloor,/area/engineering/atmos) -"aYq" = (/obj/machinery/portable_atmospherics/canister/empty,/turf/simulated/floor/tiled/steel_dirty,/area/engineering/atmos) -"aYr" = (/obj/machinery/portable_atmospherics/canister/air,/turf/simulated/floor/tiled/steel_dirty,/area/engineering/atmos) -"aYs" = (/obj/machinery/portable_atmospherics/canister/nitrogen,/turf/simulated/floor/tiled/steel_dirty,/area/engineering/atmos) -"aYt" = (/obj/machinery/portable_atmospherics/canister/oxygen,/turf/simulated/floor/tiled/steel_dirty,/area/engineering/atmos) -"aYu" = (/obj/machinery/portable_atmospherics/canister/sleeping_agent,/turf/simulated/floor/tiled/steel_dirty,/area/engineering/atmos) -"aYv" = (/obj/machinery/portable_atmospherics/canister/carbon_dioxide,/turf/simulated/floor/tiled/steel_dirty,/area/engineering/atmos) -"aYw" = (/obj/machinery/atmospherics/portables_connector{dir = 4},/obj/effect/floor_decal/industrial/hatch/yellow,/turf/simulated/floor/tiled/techfloor,/area/engineering/atmos) -"aYx" = (/obj/machinery/atmospherics/pipe/manifold/visible/yellow{tag = "icon-map (EAST)"; icon_state = "map"; dir = 4},/turf/simulated/floor/tiled/techfloor,/area/engineering/atmos) -"aYy" = (/obj/effect/floor_decal/techfloor{tag = "icon-techfloor_edges (EAST)"; icon_state = "techfloor_edges"; dir = 4},/obj/machinery/camera/network/engineering{c_tag = "ENG - Workshop Starboard"; dir = 8},/turf/simulated/floor/tiled/techfloor,/area/engineering/atmos) -"aYz" = (/obj/machinery/door/firedoor/glass,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/door/airlock/atmos{name = "Atmospherics Maintenance"; req_access = list(24)},/turf/simulated/floor/tiled/techfloor/grid,/area/engineering/atmos) -"aYA" = (/obj/structure/catwalk,/obj/machinery/light/small{dir = 8},/obj/structure/cable{icon_state = "2-4"},/turf/simulated/floor/tiled/techfloor,/area/maintenance/lower/south) -"aYB" = (/obj/structure/railing{dir = 8},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/tiled/techfloor,/area/maintenance/lower/south) -"aYC" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/tiled/techfloor,/area/maintenance/lower/south) -"aYD" = (/obj/structure/railing{dir = 4},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/tiled/techfloor,/area/maintenance/lower/south) -"aYE" = (/obj/structure/catwalk,/obj/machinery/light/small{dir = 4; pixel_y = 0},/obj/structure/cable{d1 = 2; d2 = 8; icon_state = "2-8"},/turf/simulated/floor/tiled/techfloor,/area/maintenance/lower/south) -"aYF" = (/obj/structure/disposalpipe/segment{dir = 1; icon_state = "pipe-c"},/turf/simulated/floor/tiled/techfloor,/area/engineering/atmos) -"aYG" = (/obj/structure/disposalpipe/segment{dir = 2; icon_state = "pipe-c"},/turf/simulated/floor/tiled/techfloor,/area/engineering/atmos) -"aYH" = (/obj/effect/floor_decal/techfloor{tag = "icon-techfloor_edges (EAST)"; icon_state = "techfloor_edges"; dir = 4},/turf/simulated/floor/tiled/techfloor,/area/engineering/atmos) -"aYI" = (/obj/structure/railing,/obj/structure/railing{dir = 4},/obj/effect/floor_decal/techfloor{tag = "icon-techfloor_edges (NORTHWEST)"; icon_state = "techfloor_edges"; dir = 9},/obj/structure/closet,/obj/random/maintenance/engineering,/obj/random/maintenance/clean,/obj/random/maintenance/engineering,/turf/simulated/floor/tiled/techfloor,/area/maintenance/lower/south) -"aYJ" = (/obj/structure/catwalk,/obj/machinery/atmospherics/pipe/manifold/visible/supply{dir = 8},/obj/machinery/atmospherics/pipe/manifold/visible/scrubbers{dir = 8},/turf/simulated/floor/tiled/techfloor,/area/maintenance/lower/south) -"aYK" = (/obj/structure/railing,/obj/structure/railing{dir = 8},/obj/effect/floor_decal/techfloor{tag = "icon-techfloor_edges (NORTH)"; icon_state = "techfloor_edges"; dir = 1},/obj/machinery/atmospherics/pipe/simple/visible/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/visible/supply{dir = 4},/turf/simulated/floor/tiled/techfloor,/area/maintenance/lower/south) -"aYL" = (/obj/structure/railing,/obj/effect/floor_decal/techfloor{tag = "icon-techfloor_edges (NORTH)"; icon_state = "techfloor_edges"; dir = 1},/obj/machinery/atmospherics/pipe/simple/visible/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/visible/supply{dir = 4},/turf/simulated/floor/tiled/techfloor,/area/maintenance/lower/south) -"aYM" = (/obj/structure/railing,/obj/machinery/light/small{dir = 1},/obj/effect/floor_decal/techfloor{tag = "icon-techfloor_edges (NORTH)"; icon_state = "techfloor_edges"; dir = 1},/obj/machinery/atmospherics/pipe/simple/visible/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/visible/supply{dir = 4},/turf/simulated/floor/tiled/techfloor,/area/maintenance/lower/south) -"aYN" = (/obj/structure/railing,/obj/effect/floor_decal/techfloor{tag = "icon-techfloor_edges (NORTH)"; icon_state = "techfloor_edges"; dir = 1},/obj/machinery/firealarm{dir = 2; layer = 3.3; pixel_x = 0; pixel_y = 26},/obj/machinery/atmospherics/pipe/simple/visible/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/visible/supply{dir = 4},/turf/simulated/floor/tiled/techfloor,/area/maintenance/lower/south) -"aYO" = (/obj/structure/railing,/obj/effect/floor_decal/techfloor{tag = "icon-techfloor_edges (NORTH)"; icon_state = "techfloor_edges"; dir = 1},/obj/machinery/atmospherics/pipe/simple/visible/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/visible/supply{dir = 4},/obj/structure/cable{icon_state = "2-4"},/turf/simulated/floor/tiled/techfloor,/area/maintenance/lower/south) -"aYP" = (/obj/structure/railing{dir = 4},/obj/structure/railing,/obj/effect/floor_decal/techfloor{tag = "icon-techfloor_edges (NORTH)"; icon_state = "techfloor_edges"; dir = 1},/obj/machinery/atmospherics/pipe/simple/visible/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/visible/supply{dir = 4},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/tiled/techfloor,/area/maintenance/lower/south) -"aYQ" = (/obj/structure/catwalk,/obj/effect/floor_decal/techfloor{tag = "icon-techfloor_edges (NORTH)"; icon_state = "techfloor_edges"; dir = 1},/obj/machinery/atmospherics/pipe/simple/visible/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/visible/supply{dir = 4},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/tiled/techfloor,/area/maintenance/lower/south) -"aYR" = (/obj/structure/catwalk,/obj/machinery/atmospherics/pipe/simple/visible/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/visible/supply{dir = 4},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/tiled/techfloor,/area/maintenance/lower/south) -"aYS" = (/obj/structure/catwalk,/obj/effect/floor_decal/techfloor,/obj/machinery/atmospherics/pipe/simple/visible/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/visible/supply{dir = 4},/obj/structure/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/turf/simulated/floor/tiled/techfloor,/area/maintenance/lower/south) -"aYT" = (/obj/structure/railing{dir = 8},/obj/effect/floor_decal/techfloor,/obj/machinery/atmospherics/pipe/simple/visible/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/visible/supply{dir = 4},/turf/simulated/floor/tiled/techfloor,/area/maintenance/lower/south) -"aYU" = (/obj/effect/floor_decal/techfloor,/obj/machinery/atmospherics/pipe/simple/visible/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/visible/supply{dir = 4},/obj/effect/decal/cleanable/dirt,/mob/living/simple_animal/mouse,/turf/simulated/floor/tiled/techfloor,/area/maintenance/lower/south) -"aYV" = (/obj/effect/floor_decal/techfloor,/obj/machinery/atmospherics/pipe/simple/visible/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/visible/supply{dir = 4},/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/tiled/techfloor,/area/maintenance/lower/south) -"aYW" = (/obj/structure/railing{dir = 4},/obj/effect/floor_decal/techfloor,/obj/machinery/atmospherics/pipe/simple/visible/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/visible/supply{dir = 4},/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/tiled/techfloor,/area/maintenance/lower/south) -"aYX" = (/obj/structure/catwalk,/obj/effect/floor_decal/techfloor,/obj/machinery/atmospherics/pipe/simple/visible/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/visible/supply{dir = 4},/obj/structure/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/turf/simulated/floor/tiled/techfloor,/area/maintenance/lower/south) -"aYY" = (/obj/structure/catwalk,/obj/machinery/atmospherics/pipe/simple/visible/scrubbers{dir = 9},/obj/machinery/atmospherics/pipe/simple/visible/supply{dir = 9},/obj/structure/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/turf/simulated/floor/tiled/techfloor,/area/maintenance/lower/south) -"aYZ" = (/obj/structure/table/standard,/obj/effect/floor_decal/techfloor{tag = "icon-techfloor_edges (SOUTHWEST)"; icon_state = "techfloor_edges"; dir = 10},/turf/simulated/floor/tiled/techfloor,/area/engineering/atmos) -"aZa" = (/obj/structure/table/standard,/obj/effect/floor_decal/techfloor,/turf/simulated/floor/tiled/techfloor,/area/engineering/atmos) -"aZb" = (/obj/structure/table/standard,/obj/effect/floor_decal/techfloor,/obj/machinery/camera/network/engineering{c_tag = "ENG - Pump Station"; dir = 1},/turf/simulated/floor/tiled/techfloor,/area/engineering/atmos) -"aZc" = (/obj/effect/floor_decal/techfloor,/obj/machinery/space_heater,/turf/simulated/floor/tiled/techfloor,/area/engineering/atmos) -"aZd" = (/obj/structure/table/rack{dir = 8; layer = 2.9},/obj/item/clothing/shoes/magboots,/obj/item/clothing/suit/space/void/atmos,/obj/item/clothing/mask/breath,/obj/item/clothing/head/helmet/space/void/atmos,/obj/structure/window/reinforced{dir = 8},/obj/machinery/door/window/northleft{name = "Atmospherics Hardsuits"; req_access = list(24)},/obj/item/clothing/suit/space/void/atmos/taur,/obj/item/clothing/head/helmet/space/void/atmos,/turf/simulated/floor/tiled/techfloor,/area/engineering/atmos) -"aZe" = (/obj/structure/table/rack{dir = 8; layer = 2.9},/obj/item/clothing/shoes/magboots,/obj/item/clothing/suit/space/void/atmos,/obj/item/clothing/mask/breath,/obj/item/clothing/head/helmet/space/void/atmos,/obj/machinery/door/window/northright{name = "Atmospherics Hardsuits"; req_access = list(24)},/obj/structure/window/reinforced{dir = 4},/obj/item/clothing/suit/space/void/atmos/taur,/obj/item/clothing/head/helmet/space/void/atmos,/turf/simulated/floor/tiled/techfloor,/area/engineering/atmos) -"aZf" = (/obj/machinery/pipedispenser/disposal,/obj/effect/floor_decal/industrial/outline/yellow,/turf/simulated/floor/tiled/techfloor,/area/engineering/atmos) -"aZg" = (/obj/machinery/pipedispenser,/obj/effect/floor_decal/industrial/outline/yellow,/turf/simulated/floor/tiled/techfloor,/area/engineering/atmos) -"aZh" = (/obj/effect/floor_decal/techfloor,/obj/machinery/disposal,/obj/structure/disposalpipe/trunk{dir = 1},/turf/simulated/floor/tiled/techfloor,/area/engineering/atmos) -"aZi" = (/obj/structure/window/reinforced{dir = 4},/obj/effect/floor_decal/techfloor,/obj/machinery/camera/network/engineering{c_tag = "ENG - Pump Station"; dir = 1},/turf/simulated/floor/tiled/techfloor,/area/engineering/atmos) -"aZj" = (/obj/machinery/portable_atmospherics/canister/oxygen,/obj/machinery/light,/turf/simulated/floor/tiled/steel_dirty,/area/engineering/atmos) -"aZk" = (/obj/machinery/atmospherics/pipe/simple/visible/yellow{dir = 9},/obj/effect/floor_decal/corner_techfloor_grid,/obj/effect/floor_decal/corner_techfloor_grid{tag = "icon-corner_techfloor_grid (WEST)"; icon_state = "corner_techfloor_grid"; dir = 8},/turf/simulated/floor/tiled/techfloor,/area/engineering/atmos) -"aZl" = (/obj/effect/floor_decal/techfloor{tag = "icon-techfloor_edges (SOUTHEAST)"; icon_state = "techfloor_edges"; dir = 6},/turf/simulated/floor/tiled/techfloor,/area/engineering/atmos) -"aZm" = (/obj/structure/catwalk,/obj/machinery/atmospherics/pipe/simple/visible/supply,/obj/machinery/atmospherics/pipe/simple/visible/scrubbers,/turf/simulated/floor/tiled/techfloor,/area/maintenance/lower/south) -"aZn" = (/obj/structure/catwalk,/obj/structure/cable{icon_state = "2-4"},/turf/simulated/floor/tiled/techfloor,/area/maintenance/lower/south) -"aZo" = (/obj/structure/catwalk,/obj/structure/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/turf/simulated/floor/tiled/techfloor,/area/maintenance/lower/south) -"aZp" = (/obj/structure/railing{dir = 8},/obj/structure/railing{dir = 1},/obj/effect/floor_decal/techfloor{tag = "icon-techfloor_edges (EAST)"; icon_state = "techfloor_edges"; dir = 4},/obj/machinery/atmospherics/pipe/simple/visible/supply,/obj/machinery/atmospherics/pipe/simple/visible/scrubbers,/turf/simulated/floor/tiled/techfloor,/area/maintenance/lower/south) -"aZq" = (/obj/structure/sign/department/telecoms,/turf/simulated/wall,/area/maintenance/substation/tcomms) -"aZr" = (/obj/machinery/door/airlock/maintenance/engi{name = "Telecomms Substation"},/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0},/obj/machinery/door/firedoor,/turf/simulated/floor/plating,/area/maintenance/substation/tcomms) -"aZs" = (/obj/structure/sign/securearea{desc = "A warning sign which reads 'HIGH VOLTAGE'"; icon_state = "shock"; name = "HIGH VOLTAGE"; pixel_y = 0},/turf/simulated/wall,/area/maintenance/substation/tcomms) -"aZt" = (/turf/simulated/wall,/area/maintenance/substation/tcomms) -"aZu" = (/obj/structure/railing{dir = 8},/obj/effect/floor_decal/techfloor{tag = "icon-techfloor_edges (EAST)"; icon_state = "techfloor_edges"; dir = 4},/obj/machinery/atmospherics/pipe/simple/visible/supply,/obj/machinery/atmospherics/pipe/simple/visible/scrubbers,/turf/simulated/floor/tiled/techfloor,/area/maintenance/lower/south) -"aZv" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0},/obj/structure/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/effect/floor_decal/industrial/warning,/turf/simulated/floor/plating,/area/maintenance/substation/tcomms) -"aZw" = (/obj/machinery/power/terminal,/obj/structure/cable{icon_state = "0-8"},/obj/effect/floor_decal/industrial/warning,/turf/simulated/floor/plating,/area/maintenance/substation/tcomms) -"aZx" = (/obj/machinery/alarm{frequency = 1441; pixel_y = 22},/obj/effect/floor_decal/industrial/warning/corner{tag = "icon-warningcorner (WEST)"; icon_state = "warningcorner"; dir = 8},/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/plating,/area/maintenance/substation/tcomms) -"aZy" = (/obj/machinery/power/apc{dir = 4; name = "east bump"; pixel_x = 28},/obj/machinery/camera/network/engineering,/obj/structure/cable/green{d2 = 2; icon_state = "0-2"},/turf/simulated/floor/plating,/area/maintenance/substation/tcomms) -"aZz" = (/turf/simulated/wall/r_wall,/area/tcommsat/computer) -"aZA" = (/obj/machinery/power/breakerbox/activated{RCon_tag = "Telecomms Substation Bypass"},/turf/simulated/floor/plating,/area/maintenance/substation/tcomms) -"aZB" = (/obj/machinery/power/smes/buildable{charge = 100000; RCon_tag = "Substation - Telecomms"},/obj/structure/cable/green{icon_state = "0-4"},/obj/structure/cable/green{icon_state = "0-8"},/turf/simulated/floor/plating,/area/maintenance/substation/tcomms) -"aZC" = (/obj/machinery/power/sensor{name = "Powernet Sensor - Telecomms Subgrid"; name_tag = "Telecomms Subgrid"},/obj/effect/floor_decal/industrial/warning{dir = 8},/obj/structure/cable/green{icon_state = "0-8"},/obj/structure/cable/green{d2 = 2; icon_state = "0-2"},/obj/structure/cable/green{d2 = 4; icon_state = "0-4"},/turf/simulated/floor/plating,/area/maintenance/substation/tcomms) -"aZD" = (/obj/machinery/light/small{brightness_color = "#DA0205"; brightness_power = 1; brightness_range = 5},/obj/structure/cable/green{d1 = 1; d2 = 8; icon_state = "1-8"},/turf/simulated/floor/plating,/area/maintenance/substation/tcomms) -"aZE" = (/turf/simulated/wall/r_wall,/area/maintenance/substation/tcomms) -"aZF" = (/turf/simulated/wall/r_wall,/area/tcommsat/entrance) -"aZG" = (/obj/machinery/atmospherics/portables_connector,/obj/machinery/portable_atmospherics/canister/air/airlock,/turf/simulated/floor/tiled/dark,/area/tcommsat/computer) -"aZH" = (/obj/structure/filingcabinet,/obj/machinery/status_display{pixel_y = 30},/turf/simulated/floor/tiled/dark,/area/tcommsat/computer) -"aZI" = (/obj/structure/table/standard,/obj/item/weapon/folder/yellow,/obj/item/weapon/folder/yellow,/obj/machinery/light{dir = 1},/obj/machinery/firealarm{dir = 2; layer = 3.3; pixel_x = 0; pixel_y = 26},/turf/simulated/floor/tiled/dark,/area/tcommsat/computer) -"aZJ" = (/obj/structure/table/standard,/obj/item/weapon/paper_bin,/obj/item/weapon/pen/blue{pixel_x = -3; pixel_y = 2},/turf/simulated/floor/tiled/dark,/area/tcommsat/computer) -"aZK" = (/obj/machinery/alarm{frequency = 1441; pixel_y = 22},/turf/simulated/floor/tiled/dark,/area/tcommsat/computer) -"aZL" = (/obj/structure/table/standard,/obj/item/device/flashlight/lamp,/turf/simulated/floor/tiled/dark,/area/tcommsat/computer) -"aZM" = (/obj/machinery/door/airlock/highsecurity{name = "Telecomms Access"; req_one_access = list(61)},/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/door/firedoor,/turf/simulated/wall/r_wall,/area/tcommsat/entrance) -"aZN" = (/obj/structure/sign/securearea,/turf/simulated/wall/r_wall,/area/tcommsat/entrance) -"aZO" = (/obj/machinery/porta_turret{dir = 6},/obj/machinery/light{dir = 1},/turf/simulated/floor/tiled/dark,/area/tcommsat/entrance) -"aZP" = (/obj/machinery/camera/network/telecom,/turf/simulated/floor/tiled/dark,/area/tcommsat/entrance) -"aZQ" = (/obj/machinery/turretid/lethal{ailock = 1; check_synth = 1; control_area = "\improper Telecoms Satellite"; desc = "A firewall prevents AIs from interacting with this device."; name = "Telecoms lethal turret control"; pixel_x = 29; pixel_y = 0; req_access = list(61)},/obj/structure/extinguisher_cabinet{pixel_y = 30},/obj/effect/decal/cleanable/cobweb2,/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/tiled/dark,/area/tcommsat/entrance) -"aZR" = (/obj/machinery/atmospherics/pipe/simple/hidden{dir = 5; icon_state = "intact"; tag = "icon-intact-f (NORTHEAST)"},/turf/simulated/floor/tiled,/area/tcommsat/computer) -"aZS" = (/obj/machinery/atmospherics/pipe/simple/hidden{dir = 4; icon_state = "intact"; tag = "icon-intact-f (EAST)"},/turf/simulated/floor/tiled,/area/tcommsat/computer) -"aZT" = (/obj/structure/bed/chair/office/dark{dir = 1},/obj/machinery/atmospherics/pipe/simple/hidden{dir = 4; icon_state = "intact"; tag = "icon-intact-f (EAST)"},/turf/simulated/floor/tiled,/area/tcommsat/computer) -"aZU" = (/obj/machinery/atmospherics/pipe/simple/hidden{tag = "icon-intact (EAST)"; icon_state = "intact"; dir = 4},/turf/simulated/floor/tiled,/area/tcommsat/computer) -"aZV" = (/obj/machinery/atmospherics/pipe/simple/hidden{dir = 10; icon_state = "intact"; tag = "icon-intact-f (SOUTHWEST)"},/turf/simulated/floor/tiled,/area/tcommsat/computer) -"aZW" = (/obj/machinery/computer/telecomms/monitor{dir = 8; network = "tcommsat"},/turf/simulated/floor/tiled/dark,/area/tcommsat/computer) -"aZX" = (/obj/effect/floor_decal/techfloor{tag = "icon-techfloor_edges (EAST)"; icon_state = "techfloor_edges"; dir = 4},/obj/structure/railing{dir = 8},/obj/structure/railing,/obj/machinery/atmospherics/pipe/simple/visible/supply,/obj/machinery/atmospherics/pipe/simple/visible/scrubbers,/obj/structure/table/rack,/obj/random/maintenance/clean,/obj/random/maintenance/engineering,/obj/random/cigarettes,/obj/random/maintenance/engineering,/turf/simulated/floor/tiled/techfloor,/area/maintenance/lower/south) -"aZY" = (/obj/structure/sign/department/telecoms,/turf/simulated/wall/r_wall,/area/tcommsat/entrance) -"aZZ" = (/obj/machinery/atmospherics/unary/vent_scrubber/on,/obj/effect/decal/cleanable/cobweb,/obj/machinery/light/small{dir = 1},/turf/simulated/floor/tiled,/area/tcommsat/entrance) -"baa" = (/obj/structure/cable/green{d2 = 2; icon_state = "0-2"},/obj/machinery/power/apc{dir = 1; name = "north bump"; pixel_x = 0; pixel_y = 28},/turf/simulated/floor/tiled,/area/tcommsat/entrance) -"bab" = (/obj/machinery/turretid/stun{ailock = 1; check_synth = 1; control_area = "\improper Telecoms Foyer"; desc = "A firewall prevents AIs from interacting with this device."; name = "Telecoms Foyer turret control"; pixel_x = 29; pixel_y = 0; req_access = list(61)},/obj/machinery/firealarm{dir = 2; layer = 3.3; pixel_x = 0; pixel_y = 26},/turf/simulated/floor/tiled,/area/tcommsat/entrance) -"bac" = (/obj/machinery/alarm{frequency = 1441; pixel_y = 22},/turf/simulated/floor/tiled,/area/tcommsat/entrance) -"bad" = (/obj/machinery/camera/network/telecom,/obj/structure/sign/electricshock,/turf/simulated/floor/tiled,/area/tcommsat/entrance) -"bae" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 6},/turf/simulated/floor/tiled,/area/tcommsat/entrance) -"baf" = (/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 8},/turf/simulated/floor/tiled,/area/tcommsat/entrance) -"bag" = (/obj/structure/window/reinforced{dir = 5; icon_state = "fwindow"},/obj/structure/grille,/obj/machinery/door/firedoor/glass,/obj/structure/cable/green{d2 = 2; icon_state = "0-2"},/turf/simulated/floor/plating,/area/tcommsat/entrance) -"bah" = (/turf/simulated/floor/tiled,/area/tcommsat/entrance) -"bai" = (/obj/machinery/atmospherics/unary/vent_pump/on,/obj/item/device/radio/intercom{dir = 4; name = "Station Intercom (General)"; pixel_x = 22},/turf/simulated/floor/tiled,/area/tcommsat/entrance) -"baj" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 6},/obj/machinery/camera/network/telecom{dir = 4},/turf/simulated/floor/tiled,/area/tcommsat/computer) -"bak" = (/obj/machinery/atmospherics/unary/vent_pump/on{dir = 8},/turf/simulated/floor/tiled,/area/tcommsat/computer) -"bal" = (/turf/simulated/floor/tiled,/area/tcommsat/computer) -"bam" = (/obj/machinery/atmospherics/unary/vent_scrubber/on,/turf/simulated/floor/tiled,/area/tcommsat/computer) -"ban" = (/obj/structure/bed/chair/office/dark{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden,/turf/simulated/floor/tiled,/area/tcommsat/computer) -"bao" = (/obj/machinery/computer/telecomms/server{dir = 8; network = "tcommsat"},/turf/simulated/floor/tiled/dark,/area/tcommsat/computer) -"bap" = (/obj/structure/catwalk,/obj/effect/floor_decal/techfloor/corner,/turf/simulated/floor/tiled/techfloor,/area/maintenance/lower/south) -"baq" = (/obj/structure/catwalk,/obj/effect/floor_decal/techfloor{tag = "icon-techfloor_edges (EAST)"; icon_state = "techfloor_edges"; dir = 4},/obj/machinery/atmospherics/pipe/simple/visible/supply{dir = 5},/obj/machinery/atmospherics/pipe/simple/visible/scrubbers{dir = 5},/turf/simulated/floor/tiled/techfloor,/area/maintenance/lower/south) -"bar" = (/obj/machinery/door/airlock/highsecurity{name = "Telecomms Access"; req_one_access = list(61)},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/door/firedoor,/turf/simulated/floor/tiled,/area/tcommsat/entrance) -"bas" = (/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 1},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,/turf/simulated/floor/tiled,/area/tcommsat/entrance) -"bat" = (/obj/structure/cable/green{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/tiled,/area/tcommsat/entrance) -"bau" = (/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,/area/tcommsat/entrance) -"bav" = (/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/hatch{name = "Telecomms Foyer"; req_one_access = list(61)},/obj/machinery/door/firedoor,/turf/simulated/floor/tiled,/area/tcommsat/entrance) -"baw" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 1},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/turf/simulated/floor/tiled,/area/tcommsat/entrance) -"bax" = (/obj/structure/cable/green{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/cable/green{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/machinery/atmospherics/pipe/manifold4w/hidden/scrubbers,/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 1},/obj/machinery/hologram/holopad,/turf/simulated/floor/tiled,/area/tcommsat/entrance) -"bay" = (/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/decal/cleanable/dirt,/turf/simulated/floor/tiled,/area/tcommsat/entrance) -"baz" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/door/firedoor/glass,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/door/airlock/glass,/obj/structure/cable/green{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/structure/cable/green{d1 = 2; d2 = 8; icon_state = "2-8"},/turf/simulated/floor/tiled,/area/tcommsat/entrance) -"baA" = (/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/tcommsat/entrance) -"baB" = (/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 = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled,/area/tcommsat/entrance) -"baC" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/manifold/hidden/supply,/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 1},/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/tiled,/area/tcommsat/entrance) -"baD" = (/obj/machinery/door/airlock/hatch{name = "Telecoms Control Room"; req_access = list(61)},/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/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/turf/simulated/floor/tiled,/area/tcommsat/computer) -"baE" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 9; pixel_y = 0},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/turf/simulated/floor/tiled,/area/tcommsat/computer) -"baF" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/turf/simulated/floor/tiled,/area/tcommsat/computer) -"baG" = (/obj/structure/cable/green{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/structure/cable/green{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/turf/simulated/floor/tiled,/area/tcommsat/computer) -"baH" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 9},/turf/simulated/floor/tiled,/area/tcommsat/computer) -"baI" = (/obj/machinery/power/apc{dir = 4; name = "east bump"; pixel_x = 24},/obj/machinery/atmospherics/pipe/simple/hidden,/obj/structure/cable/green{d2 = 8; icon_state = "0-8"},/turf/simulated/floor/tiled,/area/tcommsat/computer) -"baJ" = (/turf/simulated/wall/r_wall,/area/tcommsat/chamber) -"baK" = (/obj/structure/railing{dir = 1},/obj/effect/floor_decal/techfloor{tag = "icon-techfloor_edges (SOUTHWEST)"; icon_state = "techfloor_edges"; dir = 10},/turf/simulated/floor/tiled/techfloor,/area/maintenance/lower/south) -"baL" = (/obj/structure/railing{dir = 1},/obj/effect/floor_decal/techfloor{tag = "icon-techfloor_edges (SOUTHEAST)"; icon_state = "techfloor_edges"; dir = 6},/turf/simulated/floor/tiled/techfloor,/area/maintenance/lower/south) -"baM" = (/obj/machinery/atmospherics/unary/vent_pump/on{dir = 1},/turf/simulated/floor/tiled,/area/tcommsat/entrance) -"baN" = (/obj/machinery/camera/network/telecom{dir = 1},/turf/simulated/floor/tiled,/area/tcommsat/entrance) -"baO" = (/obj/machinery/alarm{dir = 1; pixel_y = -25},/obj/item/device/radio/intercom{dir = 4; name = "Station Intercom (General)"; pixel_x = 22},/turf/simulated/floor/tiled,/area/tcommsat/entrance) -"baP" = (/obj/machinery/atmospherics/unary/vent_pump/on{dir = 1},/obj/machinery/light{icon_state = "tube1"; dir = 8},/turf/simulated/floor/tiled,/area/tcommsat/entrance) -"baQ" = (/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/tcommsat/entrance) -"baR" = (/obj/structure/grille,/obj/structure/window/reinforced{dir = 5; icon_state = "fwindow"},/obj/machinery/door/firedoor,/obj/structure/cable/green,/turf/simulated/floor/plating,/area/tcommsat/entrance) -"baS" = (/obj/machinery/porta_turret{dir = 6},/turf/simulated/floor/tiled,/area/tcommsat/entrance) -"baT" = (/obj/machinery/power/apc{dir = 2; name = "south bump"; pixel_y = -28},/obj/structure/cable/green,/turf/simulated/floor/tiled,/area/tcommsat/entrance) -"baU" = (/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 1},/obj/machinery/alarm{dir = 1; icon_state = "alarm0"; pixel_y = -22},/turf/simulated/floor/tiled,/area/tcommsat/entrance) -"baV" = (/obj/machinery/light{dir = 8},/obj/structure/table/standard,/obj/item/device/multitool,/obj/structure/sign/electricshock{pixel_x = -32},/turf/simulated/floor/tiled/dark,/area/tcommsat/computer) -"baW" = (/obj/machinery/atmospherics/unary/freezer{dir = 2; icon_state = "freezer_1"; set_temperature = 73; use_power = 1},/turf/simulated/floor/tiled/dark,/area/tcommsat/computer) -"baX" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/tiled/dark,/area/tcommsat/computer) -"baY" = (/obj/machinery/atmospherics/pipe/simple/hidden{dir = 5; icon_state = "intact"; tag = "icon-intact-f (NORTHEAST)"},/obj/machinery/airlock_sensor/airlock_exterior{frequency = 1381; id_tag = "server_access_ex_sensor"; master_tag = "server_access_airlock"; pixel_x = 25; pixel_y = 22},/turf/simulated/floor/tiled,/area/tcommsat/computer) -"baZ" = (/obj/machinery/door/airlock/maintenance_hatch{frequency = 1381; icon_state = "door_locked"; id_tag = "server_access_outer"; locked = 1; name = "Telecoms Server Access"; req_access = list(61)},/obj/machinery/atmospherics/pipe/simple/hidden{tag = "icon-intact (EAST)"; icon_state = "intact"; dir = 4},/turf/simulated/floor/tiled,/area/tcommsat/chamber) -"bba" = (/obj/machinery/airlock_sensor{frequency = 1381; id_tag = "server_access_sensor"; pixel_x = 12; pixel_y = 25},/obj/machinery/atmospherics/unary/vent_pump/high_volume{dir = 8; frequency = 1381; id_tag = "server_access_pump"},/obj/machinery/embedded_controller/radio/airlock/advanced_airlock_controller{frequency = 1381; id_tag = "server_access_airlock"; name = "Server Access Airlock"; pixel_x = 0; pixel_y = 25; tag_airpump = "server_access_pump"; tag_chamber_sensor = "server_access_sensor"; tag_exterior_door = "server_access_outer"; tag_exterior_sensor = "server_access_ex_sensor"; tag_interior_door = "server_access_inner"; tag_interior_sensor = "server_access_in_sensor"; tag_secure = 1},/turf/simulated/floor/plating,/area/tcommsat/chamber) -"bbb" = (/obj/machinery/light/small{dir = 1},/turf/simulated/floor/plating,/area/tcommsat/chamber) -"bbc" = (/obj/machinery/atmospherics/unary/vent_pump/on{dir = 1},/obj/machinery/porta_turret{dir = 6},/turf/simulated/floor/tiled/dark,/area/tcommsat/entrance) -"bbd" = (/turf/simulated/floor/tiled/dark,/area/tcommsat/entrance) -"bbe" = (/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/dark,/area/tcommsat/entrance) -"bbf" = (/obj/machinery/porta_turret/stationary,/turf/simulated/floor/tiled/dark,/area/tcommsat/entrance) -"bbg" = (/obj/structure/cable/green{d2 = 4; icon_state = "0-4"},/obj/structure/window/reinforced{dir = 5; icon_state = "fwindow"},/obj/structure/grille,/obj/machinery/door/firedoor/glass,/obj/machinery/atmospherics/pipe/simple/hidden/black{dir = 6},/turf/simulated/floor/plating,/area/tcommsat/chamber) -"bbh" = (/obj/structure/cable/green{d2 = 4; icon_state = "0-4"},/obj/structure/cable/green{d2 = 8; icon_state = "0-8"},/obj/structure/window/reinforced{dir = 5; icon_state = "fwindow"},/obj/structure/grille,/obj/machinery/door/firedoor/glass,/obj/machinery/atmospherics/pipe/manifold/hidden/black,/turf/simulated/floor/plating,/area/tcommsat/chamber) -"bbi" = (/obj/structure/cable/green{d2 = 4; icon_state = "0-4"},/obj/structure/cable/green{d2 = 8; icon_state = "0-8"},/obj/structure/cable/green,/obj/structure/cable/green{d2 = 2; icon_state = "0-2"},/obj/structure/window/reinforced{dir = 5; icon_state = "fwindow"},/obj/structure/grille,/obj/machinery/door/firedoor/glass,/obj/machinery/atmospherics/pipe/simple/hidden/black{dir = 4},/turf/simulated/floor/plating,/area/tcommsat/chamber) -"bbj" = (/obj/structure/cable/green{d2 = 4; icon_state = "0-4"},/obj/structure/cable/green{d2 = 8; icon_state = "0-8"},/obj/structure/window/reinforced{dir = 5; icon_state = "fwindow"},/obj/structure/grille,/obj/machinery/door/firedoor/glass,/obj/machinery/atmospherics/pipe/simple/hidden/black{dir = 4},/turf/simulated/floor/plating,/area/tcommsat/chamber) -"bbk" = (/obj/structure/cable/green{d2 = 8; icon_state = "0-8"},/obj/structure/window/reinforced{dir = 5; icon_state = "fwindow"},/obj/structure/grille,/obj/machinery/door/firedoor/glass,/obj/machinery/atmospherics/pipe/simple/hidden/black{dir = 10},/turf/simulated/floor/plating,/area/tcommsat/chamber) -"bbl" = (/obj/machinery/door/airlock/maintenance_hatch{frequency = 1381; icon_state = "door_locked"; id_tag = "server_access_inner"; locked = 1; name = "Telecoms Server Access"; req_access = list(61)},/turf/simulated/wall/r_wall,/area/tcommsat/chamber) -"bbm" = (/obj/effect/floor_decal/industrial/warning/dust{tag = "icon-warning_dust (SOUTHWEST)"; icon_state = "warning_dust"; dir = 10},/obj/effect/floor_decal/industrial/warning/dust/corner{tag = "icon-warningcorner_dust (EAST)"; icon_state = "warningcorner_dust"; dir = 4},/turf/simulated/floor/tiled/steel_dirty/virgo3b,/area/engineering/atmos/intake) -"bbn" = (/obj/effect/floor_decal/industrial/warning/dust,/obj/effect/floor_decal/industrial/warning/dust{tag = "icon-warning_dust (NORTH)"; icon_state = "warning_dust"; dir = 1},/turf/simulated/floor/tiled/steel_dirty/virgo3b,/area/engineering/atmos/intake) -"bbo" = (/obj/structure/grille,/obj/structure/window/reinforced{dir = 5; icon_state = "fwindow"},/obj/machinery/door/firedoor,/turf/simulated/floor/plating,/area/tcommsat/entrance) -"bbp" = (/obj/machinery/door/airlock/glass{name = "Telecomms Storage"; req_one_access = list(61)},/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/door/firedoor/glass,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/tiled/dark,/area/tcommsat/entrance) -"bbq" = (/turf/simulated/floor/bluegrid{name = "Mainframe Base"; nitrogen = 100; oxygen = 0; temperature = 80},/area/tcommsat/chamber) -"bbr" = (/obj/structure/cable/green{icon_state = "0-4"},/obj/machinery/power/apc/super/critical{dir = 1; name = "north bump"; pixel_y = 24},/turf/simulated/floor/bluegrid{name = "Mainframe Base"; nitrogen = 100; oxygen = 0; temperature = 80},/area/tcommsat/chamber) -"bbs" = (/obj/machinery/atmospherics/pipe/simple/hidden/black,/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/bluegrid{name = "Mainframe Base"; nitrogen = 100; oxygen = 0; temperature = 80},/area/tcommsat/chamber) -"bbt" = (/obj/machinery/porta_turret/stationary,/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/bluegrid{name = "Mainframe Base"; nitrogen = 100; oxygen = 0; temperature = 80},/area/tcommsat/chamber) -"bbu" = (/obj/machinery/light{dir = 1},/obj/structure/cable/green{d1 = 1; d2 = 8; icon_state = "1-8"},/turf/simulated/floor/bluegrid{name = "Mainframe Base"; nitrogen = 100; oxygen = 0; temperature = 80},/area/tcommsat/chamber) -"bbv" = (/obj/machinery/porta_turret/stationary,/turf/simulated/floor/bluegrid{name = "Mainframe Base"; nitrogen = 100; oxygen = 0; temperature = 80},/area/tcommsat/chamber) -"bbw" = (/obj/machinery/atmospherics/pipe/simple/hidden/black,/turf/simulated/floor/bluegrid{name = "Mainframe Base"; nitrogen = 100; oxygen = 0; temperature = 80},/area/tcommsat/chamber) -"bbx" = (/obj/machinery/airlock_sensor/airlock_interior{frequency = 1381; id_tag = "server_access_in_sensor"; master_tag = "server_access_airlock"; name = "interior sensor"; pixel_x = 8; pixel_y = 25},/turf/simulated/floor/bluegrid{name = "Mainframe Base"; nitrogen = 100; oxygen = 0; temperature = 80},/area/tcommsat/chamber) -"bby" = (/obj/machinery/airlock_sensor/airlock_interior{frequency = 1381; id_tag = "server_access_in_sensor"; name = "interior sensor"; pixel_y = 25},/obj/structure/sign/securearea{desc = "A warning sign which reads 'SERVER ROOM'."; name = "SERVER ROOM"; pixel_y = 32},/turf/simulated/floor/bluegrid{name = "Mainframe Base"; nitrogen = 100; oxygen = 0; temperature = 80},/area/tcommsat/chamber) -"bbz" = (/turf/simulated/floor/tiled/dark{nitrogen = 100; oxygen = 0; temperature = 80},/area/tcommsat/chamber) -"bbA" = (/obj/structure/sign/securearea{desc = "A warning sign which reads 'SERVER ROOM'."; name = "SERVER ROOM"; pixel_y = 32},/turf/simulated/floor/bluegrid{name = "Mainframe Base"; nitrogen = 100; oxygen = 0; temperature = 80},/area/tcommsat/chamber) -"bbB" = (/obj/structure/table/standard,/obj/item/weapon/stock_parts/subspace/amplifier,/obj/item/weapon/stock_parts/subspace/amplifier,/obj/item/weapon/stock_parts/subspace/amplifier,/obj/machinery/atmospherics/unary/vent_pump/on{dir = 4},/turf/simulated/floor/tiled/techmaint,/area/tcommsat/entrance) -"bbC" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/effect/decal/cleanable/molten_item,/turf/simulated/floor/tiled/techmaint,/area/tcommsat/entrance) -"bbD" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 9; pixel_y = 0},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 5},/turf/simulated/floor/tiled/techmaint,/area/tcommsat/entrance) -"bbE" = (/obj/structure/table/standard,/obj/item/weapon/stock_parts/subspace/ansible,/obj/item/weapon/stock_parts/subspace/ansible,/obj/item/weapon/stock_parts/subspace/ansible,/obj/machinery/alarm{dir = 8; pixel_x = 25; pixel_y = 0},/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 8},/turf/simulated/floor/tiled/techmaint,/area/tcommsat/entrance) -"bbF" = (/obj/machinery/atmospherics/pipe/simple/hidden/black,/turf/simulated/floor/tiled/dark{nitrogen = 100; oxygen = 0; temperature = 80},/area/tcommsat/chamber) -"bbG" = (/obj/machinery/hologram/holopad,/turf/simulated/floor/tiled/dark{nitrogen = 100; oxygen = 0; temperature = 80},/area/tcommsat/chamber) -"bbH" = (/obj/structure/table/standard,/obj/item/weapon/stock_parts/subspace/transmitter,/obj/item/weapon/stock_parts/subspace/transmitter,/obj/structure/cable/green{icon_state = "0-4"},/obj/machinery/power/apc{cell_type = /obj/item/weapon/cell/super; dir = 8; name = "west bump"; pixel_x = -24},/turf/simulated/floor/tiled/techmaint,/area/tcommsat/entrance) -"bbI" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/tiled/techmaint,/area/tcommsat/entrance) -"bbJ" = (/obj/structure/cable/green{d1 = 1; d2 = 8; icon_state = "1-8"},/turf/simulated/floor/tiled/techmaint,/area/tcommsat/entrance) -"bbK" = (/obj/structure/table/standard,/obj/item/weapon/stock_parts/subspace/analyzer,/obj/item/weapon/stock_parts/subspace/analyzer,/obj/item/weapon/stock_parts/subspace/analyzer,/obj/machinery/firealarm{dir = 4; pixel_x = 26},/turf/simulated/floor/tiled/techmaint,/area/tcommsat/entrance) -"bbL" = (/obj/machinery/telecomms/server/presets/supply,/turf/simulated/floor/tiled/dark{nitrogen = 100; oxygen = 0; temperature = 80},/area/tcommsat/chamber) -"bbM" = (/obj/machinery/telecomms/server/presets/service,/turf/simulated/floor/tiled/dark{nitrogen = 100; oxygen = 0; temperature = 80},/area/tcommsat/chamber) -"bbN" = (/obj/machinery/telecomms/server/presets/unused,/turf/simulated/floor/tiled/dark{nitrogen = 100; oxygen = 0; temperature = 80},/area/tcommsat/chamber) -"bbO" = (/obj/machinery/telecomms/server/presets/common,/turf/simulated/floor/tiled/dark{nitrogen = 100; oxygen = 0; temperature = 80},/area/tcommsat/chamber) -"bbP" = (/obj/machinery/telecomms/server/presets/engineering,/turf/simulated/floor/tiled/dark{nitrogen = 100; oxygen = 0; temperature = 80},/area/tcommsat/chamber) -"bbQ" = (/obj/structure/table/standard,/obj/item/weapon/stock_parts/subspace/treatment,/obj/item/weapon/stock_parts/subspace/treatment,/obj/item/weapon/stock_parts/subspace/treatment,/turf/simulated/floor/tiled/techmaint,/area/tcommsat/entrance) -"bbR" = (/turf/simulated/floor/tiled/techmaint,/area/tcommsat/entrance) -"bbS" = (/obj/structure/table/rack,/obj/item/weapon/circuitboard/telecomms/processor,/obj/item/weapon/circuitboard/telecomms/processor,/obj/item/weapon/circuitboard/telecomms/receiver,/obj/item/weapon/circuitboard/telecomms/server,/obj/item/weapon/circuitboard/telecomms/server,/obj/item/weapon/circuitboard/telecomms/bus,/obj/item/weapon/circuitboard/telecomms/bus,/obj/item/weapon/circuitboard/telecomms/broadcaster,/obj/item/weapon/circuitboard/telecomms/exonet_node,/obj/machinery/light/small,/turf/simulated/floor/tiled/techmaint,/area/tcommsat/entrance) -"bbT" = (/obj/machinery/camera/network/telecom{c_tag = "Telecoms West Wing South"; dir = 4},/turf/simulated/floor/bluegrid{name = "Mainframe Base"; nitrogen = 100; oxygen = 0; temperature = 80},/area/tcommsat/chamber) -"bbU" = (/obj/machinery/exonet_node{anchored = 1},/turf/simulated/floor/bluegrid{name = "Mainframe Base"; nitrogen = 100; oxygen = 0; temperature = 80},/area/tcommsat/chamber) -"bbV" = (/obj/machinery/camera/network/telecom{c_tag = "Telecoms West Wing Central"; dir = 8},/turf/simulated/floor/bluegrid{name = "Mainframe Base"; nitrogen = 100; oxygen = 0; temperature = 80},/area/tcommsat/chamber) -"bbW" = (/obj/structure/table/standard,/obj/item/weapon/stock_parts/micro_laser,/obj/item/weapon/stock_parts/manipulator,/obj/item/weapon/stock_parts/manipulator,/obj/item/weapon/stock_parts/manipulator,/obj/item/weapon/stock_parts/manipulator,/obj/item/weapon/stock_parts/capacitor,/obj/item/weapon/stock_parts/micro_laser/high,/obj/item/weapon/stock_parts/micro_laser/high,/obj/item/weapon/stock_parts/micro_laser/high,/obj/item/weapon/stock_parts/micro_laser/high,/turf/simulated/floor/tiled/techmaint,/area/tcommsat/entrance) -"bbX" = (/obj/structure/table/standard,/obj/item/weapon/stock_parts/subspace/filter,/obj/item/weapon/stock_parts/subspace/filter,/obj/item/weapon/stock_parts/subspace/filter,/obj/item/weapon/stock_parts/subspace/filter,/obj/item/weapon/stock_parts/subspace/filter,/obj/machinery/camera/network/telecom{c_tag = "Telecoms Central Compartment South"; dir = 1},/turf/simulated/floor/tiled/techmaint,/area/tcommsat/entrance) -"bbY" = (/obj/structure/table/standard,/obj/item/weapon/stock_parts/subspace/crystal,/obj/item/weapon/stock_parts/subspace/crystal,/obj/item/weapon/stock_parts/subspace/crystal,/turf/simulated/floor/tiled/techmaint,/area/tcommsat/entrance) -"bbZ" = (/obj/structure/sign/nosmoking_2{pixel_x = -32; pixel_y = 0},/obj/machinery/light{icon_state = "tube1"; dir = 8},/turf/simulated/floor/bluegrid{name = "Mainframe Base"; nitrogen = 100; oxygen = 0; temperature = 80},/area/tcommsat/chamber) -"bca" = (/obj/machinery/telecomms/processor/preset_two,/turf/simulated/floor/tiled/dark{nitrogen = 100; oxygen = 0; temperature = 80},/area/tcommsat/chamber) -"bcb" = (/obj/machinery/telecomms/bus/preset_two,/turf/simulated/floor/tiled/dark{nitrogen = 100; oxygen = 0; temperature = 80},/area/tcommsat/chamber) -"bcc" = (/obj/machinery/telecomms/relay/preset/tether/base_high,/turf/simulated/floor/tiled/dark{nitrogen = 100; oxygen = 0; temperature = 80},/area/tcommsat/chamber) -"bcd" = (/obj/machinery/telecomms/broadcaster/preset_right,/turf/simulated/floor/bluegrid{name = "Mainframe Base"; nitrogen = 100; oxygen = 0; temperature = 80},/area/tcommsat/chamber) -"bce" = (/obj/machinery/telecomms/hub/preset/tether,/turf/simulated/floor/bluegrid{name = "Mainframe Base"; nitrogen = 100; oxygen = 0; temperature = 80},/area/tcommsat/chamber) -"bcf" = (/obj/machinery/telecomms/receiver/preset_right,/turf/simulated/floor/bluegrid{name = "Mainframe Base"; nitrogen = 100; oxygen = 0; temperature = 80},/area/tcommsat/chamber) -"bcg" = (/obj/machinery/telecomms/relay/preset/tether/base_low,/turf/simulated/floor/tiled/dark{nitrogen = 100; oxygen = 0; temperature = 80},/area/tcommsat/chamber) -"bch" = (/obj/machinery/telecomms/bus/preset_four,/turf/simulated/floor/tiled/dark{nitrogen = 100; oxygen = 0; temperature = 80},/area/tcommsat/chamber) -"bci" = (/obj/machinery/telecomms/processor/preset_four,/turf/simulated/floor/tiled/dark{nitrogen = 100; oxygen = 0; temperature = 80},/area/tcommsat/chamber) -"bcj" = (/obj/structure/sign/nosmoking_2{pixel_x = 32; pixel_y = 0},/obj/machinery/light{dir = 4},/turf/simulated/floor/bluegrid{name = "Mainframe Base"; nitrogen = 100; oxygen = 0; temperature = 80},/area/tcommsat/chamber) -"bck" = (/obj/machinery/telecomms/bus/preset_one,/turf/simulated/floor/tiled/dark{nitrogen = 100; oxygen = 0; temperature = 80},/area/tcommsat/chamber) -"bcl" = (/obj/machinery/telecomms/processor/preset_one,/turf/simulated/floor/tiled/dark{nitrogen = 100; oxygen = 0; temperature = 80},/area/tcommsat/chamber) -"bcm" = (/obj/machinery/telecomms/processor/preset_three,/turf/simulated/floor/tiled/dark{nitrogen = 100; oxygen = 0; temperature = 80},/area/tcommsat/chamber) -"bcn" = (/obj/machinery/telecomms/bus/preset_three,/turf/simulated/floor/tiled/dark{nitrogen = 100; oxygen = 0; temperature = 80},/area/tcommsat/chamber) -"bco" = (/obj/machinery/telecomms/relay/preset/tether/base_mid,/turf/simulated/floor/bluegrid{name = "Mainframe Base"; nitrogen = 100; oxygen = 0; temperature = 80},/area/tcommsat/chamber) -"bcp" = (/obj/machinery/telecomms/server/presets/science,/turf/simulated/floor/tiled/dark{nitrogen = 100; oxygen = 0; temperature = 80},/area/tcommsat/chamber) -"bcq" = (/obj/machinery/telecomms/server/presets/medical,/turf/simulated/floor/tiled/dark{nitrogen = 100; oxygen = 0; temperature = 80},/area/tcommsat/chamber) -"bcr" = (/obj/machinery/atmospherics/pipe/simple/hidden/black{dir = 6},/turf/simulated/floor/tiled/dark{nitrogen = 100; oxygen = 0; temperature = 80},/area/tcommsat/chamber) -"bcs" = (/obj/machinery/atmospherics/pipe/simple/hidden/black{dir = 9},/turf/simulated/floor/tiled/dark{nitrogen = 100; oxygen = 0; temperature = 80},/area/tcommsat/chamber) -"bct" = (/obj/machinery/pda_multicaster/prebuilt,/turf/simulated/floor/tiled/dark{nitrogen = 100; oxygen = 0; temperature = 80},/area/tcommsat/chamber) -"bcu" = (/obj/machinery/atmospherics/pipe/simple/hidden/black{dir = 5},/turf/simulated/floor/tiled/dark{nitrogen = 100; oxygen = 0; temperature = 80},/area/tcommsat/chamber) -"bcv" = (/obj/machinery/atmospherics/pipe/simple/hidden/black{dir = 10},/turf/simulated/floor/tiled/dark{nitrogen = 100; oxygen = 0; temperature = 80},/area/tcommsat/chamber) -"bcw" = (/obj/machinery/telecomms/server/presets/command,/turf/simulated/floor/tiled/dark{nitrogen = 100; oxygen = 0; temperature = 80},/area/tcommsat/chamber) -"bcx" = (/obj/machinery/telecomms/server/presets/security,/turf/simulated/floor/tiled/dark{nitrogen = 100; oxygen = 0; temperature = 80},/area/tcommsat/chamber) -"bcy" = (/obj/machinery/camera/network/telecom{c_tag = "Telecoms Central Compartment South"; dir = 1},/turf/simulated/floor/bluegrid{name = "Mainframe Base"; nitrogen = 100; oxygen = 0; temperature = 80},/area/tcommsat/chamber) -"bcz" = (/obj/machinery/atmospherics/unary/vent_pump{dir = 1; external_pressure_bound = 140; external_pressure_bound_default = 140; icon_state = "map_vent_out"; use_power = 1; pressure_checks = 0; pressure_checks_default = 0},/turf/simulated/floor/bluegrid{name = "Mainframe Base"; nitrogen = 100; oxygen = 0; temperature = 80},/area/tcommsat/chamber) -"bcA" = (/obj/machinery/light,/turf/simulated/floor/bluegrid{name = "Mainframe Base"; nitrogen = 100; oxygen = 0; temperature = 80},/area/tcommsat/chamber) -"bcB" = (/obj/machinery/atmospherics/unary/vent_pump{dir = 1; external_pressure_bound = 0; external_pressure_bound_default = 0; icon_state = "map_vent_in"; initialize_directions = 1; internal_pressure_bound = 4000; internal_pressure_bound_default = 4000; use_power = 1; pressure_checks = 2; pressure_checks_default = 2; pump_direction = 0},/turf/simulated/floor/bluegrid{name = "Mainframe Base"; nitrogen = 100; oxygen = 0; temperature = 80},/area/tcommsat/chamber) -"bcC" = (/turf/unsimulated/wall/planetary/virgo3b,/area/tether/surfacebase/outside/outside3) -"bcD" = (/turf/simulated/open/virgo3b,/area/tether/surfacebase/outside/outside3) -"bcE" = (/turf/simulated/floor/outdoors/grass/sif/virgo3b,/area/tether/surfacebase/outside/outside3) -"bcF" = (/obj/machinery/camera/network/northern_star{tag = "icon-camera (NORTH)"; icon_state = "camera"; dir = 1},/turf/simulated/floor/outdoors/grass/sif/virgo3b,/area/tether/surfacebase/outside/outside3) -"bcG" = (/turf/simulated/wall,/area/vacant/vacant_site2) -"bcH" = (/obj/structure/grille,/obj/structure/window/reinforced{dir = 5; icon_state = "fwindow"},/obj/machinery/door/firedoor,/obj/structure/window/reinforced{dir = 1},/turf/simulated/floor/plating,/area/vacant/vacant_site2) -"bcI" = (/turf/simulated/wall,/area/tether/surfacebase/medical/triage) -"bcJ" = (/obj/structure/grille,/obj/structure/window/reinforced{dir = 5; icon_state = "fwindow"},/obj/machinery/door/firedoor,/obj/structure/window/reinforced{dir = 1},/turf/simulated/floor/plating,/area/tether/surfacebase/medical/triage) -"bcK" = (/obj/machinery/firealarm{dir = 2; layer = 3.3; pixel_x = 0; pixel_y = 26},/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 4},/turf/simulated/floor/wood,/area/vacant/vacant_site2) -"bcL" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 6},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 10},/obj/structure/closet,/obj/random/maintenance/security,/obj/random/maintenance/clean,/obj/random/drinkbottle,/obj/random/medical/lite,/obj/random/maintenance/medical,/turf/simulated/floor/wood,/area/vacant/vacant_site2) -"bcM" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/closet,/obj/random/maintenance/medical,/obj/random/maintenance/medical,/obj/random/maintenance/clean,/obj/random/junk,/obj/random/drinkbottle,/obj/random/maintenance/medical,/turf/simulated/floor/wood,/area/vacant/vacant_site2) -"bcN" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/plating,/area/vacant/vacant_site2) -"bcO" = (/obj/structure/bed/chair{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/plating,/area/vacant/vacant_site2) -"bcP" = (/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/vacant/vacant_site2) -"bcQ" = (/obj/structure/closet/secure_closet/paramedic,/obj/effect/floor_decal/borderfloorwhite{tag = "icon-borderfloor_white (NORTHWEST)"; icon_state = "borderfloor_white"; dir = 9},/obj/effect/floor_decal/corner/paleblue/border{tag = "icon-bordercolor (NORTHWEST)"; icon_state = "bordercolor"; dir = 9},/turf/simulated/floor/tiled/white,/area/tether/surfacebase/medical/triage) -"bcR" = (/obj/effect/floor_decal/borderfloorwhite{tag = "icon-borderfloor_white (NORTH)"; icon_state = "borderfloor_white"; dir = 1},/obj/effect/floor_decal/corner/paleblue/border{tag = "icon-bordercolor (NORTH)"; icon_state = "bordercolor"; dir = 1},/obj/machinery/camera/network/medbay,/turf/simulated/floor/tiled/white,/area/tether/surfacebase/medical/triage) -"bcS" = (/obj/machinery/light{dir = 1},/obj/effect/floor_decal/borderfloorwhite{tag = "icon-borderfloor_white (NORTH)"; icon_state = "borderfloor_white"; dir = 1},/obj/effect/floor_decal/corner/paleblue/border{tag = "icon-bordercolor (NORTH)"; icon_state = "bordercolor"; dir = 1},/obj/effect/floor_decal/borderfloorwhite/corner2{tag = "icon-borderfloorcorner2_white (NORTH)"; icon_state = "borderfloorcorner2_white"; dir = 1},/obj/effect/floor_decal/corner/paleblue/bordercorner2{tag = "icon-bordercolorcorner2 (NORTH)"; icon_state = "bordercolorcorner2"; dir = 1},/turf/simulated/floor/tiled/white,/area/tether/surfacebase/medical/triage) -"bcT" = (/obj/structure/ladder{layer = 3.3; pixel_y = 16},/obj/effect/floor_decal/industrial/outline/blue,/turf/simulated/floor/tiled/white,/area/tether/surfacebase/medical/triage) -"bcU" = (/obj/effect/floor_decal/borderfloorwhite{tag = "icon-borderfloor_white (NORTHEAST)"; icon_state = "borderfloor_white"; dir = 5},/obj/effect/floor_decal/corner/paleblue/border{tag = "icon-bordercolor (NORTHEAST)"; icon_state = "bordercolor"; dir = 5},/obj/effect/floor_decal/borderfloorwhite/corner2{tag = "icon-borderfloorcorner2_white (EAST)"; icon_state = "borderfloorcorner2_white"; dir = 4},/obj/effect/floor_decal/corner/paleblue/bordercorner2{tag = "icon-bordercolorcorner2 (EAST)"; icon_state = "bordercolorcorner2"; dir = 4},/turf/simulated/floor/tiled/white,/area/tether/surfacebase/medical/triage) -"bcV" = (/obj/structure/grille,/obj/structure/window/reinforced{dir = 5; icon_state = "fwindow"},/obj/machinery/door/firedoor,/obj/structure/window/reinforced{dir = 4},/turf/simulated/floor/plating,/area/tether/surfacebase/medical/triage) -"bcW" = (/obj/machinery/alarm{dir = 4; icon_state = "alarm0"; pixel_x = -22; pixel_y = 0},/turf/simulated/floor/wood,/area/vacant/vacant_site2) -"bcX" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/wood,/area/vacant/vacant_site2) -"bcY" = (/mob/living/simple_animal/mouse,/turf/simulated/floor/plating,/area/vacant/vacant_site2) -"bcZ" = (/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/plating,/area/vacant/vacant_site2) -"bda" = (/obj/effect/decal/cleanable/dirt,/obj/structure/table/rack,/obj/random/maintenance/medical,/obj/random/maintenance/clean,/obj/random/medical/lite,/obj/random/maintenance/medical,/turf/simulated/floor/plating,/area/vacant/vacant_site2) -"bdb" = (/obj/structure/closet/secure_closet/medical3,/obj/effect/floor_decal/borderfloorwhite{tag = "icon-borderfloor_white (WEST)"; icon_state = "borderfloor_white"; dir = 8},/obj/effect/floor_decal/corner/paleblue/border{tag = "icon-bordercolor (WEST)"; icon_state = "bordercolor"; dir = 8},/obj/machinery/status_display{pixel_x = -32},/turf/simulated/floor/tiled/white,/area/tether/surfacebase/medical/triage) -"bdc" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 6},/turf/simulated/floor/tiled/white,/area/tether/surfacebase/medical/triage) -"bdd" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/turf/simulated/floor/tiled/white,/area/tether/surfacebase/medical/triage) -"bde" = (/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 8},/turf/simulated/floor/tiled/white,/area/tether/surfacebase/medical/triage) -"bdf" = (/obj/effect/floor_decal/borderfloorwhite{tag = "icon-borderfloor_white (EAST)"; icon_state = "borderfloor_white"; dir = 4},/obj/effect/floor_decal/corner/paleblue/border{tag = "icon-bordercolor (EAST)"; icon_state = "bordercolor"; dir = 4},/turf/simulated/floor/tiled/white,/area/tether/surfacebase/medical/triage) -"bdg" = (/obj/structure/table/rack,/obj/random/firstaid,/obj/random/maintenance/medical,/turf/simulated/floor/wood,/area/vacant/vacant_site2) -"bdh" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/plating,/area/vacant/vacant_site2) -"bdi" = (/turf/simulated/floor/plating,/area/vacant/vacant_site2) -"bdj" = (/obj/machinery/light_switch{pixel_x = 25},/turf/simulated/floor/plating,/area/vacant/vacant_site2) -"bdk" = (/obj/machinery/disposal,/obj/effect/floor_decal/borderfloorwhite{tag = "icon-borderfloor_white (WEST)"; icon_state = "borderfloor_white"; dir = 8},/obj/effect/floor_decal/corner/paleblue/border{tag = "icon-bordercolor (WEST)"; icon_state = "bordercolor"; dir = 8},/obj/structure/disposalpipe/trunk,/turf/simulated/floor/tiled/white,/area/tether/surfacebase/medical/triage) -"bdl" = (/obj/effect/floor_decal/steeldecal/steel_decals10,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/tiled/white,/area/tether/surfacebase/medical/triage) -"bdm" = (/obj/machinery/sleeper{dir = 8},/obj/effect/floor_decal/corner_steel_grid{tag = "icon-steel_grid (SOUTHWEST)"; icon_state = "steel_grid"; dir = 10},/turf/simulated/floor/tiled/white,/area/tether/surfacebase/medical/triage) -"bdn" = (/obj/machinery/sleep_console,/obj/effect/floor_decal/corner_steel_grid{tag = "icon-steel_grid (SOUTHWEST)"; icon_state = "steel_grid"; dir = 10},/turf/simulated/floor/tiled/white,/area/tether/surfacebase/medical/triage) -"bdo" = (/obj/effect/floor_decal/borderfloorwhite{tag = "icon-borderfloor_white (EAST)"; icon_state = "borderfloor_white"; dir = 4},/obj/effect/floor_decal/corner/paleblue/border{tag = "icon-bordercolor (EAST)"; icon_state = "bordercolor"; dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals10{tag = "icon-steel_decals10 (WEST)"; icon_state = "steel_decals10"; dir = 8},/obj/item/device/radio/intercom{dir = 4; name = "Station Intercom (General)"; pixel_x = 21},/turf/simulated/floor/tiled/white,/area/tether/surfacebase/medical/triage) -"bdp" = (/obj/structure/lattice,/obj/structure/cable/green{icon_state = "32-4"},/obj/machinery/door/firedoor/glass,/turf/simulated/open,/area/vacant/vacant_site2) -"bdq" = (/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/decal/cleanable/dirt,/turf/simulated/floor/plating,/area/vacant/vacant_site2) -"bdr" = (/obj/machinery/vending/medical,/obj/effect/floor_decal/borderfloorwhite{tag = "icon-borderfloor_white (NORTHWEST)"; icon_state = "borderfloor_white"; dir = 9},/obj/effect/floor_decal/corner/paleblue/border{tag = "icon-bordercolor (NORTHWEST)"; icon_state = "bordercolor"; dir = 9},/turf/simulated/floor/tiled/white,/area/tether/surfacebase/medical/triage) -"bds" = (/obj/effect/floor_decal/borderfloorwhite{tag = "icon-borderfloor_white (NORTH)"; icon_state = "borderfloor_white"; dir = 1},/obj/effect/floor_decal/corner/paleblue/border{tag = "icon-bordercolor (NORTH)"; icon_state = "bordercolor"; dir = 1},/obj/machinery/alarm{frequency = 1441; pixel_y = 22},/turf/simulated/floor/tiled/white,/area/tether/surfacebase/medical/triage) -"bdt" = (/obj/effect/floor_decal/borderfloorwhite/corner{tag = "icon-borderfloorcorner_white (NORTH)"; icon_state = "borderfloorcorner_white"; dir = 1},/obj/effect/floor_decal/corner/paleblue/bordercorner{tag = "icon-bordercolorcorner (NORTH)"; icon_state = "bordercolorcorner"; dir = 1},/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled/white,/area/tether/surfacebase/medical/triage) -"bdu" = (/obj/effect/floor_decal/steeldecal/steel_decals10{tag = "icon-steel_decals10 (EAST)"; icon_state = "steel_decals10"; dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/tiled/white,/area/tether/surfacebase/medical/triage) -"bdv" = (/obj/effect/floor_decal/corner_steel_grid{tag = "icon-steel_grid (NORTHEAST)"; icon_state = "steel_grid"; dir = 5},/turf/simulated/floor/tiled/white,/area/tether/surfacebase/medical/triage) -"bdw" = (/obj/effect/floor_decal/borderfloorwhite{tag = "icon-borderfloor_white (EAST)"; icon_state = "borderfloor_white"; dir = 4},/obj/effect/floor_decal/corner/paleblue/border{tag = "icon-bordercolor (EAST)"; icon_state = "bordercolor"; dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals10{tag = "icon-steel_decals10 (NORTH)"; icon_state = "steel_decals10"; dir = 1},/turf/simulated/floor/tiled/white,/area/tether/surfacebase/medical/triage) -"bdx" = (/obj/structure/closet,/obj/item/weapon/reagent_containers/food/drinks/bottle/tequilla,/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/plating,/area/vacant/vacant_site2) -"bdy" = (/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/decal/cleanable/dirt,/turf/simulated/floor/plating,/area/vacant/vacant_site2) -"bdz" = (/obj/structure/ladder,/obj/effect/floor_decal/industrial/outline/blue,/turf/simulated/floor/plating,/area/vacant/vacant_site2) -"bdA" = (/obj/structure/table/glass,/obj/item/weapon/reagent_containers/spray/cleaner{pixel_x = -1; pixel_y = -2},/obj/item/weapon/reagent_containers/spray/cleaner,/obj/effect/floor_decal/borderfloorwhite{tag = "icon-borderfloor_white (WEST)"; icon_state = "borderfloor_white"; dir = 8},/obj/effect/floor_decal/corner/paleblue/border{tag = "icon-bordercolor (WEST)"; icon_state = "bordercolor"; dir = 8},/obj/machinery/light_switch{pixel_x = -25},/turf/simulated/floor/tiled/white,/area/tether/surfacebase/medical/triage) -"bdB" = (/turf/simulated/floor/tiled/white,/area/tether/surfacebase/medical/triage) -"bdC" = (/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled/white,/area/tether/surfacebase/medical/triage) -"bdD" = (/obj/machinery/bodyscanner{dir = 8},/obj/effect/floor_decal/corner_steel_grid{tag = "icon-steel_grid (SOUTHWEST)"; icon_state = "steel_grid"; dir = 10},/turf/simulated/floor/tiled/white,/area/tether/surfacebase/medical/triage) -"bdE" = (/obj/machinery/body_scanconsole,/obj/effect/floor_decal/corner_steel_grid{tag = "icon-steel_grid (SOUTHWEST)"; icon_state = "steel_grid"; dir = 10},/turf/simulated/floor/tiled/white,/area/tether/surfacebase/medical/triage) -"bdF" = (/obj/effect/floor_decal/borderfloorwhite{tag = "icon-borderfloor_white (EAST)"; icon_state = "borderfloor_white"; dir = 4},/obj/effect/floor_decal/corner/paleblue/border{tag = "icon-bordercolor (EAST)"; icon_state = "bordercolor"; dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals10{tag = "icon-steel_decals10 (WEST)"; icon_state = "steel_decals10"; dir = 8},/obj/machinery/camera/network/medbay{c_tag = "MED - Virology Airlock"; dir = 8},/turf/simulated/floor/tiled/white,/area/tether/surfacebase/medical/triage) -"bdG" = (/turf/simulated/wall,/area/tether/surfacebase/reading_room) -"bdH" = (/obj/structure/grille,/obj/structure/window/reinforced{dir = 5; icon_state = "fwindow"},/obj/machinery/door/firedoor,/obj/structure/window/reinforced{dir = 1},/turf/simulated/floor/plating,/area/tether/surfacebase/reading_room) -"bdI" = (/obj/machinery/camera/network/security{c_tag = "SEC - Equipment Storage"; dir = 9},/turf/simulated/floor/outdoors/grass/sif/virgo3b,/area/tether/surfacebase/outside/outside3) -"bdJ" = (/turf/simulated/wall/r_wall,/area/tether/surfacebase/security/armory) -"bdK" = (/turf/simulated/wall/r_wall,/area/tether/surfacebase/security/common) -"bdL" = (/obj/structure/grille,/obj/structure/window/reinforced{dir = 5; icon_state = "fwindow"},/obj/machinery/door/firedoor,/obj/structure/window/reinforced{dir = 1},/turf/simulated/floor/plating,/area/tether/surfacebase/security/common) -"bdM" = (/turf/simulated/wall/r_wall,/area/tether/surfacebase/security/breakroom) -"bdN" = (/obj/structure/grille,/obj/structure/window/reinforced{dir = 5; icon_state = "fwindow"},/obj/machinery/door/firedoor,/obj/structure/window/reinforced{dir = 1},/turf/simulated/floor/plating,/area/tether/surfacebase/security/breakroom) -"bdO" = (/turf/simulated/wall/r_wall,/area/vacant/vacant_site2) -"bdP" = (/obj/machinery/door/firedoor/glass,/obj/machinery/door/airlock/maintenance/engi,/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/techfloor/grid,/area/vacant/vacant_site2) -"bdQ" = (/obj/structure/table/glass,/obj/item/bodybag/cryobag,/obj/item/bodybag/cryobag,/obj/machinery/light{icon_state = "tube1"; dir = 8},/obj/effect/floor_decal/borderfloorwhite{tag = "icon-borderfloor_white (WEST)"; icon_state = "borderfloor_white"; dir = 8},/obj/effect/floor_decal/corner/paleblue/border{tag = "icon-bordercolor (WEST)"; icon_state = "bordercolor"; dir = 8},/turf/simulated/floor/tiled/white,/area/tether/surfacebase/medical/triage) -"bdR" = (/obj/machinery/light{dir = 4; icon_state = "tube1"},/obj/effect/floor_decal/borderfloorwhite{tag = "icon-borderfloor_white (EAST)"; icon_state = "borderfloor_white"; dir = 4},/obj/effect/floor_decal/corner/paleblue/border{tag = "icon-bordercolor (EAST)"; icon_state = "bordercolor"; dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals10{tag = "icon-steel_decals10 (NORTH)"; icon_state = "steel_decals10"; dir = 1},/turf/simulated/floor/tiled/white,/area/tether/surfacebase/medical/triage) -"bdS" = (/obj/structure/grille,/obj/structure/window/reinforced{dir = 5; icon_state = "fwindow"},/obj/machinery/door/firedoor,/obj/structure/window/reinforced{dir = 8},/turf/simulated/floor/plating,/area/tether/surfacebase/reading_room) -"bdT" = (/obj/structure/table/glass,/obj/item/device/flashlight/lamp/green,/turf/simulated/floor/wood,/area/tether/surfacebase/reading_room) -"bdU" = (/obj/machinery/light_switch{pixel_x = 25},/obj/structure/table/glass,/turf/simulated/floor/wood,/area/tether/surfacebase/reading_room) -"bdV" = (/obj/structure/table/glass,/obj/machinery/light_switch{pixel_x = 25},/turf/simulated/floor/wood,/area/tether/surfacebase/reading_room) -"bdW" = (/turf/simulated/open,/area/gateway) -"bdX" = (/obj/structure/table/reinforced,/obj/machinery/recharger,/obj/machinery/light{dir = 8; icon_state = "tube1"; pixel_y = 0},/turf/simulated/floor/tiled,/area/gateway) -"bdY" = (/obj/structure/table/reinforced,/obj/machinery/recharger,/obj/machinery/camera/network/command,/turf/simulated/floor/tiled,/area/gateway) -"bdZ" = (/obj/structure/table/reinforced,/obj/machinery/cell_charger,/obj/machinery/atmospherics/unary/vent_pump/on,/obj/item/device/radio/intercom{dir = 1; name = "Station Intercom (General)"; pixel_y = 21},/turf/simulated/floor/tiled,/area/gateway) -"bea" = (/obj/structure/table/reinforced,/obj/item/bodybag/cryobag,/obj/item/bodybag/cryobag,/obj/machinery/status_display{pixel_y = 30},/turf/simulated/floor/tiled,/area/gateway) -"beb" = (/obj/structure/closet/excavation,/obj/item/device/multitool,/obj/item/device/multitool,/turf/simulated/floor/tiled,/area/gateway) -"bec" = (/obj/structure/table/reinforced,/obj/item/roller,/obj/item/roller,/obj/machinery/atmospherics/unary/vent_scrubber/on,/obj/machinery/newscaster{pixel_x = 0; pixel_y = 30},/turf/simulated/floor/tiled,/area/gateway) -"bed" = (/obj/structure/table/reinforced,/obj/item/weapon/storage/firstaid/regular,/obj/item/weapon/storage/firstaid/regular,/turf/simulated/floor/tiled,/area/gateway) -"bee" = (/obj/structure/table/rack,/obj/item/weapon/gun/energy/stunrevolver,/obj/machinery/firealarm{dir = 2; layer = 3.3; pixel_x = 0; pixel_y = 26},/obj/item/weapon/gun/energy/stunrevolver,/turf/simulated/floor/holofloor/tiled/dark,/area/tether/surfacebase/security/armory) -"bef" = (/obj/machinery/light{dir = 1},/turf/simulated/floor/holofloor/tiled/dark,/area/tether/surfacebase/security/armory) -"beg" = (/obj/structure/closet/firecloset,/obj/item/device/radio/intercom{dir = 1; name = "Station Intercom (General)"; pixel_y = 21},/turf/simulated/floor/holofloor/tiled/dark,/area/tether/surfacebase/security/armory) -"beh" = (/obj/structure/closet/secure_closet/security/med,/obj/machinery/camera/network/security,/turf/simulated/floor/holofloor/tiled/dark,/area/tether/surfacebase/security/armory) -"bei" = (/obj/structure/closet/secure_closet/security/med,/turf/simulated/floor/holofloor/tiled/dark,/area/tether/surfacebase/security/armory) -"bej" = (/obj/structure/flora/pottedplant{icon_state = "plant-22"},/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (NORTHWEST)"; icon_state = "borderfloor"; dir = 9},/obj/effect/floor_decal/corner/red/border{tag = "icon-bordercolor (NORTHWEST)"; icon_state = "bordercolor"; dir = 9},/obj/effect/floor_decal/borderfloor/corner2{tag = "icon-borderfloorcorner2 (SOUTHWEST)"; icon_state = "borderfloorcorner2"; dir = 10},/obj/effect/floor_decal/corner/red/bordercorner2{tag = "icon-bordercolorcorner2 (SOUTHWEST)"; icon_state = "bordercolorcorner2"; dir = 10},/obj/machinery/firealarm{dir = 2; layer = 3.3; pixel_x = 0; pixel_y = 26},/turf/simulated/floor/tiled,/area/tether/surfacebase/security/common) -"bek" = (/obj/structure/reagent_dispensers/peppertank{pixel_y = 30},/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (NORTH)"; icon_state = "borderfloor"; dir = 1},/obj/effect/floor_decal/corner/red/border{tag = "icon-bordercolor (NORTH)"; icon_state = "bordercolor"; dir = 1},/turf/simulated/floor/tiled,/area/tether/surfacebase/security/common) -"bel" = (/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (NORTH)"; icon_state = "borderfloor"; dir = 1},/obj/effect/floor_decal/corner/red/border{tag = "icon-bordercolor (NORTH)"; icon_state = "bordercolor"; dir = 1},/turf/simulated/floor/tiled,/area/tether/surfacebase/security/common) -"bem" = (/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (NORTH)"; icon_state = "borderfloor"; dir = 1},/obj/effect/floor_decal/corner/red/border{tag = "icon-bordercolor (NORTH)"; icon_state = "bordercolor"; dir = 1},/obj/machinery/camera/network/security,/turf/simulated/floor/tiled,/area/tether/surfacebase/security/common) -"ben" = (/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (NORTHEAST)"; icon_state = "borderfloor"; dir = 5},/obj/effect/floor_decal/corner/red/border{tag = "icon-bordercolor (NORTHEAST)"; icon_state = "bordercolor"; dir = 5},/obj/effect/floor_decal/borderfloor/corner2{tag = "icon-borderfloorcorner2 (NORTHEAST)"; icon_state = "borderfloorcorner2"; dir = 5},/obj/effect/floor_decal/corner/red/bordercorner2{tag = "icon-bordercolorcorner2 (NORTHEAST)"; icon_state = "bordercolorcorner2"; dir = 5},/obj/structure/closet/firecloset,/obj/structure/extinguisher_cabinet{dir = 8; icon_state = "extinguisher_closed"; pixel_x = 30; tag = "icon-extinguisher_closed (WEST)"},/turf/simulated/floor/tiled,/area/tether/surfacebase/security/common) -"beo" = (/obj/structure/flora/pottedplant{icon_state = "plant-22"},/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (NORTHWEST)"; icon_state = "borderfloor"; dir = 9},/obj/effect/floor_decal/corner/red/border{tag = "icon-bordercolor (NORTHWEST)"; icon_state = "bordercolor"; dir = 9},/obj/effect/floor_decal/borderfloor/corner2{tag = "icon-borderfloorcorner2 (SOUTHWEST)"; icon_state = "borderfloorcorner2"; dir = 10},/obj/effect/floor_decal/corner/red/bordercorner2{tag = "icon-bordercolorcorner2 (SOUTHWEST)"; icon_state = "bordercolorcorner2"; dir = 10},/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/tiled,/area/tether/surfacebase/security/breakroom) -"bep" = (/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (NORTH)"; icon_state = "borderfloor"; dir = 1},/obj/effect/floor_decal/corner/red/border{tag = "icon-bordercolor (NORTH)"; icon_state = "bordercolor"; dir = 1},/obj/machinery/disposal,/obj/structure/disposalpipe/trunk{dir = 4},/turf/simulated/floor/tiled,/area/tether/surfacebase/security/breakroom) -"beq" = (/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (NORTH)"; icon_state = "borderfloor"; dir = 1},/obj/effect/floor_decal/corner/red/border{tag = "icon-bordercolor (NORTH)"; icon_state = "bordercolor"; dir = 1},/obj/structure/disposalpipe/segment{dir = 2; icon_state = "pipe-c"},/obj/effect/floor_decal/borderfloor/corner2{tag = "icon-borderfloorcorner2 (NORTH)"; icon_state = "borderfloorcorner2"; dir = 1},/obj/effect/floor_decal/corner/red/bordercorner2{tag = "icon-bordercolorcorner2 (NORTH)"; icon_state = "bordercolorcorner2"; dir = 1},/turf/simulated/floor/tiled,/area/tether/surfacebase/security/breakroom) -"ber" = (/obj/machinery/camera/network/security,/turf/simulated/floor/carpet/blue,/area/tether/surfacebase/security/breakroom) -"bes" = (/obj/structure/bed/chair,/turf/simulated/floor/carpet/blue,/area/tether/surfacebase/security/breakroom) -"bet" = (/obj/structure/bed/chair,/obj/machinery/firealarm{dir = 2; layer = 3.3; pixel_x = 0; pixel_y = 26},/turf/simulated/floor/carpet/blue,/area/tether/surfacebase/security/breakroom) -"beu" = (/obj/structure/flora/pottedplant{icon_state = "plant-22"},/obj/machinery/alarm{frequency = 1441; pixel_y = 22},/turf/simulated/floor/carpet/blue,/area/tether/surfacebase/security/breakroom) -"bev" = (/obj/effect/floor_decal/techfloor{tag = "icon-techfloor_edges (WEST)"; icon_state = "techfloor_edges"; dir = 8},/obj/item/weapon/storage/box/lights/mixed,/obj/structure/table/steel,/turf/simulated/floor/tiled/techfloor/grid,/area/vacant/vacant_site2) -"bew" = (/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,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/tiled/techfloor/grid,/area/vacant/vacant_site2) -"bex" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/light_switch{pixel_y = 25},/turf/simulated/floor/tiled/techfloor/grid,/area/vacant/vacant_site2) -"bey" = (/obj/effect/floor_decal/techfloor/corner,/obj/effect/floor_decal/techfloor{tag = "icon-techfloor_edges (NORTH)"; icon_state = "techfloor_edges"; dir = 1},/obj/effect/floor_decal/techfloor/hole/right{tag = "icon-techfloor_hole_right (NORTH)"; icon_state = "techfloor_hole_right"; dir = 1},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 6},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 6},/turf/simulated/floor/tiled/techfloor/grid,/area/vacant/vacant_site2) -"bez" = (/obj/machinery/door/airlock/maintenance/medical{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) -"beA" = (/obj/effect/floor_decal/borderfloorwhite{tag = "icon-borderfloor_white (WEST)"; icon_state = "borderfloor_white"; dir = 8},/obj/effect/floor_decal/corner/paleblue/border{tag = "icon-bordercolor (WEST)"; icon_state = "bordercolor"; 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) -"beB" = (/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) -"beC" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled/white,/area/tether/surfacebase/medical/triage) -"beD" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled/white,/area/tether/surfacebase/medical/triage) -"beE" = (/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/simple/hidden/scrubbers{dir = 10},/turf/simulated/floor/tiled/white,/area/tether/surfacebase/medical/triage) -"beF" = (/obj/machinery/atmospherics/unary/vent_pump/on{dir = 8},/turf/simulated/floor/tiled/white,/area/tether/surfacebase/medical/triage) -"beG" = (/obj/structure/table/glass,/obj/item/weapon/storage/firstaid/adv,/obj/effect/floor_decal/borderfloorwhite{tag = "icon-borderfloor_white (EAST)"; icon_state = "borderfloor_white"; dir = 4},/obj/effect/floor_decal/corner/paleblue/border{tag = "icon-bordercolor (EAST)"; icon_state = "bordercolor"; dir = 4},/turf/simulated/floor/tiled/white,/area/tether/surfacebase/medical/triage) -"beH" = (/turf/simulated/floor/wood,/area/tether/surfacebase/reading_room) -"beI" = (/obj/machinery/alarm{dir = 8; icon_state = "alarm0"; pixel_x = 24},/obj/structure/bed/chair/comfy/black{dir = 1},/turf/simulated/floor/wood,/area/tether/surfacebase/reading_room) -"beJ" = (/obj/structure/table/reinforced,/obj/machinery/recharger,/obj/machinery/camera/network/command{c_tag = "Gateway Access"; dir = 4},/turf/simulated/floor/tiled,/area/gateway) -"beK" = (/turf/simulated/floor/tiled,/area/gateway) -"beL" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 5},/turf/simulated/floor/tiled,/area/gateway) -"beM" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 10},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 6},/turf/simulated/floor/tiled,/area/gateway) -"beN" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/turf/simulated/floor/tiled,/area/gateway) -"beO" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 9},/turf/simulated/floor/tiled,/area/gateway) -"beP" = (/obj/structure/table/reinforced,/obj/item/weapon/storage/firstaid/adv,/obj/item/weapon/storage/firstaid/adv,/turf/simulated/floor/tiled,/area/gateway) -"beQ" = (/obj/structure/table/rack,/obj/item/weapon/gun/energy/taser,/obj/machinery/alarm{dir = 4; icon_state = "alarm0"; pixel_x = -22; pixel_y = 0},/obj/item/weapon/gun/energy/taser,/turf/simulated/floor/holofloor/tiled/dark,/area/tether/surfacebase/security/armory) -"beR" = (/turf/simulated/floor/holofloor/tiled/dark,/area/tether/surfacebase/security/armory) -"beS" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 6},/turf/simulated/floor/holofloor/tiled/dark,/area/tether/surfacebase/security/armory) -"beT" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 6},/turf/simulated/floor/holofloor/tiled/dark,/area/tether/surfacebase/security/armory) -"beU" = (/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/holofloor/tiled/dark,/area/tether/surfacebase/security/armory) -"beV" = (/obj/machinery/door/airlock/security{name = "Equipment Storage"; req_access = list(1)},/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/monotile,/area/tether/surfacebase/security/armory) -"beW" = (/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,/area/tether/surfacebase/security/common) -"beX" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 10},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 10},/turf/simulated/floor/tiled,/area/tether/surfacebase/security/common) -"beY" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/tiled,/area/tether/surfacebase/security/common) -"beZ" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/cable/green{d1 = 2; d2 = 4; icon_state = "2-4"},/turf/simulated/floor/tiled,/area/tether/surfacebase/security/common) -"bfa" = (/obj/machinery/door/firedoor/glass,/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/door/airlock/glass_security{name = "Break Room"; req_access = list(1)},/turf/simulated/floor/tiled/monotile,/area/tether/surfacebase/security/breakroom) -"bfb" = (/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,/area/tether/surfacebase/security/breakroom) -"bfc" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/tiled,/area/tether/surfacebase/security/breakroom) -"bfd" = (/obj/structure/cable/green{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled,/area/tether/surfacebase/security/breakroom) -"bfe" = (/obj/structure/bed/chair{dir = 4},/turf/simulated/floor/carpet/blue,/area/tether/surfacebase/security/breakroom) -"bff" = (/obj/structure/table/glass,/turf/simulated/floor/carpet/blue,/area/tether/surfacebase/security/breakroom) -"bfg" = (/obj/structure/bed/chair{dir = 8},/obj/machinery/status_display{pixel_x = 32; pixel_y = 0},/turf/simulated/floor/carpet/blue,/area/tether/surfacebase/security/breakroom) -"bfh" = (/obj/effect/floor_decal/techfloor{tag = "icon-techfloor_edges (WEST)"; icon_state = "techfloor_edges"; dir = 8},/obj/structure/table/steel,/turf/simulated/floor/tiled/techfloor/grid,/area/vacant/vacant_site2) -"bfi" = (/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/manifold/hidden/supply{dir = 8},/turf/simulated/floor/tiled/techfloor/grid,/area/vacant/vacant_site2) -"bfj" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled/techfloor/grid,/area/vacant/vacant_site2) -"bfk" = (/obj/effect/floor_decal/techfloor{tag = "icon-techfloor_edges (EAST)"; icon_state = "techfloor_edges"; dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 9},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 9},/turf/simulated/floor/tiled/techfloor/grid,/area/vacant/vacant_site2) -"bfl" = (/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{tag = "icon-borderfloor_white (WEST)"; icon_state = "borderfloor_white"; dir = 8},/obj/effect/floor_decal/corner/paleblue/border{tag = "icon-bordercolor (WEST)"; icon_state = "bordercolor"; dir = 8},/obj/machinery/power/apc{cell_type = /obj/item/weapon/cell/super; dir = 8; name = "west bump"; pixel_x = -28},/obj/structure/cable/green,/turf/simulated/floor/tiled/white,/area/tether/surfacebase/medical/triage) -"bfm" = (/obj/structure/disposalpipe/segment{dir = 1; icon_state = "pipe-c"},/turf/simulated/floor/tiled/white,/area/tether/surfacebase/medical/triage) -"bfn" = (/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled/white,/area/tether/surfacebase/medical/triage) -"bfo" = (/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/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled/white,/area/tether/surfacebase/medical/triage) -"bfp" = (/obj/structure/disposalpipe/segment{dir = 2; icon_state = "pipe-c"},/turf/simulated/floor/tiled/white,/area/tether/surfacebase/medical/triage) -"bfq" = (/obj/structure/table/glass,/obj/item/weapon/storage/firstaid/fire,/obj/effect/floor_decal/borderfloorwhite{tag = "icon-borderfloor_white (EAST)"; icon_state = "borderfloor_white"; dir = 4},/obj/effect/floor_decal/corner/paleblue/border{tag = "icon-bordercolor (EAST)"; icon_state = "bordercolor"; dir = 4},/turf/simulated/floor/tiled/white,/area/tether/surfacebase/medical/triage) -"bfr" = (/obj/machinery/door/airlock{name = "Room 1"},/obj/machinery/door/firedoor/glass,/turf/simulated/floor/tiled,/area/tether/surfacebase/reading_room) -"bfs" = (/obj/machinery/door/airlock{name = "Room 2"},/obj/machinery/door/firedoor/glass,/turf/simulated/floor/tiled,/area/tether/surfacebase/reading_room) -"bft" = (/obj/machinery/door/airlock{name = "Room 3"},/obj/machinery/door/firedoor/glass,/turf/simulated/floor/tiled,/area/tether/surfacebase/reading_room) -"bfu" = (/obj/structure/table/reinforced,/obj/item/device/communicator,/obj/item/device/communicator,/obj/item/device/communicator,/obj/item/device/communicator,/obj/machinery/light{dir = 8; icon_state = "tube1"; pixel_y = 0},/turf/simulated/floor/tiled,/area/gateway) -"bfv" = (/obj/effect/floor_decal/industrial/hatch/yellow,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/tiled,/area/gateway) -"bfw" = (/obj/machinery/floodlight,/turf/simulated/floor/tiled,/area/gateway) -"bfx" = (/obj/structure/table/rack,/obj/item/weapon/gun/energy/taser,/obj/item/weapon/gun/energy/taser,/turf/simulated/floor/holofloor/tiled/dark,/area/tether/surfacebase/security/armory) -"bfy" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/holofloor/tiled/dark,/area/tether/surfacebase/security/armory) -"bfz" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/holofloor/tiled/dark,/area/tether/surfacebase/security/armory) -"bfA" = (/obj/structure/cable/green,/obj/machinery/power/apc{dir = 4; name = "east bump"; pixel_x = 28},/turf/simulated/floor/holofloor/tiled/dark,/area/tether/surfacebase/security/armory) -"bfB" = (/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (WEST)"; icon_state = "borderfloor"; dir = 8},/obj/effect/floor_decal/corner/red/border{tag = "icon-bordercolor (WEST)"; icon_state = "bordercolor"; dir = 8},/obj/effect/floor_decal/borderfloor/corner2{tag = "icon-borderfloorcorner2 (WEST)"; icon_state = "borderfloorcorner2"; dir = 8},/obj/effect/floor_decal/corner/red/bordercorner2{tag = "icon-bordercolorcorner2 (WEST)"; icon_state = "bordercolorcorner2"; dir = 8},/turf/simulated/floor/tiled,/area/tether/surfacebase/security/common) -"bfC" = (/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 4},/turf/simulated/floor/tiled,/area/tether/surfacebase/security/common) -"bfD" = (/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) -"bfE" = (/turf/simulated/floor/tiled,/area/tether/surfacebase/security/common) -"bfF" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/tiled,/area/tether/surfacebase/security/common) -"bfG" = (/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (EAST)"; icon_state = "borderfloor"; dir = 4},/obj/effect/floor_decal/corner/red/border{tag = "icon-bordercolor (EAST)"; icon_state = "bordercolor"; dir = 4},/obj/effect/floor_decal/borderfloor/corner2{tag = "icon-borderfloorcorner2 (SOUTHEAST)"; icon_state = "borderfloorcorner2"; dir = 6},/obj/effect/floor_decal/corner/red/bordercorner2{tag = "icon-bordercolorcorner2 (SOUTHEAST)"; icon_state = "bordercolorcorner2"; dir = 6},/obj/machinery/computer/security{tag = "icon-computer (WEST)"; icon_state = "computer"; dir = 8},/turf/simulated/floor/tiled,/area/tether/surfacebase/security/common) -"bfH" = (/obj/machinery/vending/coffee,/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (WEST)"; icon_state = "borderfloor"; dir = 8},/obj/effect/floor_decal/corner/red/border{tag = "icon-bordercolor (WEST)"; icon_state = "bordercolor"; dir = 8},/obj/effect/floor_decal/borderfloor/corner2{tag = "icon-borderfloorcorner2 (WEST)"; icon_state = "borderfloorcorner2"; dir = 8},/obj/effect/floor_decal/corner/red/bordercorner2{tag = "icon-bordercolorcorner2 (WEST)"; icon_state = "bordercolorcorner2"; dir = 8},/turf/simulated/floor/tiled,/area/tether/surfacebase/security/breakroom) -"bfI" = (/turf/simulated/floor/tiled,/area/tether/surfacebase/security/breakroom) -"bfJ" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled,/area/tether/surfacebase/security/breakroom) -"bfK" = (/obj/structure/table/glass,/obj/item/weapon/storage/box/donut,/turf/simulated/floor/carpet/blue,/area/tether/surfacebase/security/breakroom) -"bfL" = (/obj/structure/bed/chair{dir = 8},/turf/simulated/floor/carpet/blue,/area/tether/surfacebase/security/breakroom) -"bfM" = (/obj/effect/floor_decal/techfloor{tag = "icon-techfloor_edges (WEST)"; icon_state = "techfloor_edges"; dir = 8},/obj/machinery/alarm{dir = 4; icon_state = "alarm0"; pixel_x = -22; pixel_y = 0},/obj/structure/table/rack,/obj/random/maintenance/clean,/obj/random/maintenance/medical,/obj/random/maintenance/medical,/turf/simulated/floor/tiled/techfloor/grid,/area/vacant/vacant_site2) -"bfN" = (/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,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/tiled/techfloor/grid,/area/vacant/vacant_site2) -"bfO" = (/obj/structure/bed/chair{dir = 4},/obj/structure/cable/green{d2 = 8; icon_state = "0-8"},/obj/machinery/power/apc{dir = 2; name = "south bump"; pixel_y = -28},/turf/simulated/floor/tiled/techfloor/grid,/area/vacant/vacant_site2) -"bfP" = (/obj/effect/floor_decal/techfloor{tag = "icon-techfloor_edges (SOUTHEAST)"; icon_state = "techfloor_edges"; dir = 6},/obj/effect/decal/cleanable/vomit,/obj/structure/table,/turf/simulated/floor/tiled/techfloor/grid,/area/vacant/vacant_site2) -"bfQ" = (/obj/structure/table/glass,/obj/item/weapon/storage/box/syringes,/obj/effect/floor_decal/borderfloorwhite{tag = "icon-borderfloor_white (SOUTHWEST)"; icon_state = "borderfloor_white"; dir = 10},/obj/effect/floor_decal/corner/paleblue/border{tag = "icon-bordercolor (SOUTHWEST)"; icon_state = "bordercolor"; dir = 10},/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/triage) -"bfR" = (/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,/turf/simulated/floor/tiled/white,/area/tether/surfacebase/medical/triage) -"bfS" = (/obj/effect/floor_decal/borderfloorwhite,/obj/effect/floor_decal/corner/paleblue/border,/turf/simulated/floor/tiled/white,/area/tether/surfacebase/medical/triage) -"bfT" = (/obj/effect/floor_decal/borderfloorwhite,/obj/effect/floor_decal/corner/paleblue/border,/obj/effect/floor_decal/borderfloorwhite/corner2{tag = "icon-borderfloorcorner2_white (NORTHWEST)"; icon_state = "borderfloorcorner2_white"; dir = 9},/obj/effect/floor_decal/corner/paleblue/bordercorner2{tag = "icon-bordercolorcorner2 (NORTHWEST)"; icon_state = "bordercolorcorner2"; dir = 9},/turf/simulated/floor/tiled/white,/area/tether/surfacebase/medical/triage) -"bfU" = (/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/tether/surfacebase/medical/triage) -"bfV" = (/obj/structure/table/glass,/obj/item/weapon/storage/firstaid/regular,/obj/effect/floor_decal/borderfloorwhite{tag = "icon-borderfloor_white (SOUTHEAST)"; icon_state = "borderfloor_white"; dir = 6},/obj/effect/floor_decal/corner/paleblue/border{tag = "icon-bordercolor (SOUTHEAST)"; icon_state = "bordercolor"; dir = 6},/obj/effect/floor_decal/borderfloorwhite/corner2,/obj/effect/floor_decal/corner/paleblue/bordercorner2,/obj/machinery/firealarm{dir = 4; pixel_x = 24},/obj/random/firstaid,/turf/simulated/floor/tiled/white,/area/tether/surfacebase/medical/triage) -"bfW" = (/obj/machinery/firealarm{dir = 2; layer = 3.3; pixel_x = 0; pixel_y = 26},/turf/simulated/floor/wood,/area/tether/surfacebase/reading_room) -"bfX" = (/obj/machinery/newscaster{pixel_x = 0; pixel_y = 30},/turf/simulated/floor/wood,/area/tether/surfacebase/reading_room) -"bfY" = (/obj/machinery/light_switch{pixel_y = 25},/turf/simulated/floor/wood,/area/tether/surfacebase/reading_room) -"bfZ" = (/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/wood,/area/tether/surfacebase/reading_room) -"bga" = (/obj/structure/table/glass,/obj/machinery/photocopier/faxmachine,/obj/machinery/atmospherics/unary/vent_scrubber/on,/obj/machinery/status_display{pixel_y = 30},/turf/simulated/floor/wood,/area/tether/surfacebase/reading_room) -"bgb" = (/obj/structure/table/reinforced,/obj/item/device/communicator,/obj/item/device/communicator,/obj/item/device/communicator,/obj/item/device/communicator,/obj/item/device/radio/intercom{dir = 8; name = "Station Intercom (General)"; pixel_x = -28},/turf/simulated/floor/tiled,/area/gateway) -"bgc" = (/obj/structure/table/reinforced,/obj/item/weapon/cell/device/weapon,/obj/item/device/radio/headset/headset_sec,/obj/item/weapon/cell/device/weapon,/turf/simulated/floor/holofloor/tiled/dark,/area/tether/surfacebase/security/armory) -"bgd" = (/obj/structure/table/reinforced,/obj/item/weapon/reagent_containers/spray/pepper,/obj/item/weapon/reagent_containers/spray/pepper,/turf/simulated/floor/holofloor/tiled/dark,/area/tether/surfacebase/security/armory) -"bge" = (/obj/structure/table/reinforced,/obj/item/weapon/cell/device/weapon,/obj/machinery/atmospherics/unary/vent_pump/on{dir = 1},/obj/item/weapon/cell/device/weapon,/turf/simulated/floor/holofloor/tiled/dark,/area/tether/surfacebase/security/armory) -"bgf" = (/obj/structure/table/reinforced,/obj/item/device/radio/headset/headset_sec,/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 1},/turf/simulated/floor/holofloor/tiled/dark,/area/tether/surfacebase/security/armory) -"bgg" = (/obj/structure/table/reinforced,/obj/item/device/radio/headset/headset_sec/alt,/obj/item/device/radio/headset/headset_sec/alt,/obj/machinery/light_switch{pixel_x = 25},/turf/simulated/floor/holofloor/tiled/dark,/area/tether/surfacebase/security/armory) -"bgh" = (/obj/structure/closet/secure_closet/brig,/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (WEST)"; icon_state = "borderfloor"; dir = 8},/obj/effect/floor_decal/corner/red/border{tag = "icon-bordercolor (WEST)"; icon_state = "bordercolor"; dir = 8},/turf/simulated/floor/tiled,/area/tether/surfacebase/security/common) -"bgi" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/tiled,/area/tether/surfacebase/security/common) -"bgj" = (/obj/structure/table/reinforced,/obj/machinery/recharger,/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (EAST)"; icon_state = "borderfloor"; dir = 4},/obj/effect/floor_decal/corner/red/border{tag = "icon-bordercolor (EAST)"; icon_state = "bordercolor"; dir = 4},/obj/machinery/light{dir = 4; icon_state = "tube1"},/turf/simulated/floor/tiled,/area/tether/surfacebase/security/common) -"bgk" = (/obj/machinery/vending/cola,/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (WEST)"; icon_state = "borderfloor"; dir = 8},/obj/effect/floor_decal/corner/red/border{tag = "icon-bordercolor (WEST)"; icon_state = "bordercolor"; dir = 8},/obj/machinery/light{dir = 8; icon_state = "tube1"; pixel_y = 0},/turf/simulated/floor/tiled,/area/tether/surfacebase/security/breakroom) -"bgl" = (/turf/simulated/floor/carpet/blue,/area/tether/surfacebase/security/breakroom) -"bgm" = (/obj/structure/bed/chair{dir = 1},/turf/simulated/floor/carpet/blue,/area/tether/surfacebase/security/breakroom) -"bgn" = (/obj/effect/floor_decal/techfloor{tag = "icon-techfloor_edges (WEST)"; icon_state = "techfloor_edges"; dir = 8},/obj/machinery/firealarm{dir = 8; pixel_x = -24},/obj/random/junk,/turf/simulated/floor/tiled/techfloor/grid,/area/vacant/vacant_site2) -"bgo" = (/obj/machinery/light/small{dir = 4; pixel_y = 0},/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/techfloor/grid,/area/vacant/vacant_site2) -"bgp" = (/obj/structure/grille,/obj/structure/window/reinforced{dir = 5; icon_state = "fwindow"},/obj/machinery/door/firedoor,/turf/simulated/floor/plating,/area/tether/surfacebase/medical/triage) -"bgq" = (/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,/obj/machinery/door/airlock/multi_tile/glass{name = "Emergency Treatment Centre"; req_access = list(5)},/turf/simulated/floor/tiled/white,/area/tether/surfacebase/medical/triage) -"bgr" = (/obj/machinery/door/firedoor/glass,/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled/white,/area/tether/surfacebase/medical/triage) -"bgs" = (/obj/machinery/camera/network/civilian{tag = "icon-camera (EAST)"; icon_state = "camera"; dir = 4},/turf/simulated/floor/wood,/area/tether/surfacebase/reading_room) -"bgt" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 6},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 6},/obj/structure/cable/green{d1 = 2; d2 = 4; icon_state = "2-4"},/turf/simulated/floor/wood,/area/tether/surfacebase/reading_room) -"bgu" = (/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/wood,/area/tether/surfacebase/reading_room) -"bgv" = (/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 = 8; icon_state = "1-8"},/turf/simulated/floor/wood,/area/tether/surfacebase/reading_room) -"bgw" = (/obj/structure/bed/chair/office/light{tag = "icon-officechair_white (EAST)"; icon_state = "officechair_white"; dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/turf/simulated/floor/wood,/area/tether/surfacebase/reading_room) -"bgx" = (/obj/structure/table/glass,/obj/item/weapon/pen,/obj/machinery/alarm{dir = 8; icon_state = "alarm0"; pixel_x = 24},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 10},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 9},/turf/simulated/floor/wood,/area/tether/surfacebase/reading_room) -"bgy" = (/obj/machinery/door/blast/shutters{dir = 2; id = "PubPrep"; layer = 3.3; name = "Public Access Shutter"},/turf/simulated/floor/tiled,/area/gateway) -"bgz" = (/obj/machinery/recharge_station,/obj/effect/floor_decal/industrial/outline/yellow,/turf/simulated/floor/tiled,/area/gateway) -"bgA" = (/obj/machinery/suit_cycler/mining{req_access = null},/turf/simulated/floor/tiled,/area/gateway) -"bgB" = (/obj/machinery/vending/security,/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (WEST)"; icon_state = "borderfloor"; dir = 8},/obj/effect/floor_decal/corner/red/border{tag = "icon-bordercolor (WEST)"; icon_state = "bordercolor"; dir = 8},/turf/simulated/floor/tiled,/area/tether/surfacebase/security/common) -"bgC" = (/obj/structure/cable/green{d1 = 1; d2 = 4; icon_state = "1-4"},/turf/simulated/floor/tiled,/area/tether/surfacebase/security/common) -"bgD" = (/obj/structure/table/reinforced,/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (EAST)"; icon_state = "borderfloor"; dir = 4},/obj/effect/floor_decal/corner/red/border{tag = "icon-bordercolor (EAST)"; icon_state = "bordercolor"; dir = 4},/obj/structure/cable/green{icon_state = "0-8"},/obj/machinery/power/apc{dir = 4; name = "east bump"; pixel_x = 28},/turf/simulated/floor/tiled,/area/tether/surfacebase/security/common) -"bgE" = (/obj/machinery/vending/snack,/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (SOUTHWEST)"; icon_state = "borderfloor"; dir = 10},/obj/effect/floor_decal/corner/red/border{tag = "icon-bordercolor (SOUTHWEST)"; icon_state = "bordercolor"; dir = 10},/turf/simulated/floor/tiled,/area/tether/surfacebase/security/breakroom) -"bgF" = (/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/corner/red/border,/obj/effect/floor_decal/borderfloor/corner2{tag = "icon-borderfloorcorner2 (NORTHWEST)"; icon_state = "borderfloorcorner2"; dir = 9},/obj/effect/floor_decal/corner/red/bordercorner2{tag = "icon-bordercolorcorner2 (NORTHWEST)"; icon_state = "bordercolorcorner2"; dir = 9},/obj/machinery/atmospherics/unary/vent_pump/on{dir = 4},/turf/simulated/floor/tiled,/area/tether/surfacebase/security/breakroom) -"bgG" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 10},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 6},/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled,/area/tether/surfacebase/security/breakroom) -"bgH" = (/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/corner/red/border,/obj/effect/floor_decal/borderfloor/corner2,/obj/effect/floor_decal/corner/red/bordercorner2,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/turf/simulated/floor/tiled,/area/tether/surfacebase/security/breakroom) -"bgI" = (/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/corner/red/border,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/turf/simulated/floor/tiled,/area/tether/surfacebase/security/breakroom) -"bgJ" = (/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/corner/red/border,/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 8},/turf/simulated/floor/tiled,/area/tether/surfacebase/security/breakroom) -"bgK" = (/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (SOUTHEAST)"; icon_state = "borderfloor"; dir = 6},/obj/effect/floor_decal/corner/red/border{tag = "icon-bordercolor (SOUTHEAST)"; icon_state = "bordercolor"; dir = 6},/obj/machinery/light_switch{pixel_x = 25},/obj/item/device/radio/intercom{name = "Station Intercom (General)"; pixel_y = -21},/obj/effect/floor_decal/borderfloor/corner2{tag = "icon-borderfloorcorner2 (SOUTHEAST)"; icon_state = "borderfloorcorner2"; dir = 6},/obj/effect/floor_decal/corner/red/bordercorner2{tag = "icon-bordercolorcorner2 (SOUTHEAST)"; icon_state = "bordercolorcorner2"; dir = 6},/turf/simulated/floor/tiled,/area/tether/surfacebase/security/breakroom) -"bgL" = (/obj/effect/floor_decal/techfloor{tag = "icon-techfloor_edges (WEST)"; icon_state = "techfloor_edges"; dir = 8},/obj/structure/cable/green{d1 = 2; d2 = 4; icon_state = "2-4"},/turf/simulated/floor/tiled/techfloor/grid,/area/vacant/vacant_site2) -"bgM" = (/obj/structure/cable/green{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/tiled/techfloor/grid,/area/vacant/vacant_site2) -"bgN" = (/obj/structure/closet,/obj/random/maintenance/medical,/obj/random/maintenance/clean,/obj/random/maintenance/medical,/turf/simulated/floor/tiled/techfloor/grid,/area/vacant/vacant_site2) -"bgO" = (/obj/effect/floor_decal/techfloor{tag = "icon-techfloor_edges (NORTHEAST)"; icon_state = "techfloor_edges"; dir = 5},/obj/structure/closet/firecloset,/obj/random/maintenance/medical,/obj/random/maintenance/medical,/turf/simulated/floor/tiled/techfloor/grid,/area/vacant/vacant_site2) -"bgP" = (/turf/simulated/wall,/area/tether/surfacebase/medical/lobby) -"bgQ" = (/obj/machinery/disposal,/obj/effect/floor_decal/borderfloorwhite{tag = "icon-borderfloor_white (NORTHWEST)"; icon_state = "borderfloor_white"; dir = 9},/obj/effect/floor_decal/corner/paleblue/border{tag = "icon-bordercolor (NORTHWEST)"; icon_state = "bordercolor"; dir = 9},/obj/machinery/alarm{dir = 4; icon_state = "alarm0"; pixel_x = -22; pixel_y = 0},/obj/structure/disposalpipe/trunk{dir = 4},/turf/simulated/floor/tiled/white,/area/tether/surfacebase/medical/lobby) -"bgR" = (/obj/effect/floor_decal/borderfloorwhite{tag = "icon-borderfloor_white (NORTH)"; icon_state = "borderfloor_white"; dir = 1},/obj/effect/floor_decal/corner/paleblue/border{tag = "icon-bordercolor (NORTH)"; icon_state = "bordercolor"; dir = 1},/obj/item/device/radio/intercom{dir = 1; name = "Station Intercom (General)"; pixel_y = 21},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled/white,/area/tether/surfacebase/medical/lobby) -"bgS" = (/obj/effect/floor_decal/borderfloorwhite{tag = "icon-borderfloor_white (NORTH)"; icon_state = "borderfloor_white"; dir = 1},/obj/effect/floor_decal/corner/paleblue/border{tag = "icon-bordercolor (NORTH)"; icon_state = "bordercolor"; dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals6{tag = "icon-steel_decals6 (NORTHWEST)"; icon_state = "steel_decals6"; dir = 9},/obj/machinery/camera/network/medbay,/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled/white,/area/tether/surfacebase/medical/lobby) -"bgT" = (/obj/effect/floor_decal/borderfloorwhite{tag = "icon-borderfloor_white (NORTH)"; icon_state = "borderfloor_white"; dir = 1},/obj/effect/floor_decal/corner/paleblue/border{tag = "icon-bordercolor (NORTH)"; icon_state = "bordercolor"; dir = 1},/obj/effect/floor_decal/borderfloorwhite/corner2{tag = "icon-borderfloorcorner2_white (NORTH)"; icon_state = "borderfloorcorner2_white"; dir = 1},/obj/effect/floor_decal/corner/paleblue/bordercorner2{tag = "icon-bordercolorcorner2 (NORTH)"; icon_state = "bordercolorcorner2"; dir = 1},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled/white,/area/tether/surfacebase/medical/lobby) -"bgU" = (/obj/structure/cable/green{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled/white,/area/tether/surfacebase/medical/lobby) -"bgV" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/disposalpipe/junction,/turf/simulated/floor/tiled/white,/area/tether/surfacebase/medical/lobby) -"bgW" = (/obj/structure/flora/pottedplant{icon_state = "plant-22"},/obj/effect/floor_decal/borderfloorwhite{tag = "icon-borderfloor_white (NORTHEAST)"; icon_state = "borderfloor_white"; dir = 5},/obj/effect/floor_decal/corner/paleblue/border{tag = "icon-bordercolor (NORTHEAST)"; icon_state = "bordercolor"; dir = 5},/obj/effect/floor_decal/borderfloorwhite/corner2{tag = "icon-borderfloorcorner2_white (EAST)"; icon_state = "borderfloorcorner2_white"; dir = 4},/obj/effect/floor_decal/corner/paleblue/bordercorner2{tag = "icon-bordercolorcorner2 (EAST)"; icon_state = "bordercolorcorner2"; dir = 4},/obj/machinery/power/apc{dir = 4; name = "east bump"; pixel_x = 28},/obj/structure/cable/green{icon_state = "0-8"},/obj/structure/extinguisher_cabinet{pixel_y = 30},/turf/simulated/floor/tiled/white,/area/tether/surfacebase/medical/lobby) -"bgX" = (/obj/machinery/disposal,/obj/structure/disposalpipe/trunk{dir = 4},/turf/simulated/floor/wood,/area/tether/surfacebase/reading_room) -"bgY" = (/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{dir = 2; icon_state = "pipe-c"},/turf/simulated/floor/wood,/area/tether/surfacebase/reading_room) -"bgZ" = (/obj/structure/bookcase,/turf/simulated/floor/wood,/area/tether/surfacebase/reading_room) -"bha" = (/obj/structure/bookcase,/obj/machinery/light/small,/turf/simulated/floor/wood,/area/tether/surfacebase/reading_room) -"bhb" = (/obj/structure/table/glass,/obj/item/weapon/paper_bin,/turf/simulated/floor/wood,/area/tether/surfacebase/reading_room) -"bhc" = (/obj/structure/table/glass,/obj/item/weapon/book/codex,/turf/simulated/floor/wood,/area/tether/surfacebase/reading_room) -"bhd" = (/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) -"bhe" = (/obj/structure/grille,/obj/structure/window/reinforced{dir = 5; icon_state = "fwindow"},/obj/machinery/door/firedoor,/turf/simulated/floor/plating,/area/tether/surfacebase/reading_room) -"bhf" = (/obj/machinery/light_switch{pixel_x = -25},/turf/simulated/floor/tiled,/area/gateway) -"bhg" = (/obj/machinery/button/remote/blast_door{id = "PubPrep"; name = "Public Access Shutter -control"; pixel_y = 22; req_access = list(62)},/turf/simulated/floor/tiled,/area/gateway) -"bhh" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/tiled,/area/gateway) -"bhi" = (/obj/machinery/suit_cycler/security{req_access = null},/turf/simulated/floor/tiled,/area/gateway) -"bhj" = (/turf/simulated/wall/r_wall,/area/crew_quarters/recreation_area_restroom) -"bhk" = (/obj/structure/toilet{pixel_y = 16},/obj/machinery/light/small{dir = 8},/turf/simulated/floor/tiled/white,/area/crew_quarters/recreation_area_restroom) -"bhl" = (/turf/simulated/wall,/area/crew_quarters/recreation_area_restroom) -"bhm" = (/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (WEST)"; icon_state = "borderfloor"; dir = 8},/obj/effect/floor_decal/corner/red/border{tag = "icon-bordercolor (WEST)"; icon_state = "bordercolor"; dir = 8},/obj/item/device/radio/intercom{dir = 8; name = "Station Intercom (General)"; pixel_x = -28},/obj/machinery/disposal,/obj/structure/disposalpipe/trunk{dir = 4},/turf/simulated/floor/tiled,/area/tether/surfacebase/security/common) -"bhn" = (/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled,/area/tether/surfacebase/security/common) -"bho" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/disposalpipe/segment{dir = 2; icon_state = "pipe-c"},/turf/simulated/floor/tiled,/area/tether/surfacebase/security/common) -"bhp" = (/obj/structure/table/reinforced,/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (EAST)"; icon_state = "borderfloor"; dir = 4},/obj/effect/floor_decal/corner/red/border{tag = "icon-bordercolor (EAST)"; icon_state = "bordercolor"; dir = 4},/obj/machinery/light_switch{pixel_x = 25},/turf/simulated/floor/tiled,/area/tether/surfacebase/security/common) -"bhq" = (/obj/structure/grille,/obj/structure/window/reinforced{dir = 5; icon_state = "fwindow"},/obj/machinery/door/firedoor,/turf/simulated/floor/plating,/area/tether/surfacebase/security/breakroom) -"bhr" = (/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,/obj/machinery/door/airlock/glass_security{name = "Break Room"; req_access = list(1)},/turf/simulated/floor/tiled/monotile,/area/tether/surfacebase/security/breakroom) -"bhs" = (/obj/effect/floor_decal/techfloor{tag = "icon-techfloor_edges (WEST)"; icon_state = "techfloor_edges"; dir = 8},/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/tiled/techfloor/grid,/area/vacant/vacant_site2) -"bht" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 5},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 5},/turf/simulated/floor/tiled/techfloor/grid,/area/vacant/vacant_site2) -"bhu" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 10},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 10},/turf/simulated/floor/tiled/techfloor/grid,/area/vacant/vacant_site2) -"bhv" = (/obj/effect/floor_decal/techfloor{tag = "icon-techfloor_edges (EAST)"; icon_state = "techfloor_edges"; dir = 4},/obj/effect/floor_decal/techfloor/hole/right{tag = "icon-techfloor_hole_right (EAST)"; icon_state = "techfloor_hole_right"; dir = 4},/turf/simulated/floor/tiled/techfloor/grid,/area/vacant/vacant_site2) -"bhw" = (/obj/machinery/computer/crew{dir = 4},/obj/effect/floor_decal/borderfloorwhite{tag = "icon-borderfloor_white (WEST)"; icon_state = "borderfloor_white"; dir = 8},/obj/effect/floor_decal/corner/paleblue/border{tag = "icon-bordercolor (WEST)"; icon_state = "bordercolor"; dir = 8},/turf/simulated/floor/tiled/white,/area/tether/surfacebase/medical/lobby) -"bhx" = (/obj/structure/bed/chair/office/light,/obj/machinery/atmospherics/unary/vent_pump/on,/turf/simulated/floor/tiled/white,/area/tether/surfacebase/medical/lobby) -"bhy" = (/obj/structure/bed/chair/office/light,/obj/machinery/atmospherics/unary/vent_scrubber/on,/turf/simulated/floor/tiled/white,/area/tether/surfacebase/medical/lobby) -"bhz" = (/obj/structure/table/glass,/turf/simulated/floor/tiled/white,/area/tether/surfacebase/medical/lobby) -"bhA" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/tiled/white,/area/tether/surfacebase/medical/lobby) -"bhB" = (/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled/white,/area/tether/surfacebase/medical/lobby) -"bhC" = (/obj/structure/reagent_dispensers/water_cooler/full,/obj/effect/floor_decal/borderfloorwhite{tag = "icon-borderfloor_white (EAST)"; icon_state = "borderfloor_white"; dir = 4},/obj/effect/floor_decal/corner/paleblue/border{tag = "icon-bordercolor (EAST)"; icon_state = "bordercolor"; dir = 4},/turf/simulated/floor/tiled/white,/area/tether/surfacebase/medical/lobby) -"bhD" = (/obj/structure/grille,/obj/structure/window/reinforced{dir = 5; icon_state = "fwindow"},/obj/machinery/door/firedoor,/obj/structure/window/reinforced{dir = 4},/turf/simulated/floor/plating,/area/tether/surfacebase/medical/lobby) -"bhE" = (/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,/area/tether/surfacebase/reading_room) -"bhF" = (/obj/machinery/power/apc{name = "west bump"; dir = 8; pixel_x = -25; cell_type = /obj/item/weapon/cell/super},/obj/structure/cable{icon_state = "0-4"},/obj/structure/cable{icon_state = "2-4"},/turf/simulated/floor/tiled,/area/gateway) -"bhG" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/tiled,/area/gateway) -"bhH" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/cable{d1 = 2; d2 = 8; icon_state = "2-8"},/turf/simulated/floor/tiled,/area/gateway) -"bhI" = (/obj/machinery/suit_cycler/medical{req_access = null},/turf/simulated/floor/tiled,/area/gateway) -"bhJ" = (/obj/machinery/door/airlock{name = "Unit 1"},/turf/simulated/floor/tiled/white,/area/crew_quarters/recreation_area_restroom) -"bhK" = (/obj/machinery/door/airlock{name = "Unit 2"},/turf/simulated/floor/tiled/white,/area/crew_quarters/recreation_area_restroom) -"bhL" = (/obj/machinery/door/airlock{name = "Unit 3"},/turf/simulated/floor/tiled/white,/area/crew_quarters/recreation_area_restroom) -"bhM" = (/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (WEST)"; icon_state = "borderfloor"; dir = 8},/obj/effect/floor_decal/corner/red/border{tag = "icon-bordercolor (WEST)"; icon_state = "bordercolor"; dir = 8},/obj/machinery/camera/network/security{c_tag = "SEC - Interrogation Observation"; dir = 4},/turf/simulated/floor/tiled,/area/tether/surfacebase/security/common) -"bhN" = (/obj/machinery/atmospherics/unary/vent_pump/on{dir = 4},/turf/simulated/floor/tiled,/area/tether/surfacebase/security/common) -"bhO" = (/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled,/area/tether/surfacebase/security/common) -"bhP" = (/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (EAST)"; icon_state = "borderfloor"; dir = 4},/obj/effect/floor_decal/corner/red/border{tag = "icon-bordercolor (EAST)"; icon_state = "bordercolor"; dir = 4},/obj/effect/floor_decal/borderfloor/corner2{tag = "icon-borderfloorcorner2 (NORTHEAST)"; icon_state = "borderfloorcorner2"; dir = 5},/obj/effect/floor_decal/corner/red/bordercorner2{tag = "icon-bordercolorcorner2 (NORTHEAST)"; icon_state = "bordercolorcorner2"; dir = 5},/turf/simulated/floor/tiled,/area/tether/surfacebase/security/common) -"bhQ" = (/obj/structure/grille,/obj/structure/window/reinforced{dir = 5; icon_state = "fwindow"},/obj/machinery/door/firedoor,/turf/simulated/floor/plating,/area/tether/surfacebase/security/lobby) -"bhR" = (/obj/structure/flora/pottedplant{icon_state = "plant-22"},/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (NORTHWEST)"; icon_state = "borderfloor"; dir = 9},/obj/effect/floor_decal/corner/red/border{tag = "icon-bordercolor (NORTHWEST)"; icon_state = "bordercolor"; dir = 9},/obj/effect/floor_decal/borderfloor/corner2{tag = "icon-borderfloorcorner2 (SOUTHWEST)"; icon_state = "borderfloorcorner2"; dir = 10},/obj/effect/floor_decal/corner/red/bordercorner2{tag = "icon-bordercolorcorner2 (SOUTHWEST)"; icon_state = "bordercolorcorner2"; dir = 10},/obj/machinery/newscaster{pixel_x = 0; pixel_y = 30},/turf/simulated/floor/tiled,/area/tether/surfacebase/security/lobby) -"bhS" = (/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (NORTH)"; icon_state = "borderfloor"; dir = 1},/obj/effect/floor_decal/corner/red/border{tag = "icon-bordercolor (NORTH)"; icon_state = "bordercolor"; dir = 1},/obj/effect/floor_decal/borderfloor/corner2{tag = "icon-borderfloorcorner2 (NORTH)"; icon_state = "borderfloorcorner2"; dir = 1},/obj/effect/floor_decal/corner/red/bordercorner2{tag = "icon-bordercolorcorner2 (NORTH)"; icon_state = "bordercolorcorner2"; dir = 1},/obj/machinery/atmospherics/unary/vent_pump/on,/turf/simulated/floor/tiled,/area/tether/surfacebase/security/lobby) -"bhT" = (/obj/structure/cable/green{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled,/area/tether/surfacebase/security/lobby) -"bhU" = (/obj/structure/bed/chair,/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (NORTH)"; icon_state = "borderfloor"; dir = 1},/obj/effect/floor_decal/corner/red/border{tag = "icon-bordercolor (NORTH)"; icon_state = "bordercolor"; dir = 1},/obj/effect/floor_decal/borderfloor/corner2{tag = "icon-borderfloorcorner2 (EAST)"; icon_state = "borderfloorcorner2"; dir = 4},/obj/effect/floor_decal/corner/red/bordercorner2{tag = "icon-bordercolorcorner2 (EAST)"; icon_state = "bordercolorcorner2"; dir = 4},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/tiled,/area/tether/surfacebase/security/lobby) -"bhV" = (/obj/structure/bed/chair,/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (NORTH)"; icon_state = "borderfloor"; dir = 1},/obj/effect/floor_decal/corner/red/border{tag = "icon-bordercolor (NORTH)"; icon_state = "bordercolor"; dir = 1},/obj/structure/cable/green{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/tiled,/area/tether/surfacebase/security/lobby) -"bhW" = (/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (NORTH)"; icon_state = "borderfloor"; dir = 1},/obj/effect/floor_decal/corner/red/border{tag = "icon-bordercolor (NORTH)"; icon_state = "bordercolor"; dir = 1},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/unary/vent_scrubber/on,/turf/simulated/floor/tiled,/area/tether/surfacebase/security/lobby) -"bhX" = (/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (NORTHEAST)"; icon_state = "borderfloor"; dir = 5},/obj/effect/floor_decal/corner/red/border{tag = "icon-bordercolor (NORTHEAST)"; icon_state = "bordercolor"; dir = 5},/obj/structure/cable/green{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/tiled,/area/tether/surfacebase/security/lobby) -"bhY" = (/obj/machinery/door/airlock/maintenance/sec{req_access = list(1)},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/door/firedoor/glass,/turf/simulated/floor/tiled/techfloor/grid,/area/tether/surfacebase/security/lobby) -"bhZ" = (/obj/effect/floor_decal/techfloor{tag = "icon-techfloor_edges (WEST)"; icon_state = "techfloor_edges"; dir = 8},/obj/effect/floor_decal/techfloor/corner{tag = "icon-techfloor_corners (NORTH)"; icon_state = "techfloor_corners"; dir = 1},/obj/structure/cable/green{d1 = 1; d2 = 8; icon_state = "1-8"},/turf/simulated/floor/tiled/techfloor/grid,/area/vacant/vacant_site2) -"bia" = (/obj/effect/floor_decal/techfloor{tag = "icon-techfloor_edges (EAST)"; icon_state = "techfloor_edges"; dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 10},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 10},/turf/simulated/floor/tiled/techfloor/grid,/area/vacant/vacant_site2) -"bib" = (/obj/structure/table/glass,/obj/machinery/light{icon_state = "tube1"; dir = 8},/obj/effect/floor_decal/borderfloorwhite{tag = "icon-borderfloor_white (WEST)"; icon_state = "borderfloor_white"; dir = 8},/obj/effect/floor_decal/corner/paleblue/border{tag = "icon-bordercolor (WEST)"; icon_state = "bordercolor"; dir = 8},/turf/simulated/floor/tiled/white,/area/tether/surfacebase/medical/lobby) -"bic" = (/obj/structure/table/glass,/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 5},/turf/simulated/floor/tiled/white,/area/tether/surfacebase/medical/lobby) -"bid" = (/obj/structure/table/glass,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 5},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled/white,/area/tether/surfacebase/medical/lobby) -"bie" = (/obj/structure/table/glass,/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/lobby) -"bif" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 9},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 9},/turf/simulated/floor/tiled/white,/area/tether/surfacebase/medical/lobby) -"big" = (/obj/structure/table/glass,/obj/item/weapon/storage/box/cups,/obj/item/weapon/storage/box/cups,/obj/machinery/light{dir = 4; icon_state = "tube1"},/obj/effect/floor_decal/borderfloorwhite{tag = "icon-borderfloor_white (EAST)"; icon_state = "borderfloor_white"; dir = 4},/obj/effect/floor_decal/corner/paleblue/border{tag = "icon-bordercolor (EAST)"; icon_state = "bordercolor"; dir = 4},/turf/simulated/floor/tiled/white,/area/tether/surfacebase/medical/lobby) -"bih" = (/obj/structure/grille,/obj/structure/window/reinforced{dir = 5; icon_state = "fwindow"},/obj/machinery/door/firedoor,/obj/structure/window/reinforced{dir = 8},/turf/simulated/floor/plating,/area/tether/surfacebase/atrium_three) -"bii" = (/turf/simulated/floor/tiled,/area/tether/surfacebase/atrium_three) -"bij" = (/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,/area/tether/surfacebase/atrium_three) -"bik" = (/obj/structure/grille,/obj/structure/window/reinforced{dir = 5; icon_state = "fwindow"},/obj/machinery/door/firedoor,/obj/structure/window/reinforced{dir = 4},/turf/simulated/floor/plating,/area/tether/surfacebase/atrium_three) -"bil" = (/obj/effect/floor_decal/industrial/warning,/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 6},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 6},/obj/machinery/camera/network/command{c_tag = "COM - Bridge Hallway"; dir = 4},/turf/simulated/floor/tiled,/area/gateway) -"bim" = (/obj/effect/floor_decal/industrial/warning,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled,/area/gateway) -"bin" = (/obj/effect/floor_decal/industrial/warning/corner{icon_state = "warningcorner"; dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled,/area/gateway) -"bio" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 4},/turf/simulated/floor/tiled,/area/gateway) -"bip" = (/obj/machinery/suit_cycler/engineering{req_access = null},/turf/simulated/floor/tiled,/area/gateway) -"biq" = (/obj/machinery/light_switch{pixel_x = -25},/turf/simulated/floor/tiled/white,/area/crew_quarters/recreation_area_restroom) -"bir" = (/obj/machinery/atmospherics/unary/vent_pump/on,/turf/simulated/floor/tiled/white,/area/crew_quarters/recreation_area_restroom) -"bis" = (/turf/simulated/floor/tiled/white,/area/crew_quarters/recreation_area_restroom) -"bit" = (/obj/machinery/atmospherics/unary/vent_scrubber/on,/turf/simulated/floor/tiled/white,/area/crew_quarters/recreation_area_restroom) -"biu" = (/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (WEST)"; icon_state = "borderfloor"; dir = 8},/obj/effect/floor_decal/corner/red/border{tag = "icon-bordercolor (WEST)"; icon_state = "bordercolor"; dir = 8},/turf/simulated/floor/tiled,/area/tether/surfacebase/security/common) -"biv" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 5},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 5},/obj/structure/disposalpipe/segment{dir = 1; icon_state = "pipe-c"},/turf/simulated/floor/tiled,/area/tether/surfacebase/security/common) -"biw" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled,/area/tether/surfacebase/security/common) -"bix" = (/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 = null; layer = 2.8; name = "Security"; req_access = list(63)},/turf/simulated/floor/tiled/monotile,/area/tether/surfacebase/security/lobby) -"biy" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled,/area/tether/surfacebase/security/lobby) -"biz" = (/obj/machinery/atmospherics/pipe/manifold/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled,/area/tether/surfacebase/security/lobby) -"biA" = (/obj/machinery/atmospherics/pipe/manifold/hidden/supply,/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,/obj/structure/disposalpipe/junction{icon_state = "pipe-j2"; dir = 4},/turf/simulated/floor/tiled,/area/tether/surfacebase/security/lobby) -"biB" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 1},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 10},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled,/area/tether/surfacebase/security/lobby) -"biC" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 9},/obj/structure/disposalpipe/segment{dir = 2; icon_state = "pipe-c"},/turf/simulated/floor/tiled,/area/tether/surfacebase/security/lobby) -"biD" = (/obj/structure/bed/chair{dir = 8},/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (EAST)"; icon_state = "borderfloor"; dir = 4},/obj/effect/floor_decal/corner/red/border{tag = "icon-bordercolor (EAST)"; icon_state = "bordercolor"; dir = 4},/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/extinguisher_cabinet{dir = 8; icon_state = "extinguisher_closed"; pixel_x = 30; tag = "icon-extinguisher_closed (WEST)"},/turf/simulated/floor/tiled,/area/tether/surfacebase/security/lobby) -"biE" = (/turf/simulated/wall/r_wall,/area/tether/surfacebase/security/lobby) -"biF" = (/obj/effect/floor_decal/techfloor{tag = "icon-techfloor_edges (WEST)"; icon_state = "techfloor_edges"; dir = 8},/turf/simulated/floor/tiled/techfloor/grid,/area/vacant/vacant_site2) -"biG" = (/obj/effect/floor_decal/techfloor{tag = "icon-techfloor_edges (EAST)"; icon_state = "techfloor_edges"; dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/tiled/techfloor/grid,/area/vacant/vacant_site2) -"biH" = (/obj/effect/floor_decal/borderfloorwhite{tag = "icon-borderfloor_white (WEST)"; icon_state = "borderfloor_white"; dir = 8},/obj/effect/floor_decal/corner/paleblue/border{tag = "icon-bordercolor (WEST)"; icon_state = "bordercolor"; dir = 8},/obj/machinery/firealarm{dir = 8; pixel_x = -24},/turf/simulated/floor/tiled/white,/area/tether/surfacebase/medical/lobby) -"biI" = (/turf/simulated/floor/tiled/white,/area/tether/surfacebase/medical/lobby) -"biJ" = (/obj/structure/disposalpipe/junction{icon_state = "pipe-j2"; dir = 2},/turf/simulated/floor/tiled/white,/area/tether/surfacebase/medical/lobby) -"biK" = (/obj/machinery/disposal,/obj/effect/floor_decal/borderfloorwhite{tag = "icon-borderfloor_white (EAST)"; icon_state = "borderfloor_white"; dir = 4},/obj/effect/floor_decal/corner/paleblue/border{tag = "icon-bordercolor (EAST)"; icon_state = "bordercolor"; dir = 4},/obj/structure/disposalpipe/trunk{dir = 8},/turf/simulated/floor/tiled/white,/area/tether/surfacebase/medical/lobby) -"biL" = (/obj/structure/lattice,/obj/machinery/door/firedoor/glass,/obj/structure/cable{icon_state = "32-4"},/obj/machinery/atmospherics/pipe/zpipe/down/supply{tag = "icon-down-supply (EAST)"; icon_state = "down-supply"; dir = 4},/obj/machinery/atmospherics/pipe/zpipe/down/scrubbers{tag = "icon-down-scrubbers (EAST)"; icon_state = "down-scrubbers"; dir = 4},/turf/simulated/open,/area/gateway) -"biM" = (/obj/structure/grille,/obj/structure/railing{dir = 4},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/turf/simulated/floor/plating,/area/gateway) -"biN" = (/obj/structure/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 9},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 9},/turf/simulated/floor/bluegrid,/area/gateway) -"biO" = (/obj/machinery/mech_recharger,/turf/simulated/floor/bluegrid,/area/gateway) -"biP" = (/obj/machinery/alarm{dir = 1; pixel_y = -25},/turf/simulated/floor/bluegrid,/area/gateway) -"biQ" = (/turf/simulated/floor/bluegrid,/area/gateway) -"biR" = (/obj/effect/floor_decal/industrial/warning{dir = 8},/turf/simulated/floor/tiled,/area/gateway) -"biS" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/disposalpipe/segment{dir = 4; icon_state = "pipe-c"},/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0},/turf/simulated/floor/tiled,/area/gateway) -"biT" = (/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled,/area/gateway) -"biU" = (/obj/machinery/button/remote/blast_door{id = "PubPrepFront"; name = "Gateway Shutter"; pixel_y = -22; req_access = list(62)},/obj/structure/flora/pottedplant{tag = "icon-plant-24"; icon_state = "plant-24"},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled,/area/gateway) -"biV" = (/obj/machinery/disposal,/obj/structure/disposalpipe/trunk{dir = 8},/turf/simulated/floor/tiled,/area/gateway) -"biW" = (/obj/machinery/power/apc{name = "west bump"; dir = 8; pixel_x = -25; cell_type = /obj/item/weapon/cell/super},/obj/structure/cable{icon_state = "0-4"},/turf/simulated/floor/tiled/white,/area/crew_quarters/recreation_area_restroom) -"biX" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 6},/obj/structure/cable{d1 = 2; d2 = 8; icon_state = "2-8"},/turf/simulated/floor/tiled/white,/area/crew_quarters/recreation_area_restroom) -"biY" = (/obj/machinery/light,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/turf/simulated/floor/tiled/white,/area/crew_quarters/recreation_area_restroom) -"biZ" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 9},/obj/machinery/alarm{dir = 1; pixel_y = -25},/turf/simulated/floor/tiled/white,/area/crew_quarters/recreation_area_restroom) -"bja" = (/obj/structure/sink{dir = 4; icon_state = "sink"; pixel_x = 11; pixel_y = 0},/turf/simulated/floor/tiled/white,/area/crew_quarters/recreation_area_restroom) -"bjb" = (/obj/structure/flora/pottedplant{icon_state = "plant-22"},/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (SOUTHWEST)"; icon_state = "borderfloor"; dir = 10},/obj/effect/floor_decal/corner/red/border{tag = "icon-bordercolor (SOUTHWEST)"; icon_state = "bordercolor"; dir = 10},/obj/machinery/alarm{dir = 4; icon_state = "alarm0"; pixel_x = -22; pixel_y = 0},/turf/simulated/floor/tiled,/area/tether/surfacebase/security/common) -"bjc" = (/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/corner/red/border,/turf/simulated/floor/tiled,/area/tether/surfacebase/security/common) -"bjd" = (/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/corner/red/border,/obj/machinery/light,/turf/simulated/floor/tiled,/area/tether/surfacebase/security/common) -"bje" = (/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (SOUTHEAST)"; icon_state = "borderfloor"; dir = 6},/obj/effect/floor_decal/corner/red/border{tag = "icon-bordercolor (SOUTHEAST)"; icon_state = "bordercolor"; dir = 6},/obj/effect/floor_decal/borderfloor/corner2{tag = "icon-borderfloorcorner2 (SOUTHEAST)"; icon_state = "borderfloorcorner2"; dir = 6},/obj/effect/floor_decal/corner/red/bordercorner2{tag = "icon-bordercolorcorner2 (SOUTHEAST)"; icon_state = "bordercolorcorner2"; dir = 6},/turf/simulated/floor/tiled,/area/tether/surfacebase/security/common) -"bjf" = (/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (SOUTHWEST)"; icon_state = "borderfloor"; dir = 10},/obj/effect/floor_decal/corner/red/border{tag = "icon-bordercolor (SOUTHWEST)"; icon_state = "bordercolor"; dir = 10},/obj/effect/floor_decal/borderfloor/corner2{tag = "icon-borderfloorcorner2 (WEST)"; icon_state = "borderfloorcorner2"; dir = 8},/obj/effect/floor_decal/corner/red/bordercorner2{tag = "icon-bordercolorcorner2 (WEST)"; icon_state = "bordercolorcorner2"; dir = 8},/turf/simulated/floor/tiled,/area/tether/surfacebase/security/lobby) -"bjg" = (/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/corner/red/border,/obj/machinery/alarm{dir = 1; pixel_y = -25},/turf/simulated/floor/tiled,/area/tether/surfacebase/security/lobby) -"bjh" = (/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/corner/red/border,/obj/machinery/camera/network/security{tag = "icon-camera (NORTH)"; icon_state = "camera"; dir = 1},/turf/simulated/floor/tiled,/area/tether/surfacebase/security/lobby) -"bji" = (/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/corner/red/border,/obj/effect/floor_decal/borderfloor/corner2{tag = "icon-borderfloorcorner2 (NORTHWEST)"; icon_state = "borderfloorcorner2"; dir = 9},/obj/effect/floor_decal/corner/red/bordercorner2{tag = "icon-bordercolorcorner2 (NORTHWEST)"; icon_state = "bordercolorcorner2"; dir = 9},/obj/machinery/firealarm{dir = 1; pixel_x = 0; pixel_y = -25},/turf/simulated/floor/tiled,/area/tether/surfacebase/security/lobby) -"bjj" = (/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/tether/surfacebase/security/lobby) -"bjk" = (/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled,/area/tether/surfacebase/security/lobby) -"bjl" = (/obj/structure/bed/chair{dir = 8},/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (SOUTHEAST)"; icon_state = "borderfloor"; dir = 6},/obj/effect/floor_decal/corner/red/border{tag = "icon-bordercolor (SOUTHEAST)"; icon_state = "bordercolor"; dir = 6},/obj/effect/floor_decal/borderfloor/corner2,/obj/effect/floor_decal/corner/red/bordercorner2,/obj/machinery/power/apc{dir = 4; name = "east bump"; pixel_x = 28},/obj/structure/cable/green,/turf/simulated/floor/tiled,/area/tether/surfacebase/security/lobby) -"bjm" = (/obj/machinery/portable_atmospherics/powered/scrubber/huge/stationary{scrub_id = "atrium"},/turf/simulated/floor/tiled/techmaint,/area/tether/surfacebase/atrium_three) -"bjn" = (/obj/effect/floor_decal/techfloor{tag = "icon-techfloor_edges (SOUTHWEST)"; icon_state = "techfloor_edges"; dir = 10},/obj/effect/floor_decal/techfloor/hole{tag = "icon-techfloor_hole_left (WEST)"; icon_state = "techfloor_hole_left"; dir = 8},/obj/structure/closet/crate,/obj/random/maintenance/clean,/obj/random/maintenance/medical,/obj/random/maintenance/security,/obj/random/junk,/obj/random/maintenance/medical,/turf/simulated/floor/tiled/techfloor/grid,/area/vacant/vacant_site2) -"bjo" = (/obj/effect/floor_decal/techfloor/corner{tag = "icon-techfloor_corners (WEST)"; icon_state = "techfloor_corners"; dir = 8},/obj/effect/floor_decal/techfloor/corner,/obj/effect/floor_decal/techfloor{tag = "icon-techfloor_edges (EAST)"; icon_state = "techfloor_edges"; dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/tiled/techfloor/grid,/area/vacant/vacant_site2) -"bjp" = (/obj/structure/bed/chair{dir = 1},/obj/effect/floor_decal/borderfloorwhite{tag = "icon-borderfloor_white (SOUTHWEST)"; icon_state = "borderfloor_white"; dir = 10},/obj/effect/floor_decal/corner/paleblue/border{tag = "icon-bordercolor (SOUTHWEST)"; icon_state = "bordercolor"; dir = 10},/obj/machinery/computer/guestpass{dir = 4; pixel_x = -28; pixel_y = 0},/turf/simulated/floor/tiled/white,/area/tether/surfacebase/medical/lobby) -"bjq" = (/obj/structure/bed/chair{dir = 1},/obj/effect/floor_decal/borderfloorwhite,/obj/effect/floor_decal/corner/paleblue/border,/turf/simulated/floor/tiled/white,/area/tether/surfacebase/medical/lobby) -"bjr" = (/obj/structure/bed/chair{dir = 1},/obj/effect/floor_decal/borderfloorwhite,/obj/effect/floor_decal/corner/paleblue/border,/obj/effect/floor_decal/borderfloorwhite/corner2{tag = "icon-borderfloorcorner2_white (NORTHWEST)"; icon_state = "borderfloorcorner2_white"; dir = 9},/obj/effect/floor_decal/corner/paleblue/bordercorner2{tag = "icon-bordercolorcorner2 (NORTHWEST)"; icon_state = "bordercolorcorner2"; dir = 9},/turf/simulated/floor/tiled/white,/area/tether/surfacebase/medical/lobby) -"bjs" = (/obj/structure/flora/pottedplant{icon_state = "plant-22"},/obj/effect/floor_decal/borderfloorwhite{tag = "icon-borderfloor_white (SOUTHEAST)"; icon_state = "borderfloor_white"; dir = 6},/obj/effect/floor_decal/corner/paleblue/border{tag = "icon-bordercolor (SOUTHEAST)"; icon_state = "bordercolor"; dir = 6},/obj/effect/floor_decal/borderfloorwhite/corner2,/obj/effect/floor_decal/corner/paleblue/bordercorner2,/obj/effect/floor_decal/steeldecal/steel_decals9{tag = "icon-steel_decals9 (NORTH)"; icon_state = "steel_decals9"; dir = 1},/obj/machinery/newscaster{pixel_x = 25},/turf/simulated/floor/tiled/white,/area/tether/surfacebase/medical/lobby) -"bjt" = (/turf/simulated/wall,/area/tether/surfacebase/atrium_three) -"bju" = (/obj/structure/extinguisher_cabinet{dir = 8; icon_state = "extinguisher_closed"; pixel_x = 30; tag = "icon-extinguisher_closed (WEST)"},/turf/simulated/floor/tiled,/area/tether/surfacebase/atrium_three) -"bjv" = (/turf/simulated/wall/r_wall,/area/tether/surfacebase/atrium_three) -"bjw" = (/obj/machinery/door/airlock/multi_tile/metal{name = "Gateway Prep Room"},/obj/machinery/door/blast/shutters{dir = 2; id = "PubPrepFront"; layer = 3.3; name = "Gateway Prep Shutter"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/disposalpipe/segment,/obj/machinery/door/firedoor,/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0},/turf/simulated/floor/tiled,/area/gateway) -"bjx" = (/obj/machinery/door/blast/shutters{dir = 2; id = "PubPrepFront"; layer = 3.3; name = "Gateway Prep Shutter"},/obj/machinery/door/firedoor,/turf/simulated/floor/tiled,/area/gateway) -"bjy" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/door/firedoor,/obj/machinery/door/airlock{name = "Unisex Restrooms"},/obj/structure/cable{tag = "icon-1-2"; icon_state = "1-2"},/turf/simulated/floor/tiled/white,/area/crew_quarters/recreation_area_restroom) -"bjz" = (/obj/structure/grille,/obj/structure/window/reinforced{dir = 5; icon_state = "fwindow"},/obj/machinery/door/firedoor,/turf/simulated/floor/plating,/area/tether/surfacebase/security/common) -"bjA" = (/obj/structure/sign/directions/evac{dir = 4},/turf/simulated/wall/r_wall,/area/tether/surfacebase/security/lobby) -"bjB" = (/obj/machinery/door/airlock/multi_tile/glass{name = "Security Lobby"},/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/monotile,/area/tether/surfacebase/security/lobby) -"bjC" = (/obj/machinery/door/firedoor/glass,/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled/monotile,/area/tether/surfacebase/security/lobby) -"bjD" = (/obj/structure/sign/directions/evac,/turf/simulated/wall/r_wall,/area/tether/surfacebase/security/lobby) -"bjE" = (/obj/structure/grille,/obj/structure/railing,/turf/simulated/floor/tiled/techmaint,/area/tether/surfacebase/atrium_three) -"bjF" = (/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/techfloor/grid,/area/vacant/vacant_site2) -"bjG" = (/obj/structure/sign/directions/evac{tag = "icon-direction_evac (WEST)"; icon_state = "direction_evac"; dir = 8},/turf/simulated/wall,/area/tether/surfacebase/medical/lobby) -"bjH" = (/obj/structure/sign/directions/medical{tag = "icon-direction_med (EAST)"; icon_state = "direction_med"; dir = 4; pixel_y = 8},/obj/structure/sign/directions/science{tag = "icon-direction_sci (WEST)"; icon_state = "direction_sci"; dir = 8; pixel_y = 3},/obj/structure/sign/directions/security{tag = "icon-direction_sec (WEST)"; icon_state = "direction_sec"; dir = 8; pixel_y = -4},/obj/structure/sign/directions/engineering{tag = "icon-direction_eng (WEST)"; icon_state = "direction_eng"; dir = 8; pixel_y = -10},/turf/simulated/wall,/area/tether/surfacebase/medical/lobby) -"bjI" = (/obj/structure/grille,/obj/structure/window/reinforced{dir = 5; icon_state = "fwindow"},/obj/machinery/door/firedoor,/turf/simulated/floor/plating,/area/tether/surfacebase/medical/lobby) -"bjJ" = (/obj/machinery/door/airlock/multi_tile/glass{name = "Emergency Treatment Centre lobby"},/obj/machinery/door/firedoor/glass,/turf/simulated/floor/tiled/monotile,/area/tether/surfacebase/medical/lobby) -"bjK" = (/obj/machinery/door/firedoor/glass,/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled/monotile,/area/tether/surfacebase/medical/lobby) -"bjL" = (/obj/structure/sign/greencross,/turf/simulated/wall,/area/tether/surfacebase/medical/lobby) -"bjM" = (/obj/structure/grille,/obj/structure/window/reinforced{dir = 5; icon_state = "fwindow"},/obj/machinery/door/firedoor,/obj/structure/window/reinforced{dir = 1},/turf/simulated/floor/plating,/area/tether/surfacebase/atrium_three) -"bjN" = (/turf/simulated/wall/r_wall,/area/crew_quarters/panic_shelter) -"bjO" = (/obj/machinery/vending/snack,/turf/simulated/floor/tiled,/area/tether/surfacebase/atrium_three) -"bjP" = (/obj/machinery/atmospherics/unary/vent_pump/on,/turf/simulated/floor/tiled,/area/tether/surfacebase/atrium_three) -"bjQ" = (/obj/machinery/light{dir = 1},/turf/simulated/floor/tiled,/area/tether/surfacebase/atrium_three) -"bjR" = (/obj/machinery/alarm{frequency = 1441; pixel_y = 22},/turf/simulated/floor/tiled,/area/tether/surfacebase/atrium_three) -"bjS" = (/obj/machinery/firealarm{dir = 2; layer = 3.3; pixel_x = 0; pixel_y = 26},/turf/simulated/floor/tiled,/area/tether/surfacebase/atrium_three) -"bjT" = (/obj/machinery/atm{pixel_y = 31},/turf/simulated/floor/tiled,/area/tether/surfacebase/atrium_three) -"bjU" = (/obj/structure/cable{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/machinery/camera/network/northern_star,/turf/simulated/floor/tiled,/area/tether/surfacebase/atrium_three) -"bjV" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/tiled,/area/tether/surfacebase/atrium_three) -"bjW" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/disposalpipe/segment,/obj/structure/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/tiled,/area/tether/surfacebase/atrium_three) -"bjX" = (/obj/machinery/button/remote/blast_door{id = "PubPrepFront"; name = "Gateway Shutter"; pixel_y = 22; req_access = list(62)},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/tiled,/area/tether/surfacebase/atrium_three) -"bjY" = (/obj/machinery/atmospherics/unary/vent_pump/on,/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/tiled,/area/tether/surfacebase/atrium_three) -"bjZ" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/turf/simulated/floor/tiled,/area/tether/surfacebase/atrium_three) -"bka" = (/obj/machinery/camera/network/northern_star,/turf/simulated/floor/tiled,/area/tether/surfacebase/atrium_three) -"bkb" = (/obj/structure/bed/chair,/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (NORTH)"; icon_state = "borderfloor"; dir = 1},/obj/effect/floor_decal/corner/red/border{tag = "icon-bordercolor (NORTH)"; icon_state = "bordercolor"; dir = 1},/obj/effect/floor_decal/borderfloor/corner2{tag = "icon-borderfloorcorner2 (EAST)"; icon_state = "borderfloorcorner2"; dir = 4},/obj/effect/floor_decal/corner/red/bordercorner2{tag = "icon-bordercolorcorner2 (EAST)"; icon_state = "bordercolorcorner2"; dir = 4},/turf/simulated/floor/tiled,/area/tether/surfacebase/atrium_three) -"bkc" = (/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (NORTH)"; icon_state = "borderfloor"; dir = 1},/obj/effect/floor_decal/corner/red/border{tag = "icon-bordercolor (NORTH)"; icon_state = "bordercolor"; dir = 1},/obj/structure/bed/chair,/turf/simulated/floor/tiled,/area/tether/surfacebase/atrium_three) -"bkd" = (/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (NORTH)"; icon_state = "borderfloor"; dir = 1},/obj/effect/floor_decal/corner/red/border{tag = "icon-bordercolor (NORTH)"; icon_state = "bordercolor"; dir = 1},/obj/effect/floor_decal/borderfloor/corner2{tag = "icon-borderfloorcorner2 (NORTH)"; icon_state = "borderfloorcorner2"; dir = 1},/obj/effect/floor_decal/corner/red/bordercorner2{tag = "icon-bordercolorcorner2 (NORTH)"; icon_state = "bordercolorcorner2"; dir = 1},/obj/structure/bed/chair,/turf/simulated/floor/tiled,/area/tether/surfacebase/atrium_three) -"bke" = (/obj/machinery/door/firedoor/glass/hidden/steel,/obj/machinery/camera/network/northern_star,/turf/simulated/floor/tiled,/area/tether/surfacebase/atrium_three) -"bkf" = (/obj/effect/floor_decal/corner/red{dir = 1},/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (NORTH)"; icon_state = "borderfloor"; dir = 1},/obj/effect/floor_decal/corner/red/border{tag = "icon-bordercolor (NORTH)"; icon_state = "bordercolor"; dir = 1},/obj/effect/floor_decal/borderfloor/corner2{tag = "icon-borderfloorcorner2 (EAST)"; icon_state = "borderfloorcorner2"; dir = 4},/obj/effect/floor_decal/corner/red/bordercorner2{tag = "icon-bordercolorcorner2 (EAST)"; icon_state = "bordercolorcorner2"; dir = 4},/obj/machinery/power/apc{dir = 1; name = "north bump"; pixel_x = 0; pixel_y = 24},/obj/structure/cable/green{icon_state = "0-4"},/turf/simulated/floor/tiled,/area/tether/surfacebase/atrium_three) -"bkg" = (/obj/machinery/light{dir = 1},/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (NORTH)"; icon_state = "borderfloor"; dir = 1},/obj/effect/floor_decal/corner/red/border{tag = "icon-bordercolor (NORTH)"; icon_state = "bordercolor"; dir = 1},/obj/effect/floor_decal/borderfloor/corner2{tag = "icon-borderfloorcorner2 (NORTH)"; icon_state = "borderfloorcorner2"; dir = 1},/obj/effect/floor_decal/corner/red/bordercorner2{tag = "icon-bordercolorcorner2 (NORTH)"; icon_state = "bordercolorcorner2"; dir = 1},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/tiled,/area/tether/surfacebase/atrium_three) -"bkh" = (/obj/structure/cable/green{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/tiled,/area/tether/surfacebase/atrium_three) -"bki" = (/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled,/area/tether/surfacebase/atrium_three) -"bkj" = (/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (NORTH)"; icon_state = "borderfloor"; dir = 1},/obj/effect/floor_decal/corner/red/border{tag = "icon-bordercolor (NORTH)"; icon_state = "bordercolor"; dir = 1},/obj/effect/floor_decal/borderfloor/corner2{tag = "icon-borderfloorcorner2 (EAST)"; icon_state = "borderfloorcorner2"; dir = 4},/obj/effect/floor_decal/corner/red/bordercorner2{tag = "icon-bordercolorcorner2 (EAST)"; icon_state = "bordercolorcorner2"; dir = 4},/obj/machinery/status_display{pixel_y = 30},/turf/simulated/floor/tiled,/area/tether/surfacebase/atrium_three) -"bkk" = (/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (NORTH)"; icon_state = "borderfloor"; dir = 1},/obj/effect/floor_decal/corner/red/border{tag = "icon-bordercolor (NORTH)"; icon_state = "bordercolor"; dir = 1},/obj/effect/floor_decal/borderfloor/corner2{tag = "icon-borderfloorcorner2 (NORTH)"; icon_state = "borderfloorcorner2"; dir = 1},/obj/effect/floor_decal/corner/red/bordercorner2{tag = "icon-bordercolorcorner2 (NORTH)"; icon_state = "bordercolorcorner2"; dir = 1},/obj/effect/floor_decal/industrial/warning/corner{dir = 4},/turf/simulated/floor/tiled,/area/tether/surfacebase/atrium_three) -"bkl" = (/obj/effect/floor_decal/industrial/warning{dir = 1},/turf/simulated/floor/tiled,/area/tether/surfacebase/atrium_three) -"bkm" = (/obj/effect/floor_decal/industrial/warning/corner{icon_state = "warningcorner"; dir = 1},/obj/machinery/newscaster{pixel_x = 0; pixel_y = 30},/turf/simulated/floor/tiled,/area/tether/surfacebase/atrium_three) -"bkn" = (/obj/item/device/radio/intercom{dir = 1; name = "Station Intercom (General)"; pixel_y = 21},/turf/simulated/floor/tiled,/area/tether/surfacebase/atrium_three) -"bko" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/tiled,/area/tether/surfacebase/atrium_three) -"bkp" = (/obj/machinery/atmospherics/unary/vent_pump/on,/obj/machinery/camera/network/northern_star,/turf/simulated/floor/tiled,/area/tether/surfacebase/atrium_three) -"bkq" = (/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (NORTH)"; icon_state = "borderfloor"; dir = 1},/obj/effect/floor_decal/corner/paleblue/border{tag = "icon-bordercolor (NORTH)"; icon_state = "bordercolor"; dir = 1},/obj/effect/floor_decal/borderfloor/corner2{tag = "icon-borderfloorcorner2 (EAST)"; icon_state = "borderfloorcorner2"; dir = 4},/obj/effect/floor_decal/corner/paleblue/bordercorner2{tag = "icon-bordercolorcorner2 (EAST)"; icon_state = "bordercolorcorner2"; dir = 4},/turf/simulated/floor/tiled,/area/tether/surfacebase/atrium_three) -"bkr" = (/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (NORTH)"; icon_state = "borderfloor"; dir = 1},/obj/effect/floor_decal/corner/paleblue/border{tag = "icon-bordercolor (NORTH)"; icon_state = "bordercolor"; dir = 1},/obj/effect/floor_decal/borderfloor/corner2{tag = "icon-borderfloorcorner2 (NORTH)"; icon_state = "borderfloorcorner2"; dir = 1},/obj/effect/floor_decal/corner/paleblue/bordercorner2{tag = "icon-bordercolorcorner2 (NORTH)"; icon_state = "bordercolorcorner2"; dir = 1},/turf/simulated/floor/tiled,/area/tether/surfacebase/atrium_three) -"bks" = (/obj/machinery/light{dir = 1},/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (NORTH)"; icon_state = "borderfloor"; dir = 1},/obj/effect/floor_decal/corner/paleblue/border{tag = "icon-bordercolor (NORTH)"; icon_state = "bordercolor"; dir = 1},/obj/effect/floor_decal/borderfloor/corner2{tag = "icon-borderfloorcorner2 (NORTH)"; icon_state = "borderfloorcorner2"; dir = 1},/obj/effect/floor_decal/corner/paleblue/bordercorner2{tag = "icon-bordercolorcorner2 (NORTH)"; icon_state = "bordercolorcorner2"; dir = 1},/turf/simulated/floor/tiled,/area/tether/surfacebase/atrium_three) -"bkt" = (/obj/structure/bed,/obj/effect/floor_decal/techfloor{tag = "icon-techfloor_edges (NORTHWEST)"; icon_state = "techfloor_edges"; dir = 9},/obj/machinery/firealarm{dir = 8; pixel_x = -24},/obj/machinery/status_display{pixel_y = 30},/turf/simulated/floor/tiled/techfloor,/area/crew_quarters/panic_shelter) -"bku" = (/obj/effect/floor_decal/techfloor{tag = "icon-techfloor_edges (NORTH)"; icon_state = "techfloor_edges"; dir = 1},/obj/machinery/alarm{frequency = 1441; pixel_y = 22},/turf/simulated/floor/tiled/techfloor,/area/crew_quarters/panic_shelter) -"bkv" = (/obj/machinery/light/small{dir = 1},/obj/effect/floor_decal/techfloor{tag = "icon-techfloor_edges (NORTH)"; icon_state = "techfloor_edges"; dir = 1},/turf/simulated/floor/tiled/techfloor,/area/crew_quarters/panic_shelter) -"bkw" = (/obj/structure/sign/nosmoking_2{pixel_y = 29},/obj/effect/floor_decal/techfloor{tag = "icon-techfloor_edges (NORTH)"; icon_state = "techfloor_edges"; dir = 1},/turf/simulated/floor/tiled/techfloor,/area/crew_quarters/panic_shelter) -"bkx" = (/obj/machinery/portable_atmospherics/powered/pump/filled,/obj/effect/floor_decal/techfloor{tag = "icon-techfloor_edges (NORTH)"; icon_state = "techfloor_edges"; dir = 1},/obj/item/device/radio/intercom{dir = 1; name = "Station Intercom (General)"; pixel_y = 21},/turf/simulated/floor/tiled/techfloor,/area/crew_quarters/panic_shelter) -"bky" = (/obj/machinery/portable_atmospherics/powered/pump/filled,/obj/effect/floor_decal/techfloor{tag = "icon-techfloor_edges (NORTH)"; icon_state = "techfloor_edges"; dir = 1},/obj/machinery/newscaster{pixel_x = 0; pixel_y = 30},/turf/simulated/floor/tiled/techfloor,/area/crew_quarters/panic_shelter) -"bkz" = (/obj/effect/floor_decal/industrial/warning{icon_state = "warning"; dir = 4},/obj/machinery/portable_atmospherics/powered/pump/filled,/obj/effect/floor_decal/techfloor{tag = "icon-techfloor_edges (NORTH)"; icon_state = "techfloor_edges"; dir = 1},/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/tiled/techfloor,/area/crew_quarters/panic_shelter) -"bkA" = (/obj/machinery/portable_atmospherics/powered/scrubber/huge/stationary,/obj/effect/floor_decal/techfloor{tag = "icon-techfloor_edges (NORTHEAST)"; icon_state = "techfloor_edges"; dir = 5},/turf/simulated/floor/tiled/techfloor,/area/crew_quarters/panic_shelter) -"bkB" = (/obj/machinery/alarm{dir = 4; icon_state = "alarm0"; pixel_x = -22; pixel_y = 0},/obj/structure/flora/pottedplant{tag = "icon-plant-21"; icon_state = "plant-21"},/turf/simulated/floor/tiled,/area/tether/surfacebase/atrium_three) -"bkC" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 6},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 5},/turf/simulated/floor/tiled,/area/tether/surfacebase/atrium_three) -"bkD" = (/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/atrium_three) -"bkE" = (/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 1},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 1},/turf/simulated/floor/tiled,/area/tether/surfacebase/atrium_three) -"bkF" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0},/turf/simulated/floor/tiled,/area/tether/surfacebase/atrium_three) -"bkG" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/disposalpipe/segment{dir = 4; icon_state = "pipe-c"},/turf/simulated/floor/tiled,/area/tether/surfacebase/atrium_three) -"bkH" = (/obj/machinery/atmospherics/pipe/manifold/hidden/supply,/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,/obj/structure/disposalpipe/segment{dir = 8; icon_state = "pipe-c"},/turf/simulated/floor/tiled,/area/tether/surfacebase/atrium_three) -"bkI" = (/obj/machinery/atmospherics/pipe/manifold/hidden/supply,/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 1},/turf/simulated/floor/tiled,/area/tether/surfacebase/atrium_three) -"bkJ" = (/obj/machinery/atmospherics/pipe/manifold/hidden/supply,/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,/turf/simulated/floor/tiled,/area/tether/surfacebase/atrium_three) -"bkK" = (/obj/machinery/door/firedoor/glass/hidden/steel,/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/atrium_three) -"bkL" = (/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/atrium_three) -"bkM" = (/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,/obj/machinery/atmospherics/pipe/manifold/hidden/supply,/turf/simulated/floor/tiled,/area/tether/surfacebase/atrium_three) -"bkN" = (/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 1},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 1},/obj/structure/disposalpipe/junction{icon_state = "pipe-j2"; dir = 2},/turf/simulated/floor/tiled,/area/tether/surfacebase/atrium_three) -"bkO" = (/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/atrium_three) -"bkP" = (/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,/obj/machinery/atmospherics/pipe/manifold/hidden/supply,/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled,/area/tether/surfacebase/atrium_three) -"bkQ" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 9},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 10},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled,/area/tether/surfacebase/atrium_three) -"bkR" = (/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled,/area/tether/surfacebase/atrium_three) -"bkS" = (/obj/structure/disposalpipe/junction{dir = 8},/turf/simulated/floor/tiled,/area/tether/surfacebase/atrium_three) -"bkT" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 6},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 6},/obj/structure/disposalpipe/junction{dir = 8; icon_state = "pipe-j2"},/turf/simulated/floor/tiled,/area/tether/surfacebase/atrium_three) -"bkU" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled,/area/tether/surfacebase/atrium_three) -"bkV" = (/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},/obj/structure/disposalpipe/segment{dir = 8; icon_state = "pipe-c"},/turf/simulated/floor/tiled,/area/tether/surfacebase/atrium_three) -"bkW" = (/obj/machinery/status_display{pixel_x = 32; pixel_y = 0},/turf/simulated/floor/tiled,/area/tether/surfacebase/atrium_three) -"bkX" = (/obj/structure/bed,/obj/effect/floor_decal/techfloor{tag = "icon-techfloor_edges (WEST)"; icon_state = "techfloor_edges"; dir = 8},/turf/simulated/floor/tiled/techfloor,/area/crew_quarters/panic_shelter) -"bkY" = (/turf/simulated/floor/tiled/techfloor,/area/crew_quarters/panic_shelter) -"bkZ" = (/obj/machinery/atmospherics/unary/vent_pump/positive,/turf/simulated/floor/tiled/techfloor,/area/crew_quarters/panic_shelter) -"bla" = (/obj/effect/floor_decal/industrial/warning/corner{dir = 4},/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/tiled/techfloor,/area/crew_quarters/panic_shelter) -"blb" = (/obj/effect/floor_decal/industrial/warning{dir = 1},/obj/structure/extinguisher_cabinet{pixel_x = 27},/obj/effect/floor_decal/techfloor{tag = "icon-techfloor_edges (EAST)"; icon_state = "techfloor_edges"; dir = 4},/turf/simulated/floor/tiled/techfloor,/area/crew_quarters/panic_shelter) -"blc" = (/obj/machinery/camera/network/northern_star{tag = "icon-camera (EAST)"; icon_state = "camera"; dir = 4},/turf/simulated/floor/outdoors/grass/sif/virgo3b,/area/tether/surfacebase/outside/outside3) -"bld" = (/obj/machinery/vending/cola,/turf/simulated/floor/tiled,/area/tether/surfacebase/atrium_three) -"ble" = (/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 1},/turf/simulated/floor/tiled,/area/tether/surfacebase/atrium_three) -"blf" = (/obj/machinery/camera/network/civilian{tag = "icon-camera (NORTH)"; icon_state = "camera"; dir = 1},/turf/simulated/floor/tiled,/area/tether/surfacebase/atrium_three) -"blg" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/tiled,/area/tether/surfacebase/atrium_three) -"blh" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0},/turf/simulated/floor/tiled,/area/tether/surfacebase/atrium_three) -"bli" = (/obj/machinery/light,/turf/simulated/floor/tiled,/area/tether/surfacebase/atrium_three) -"blj" = (/obj/machinery/door/firedoor/glass/hidden/steel,/turf/simulated/floor/tiled,/area/tether/surfacebase/atrium_three) -"blk" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled,/area/tether/surfacebase/atrium_three) -"bll" = (/obj/effect/floor_decal/corner_steel_grid,/turf/simulated/floor/tiled,/area/tether/surfacebase/atrium_three) -"blm" = (/obj/effect/floor_decal/steeldecal/steel_decals7,/obj/effect/floor_decal/steeldecal/steel_decals7{tag = "icon-steel_decals7 (EAST)"; icon_state = "steel_decals7"; dir = 4},/turf/simulated/floor/tiled,/area/tether/surfacebase/atrium_three) -"bln" = (/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals7,/obj/effect/floor_decal/steeldecal/steel_decals7{tag = "icon-steel_decals7 (EAST)"; icon_state = "steel_decals7"; dir = 4},/turf/simulated/floor/tiled,/area/tether/surfacebase/atrium_three) -"blo" = (/obj/effect/floor_decal/corner_steel_grid{tag = "icon-steel_grid (WEST)"; icon_state = "steel_grid"; dir = 8},/turf/simulated/floor/tiled,/area/tether/surfacebase/atrium_three) -"blp" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/tiled,/area/tether/surfacebase/atrium_three) -"blq" = (/obj/structure/cable/green{d1 = 2; d2 = 4; icon_state = "2-4"},/turf/simulated/floor/tiled,/area/tether/surfacebase/atrium_three) -"blr" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/tiled,/area/tether/surfacebase/atrium_three) -"bls" = (/obj/structure/cable/green{d1 = 1; d2 = 8; icon_state = "1-8"},/turf/simulated/floor/tiled,/area/tether/surfacebase/atrium_three) -"blt" = (/obj/machinery/camera/network/northern_star{tag = "icon-camera (NORTHWEST)"; icon_state = "camera"; dir = 9},/turf/simulated/floor/tiled,/area/tether/surfacebase/atrium_three) -"blu" = (/obj/structure/closet,/obj/item/clothing/mask/gas,/obj/item/clothing/mask/gas,/obj/item/clothing/mask/gas,/obj/item/clothing/mask/gas,/obj/effect/floor_decal/techfloor{tag = "icon-techfloor_edges (WEST)"; icon_state = "techfloor_edges"; dir = 8},/turf/simulated/floor/tiled/techfloor,/area/crew_quarters/panic_shelter) -"blv" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 5},/turf/simulated/floor/tiled/techfloor,/area/crew_quarters/panic_shelter) -"blw" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled/techfloor,/area/crew_quarters/panic_shelter) -"blx" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 10},/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/tiled/techfloor,/area/crew_quarters/panic_shelter) -"bly" = (/obj/effect/floor_decal/techfloor{tag = "icon-techfloor_edges (EAST)"; icon_state = "techfloor_edges"; dir = 4},/obj/effect/floor_decal/techfloor/hole{tag = "icon-techfloor_hole_left (EAST)"; icon_state = "techfloor_hole_left"; dir = 4},/obj/effect/floor_decal/techfloor/hole/right{tag = "icon-techfloor_hole_right (EAST)"; icon_state = "techfloor_hole_right"; dir = 4},/obj/machinery/shower{dir = 8; icon_state = "shower"; pixel_x = -2; pixel_y = 0},/obj/effect/floor_decal/industrial/outline/blue,/turf/simulated/floor/tiled/techfloor,/area/crew_quarters/panic_shelter) -"blz" = (/turf/simulated/wall,/area/crew_quarters/pool) -"blA" = (/obj/structure/grille,/obj/structure/window/reinforced{dir = 5; icon_state = "fwindow"},/obj/machinery/door/firedoor,/turf/simulated/floor/plating,/area/crew_quarters/pool) -"blB" = (/obj/machinery/door/airlock/multi_tile/glass{name = "Pool"},/obj/machinery/door/firedoor,/turf/simulated/floor/tiled,/area/crew_quarters/pool) -"blC" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/door/firedoor,/turf/simulated/floor/tiled,/area/crew_quarters/pool) -"blD" = (/obj/structure/grille,/obj/structure/window/reinforced{dir = 5; icon_state = "fwindow"},/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0},/obj/machinery/door/firedoor,/turf/simulated/floor/plating,/area/crew_quarters/pool) -"blE" = (/obj/structure/disposalpipe/segment,/obj/structure/grille,/obj/structure/window/reinforced{dir = 5; icon_state = "fwindow"},/obj/machinery/door/firedoor,/turf/simulated/floor/plating,/area/crew_quarters/pool) -"blF" = (/turf/simulated/wall,/area/crew_quarters/recreation_area) -"blG" = (/obj/structure/grille,/obj/structure/window/reinforced{dir = 5; icon_state = "fwindow"},/obj/machinery/door/firedoor,/turf/simulated/floor/plating,/area/crew_quarters/recreation_area) -"blH" = (/obj/structure/bed/chair{dir = 1},/turf/simulated/floor/tiled,/area/tether/surfacebase/atrium_three) -"blI" = (/turf/simulated/wall,/area/tether/surfacebase/north_stairs_three) -"blJ" = (/obj/structure/sign/directions/engineering{dir = 10; icon_state = "direction_eng"; pixel_y = -10; tag = "icon-direction_eng (WEST)"},/turf/simulated/wall,/area/tether/surfacebase/north_stairs_three) -"blK" = (/obj/structure/sign/directions/medical{tag = "icon-direction_med (EAST)"; icon_state = "direction_med"; dir = 4; pixel_y = 8},/obj/structure/sign/directions/science{dir = 2; icon_state = "direction_sci"; pixel_y = 3; tag = "icon-direction_sci (WEST)"},/obj/structure/sign/directions/security{dir = 1; icon_state = "direction_sec"; pixel_y = -4; tag = "icon-direction_sec (WEST)"},/turf/simulated/wall,/area/tether/surfacebase/north_stairs_three) -"blL" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled,/area/tether/surfacebase/atrium_three) -"blM" = (/obj/effect/floor_decal/steeldecal/steel_decals7{tag = "icon-steel_decals7 (NORTHEAST)"; icon_state = "steel_decals7"; dir = 5},/obj/effect/floor_decal/steeldecal/steel_decals7{tag = "icon-steel_decals7 (SOUTHEAST)"; icon_state = "steel_decals7"; dir = 6},/turf/simulated/floor/tiled,/area/tether/surfacebase/atrium_three) -"blN" = (/obj/structure/railing{dir = 8},/obj/structure/railing{dir = 1},/turf/simulated/open,/area/tether/surfacebase/atrium_three) -"blO" = (/obj/structure/railing{dir = 1},/turf/simulated/open,/area/tether/surfacebase/atrium_three) -"blP" = (/obj/structure/railing{dir = 4},/obj/structure/railing{dir = 1},/turf/simulated/open,/area/tether/surfacebase/atrium_three) -"blQ" = (/obj/effect/floor_decal/steeldecal/steel_decals7{tag = "icon-steel_decals7 (SOUTHWEST)"; icon_state = "steel_decals7"; dir = 10},/obj/effect/floor_decal/steeldecal/steel_decals7{tag = "icon-steel_decals7 (NORTHWEST)"; icon_state = "steel_decals7"; dir = 9},/turf/simulated/floor/tiled,/area/tether/surfacebase/atrium_three) -"blR" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/tiled,/area/tether/surfacebase/atrium_three) -"blS" = (/obj/machinery/washing_machine,/obj/effect/floor_decal/techfloor{tag = "icon-techfloor_edges (WEST)"; icon_state = "techfloor_edges"; dir = 8},/turf/simulated/floor/tiled/techfloor,/area/crew_quarters/panic_shelter) -"blT" = (/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 4},/turf/simulated/floor/tiled/techfloor,/area/crew_quarters/panic_shelter) -"blU" = (/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) -"blV" = (/obj/structure/extinguisher_cabinet{pixel_x = 27},/obj/effect/floor_decal/techfloor{tag = "icon-techfloor_edges (EAST)"; icon_state = "techfloor_edges"; dir = 4},/turf/simulated/floor/tiled/techfloor,/area/crew_quarters/panic_shelter) -"blW" = (/obj/structure/grille,/obj/structure/window/reinforced{dir = 5; icon_state = "fwindow"},/obj/machinery/door/firedoor,/obj/structure/window/reinforced{dir = 8},/turf/simulated/floor/plating,/area/crew_quarters/pool) -"blX" = (/obj/structure/closet/secure_closet/personal,/obj/effect/floor_decal/spline/plain{dir = 9},/obj/machinery/atmospherics/unary/vent_scrubber/on,/turf/simulated/floor/tiled/kafel_full,/area/crew_quarters/pool) -"blY" = (/obj/structure/closet/secure_closet/personal,/obj/effect/floor_decal/spline/plain{dir = 1},/obj/machinery/status_display{pixel_y = 30},/turf/simulated/floor/tiled/kafel_full,/area/crew_quarters/pool) -"blZ" = (/obj/structure/closet/secure_closet/personal,/obj/effect/floor_decal/spline/plain{dir = 1},/obj/machinery/atmospherics/unary/vent_pump/on,/obj/machinery/camera/network/civilian,/turf/simulated/floor/tiled/kafel_full,/area/crew_quarters/pool) -"bma" = (/obj/effect/floor_decal/spline/plain{dir = 1},/obj/structure/closet{icon_closed = "cabinet_closed"; icon_opened = "cabinet_open"; icon_state = "cabinet_closed"; name = "Clothing Storage"},/turf/simulated/floor/tiled/kafel_full,/area/crew_quarters/pool) -"bmb" = (/obj/effect/floor_decal/spline/plain{dir = 1},/obj/machinery/firealarm{dir = 2; layer = 3.3; pixel_x = 0; pixel_y = 26},/turf/simulated/floor/tiled/kafel_full,/area/crew_quarters/pool) -"bmc" = (/obj/effect/floor_decal/spline/plain{dir = 1},/obj/machinery/light{dir = 1},/turf/simulated/floor/tiled/kafel_full,/area/crew_quarters/pool) -"bmd" = (/obj/effect/floor_decal/spline/plain{dir = 1},/obj/machinery/power/apc{dir = 1; name = "north bump"; pixel_x = 0; pixel_y = 24},/obj/structure/cable{tag = "icon-0-2"; icon_state = "0-2"},/turf/simulated/floor/tiled/kafel_full,/area/crew_quarters/pool) -"bme" = (/obj/effect/floor_decal/spline/plain{dir = 1},/turf/simulated/floor/tiled/kafel_full,/area/crew_quarters/pool) -"bmf" = (/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/kafel_full,/area/crew_quarters/pool) -"bmg" = (/obj/effect/floor_decal/spline/plain{dir = 1},/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0},/turf/simulated/floor/tiled/kafel_full,/area/crew_quarters/pool) -"bmh" = (/obj/effect/floor_decal/spline/plain{dir = 5},/obj/structure/disposalpipe/segment,/obj/structure/flora/pottedplant{tag = "icon-plant-10"; icon_state = "plant-10"},/turf/simulated/floor/tiled/kafel_full,/area/crew_quarters/pool) -"bmi" = (/obj/machinery/vending/fitness,/turf/simulated/floor/tiled,/area/crew_quarters/pool) -"bmj" = (/obj/structure/closet/athletic_mixed,/turf/simulated/floor/holofloor/wood,/area/crew_quarters/recreation_area) -"bmk" = (/obj/machinery/punching_clown,/turf/simulated/floor/holofloor/wood,/area/crew_quarters/recreation_area) -"bml" = (/obj/machinery/camera/network/civilian,/turf/simulated/floor/holofloor/wood,/area/crew_quarters/recreation_area) -"bmm" = (/obj/machinery/workout,/turf/simulated/floor/holofloor/wood,/area/crew_quarters/recreation_area) -"bmn" = (/obj/structure/closet/athletic_mixed,/obj/structure/extinguisher_cabinet{pixel_x = 27},/turf/simulated/floor/holofloor/wood,/area/crew_quarters/recreation_area) -"bmo" = (/obj/structure/grille,/obj/structure/window/reinforced{dir = 5; icon_state = "fwindow"},/obj/machinery/door/firedoor,/obj/structure/window/reinforced,/turf/simulated/floor/plating,/area/tether/surfacebase/atrium_three) -"bmp" = (/obj/machinery/light_switch{pixel_y = 25},/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 4},/obj/structure/extinguisher_cabinet{dir = 4; icon_state = "extinguisher_closed"; pixel_x = -30; tag = "icon-extinguisher_closed (EAST)"},/turf/simulated/floor/tiled,/area/tether/surfacebase/north_stairs_three) -"bmq" = (/obj/machinery/alarm{frequency = 1441; pixel_y = 22},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 10},/turf/simulated/floor/tiled,/area/tether/surfacebase/north_stairs_three) -"bmr" = (/obj/machinery/firealarm{dir = 2; layer = 3.3; pixel_x = 0; pixel_y = 26},/turf/simulated/floor/tiled,/area/tether/surfacebase/north_stairs_three) -"bms" = (/obj/item/device/radio/intercom{dir = 1; name = "Station Intercom (General)"; pixel_y = 21},/obj/machinery/atmospherics/unary/vent_pump/on,/turf/simulated/floor/tiled,/area/tether/surfacebase/north_stairs_three) -"bmt" = (/turf/simulated/floor/tiled,/area/tether/surfacebase/north_stairs_three) -"bmu" = (/obj/effect/floor_decal/spline/plain{dir = 4},/obj/machinery/door/firedoor/glass,/turf/simulated/floor/tiled/monotile,/area/tether/surfacebase/north_stairs_three) -"bmv" = (/obj/structure/railing{dir = 8},/turf/simulated/open,/area/tether/surfacebase/atrium_three) -"bmw" = (/turf/simulated/open,/area/tether/surfacebase/atrium_three) -"bmx" = (/obj/structure/railing{dir = 4},/turf/simulated/open,/area/tether/surfacebase/atrium_three) -"bmy" = (/obj/machinery/vending/cigarette,/turf/simulated/floor/tiled,/area/tether/surfacebase/atrium_three) -"bmz" = (/obj/machinery/vending/coffee,/turf/simulated/floor/tiled,/area/tether/surfacebase/atrium_three) -"bmA" = (/obj/machinery/washing_machine,/obj/effect/floor_decal/techfloor{tag = "icon-techfloor_edges (SOUTHWEST)"; icon_state = "techfloor_edges"; dir = 10},/turf/simulated/floor/tiled/techfloor,/area/crew_quarters/panic_shelter) -"bmB" = (/obj/structure/ladder,/obj/effect/floor_decal/industrial/outline/blue,/turf/simulated/floor/tiled/techfloor,/area/crew_quarters/panic_shelter) -"bmC" = (/obj/machinery/light/small,/obj/effect/floor_decal/techfloor,/turf/simulated/floor/tiled/techfloor,/area/crew_quarters/panic_shelter) -"bmD" = (/obj/machinery/space_heater,/obj/effect/floor_decal/techfloor,/obj/machinery/camera/network/civilian{tag = "icon-camera (NORTH)"; icon_state = "camera"; dir = 1},/turf/simulated/floor/tiled/techfloor,/area/crew_quarters/panic_shelter) -"bmE" = (/obj/machinery/space_heater,/obj/effect/floor_decal/techfloor,/obj/machinery/firealarm{dir = 1; pixel_x = 0; pixel_y = -25},/turf/simulated/floor/tiled/techfloor,/area/crew_quarters/panic_shelter) -"bmF" = (/obj/machinery/space_heater,/obj/effect/floor_decal/techfloor,/obj/effect/floor_decal/techfloor/hole/right,/turf/simulated/floor/tiled/techfloor,/area/crew_quarters/panic_shelter) -"bmG" = (/obj/effect/floor_decal/techfloor/corner,/obj/effect/floor_decal/techfloor/corner{tag = "icon-techfloor_corners (WEST)"; icon_state = "techfloor_corners"; dir = 8},/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/crew_quarters/panic_shelter) -"bmH" = (/obj/effect/floor_decal/techfloor{tag = "icon-techfloor_edges (SOUTHEAST)"; icon_state = "techfloor_edges"; dir = 6},/obj/effect/floor_decal/techfloor/hole,/obj/machinery/light_switch{pixel_x = 25},/turf/simulated/floor/tiled/techfloor,/area/crew_quarters/panic_shelter) -"bmI" = (/obj/effect/floor_decal/spline/plain{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 5},/turf/simulated/floor/tiled/kafel_full,/area/crew_quarters/pool) -"bmJ" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/turf/simulated/floor/tiled/kafel_full,/area/crew_quarters/pool) -"bmK" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 5},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/turf/simulated/floor/tiled/kafel_full,/area/crew_quarters/pool) -"bmL" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/turf/simulated/floor/tiled/kafel_full,/area/crew_quarters/pool) -"bmM" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/turf/simulated/floor/tiled/kafel_full,/area/crew_quarters/pool) -"bmN" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/tiled/kafel_full,/area/crew_quarters/pool) -"bmO" = (/obj/machinery/atmospherics/pipe/manifold/hidden/supply,/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/tiled/kafel_full,/area/crew_quarters/pool) -"bmP" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 10},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 10},/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0},/obj/structure/cable{d1 = 2; d2 = 8; icon_state = "2-8"},/turf/simulated/floor/tiled/kafel_full,/area/crew_quarters/pool) -"bmQ" = (/obj/effect/floor_decal/spline/plain{dir = 4},/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled/kafel_full,/area/crew_quarters/pool) -"bmR" = (/turf/simulated/floor/tiled,/area/crew_quarters/pool) -"bmS" = (/turf/simulated/floor/holofloor/wood,/area/crew_quarters/recreation_area) -"bmT" = (/obj/machinery/light_switch{pixel_x = 25},/turf/simulated/floor/holofloor/wood,/area/crew_quarters/recreation_area) -"bmU" = (/obj/structure/grille,/obj/structure/window/reinforced{dir = 5; icon_state = "fwindow"},/obj/machinery/door/firedoor,/obj/structure/window/reinforced{dir = 8},/turf/simulated/floor/plating,/area/tether/surfacebase/north_stairs_three) -"bmV" = (/obj/structure/cable{icon_state = "0-4"},/obj/machinery/power/apc{dir = 2; name = "south bump"; pixel_y = -28},/turf/simulated/floor/tiled,/area/tether/surfacebase/north_stairs_three) -"bmW" = (/obj/structure/cable{tag = "icon-4-8"; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 5},/turf/simulated/floor/tiled,/area/tether/surfacebase/north_stairs_three) -"bmX" = (/obj/machinery/light/small,/obj/effect/floor_decal/industrial/warning/corner,/obj/structure/cable{tag = "icon-4-8"; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/turf/simulated/floor/tiled,/area/tether/surfacebase/north_stairs_three) -"bmY" = (/obj/effect/floor_decal/industrial/warning,/obj/structure/cable{tag = "icon-4-8"; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 5},/turf/simulated/floor/tiled,/area/tether/surfacebase/north_stairs_three) -"bmZ" = (/obj/effect/floor_decal/industrial/warning,/obj/structure/cable{tag = "icon-4-8"; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled,/area/tether/surfacebase/north_stairs_three) -"bna" = (/obj/effect/floor_decal/spline/plain{dir = 4},/obj/machinery/door/firedoor/glass,/obj/structure/cable{tag = "icon-4-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/door/airlock/multi_tile/glass{dir = 1},/turf/simulated/floor/tiled/monotile,/area/tether/surfacebase/north_stairs_three) -"bnb" = (/obj/structure/cable{tag = "icon-4-8"; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled,/area/tether/surfacebase/atrium_three) -"bnc" = (/obj/structure/cable{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 4},/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled,/area/tether/surfacebase/atrium_three) -"bnd" = (/obj/machinery/light{dir = 4; icon_state = "tube1"; pixel_x = 0},/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/alarm{dir = 8; icon_state = "alarm0"; pixel_x = 24},/obj/machinery/atmospherics/unary/vent_scrubber/on,/turf/simulated/floor/tiled,/area/tether/surfacebase/atrium_three) -"bne" = (/obj/effect/wingrille_spawn/reinforced_phoron,/obj/machinery/door/firedoor/glass,/turf/simulated/floor/plating,/area/crew_quarters/panic_shelter) -"bnf" = (/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/hatch{name = "Fire/Phoron Shelter Secure Hatch"},/turf/simulated/floor/tiled/techfloor/grid,/area/crew_quarters/panic_shelter) -"bng" = (/obj/effect/floor_decal/spline/plain{dir = 8},/turf/simulated/floor/tiled/kafel_full,/area/crew_quarters/pool) -"bnh" = (/turf/simulated/floor/tiled/kafel_full,/area/crew_quarters/pool) -"bni" = (/obj/effect/floor_decal/spline/plain{dir = 9},/turf/simulated/floor/water/deep/pool,/area/crew_quarters/pool) -"bnj" = (/obj/effect/floor_decal/spline/plain{dir = 1},/turf/simulated/floor/water/deep/pool,/area/crew_quarters/pool) -"bnk" = (/obj/effect/floor_decal/spline/plain{dir = 1},/turf/simulated/floor/water/pool,/area/crew_quarters/pool) -"bnl" = (/obj/effect/floor_decal/spline/plain{dir = 5},/turf/simulated/floor/water/pool,/area/crew_quarters/pool) -"bnm" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 5},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 5},/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0},/turf/simulated/floor/tiled/kafel_full,/area/crew_quarters/pool) -"bnn" = (/obj/effect/floor_decal/spline/plain{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled/kafel_full,/area/crew_quarters/pool) -"bno" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/turf/simulated/floor/tiled,/area/crew_quarters/pool) -"bnp" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/camera/network/civilian{tag = "icon-camera (NORTHWEST)"; icon_state = "camera"; dir = 9},/turf/simulated/floor/tiled,/area/crew_quarters/pool) -"bnq" = (/obj/structure/grille,/obj/structure/window/reinforced{dir = 5; icon_state = "fwindow"},/obj/machinery/door/firedoor,/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/turf/simulated/floor/plating,/area/crew_quarters/recreation_area) -"bnr" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/turf/simulated/floor/holofloor/wood,/area/crew_quarters/recreation_area) -"bns" = (/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 1},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 1},/turf/simulated/floor/holofloor/wood,/area/crew_quarters/recreation_area) -"bnt" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 10},/turf/simulated/floor/holofloor/wood,/area/crew_quarters/recreation_area) -"bnu" = (/obj/structure/table/woodentable,/obj/item/clothing/glasses/threedglasses,/obj/machinery/atmospherics/unary/vent_pump/on{dir = 8},/turf/simulated/floor/holofloor/wood,/area/crew_quarters/recreation_area) -"bnv" = (/obj/structure/grille,/obj/structure/window/reinforced{dir = 5; icon_state = "fwindow"},/obj/machinery/door/firedoor,/obj/structure/window/reinforced{dir = 4},/turf/simulated/floor/plating,/area/crew_quarters/recreation_area) -"bnw" = (/obj/machinery/door/firedoor/glass,/obj/machinery/door/airlock{name = "Secondary Janitorial Closet"; req_access = list(26)},/turf/simulated/floor/tiled,/area/tether/surfacebase/north_stairs_three) -"bnx" = (/obj/machinery/camera/network/northern_star{tag = "icon-camera (EAST)"; icon_state = "camera"; dir = 4},/turf/simulated/floor/tiled,/area/tether/surfacebase/north_stairs_three) -"bny" = (/obj/structure/sign/directions/evac{tag = "icon-direction_evac (WEST)"; icon_state = "direction_evac"; dir = 8},/turf/simulated/wall,/area/tether/surfacebase/north_stairs_three) -"bnz" = (/obj/machinery/camera/network/northern_star{tag = "icon-camera (EAST)"; icon_state = "camera"; dir = 4},/turf/simulated/floor/tiled,/area/tether/surfacebase/atrium_three) -"bnA" = (/obj/structure/cable{tag = "icon-1-2"; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled,/area/tether/surfacebase/atrium_three) -"bnB" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 5},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 5},/turf/simulated/floor/tiled,/area/tether/surfacebase/atrium_three) -"bnC" = (/obj/structure/cable/green{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 1},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,/turf/simulated/floor/tiled,/area/tether/surfacebase/atrium_three) -"bnD" = (/obj/machinery/door/airlock/maintenance/int{name = "Fire/Phoron Shelter"},/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/crew_quarters/panic_shelter) -"bnE" = (/obj/structure/extinguisher_cabinet{pixel_y = 27},/obj/effect/floor_decal/techfloor{tag = "icon-techfloor_edges (NORTH)"; icon_state = "techfloor_edges"; dir = 1},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 10},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 10},/turf/simulated/floor/tiled/techfloor,/area/crew_quarters/panic_shelter) -"bnF" = (/obj/effect/floor_decal/techfloor{tag = "icon-techfloor_edges (NORTH)"; icon_state = "techfloor_edges"; dir = 1},/obj/effect/floor_decal/techfloor/hole/right{tag = "icon-techfloor_hole_right (NORTH)"; icon_state = "techfloor_hole_right"; dir = 1},/obj/machinery/alarm{frequency = 1441; pixel_y = 22},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/tiled/techfloor,/area/crew_quarters/panic_shelter) -"bnG" = (/obj/structure/sign/nosmoking_2{pixel_x = 29},/obj/structure/extinguisher_cabinet{pixel_y = 27},/obj/effect/floor_decal/techfloor{tag = "icon-techfloor_edges (NORTH)"; icon_state = "techfloor_edges"; dir = 1},/obj/structure/cable/green{d1 = 2; d2 = 8; icon_state = "2-8"},/turf/simulated/floor/tiled/techfloor,/area/crew_quarters/panic_shelter) -"bnH" = (/obj/machinery/light/small{dir = 1},/obj/effect/floor_decal/techfloor{tag = "icon-techfloor_edges (NORTH)"; icon_state = "techfloor_edges"; dir = 1},/obj/structure/closet/firecloset,/turf/simulated/floor/tiled/techfloor,/area/crew_quarters/panic_shelter) -"bnI" = (/obj/effect/floor_decal/techfloor{tag = "icon-techfloor_edges (NORTH)"; icon_state = "techfloor_edges"; dir = 1},/obj/structure/closet/firecloset,/obj/machinery/atmospherics/unary/vent_scrubber/on,/turf/simulated/floor/tiled/techfloor,/area/crew_quarters/panic_shelter) -"bnJ" = (/obj/effect/floor_decal/techfloor{tag = "icon-techfloor_edges (NORTH)"; icon_state = "techfloor_edges"; dir = 1},/obj/structure/closet/firecloset,/obj/machinery/atmospherics/unary/vent_pump/on,/turf/simulated/floor/tiled/techfloor,/area/crew_quarters/panic_shelter) -"bnK" = (/obj/effect/floor_decal/techfloor{tag = "icon-techfloor_edges (NORTH)"; icon_state = "techfloor_edges"; dir = 1},/obj/structure/closet/firecloset,/obj/machinery/alarm{frequency = 1441; pixel_y = 22},/turf/simulated/floor/tiled/techfloor,/area/crew_quarters/panic_shelter) -"bnL" = (/obj/machinery/computer/area_atmos{range = 8},/obj/effect/floor_decal/techfloor{tag = "icon-techfloor_edges (NORTH)"; icon_state = "techfloor_edges"; dir = 1},/turf/simulated/floor/tiled/techfloor,/area/crew_quarters/panic_shelter) -"bnM" = (/obj/effect/floor_decal/techfloor/corner{tag = "icon-techfloor_corners (NORTH)"; icon_state = "techfloor_corners"; dir = 1},/obj/effect/floor_decal/techfloor/corner{tag = "icon-techfloor_corners (EAST)"; icon_state = "techfloor_corners"; dir = 4},/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/crew_quarters/panic_shelter) -"bnN" = (/obj/effect/floor_decal/industrial/warning{icon_state = "warning"; dir = 4},/obj/effect/floor_decal/techfloor{tag = "icon-techfloor_edges (NORTH)"; icon_state = "techfloor_edges"; dir = 1},/turf/simulated/floor/tiled/techfloor,/area/crew_quarters/panic_shelter) -"bnO" = (/obj/structure/bed/chair{dir = 4},/obj/effect/floor_decal/spline/plain{dir = 8},/obj/machinery/light{dir = 8; icon_state = "tube1"; pixel_y = 0},/turf/simulated/floor/tiled/kafel_full,/area/crew_quarters/pool) -"bnP" = (/obj/effect/floor_decal/spline/plain{dir = 8},/turf/simulated/floor/water/deep/pool,/area/crew_quarters/pool) -"bnQ" = (/turf/simulated/floor/water/deep/pool,/area/crew_quarters/pool) -"bnR" = (/turf/simulated/floor/water/pool,/area/crew_quarters/pool) -"bnS" = (/obj/effect/floor_decal/spline/plain{dir = 4},/turf/simulated/floor/water/pool,/area/crew_quarters/pool) -"bnT" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0},/turf/simulated/floor/tiled/kafel_full,/area/crew_quarters/pool) -"bnU" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/glass{name = "Recreation Area"},/turf/simulated/floor/tiled,/area/crew_quarters/recreation_area) -"bnV" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/holofloor/wood,/area/crew_quarters/recreation_area) -"bnW" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 5},/turf/simulated/floor/holofloor/wood,/area/crew_quarters/recreation_area) -"bnX" = (/obj/structure/table/woodentable,/obj/item/weapon/coin/silver,/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 8},/turf/simulated/floor/holofloor/wood,/area/crew_quarters/recreation_area) -"bnY" = (/obj/structure/flora/tree/sif,/turf/simulated/floor/outdoors/grass/sif/virgo3b,/area/tether/surfacebase/outside/outside3) -"bnZ" = (/obj/structure/reagent_dispensers/watertank,/turf/simulated/floor/tiled,/area/tether/surfacebase/north_stairs_three) -"boa" = (/obj/structure/sign/directions/evac,/turf/simulated/wall,/area/tether/surfacebase/north_stairs_three) -"bob" = (/obj/machinery/computer/guestpass{dir = 4; pixel_x = -28; pixel_y = 0},/turf/simulated/floor/tiled,/area/tether/surfacebase/atrium_three) -"boc" = (/obj/structure/sign/fire{name = "\improper PHORON/FIRE SHELTER"; pixel_x = 33},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/tiled,/area/tether/surfacebase/atrium_three) -"bod" = (/obj/machinery/light/small{dir = 8; pixel_x = 0},/obj/effect/floor_decal/techfloor,/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 5},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 5},/turf/simulated/floor/tiled/techfloor,/area/crew_quarters/panic_shelter) -"boe" = (/obj/effect/floor_decal/techfloor,/obj/machinery/firealarm{dir = 1; pixel_x = 0; pixel_y = -25},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/turf/simulated/floor/tiled/techfloor,/area/crew_quarters/panic_shelter) -"bof" = (/obj/effect/floor_decal/techfloor,/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/scrubbers{dir = 1},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 1},/turf/simulated/floor/tiled/techfloor,/area/crew_quarters/panic_shelter) -"bog" = (/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"},/turf/simulated/floor/tiled/techfloor/grid,/area/crew_quarters/panic_shelter) -"boh" = (/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) -"boi" = (/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) -"boj" = (/obj/effect/floor_decal/techfloor,/obj/effect/floor_decal/techfloor/hole/right,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/manifold/hidden/supply,/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/firealarm{dir = 1; pixel_x = 0; pixel_y = -25},/turf/simulated/floor/tiled/techfloor,/area/crew_quarters/panic_shelter) -"bok" = (/obj/effect/floor_decal/techfloor,/obj/machinery/shower{dir = 1},/obj/effect/floor_decal/techfloor/hole/right,/obj/effect/floor_decal/techfloor/hole,/obj/effect/floor_decal/industrial/outline/blue,/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) -"bol" = (/obj/machinery/door/airlock/hatch{name = "Fire/Phoron Shelter Secure Hatch"},/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"},/turf/simulated/floor/tiled/techfloor/grid,/area/crew_quarters/panic_shelter) -"bom" = (/obj/structure/extinguisher_cabinet{pixel_y = -31},/obj/effect/floor_decal/techfloor,/obj/effect/floor_decal/techfloor/hole,/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 9},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 9},/obj/structure/cable/green{d1 = 1; d2 = 8; icon_state = "1-8"},/turf/simulated/floor/tiled/techfloor,/area/crew_quarters/panic_shelter) -"bon" = (/obj/machinery/light/small,/obj/effect/floor_decal/industrial/warning/corner{dir = 4},/obj/effect/floor_decal/techfloor,/turf/simulated/floor/tiled/techfloor,/area/crew_quarters/panic_shelter) -"boo" = (/obj/effect/floor_decal/industrial/warning{dir = 1},/obj/machinery/portable_atmospherics/powered/pump/filled,/obj/effect/floor_decal/techfloor{tag = "icon-techfloor_edges (SOUTHEAST)"; icon_state = "techfloor_edges"; dir = 6},/obj/machinery/alarm{dir = 8; icon_state = "alarm0"; pixel_x = 24},/turf/simulated/floor/tiled/techfloor,/area/crew_quarters/panic_shelter) -"bop" = (/obj/structure/table/glass,/obj/item/weapon/inflatable_duck,/obj/effect/floor_decal/spline/plain{dir = 8},/obj/machinery/alarm{dir = 4; icon_state = "alarm0"; pixel_x = -22; pixel_y = 0},/turf/simulated/floor/tiled/kafel_full,/area/crew_quarters/pool) -"boq" = (/obj/item/weapon/stool/padded,/turf/simulated/floor/tiled,/area/crew_quarters/pool) -"bor" = (/obj/machinery/power/apc{name = "west bump"; dir = 8; pixel_x = -26; cell_type = /obj/item/weapon/cell/super},/obj/structure/cable{icon_state = "0-4"},/turf/simulated/floor/holofloor/wood,/area/crew_quarters/recreation_area) -"bos" = (/obj/structure/cable{tag = "icon-4-8"; icon_state = "4-8"},/turf/simulated/floor/holofloor/wood,/area/crew_quarters/recreation_area) -"bot" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/cable{tag = "icon-4-8"; icon_state = "4-8"},/turf/simulated/floor/holofloor/wood,/area/crew_quarters/recreation_area) -"bou" = (/obj/structure/cable{tag = "icon-2-8"; icon_state = "2-8"},/turf/simulated/floor/holofloor/wood,/area/crew_quarters/recreation_area) -"bov" = (/obj/machinery/light{dir = 4; icon_state = "tube1"; pixel_x = 0},/turf/simulated/floor/holofloor/wood,/area/crew_quarters/recreation_area) -"bow" = (/obj/machinery/alarm{dir = 8; icon_state = "alarm0"; pixel_x = 24},/turf/simulated/floor/tiled,/area/tether/surfacebase/north_stairs_three) -"box" = (/turf/simulated/open,/area/tether/surfacebase/north_stairs_three) -"boy" = (/obj/machinery/light{icon_state = "tube1"; dir = 8},/turf/simulated/floor/tiled,/area/tether/surfacebase/atrium_three) -"boz" = (/obj/item/device/radio/intercom{dir = 4; name = "Station Intercom (General)"; pixel_x = 21},/obj/machinery/atmospherics/unary/vent_pump/on{dir = 1},/turf/simulated/floor/tiled,/area/tether/surfacebase/atrium_three) -"boA" = (/turf/simulated/wall/r_wall,/area/vacant/vacant_shop) -"boB" = (/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) -"boC" = (/turf/simulated/wall/r_wall,/area/crew_quarters/freezer) -"boD" = (/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/crew_quarters/freezer) -"boE" = (/turf/simulated/wall/r_wall,/area/hydroponics/cafegarden) -"boF" = (/obj/structure/bed/chair{dir = 4},/obj/effect/floor_decal/spline/plain{dir = 8},/obj/item/device/radio/intercom{dir = 8; name = "Station Intercom (General)"; pixel_x = -28},/turf/simulated/floor/tiled/kafel_full,/area/crew_quarters/pool) -"boG" = (/obj/effect/floor_decal/spline/plain{dir = 9},/obj/item/weapon/beach_ball,/turf/simulated/floor/tiled/freezer,/area/crew_quarters/pool) -"boH" = (/obj/effect/floor_decal/spline/plain{dir = 1},/turf/simulated/floor/tiled/freezer,/area/crew_quarters/pool) -"boI" = (/obj/effect/floor_decal/spline/plain{dir = 5},/turf/simulated/floor/tiled/freezer,/area/crew_quarters/pool) -"boJ" = (/obj/structure/table/glass,/obj/machinery/light{dir = 4; icon_state = "tube1"; pixel_x = 0},/turf/simulated/floor/tiled,/area/crew_quarters/pool) -"boK" = (/obj/machinery/disposal,/obj/structure/disposalpipe/trunk{dir = 4},/turf/simulated/floor/holofloor/wood,/area/crew_quarters/recreation_area) -"boL" = (/obj/machinery/scale,/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/alarm{dir = 1; pixel_y = -25},/turf/simulated/floor/holofloor/wood,/area/crew_quarters/recreation_area) -"boM" = (/obj/machinery/scale,/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/holofloor/wood,/area/crew_quarters/recreation_area) -"boN" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/disposalpipe/segment{dir = 2; icon_state = "pipe-c"},/turf/simulated/floor/holofloor/wood,/area/crew_quarters/recreation_area) -"boO" = (/obj/structure/cable{tag = "icon-1-2"; icon_state = "1-2"},/turf/simulated/floor/holofloor/wood,/area/crew_quarters/recreation_area) -"boP" = (/obj/structure/reagent_dispensers/water_cooler/full,/turf/simulated/floor/holofloor/wood,/area/crew_quarters/recreation_area) -"boQ" = (/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,/turf/simulated/floor/tiled,/area/tether/surfacebase/north_stairs_three) -"boR" = (/obj/machinery/light/small,/obj/structure/mopbucket,/obj/item/weapon/reagent_containers/glass/bucket,/obj/item/weapon/mop,/turf/simulated/floor/tiled,/area/tether/surfacebase/north_stairs_three) -"boS" = (/obj/machinery/status_display{pixel_x = -32},/turf/simulated/floor/tiled,/area/tether/surfacebase/atrium_three) -"boT" = (/obj/structure/sign/directions/evac{tag = "icon-direction_evac (NORTH)"; icon_state = "direction_evac"; dir = 1},/turf/simulated/wall,/area/vacant/vacant_shop) -"boU" = (/obj/item/weapon/reagent_containers/food/drinks/bottle/orangejuice,/obj/effect/decal/cleanable/dirt,/obj/structure/closet,/obj/random/maintenance/clean,/obj/random/maintenance/medical,/obj/random/junk,/obj/random/contraband,/obj/random/maintenance/engineering,/turf/simulated/floor/plating,/area/vacant/vacant_shop) -"boV" = (/obj/structure/table/rack,/obj/random/maintenance/clean,/obj/random/maintenance/clean,/obj/random/drinkbottle,/obj/random/cigarettes,/obj/random/maintenance/research,/turf/simulated/floor/plating,/area/vacant/vacant_shop) -"boW" = (/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/plating,/area/vacant/vacant_shop) -"boX" = (/obj/machinery/atmospherics/pipe/zpipe/down/scrubbers,/obj/machinery/atmospherics/pipe/zpipe/down/supply,/obj/structure/lattice,/obj/structure/disposalpipe/down,/turf/simulated/open,/area/vacant/vacant_shop) -"boY" = (/turf/simulated/wall,/area/crew_quarters/freezer) -"boZ" = (/turf/simulated/floor/tiled/freezer,/area/crew_quarters/freezer) -"bpa" = (/obj/structure/closet/crate/freezer,/obj/machinery/camera/network/civilian,/turf/simulated/floor/tiled/freezer,/area/crew_quarters/freezer) -"bpb" = (/obj/structure/kitchenspike,/obj/machinery/alarm{frequency = 1441; pixel_y = 22; target_temperature = 273.15},/turf/simulated/floor/tiled/freezer,/area/crew_quarters/freezer) -"bpc" = (/obj/structure/kitchenspike,/turf/simulated/floor/tiled/freezer,/area/crew_quarters/freezer) -"bpd" = (/obj/structure/flora/ausbushes/grassybush,/turf/simulated/floor/grass,/area/hydroponics/cafegarden) -"bpe" = (/obj/machinery/light{dir = 1},/turf/simulated/floor/grass,/area/hydroponics/cafegarden) -"bpf" = (/obj/machinery/camera/network/civilian,/turf/simulated/floor/grass,/area/hydroponics/cafegarden) -"bpg" = (/obj/structure/grille,/obj/structure/window/reinforced{dir = 5; icon_state = "fwindow"},/obj/machinery/door/firedoor,/obj/structure/window/reinforced{dir = 4},/turf/simulated/floor/plating,/area/hydroponics/cafegarden) -"bph" = (/obj/effect/floor_decal/spline/plain{dir = 10},/turf/simulated/floor/tiled/freezer,/area/crew_quarters/pool) -"bpi" = (/obj/effect/floor_decal/spline/plain,/obj/machinery/hologram/holopad,/turf/simulated/floor/tiled/freezer,/area/crew_quarters/pool) -"bpj" = (/obj/effect/floor_decal/spline/plain{dir = 6},/turf/simulated/floor/tiled/freezer,/area/crew_quarters/pool) -"bpk" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/disposalpipe/segment,/obj/machinery/door/firedoor,/obj/machinery/door/airlock/glass{name = "Recreation Area"},/turf/simulated/floor/tiled,/area/crew_quarters/recreation_area) -"bpl" = (/obj/structure/grille,/obj/structure/window/reinforced{dir = 5; icon_state = "fwindow"},/obj/machinery/door/firedoor,/obj/structure/cable{tag = "icon-1-2"; icon_state = "1-2"},/turf/simulated/floor/plating,/area/crew_quarters/recreation_area) -"bpm" = (/obj/machinery/power/apc{cell_type = /obj/item/weapon/cell/super; dir = 8; name = "west bump"; pixel_x = -28},/obj/structure/cable{icon_state = "0-4"},/turf/simulated/floor/tiled,/area/tether/surfacebase/atrium_three) -"bpn" = (/obj/structure/cable{tag = "icon-1-2"; icon_state = "1-2"},/obj/structure/cable{tag = "icon-2-8"; icon_state = "2-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled,/area/tether/surfacebase/atrium_three) -"bpo" = (/obj/machinery/newscaster{pixel_x = 25},/turf/simulated/floor/tiled,/area/tether/surfacebase/atrium_three) -"bpp" = (/turf/simulated/wall,/area/vacant/vacant_shop) -"bpq" = (/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/plating,/area/vacant/vacant_shop) -"bpr" = (/obj/effect/decal/cleanable/dirt,/obj/random/junk,/turf/simulated/floor/plating,/area/vacant/vacant_shop) -"bps" = (/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 8},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 8},/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/plating,/area/vacant/vacant_shop) -"bpt" = (/obj/effect/floor_decal/techfloor{tag = "icon-techfloor_edges (EAST)"; icon_state = "techfloor_edges"; dir = 4},/obj/effect/floor_decal/techfloor/hole/right{tag = "icon-techfloor_hole_right (EAST)"; icon_state = "techfloor_hole_right"; dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 9},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 9},/obj/structure/disposalpipe/segment,/turf/simulated/floor/plating,/area/vacant/vacant_shop) -"bpu" = (/obj/machinery/firealarm{dir = 8; pixel_x = -24},/turf/simulated/floor/tiled/freezer,/area/crew_quarters/freezer) -"bpv" = (/obj/machinery/light_switch{pixel_x = 25},/turf/simulated/floor/tiled/freezer,/area/crew_quarters/freezer) -"bpw" = (/obj/machinery/alarm{dir = 4; icon_state = "alarm0"; pixel_x = -22; pixel_y = 0},/turf/simulated/floor/grass,/area/hydroponics/cafegarden) -"bpx" = (/turf/simulated/floor/grass,/area/hydroponics/cafegarden) -"bpy" = (/obj/structure/flora/ausbushes/ppflowers,/turf/simulated/floor/grass,/area/hydroponics/cafegarden) -"bpz" = (/obj/effect/floor_decal/spline/plain{dir = 8},/obj/machinery/disposal,/obj/structure/disposalpipe/trunk{dir = 4},/turf/simulated/floor/tiled/kafel_full,/area/crew_quarters/pool) -"bpA" = (/obj/structure/disposalpipe/segment{dir = 2; icon_state = "pipe-c"},/turf/simulated/floor/tiled/kafel_full,/area/crew_quarters/pool) -"bpB" = (/obj/structure/cable{tag = "icon-1-2"; icon_state = "1-2"},/turf/simulated/floor/tiled,/area/tether/surfacebase/atrium_three) -"bpC" = (/obj/structure/disposalpipe/segment{dir = 4; icon_state = "pipe-c"},/obj/machinery/firealarm{dir = 2; layer = 3.3; pixel_x = 0; pixel_y = 26},/turf/simulated/floor/tiled,/area/tether/surfacebase/atrium_three) -"bpD" = (/obj/machinery/disposal,/obj/structure/disposalpipe/trunk{dir = 8},/turf/simulated/floor/tiled,/area/tether/surfacebase/atrium_three) -"bpE" = (/obj/machinery/shower{dir = 4; icon_state = "shower"; pixel_x = 5; pixel_y = 0},/obj/structure/curtain/open/shower,/turf/simulated/floor/tiled/white,/area/crew_quarters/recreation_area_restroom) -"bpF" = (/obj/machinery/light_switch{pixel_y = 25},/turf/simulated/floor/tiled/white,/area/crew_quarters/recreation_area_restroom) -"bpG" = (/obj/machinery/shower{dir = 8; icon_state = "shower"; pixel_x = -5; pixel_y = 0},/obj/structure/curtain/open/shower,/turf/simulated/floor/tiled/white,/area/crew_quarters/recreation_area_restroom) -"bpH" = (/obj/structure/table/rack,/obj/random/maintenance/engineering,/obj/random/maintenance/clean,/obj/random/maintenance/engineering,/turf/simulated/floor/plating,/area/tether/surfacebase/atrium_three) -"bpI" = (/turf/simulated/floor/plating,/area/tether/surfacebase/atrium_three) -"bpJ" = (/obj/machinery/light{dir = 4; icon_state = "tube1"; pixel_x = 0},/turf/simulated/floor/tiled,/area/tether/surfacebase/atrium_three) -"bpK" = (/obj/effect/decal/cleanable/dirt,/obj/structure/disposalpipe/segment{dir = 4; icon_state = "pipe-c"},/turf/simulated/floor/plating,/area/vacant/vacant_shop) -"bpL" = (/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/decal/cleanable/dirt,/obj/structure/disposalpipe/segment{dir = 4},/mob/living/simple_animal/mouse,/turf/simulated/floor/plating,/area/vacant/vacant_shop) -"bpM" = (/obj/machinery/light/small{dir = 4; pixel_y = 0},/obj/effect/floor_decal/techfloor{tag = "icon-techfloor_edges (EAST)"; icon_state = "techfloor_edges"; dir = 4},/obj/structure/disposalpipe/segment{dir = 8; icon_state = "pipe-c"},/turf/simulated/floor/plating,/area/vacant/vacant_shop) -"bpN" = (/obj/machinery/light{icon_state = "tube1"; dir = 8},/turf/simulated/floor/tiled/freezer,/area/crew_quarters/freezer) -"bpO" = (/obj/machinery/light{dir = 4; icon_state = "tube1"},/turf/simulated/floor/tiled/freezer,/area/crew_quarters/freezer) -"bpP" = (/obj/structure/flora/ausbushes/lavendergrass,/obj/structure/flora/ausbushes/ppflowers,/turf/simulated/floor/grass,/area/hydroponics/cafegarden) -"bpQ" = (/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled/kafel_full,/area/crew_quarters/pool) -"bpR" = (/obj/structure/disposalpipe/segment{dir = 4; icon_state = "pipe-c"},/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0},/turf/simulated/floor/tiled/kafel_full,/area/crew_quarters/pool) -"bpS" = (/obj/effect/floor_decal/spline/plain{dir = 4},/obj/structure/disposalpipe/junction{icon_state = "pipe-j2"; dir = 4},/turf/simulated/floor/tiled/kafel_full,/area/crew_quarters/pool) -"bpT" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 6},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled,/area/crew_quarters/pool) -"bpU" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 6},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled,/area/crew_quarters/pool) -"bpV" = (/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,/turf/simulated/floor/tiled,/area/crew_quarters/pool) -"bpW" = (/obj/machinery/atmospherics/pipe/manifold/hidden/supply,/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,/obj/structure/disposalpipe/junction{icon_state = "pipe-j2"; dir = 4},/turf/simulated/floor/tiled,/area/tether/surfacebase/atrium_three) -"bpX" = (/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{tag = "icon-1-2"; icon_state = "1-2"},/turf/simulated/floor/tiled,/area/tether/surfacebase/atrium_three) -"bpY" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 10},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 10},/obj/structure/disposalpipe/junction,/turf/simulated/floor/tiled,/area/tether/surfacebase/atrium_three) -"bpZ" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 6},/obj/machinery/power/apc{name = "west bump"; dir = 8; pixel_x = -26; cell_type = /obj/item/weapon/cell/super},/obj/structure/cable{tag = "icon-0-2"; icon_state = "0-2"},/turf/simulated/floor/tiled/white,/area/crew_quarters/recreation_area_restroom) -"bqa" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/turf/simulated/floor/tiled/white,/area/crew_quarters/recreation_area_restroom) -"bqb" = (/obj/machinery/atmospherics/unary/vent_pump/on{dir = 8},/turf/simulated/floor/tiled/white,/area/crew_quarters/recreation_area_restroom) -"bqc" = (/obj/structure/cable{icon_state = "32-4"},/obj/structure/lattice,/obj/machinery/light/small{dir = 8; pixel_x = 0},/obj/machinery/door/firedoor/glass,/turf/simulated/open,/area/tether/surfacebase/atrium_three) -"bqd" = (/obj/structure/cable{tag = "icon-4-8"; icon_state = "4-8"},/turf/simulated/floor/plating,/area/tether/surfacebase/atrium_three) -"bqe" = (/obj/machinery/door/airlock/maintenance/engi,/obj/machinery/door/firedoor/glass,/obj/structure/cable{tag = "icon-4-8"; icon_state = "4-8"},/turf/simulated/floor/plating,/area/tether/surfacebase/atrium_three) -"bqf" = (/obj/structure/cable{tag = "icon-4-8"; icon_state = "4-8"},/turf/simulated/floor/tiled,/area/tether/surfacebase/atrium_three) -"bqg" = (/obj/structure/cable{tag = "icon-4-8"; icon_state = "4-8"},/obj/structure/cable{icon_state = "1-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled,/area/tether/surfacebase/atrium_three) -"bqh" = (/obj/structure/cable{tag = "icon-2-8"; icon_state = "2-8"},/obj/effect/floor_decal/steeldecal/steel_decals7{tag = "icon-steel_decals7 (NORTHEAST)"; icon_state = "steel_decals7"; dir = 5},/obj/effect/floor_decal/steeldecal/steel_decals7{tag = "icon-steel_decals7 (SOUTHEAST)"; icon_state = "steel_decals7"; dir = 6},/turf/simulated/floor/tiled,/area/tether/surfacebase/atrium_three) -"bqi" = (/obj/effect/floor_decal/steeldecal/steel_decals7{tag = "icon-steel_decals7 (SOUTHWEST)"; icon_state = "steel_decals7"; dir = 10},/obj/effect/floor_decal/steeldecal/steel_decals7{tag = "icon-steel_decals7 (NORTHWEST)"; icon_state = "steel_decals7"; dir = 9},/obj/structure/disposalpipe/segment{dir = 4; icon_state = "pipe-c"},/turf/simulated/floor/tiled,/area/tether/surfacebase/atrium_three) -"bqj" = (/obj/structure/disposalpipe/segment,/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled,/area/tether/surfacebase/atrium_three) -"bqk" = (/obj/structure/grille,/obj/structure/railing{dir = 8},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled/techmaint,/area/tether/surfacebase/atrium_three) -"bql" = (/obj/machinery/portable_atmospherics/powered/scrubber/huge/stationary{scrub_id = "atrium"},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled/techmaint,/area/tether/surfacebase/atrium_three) -"bqm" = (/obj/effect/decal/cleanable/dirt,/obj/structure/disposalpipe/segment{dir = 8; icon_state = "pipe-c"},/turf/simulated/floor/plating,/area/vacant/vacant_shop) -"bqn" = (/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/structure/cable/green{d1 = 2; d2 = 4; icon_state = "2-4"},/turf/simulated/floor/plating,/area/vacant/vacant_shop) -"bqo" = (/obj/effect/floor_decal/techfloor{tag = "icon-techfloor_edges (EAST)"; icon_state = "techfloor_edges"; dir = 4},/obj/machinery/power/apc{dir = 4; name = "east bump"; pixel_x = 28},/obj/structure/cable/green{icon_state = "0-8"},/turf/simulated/floor/plating,/area/vacant/vacant_shop) -"bqp" = (/obj/machinery/power/apc{cell_type = /obj/item/weapon/cell/super; dir = 8; name = "west bump"; pixel_x = -28},/obj/structure/cable/green{icon_state = "0-4"},/turf/simulated/floor/tiled/freezer,/area/crew_quarters/freezer) -"bqq" = (/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) -"bqr" = (/obj/machinery/atmospherics/unary/vent_scrubber/on,/obj/structure/cable/green{d1 = 2; d2 = 8; icon_state = "2-8"},/turf/simulated/floor/tiled/freezer,/area/crew_quarters/freezer) -"bqs" = (/obj/machinery/gibber,/turf/simulated/floor/tiled/freezer,/area/crew_quarters/freezer) -"bqt" = (/obj/machinery/power/apc{cell_type = /obj/item/weapon/cell/super; dir = 8; name = "west bump"; pixel_x = -28},/obj/structure/cable/green{icon_state = "0-4"},/turf/simulated/floor/grass,/area/hydroponics/cafegarden) -"bqu" = (/obj/structure/cable/green{d1 = 2; d2 = 8; icon_state = "2-8"},/turf/simulated/floor/grass,/area/hydroponics/cafegarden) -"bqv" = (/obj/effect/floor_decal/spline/plain{dir = 10},/turf/simulated/floor/water/deep/pool,/area/crew_quarters/pool) -"bqw" = (/obj/effect/floor_decal/spline/plain,/turf/simulated/floor/water/deep/pool,/area/crew_quarters/pool) -"bqx" = (/obj/effect/floor_decal/spline/plain,/turf/simulated/floor/water/pool,/area/crew_quarters/pool) -"bqy" = (/obj/effect/floor_decal/spline/plain{dir = 6},/turf/simulated/floor/water/pool,/area/crew_quarters/pool) -"bqz" = (/obj/structure/disposalpipe/segment,/obj/structure/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/turf/simulated/floor/tiled/kafel_full,/area/crew_quarters/pool) -"bqA" = (/obj/effect/floor_decal/spline/plain{dir = 4},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/tiled/kafel_full,/area/crew_quarters/pool) -"bqB" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/tiled,/area/crew_quarters/pool) -"bqC" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/tiled,/area/crew_quarters/pool) -"bqD" = (/obj/structure/grille,/obj/structure/window/reinforced{dir = 5; icon_state = "fwindow"},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/door/firedoor,/turf/simulated/floor/plating,/area/crew_quarters/pool) -"bqE" = (/obj/machinery/light,/obj/structure/cable{tag = "icon-1-4"; icon_state = "1-4"},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/tiled,/area/tether/surfacebase/atrium_three) -"bqF" = (/obj/structure/cable{tag = "icon-4-8"; icon_state = "4-8"},/obj/machinery/alarm{dir = 1; pixel_y = -25},/turf/simulated/floor/tiled,/area/tether/surfacebase/atrium_three) -"bqG" = (/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 8},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 8},/obj/structure/disposalpipe/segment,/obj/structure/cable{tag = "icon-4-8"; icon_state = "4-8"},/turf/simulated/floor/tiled,/area/tether/surfacebase/atrium_three) -"bqH" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/cable{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/structure/cable{tag = "icon-4-8"; icon_state = "4-8"},/turf/simulated/floor/tiled,/area/tether/surfacebase/atrium_three) -"bqI" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/cable{tag = "icon-4-8"; icon_state = "4-8"},/turf/simulated/floor/tiled,/area/tether/surfacebase/atrium_three) -"bqJ" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/door/firedoor,/obj/machinery/door/airlock{name = "Unisex Showers"},/obj/structure/cable{tag = "icon-4-8"; icon_state = "4-8"},/turf/simulated/floor/tiled/white,/area/crew_quarters/recreation_area_restroom) -"bqK" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 9},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/cable{icon_state = "1-8"},/turf/simulated/floor/tiled/white,/area/crew_quarters/recreation_area_restroom) -"bqL" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled/white,/area/crew_quarters/recreation_area_restroom) -"bqM" = (/obj/machinery/light{dir = 4; icon_state = "tube1"; pixel_x = 0},/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 8},/turf/simulated/floor/tiled/white,/area/crew_quarters/recreation_area_restroom) -"bqN" = (/obj/structure/closet/crate,/obj/random/maintenance/engineering,/obj/random/maintenance/clean,/obj/random/maintenance/engineering,/turf/simulated/floor/plating,/area/tether/surfacebase/atrium_three) -"bqO" = (/obj/structure/extinguisher_cabinet{dir = 4; icon_state = "extinguisher_closed"; pixel_x = -30; tag = "icon-extinguisher_closed (EAST)"},/turf/simulated/floor/tiled,/area/tether/surfacebase/atrium_three) -"bqP" = (/obj/structure/cable{tag = "icon-1-2"; icon_state = "1-2"},/obj/effect/floor_decal/steeldecal/steel_decals7{tag = "icon-steel_decals7 (NORTHEAST)"; icon_state = "steel_decals7"; dir = 5},/obj/effect/floor_decal/steeldecal/steel_decals7{tag = "icon-steel_decals7 (SOUTHEAST)"; icon_state = "steel_decals7"; dir = 6},/turf/simulated/floor/tiled,/area/tether/surfacebase/atrium_three) -"bqQ" = (/obj/effect/floor_decal/steeldecal/steel_decals7{tag = "icon-steel_decals7 (SOUTHWEST)"; icon_state = "steel_decals7"; dir = 10},/obj/effect/floor_decal/steeldecal/steel_decals7{tag = "icon-steel_decals7 (NORTHWEST)"; icon_state = "steel_decals7"; dir = 9},/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled,/area/tether/surfacebase/atrium_three) -"bqR" = (/obj/structure/sign/directions/medical{dir = 1; icon_state = "direction_med"; pixel_y = 8; tag = "icon-direction_med (EAST)"},/obj/structure/sign/directions/science{dir = 2; icon_state = "direction_sci"; pixel_y = 3; tag = "icon-direction_sci (WEST)"},/obj/structure/sign/directions/security{dir = 1; icon_state = "direction_sec"; pixel_y = -4; tag = "icon-direction_sec (WEST)"},/obj/structure/sign/directions/engineering{dir = 1; icon_state = "direction_eng"; pixel_y = -10; tag = "icon-direction_eng (WEST)"},/turf/simulated/wall,/area/tether/surfacebase/atrium_three) -"bqS" = (/obj/machinery/alarm{dir = 1; pixel_y = -25},/obj/structure/table/rack,/obj/random/junk,/obj/random/maintenance/clean,/obj/random/drinkbottle,/obj/random/maintenance/research,/turf/simulated/floor/plating,/area/vacant/vacant_shop) -"bqT" = (/obj/effect/floor_decal/techfloor{tag = "icon-techfloor_edges (EAST)"; icon_state = "techfloor_edges"; 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,/turf/simulated/floor/plating,/area/vacant/vacant_shop) -"bqU" = (/obj/structure/closet/secure_closet/freezer/meat,/turf/simulated/floor/tiled/freezer,/area/crew_quarters/freezer) -"bqV" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 5},/obj/machinery/icecream_vat,/turf/simulated/floor/tiled/freezer,/area/crew_quarters/freezer) -"bqW" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 10},/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/tiled/freezer,/area/crew_quarters/freezer) -"bqX" = (/obj/machinery/chem_master,/turf/simulated/floor/tiled/freezer,/area/crew_quarters/freezer) -"bqY" = (/obj/structure/flora/ausbushes/sparsegrass,/obj/structure/flora/ausbushes/ywflowers,/turf/simulated/floor/grass,/area/hydroponics/cafegarden) -"bqZ" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/grass,/area/hydroponics/cafegarden) -"bra" = (/obj/structure/flora/ausbushes/pointybush,/turf/simulated/floor/grass,/area/hydroponics/cafegarden) -"brb" = (/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/kafel_full,/area/crew_quarters/pool) -"brc" = (/obj/structure/disposalpipe/segment{dir = 1; icon_state = "pipe-c"},/turf/simulated/floor/tiled/kafel_full,/area/crew_quarters/pool) -"brd" = (/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled/kafel_full,/area/crew_quarters/pool) -"bre" = (/obj/structure/disposalpipe/segment{dir = 8; icon_state = "pipe-c"},/turf/simulated/floor/tiled/kafel_full,/area/crew_quarters/pool) -"brf" = (/obj/effect/floor_decal/spline/plain{dir = 4},/turf/simulated/floor/tiled/kafel_full,/area/crew_quarters/pool) -"brg" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/tiled,/area/crew_quarters/pool) -"brh" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/extinguisher_cabinet{pixel_x = 27},/turf/simulated/floor/tiled,/area/crew_quarters/pool) -"bri" = (/obj/structure/extinguisher_cabinet{pixel_x = 27},/turf/simulated/floor/tiled,/area/tether/surfacebase/atrium_three) -"brj" = (/obj/item/weapon/bikehorn/rubberducky,/turf/simulated/floor/tiled/white,/area/crew_quarters/recreation_area_restroom) -"brk" = (/obj/machinery/alarm{dir = 1; pixel_y = -25},/turf/simulated/floor/tiled/white,/area/crew_quarters/recreation_area_restroom) -"brl" = (/obj/machinery/firealarm{dir = 4; pixel_x = 24},/turf/simulated/floor/tiled,/area/tether/surfacebase/atrium_three) -"brm" = (/obj/machinery/door/airlock/maintenance/common,/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"},/turf/simulated/floor/plating,/area/vacant/vacant_shop) -"brn" = (/obj/structure/grille,/obj/structure/window/reinforced{dir = 5; icon_state = "fwindow"},/obj/machinery/door/firedoor,/turf/simulated/floor/plating,/area/crew_quarters/freezer) -"bro" = (/obj/machinery/door/firedoor/glass,/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/airlock/freezer{name = "Kitchen cold room"; req_access = list(28)},/turf/simulated/floor/tiled/freezer,/area/crew_quarters/freezer) -"brp" = (/obj/structure/grille,/obj/structure/window/reinforced{dir = 5; icon_state = "fwindow"},/obj/machinery/door/firedoor,/turf/simulated/floor/plating,/area/crew_quarters/kitchen) -"brq" = (/obj/machinery/door/firedoor/glass,/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/door/airlock/glass{name = "Garden"; req_access = list(28)},/turf/simulated/floor/tiled/white,/area/crew_quarters/kitchen) -"brr" = (/turf/simulated/wall,/area/crew_quarters/kitchen) -"brs" = (/obj/structure/bed/chair{dir = 4},/obj/effect/floor_decal/spline/plain{dir = 10},/turf/simulated/floor/tiled/kafel_full,/area/crew_quarters/pool) -"brt" = (/obj/effect/floor_decal/spline/plain,/turf/simulated/floor/tiled/kafel_full,/area/crew_quarters/pool) -"bru" = (/obj/effect/floor_decal/spline/plain,/obj/machinery/camera/network/civilian{tag = "icon-camera (NORTH)"; icon_state = "camera"; dir = 1},/turf/simulated/floor/tiled/kafel_full,/area/crew_quarters/pool) -"brv" = (/obj/effect/floor_decal/spline/plain,/obj/machinery/light,/turf/simulated/floor/tiled/kafel_full,/area/crew_quarters/pool) -"brw" = (/obj/effect/floor_decal/spline/plain,/obj/structure/flora/pottedplant{icon_state = "plant-22"},/turf/simulated/floor/tiled/kafel_full,/area/crew_quarters/pool) -"brx" = (/obj/effect/floor_decal/spline/plain{dir = 6},/obj/structure/undies_wardrobe,/turf/simulated/floor/tiled/kafel_full,/area/crew_quarters/pool) -"bry" = (/obj/structure/closet/lasertag/red,/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 1},/turf/simulated/floor/tiled,/area/crew_quarters/pool) -"brz" = (/obj/structure/closet/lasertag/blue,/obj/machinery/atmospherics/unary/vent_pump/on{dir = 1},/turf/simulated/floor/tiled,/area/crew_quarters/pool) -"brA" = (/obj/structure/grille,/obj/structure/window/reinforced{dir = 5; icon_state = "fwindow"},/obj/machinery/door/firedoor,/obj/structure/window/reinforced{dir = 4},/turf/simulated/floor/plating,/area/crew_quarters/pool) -"brB" = (/obj/machinery/vending/fitness,/turf/simulated/floor/tiled,/area/tether/surfacebase/atrium_three) -"brC" = (/obj/structure/bed/chair/wood,/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (NORTH)"; icon_state = "borderfloor"; dir = 1},/obj/effect/floor_decal/corner/beige/border{tag = "icon-bordercolor (NORTH)"; icon_state = "bordercolor"; dir = 1},/obj/effect/floor_decal/borderfloor/corner2{tag = "icon-borderfloorcorner2 (EAST)"; icon_state = "borderfloorcorner2"; dir = 4},/obj/effect/floor_decal/corner/beige/bordercorner2{tag = "icon-bordercolorcorner2 (EAST)"; icon_state = "bordercolorcorner2"; dir = 4},/turf/simulated/floor/tiled,/area/tether/surfacebase/atrium_three) -"brD" = (/obj/machinery/light/flamp/noshade{pixel_x = -8; pixel_y = 6},/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (NORTHEAST)"; icon_state = "borderfloor"; dir = 5},/obj/effect/floor_decal/corner/beige/border{tag = "icon-bordercolor (NORTHEAST)"; icon_state = "bordercolor"; dir = 5},/turf/simulated/floor/tiled,/area/tether/surfacebase/atrium_three) -"brE" = (/turf/simulated/wall,/area/crew_quarters/bar) -"brF" = (/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/item/device/radio/intercom{dir = 8; name = "Station Intercom (General)"; pixel_x = -28},/obj/machinery/light/small{dir = 8},/turf/simulated/floor/wood,/area/crew_quarters/bar) -"brG" = (/obj/structure/table/bench/wooden,/obj/machinery/firealarm{dir = 2; layer = 3.3; pixel_x = 0; pixel_y = 26},/turf/simulated/floor/wood,/area/crew_quarters/bar) -"brH" = (/obj/structure/table/bench/wooden,/obj/machinery/alarm{frequency = 1441; pixel_y = 22},/turf/simulated/floor/wood,/area/crew_quarters/bar) -"brI" = (/obj/effect/floor_decal/corner/grey/diagonal,/obj/structure/closet/chefcloset,/obj/item/glass_jar,/obj/item/device/retail_scanner/civilian,/obj/item/weapon/soap/nanotrasen,/obj/item/device/destTagger{pixel_x = 4; pixel_y = 3},/obj/item/weapon/packageWrap,/obj/item/weapon/packageWrap,/obj/item/weapon/packageWrap,/obj/machinery/light_switch{pixel_x = -25},/turf/simulated/floor/tiled/white,/area/crew_quarters/kitchen) -"brJ" = (/obj/effect/floor_decal/corner/grey/diagonal,/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/white,/area/crew_quarters/kitchen) -"brK" = (/obj/structure/table/standard,/obj/machinery/microwave,/obj/machinery/newscaster{pixel_x = 0; pixel_y = 30},/turf/simulated/floor/tiled/white,/area/crew_quarters/kitchen) -"brL" = (/obj/structure/table/standard,/obj/machinery/microwave,/obj/effect/floor_decal/corner/grey/diagonal,/obj/machinery/firealarm{dir = 2; layer = 3.3; pixel_x = 0; pixel_y = 26},/turf/simulated/floor/tiled/white,/area/crew_quarters/kitchen) -"brM" = (/obj/effect/floor_decal/corner/grey/diagonal,/obj/machinery/disposal,/obj/structure/disposalpipe/trunk,/turf/simulated/floor/tiled/white,/area/crew_quarters/kitchen) -"brN" = (/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) -"brO" = (/obj/effect/floor_decal/corner/grey/diagonal,/obj/structure/closet/secure_closet/freezer/meat,/obj/machinery/light{dir = 4; icon_state = "tube1"},/turf/simulated/floor/tiled/white,/area/crew_quarters/kitchen) -"brP" = (/obj/structure/grille,/obj/structure/window/reinforced{dir = 5; icon_state = "fwindow"},/obj/machinery/door/firedoor,/obj/structure/window/reinforced,/obj/structure/window/reinforced{dir = 8},/turf/simulated/floor/plating,/area/crew_quarters/pool) -"brQ" = (/obj/structure/grille,/obj/structure/window/reinforced{dir = 5; icon_state = "fwindow"},/obj/machinery/door/firedoor,/obj/structure/window/reinforced,/turf/simulated/floor/plating,/area/crew_quarters/pool) -"brR" = (/obj/structure/flora/pottedplant{icon_state = "plant-22"},/turf/simulated/floor/tiled,/area/tether/surfacebase/atrium_three) -"brS" = (/obj/structure/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/turf/simulated/floor/tiled,/area/tether/surfacebase/atrium_three) -"brT" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/newscaster{pixel_x = 0; pixel_y = 30},/turf/simulated/floor/tiled,/area/tether/surfacebase/atrium_three) -"brU" = (/obj/machinery/light{dir = 1},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/tiled,/area/tether/surfacebase/atrium_three) -"brV" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/camera/network/northern_star,/turf/simulated/floor/tiled,/area/tether/surfacebase/atrium_three) -"brW" = (/obj/machinery/door/firedoor/glass/hidden/steel,/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/tiled,/area/hallway/lower/third_south) -"brX" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/disposalpipe/segment,/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/tiled,/area/tether/surfacebase/atrium_three) -"brY" = (/obj/structure/cable{tag = "icon-1-2"; icon_state = "1-2"},/obj/effect/floor_decal/steeldecal/steel_decals7{tag = "icon-steel_decals7 (NORTHEAST)"; icon_state = "steel_decals7"; dir = 5},/obj/effect/floor_decal/steeldecal/steel_decals7{tag = "icon-steel_decals7 (SOUTHEAST)"; icon_state = "steel_decals7"; dir = 6},/obj/structure/cable{d1 = 2; d2 = 8; icon_state = "2-8"},/turf/simulated/floor/tiled,/area/tether/surfacebase/atrium_three) -"brZ" = (/obj/structure/bed/chair/wood,/obj/effect/floor_decal/steeldecal/steel_decals7{tag = "icon-steel_decals7 (SOUTHWEST)"; icon_state = "steel_decals7"; dir = 10},/obj/effect/floor_decal/steeldecal/steel_decals7{tag = "icon-steel_decals7 (NORTHWEST)"; icon_state = "steel_decals7"; dir = 9},/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled,/area/tether/surfacebase/atrium_three) -"bsa" = (/obj/structure/table/woodentable,/turf/simulated/floor/tiled,/area/tether/surfacebase/atrium_three) -"bsb" = (/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (EAST)"; icon_state = "borderfloor"; dir = 4},/obj/effect/floor_decal/corner/beige/border{tag = "icon-bordercolor (EAST)"; icon_state = "bordercolor"; dir = 4},/turf/simulated/floor/tiled,/area/tether/surfacebase/atrium_three) -"bsc" = (/obj/machinery/atm{pixel_x = -30},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 8},/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/bar) -"bsd" = (/obj/structure/table/woodentable,/obj/machinery/atmospherics/unary/vent_pump/on{dir = 8},/turf/simulated/floor/wood,/area/crew_quarters/bar) -"bse" = (/obj/structure/table/woodentable,/obj/item/weapon/reagent_containers/food/drinks/glass2/pint,/obj/machinery/camera/network/civilian{tag = "icon-camera (NORTHWEST)"; icon_state = "camera"; dir = 9},/turf/simulated/floor/wood,/area/crew_quarters/bar) -"bsf" = (/obj/effect/floor_decal/corner/grey/diagonal,/obj/structure/closet/secure_closet/freezer/fridge,/turf/simulated/floor/tiled/white,/area/crew_quarters/kitchen) -"bsg" = (/obj/effect/floor_decal/corner/grey/diagonal,/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/structure/cable/green{d1 = 2; d2 = 4; icon_state = "2-4"},/turf/simulated/floor/tiled/white,/area/crew_quarters/kitchen) -"bsh" = (/obj/effect/floor_decal/corner/grey/diagonal,/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/tiled/white,/area/crew_quarters/kitchen) -"bsi" = (/obj/effect/floor_decal/corner/grey/diagonal,/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled/white,/area/crew_quarters/kitchen) -"bsj" = (/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) -"bsk" = (/obj/effect/floor_decal/corner/grey/diagonal,/obj/structure/closet/secure_closet/freezer/kitchen,/obj/machinery/camera/network/civilian{tag = "icon-camera (NORTHWEST)"; icon_state = "camera"; dir = 9},/turf/simulated/floor/tiled/white,/area/crew_quarters/kitchen) -"bsl" = (/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/atrium_three) -"bsm" = (/obj/machinery/atmospherics/pipe/manifold/hidden/supply,/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 1},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled,/area/tether/surfacebase/atrium_three) -"bsn" = (/obj/machinery/door/firedoor/glass/hidden/steel,/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/hallway/lower/third_south) -"bso" = (/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/atrium_three) -"bsp" = (/obj/structure/table/woodentable,/obj/effect/floor_decal/steeldecal/steel_decals7{tag = "icon-steel_decals7 (SOUTHWEST)"; icon_state = "steel_decals7"; dir = 10},/obj/effect/floor_decal/steeldecal/steel_decals7{tag = "icon-steel_decals7 (NORTHWEST)"; icon_state = "steel_decals7"; dir = 9},/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled,/area/tether/surfacebase/atrium_three) -"bsq" = (/obj/structure/disposalpipe/sortjunction{dir = 1; icon_state = "pipe-j1s"; name = "Kitchen"; sortType = "Kitchen"},/turf/simulated/floor/tiled,/area/tether/surfacebase/atrium_three) -"bsr" = (/obj/structure/bed/chair/wood{dir = 1},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled,/area/tether/surfacebase/atrium_three) -"bss" = (/obj/structure/flora/pottedplant{icon_state = "plant-22"},/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (EAST)"; icon_state = "borderfloor"; dir = 4},/obj/effect/floor_decal/corner/beige/border{tag = "icon-bordercolor (EAST)"; icon_state = "bordercolor"; dir = 4},/obj/effect/floor_decal/borderfloor/corner2{tag = "icon-borderfloorcorner2 (NORTHEAST)"; icon_state = "borderfloorcorner2"; dir = 5},/obj/effect/floor_decal/corner/beige/bordercorner2{tag = "icon-bordercolorcorner2 (NORTHEAST)"; icon_state = "bordercolorcorner2"; dir = 5},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled,/area/tether/surfacebase/atrium_three) -"bst" = (/obj/structure/grille,/obj/structure/window/reinforced{dir = 5; icon_state = "fwindow"},/obj/machinery/door/firedoor,/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/plating,/area/crew_quarters/bar) -"bsu" = (/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/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/wood,/area/crew_quarters/bar) -"bsv" = (/obj/structure/table/bench/wooden,/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/wood,/area/crew_quarters/bar) -"bsw" = (/obj/structure/grille,/obj/structure/window/reinforced{dir = 5; icon_state = "fwindow"},/obj/machinery/door/firedoor,/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/door/blast/shutters{dir = 8; id = "kitchen"; layer = 3.1; name = "Kitchen Shutters"},/turf/simulated/floor/plating,/area/crew_quarters/kitchen) -"bsx" = (/obj/effect/floor_decal/corner/grey/diagonal{dir = 4},/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/table/standard,/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled/white,/area/crew_quarters/kitchen) -"bsy" = (/obj/effect/floor_decal/corner/grey/diagonal,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 8},/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled/white,/area/crew_quarters/kitchen) -"bsz" = (/obj/structure/table/standard,/obj/effect/floor_decal/corner/grey/diagonal,/obj/item/weapon/book/manual/chef_recipes,/obj/machinery/atmospherics/unary/vent_pump/on{dir = 8},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled/white,/area/crew_quarters/kitchen) -"bsA" = (/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,/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled/white,/area/crew_quarters/kitchen) -"bsB" = (/obj/structure/table/standard,/obj/effect/floor_decal/corner/grey/diagonal,/obj/structure/disposalpipe/segment{dir = 8; icon_state = "pipe-c"},/turf/simulated/floor/tiled/white,/area/crew_quarters/kitchen) -"bsC" = (/obj/effect/floor_decal/corner/grey/diagonal,/turf/simulated/floor/tiled/white,/area/crew_quarters/kitchen) -"bsD" = (/obj/machinery/cooker/grill,/obj/effect/floor_decal/industrial/warning/dust{tag = "icon-warning_dust (NORTHWEST)"; icon_state = "warning_dust"; dir = 9},/turf/simulated/floor/tiled/white,/area/crew_quarters/kitchen) -"bsE" = (/obj/structure/grille,/obj/structure/window/reinforced{dir = 5; icon_state = "fwindow"},/obj/machinery/door/firedoor,/obj/structure/window/reinforced{dir = 4},/turf/simulated/floor/plating,/area/crew_quarters/kitchen) -"bsF" = (/obj/machinery/door/firedoor/glass/hidden/steel,/turf/simulated/floor/tiled,/area/hallway/lower/third_south) -"bsG" = (/obj/structure/bed/chair/wood{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals7{tag = "icon-steel_decals7 (SOUTHWEST)"; icon_state = "steel_decals7"; dir = 10},/obj/effect/floor_decal/steeldecal/steel_decals7{tag = "icon-steel_decals7 (NORTHWEST)"; icon_state = "steel_decals7"; dir = 9},/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled,/area/tether/surfacebase/atrium_three) -"bsH" = (/obj/machinery/door/airlock/glass,/obj/machinery/door/firedoor/glass,/turf/simulated/floor/tiled/monotile,/area/crew_quarters/bar) -"bsI" = (/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/wood,/area/crew_quarters/bar) -"bsJ" = (/turf/simulated/floor/wood,/area/crew_quarters/bar) -"bsK" = (/obj/structure/grille,/obj/structure/window/reinforced{dir = 5; icon_state = "fwindow"},/obj/machinery/door/firedoor,/obj/machinery/door/blast/shutters{dir = 8; id = "kitchen"; layer = 3.1; name = "Kitchen Shutters"},/turf/simulated/floor/plating,/area/crew_quarters/kitchen) -"bsL" = (/obj/effect/floor_decal/corner/grey/diagonal,/obj/structure/table/standard,/obj/item/weapon/material/kitchen/rollingpin,/turf/simulated/floor/tiled/white,/area/crew_quarters/kitchen) -"bsM" = (/obj/structure/table/standard,/obj/machinery/reagentgrinder,/turf/simulated/floor/tiled/white,/area/crew_quarters/kitchen) -"bsN" = (/obj/structure/table/standard,/obj/effect/floor_decal/corner/grey/diagonal,/turf/simulated/floor/tiled/white,/area/crew_quarters/kitchen) -"bsO" = (/obj/machinery/cooker/candy,/obj/effect/floor_decal/industrial/warning/dust{tag = "icon-warning_dust (WEST)"; icon_state = "warning_dust"; dir = 8},/turf/simulated/floor/tiled/white,/area/crew_quarters/kitchen) -"bsP" = (/turf/simulated/wall,/area/hallway/lower/third_south) -"bsQ" = (/obj/structure/flora/pottedplant{icon_state = "plant-22"},/obj/effect/floor_decal/steeldecal/steel_decals7{tag = "icon-steel_decals7 (SOUTHWEST)"; icon_state = "steel_decals7"; dir = 10},/obj/effect/floor_decal/steeldecal/steel_decals7{tag = "icon-steel_decals7 (NORTHWEST)"; icon_state = "steel_decals7"; dir = 9},/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled,/area/tether/surfacebase/atrium_three) -"bsR" = (/obj/structure/disposalpipe/junction{dir = 1},/turf/simulated/floor/tiled,/area/tether/surfacebase/atrium_three) -"bsS" = (/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (EAST)"; icon_state = "borderfloor"; dir = 4},/obj/effect/floor_decal/corner/beige/border{tag = "icon-bordercolor (EAST)"; icon_state = "bordercolor"; dir = 4},/obj/effect/floor_decal/borderfloor/corner2{tag = "icon-borderfloorcorner2 (NORTHEAST)"; icon_state = "borderfloorcorner2"; dir = 5},/obj/effect/floor_decal/borderfloor/corner2{tag = "icon-borderfloorcorner2 (SOUTHEAST)"; icon_state = "borderfloorcorner2"; dir = 6},/obj/effect/floor_decal/corner/beige/bordercorner2{tag = "icon-bordercolorcorner2 (NORTHEAST)"; icon_state = "bordercolorcorner2"; dir = 5},/obj/effect/floor_decal/corner/beige/bordercorner2{tag = "icon-bordercolorcorner2 (SOUTHEAST)"; icon_state = "bordercolorcorner2"; dir = 6},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled,/area/tether/surfacebase/atrium_three) -"bsT" = (/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/wood,/area/crew_quarters/bar) -"bsU" = (/obj/machinery/disposal,/obj/structure/disposalpipe/trunk{dir = 8},/turf/simulated/floor/wood,/area/crew_quarters/bar) -"bsV" = (/obj/effect/floor_decal/corner/grey/diagonal,/obj/structure/table/standard,/obj/item/weapon/material/knife/butch,/turf/simulated/floor/tiled/white,/area/crew_quarters/kitchen) -"bsW" = (/obj/effect/floor_decal/corner/grey/diagonal,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 8},/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/tiled/white,/area/crew_quarters/kitchen) -"bsX" = (/obj/structure/table/standard,/obj/effect/floor_decal/corner/grey/diagonal,/obj/item/weapon/packageWrap,/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 8},/turf/simulated/floor/tiled/white,/area/crew_quarters/kitchen) -"bsY" = (/obj/structure/table/standard,/obj/effect/floor_decal/corner/grey/diagonal,/obj/item/weapon/storage/box/donkpockets{pixel_x = 3; pixel_y = 3},/obj/item/weapon/reagent_containers/glass/beaker{pixel_x = 5},/obj/structure/extinguisher_cabinet{pixel_y = 30},/obj/machinery/button/remote/blast_door{id = "kitchen"; name = "Kitchen shutters"; pixel_x = 8; pixel_y = 25},/turf/simulated/floor/tiled/white,/area/crew_quarters/kitchen) -"bsZ" = (/obj/structure/table/standard,/obj/effect/floor_decal/corner/grey/diagonal,/obj/effect/floor_decal/corner/grey/diagonal,/obj/item/weapon/reagent_containers/food/snacks/mint,/turf/simulated/floor/tiled/white,/area/crew_quarters/kitchen) -"bta" = (/obj/effect/floor_decal/corner/grey/diagonal,/obj/effect/floor_decal/corner/grey/diagonal,/turf/simulated/floor/tiled/white,/area/crew_quarters/kitchen) -"btb" = (/obj/machinery/cooker/cereal,/obj/effect/floor_decal/industrial/warning/dust{tag = "icon-warning_dust (WEST)"; icon_state = "warning_dust"; dir = 8},/turf/simulated/floor/tiled/white,/area/crew_quarters/kitchen) -"btc" = (/obj/structure/disposalpipe/segment{dir = 4; icon_state = "pipe-c"},/turf/simulated/floor/outdoors/grass/sif/virgo3b,/area/tether/surfacebase/outside/outside3) -"btd" = (/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/outdoors/grass/sif/virgo3b,/area/tether/surfacebase/outside/outside3) -"bte" = (/obj/structure/disposalpipe/segment{dir = 2; icon_state = "pipe-c"},/turf/simulated/floor/outdoors/grass/sif/virgo3b,/area/tether/surfacebase/outside/outside3) -"btf" = (/obj/machinery/door/airlock/glass,/obj/machinery/door/firedoor/glass,/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/tiled/monotile,/area/crew_quarters/bar) -"btg" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/cable/green{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/structure/cable/green{d1 = 2; d2 = 8; icon_state = "2-8"},/turf/simulated/floor/wood,/area/crew_quarters/bar) -"bth" = (/obj/machinery/smartfridge,/turf/simulated/wall,/area/crew_quarters/kitchen) -"bti" = (/obj/machinery/cooker/fryer,/obj/effect/floor_decal/industrial/warning/dust{tag = "icon-warning_dust (WEST)"; icon_state = "warning_dust"; dir = 8},/turf/simulated/floor/tiled/white,/area/crew_quarters/kitchen) -"btj" = (/turf/simulated/wall,/area/rnd/breakroom) -"btk" = (/obj/structure/grille,/obj/structure/window/reinforced{dir = 5; icon_state = "fwindow"},/obj/machinery/door/firedoor,/obj/structure/window/reinforced{dir = 1},/turf/simulated/floor/plating,/area/rnd/breakroom) -"btl" = (/obj/structure/grille,/obj/structure/window/reinforced{dir = 5; icon_state = "fwindow"},/obj/machinery/door/firedoor,/obj/structure/window/reinforced{dir = 1},/obj/structure/disposalpipe/segment,/turf/simulated/floor/plating,/area/rnd/breakroom) -"btm" = (/turf/simulated/wall/r_wall,/area/rnd/breakroom) -"btn" = (/obj/machinery/door/firedoor,/obj/structure/grille,/obj/structure/window/reinforced{dir = 5; icon_state = "fwindow"},/obj/structure/window/reinforced{dir = 1},/obj/structure/disposalpipe/segment,/turf/simulated/floor/plating,/area/rnd/breakroom) -"bto" = (/turf/simulated/wall/r_wall,/area/hallway/lower/third_south) -"btp" = (/obj/structure/grille,/obj/structure/window/reinforced{dir = 5; icon_state = "fwindow"},/obj/machinery/door/firedoor,/obj/structure/window/reinforced{dir = 1},/turf/simulated/floor/plating,/area/hallway/lower/third_south) -"btq" = (/obj/structure/disposalpipe/sortjunction{dir = 1; icon_state = "pipe-j1s"; name = "Bar"; sortType = "Bar"},/turf/simulated/floor/tiled,/area/tether/surfacebase/atrium_three) -"btr" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled,/area/tether/surfacebase/atrium_three) -"bts" = (/obj/structure/bed/chair/wood,/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled,/area/tether/surfacebase/atrium_three) -"btt" = (/obj/structure/flora/pottedplant{icon_state = "plant-22"},/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (EAST)"; icon_state = "borderfloor"; dir = 4},/obj/effect/floor_decal/corner/beige/border{tag = "icon-bordercolor (EAST)"; icon_state = "bordercolor"; dir = 4},/obj/effect/floor_decal/borderfloor/corner2{tag = "icon-borderfloorcorner2 (SOUTHEAST)"; icon_state = "borderfloorcorner2"; dir = 6},/obj/effect/floor_decal/corner/beige/bordercorner2{tag = "icon-bordercolorcorner2 (SOUTHEAST)"; icon_state = "bordercolorcorner2"; dir = 6},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled,/area/tether/surfacebase/atrium_three) -"btu" = (/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 8},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 8},/obj/structure/cable/green{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/structure/disposalpipe/segment{dir = 2; icon_state = "pipe-c"},/turf/simulated/floor/wood,/area/crew_quarters/bar) -"btv" = (/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/wood,/area/crew_quarters/bar) -"btw" = (/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/firedoor/glass,/obj/machinery/door/airlock/freezer{name = "Kitchen"; req_access = list(28)},/turf/simulated/floor/tiled/white,/area/crew_quarters/kitchen) -"btx" = (/obj/effect/floor_decal/corner/grey/diagonal,/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/white,/area/crew_quarters/kitchen) -"bty" = (/obj/effect/floor_decal/corner/grey/diagonal,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 9},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 9},/obj/structure/cable/green{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/machinery/power/apc{dir = 2; name = "south bump"; pixel_y = -28},/obj/structure/cable/green{icon_state = "0-8"},/turf/simulated/floor/tiled/white,/area/crew_quarters/kitchen) -"btz" = (/obj/machinery/cooker/oven,/obj/effect/floor_decal/industrial/warning/dust{tag = "icon-warning_dust (SOUTHWEST)"; icon_state = "warning_dust"; dir = 10},/turf/simulated/floor/tiled/white,/area/crew_quarters/kitchen) -"btA" = (/obj/structure/bookcase/manuals/research_and_development,/obj/machinery/light/small{dir = 8},/turf/simulated/floor/wood,/area/rnd/breakroom) -"btB" = (/turf/simulated/floor/wood,/area/rnd/breakroom) -"btC" = (/obj/machinery/camera/network/research,/turf/simulated/floor/wood,/area/rnd/breakroom) -"btD" = (/obj/structure/bed/chair,/obj/machinery/alarm{frequency = 1441; pixel_y = 22},/turf/simulated/floor/wood,/area/rnd/breakroom) -"btE" = (/obj/structure/bed/chair,/obj/machinery/light_switch{pixel_y = 25},/turf/simulated/floor/wood,/area/rnd/breakroom) -"btF" = (/obj/structure/bed/chair,/obj/machinery/power/apc{dir = 1; name = "north bump"; pixel_x = 0; pixel_y = 24},/obj/structure/cable/green{icon_state = "0-4"},/turf/simulated/floor/wood,/area/rnd/breakroom) -"btG" = (/obj/structure/bed/chair,/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/item/device/radio/intercom{dir = 1; name = "Station Intercom (General)"; pixel_y = 21},/turf/simulated/floor/wood,/area/rnd/breakroom) -"btH" = (/obj/structure/cable/green{d1 = 2; d2 = 8; icon_state = "2-8"},/turf/simulated/floor/wood,/area/rnd/breakroom) -"btI" = (/obj/machinery/vending/snack,/obj/structure/disposalpipe/segment,/turf/simulated/floor/wood,/area/rnd/breakroom) -"btJ" = (/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{tag = "icon-16-0"; icon_state = "16-0"},/obj/structure/cable{tag = "icon-0-2"; icon_state = "0-2"},/obj/effect/decal/cleanable/dirt,/obj/structure/disposalpipe/up{tag = "icon-pipe-u (NORTH)"; icon_state = "pipe-u"; dir = 1},/turf/simulated/floor/plating,/area/rnd/breakroom) -"btK" = (/turf/simulated/shuttle/wall/voidcraft/green{hard_corner = 1},/area/hallway/lower/third_south) -"btL" = (/obj/machinery/camera/network/northern_star{tag = "icon-camera (EAST)"; icon_state = "camera"; dir = 4},/turf/simulated/floor/tiled,/area/hallway/lower/third_south) -"btM" = (/obj/machinery/firealarm{dir = 2; layer = 3.3; pixel_x = 0; pixel_y = 26},/obj/machinery/atmospherics/unary/vent_scrubber/on,/turf/simulated/floor/tiled,/area/hallway/lower/third_south) -"btN" = (/turf/simulated/floor/tiled,/area/hallway/lower/third_south) -"btO" = (/obj/machinery/light{dir = 1},/turf/simulated/floor/tiled,/area/hallway/lower/third_south) -"btP" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/computer/guestpass{dir = 4; pixel_x = -28; pixel_y = 0},/obj/structure/disposalpipe/segment,/turf/simulated/floor/wood,/area/crew_quarters/bar) -"btQ" = (/obj/structure/table/bench/wooden,/turf/simulated/floor/wood,/area/crew_quarters/bar) -"btR" = (/obj/structure/table/bench/wooden,/obj/machinery/camera/network/civilian{tag = "icon-camera (NORTHWEST)"; icon_state = "camera"; dir = 9},/turf/simulated/floor/wood,/area/crew_quarters/bar) -"btS" = (/obj/effect/floor_decal/corner/grey/diagonal,/obj/machinery/door/blast/shutters{dir = 2; id = "kitchen"; layer = 3.3; name = "Kitchen Shutters"},/obj/machinery/door/firedoor/glass,/turf/simulated/floor/tiled/white,/area/crew_quarters/kitchen) -"btT" = (/obj/structure/table/reinforced,/obj/effect/floor_decal/corner/grey/diagonal,/obj/machinery/chemical_dispenser/bar_soft/full,/obj/machinery/door/blast/shutters{dir = 2; id = "kitchen"; layer = 3.3; name = "Kitchen Shutters"},/obj/machinery/door/firedoor/glass,/turf/simulated/floor/tiled/white,/area/crew_quarters/kitchen) -"btU" = (/obj/machinery/door/blast/shutters{dir = 2; id = "kitchen"; layer = 3.3; name = "Kitchen Shutters"},/obj/effect/floor_decal/corner/grey/diagonal,/obj/machinery/door/firedoor/glass,/turf/simulated/floor/tiled/white,/area/crew_quarters/kitchen) -"btV" = (/obj/structure/table/reinforced,/obj/effect/floor_decal/corner/grey/diagonal,/obj/machinery/door/blast/shutters{dir = 2; id = "kitchen"; layer = 3.3; name = "Kitchen Shutters"},/obj/machinery/door/firedoor/glass,/turf/simulated/floor/tiled/white,/area/crew_quarters/kitchen) -"btW" = (/obj/structure/grille,/obj/structure/window/reinforced{dir = 5; icon_state = "fwindow"},/obj/machinery/door/firedoor,/obj/structure/window/reinforced{dir = 8},/turf/simulated/floor/plating,/area/rnd/breakroom) -"btX" = (/obj/structure/bed/chair/comfy,/turf/simulated/floor/wood,/area/rnd/breakroom) -"btY" = (/obj/structure/table/glass,/turf/simulated/floor/wood,/area/rnd/breakroom) -"btZ" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/disposalpipe/segment{dir = 4; icon_state = "pipe-c"},/turf/simulated/floor/wood,/area/rnd/breakroom) -"bua" = (/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/wood,/area/rnd/breakroom) -"bub" = (/obj/machinery/vending/cola,/obj/structure/disposalpipe/segment{dir = 8; icon_state = "pipe-c"},/turf/simulated/floor/wood,/area/rnd/breakroom) -"buc" = (/obj/machinery/atmospherics/pipe/simple/visible/supply,/obj/machinery/atmospherics/pipe/simple/visible/scrubbers,/obj/machinery/atmospherics/pipe/simple/visible,/obj/structure/cable{tag = "icon-1-2"; icon_state = "1-2"},/obj/effect/decal/cleanable/dirt,/obj/effect/floor_decal/rust,/turf/simulated/floor/plating,/area/rnd/breakroom) -"bud" = (/turf/simulated/floor/holofloor/tiled/dark,/area/hallway/lower/third_south) -"bue" = (/obj/machinery/status_display{pixel_y = 30},/turf/simulated/floor/tiled,/area/hallway/lower/third_south) -"buf" = (/obj/structure/disposalpipe/segment{dir = 4; icon_state = "pipe-c"},/turf/simulated/floor/tiled,/area/hallway/lower/third_south) -"bug" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled,/area/hallway/lower/third_south) -"buh" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 6},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 6},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled,/area/hallway/lower/third_south) -"bui" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled,/area/hallway/lower/third_south) -"buj" = (/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/hallway/lower/third_south) -"buk" = (/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 4},/obj/structure/disposalpipe/segment{dir = 8; icon_state = "pipe-c"},/turf/simulated/floor/tiled,/area/tether/surfacebase/atrium_three) -"bul" = (/obj/structure/railing{dir = 8},/obj/structure/railing,/turf/simulated/open,/area/tether/surfacebase/atrium_three) -"bum" = (/obj/structure/railing,/turf/simulated/open,/area/tether/surfacebase/atrium_three) -"bun" = (/obj/structure/railing,/obj/structure/railing{dir = 4},/turf/simulated/open,/area/tether/surfacebase/atrium_three) -"buo" = (/obj/structure/bed/chair/wood{dir = 1},/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/corner/beige/border,/obj/effect/floor_decal/borderfloor/corner2,/obj/effect/floor_decal/corner/beige/bordercorner2,/turf/simulated/floor/tiled,/area/tether/surfacebase/atrium_three) -"bup" = (/obj/machinery/light/flamp/noshade{pixel_x = -8; pixel_y = 22},/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (SOUTHEAST)"; icon_state = "borderfloor"; dir = 6},/obj/effect/floor_decal/corner/beige/border{tag = "icon-bordercolor (SOUTHEAST)"; icon_state = "bordercolor"; dir = 6},/obj/item/device/radio/intercom{dir = 4; name = "Station Intercom (General)"; pixel_x = 21},/turf/simulated/floor/tiled,/area/tether/surfacebase/atrium_three) -"buq" = (/obj/machinery/light{icon_state = "tube1"; dir = 8},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/disposalpipe/segment,/turf/simulated/floor/wood,/area/crew_quarters/bar) -"bur" = (/obj/structure/table/woodentable,/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 8},/turf/simulated/floor/wood,/area/crew_quarters/bar) -"bus" = (/obj/structure/table/woodentable,/turf/simulated/floor/wood,/area/crew_quarters/bar) -"but" = (/obj/structure/table/marble,/obj/effect/floor_decal/spline/plain{dir = 8},/turf/simulated/floor/tiled/white,/area/crew_quarters/bar) -"buu" = (/turf/simulated/floor/tiled/white,/area/crew_quarters/bar) -"buv" = (/obj/machinery/computer/security/telescreen/entertainment{icon_state = "frame"; pixel_x = 0; pixel_y = 32},/turf/simulated/floor/tiled/white,/area/crew_quarters/bar) -"buw" = (/obj/machinery/light{dir = 4; icon_state = "tube1"},/turf/simulated/floor/tiled/white,/area/crew_quarters/bar) -"bux" = (/obj/structure/bed/chair/comfy{tag = "icon-comfychair_preview (WEST)"; icon_state = "comfychair_preview"; dir = 8},/turf/simulated/floor/wood,/area/rnd/breakroom) -"buy" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/disposalpipe/segment,/turf/simulated/floor/wood,/area/rnd/breakroom) -"buz" = (/obj/machinery/vending/coffee,/turf/simulated/floor/wood,/area/rnd/breakroom) -"buA" = (/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{tag = "icon-32-1"; icon_state = "32-1"},/obj/structure/disposalpipe/down,/obj/machinery/door/firedoor/glass,/turf/simulated/open,/area/rnd/breakroom) -"buB" = (/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled,/area/hallway/lower/third_south) -"buC" = (/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 6},/turf/simulated/floor/tiled,/area/hallway/lower/third_south) -"buD" = (/obj/machinery/atmospherics/pipe/manifold/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 9},/obj/structure/disposalpipe/segment{dir = 4; icon_state = "pipe-c"},/turf/simulated/floor/tiled,/area/hallway/lower/third_south) -"buE" = (/obj/machinery/atmospherics/unary/vent_pump/on{dir = 8},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled,/area/hallway/lower/third_south) -"buF" = (/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled,/area/hallway/lower/third_south) -"buG" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled,/area/tether/surfacebase/atrium_three) -"buH" = (/obj/structure/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/effect/floor_decal/corner_steel_grid{tag = "icon-steel_grid (EAST)"; icon_state = "steel_grid"; dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled,/area/tether/surfacebase/atrium_three) -"buI" = (/obj/structure/cable{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/effect/floor_decal/steeldecal/steel_decals7{tag = "icon-steel_decals7 (NORTH)"; icon_state = "steel_decals7"; dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals7{tag = "icon-steel_decals7 (WEST)"; icon_state = "steel_decals7"; dir = 8},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled,/area/tether/surfacebase/atrium_three) -"buJ" = (/obj/effect/floor_decal/steeldecal/steel_decals7{tag = "icon-steel_decals7 (NORTH)"; icon_state = "steel_decals7"; dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals7{tag = "icon-steel_decals7 (WEST)"; icon_state = "steel_decals7"; dir = 8},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled,/area/tether/surfacebase/atrium_three) -"buK" = (/obj/effect/floor_decal/corner_steel_grid{tag = "icon-steel_grid (NORTH)"; icon_state = "steel_grid"; dir = 1},/obj/structure/disposalpipe/segment{dir = 8; icon_state = "pipe-c"},/turf/simulated/floor/tiled,/area/tether/surfacebase/atrium_three) -"buL" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 6},/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled,/area/tether/surfacebase/atrium_three) -"buM" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/unary/vent_pump/on{dir = 8},/turf/simulated/floor/tiled,/area/tether/surfacebase/atrium_three) -"buN" = (/obj/structure/sign/directions/evac{tag = "icon-direction_evac (WEST)"; icon_state = "direction_evac"; dir = 8},/turf/simulated/wall,/area/crew_quarters/bar) -"buO" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/disposalpipe/segment,/turf/simulated/floor/wood,/area/crew_quarters/bar) -"buP" = (/obj/structure/table/marble,/turf/simulated/floor/tiled/white,/area/crew_quarters/bar) -"buQ" = (/obj/structure/table/marble,/obj/item/device/radio/intercom{dir = 4; name = "Station Intercom (General)"; pixel_x = 21},/turf/simulated/floor/tiled/white,/area/crew_quarters/bar) -"buR" = (/obj/structure/bed/chair/comfy{tag = "icon-comfychair_preview (NORTH)"; icon_state = "comfychair_preview"; dir = 1},/turf/simulated/floor/wood,/area/rnd/breakroom) -"buS" = (/obj/structure/bed/chair{dir = 1},/turf/simulated/floor/wood,/area/rnd/breakroom) -"buT" = (/obj/machinery/vending/fitness,/turf/simulated/floor/wood,/area/rnd/breakroom) -"buU" = (/obj/effect/decal/cleanable/dirt,/obj/effect/floor_decal/rust,/obj/structure/railing,/obj/structure/disposalpipe/segment,/turf/simulated/floor/plating,/area/rnd/breakroom) -"buV" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/tiled,/area/hallway/lower/third_south) -"buW" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 5},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 5},/turf/simulated/floor/tiled,/area/tether/surfacebase/atrium_three) -"buX" = (/obj/structure/cable{tag = "icon-1-2"; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/disposalpipe/segment{dir = 4; icon_state = "pipe-c"},/turf/simulated/floor/tiled,/area/tether/surfacebase/atrium_three) -"buY" = (/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 1},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 1},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled,/area/tether/surfacebase/atrium_three) -"buZ" = (/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/atrium_three) -"bva" = (/obj/effect/landmark{name = "JoinLateElevator"},/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/atrium_three) -"bvb" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 9},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 10},/obj/structure/disposalpipe/junction{dir = 1; icon_state = "pipe-j2"},/turf/simulated/floor/tiled,/area/tether/surfacebase/atrium_three) -"bvc" = (/obj/structure/grille,/obj/structure/window/reinforced{dir = 5; icon_state = "fwindow"},/obj/machinery/door/firedoor,/turf/simulated/floor/plating,/area/crew_quarters/bar) -"bvd" = (/obj/structure/table/bench/wooden,/obj/machinery/light{dir = 1},/turf/simulated/floor/wood,/area/crew_quarters/bar) -"bve" = (/obj/structure/table/bench/wooden,/obj/machinery/status_display{pixel_y = 30},/turf/simulated/floor/wood,/area/crew_quarters/bar) -"bvf" = (/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/bar) -"bvg" = (/obj/item/weapon/stool/padded,/turf/simulated/floor/tiled/white,/area/crew_quarters/bar) -"bvh" = (/obj/structure/grille,/obj/structure/window/reinforced{dir = 5; icon_state = "fwindow"},/obj/machinery/door/firedoor,/obj/structure/window/reinforced{dir = 4},/turf/simulated/floor/plating,/area/crew_quarters/bar) -"bvi" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 6},/turf/simulated/floor/wood,/area/rnd/breakroom) -"bvj" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 6},/turf/simulated/floor/wood,/area/rnd/breakroom) -"bvk" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/turf/simulated/floor/wood,/area/rnd/breakroom) -"bvl" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 10},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 10},/obj/structure/disposalpipe/segment,/turf/simulated/floor/wood,/area/rnd/breakroom) -"bvm" = (/obj/structure/disposalpipe/segment{dir = 4; icon_state = "pipe-c"},/turf/simulated/floor/wood,/area/rnd/breakroom) -"bvn" = (/obj/machinery/door/airlock/maintenance/rnd,/obj/machinery/door/firedoor/glass,/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/plating,/area/rnd/breakroom) -"bvo" = (/obj/effect/decal/cleanable/dirt,/obj/structure/disposalpipe/segment{dir = 8; icon_state = "pipe-c"},/turf/simulated/floor/plating,/area/rnd/breakroom) -"bvp" = (/obj/machinery/light,/turf/simulated/floor/tiled,/area/hallway/lower/third_south) -"bvq" = (/obj/item/device/radio/intercom{name = "Station Intercom (General)"; pixel_y = -21},/turf/simulated/floor/tiled,/area/hallway/lower/third_south) -"bvr" = (/obj/machinery/camera/network/northern_star{tag = "icon-camera (NORTH)"; icon_state = "camera"; dir = 1},/turf/simulated/floor/tiled,/area/tether/surfacebase/atrium_three) -"bvs" = (/obj/structure/cable{tag = "icon-1-2"; icon_state = "1-2"},/obj/structure/cable{icon_state = "2-4"},/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled,/area/tether/surfacebase/atrium_three) -"bvt" = (/obj/machinery/computer/guestpass{dir = 1; icon_state = "guest"; pixel_y = -28; tag = "icon-guest (NORTH)"},/obj/structure/cable{tag = "icon-4-8"; icon_state = "4-8"},/turf/simulated/floor/tiled,/area/tether/surfacebase/atrium_three) -"bvu" = (/obj/effect/floor_decal/industrial/warning/corner,/obj/structure/cable{tag = "icon-4-8"; icon_state = "4-8"},/turf/simulated/floor/tiled,/area/tether/surfacebase/atrium_three) -"bvv" = (/obj/effect/floor_decal/industrial/warning,/obj/structure/cable{tag = "icon-4-8"; icon_state = "4-8"},/turf/simulated/floor/tiled,/area/tether/surfacebase/atrium_three) -"bvw" = (/obj/effect/floor_decal/industrial/warning/corner{dir = 8},/obj/structure/cable{tag = "icon-4-8"; icon_state = "4-8"},/turf/simulated/floor/tiled,/area/tether/surfacebase/atrium_three) -"bvx" = (/obj/structure/cable{tag = "icon-2-8"; icon_state = "2-8"},/turf/simulated/floor/tiled,/area/tether/surfacebase/atrium_three) -"bvy" = (/obj/item/device/radio/intercom{name = "Station Intercom (General)"; pixel_y = -21},/turf/simulated/floor/tiled,/area/tether/surfacebase/atrium_three) -"bvz" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 5},/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled,/area/tether/surfacebase/atrium_three) -"bvA" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 8},/turf/simulated/floor/tiled,/area/tether/surfacebase/atrium_three) -"bvB" = (/obj/structure/table/woodentable,/obj/item/weapon/reagent_containers/food/drinks/glass2/pint,/turf/simulated/floor/wood,/area/crew_quarters/bar) -"bvC" = (/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/bar) -"bvD" = (/obj/effect/floor_decal/corner/beige{dir = 10},/obj/effect/floor_decal/spline/plain,/turf/simulated/floor/tiled/white,/area/crew_quarters/bar) -"bvE" = (/obj/structure/flora/pottedplant{icon_state = "plant-22"},/obj/machinery/requests_console{department = "Science"; departmentType = 2; name = "Science Requests Console"; pixel_x = -30; pixel_y = 0},/turf/simulated/floor/wood,/area/rnd/breakroom) -"bvF" = (/obj/structure/table/glass,/obj/machinery/microwave,/obj/machinery/atmospherics/unary/vent_pump/on{dir = 1},/turf/simulated/floor/wood,/area/rnd/breakroom) -"bvG" = (/obj/machinery/light,/obj/structure/table/glass,/obj/item/weapon/storage/box/donkpockets,/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 1},/turf/simulated/floor/wood,/area/rnd/breakroom) -"bvH" = (/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/wood,/area/rnd/breakroom) -"bvI" = (/obj/machinery/light,/obj/structure/disposalpipe/segment,/turf/simulated/floor/wood,/area/rnd/breakroom) -"bvJ" = (/obj/structure/disposalpipe/segment{dir = 4; icon_state = "pipe-c"},/obj/machinery/vending/cigarette,/turf/simulated/floor/wood,/area/rnd/breakroom) -"bvK" = (/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{dir = 5; icon_state = "fwindow"},/obj/machinery/door/firedoor/glass,/turf/simulated/floor/plating,/area/rnd/breakroom) -"bvL" = (/obj/effect/decal/cleanable/dirt,/obj/structure/disposalpipe/up{tag = "icon-pipe-u (WEST)"; icon_state = "pipe-u"; dir = 8},/obj/effect/floor_decal/industrial/outline/yellow,/obj/structure/railing{dir = 1},/turf/simulated/floor/plating,/area/rnd/breakroom) -"bvM" = (/obj/structure/flora/pottedplant{icon_state = "plant-22"},/turf/simulated/floor/tiled,/area/hallway/lower/third_south) -"bvN" = (/obj/structure/sign/directions/evac{tag = "icon-direction_evac (NORTH)"; icon_state = "direction_evac"; dir = 1},/turf/simulated/wall,/area/maintenance/lower/atrium) -"bvO" = (/turf/simulated/wall,/area/maintenance/lower/atrium) -"bvP" = (/obj/machinery/door/firedoor/glass,/obj/structure/cable{tag = "icon-1-2"; icon_state = "1-2"},/obj/structure/disposalpipe/segment,/obj/machinery/door/airlock/maintenance/common,/turf/simulated/floor/plating,/area/maintenance/lower/atrium) -"bvQ" = (/obj/structure/grille,/obj/structure/railing{dir = 1},/turf/simulated/floor/tiled/techmaint,/area/tether/surfacebase/atrium_three) -"bvR" = (/obj/machinery/door/airlock/maintenance/int{name = "Emergency Storage"},/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0},/turf/simulated/floor/plating,/area/maintenance/lower/atrium) -"bvS" = (/obj/structure/sign/directions/medical{tag = "icon-direction_med (EAST)"; icon_state = "direction_med"; dir = 4; pixel_y = 8},/obj/structure/sign/directions/science{tag = "icon-direction_sci (WEST)"; icon_state = "direction_sci"; dir = 8; pixel_y = 3},/obj/structure/sign/directions/security{tag = "icon-direction_sec (WEST)"; icon_state = "direction_sec"; dir = 8; pixel_y = -4},/obj/structure/sign/directions/engineering{tag = "icon-direction_eng (WEST)"; icon_state = "direction_eng"; dir = 8; pixel_y = -10},/turf/simulated/wall,/area/maintenance/lower/atrium) -"bvT" = (/obj/machinery/door/airlock/maintenance/common,/obj/machinery/door/firedoor/glass,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/plating,/area/maintenance/lower/atrium) -"bvU" = (/turf/simulated/wall,/area/hydroponics) -"bvV" = (/obj/structure/grille,/obj/structure/window/reinforced{dir = 5; icon_state = "fwindow"},/obj/machinery/door/firedoor,/obj/structure/disposalpipe/segment,/turf/simulated/floor/plating,/area/hydroponics) -"bvW" = (/obj/structure/grille,/obj/structure/window/reinforced{dir = 5; icon_state = "fwindow"},/obj/machinery/door/firedoor,/turf/simulated/floor/plating,/area/hydroponics) -"bvX" = (/obj/structure/extinguisher_cabinet{dir = 4; icon_state = "extinguisher_closed"; pixel_x = -30; tag = "icon-extinguisher_closed (EAST)"},/turf/simulated/floor/tiled,/area/hallway/lower/third_south) -"bvY" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/tiled,/area/hallway/lower/third_south) -"bvZ" = (/obj/structure/closet/firecloset,/turf/simulated/floor/wood,/area/crew_quarters/bar) -"bwa" = (/obj/structure/grille,/obj/structure/window/reinforced{dir = 5; icon_state = "fwindow"},/obj/machinery/door/firedoor,/turf/simulated/floor/plating,/area/rnd/breakroom) -"bwb" = (/obj/machinery/door/firedoor/glass,/obj/machinery/door/airlock/glass_research{name = "Research Lounge"; req_access = list(47)},/turf/simulated/floor/tiled,/area/rnd/breakroom) -"bwc" = (/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,/obj/machinery/door/airlock/glass_research{name = "Research Lounge"; req_access = list(47)},/turf/simulated/floor/tiled,/area/rnd/breakroom) -"bwd" = (/obj/structure/grille,/obj/structure/window/reinforced{dir = 5; icon_state = "fwindow"},/obj/machinery/door/firedoor,/obj/structure/disposalpipe/segment,/turf/simulated/floor/plating,/area/rnd/breakroom) -"bwe" = (/turf/simulated/wall/r_wall,/area/rnd/reception_desk) -"bwf" = (/turf/simulated/wall,/area/rnd/reception_desk) -"bwg" = (/obj/machinery/door/firedoor/glass/hidden/steel{dir = 2},/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled,/area/hallway/lower/third_south) -"bwh" = (/obj/machinery/door/firedoor/glass/hidden/steel{dir = 2},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/tiled,/area/hallway/lower/third_south) -"bwi" = (/obj/structure/table/rack,/obj/item/weapon/reagent_containers/food/drinks/bottle/gin,/obj/random/action_figure,/obj/random/maintenance/research,/obj/random/maintenance/research,/turf/simulated/floor/plating,/area/maintenance/lower/atrium) -"bwj" = (/obj/machinery/alarm{frequency = 1441; pixel_y = 22},/turf/simulated/floor/plating,/area/maintenance/lower/atrium) -"bwk" = (/obj/effect/decal/cleanable/blood/splatter,/turf/simulated/floor/plating,/area/maintenance/lower/atrium) -"bwl" = (/obj/structure/closet,/obj/random/maintenance/research,/obj/random/maintenance/clean,/obj/random/maintenance/research,/turf/simulated/floor/plating,/area/maintenance/lower/atrium) -"bwm" = (/obj/machinery/light/small{dir = 4},/turf/simulated/floor/plating,/area/maintenance/lower/atrium) -"bwn" = (/obj/structure/cable{tag = "icon-1-2"; icon_state = "1-2"},/obj/effect/decal/cleanable/dirt,/obj/structure/disposalpipe/segment,/turf/simulated/floor/plating,/area/maintenance/lower/atrium) -"bwo" = (/obj/effect/decal/cleanable/dirt,/obj/structure/closet/crate,/obj/random/maintenance/clean,/obj/random/maintenance/medical,/obj/random/maintenance/engineering,/turf/simulated/floor/plating,/area/maintenance/lower/atrium) -"bwp" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0},/turf/simulated/floor/plating,/area/maintenance/lower/atrium) -"bwq" = (/obj/effect/decal/cleanable/dirt,/obj/structure/closet/crate,/obj/random/maintenance/clean,/obj/random/maintenance/cargo,/obj/random/maintenance/engineering,/turf/simulated/floor/plating,/area/maintenance/lower/atrium) -"bwr" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/plating,/area/maintenance/lower/atrium) -"bws" = (/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (NORTHWEST)"; icon_state = "borderfloor"; dir = 9},/obj/structure/closet/secure_closet/hydroponics,/obj/effect/floor_decal/corner/lime/border{tag = "icon-bordercolor (NORTHWEST)"; icon_state = "bordercolor"; dir = 9},/turf/simulated/floor/tiled,/area/hydroponics) -"bwt" = (/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (NORTH)"; icon_state = "borderfloor"; dir = 1},/obj/effect/floor_decal/corner/lime/border{tag = "icon-bordercolor (NORTH)"; icon_state = "bordercolor"; dir = 1},/obj/structure/disposalpipe/segment,/obj/machinery/smartfridge,/turf/simulated/floor/tiled,/area/hydroponics) -"bwu" = (/obj/machinery/honey_extractor,/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (NORTH)"; icon_state = "borderfloor"; dir = 1},/obj/effect/floor_decal/corner/lime/border{tag = "icon-bordercolor (NORTH)"; icon_state = "bordercolor"; dir = 1},/turf/simulated/floor/tiled,/area/hydroponics) -"bwv" = (/obj/machinery/smartfridge/drying_rack,/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (NORTH)"; icon_state = "borderfloor"; dir = 1},/obj/effect/floor_decal/corner/lime/border{tag = "icon-bordercolor (NORTH)"; icon_state = "bordercolor"; dir = 1},/turf/simulated/floor/tiled,/area/hydroponics) -"bww" = (/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/crowbar,/obj/item/bee_smoker,/obj/item/beehive_assembly,/obj/structure/closet/crate/hydroponics{desc = "All you need to start your own honey farm."; name = "beekeeping crate"},/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (NORTH)"; icon_state = "borderfloor"; dir = 1},/obj/effect/floor_decal/corner/lime/border{tag = "icon-bordercolor (NORTH)"; icon_state = "bordercolor"; dir = 1},/turf/simulated/floor/tiled,/area/hydroponics) -"bwx" = (/obj/machinery/vending/hydronutrients,/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (NORTHEAST)"; icon_state = "borderfloor"; dir = 5},/obj/effect/floor_decal/corner/lime/border{tag = "icon-bordercolor (NORTHEAST)"; icon_state = "bordercolor"; dir = 5},/turf/simulated/floor/tiled,/area/hydroponics) -"bwy" = (/obj/structure/sign/directions/evac{tag = "icon-direction_evac (NORTH)"; icon_state = "direction_evac"; dir = 1},/turf/simulated/wall,/area/hydroponics) -"bwz" = (/obj/structure/flora/pottedplant{icon_state = "plant-22"},/turf/simulated/floor/wood,/area/crew_quarters/bar) -"bwA" = (/obj/structure/flora/pottedplant{icon_state = "plant-22"},/obj/machinery/status_display{pixel_y = 30},/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (NORTHWEST)"; icon_state = "borderfloor"; dir = 9},/obj/effect/floor_decal/corner/mauve/border{tag = "icon-bordercolor (NORTHWEST)"; icon_state = "bordercolor"; dir = 9},/turf/simulated/floor/tiled,/area/rnd/research) -"bwB" = (/obj/machinery/atmospherics/unary/vent_pump/on,/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (NORTH)"; icon_state = "borderfloor"; dir = 1},/obj/effect/floor_decal/corner/mauve/border{tag = "icon-bordercolor (NORTH)"; icon_state = "bordercolor"; dir = 1},/turf/simulated/floor/tiled,/area/rnd/research) -"bwC" = (/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (NORTH)"; icon_state = "borderfloor"; dir = 1},/obj/effect/floor_decal/corner/mauve/border{tag = "icon-bordercolor (NORTH)"; icon_state = "bordercolor"; dir = 1},/obj/effect/floor_decal/borderfloor/corner2{tag = "icon-borderfloorcorner2 (NORTH)"; icon_state = "borderfloorcorner2"; dir = 1},/obj/effect/floor_decal/corner/mauve/bordercorner2{tag = "icon-bordercolorcorner2 (NORTH)"; icon_state = "bordercolorcorner2"; dir = 1},/turf/simulated/floor/tiled,/area/rnd/research) -"bwD" = (/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (NORTH)"; icon_state = "borderfloor"; dir = 1},/obj/effect/floor_decal/corner/mauve/border{tag = "icon-bordercolor (NORTH)"; icon_state = "bordercolor"; dir = 1},/obj/effect/floor_decal/borderfloor/corner2{tag = "icon-borderfloorcorner2 (EAST)"; icon_state = "borderfloorcorner2"; dir = 4},/obj/effect/floor_decal/corner/mauve/bordercorner2{tag = "icon-bordercolorcorner2 (EAST)"; icon_state = "bordercolorcorner2"; dir = 4},/turf/simulated/floor/tiled,/area/rnd/research) -"bwE" = (/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (NORTH)"; icon_state = "borderfloor"; dir = 1},/obj/effect/floor_decal/corner/mauve/border{tag = "icon-bordercolor (NORTH)"; icon_state = "bordercolor"; dir = 1},/obj/machinery/camera/network/research,/turf/simulated/floor/tiled,/area/rnd/research) -"bwF" = (/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (NORTH)"; icon_state = "borderfloor"; dir = 1},/obj/effect/floor_decal/corner/mauve/border{tag = "icon-bordercolor (NORTH)"; icon_state = "bordercolor"; dir = 1},/turf/simulated/floor/tiled,/area/rnd/research) -"bwG" = (/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,/area/rnd/research) -"bwH" = (/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (NORTH)"; icon_state = "borderfloor"; dir = 1},/obj/effect/floor_decal/corner/mauve/border{tag = "icon-bordercolor (NORTH)"; icon_state = "bordercolor"; dir = 1},/obj/effect/floor_decal/borderfloor/corner2{tag = "icon-borderfloorcorner2 (EAST)"; icon_state = "borderfloorcorner2"; dir = 4},/obj/effect/floor_decal/corner/mauve/bordercorner2{tag = "icon-bordercolorcorner2 (EAST)"; icon_state = "bordercolorcorner2"; dir = 4},/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled,/area/rnd/research) -"bwI" = (/obj/machinery/atmospherics/unary/vent_scrubber/on,/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (NORTH)"; icon_state = "borderfloor"; dir = 1},/obj/effect/floor_decal/corner/mauve/border{tag = "icon-bordercolor (NORTH)"; icon_state = "bordercolor"; dir = 1},/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled,/area/rnd/research) -"bwJ" = (/obj/structure/flora/pottedplant{icon_state = "plant-22"},/obj/machinery/newscaster{pixel_x = 0; pixel_y = 30},/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (NORTHEAST)"; icon_state = "borderfloor"; dir = 5},/obj/effect/floor_decal/corner/mauve/border{tag = "icon-bordercolor (NORTHEAST)"; icon_state = "bordercolor"; dir = 5},/turf/simulated/floor/tiled,/area/rnd/research) -"bwK" = (/obj/structure/grille,/obj/structure/window/reinforced{dir = 5; icon_state = "fwindow"},/obj/machinery/door/firedoor,/turf/simulated/floor/plating,/area/rnd/research) -"bwL" = (/obj/structure/table/glass,/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (NORTHWEST)"; icon_state = "borderfloor"; dir = 9},/obj/effect/floor_decal/corner/mauve/border{tag = "icon-bordercolor (NORTHWEST)"; icon_state = "bordercolor"; dir = 9},/obj/machinery/camera/network/research,/turf/simulated/floor/tiled,/area/rnd/reception_desk) -"bwM" = (/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (NORTH)"; icon_state = "borderfloor"; dir = 1},/obj/effect/floor_decal/corner/mauve/border{tag = "icon-bordercolor (NORTH)"; icon_state = "bordercolor"; dir = 1},/obj/machinery/power/apc{dir = 1; name = "north bump"; pixel_x = 0; pixel_y = 28},/obj/structure/cable/green{d2 = 2; icon_state = "0-2"},/turf/simulated/floor/tiled,/area/rnd/reception_desk) -"bwN" = (/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (NORTH)"; icon_state = "borderfloor"; dir = 1},/obj/effect/floor_decal/corner/mauve/border{tag = "icon-bordercolor (NORTH)"; icon_state = "bordercolor"; dir = 1},/obj/machinery/firealarm{dir = 2; layer = 3.3; pixel_x = 0; pixel_y = 26},/turf/simulated/floor/tiled,/area/rnd/reception_desk) -"bwO" = (/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (NORTH)"; icon_state = "borderfloor"; dir = 1},/obj/effect/floor_decal/corner/mauve/border{tag = "icon-bordercolor (NORTH)"; icon_state = "bordercolor"; dir = 1},/obj/machinery/light_switch{pixel_y = 25},/turf/simulated/floor/tiled,/area/rnd/reception_desk) -"bwP" = (/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (NORTH)"; icon_state = "borderfloor"; dir = 1},/obj/effect/floor_decal/corner/mauve/border{tag = "icon-bordercolor (NORTH)"; icon_state = "bordercolor"; dir = 1},/obj/machinery/alarm{frequency = 1441; pixel_y = 22},/turf/simulated/floor/tiled,/area/rnd/reception_desk) -"bwQ" = (/obj/structure/table/glass,/obj/item/weapon/storage/firstaid/regular,/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (NORTHEAST)"; icon_state = "borderfloor"; dir = 5},/obj/effect/floor_decal/corner/mauve/border{tag = "icon-bordercolor (NORTHEAST)"; icon_state = "bordercolor"; dir = 5},/obj/structure/extinguisher_cabinet{pixel_y = 30},/turf/simulated/floor/tiled,/area/rnd/reception_desk) -"bwR" = (/obj/machinery/door/airlock/maintenance/rnd,/obj/machinery/door/firedoor/glass,/turf/simulated/floor/plating,/area/maintenance/lower/atrium) -"bwS" = (/turf/simulated/floor/plating,/area/maintenance/lower/atrium) -"bwT" = (/obj/machinery/door/airlock/maintenance/common,/obj/machinery/door/firedoor/glass,/turf/simulated/floor/plating,/area/maintenance/lower/atrium) -"bwU" = (/obj/effect/decal/cleanable/dirt,/obj/structure/closet,/obj/random/maintenance/clean,/obj/random/maintenance/clean,/obj/random/junk,/obj/random/maintenance/engineering,/turf/simulated/floor/plating,/area/maintenance/lower/atrium) -"bwV" = (/obj/effect/decal/cleanable/dirt,/obj/structure/closet,/obj/random/maintenance/clean,/obj/random/maintenance/medical,/obj/random/junk,/obj/random/maintenance/medical,/turf/simulated/floor/plating,/area/maintenance/lower/atrium) -"bwW" = (/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (WEST)"; icon_state = "borderfloor"; dir = 8},/obj/effect/floor_decal/corner/lime/border{tag = "icon-bordercolor (WEST)"; icon_state = "bordercolor"; dir = 8},/obj/machinery/alarm{dir = 4; icon_state = "alarm0"; pixel_x = -22; pixel_y = 0},/turf/simulated/floor/tiled,/area/hydroponics) -"bwX" = (/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled,/area/hydroponics) -"bwY" = (/turf/simulated/floor/tiled,/area/hydroponics) -"bwZ" = (/obj/machinery/seed_storage/garden,/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (EAST)"; icon_state = "borderfloor"; dir = 4},/obj/effect/floor_decal/corner/lime/border{tag = "icon-bordercolor (EAST)"; icon_state = "bordercolor"; dir = 4},/turf/simulated/floor/tiled,/area/hydroponics) -"bxa" = (/obj/machinery/door/firedoor/glass/hidden/steel{dir = 1},/turf/simulated/floor/tiled,/area/hallway/lower/third_south) -"bxb" = (/obj/machinery/door/firedoor/glass/hidden/steel{dir = 1},/obj/structure/disposalpipe/segment{dir = 1; icon_state = "pipe-c"},/turf/simulated/floor/tiled,/area/hallway/lower/third_south) -"bxc" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/door/firedoor/glass/hidden/steel{dir = 1},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled,/area/hallway/lower/third_south) -"bxd" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 8},/obj/structure/disposalpipe/segment,/turf/simulated/floor/wood,/area/crew_quarters/bar) -"bxe" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/wood,/area/crew_quarters/bar) -"bxf" = (/obj/structure/table/bench/wooden,/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/wood,/area/crew_quarters/bar) -"bxg" = (/obj/structure/table/woodentable,/obj/item/weapon/reagent_containers/food/drinks/glass2/pint,/obj/machinery/atmospherics/unary/vent_pump/on{dir = 8},/turf/simulated/floor/wood,/area/crew_quarters/bar) -"bxh" = (/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 4},/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (WEST)"; icon_state = "borderfloor"; dir = 8},/obj/effect/floor_decal/corner/mauve/border{tag = "icon-bordercolor (WEST)"; icon_state = "bordercolor"; dir = 8},/turf/simulated/floor/tiled,/area/rnd/research) -"bxi" = (/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 1},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 8},/obj/structure/disposalpipe/segment{dir = 4; icon_state = "pipe-c"},/turf/simulated/floor/tiled,/area/rnd/research) -"bxj" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled,/area/rnd/research) -"bxk" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/manifold/hidden/supply,/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,/obj/structure/disposalpipe/sortjunction{name = "Research"; sortType = "Research"},/turf/simulated/floor/tiled,/area/rnd/research) -"bxl" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled,/area/rnd/research) -"bxm" = (/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 1},/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled,/area/rnd/research) -"bxn" = (/obj/machinery/atmospherics/unary/vent_pump/on{dir = 8},/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (EAST)"; icon_state = "borderfloor"; dir = 4},/obj/effect/floor_decal/corner/mauve/border{tag = "icon-bordercolor (EAST)"; icon_state = "bordercolor"; dir = 4},/turf/simulated/floor/tiled,/area/rnd/research) -"bxo" = (/obj/structure/table/glass,/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (WEST)"; icon_state = "borderfloor"; dir = 8},/obj/effect/floor_decal/corner/mauve/border{tag = "icon-bordercolor (WEST)"; icon_state = "bordercolor"; dir = 8},/obj/effect/floor_decal/borderfloor/corner2{tag = "icon-borderfloorcorner2 (SOUTHWEST)"; icon_state = "borderfloorcorner2"; dir = 10},/obj/effect/floor_decal/corner/mauve/bordercorner2{tag = "icon-bordercolorcorner2 (SOUTHWEST)"; icon_state = "bordercolorcorner2"; dir = 10},/turf/simulated/floor/tiled,/area/rnd/reception_desk) -"bxp" = (/obj/machinery/atmospherics/unary/vent_scrubber/on,/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/tiled,/area/rnd/reception_desk) -"bxq" = (/turf/simulated/floor/tiled,/area/rnd/reception_desk) -"bxr" = (/obj/machinery/atmospherics/unary/vent_pump/on,/turf/simulated/floor/tiled,/area/rnd/reception_desk) -"bxs" = (/obj/structure/table/glass,/obj/machinery/recharger,/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (EAST)"; icon_state = "borderfloor"; dir = 4},/obj/effect/floor_decal/corner/mauve/border{tag = "icon-bordercolor (EAST)"; icon_state = "bordercolor"; dir = 4},/obj/item/device/radio/intercom{dir = 4; name = "Station Intercom (General)"; pixel_x = 21},/turf/simulated/floor/tiled,/area/rnd/reception_desk) -"bxt" = (/obj/structure/disposalpipe/segment,/obj/machinery/camera/network/northern_star{tag = "icon-camera (NORTHWEST)"; icon_state = "camera"; dir = 9},/turf/simulated/floor/tiled,/area/hallway/lower/third_south) -"bxu" = (/turf/simulated/wall,/area/maintenance/engineering/pumpstation) -"bxv" = (/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/plating,/area/maintenance/lower/atrium) -"bxw" = (/obj/machinery/firealarm{dir = 2; layer = 3.3; pixel_x = 0; pixel_y = 26},/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/plating,/area/maintenance/lower/atrium) -"bxx" = (/obj/machinery/alarm{frequency = 1441; pixel_y = 22},/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/plating,/area/maintenance/lower/atrium) -"bxy" = (/obj/machinery/power/apc{dir = 4; name = "east bump"; pixel_x = 24},/obj/structure/cable,/turf/simulated/floor/plating,/area/maintenance/lower/atrium) -"bxz" = (/obj/machinery/light{icon_state = "tube1"; dir = 8},/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (WEST)"; icon_state = "borderfloor"; dir = 8},/obj/effect/floor_decal/corner/lime/border{tag = "icon-bordercolor (WEST)"; icon_state = "bordercolor"; dir = 8},/turf/simulated/floor/tiled,/area/hydroponics) -"bxA" = (/obj/machinery/portable_atmospherics/hydroponics,/obj/machinery/portable_atmospherics/hydroponics,/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled,/area/hydroponics) -"bxB" = (/obj/machinery/portable_atmospherics/hydroponics,/turf/simulated/floor/tiled,/area/hydroponics) -"bxC" = (/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (EAST)"; icon_state = "borderfloor"; dir = 4},/obj/effect/floor_decal/corner/lime/border{tag = "icon-bordercolor (EAST)"; icon_state = "bordercolor"; dir = 4},/turf/simulated/floor/tiled,/area/hydroponics) -"bxD" = (/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (WEST)"; icon_state = "borderfloor"; dir = 8},/obj/effect/floor_decal/corner/lime/border{tag = "icon-bordercolor (WEST)"; icon_state = "bordercolor"; dir = 8},/obj/effect/floor_decal/borderfloor/corner2{tag = "icon-borderfloorcorner2 (WEST)"; icon_state = "borderfloorcorner2"; dir = 8},/obj/effect/floor_decal/corner/lime/bordercorner2{tag = "icon-bordercolorcorner2 (WEST)"; icon_state = "bordercolorcorner2"; dir = 8},/turf/simulated/floor/tiled,/area/hallway/lower/third_south) -"bxE" = (/obj/machinery/vending/snack,/turf/simulated/floor/wood,/area/crew_quarters/bar) -"bxF" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 8},/obj/structure/disposalpipe/segment,/turf/simulated/floor/wood,/area/crew_quarters/bar) -"bxG" = (/obj/item/weapon/tank/oxygen,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/turf/simulated/floor/wood,/area/crew_quarters/bar) -"bxH" = (/obj/structure/table/bench/wooden,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/turf/simulated/floor/wood,/area/crew_quarters/bar) -"bxI" = (/obj/structure/table/woodentable,/obj/machinery/computer/security/telescreen/entertainment{icon_state = "frame"; pixel_x = 32; pixel_y = 0},/turf/simulated/floor/wood,/area/crew_quarters/bar) -"bxJ" = (/obj/machinery/alarm{dir = 4; icon_state = "alarm0"; pixel_x = -22; pixel_y = 0},/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (WEST)"; icon_state = "borderfloor"; dir = 8},/obj/effect/floor_decal/corner/mauve/border{tag = "icon-bordercolor (WEST)"; icon_state = "bordercolor"; dir = 8},/turf/simulated/floor/tiled,/area/rnd/research) -"bxK" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled,/area/rnd/research) -"bxL" = (/obj/structure/railing{dir = 8},/obj/structure/railing{dir = 1},/turf/simulated/open,/area/rnd/research) -"bxM" = (/obj/structure/railing{dir = 1},/turf/simulated/open,/area/rnd/research) -"bxN" = (/obj/structure/railing{dir = 4},/obj/structure/railing{dir = 1},/turf/simulated/open,/area/rnd/research) -"bxO" = (/obj/structure/cable/green{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled,/area/rnd/research) -"bxP" = (/obj/structure/cable/green{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/structure/cable/green{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/structure/disposalpipe/segment{dir = 1; icon_state = "pipe-c"},/turf/simulated/floor/tiled,/area/rnd/research) -"bxQ" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 8},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 8},/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled,/area/rnd/research) -"bxR" = (/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/effect/floor_decal/borderfloor{tag = "icon-borderfloor (EAST)"; icon_state = "borderfloor"; dir = 4},/obj/effect/floor_decal/corner/mauve/border{tag = "icon-bordercolor (EAST)"; icon_state = "bordercolor"; dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled,/area/rnd/research) -"bxS" = (/obj/machinery/door/firedoor/glass,/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/structure/disposalpipe/segment{dir = 4},/obj/machinery/door/airlock/glass_research{name = "Front Desk"},/turf/simulated/floor/tiled,/area/rnd/research) -"bxT" = (/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/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled,/area/rnd/reception_desk) -"bxU" = (/obj/structure/cable/green{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 9},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled,/area/rnd/reception_desk) -"bxV" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled,/area/rnd/reception_desk) -"bxW" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 9},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled,/area/rnd/reception_desk) -"bxX" = (/obj/structure/disposalpipe/segment{dir = 2; icon_state = "pipe-c"},/turf/simulated/floor/tiled,/area/rnd/reception_desk) -"bxY" = (/obj/structure/table/glass,/obj/machinery/cell_charger,/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (EAST)"; icon_state = "borderfloor"; dir = 4},/obj/effect/floor_decal/corner/mauve/border{tag = "icon-bordercolor (EAST)"; icon_state = "bordercolor"; dir = 4},/obj/machinery/requests_console{department = "Science"; departmentType = 2; name = "Science Requests Console"; pixel_x = 30; pixel_y = 0},/turf/simulated/floor/tiled,/area/rnd/reception_desk) -"bxZ" = (/obj/machinery/newscaster{pixel_x = 25},/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled,/area/hallway/lower/third_south) -"bya" = (/obj/machinery/portable_atmospherics/powered/scrubber,/obj/machinery/atmospherics/portables_connector,/turf/simulated/floor/plating,/area/maintenance/engineering/pumpstation) -"byb" = (/obj/machinery/portable_atmospherics/powered/scrubber,/obj/machinery/atmospherics/portables_connector,/obj/machinery/camera/network/engineering,/turf/simulated/floor/plating,/area/maintenance/engineering/pumpstation) -"byc" = (/obj/machinery/light/small{dir = 1},/obj/machinery/portable_atmospherics/powered/scrubber,/obj/machinery/atmospherics/portables_connector,/turf/simulated/floor/plating,/area/maintenance/engineering/pumpstation) -"byd" = (/obj/machinery/portable_atmospherics/powered/scrubber,/obj/machinery/atmospherics/portables_connector,/obj/item/device/radio/intercom{dir = 1; name = "Station Intercom (General)"; pixel_y = 21},/turf/simulated/floor/plating,/area/maintenance/engineering/pumpstation) -"bye" = (/obj/structure/cable{tag = "icon-1-4"; icon_state = "1-4"},/obj/structure/disposalpipe/segment{dir = 1; icon_state = "pipe-c"},/turf/simulated/floor/plating,/area/maintenance/lower/atrium) -"byf" = (/obj/machinery/alarm{dir = 8; icon_state = "alarm0"; pixel_x = 24},/obj/structure/cable{tag = "icon-2-8"; icon_state = "2-8"},/obj/effect/decal/cleanable/dirt,/obj/structure/disposalpipe/segment{dir = 2; icon_state = "pipe-c"},/turf/simulated/floor/plating,/area/maintenance/lower/atrium) -"byg" = (/obj/machinery/portable_atmospherics/powered/pump/filled,/obj/machinery/light/small{dir = 8},/turf/simulated/floor/tiled/techfloor,/area/maintenance/lower/atrium) -"byh" = (/obj/effect/decal/cleanable/dirt,/mob/living/simple_animal/mouse,/turf/simulated/floor/plating,/area/maintenance/lower/atrium) -"byi" = (/obj/machinery/space_heater,/turf/simulated/floor/tiled/techfloor,/area/maintenance/lower/atrium) -"byj" = (/obj/structure/cable/green{d2 = 2; icon_state = "0-2"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/plating,/area/maintenance/lower/atrium) -"byk" = (/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (WEST)"; icon_state = "borderfloor"; dir = 8},/obj/effect/floor_decal/corner/lime/border{tag = "icon-bordercolor (WEST)"; icon_state = "bordercolor"; dir = 8},/obj/machinery/camera/network/civilian{tag = "icon-camera (EAST)"; icon_state = "camera"; dir = 4},/turf/simulated/floor/tiled,/area/hydroponics) -"byl" = (/obj/machinery/portable_atmospherics/hydroponics,/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled,/area/hydroponics) -"bym" = (/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (EAST)"; icon_state = "borderfloor"; dir = 4},/obj/effect/floor_decal/corner/lime/border{tag = "icon-bordercolor (EAST)"; icon_state = "bordercolor"; dir = 4},/obj/effect/floor_decal/borderfloor/corner2{tag = "icon-borderfloorcorner2 (NORTHEAST)"; icon_state = "borderfloorcorner2"; dir = 5},/obj/effect/floor_decal/corner/lime/bordercorner2{tag = "icon-bordercolorcorner2 (NORTHEAST)"; icon_state = "bordercolorcorner2"; dir = 5},/turf/simulated/floor/tiled,/area/hydroponics) -"byn" = (/obj/structure/sign/botany,/turf/simulated/wall,/area/hydroponics) -"byo" = (/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (WEST)"; icon_state = "borderfloor"; dir = 8},/obj/effect/floor_decal/corner/lime/border{tag = "icon-bordercolor (WEST)"; icon_state = "bordercolor"; dir = 8},/obj/effect/floor_decal/borderfloor/corner2{tag = "icon-borderfloorcorner2 (SOUTHWEST)"; icon_state = "borderfloorcorner2"; dir = 10},/obj/effect/floor_decal/corner/lime/bordercorner2{tag = "icon-bordercolorcorner2 (SOUTHWEST)"; icon_state = "bordercolorcorner2"; dir = 10},/obj/machinery/camera/network/civilian{tag = "icon-camera (EAST)"; icon_state = "camera"; dir = 4},/turf/simulated/floor/tiled,/area/hallway/lower/third_south) -"byp" = (/obj/structure/sign/double/barsign{dir = 8},/turf/simulated/wall,/area/crew_quarters/bar) -"byq" = (/obj/machinery/vending/cola,/turf/simulated/floor/wood,/area/crew_quarters/bar) -"byr" = (/obj/item/clothing/mask/gas,/turf/simulated/floor/wood,/area/crew_quarters/bar) -"bys" = (/obj/structure/table/bench/wooden,/obj/machinery/light{dir = 4; icon_state = "tube1"},/obj/structure/extinguisher_cabinet{dir = 8; icon_state = "extinguisher_closed"; pixel_x = 30; tag = "icon-extinguisher_closed (WEST)"},/turf/simulated/floor/wood,/area/crew_quarters/bar) -"byt" = (/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (WEST)"; icon_state = "borderfloor"; dir = 8},/obj/effect/floor_decal/corner/mauve/border{tag = "icon-bordercolor (WEST)"; icon_state = "bordercolor"; dir = 8},/obj/structure/extinguisher_cabinet{dir = 4; icon_state = "extinguisher_closed"; pixel_x = -30; tag = "icon-extinguisher_closed (EAST)"},/turf/simulated/floor/tiled,/area/rnd/research) -"byu" = (/obj/structure/railing{dir = 8},/turf/simulated/open,/area/rnd/research) -"byv" = (/turf/simulated/open,/area/rnd/research) -"byw" = (/obj/structure/railing{dir = 4},/turf/simulated/open,/area/rnd/research) -"byx" = (/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled,/area/rnd/research) -"byy" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/tiled,/area/rnd/research) -"byz" = (/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (EAST)"; icon_state = "borderfloor"; dir = 4},/obj/effect/floor_decal/corner/mauve/border{tag = "icon-bordercolor (EAST)"; icon_state = "bordercolor"; dir = 4},/turf/simulated/floor/tiled,/area/rnd/research) -"byA" = (/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (SOUTHWEST)"; icon_state = "borderfloor"; dir = 10},/obj/effect/floor_decal/corner/mauve/border{tag = "icon-bordercolor (SOUTHWEST)"; icon_state = "bordercolor"; dir = 10},/obj/effect/floor_decal/borderfloor/corner2{tag = "icon-borderfloorcorner2 (WEST)"; icon_state = "borderfloorcorner2"; dir = 8},/obj/effect/floor_decal/corner/mauve/bordercorner2{tag = "icon-bordercolorcorner2 (WEST)"; icon_state = "bordercolorcorner2"; dir = 8},/obj/structure/flora/pottedplant{icon_state = "plant-22"},/turf/simulated/floor/tiled,/area/rnd/reception_desk) -"byB" = (/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/corner/mauve/border,/turf/simulated/floor/tiled,/area/rnd/reception_desk) -"byC" = (/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/corner/mauve/border,/obj/effect/floor_decal/borderfloor/corner2{tag = "icon-borderfloorcorner2 (NORTHWEST)"; icon_state = "borderfloorcorner2"; dir = 9},/obj/effect/floor_decal/corner/mauve/bordercorner2{tag = "icon-bordercolorcorner2 (NORTHWEST)"; icon_state = "bordercolorcorner2"; dir = 9},/obj/machinery/light,/turf/simulated/floor/tiled,/area/rnd/reception_desk) -"byD" = (/obj/structure/bed/chair/office/dark,/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled,/area/rnd/reception_desk) -"byE" = (/obj/structure/table/glass,/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (SOUTHEAST)"; icon_state = "borderfloor"; dir = 6},/obj/effect/floor_decal/corner/mauve/border{tag = "icon-bordercolor (SOUTHEAST)"; icon_state = "bordercolor"; dir = 6},/obj/effect/floor_decal/borderfloor/corner2,/obj/effect/floor_decal/corner/mauve/bordercorner2,/turf/simulated/floor/tiled,/area/rnd/reception_desk) -"byF" = (/obj/structure/sign/directions/evac{tag = "icon-direction_evac (NORTH)"; icon_state = "direction_evac"; dir = 1},/turf/simulated/wall,/area/rnd/reception_desk) -"byG" = (/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (WEST)"; icon_state = "borderfloor"; dir = 8},/obj/effect/floor_decal/corner/mauve/border{tag = "icon-bordercolor (WEST)"; icon_state = "bordercolor"; dir = 8},/obj/effect/floor_decal/borderfloor/corner2{tag = "icon-borderfloorcorner2 (WEST)"; icon_state = "borderfloorcorner2"; dir = 8},/obj/effect/floor_decal/corner/mauve/bordercorner2{tag = "icon-bordercolorcorner2 (WEST)"; icon_state = "bordercolorcorner2"; dir = 8},/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled,/area/hallway/lower/third_south) -"byH" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 8},/turf/simulated/floor/tiled,/area/hallway/lower/third_south) -"byI" = (/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 8},/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled,/area/hallway/lower/third_south) -"byJ" = (/obj/machinery/atmospherics/pipe/simple/visible/red{tag = "icon-intact (NORTHEAST)"; icon_state = "intact"; dir = 5},/obj/machinery/firealarm{dir = 8; pixel_x = -24},/turf/simulated/floor/plating,/area/maintenance/engineering/pumpstation) -"byK" = (/obj/machinery/atmospherics/pipe/manifold/visible/red,/turf/simulated/floor/plating,/area/maintenance/engineering/pumpstation) -"byL" = (/obj/machinery/atmospherics/pipe/manifold/visible/red{tag = "icon-map (EAST)"; icon_state = "map"; dir = 4},/obj/machinery/light_switch{pixel_x = 25},/turf/simulated/floor/plating,/area/maintenance/engineering/pumpstation) -"byM" = (/obj/structure/closet/crate,/obj/random/maintenance/clean,/obj/random/maintenance/clean,/obj/random/junk,/obj/random/toolbox,/obj/random/maintenance/engineering,/turf/simulated/floor/plating,/area/maintenance/lower/atrium) -"byN" = (/obj/structure/cable{tag = "icon-1-2"; icon_state = "1-2"},/obj/structure/disposalpipe/segment,/turf/simulated/floor/plating,/area/maintenance/lower/atrium) -"byO" = (/obj/machinery/floodlight,/turf/simulated/floor/tiled/techfloor,/area/maintenance/lower/atrium) -"byP" = (/obj/structure/table/rack{dir = 1},/obj/item/clothing/suit/fire/firefighter,/obj/item/weapon/tank/oxygen,/obj/item/clothing/mask/gas,/obj/item/weapon/extinguisher,/obj/item/clothing/head/hardhat/red,/obj/item/clothing/glasses/meson,/obj/random/maintenance/clean,/turf/simulated/floor/tiled/techfloor,/area/maintenance/lower/atrium) -"byQ" = (/obj/structure/table/standard,/obj/item/device/t_scanner,/obj/item/weapon/storage/box/lights/mixed,/obj/item/weapon/storage/box/lights/mixed,/obj/item/weapon/storage/briefcase/inflatable,/obj/random/maintenance/clean,/turf/simulated/floor/tiled/techfloor,/area/maintenance/lower/atrium) -"byR" = (/obj/machinery/light/small{dir = 4; pixel_y = 0},/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/plating,/area/maintenance/lower/atrium) -"byS" = (/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (WEST)"; icon_state = "borderfloor"; dir = 8},/obj/effect/floor_decal/corner/lime/border{tag = "icon-bordercolor (WEST)"; icon_state = "bordercolor"; dir = 8},/obj/machinery/light_switch{pixel_x = -25},/turf/simulated/floor/tiled,/area/hydroponics) -"byT" = (/obj/machinery/atmospherics/unary/vent_pump/on,/turf/simulated/floor/tiled,/area/hydroponics) -"byU" = (/obj/structure/cable/green{d1 = 2; d2 = 4; icon_state = "2-4"},/turf/simulated/floor/tiled,/area/hydroponics) -"byV" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/tiled,/area/hydroponics) -"byW" = (/obj/machinery/door/firedoor/glass,/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/door/airlock/glass{name = "Hydroponics"; req_access = newlist(); req_one_access = list(35,28)},/turf/simulated/floor/tiled/monotile,/area/hydroponics) -"byX" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/tiled,/area/hallway/lower/third_south) -"byY" = (/obj/structure/cable/green{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/structure/cable/green{d1 = 2; d2 = 8; icon_state = "2-8"},/turf/simulated/floor/tiled,/area/hallway/lower/third_south) -"byZ" = (/obj/machinery/light{icon_state = "tube1"; dir = 8},/obj/machinery/firealarm{pixel_x = -30},/turf/simulated/floor/wood,/area/crew_quarters/bar) -"bza" = (/obj/item/clothing/suit/storage/hooded/wintercoat/captain,/turf/simulated/floor/wood,/area/crew_quarters/bar) -"bzb" = (/obj/item/clothing/suit/storage/hooded/wintercoat/science,/turf/simulated/floor/wood,/area/crew_quarters/bar) -"bzc" = (/obj/item/clothing/suit/storage/hooded/wintercoat/medical,/turf/simulated/floor/wood,/area/crew_quarters/bar) -"bzd" = (/obj/effect/landmark{name = "Observer-Start"},/turf/simulated/floor/wood,/area/crew_quarters/bar) -"bze" = (/obj/structure/flora/pottedplant{icon_state = "plant-22"},/obj/machinery/camera/network/civilian{tag = "icon-camera (NORTHWEST)"; icon_state = "camera"; dir = 9},/turf/simulated/floor/wood,/area/crew_quarters/bar) -"bzf" = (/obj/machinery/computer/guestpass{dir = 4; pixel_x = -28; pixel_y = 0},/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (WEST)"; icon_state = "borderfloor"; dir = 8},/obj/effect/floor_decal/corner/mauve/border{tag = "icon-bordercolor (WEST)"; icon_state = "bordercolor"; dir = 8},/turf/simulated/floor/tiled,/area/rnd/research) -"bzg" = (/obj/item/device/radio/intercom{dir = 4; name = "Station Intercom (General)"; pixel_x = 21},/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (EAST)"; icon_state = "borderfloor"; dir = 4},/obj/effect/floor_decal/corner/mauve/border{tag = "icon-bordercolor (EAST)"; icon_state = "bordercolor"; dir = 4},/turf/simulated/floor/tiled,/area/rnd/research) -"bzh" = (/obj/structure/grille,/obj/structure/window/reinforced{dir = 5; icon_state = "fwindow"},/obj/machinery/door/firedoor,/turf/simulated/floor/plating,/area/rnd/reception_desk) -"bzi" = (/obj/structure/table/reinforced,/obj/machinery/door/window/brigdoor/southleft,/obj/structure/disposalpipe/segment,/obj/machinery/door/firedoor/glass,/turf/simulated/floor/tiled/monotile,/area/rnd/reception_desk) -"bzj" = (/obj/structure/sign/science,/turf/simulated/wall,/area/rnd/reception_desk) -"bzk" = (/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (WEST)"; icon_state = "borderfloor"; dir = 8},/obj/effect/floor_decal/corner/mauve/border{tag = "icon-bordercolor (WEST)"; icon_state = "bordercolor"; dir = 8},/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled,/area/hallway/lower/third_south) -"bzl" = (/obj/machinery/alarm{dir = 8; icon_state = "alarm0"; pixel_x = 24},/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled,/area/hallway/lower/third_south) -"bzm" = (/obj/structure/table/rack,/obj/random/maintenance/clean,/obj/random/maintenance/engineering,/obj/random/maintenance/engineering,/turf/simulated/floor/plating,/area/maintenance/engineering/pumpstation) -"bzn" = (/obj/machinery/atmospherics/pipe/simple/visible/red{tag = "icon-intact (SOUTHEAST)"; icon_state = "intact"; dir = 6},/turf/simulated/floor/plating,/area/maintenance/engineering/pumpstation) -"bzo" = (/obj/machinery/atmospherics/pipe/simple/visible/red{tag = "icon-intact (EAST)"; icon_state = "intact"; dir = 4},/turf/simulated/floor/plating,/area/maintenance/engineering/pumpstation) -"bzp" = (/obj/machinery/atmospherics/binary/pump{tag = "icon-map_off (WEST)"; icon_state = "map_off"; dir = 8},/turf/simulated/floor/plating,/area/maintenance/engineering/pumpstation) -"bzq" = (/obj/machinery/atmospherics/pipe/simple/visible/red{tag = "icon-intact (NORTHWEST)"; icon_state = "intact"; dir = 9},/turf/simulated/floor/plating,/area/maintenance/engineering/pumpstation) -"bzr" = (/obj/machinery/door/airlock/maintenance/engi,/obj/machinery/door/firedoor/glass,/turf/simulated/floor/plating,/area/maintenance/engineering/pumpstation) -"bzs" = (/turf/simulated/wall,/area/maintenance/substation/bar) -"bzt" = (/obj/structure/table/rack,/obj/item/clothing/mask/gas,/obj/item/clothing/mask/gas,/obj/item/clothing/mask/gas,/obj/random/maintenance/research,/obj/random/maintenance/research,/turf/simulated/floor/plating,/area/maintenance/lower/atrium) -"bzu" = (/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/simple/hidden/supply{dir = 5},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 5},/turf/simulated/floor/plating,/area/maintenance/lower/atrium) -"bzv" = (/obj/machinery/door/airlock/maintenance/common{name = "Hydroponics Maintenance"; req_access = list(35)},/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/plating,/area/hydroponics) -"bzw" = (/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (WEST)"; icon_state = "borderfloor"; dir = 8},/obj/effect/floor_decal/corner/lime/border{tag = "icon-bordercolor (WEST)"; icon_state = "bordercolor"; dir = 8},/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 = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/turf/simulated/floor/tiled,/area/hydroponics) -"bzx" = (/obj/machinery/portable_atmospherics/hydroponics,/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled,/area/hydroponics) -"bzy" = (/obj/machinery/portable_atmospherics/hydroponics,/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,/area/hydroponics) -"bzz" = (/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/scrubbers{dir = 10},/turf/simulated/floor/tiled,/area/hydroponics) -"bzA" = (/obj/structure/cable/green{d1 = 1; d2 = 8; icon_state = "1-8"},/turf/simulated/floor/tiled,/area/hydroponics) -"bzB" = (/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (EAST)"; icon_state = "borderfloor"; dir = 4},/obj/effect/floor_decal/corner/lime/border{tag = "icon-bordercolor (EAST)"; icon_state = "bordercolor"; dir = 4},/obj/effect/floor_decal/borderfloor/corner2{tag = "icon-borderfloorcorner2 (NORTHEAST)"; icon_state = "borderfloorcorner2"; dir = 5},/obj/effect/floor_decal/borderfloor/corner2{tag = "icon-borderfloorcorner2 (SOUTHEAST)"; icon_state = "borderfloorcorner2"; dir = 6},/obj/effect/floor_decal/corner/lime/bordercorner2{tag = "icon-bordercolorcorner2 (NORTHEAST)"; icon_state = "bordercolorcorner2"; dir = 5},/obj/effect/floor_decal/corner/lime/bordercorner2{tag = "icon-bordercolorcorner2 (SOUTHEAST)"; icon_state = "bordercolorcorner2"; dir = 6},/turf/simulated/floor/tiled,/area/hydroponics) -"bzC" = (/obj/machinery/light{icon_state = "tube1"; dir = 8},/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (WEST)"; icon_state = "borderfloor"; dir = 8},/obj/effect/floor_decal/corner/lime/border{tag = "icon-bordercolor (WEST)"; icon_state = "bordercolor"; dir = 8},/obj/effect/floor_decal/borderfloor/corner2{tag = "icon-borderfloorcorner2 (SOUTHWEST)"; icon_state = "borderfloorcorner2"; dir = 10},/obj/effect/floor_decal/borderfloor/corner2{tag = "icon-borderfloorcorner2 (WEST)"; icon_state = "borderfloorcorner2"; dir = 8},/obj/effect/floor_decal/corner/lime/bordercorner2{tag = "icon-bordercolorcorner2 (WEST)"; icon_state = "bordercolorcorner2"; dir = 8},/obj/effect/floor_decal/corner/lime/bordercorner2{tag = "icon-bordercolorcorner2 (SOUTHWEST)"; icon_state = "bordercolorcorner2"; dir = 10},/turf/simulated/floor/tiled,/area/hallway/lower/third_south) -"bzD" = (/obj/structure/bed/chair/wood,/turf/simulated/floor/wood,/area/crew_quarters/bar) -"bzE" = (/obj/structure/bed/chair/wood,/obj/structure/bed/chair/wood,/turf/simulated/floor/wood,/area/crew_quarters/bar) -"bzF" = (/obj/item/clothing/shoes/boots/winter,/turf/simulated/floor/wood,/area/crew_quarters/bar) -"bzG" = (/obj/structure/table/woodentable,/obj/item/device/flashlight/color,/turf/simulated/floor/wood,/area/crew_quarters/bar) -"bzH" = (/obj/machinery/newscaster{pixel_x = 0; pixel_y = 30},/turf/simulated/floor/wood,/area/crew_quarters/bar) -"bzI" = (/obj/machinery/camera/network/northern_star{tag = "icon-camera (NORTHWEST)"; icon_state = "camera"; dir = 9},/turf/simulated/floor/outdoors/grass/sif/virgo3b,/area/tether/surfacebase/outside/outside3) -"bzJ" = (/obj/machinery/light{icon_state = "tube1"; dir = 8},/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (WEST)"; icon_state = "borderfloor"; dir = 8},/obj/effect/floor_decal/corner/mauve/border{tag = "icon-bordercolor (WEST)"; icon_state = "bordercolor"; dir = 8},/turf/simulated/floor/tiled,/area/rnd/research) -"bzK" = (/obj/structure/railing,/obj/structure/railing{dir = 8},/turf/simulated/open,/area/rnd/research) -"bzL" = (/obj/structure/railing,/turf/simulated/open,/area/rnd/research) -"bzM" = (/obj/structure/railing{dir = 4},/obj/structure/railing,/turf/simulated/open,/area/rnd/research) -"bzN" = (/obj/structure/disposalpipe/segment{dir = 4; icon_state = "pipe-c"},/turf/simulated/floor/tiled,/area/rnd/research) -"bzO" = (/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled,/area/rnd/research) -"bzP" = (/obj/structure/disposalpipe/sortjunction{name = "RD Office"; sortType = "RD Office"},/turf/simulated/floor/tiled,/area/rnd/research) -"bzQ" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/disposalpipe/segment{dir = 1; icon_state = "pipe-c"},/turf/simulated/floor/tiled,/area/rnd/research) -"bzR" = (/obj/machinery/light_switch{pixel_x = 25},/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (EAST)"; icon_state = "borderfloor"; dir = 4},/obj/effect/floor_decal/corner/mauve/border{tag = "icon-bordercolor (EAST)"; icon_state = "bordercolor"; dir = 4},/obj/effect/floor_decal/borderfloor/corner2{tag = "icon-borderfloorcorner2 (NORTHEAST)"; icon_state = "borderfloorcorner2"; dir = 5},/obj/effect/floor_decal/corner/mauve/bordercorner2{tag = "icon-bordercolorcorner2 (NORTHEAST)"; icon_state = "bordercolorcorner2"; dir = 5},/obj/structure/disposalpipe/segment{dir = 2; icon_state = "pipe-c"},/turf/simulated/floor/tiled,/area/rnd/research) -"bzS" = (/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (NORTHWEST)"; icon_state = "borderfloor"; dir = 9},/obj/effect/floor_decal/corner/mauve/border{tag = "icon-bordercolor (NORTHWEST)"; icon_state = "bordercolor"; dir = 9},/obj/effect/floor_decal/borderfloor/corner2{tag = "icon-borderfloorcorner2 (SOUTHWEST)"; icon_state = "borderfloorcorner2"; dir = 10},/obj/effect/floor_decal/corner/mauve/bordercorner2{tag = "icon-bordercolorcorner2 (SOUTHWEST)"; icon_state = "bordercolorcorner2"; dir = 10},/obj/structure/table/reinforced,/obj/machinery/atmospherics/unary/vent_pump/on,/obj/structure/cable/green{d2 = 2; icon_state = "0-2"},/obj/machinery/power/apc{cell_type = /obj/item/weapon/cell/super; dir = 8; name = "west bump"; pixel_x = -28},/turf/simulated/floor/tiled,/area/rnd/research_foyer) -"bzT" = (/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (NORTH)"; icon_state = "borderfloor"; dir = 1},/obj/effect/floor_decal/corner/mauve/border{tag = "icon-bordercolor (NORTH)"; icon_state = "bordercolor"; dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals5,/obj/effect/floor_decal/steeldecal/steel_decals3{tag = "icon-steel_decals3 (NORTHWEST)"; icon_state = "steel_decals3"; dir = 9},/obj/effect/floor_decal/steeldecal/steel_decals3{tag = "icon-steel_decals3 (WEST)"; icon_state = "steel_decals3"; dir = 8},/obj/structure/table/reinforced,/obj/machinery/camera/network/research,/turf/simulated/floor/tiled,/area/rnd/research_foyer) -"bzU" = (/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (NORTHEAST)"; icon_state = "borderfloor"; dir = 5},/obj/effect/floor_decal/corner/mauve/border{tag = "icon-bordercolor (NORTHEAST)"; icon_state = "bordercolor"; dir = 5},/obj/effect/floor_decal/borderfloor/corner2{tag = "icon-borderfloorcorner2 (NORTHEAST)"; icon_state = "borderfloorcorner2"; dir = 5},/obj/effect/floor_decal/corner/mauve/bordercorner2{tag = "icon-bordercolorcorner2 (NORTHEAST)"; icon_state = "bordercolorcorner2"; dir = 5},/obj/machinery/atmospherics/unary/vent_scrubber/on,/obj/machinery/light_switch{pixel_x = 25},/obj/structure/closet/firecloset,/turf/simulated/floor/tiled,/area/rnd/research_foyer) -"bzV" = (/turf/simulated/wall,/area/rnd/research_foyer) -"bzW" = (/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (NORTHWEST)"; icon_state = "borderfloor"; dir = 9},/obj/effect/floor_decal/corner/mauve/border{tag = "icon-bordercolor (NORTHWEST)"; icon_state = "bordercolor"; dir = 9},/obj/effect/floor_decal/borderfloor/corner2{tag = "icon-borderfloorcorner2 (SOUTHWEST)"; icon_state = "borderfloorcorner2"; dir = 10},/obj/effect/floor_decal/corner/mauve/bordercorner2{tag = "icon-bordercolorcorner2 (SOUTHWEST)"; icon_state = "bordercolorcorner2"; dir = 10},/obj/structure/disposalpipe/segment{dir = 1; icon_state = "pipe-c"},/turf/simulated/floor/tiled,/area/rnd/research_foyer) -"bzX" = (/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (NORTH)"; icon_state = "borderfloor"; dir = 1},/obj/effect/floor_decal/corner/mauve/border{tag = "icon-bordercolor (NORTH)"; icon_state = "bordercolor"; dir = 1},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled,/area/rnd/research_foyer) -"bzY" = (/obj/effect/floor_decal/borderfloor/corner{tag = "icon-borderfloorcorner (NORTH)"; icon_state = "borderfloorcorner"; dir = 1},/obj/effect/floor_decal/corner/mauve/bordercorner{tag = "icon-bordercolorcorner (NORTH)"; icon_state = "bordercolorcorner"; dir = 1},/obj/structure/disposalpipe/segment{dir = 8; icon_state = "pipe-c"},/turf/simulated/floor/tiled,/area/hallway/lower/third_south) -"bzZ" = (/obj/structure/extinguisher_cabinet{dir = 8; icon_state = "extinguisher_closed"; pixel_x = 30; tag = "icon-extinguisher_closed (WEST)"},/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled,/area/hallway/lower/third_south) -"bAa" = (/obj/machinery/atmospherics/pipe/tank{tag = "icon-air_map (EAST)"; icon_state = "air_map"; dir = 4},/turf/simulated/floor/plating,/area/maintenance/engineering/pumpstation) -"bAb" = (/obj/machinery/atmospherics/tvalve/digital/bypass{tag = "icon-map_tvalve1 (WEST)"; icon_state = "map_tvalve1"; dir = 8},/turf/simulated/floor/plating,/area/maintenance/engineering/pumpstation) -"bAc" = (/obj/machinery/atmospherics/pipe/simple/visible/universal{tag = "icon-map_universal (EAST)"; icon_state = "map_universal"; dir = 4},/turf/simulated/floor/plating,/area/maintenance/engineering/pumpstation) -"bAd" = (/obj/machinery/atmospherics/pipe/simple/visible/scrubbers{tag = "icon-intact-scrubbers (SOUTHWEST)"; icon_state = "intact-scrubbers"; dir = 10},/turf/simulated/floor/plating,/area/maintenance/engineering/pumpstation) -"bAe" = (/obj/structure/railing,/obj/machinery/computer/area_atmos/tag{dir = 8; scrub_id = "atrium"},/turf/simulated/floor/plating,/area/maintenance/engineering/pumpstation) -"bAf" = (/obj/machinery/light/small{dir = 8; pixel_x = 0},/turf/simulated/floor/plating,/area/maintenance/lower/atrium) -"bAg" = (/obj/structure/cable{tag = "icon-1-4"; icon_state = "1-4"},/obj/structure/disposalpipe/segment,/turf/simulated/floor/plating,/area/maintenance/lower/atrium) -"bAh" = (/obj/machinery/door/firedoor/glass,/obj/structure/cable{tag = "icon-4-8"; icon_state = "4-8"},/obj/machinery/door/airlock/maintenance/engi,/turf/simulated/floor/plating,/area/maintenance/substation/bar) -"bAi" = (/obj/structure/cable{tag = "icon-2-8"; icon_state = "2-8"},/obj/machinery/camera/network/engineering,/obj/structure/cable{tag = "icon-4-8"; icon_state = "4-8"},/turf/simulated/floor/plating,/area/maintenance/substation/bar) -"bAj" = (/obj/machinery/light/small{dir = 1},/obj/structure/cable{tag = "icon-4-8"; icon_state = "4-8"},/turf/simulated/floor/plating,/area/maintenance/substation/bar) -"bAk" = (/obj/machinery/alarm{frequency = 1441; pixel_y = 22},/obj/effect/decal/cleanable/blood/splatter,/obj/structure/cable{tag = "icon-2-8"; icon_state = "2-8"},/turf/simulated/floor/plating,/area/maintenance/substation/bar) -"bAl" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/plating,/area/maintenance/lower/atrium) -"bAm" = (/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (WEST)"; icon_state = "borderfloor"; dir = 8},/obj/effect/floor_decal/corner/lime/border{tag = "icon-bordercolor (WEST)"; icon_state = "bordercolor"; dir = 8},/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/computer/guestpass{dir = 4; pixel_x = -28; pixel_y = 0},/turf/simulated/floor/tiled,/area/hydroponics) -"bAn" = (/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 1},/turf/simulated/floor/tiled,/area/hydroponics) -"bAo" = (/obj/machinery/door/firedoor/glass,/obj/machinery/door/airlock/glass{name = "Hydroponics"; req_access = newlist(); req_one_access = list(35,28)},/turf/simulated/floor/tiled/monotile,/area/hydroponics) -"bAp" = (/obj/structure/table/gamblingtable,/obj/machinery/camera/network/civilian{tag = "icon-camera (EAST)"; icon_state = "camera"; dir = 4},/turf/simulated/floor/wood,/area/crew_quarters/bar) -"bAq" = (/obj/structure/table/gamblingtable,/turf/simulated/floor/wood,/area/crew_quarters/bar) -"bAr" = (/obj/structure/bed/chair/wood{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 8},/obj/structure/disposalpipe/segment,/turf/simulated/floor/wood,/area/crew_quarters/bar) -"bAs" = (/obj/structure/table/woodentable,/obj/item/device/flashlight/color,/obj/machinery/atmospherics/unary/vent_pump/on{dir = 8},/turf/simulated/floor/wood,/area/crew_quarters/bar) -"bAt" = (/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (WEST)"; icon_state = "borderfloor"; dir = 8},/obj/effect/floor_decal/corner/mauve/border{tag = "icon-bordercolor (WEST)"; icon_state = "bordercolor"; dir = 8},/obj/machinery/camera/network/research{c_tag = "SCI - Research Hallway Center"; dir = 4},/turf/simulated/floor/tiled,/area/rnd/research) -"bAu" = (/obj/effect/floor_decal/steeldecal/steel_decals9{tag = "icon-steel_decals9 (NORTH)"; icon_state = "steel_decals9"; dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals9{tag = "icon-steel_decals9 (EAST)"; icon_state = "steel_decals9"; dir = 4},/turf/simulated/floor/tiled,/area/rnd/research) -"bAv" = (/obj/structure/cable/green{d1 = 2; d2 = 4; icon_state = "2-4"},/turf/simulated/floor/tiled,/area/rnd/research) -"bAw" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled,/area/rnd/research) -"bAx" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 1; icon_state = "pipe-c"},/turf/simulated/floor/tiled,/area/rnd/research) -"bAy" = (/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/structure/cable/green{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/structure/disposalpipe/sortjunction{dir = 4; icon_state = "pipe-j1s"; name = "Robotics"; sortType = "Robotics"},/turf/simulated/floor/tiled,/area/rnd/research) -"bAz" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 8},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 8},/obj/structure/disposalpipe/segment{dir = 2; icon_state = "pipe-c"},/turf/simulated/floor/tiled,/area/rnd/research) -"bAA" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/disposalpipe/segment{dir = 1; icon_state = "pipe-c"},/turf/simulated/floor/tiled,/area/rnd/research) -"bAB" = (/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/structure/disposalpipe/segment{dir = 4},/obj/machinery/door/airlock/research{id_tag = "researchdoor"; name = "Research Division Access"; req_access = list(47)},/turf/simulated/floor/tiled,/area/rnd/research) -"bAC" = (/obj/effect/floor_decal/steeldecal/steel_decals7,/obj/effect/floor_decal/steeldecal/steel_decals7{tag = "icon-steel_decals7 (EAST)"; icon_state = "steel_decals7"; dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals7{tag = "icon-steel_decals7 (NORTH)"; icon_state = "steel_decals7"; dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals7{tag = "icon-steel_decals7 (WEST)"; icon_state = "steel_decals7"; dir = 8},/obj/structure/cable/green{d1 = 1; d2 = 8; icon_state = "1-8"},/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_foyer) -"bAD" = (/obj/effect/floor_decal/steeldecal/steel_decals7,/obj/effect/floor_decal/steeldecal/steel_decals7{tag = "icon-steel_decals7 (EAST)"; icon_state = "steel_decals7"; dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals7{tag = "icon-steel_decals7 (NORTH)"; icon_state = "steel_decals7"; dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals7{tag = "icon-steel_decals7 (WEST)"; icon_state = "steel_decals7"; dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled,/area/rnd/research_foyer) -"bAE" = (/obj/effect/floor_decal/steeldecal/steel_decals7,/obj/effect/floor_decal/steeldecal/steel_decals7{tag = "icon-steel_decals7 (EAST)"; icon_state = "steel_decals7"; dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals7{tag = "icon-steel_decals7 (NORTH)"; icon_state = "steel_decals7"; dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals7{tag = "icon-steel_decals7 (WEST)"; icon_state = "steel_decals7"; dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled,/area/rnd/research_foyer) -"bAF" = (/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/research{id_tag = "researchdoor"; name = "Research Division Access"; req_access = list(47)},/turf/simulated/floor/tiled,/area/rnd/research_foyer) -"bAG" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled,/area/rnd/research_foyer) -"bAH" = (/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled,/area/hallway/lower/third_south) -"bAI" = (/obj/item/device/radio/intercom{dir = 4; name = "Station Intercom (General)"; pixel_x = 21},/obj/structure/disposalpipe/segment{dir = 8; icon_state = "pipe-c"},/turf/simulated/floor/tiled,/area/hallway/lower/third_south) -"bAJ" = (/obj/machinery/atmospherics/tvalve/mirrored/digital/bypass{tag = "icon-map_tvalvem1 (WEST)"; icon_state = "map_tvalvem1"; dir = 8},/turf/simulated/floor/plating,/area/maintenance/engineering/pumpstation) -"bAK" = (/obj/machinery/atmospherics/pipe/simple/visible/scrubbers{tag = "icon-intact-scrubbers (NORTHEAST)"; icon_state = "intact-scrubbers"; dir = 5},/obj/structure/railing{dir = 4},/obj/machinery/atmospherics/pipe/simple/visible/supply{tag = "icon-intact-supply (EAST)"; icon_state = "intact-supply"; dir = 4},/turf/simulated/floor/plating,/area/maintenance/engineering/pumpstation) -"bAL" = (/obj/machinery/atmospherics/pipe/zpipe/down/scrubbers{tag = "icon-down-scrubbers (WEST)"; icon_state = "down-scrubbers"; dir = 8},/obj/machinery/atmospherics/pipe/zpipe/down/supply{tag = "icon-down-supply (WEST)"; icon_state = "down-supply"; dir = 8},/obj/structure/cable/cyan{d1 = 32; d2 = 2; icon_state = "32-2"},/obj/machinery/camera/network/engineering{c_tag = "ENG - Workshop Starboard"; dir = 8},/obj/machinery/door/firedoor/glass,/turf/simulated/open,/area/maintenance/engineering/pumpstation) -"bAM" = (/obj/effect/decal/cleanable/dirt,/obj/structure/disposalpipe/segment,/turf/simulated/floor/plating,/area/maintenance/lower/atrium) -"bAN" = (/obj/structure/sign/warning/high_voltage,/turf/simulated/wall,/area/maintenance/substation/bar) -"bAO" = (/obj/structure/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/effect/floor_decal/industrial/warning,/turf/simulated/floor/plating,/area/maintenance/substation/bar) -"bAP" = (/obj/machinery/power/terminal,/obj/structure/cable{icon_state = "0-8"},/obj/effect/floor_decal/industrial/warning,/turf/simulated/floor/plating,/area/maintenance/substation/bar) -"bAQ" = (/obj/machinery/power/apc{dir = 4; name = "east bump"; pixel_x = 28},/obj/effect/floor_decal/industrial/warning/corner{dir = 8},/obj/structure/cable,/turf/simulated/floor/plating,/area/maintenance/substation/bar) -"bAR" = (/obj/structure/closet/firecloset,/obj/structure/sign/warning/high_voltage{pixel_x = -32},/obj/random/maintenance/clean,/obj/random/maintenance/research,/obj/random/maintenance/research,/turf/simulated/floor/plating,/area/maintenance/lower/atrium) -"bAS" = (/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (WEST)"; icon_state = "borderfloor"; dir = 8},/obj/effect/floor_decal/corner/lime/border{tag = "icon-bordercolor (WEST)"; icon_state = "bordercolor"; dir = 8},/obj/machinery/power/apc{cell_type = /obj/item/weapon/cell/super; dir = 8; name = "west bump"; pixel_x = -28},/obj/structure/cable/green,/turf/simulated/floor/tiled,/area/hydroponics) -"bAT" = (/obj/machinery/biogenerator,/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (EAST)"; icon_state = "borderfloor"; dir = 4},/obj/effect/floor_decal/corner/lime/border{tag = "icon-bordercolor (EAST)"; icon_state = "bordercolor"; dir = 4},/obj/effect/floor_decal/borderfloor/corner2{tag = "icon-borderfloorcorner2 (SOUTHEAST)"; icon_state = "borderfloorcorner2"; dir = 6},/obj/effect/floor_decal/corner/lime/bordercorner2{tag = "icon-bordercolorcorner2 (SOUTHEAST)"; icon_state = "bordercolorcorner2"; dir = 6},/turf/simulated/floor/tiled,/area/hydroponics) -"bAU" = (/obj/structure/bed/chair/wood{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 8},/obj/structure/disposalpipe/segment,/turf/simulated/floor/wood,/area/crew_quarters/bar) -"bAV" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/turf/simulated/floor/wood,/area/crew_quarters/bar) -"bAW" = (/obj/structure/table/woodentable,/obj/item/device/flashlight/color,/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 8},/turf/simulated/floor/wood,/area/crew_quarters/bar) -"bAX" = (/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (WEST)"; icon_state = "borderfloor"; dir = 8},/obj/effect/floor_decal/corner/mauve/border{tag = "icon-bordercolor (WEST)"; icon_state = "bordercolor"; dir = 8},/obj/machinery/disposal,/obj/structure/disposalpipe/trunk{dir = 4},/turf/simulated/floor/tiled,/area/rnd/research) -"bAY" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/disposalpipe/segment{dir = 8; icon_state = "pipe-c"},/turf/simulated/floor/tiled,/area/rnd/research) -"bAZ" = (/obj/effect/floor_decal/borderfloor/corner,/obj/effect/floor_decal/corner/mauve/bordercorner,/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled,/area/rnd/research) -"bBa" = (/obj/machinery/light,/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/corner/mauve/border,/turf/simulated/floor/tiled,/area/rnd/research) -"bBb" = (/obj/machinery/firealarm{dir = 1; pixel_x = 0; pixel_y = -25},/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/corner/mauve/border,/obj/effect/floor_decal/borderfloor/corner2{tag = "icon-borderfloorcorner2 (NORTHWEST)"; icon_state = "borderfloorcorner2"; dir = 9},/obj/effect/floor_decal/corner/mauve/bordercorner2{tag = "icon-bordercolorcorner2 (NORTHWEST)"; icon_state = "bordercolorcorner2"; dir = 9},/turf/simulated/floor/tiled,/area/rnd/research) -"bBc" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled,/area/rnd/research) -"bBd" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 5},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 5},/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/corner/mauve/border,/obj/effect/floor_decal/borderfloor/corner2,/obj/effect/floor_decal/borderfloor/corner2{tag = "icon-borderfloorcorner2 (NORTHWEST)"; icon_state = "borderfloorcorner2"; dir = 9},/obj/effect/floor_decal/corner/mauve/bordercorner2,/obj/effect/floor_decal/corner/mauve/bordercorner2{tag = "icon-bordercolorcorner2 (NORTHWEST)"; icon_state = "bordercolorcorner2"; dir = 9},/obj/structure/disposalpipe/segment{dir = 1; icon_state = "pipe-c"},/turf/simulated/floor/tiled,/area/rnd/research) -"bBe" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 10},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 10},/obj/structure/disposalpipe/segment{dir = 2; icon_state = "pipe-c"},/turf/simulated/floor/tiled,/area/rnd/research) -"bBf" = (/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (SOUTHWEST)"; icon_state = "borderfloor"; dir = 10},/obj/effect/floor_decal/corner/mauve/border{tag = "icon-bordercolor (SOUTHWEST)"; icon_state = "bordercolor"; dir = 10},/obj/effect/floor_decal/borderfloor/corner2{tag = "icon-borderfloorcorner2 (WEST)"; icon_state = "borderfloorcorner2"; dir = 8},/obj/effect/floor_decal/corner/mauve/bordercorner2{tag = "icon-bordercolorcorner2 (WEST)"; icon_state = "bordercolorcorner2"; dir = 8},/obj/machinery/shower{dir = 4; icon_state = "shower"; pixel_x = 2; pixel_y = 0},/obj/effect/floor_decal/steeldecal/steel_decals10{tag = "icon-steel_decals10 (NORTHEAST)"; icon_state = "steel_decals10"; dir = 5},/turf/simulated/floor/tiled,/area/rnd/research_foyer) -"bBg" = (/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/corner/mauve/border,/obj/machinery/light,/obj/effect/floor_decal/steeldecal/steel_decals5{tag = "icon-steel_decals5 (NORTH)"; icon_state = "steel_decals5"; dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals3{tag = "icon-steel_decals3 (SOUTHWEST)"; icon_state = "steel_decals3"; dir = 10},/obj/effect/floor_decal/steeldecal/steel_decals3{tag = "icon-steel_decals3 (NORTH)"; icon_state = "steel_decals3"; dir = 1},/turf/simulated/floor/tiled,/area/rnd/research_foyer) -"bBh" = (/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (SOUTHEAST)"; icon_state = "borderfloor"; dir = 6},/obj/effect/floor_decal/corner/mauve/border{tag = "icon-bordercolor (SOUTHEAST)"; icon_state = "bordercolor"; dir = 6},/obj/effect/floor_decal/borderfloor/corner2{tag = "icon-borderfloorcorner2 (SOUTHEAST)"; icon_state = "borderfloorcorner2"; dir = 6},/obj/effect/floor_decal/corner/mauve/bordercorner2{tag = "icon-bordercolorcorner2 (SOUTHEAST)"; icon_state = "bordercolorcorner2"; dir = 6},/obj/structure/sink{dir = 4; icon_state = "sink"; pixel_x = 11; pixel_y = 0},/turf/simulated/floor/tiled,/area/rnd/research_foyer) -"bBi" = (/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (SOUTHWEST)"; icon_state = "borderfloor"; dir = 10},/obj/effect/floor_decal/corner/mauve/border{tag = "icon-bordercolor (SOUTHWEST)"; icon_state = "bordercolor"; dir = 10},/obj/effect/floor_decal/borderfloor/corner2{tag = "icon-borderfloorcorner2 (WEST)"; icon_state = "borderfloorcorner2"; dir = 8},/obj/effect/floor_decal/corner/mauve/bordercorner2{tag = "icon-bordercolorcorner2 (WEST)"; icon_state = "bordercolorcorner2"; dir = 8},/turf/simulated/floor/tiled,/area/rnd/research_foyer) -"bBj" = (/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/corner/mauve/border,/obj/machinery/computer/guestpass{dir = 1; icon_state = "guest"; pixel_y = -28; tag = "icon-guest (NORTH)"},/turf/simulated/floor/tiled,/area/rnd/research_foyer) -"bBk" = (/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/corner/mauve/border,/obj/effect/floor_decal/steeldecal/steel_decals4,/obj/machinery/camera/network/northern_star{tag = "icon-camera (NORTH)"; icon_state = "camera"; dir = 1},/turf/simulated/floor/tiled,/area/rnd/research_foyer) -"bBl" = (/obj/effect/floor_decal/borderfloor/corner{tag = "icon-borderfloorcorner (WEST)"; icon_state = "borderfloorcorner"; dir = 8},/obj/effect/floor_decal/corner/mauve/bordercorner{tag = "icon-bordercolorcorner (WEST)"; icon_state = "bordercolorcorner"; dir = 8},/turf/simulated/floor/tiled,/area/hallway/lower/third_south) -"bBm" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/tiled,/area/hallway/lower/third_south) -"bBn" = (/obj/structure/ladder,/obj/effect/floor_decal/industrial/outline/yellow,/turf/simulated/floor/plating,/area/maintenance/engineering/pumpstation) -"bBo" = (/obj/machinery/atmospherics/pipe/simple/visible/blue{tag = "icon-intact (NORTHEAST)"; icon_state = "intact"; dir = 5},/turf/simulated/floor/plating,/area/maintenance/engineering/pumpstation) -"bBp" = (/obj/machinery/atmospherics/pipe/simple/visible/blue{tag = "icon-intact (EAST)"; icon_state = "intact"; dir = 4},/turf/simulated/floor/plating,/area/maintenance/engineering/pumpstation) -"bBq" = (/obj/machinery/atmospherics/binary/pump{tag = "icon-map_off (EAST)"; icon_state = "map_off"; dir = 4},/turf/simulated/floor/plating,/area/maintenance/engineering/pumpstation) -"bBr" = (/obj/machinery/atmospherics/pipe/simple/visible/blue{tag = "icon-intact (SOUTHWEST)"; icon_state = "intact"; dir = 10},/obj/structure/railing{dir = 1},/obj/structure/cable/cyan{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/plating,/area/maintenance/engineering/pumpstation) -"bBs" = (/obj/machinery/power/breakerbox/activated{RCon_tag = "Cargo Substation Bypass"},/turf/simulated/floor/plating,/area/maintenance/substation/bar) -"bBt" = (/obj/machinery/power/smes/buildable{charge = 0; RCon_tag = "Substation - Surface Civilian"},/obj/structure/cable/green{d2 = 4; icon_state = "0-4"},/obj/structure/cable/green{d2 = 8; icon_state = "0-8"},/turf/simulated/floor/plating,/area/maintenance/substation/bar) -"bBu" = (/obj/machinery/power/sensor{name = "Powernet Sensor - Surface Civilian Subgrid"; name_tag = "Surface Civilian Subgrid"},/obj/structure/cable/green{d2 = 8; icon_state = "0-8"},/obj/structure/cable/green{d2 = 4; icon_state = "0-4"},/obj/effect/floor_decal/industrial/warning{icon_state = "warning"; dir = 8},/turf/simulated/floor/plating,/area/maintenance/substation/bar) -"bBv" = (/obj/machinery/door/firedoor/glass,/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/door/airlock/maintenance/engi,/turf/simulated/floor/plating,/area/maintenance/substation/bar) -"bBw" = (/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/effect/decal/cleanable/dirt,/turf/simulated/floor/plating,/area/maintenance/lower/atrium) -"bBx" = (/obj/structure/cable/green{d1 = 1; d2 = 8; icon_state = "1-8"},/turf/simulated/floor/plating,/area/maintenance/lower/atrium) -"bBy" = (/obj/machinery/seed_extractor,/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (EAST)"; icon_state = "borderfloor"; dir = 4},/obj/effect/floor_decal/corner/lime/border{tag = "icon-bordercolor (EAST)"; icon_state = "bordercolor"; dir = 4},/turf/simulated/floor/tiled,/area/hydroponics) -"bBz" = (/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (WEST)"; icon_state = "borderfloor"; dir = 8},/obj/effect/floor_decal/corner/lime/border{tag = "icon-bordercolor (WEST)"; icon_state = "bordercolor"; dir = 8},/obj/effect/floor_decal/borderfloor/corner2{tag = "icon-borderfloorcorner2 (SOUTHWEST)"; icon_state = "borderfloorcorner2"; dir = 10},/obj/effect/floor_decal/corner/lime/bordercorner2{tag = "icon-bordercolorcorner2 (SOUTHWEST)"; icon_state = "bordercolorcorner2"; dir = 10},/turf/simulated/floor/tiled,/area/hallway/lower/third_south) -"bBA" = (/obj/structure/bed/chair/wood{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/disposalpipe/segment,/turf/simulated/floor/wood,/area/crew_quarters/bar) -"bBB" = (/obj/machinery/firealarm{dir = 8; pixel_x = -24},/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (WEST)"; icon_state = "borderfloor"; dir = 8},/obj/effect/floor_decal/corner/mauve/border{tag = "icon-bordercolor (WEST)"; icon_state = "bordercolor"; dir = 8},/turf/simulated/floor/tiled,/area/rnd/research) -"bBC" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/tiled,/area/rnd/research) -"bBD" = (/obj/machinery/light_switch{pixel_x = 25},/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (EAST)"; icon_state = "borderfloor"; dir = 4},/obj/effect/floor_decal/corner/mauve/border{tag = "icon-bordercolor (EAST)"; icon_state = "bordercolor"; dir = 4},/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled,/area/rnd/research) -"bBE" = (/turf/simulated/wall,/area/assembly/robotics) -"bBF" = (/obj/machinery/door/firedoor/glass,/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/disposalpipe/segment,/obj/machinery/door/airlock/glass_research{name = "Robotics Lab"; req_access = list(29,47)},/turf/simulated/floor/tiled,/area/assembly/robotics) -"bBG" = (/obj/structure/grille,/obj/structure/window/reinforced{dir = 5; icon_state = "fwindow"},/obj/machinery/door/firedoor,/turf/simulated/floor/plating,/area/assembly/robotics) -"bBH" = (/obj/machinery/door/firedoor/glass,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/disposalpipe/segment,/obj/machinery/door/airlock/glass_research{name = "Robotics Lab"; req_access = list(29,47)},/turf/simulated/floor/tiled,/area/assembly/robotics) -"bBI" = (/turf/simulated/wall,/area/assembly/chargebay) -"bBJ" = (/obj/structure/sign/science,/turf/simulated/wall,/area/assembly/chargebay) -"bBK" = (/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (WEST)"; icon_state = "borderfloor"; dir = 8},/obj/effect/floor_decal/corner/mauve/border{tag = "icon-bordercolor (WEST)"; icon_state = "bordercolor"; dir = 8},/turf/simulated/floor/tiled,/area/hallway/lower/third_south) -"bBL" = (/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/tiled,/area/hallway/lower/third_south) -"bBM" = (/obj/machinery/atmospherics/unary/vent_pump/on{dir = 8},/turf/simulated/floor/tiled,/area/hallway/lower/third_south) -"bBN" = (/obj/machinery/atmospherics/pipe/simple/visible/blue{tag = "icon-intact (SOUTHEAST)"; icon_state = "intact"; dir = 6},/obj/machinery/alarm{dir = 4; icon_state = "alarm0"; pixel_x = -22; pixel_y = 0},/turf/simulated/floor/plating,/area/maintenance/engineering/pumpstation) -"bBO" = (/obj/machinery/atmospherics/pipe/manifold/visible/blue{tag = "icon-map (NORTH)"; icon_state = "map"; dir = 1},/turf/simulated/floor/plating,/area/maintenance/engineering/pumpstation) -"bBP" = (/obj/machinery/atmospherics/pipe/manifold/visible/blue{tag = "icon-map (NORTH)"; icon_state = "map"; dir = 1},/mob/living/simple_animal/mouse,/turf/simulated/floor/plating,/area/maintenance/engineering/pumpstation) -"bBQ" = (/obj/machinery/atmospherics/pipe/manifold/visible/blue{tag = "icon-map (EAST)"; icon_state = "map"; dir = 4},/obj/machinery/power/apc{dir = 4; name = "east bump"; pixel_x = 28},/obj/structure/cable/cyan,/turf/simulated/floor/plating,/area/maintenance/engineering/pumpstation) -"bBR" = (/obj/effect/decal/cleanable/dirt,/obj/structure/closet,/obj/random/maintenance/clean,/obj/random/maintenance/engineering,/obj/random/junk,/obj/random/cigarettes,/obj/random/maintenance/cargo,/turf/simulated/floor/plating,/area/maintenance/lower/atrium) -"bBS" = (/obj/machinery/alarm{dir = 4; icon_state = "alarm0"; pixel_x = -22; pixel_y = 0},/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/plating,/area/maintenance/lower/atrium) -"bBT" = (/obj/effect/decal/cleanable/dirt,/obj/structure/closet/crate,/obj/random/maintenance/clean,/obj/random/maintenance/clean,/obj/random/junk,/obj/random/maintenance/research,/turf/simulated/floor/plating,/area/maintenance/lower/atrium) -"bBU" = (/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (WEST)"; icon_state = "borderfloor"; dir = 8},/obj/effect/floor_decal/corner/lime/border{tag = "icon-bordercolor (WEST)"; icon_state = "bordercolor"; dir = 8},/obj/item/device/radio/intercom{dir = 8; name = "Station Intercom (General)"; pixel_x = -28},/turf/simulated/floor/tiled,/area/hydroponics) -"bBV" = (/obj/structure/bed/chair/wood{dir = 1},/turf/simulated/floor/wood,/area/crew_quarters/bar) -"bBW" = (/obj/machinery/firealarm{dir = 1; pixel_x = 0; pixel_y = -25},/turf/simulated/floor/wood,/area/crew_quarters/bar) -"bBX" = (/obj/machinery/camera/network/civilian{tag = "icon-camera (NORTH)"; icon_state = "camera"; dir = 1},/turf/simulated/floor/wood,/area/crew_quarters/bar) -"bBY" = (/obj/machinery/light,/turf/simulated/floor/wood,/area/crew_quarters/bar) -"bBZ" = (/obj/machinery/alarm{dir = 1; pixel_y = -25},/turf/simulated/floor/wood,/area/crew_quarters/bar) -"bCa" = (/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (WEST)"; icon_state = "borderfloor"; dir = 8},/obj/effect/floor_decal/corner/mauve/border{tag = "icon-bordercolor (WEST)"; icon_state = "bordercolor"; dir = 8},/obj/effect/floor_decal/borderfloor/corner2{tag = "icon-borderfloorcorner2 (SOUTHWEST)"; icon_state = "borderfloorcorner2"; dir = 10},/obj/effect/floor_decal/corner/mauve/bordercorner2{tag = "icon-bordercolorcorner2 (SOUTHWEST)"; icon_state = "bordercolorcorner2"; dir = 10},/turf/simulated/floor/tiled,/area/rnd/research) -"bCb" = (/obj/machinery/recharge_station,/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (EAST)"; icon_state = "borderfloor"; dir = 4},/obj/effect/floor_decal/corner/mauve/border{tag = "icon-bordercolor (EAST)"; icon_state = "bordercolor"; dir = 4},/obj/structure/extinguisher_cabinet{dir = 8; icon_state = "extinguisher_closed"; pixel_x = 30; tag = "icon-extinguisher_closed (WEST)"},/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled,/area/rnd/research) -"bCc" = (/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (NORTHWEST)"; icon_state = "borderfloor"; dir = 9},/obj/effect/floor_decal/corner/mauve/border{tag = "icon-bordercolor (NORTHWEST)"; icon_state = "bordercolor"; dir = 9},/obj/effect/floor_decal/borderfloor/corner2{tag = "icon-borderfloorcorner2 (NORTH)"; icon_state = "borderfloorcorner2"; dir = 1},/obj/effect/floor_decal/corner/mauve/bordercorner2{tag = "icon-bordercolorcorner2 (NORTH)"; icon_state = "bordercolorcorner2"; dir = 1},/obj/structure/closet/firecloset,/turf/simulated/floor/tiled/steel_grid,/area/assembly/robotics) -"bCd" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled/steel_grid,/area/assembly/robotics) -"bCe" = (/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (NORTH)"; icon_state = "borderfloor"; dir = 1},/obj/effect/floor_decal/corner/mauve/border{tag = "icon-bordercolor (NORTH)"; icon_state = "bordercolor"; dir = 1},/obj/effect/floor_decal/borderfloor/corner2{tag = "icon-borderfloorcorner2 (EAST)"; icon_state = "borderfloorcorner2"; dir = 4},/obj/effect/floor_decal/borderfloor/corner2{tag = "icon-borderfloorcorner2 (NORTH)"; icon_state = "borderfloorcorner2"; dir = 1},/obj/effect/floor_decal/corner/mauve/bordercorner2{tag = "icon-bordercolorcorner2 (NORTH)"; icon_state = "bordercolorcorner2"; dir = 1},/obj/effect/floor_decal/corner/mauve/bordercorner2{tag = "icon-bordercolorcorner2 (EAST)"; icon_state = "bordercolorcorner2"; dir = 4},/turf/simulated/floor/tiled/steel_grid,/area/assembly/robotics) -"bCf" = (/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/assembly/robotics) -"bCg" = (/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (NORTHEAST)"; icon_state = "borderfloor"; dir = 5},/obj/effect/floor_decal/corner/mauve/border{tag = "icon-bordercolor (NORTHEAST)"; icon_state = "bordercolor"; dir = 5},/obj/effect/floor_decal/borderfloor/corner2{tag = "icon-borderfloorcorner2 (EAST)"; icon_state = "borderfloorcorner2"; dir = 4},/obj/effect/floor_decal/corner/mauve/bordercorner2{tag = "icon-bordercolorcorner2 (EAST)"; icon_state = "bordercolorcorner2"; dir = 4},/obj/structure/sink{dir = 4; icon_state = "sink"; pixel_x = 11; pixel_y = 0},/obj/machinery/light_switch{pixel_y = 25},/turf/simulated/floor/tiled/steel_grid,/area/assembly/robotics) -"bCh" = (/obj/machinery/recharge_station,/turf/simulated/floor/tiled/steel_grid,/area/assembly/chargebay) -"bCi" = (/obj/machinery/recharge_station,/obj/machinery/power/apc{dir = 1; name = "north bump"; pixel_x = 0; pixel_y = 28},/obj/structure/cable/green{d2 = 2; icon_state = "0-2"},/turf/simulated/floor/tiled/steel_grid,/area/assembly/chargebay) -"bCj" = (/obj/machinery/computer/cryopod/robot{pixel_y = 30},/turf/simulated/floor/tiled/steel_grid,/area/assembly/chargebay) -"bCk" = (/obj/machinery/cryopod/robot,/obj/machinery/camera/network/research{c_tag = "SCI - Xenoflora"; dir = 2},/turf/simulated/floor/tiled/steel_grid,/area/assembly/chargebay) -"bCl" = (/obj/machinery/cryopod/robot,/turf/simulated/floor/tiled/steel_grid,/area/assembly/chargebay) -"bCm" = (/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (WEST)"; icon_state = "borderfloor"; dir = 8},/obj/effect/floor_decal/corner/mauve/border{tag = "icon-bordercolor (WEST)"; icon_state = "bordercolor"; dir = 8},/obj/effect/floor_decal/borderfloor/corner2{tag = "icon-borderfloorcorner2 (SOUTHWEST)"; icon_state = "borderfloorcorner2"; dir = 10},/obj/effect/floor_decal/corner/mauve/bordercorner2{tag = "icon-bordercolorcorner2 (SOUTHWEST)"; icon_state = "bordercolorcorner2"; dir = 10},/turf/simulated/floor/tiled,/area/hallway/lower/third_south) -"bCn" = (/obj/machinery/atmospherics/portables_connector{dir = 1},/obj/machinery/portable_atmospherics/powered/pump/filled,/turf/simulated/floor/plating,/area/maintenance/engineering/pumpstation) -"bCo" = (/obj/machinery/light/small,/obj/machinery/atmospherics/portables_connector{dir = 1},/obj/machinery/portable_atmospherics/powered/pump/filled,/turf/simulated/floor/plating,/area/maintenance/engineering/pumpstation) -"bCp" = (/obj/effect/decal/cleanable/dirt,/obj/structure/table/rack,/obj/random/maintenance/clean,/obj/random/maintenance/clean,/obj/random/junk,/obj/random/maintenance/engineering,/turf/simulated/floor/plating,/area/maintenance/lower/atrium) -"bCq" = (/obj/machinery/portable_atmospherics/powered/scrubber/huge/stationary{scrub_id = "atrium"},/turf/simulated/floor/tiled/techmaint,/area/hallway/lower/third_south) -"bCr" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/plating,/area/maintenance/lower/atrium) -"bCs" = (/obj/structure/closet,/obj/item/clothing/mask/gas,/obj/effect/decal/cleanable/dirt,/obj/random/maintenance/clean,/obj/random/maintenance/clean,/obj/random/maintenance/research,/turf/simulated/floor/plating,/area/maintenance/lower/atrium) -"bCt" = (/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (SOUTHWEST)"; icon_state = "borderfloor"; dir = 10},/obj/structure/closet/secure_closet/hydroponics,/obj/effect/floor_decal/corner/lime/border{tag = "icon-bordercolor (SOUTHWEST)"; icon_state = "bordercolor"; dir = 10},/turf/simulated/floor/tiled,/area/hydroponics) -"bCu" = (/obj/machinery/disposal,/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/corner/lime/border,/obj/structure/disposalpipe/trunk{dir = 1},/turf/simulated/floor/tiled,/area/hydroponics) -"bCv" = (/obj/structure/reagent_dispensers/watertank,/obj/item/weapon/reagent_containers/glass/bucket,/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/corner/lime/border,/turf/simulated/floor/tiled,/area/hydroponics) -"bCw" = (/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/effect/floor_decal/corner/lime/border,/turf/simulated/floor/tiled,/area/hydroponics) -"bCx" = (/obj/structure/table/standard{name = "plastic table frame"},/obj/item/weapon/material/hatchet,/obj/item/weapon/material/minihoe,/obj/item/weapon/material/minihoe,/obj/item/weapon/material/hatchet,/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/corner/lime/border,/turf/simulated/floor/tiled,/area/hydroponics) -"bCy" = (/obj/machinery/seed_storage/garden,/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (SOUTHEAST)"; icon_state = "borderfloor"; dir = 6},/obj/effect/floor_decal/corner/lime/border{tag = "icon-bordercolor (SOUTHEAST)"; icon_state = "bordercolor"; dir = 6},/turf/simulated/floor/tiled,/area/hydroponics) -"bCz" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/status_display{pixel_x = 32; pixel_y = 0},/turf/simulated/floor/tiled,/area/hallway/lower/third_south) -"bCA" = (/obj/machinery/light{icon_state = "tube1"; dir = 8},/obj/structure/disposalpipe/segment{dir = 4; icon_state = "pipe-c"},/turf/simulated/floor/wood,/area/crew_quarters/bar) -"bCB" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/disposalpipe/segment{dir = 8; icon_state = "pipe-c"},/turf/simulated/floor/wood,/area/crew_quarters/bar) -"bCC" = (/obj/structure/grille,/obj/structure/window/reinforced{dir = 5; icon_state = "fwindow"},/obj/machinery/door/firedoor,/obj/structure/window/reinforced,/turf/simulated/floor/plating,/area/crew_quarters/bar) -"bCD" = (/obj/structure/lattice,/obj/structure/cable/green{icon_state = "32-4"},/obj/machinery/atmospherics/pipe/zpipe/down/supply{tag = "icon-down-supply (EAST)"; icon_state = "down-supply"; dir = 4},/obj/machinery/atmospherics/pipe/zpipe/up/scrubbers{tag = "icon-up-scrubbers (EAST)"; icon_state = "up-scrubbers"; dir = 4},/obj/machinery/door/firedoor/glass,/turf/simulated/open,/area/rnd/research) -"bCE" = (/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/machinery/door/firedoor/glass,/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/door/airlock/maintenance/rnd,/turf/simulated/floor/tiled/steel_dirty,/area/rnd/research) -"bCF" = (/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,/area/rnd/research) -"bCG" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/manifold/hidden/supply,/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,/turf/simulated/floor/tiled,/area/rnd/research) -"bCH" = (/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,/area/rnd/research) -"bCI" = (/obj/structure/cable/green{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/structure/cable/green{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 10},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 10},/turf/simulated/floor/tiled,/area/rnd/research) -"bCJ" = (/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (EAST)"; icon_state = "borderfloor"; dir = 4},/obj/effect/floor_decal/corner/mauve/border{tag = "icon-bordercolor (EAST)"; icon_state = "bordercolor"; dir = 4},/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled,/area/rnd/research) -"bCK" = (/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (WEST)"; icon_state = "borderfloor"; dir = 8},/obj/effect/floor_decal/corner/mauve/border{tag = "icon-bordercolor (WEST)"; icon_state = "bordercolor"; dir = 8},/obj/structure/table/standard,/obj/machinery/cell_charger,/turf/simulated/floor/tiled/steel_grid,/area/assembly/robotics) -"bCL" = (/turf/simulated/floor/tiled/steel_grid,/area/assembly/robotics) -"bCM" = (/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (EAST)"; icon_state = "borderfloor"; dir = 4},/obj/effect/floor_decal/corner/mauve/border{tag = "icon-bordercolor (EAST)"; icon_state = "bordercolor"; dir = 4},/obj/effect/floor_decal/borderfloor/corner2{tag = "icon-borderfloorcorner2 (NORTHEAST)"; icon_state = "borderfloorcorner2"; dir = 5},/obj/effect/floor_decal/corner/mauve/bordercorner2{tag = "icon-bordercolorcorner2 (NORTHEAST)"; icon_state = "bordercolorcorner2"; dir = 5},/obj/effect/floor_decal/industrial/warning/corner,/obj/item/device/radio/intercom{dir = 4; name = "Station Intercom (General)"; pixel_x = 21},/turf/simulated/floor/tiled/steel_grid,/area/assembly/robotics) -"bCN" = (/obj/effect/floor_decal/industrial/warning/corner{dir = 8},/turf/simulated/floor/bluegrid,/area/assembly/chargebay) -"bCO" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/bluegrid,/area/assembly/chargebay) -"bCP" = (/turf/simulated/floor/bluegrid,/area/assembly/chargebay) -"bCQ" = (/obj/effect/landmark{name = "JoinLateCyborg"},/turf/simulated/floor/bluegrid,/area/assembly/chargebay) -"bCR" = (/obj/effect/floor_decal/industrial/warning/corner,/obj/effect/landmark{name = "JoinLateCyborg"},/obj/machinery/light_switch{pixel_x = 25},/turf/simulated/floor/bluegrid,/area/assembly/chargebay) -"bCS" = (/obj/effect/floor_decal/industrial/warning/corner{dir = 8},/obj/machinery/light{icon_state = "tube1"; dir = 8},/turf/simulated/floor/tiled,/area/hallway/lower/third_south) -"bCT" = (/obj/structure/sign/directions/medical{dir = 1; icon_state = "direction_med"; pixel_y = 8; tag = "icon-direction_med (EAST)"},/obj/structure/sign/directions/science{tag = "icon-direction_sci (WEST)"; icon_state = "direction_sci"; dir = 8; pixel_y = 3},/obj/structure/sign/directions/security{dir = 1; icon_state = "direction_sec"; pixel_y = -4; tag = "icon-direction_sec (WEST)"},/obj/structure/sign/directions/engineering{dir = 1; icon_state = "direction_eng"; pixel_y = -10; tag = "icon-direction_eng (WEST)"},/turf/simulated/wall,/area/maintenance/engineering/pumpstation) -"bCU" = (/obj/structure/sign/directions/evac{tag = "icon-direction_evac (WEST)"; icon_state = "direction_evac"; dir = 8},/turf/simulated/wall,/area/maintenance/engineering/pumpstation) -"bCV" = (/obj/machinery/door/firedoor/glass,/obj/structure/disposalpipe/segment,/obj/machinery/door/airlock/maintenance/common,/turf/simulated/floor/plating,/area/maintenance/lower/atrium) -"bCW" = (/obj/structure/grille,/obj/structure/railing,/turf/simulated/floor/tiled/techmaint,/area/hallway/lower/third_south) -"bCX" = (/obj/machinery/door/airlock/maintenance/common,/obj/machinery/door/firedoor/glass,/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/plating,/area/maintenance/lower/atrium) -"bCY" = (/obj/structure/sign/directions/medical{tag = "icon-direction_med (EAST)"; icon_state = "direction_med"; dir = 4; pixel_y = 8},/obj/structure/sign/directions/science{tag = "icon-direction_sci (WEST)"; icon_state = "direction_sci"; dir = 8; pixel_y = 3},/obj/structure/sign/directions/security{tag = "icon-direction_sec (WEST)"; icon_state = "direction_sec"; dir = 8; pixel_y = -4},/obj/structure/sign/directions/engineering{tag = "icon-direction_eng (WEST)"; icon_state = "direction_eng"; dir = 8; pixel_y = -10},/turf/simulated/wall,/area/hydroponics) -"bCZ" = (/obj/machinery/atmospherics/unary/vent_pump/on,/turf/simulated/floor/tiled,/area/hallway/lower/third_south) -"bDa" = (/obj/structure/cable/green{d2 = 2; icon_state = "0-2"},/obj/machinery/power/apc{cell_type = /obj/item/weapon/cell/super; dir = 8; name = "west bump"; pixel_x = -28},/obj/structure/disposalpipe/segment,/turf/simulated/floor/wood,/area/crew_quarters/bar) -"bDb" = (/obj/effect/floor_decal/spline/plain{tag = "icon-spline_plain (NORTHWEST)"; icon_state = "spline_plain"; dir = 9},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/lino,/area/crew_quarters/bar) -"bDc" = (/obj/effect/floor_decal/spline/plain{dir = 1},/obj/item/weapon/stool/padded,/turf/simulated/floor/lino,/area/crew_quarters/bar) -"bDd" = (/obj/item/weapon/stool/padded,/obj/effect/floor_decal/spline/plain{dir = 1},/turf/simulated/floor/lino,/area/crew_quarters/bar) -"bDe" = (/obj/effect/floor_decal/spline/plain{dir = 1},/turf/simulated/floor/lino,/area/crew_quarters/bar) -"bDf" = (/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/structure/cable/green{d2 = 2; icon_state = "0-2"},/obj/machinery/power/apc{dir = 1; name = "north bump"; pixel_x = 0; pixel_y = 24},/obj/machinery/light_switch{pixel_x = -25},/turf/simulated/floor/wood,/area/crew_quarters/bar) -"bDg" = (/obj/structure/closet/secure_closet/bar{req_access = list(25)},/obj/item/weapon/storage/secure/safe{pixel_z = 30},/obj/machinery/camera/network/civilian,/turf/simulated/floor/wood,/area/crew_quarters/bar) -"bDh" = (/obj/structure/flora/pottedplant{icon_state = "plant-22"},/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (SOUTHWEST)"; icon_state = "borderfloor"; dir = 10},/obj/effect/floor_decal/corner/mauve/border{tag = "icon-bordercolor (SOUTHWEST)"; icon_state = "bordercolor"; dir = 10},/obj/effect/floor_decal/borderfloor/corner2{tag = "icon-borderfloorcorner2 (WEST)"; icon_state = "borderfloorcorner2"; dir = 8},/obj/effect/floor_decal/corner/mauve/bordercorner2{tag = "icon-bordercolorcorner2 (WEST)"; icon_state = "bordercolorcorner2"; dir = 8},/turf/simulated/floor/tiled,/area/rnd/research) -"bDi" = (/obj/item/device/radio/intercom{name = "Station Intercom (General)"; pixel_y = -21},/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/corner/mauve/border,/turf/simulated/floor/tiled,/area/rnd/research) -"bDj" = (/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/corner/mauve/border,/turf/simulated/floor/tiled,/area/rnd/research) -"bDk" = (/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/structure/disposalpipe/segment{dir = 4; icon_state = "pipe-c"},/turf/simulated/floor/tiled,/area/rnd/research) -"bDl" = (/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/corner/mauve/border,/obj/effect/floor_decal/borderfloor/corner2,/obj/effect/floor_decal/corner/mauve/bordercorner2,/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled,/area/rnd/research) -"bDm" = (/obj/structure/flora/pottedplant{icon_state = "plant-22"},/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (SOUTHEAST)"; icon_state = "borderfloor"; dir = 6},/obj/effect/floor_decal/corner/mauve/border{tag = "icon-bordercolor (SOUTHEAST)"; icon_state = "bordercolor"; dir = 6},/obj/structure/disposalpipe/segment{dir = 8; icon_state = "pipe-c"},/turf/simulated/floor/tiled,/area/rnd/research) -"bDn" = (/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (WEST)"; icon_state = "borderfloor"; dir = 8},/obj/effect/floor_decal/corner/mauve/border{tag = "icon-bordercolor (WEST)"; icon_state = "bordercolor"; dir = 8},/obj/structure/table/standard,/obj/item/clothing/glasses/omnihud/rnd,/obj/machinery/camera/network/research{c_tag = "SCI - Research Hallway Center"; dir = 4},/turf/simulated/floor/tiled/steel_grid,/area/assembly/robotics) -"bDo" = (/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/structure/disposalpipe/segment,/turf/simulated/floor/tiled/steel_grid,/area/assembly/robotics) -"bDp" = (/obj/effect/floor_decal/industrial/outline/yellow,/obj/effect/decal/cleanable/dirt,/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/tiled/techfloor,/area/assembly/robotics) -"bDq" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/disposalpipe/segment{dir = 1; icon_state = "pipe-c"},/turf/simulated/floor/tiled/steel_grid,/area/assembly/robotics) -"bDr" = (/obj/effect/floor_decal/industrial/warning{icon_state = "warning"; dir = 4},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled/steel_grid,/area/assembly/robotics) -"bDs" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled/steel_grid,/area/assembly/robotics) -"bDt" = (/obj/effect/floor_decal/industrial/warning{dir = 8},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/bluegrid,/area/assembly/chargebay) -"bDu" = (/obj/machinery/mech_recharger,/obj/structure/cable/green{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled/techmaint,/area/assembly/chargebay) -"bDv" = (/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/bluegrid,/area/assembly/chargebay) -"bDw" = (/obj/machinery/mech_recharger,/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled/techmaint,/area/assembly/chargebay) -"bDx" = (/obj/effect/floor_decal/industrial/warning{icon_state = "warning"; dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/bluegrid,/area/assembly/chargebay) -"bDy" = (/obj/machinery/door/blast/regular,/obj/machinery/door/firedoor/glass,/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled/steel_grid,/area/assembly/chargebay) -"bDz" = (/obj/effect/floor_decal/industrial/warning{dir = 8},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled,/area/hallway/lower/third_south) -"bDA" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled,/area/hallway/lower/third_south) -"bDB" = (/obj/machinery/door/firedoor/glass/hidden/steel,/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled,/area/hallway/lower/third_south) -"bDC" = (/obj/machinery/newscaster{pixel_x = 0; pixel_y = 30},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled,/area/hallway/lower/third_south) -"bDD" = (/obj/machinery/firealarm{dir = 2; layer = 3.3; pixel_x = 0; pixel_y = 26},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled,/area/hallway/lower/third_south) -"bDE" = (/obj/machinery/alarm{frequency = 1441; pixel_y = 22},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled,/area/hallway/lower/third_south) -"bDF" = (/obj/structure/extinguisher_cabinet{pixel_y = 30},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled,/area/hallway/lower/third_south) -"bDG" = (/obj/machinery/atmospherics/unary/vent_pump/on,/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled,/area/hallway/lower/third_south) -"bDH" = (/obj/machinery/light{dir = 1},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled,/area/hallway/lower/third_south) -"bDI" = (/obj/structure/disposalpipe/segment{dir = 8; icon_state = "pipe-c"},/turf/simulated/floor/tiled,/area/hallway/lower/third_south) -"bDJ" = (/obj/effect/floor_decal/industrial/warning/corner{dir = 4},/obj/machinery/status_display{pixel_y = 30},/turf/simulated/floor/tiled,/area/hallway/lower/third_south) -"bDK" = (/obj/effect/floor_decal/industrial/warning{dir = 1},/turf/simulated/floor/tiled,/area/hallway/lower/third_south) -"bDL" = (/obj/effect/floor_decal/industrial/warning/corner{icon_state = "warningcorner"; dir = 1},/obj/machinery/door/firedoor/glass/hidden/steel,/turf/simulated/floor/tiled,/area/hallway/lower/third_south) -"bDM" = (/obj/structure/cable/green{d2 = 2; icon_state = "0-2"},/obj/machinery/power/apc{dir = 1; name = "north bump"; pixel_x = 0; pixel_y = 24},/turf/simulated/floor/tiled,/area/hallway/lower/third_south) -"bDN" = (/obj/machinery/camera/network/northern_star,/turf/simulated/floor/tiled,/area/hallway/lower/third_south) -"bDO" = (/obj/structure/extinguisher_cabinet{pixel_y = 30},/turf/simulated/floor/tiled,/area/hallway/lower/third_south) -"bDP" = (/obj/machinery/newscaster{pixel_x = 0; pixel_y = 30},/turf/simulated/floor/tiled,/area/hallway/lower/third_south) -"bDQ" = (/obj/machinery/firealarm{dir = 2; layer = 3.3; pixel_x = 0; pixel_y = 26},/turf/simulated/floor/tiled,/area/hallway/lower/third_south) -"bDR" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/tiled,/area/hallway/lower/third_south) -"bDS" = (/obj/machinery/door/firedoor/glass,/turf/simulated/floor/tiled/monotile,/area/crew_quarters/bar) -"bDT" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/disposalpipe/segment,/turf/simulated/floor/wood,/area/crew_quarters/bar) -"bDU" = (/obj/item/weapon/stool/padded,/obj/effect/floor_decal/spline/plain{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/lino,/area/crew_quarters/bar) -"bDV" = (/obj/structure/table/marble,/turf/simulated/floor/lino,/area/crew_quarters/bar) -"bDW" = (/obj/structure/table/marble,/obj/item/weapon/reagent_containers/food/drinks/glass2/pint,/turf/simulated/floor/lino,/area/crew_quarters/bar) -"bDX" = (/obj/structure/table/marble,/obj/item/weapon/reagent_containers/food/drinks/glass2/shot,/turf/simulated/floor/lino,/area/crew_quarters/bar) -"bDY" = (/obj/machinery/door/window/brigdoor/northleft,/obj/structure/extinguisher_cabinet{dir = 8; icon_state = "extinguisher_closed"; pixel_x = 30; tag = "icon-extinguisher_closed (WEST)"},/turf/simulated/floor/lino,/area/crew_quarters/bar) -"bDZ" = (/obj/machinery/atmospherics/unary/vent_pump/on,/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/alarm{dir = 4; icon_state = "alarm0"; pixel_x = -22; pixel_y = 0},/turf/simulated/floor/wood,/area/crew_quarters/bar) -"bEa" = (/obj/structure/sink{dir = 4; icon_state = "sink"; pixel_x = 11; pixel_y = 0},/obj/structure/sign/securearea{desc = "Under the painting a plaque reads: 'While the meat grinder may not have spared you, fear not. Not one part of you has gone to waste... You were delicious.'"; icon_state = "monkey_painting"; name = "Mr. Deempisi portrait"; pixel_x = 28; pixel_y = 4},/turf/simulated/floor/wood,/area/crew_quarters/bar) -"bEb" = (/turf/simulated/wall,/area/rnd/rdoffice) -"bEc" = (/obj/structure/grille,/obj/structure/window/reinforced{dir = 5; icon_state = "fwindow"},/obj/machinery/door/firedoor,/turf/simulated/floor/plating,/area/rnd/rdoffice) -"bEd" = (/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,/obj/structure/disposalpipe/segment,/obj/machinery/door/airlock/command{id_tag = "researchdoor"; name = "Research Director"; req_access = list(30)},/turf/simulated/floor/tiled,/area/rnd/rdoffice) -"bEe" = (/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (WEST)"; icon_state = "borderfloor"; dir = 8},/obj/effect/floor_decal/corner/mauve/border{tag = "icon-bordercolor (WEST)"; icon_state = "bordercolor"; dir = 8},/obj/structure/table/standard,/obj/machinery/cell_charger,/obj/machinery/power/apc{cell_type = /obj/item/weapon/cell/super; dir = 8; name = "west bump"; pixel_x = -28},/obj/structure/cable/green{icon_state = "0-4"},/turf/simulated/floor/tiled/steel_grid,/area/assembly/robotics) -"bEf" = (/obj/structure/cable/green{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled/steel_grid,/area/assembly/robotics) -"bEg" = (/obj/effect/floor_decal/industrial/outline/yellow,/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/tiled/techfloor,/area/assembly/robotics) -"bEh" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/tiled/steel_grid,/area/assembly/robotics) -"bEi" = (/obj/effect/floor_decal/industrial/warning{icon_state = "warning"; dir = 4},/turf/simulated/floor/tiled/steel_grid,/area/assembly/robotics) -"bEj" = (/obj/effect/floor_decal/industrial/warning{dir = 8},/turf/simulated/floor/bluegrid,/area/assembly/chargebay) -"bEk" = (/obj/effect/floor_decal/industrial/warning{icon_state = "warning"; dir = 4},/turf/simulated/floor/bluegrid,/area/assembly/chargebay) -"bEl" = (/obj/machinery/door/blast/regular,/obj/machinery/door/firedoor/glass,/turf/simulated/floor/tiled/steel_grid,/area/assembly/chargebay) -"bEm" = (/obj/effect/floor_decal/industrial/warning{dir = 8},/turf/simulated/floor/tiled,/area/hallway/lower/third_south) -"bEn" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 5},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 5},/turf/simulated/floor/tiled,/area/hallway/lower/third_south) -"bEo" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled,/area/hallway/lower/third_south) -"bEp" = (/obj/machinery/door/firedoor/glass/hidden/steel,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled,/area/hallway/lower/third_south) -"bEq" = (/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 1},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 1},/turf/simulated/floor/tiled,/area/hallway/lower/third_south) -"bEr" = (/obj/machinery/atmospherics/pipe/manifold/hidden/supply,/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 1},/turf/simulated/floor/tiled,/area/hallway/lower/third_south) -"bEs" = (/obj/structure/cable/green{d1 = 2; d2 = 4; 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/tiled,/area/hallway/lower/third_south) -"bEt" = (/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,/area/hallway/lower/third_south) -"bEu" = (/obj/machinery/door/firedoor/glass/hidden/steel,/obj/machinery/door/firedoor/glass/hidden/steel,/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,/area/hallway/lower/third_south) -"bEv" = (/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/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled,/area/hallway/lower/third_south) -"bEw" = (/obj/structure/cable/green{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled,/area/hallway/lower/third_south) -"bEx" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 10},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 9},/turf/simulated/floor/tiled,/area/hallway/lower/third_south) -"bEy" = (/obj/structure/cable/green{d1 = 1; d2 = 4; icon_state = "1-4"},/turf/simulated/floor/tiled,/area/hallway/lower/third_south) -"bEz" = (/obj/machinery/door/airlock/multi_tile/glass{dir = 1},/obj/machinery/door/firedoor/glass,/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/tiled/monotile,/area/crew_quarters/bar) -"bEA" = (/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/structure/disposalpipe/segment,/turf/simulated/floor/wood,/area/crew_quarters/bar) -"bEB" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/wood,/area/crew_quarters/bar) -"bEC" = (/obj/item/weapon/stool/padded,/obj/effect/floor_decal/spline/plain{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 5},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 5},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/lino,/area/crew_quarters/bar) -"bED" = (/obj/structure/table/marble,/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/turf/simulated/floor/lino,/area/crew_quarters/bar) -"bEE" = (/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/lino,/area/crew_quarters/bar) -"bEF" = (/obj/machinery/door/airlock{name = "Bar Backroom"; req_access = list(25)},/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/wood,/area/crew_quarters/bar) -"bEG" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 10},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 9},/obj/structure/cable/green{d1 = 1; d2 = 8; icon_state = "1-8"},/turf/simulated/floor/wood,/area/crew_quarters/bar) -"bEH" = (/obj/structure/table/woodentable,/obj/machinery/reagentgrinder,/obj/item/weapon/reagent_containers/food/drinks/shaker,/obj/item/weapon/packageWrap,/turf/simulated/floor/wood,/area/crew_quarters/bar) -"bEI" = (/obj/machinery/disposal,/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (NORTHWEST)"; icon_state = "borderfloor"; dir = 9},/obj/effect/floor_decal/corner/mauve/border{tag = "icon-bordercolor (NORTHWEST)"; icon_state = "bordercolor"; dir = 9},/obj/machinery/firealarm{dir = 8; pixel_x = -24},/obj/structure/disposalpipe/trunk{dir = 4},/turf/simulated/floor/tiled,/area/rnd/rdoffice) -"bEJ" = (/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (NORTH)"; icon_state = "borderfloor"; dir = 1},/obj/effect/floor_decal/corner/mauve/border{tag = "icon-bordercolor (NORTH)"; icon_state = "bordercolor"; dir = 1},/obj/effect/floor_decal/borderfloor/corner2{tag = "icon-borderfloorcorner2 (NORTH)"; icon_state = "borderfloorcorner2"; dir = 1},/obj/effect/floor_decal/corner/mauve/bordercorner2{tag = "icon-bordercolorcorner2 (NORTH)"; icon_state = "bordercolorcorner2"; dir = 1},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled,/area/rnd/rdoffice) -"bEK" = (/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/structure/disposalpipe/segment{dir = 8; icon_state = "pipe-c"},/turf/simulated/floor/tiled,/area/rnd/rdoffice) -"bEL" = (/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (NORTH)"; icon_state = "borderfloor"; dir = 1},/obj/effect/floor_decal/corner/mauve/border{tag = "icon-bordercolor (NORTH)"; icon_state = "bordercolor"; dir = 1},/obj/effect/floor_decal/borderfloor/corner2{tag = "icon-borderfloorcorner2 (EAST)"; icon_state = "borderfloorcorner2"; dir = 4},/obj/effect/floor_decal/corner/mauve/bordercorner2{tag = "icon-bordercolorcorner2 (EAST)"; icon_state = "bordercolorcorner2"; dir = 4},/obj/machinery/camera/network/research{c_tag = "SCI - Xenoflora"; dir = 2},/turf/simulated/floor/tiled,/area/rnd/rdoffice) -"bEM" = (/obj/structure/table/standard,/obj/item/device/taperecorder{pixel_x = -3},/obj/item/device/paicard{pixel_x = 4},/obj/item/weapon/circuitboard/teleporter,/obj/item/weapon/circuitboard/aicore{pixel_x = -2; pixel_y = 4},/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (NORTHEAST)"; icon_state = "borderfloor"; dir = 5},/obj/effect/floor_decal/corner/mauve/border{tag = "icon-bordercolor (NORTHEAST)"; icon_state = "bordercolor"; dir = 5},/obj/machinery/requests_console{announcementConsole = 1; department = "Research Director's Desk"; departmentType = 5; name = "Research Director RC"; pixel_x = 30; pixel_y = -2},/turf/simulated/floor/tiled,/area/rnd/rdoffice) -"bEN" = (/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (WEST)"; icon_state = "borderfloor"; dir = 8},/obj/effect/floor_decal/corner/mauve/border{tag = "icon-bordercolor (WEST)"; icon_state = "bordercolor"; dir = 8},/obj/machinery/light{icon_state = "tube1"; dir = 8},/obj/structure/table/rack{dir = 8; layer = 2.9},/obj/item/weapon/storage/toolbox/mechanical,/obj/item/weapon/storage/toolbox/mechanical,/obj/item/device/multitool{pixel_x = 3},/obj/item/weapon/crowbar,/obj/item/weapon/crowbar,/obj/item/weapon/storage/belt/utility,/obj/item/weapon/storage/toolbox/electrical{pixel_x = 1; pixel_y = 6},/turf/simulated/floor/tiled/steel_grid,/area/assembly/robotics) -"bEO" = (/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled/steel_grid,/area/assembly/robotics) -"bEP" = (/obj/effect/floor_decal/industrial/warning{dir = 8},/obj/machinery/firealarm{dir = 1; pixel_x = 0; pixel_y = -25},/turf/simulated/floor/bluegrid,/area/assembly/chargebay) -"bEQ" = (/obj/machinery/mech_recharger,/turf/simulated/floor/tiled/techmaint,/area/assembly/chargebay) -"bER" = (/obj/machinery/light,/turf/simulated/floor/bluegrid,/area/assembly/chargebay) -"bES" = (/obj/effect/floor_decal/industrial/warning{icon_state = "warning"; dir = 4},/obj/machinery/alarm{dir = 1; pixel_y = -25},/turf/simulated/floor/bluegrid,/area/assembly/chargebay) -"bET" = (/obj/machinery/camera/network/northern_star{tag = "icon-camera (NORTH)"; icon_state = "camera"; dir = 1},/turf/simulated/floor/tiled,/area/hallway/lower/third_south) -"bEU" = (/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 1},/turf/simulated/floor/tiled,/area/hallway/lower/third_south) -"bEV" = (/obj/machinery/computer/guestpass{dir = 1; icon_state = "guest"; pixel_y = -28; tag = "icon-guest (NORTH)"},/turf/simulated/floor/tiled,/area/hallway/lower/third_south) -"bEW" = (/obj/machinery/alarm{dir = 1; pixel_y = -25},/turf/simulated/floor/tiled,/area/hallway/lower/third_south) -"bEX" = (/obj/machinery/disposal,/obj/structure/disposalpipe/trunk{dir = 1},/turf/simulated/floor/wood,/area/crew_quarters/bar) -"bEY" = (/obj/machinery/light,/obj/machinery/recharge_station,/turf/simulated/floor/wood,/area/crew_quarters/bar) -"bEZ" = (/obj/effect/floor_decal/spline/plain{dir = 4},/obj/effect/floor_decal/spline/plain{dir = 8},/obj/item/device/radio/intercom{name = "Station Intercom (General)"; pixel_y = -21},/turf/simulated/floor/lino,/area/crew_quarters/bar) -"bFa" = (/obj/machinery/vending/boozeomat,/turf/simulated/floor/lino,/area/crew_quarters/bar) -"bFb" = (/obj/machinery/smartfridge/drinks,/turf/simulated/floor/lino,/area/crew_quarters/bar) -"bFc" = (/obj/structure/table/marble,/obj/machinery/chemical_dispenser/bar_alc/full,/turf/simulated/floor/lino,/area/crew_quarters/bar) -"bFd" = (/obj/structure/table/marble,/obj/machinery/chemical_dispenser/bar_soft/full,/turf/simulated/floor/lino,/area/crew_quarters/bar) -"bFe" = (/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,/obj/machinery/camera/network/civilian{tag = "icon-camera (NORTH)"; icon_state = "camera"; dir = 1},/turf/simulated/floor/lino,/area/crew_quarters/bar) -"bFf" = (/obj/structure/table/marble,/obj/item/weapon/flame/lighter/zippo,/obj/item/weapon/screwdriver,/obj/item/clothing/head/that{pixel_x = 4; pixel_y = 6},/obj/machinery/light,/obj/machinery/computer/guestpass{dir = 8; pixel_x = 25},/turf/simulated/floor/lino,/area/crew_quarters/bar) -"bFg" = (/obj/machinery/light/small{dir = 8; pixel_x = 0},/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 1},/turf/simulated/floor/wood,/area/crew_quarters/bar) -"bFh" = (/obj/structure/closet/gmcloset{icon_closed = "black"; icon_state = "black"; name = "formal wardrobe"},/obj/item/glass_jar,/obj/item/device/retail_scanner/civilian,/obj/item/device/retail_scanner/civilian,/turf/simulated/floor/wood,/area/crew_quarters/bar) -"bFi" = (/obj/structure/bed/chair{dir = 4},/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (WEST)"; icon_state = "borderfloor"; dir = 8},/obj/effect/floor_decal/corner/mauve/border{tag = "icon-bordercolor (WEST)"; icon_state = "bordercolor"; dir = 8},/obj/machinery/power/apc{cell_type = /obj/item/weapon/cell/super; dir = 8; name = "west bump"; pixel_x = -28},/obj/structure/cable/green{icon_state = "0-4"},/turf/simulated/floor/tiled,/area/rnd/rdoffice) -"bFj" = (/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 4},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/tiled,/area/rnd/rdoffice) -"bFk" = (/obj/structure/cable/green{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 9},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 5},/turf/simulated/floor/tiled,/area/rnd/rdoffice) -"bFl" = (/obj/machinery/atmospherics/unary/vent_pump/on{dir = 8},/turf/simulated/floor/tiled,/area/rnd/rdoffice) -"bFm" = (/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (EAST)"; icon_state = "borderfloor"; dir = 4},/obj/effect/floor_decal/corner/mauve/border{tag = "icon-bordercolor (EAST)"; icon_state = "bordercolor"; dir = 4},/obj/structure/table/standard,/obj/item/weapon/cartridge/signal/science,/obj/item/weapon/cartridge/signal/science,/obj/item/clothing/glasses/welding/superior,/obj/machinery/light_switch{pixel_x = 25},/turf/simulated/floor/tiled,/area/rnd/rdoffice) -"bFn" = (/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (WEST)"; icon_state = "borderfloor"; dir = 8},/obj/effect/floor_decal/corner/mauve/border{tag = "icon-bordercolor (WEST)"; icon_state = "bordercolor"; dir = 8},/obj/structure/bed/chair{dir = 4},/obj/machinery/requests_console{department = "Robotics"; departmentType = 2; name = "Robotics RC"; pixel_x = -30; pixel_y = 0},/turf/simulated/floor/tiled/steel_grid,/area/assembly/robotics) -"bFo" = (/obj/effect/floor_decal/industrial/loading{tag = "icon-loadingarea (WEST)"; icon_state = "loadingarea"; dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/tiled/steel_grid,/area/assembly/robotics) -"bFp" = (/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (EAST)"; icon_state = "borderfloor"; dir = 4},/obj/effect/floor_decal/corner/mauve/border{tag = "icon-bordercolor (EAST)"; icon_state = "bordercolor"; dir = 4},/obj/effect/floor_decal/borderfloor/corner2{tag = "icon-borderfloorcorner2 (SOUTHEAST)"; icon_state = "borderfloorcorner2"; dir = 6},/obj/effect/floor_decal/corner/mauve/bordercorner2{tag = "icon-bordercolorcorner2 (SOUTHEAST)"; icon_state = "bordercolorcorner2"; dir = 6},/obj/effect/floor_decal/industrial/warning/corner{icon_state = "warningcorner"; dir = 4},/obj/machinery/mecha_part_fabricator{dir = 8},/turf/simulated/floor/tiled/steel_grid,/area/assembly/robotics) -"bFq" = (/obj/machinery/door/firedoor/glass,/obj/machinery/door/airlock/glass_research{name = "Robotics Lab"; req_access = list(29,47)},/turf/simulated/floor/tiled,/area/assembly/robotics) -"bFr" = (/obj/structure/grille,/obj/structure/window/reinforced{dir = 5; icon_state = "fwindow"},/obj/machinery/door/firedoor,/obj/structure/window/reinforced,/turf/simulated/floor/plating,/area/hallway/lower/third_south) -"bFs" = (/obj/structure/grille,/obj/structure/window/reinforced{dir = 5; icon_state = "fwindow"},/obj/machinery/door/firedoor,/turf/simulated/floor/plating,/area/hallway/lower/third_south) -"bFt" = (/obj/structure/grille,/obj/structure/window/reinforced{dir = 5; icon_state = "fwindow"},/obj/machinery/door/firedoor,/obj/structure/window/reinforced,/obj/structure/window/reinforced{dir = 4},/turf/simulated/floor/plating,/area/crew_quarters/bar) -"bFu" = (/obj/structure/grille,/obj/structure/window/reinforced{dir = 5; icon_state = "fwindow"},/obj/machinery/door/firedoor,/obj/structure/window/reinforced{dir = 8},/turf/simulated/floor/plating,/area/rnd/rdoffice) -"bFv" = (/obj/structure/table/glass,/obj/item/weapon/paper_bin{pixel_x = 1; pixel_y = 9},/obj/item/device/megaphone,/obj/item/weapon/paper/monitorkey,/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (WEST)"; icon_state = "borderfloor"; dir = 8},/obj/effect/floor_decal/corner/mauve/border{tag = "icon-bordercolor (WEST)"; icon_state = "bordercolor"; dir = 8},/turf/simulated/floor/tiled,/area/rnd/rdoffice) -"bFw" = (/obj/structure/table/glass,/obj/item/weapon/folder/white_rd,/turf/simulated/floor/tiled,/area/rnd/rdoffice) -"bFx" = (/obj/structure/table/glass,/obj/machinery/computer/skills,/turf/simulated/floor/tiled,/area/rnd/rdoffice) -"bFy" = (/turf/simulated/floor/tiled,/area/rnd/rdoffice) -"bFz" = (/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (EAST)"; icon_state = "borderfloor"; dir = 4},/obj/effect/floor_decal/corner/mauve/border{tag = "icon-bordercolor (EAST)"; icon_state = "bordercolor"; dir = 4},/turf/simulated/floor/tiled,/area/rnd/rdoffice) -"bFA" = (/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (WEST)"; icon_state = "borderfloor"; dir = 8},/obj/effect/floor_decal/corner/mauve/border{tag = "icon-bordercolor (WEST)"; icon_state = "bordercolor"; dir = 8},/obj/structure/bed/chair{dir = 4},/obj/effect/floor_decal/borderfloor/corner2{tag = "icon-borderfloorcorner2 (SOUTHWEST)"; icon_state = "borderfloorcorner2"; dir = 10},/obj/effect/floor_decal/corner/mauve/bordercorner2{tag = "icon-bordercolorcorner2 (SOUTHWEST)"; icon_state = "bordercolorcorner2"; dir = 10},/turf/simulated/floor/tiled/steel_grid,/area/assembly/robotics) -"bFB" = (/obj/structure/disposalpipe/segment{dir = 1; icon_state = "pipe-c"},/turf/simulated/floor/tiled/steel_grid,/area/assembly/robotics) -"bFC" = (/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled/steel_grid,/area/assembly/robotics) -"bFD" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled/steel_grid,/area/assembly/robotics) -"bFE" = (/obj/effect/floor_decal/borderfloor/corner{tag = "icon-borderfloorcorner (EAST)"; icon_state = "borderfloorcorner"; dir = 4},/obj/effect/floor_decal/corner/mauve/bordercorner{tag = "icon-bordercolorcorner (EAST)"; icon_state = "bordercolorcorner"; dir = 4},/obj/machinery/computer/rdconsole/robotics{dir = 2},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled/steel_grid,/area/assembly/robotics) -"bFF" = (/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (NORTH)"; icon_state = "borderfloor"; dir = 1},/obj/effect/floor_decal/corner/mauve/border{tag = "icon-bordercolor (NORTH)"; icon_state = "bordercolor"; dir = 1},/obj/machinery/pros_fabricator,/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled/steel_grid,/area/assembly/robotics) -"bFG" = (/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (NORTH)"; icon_state = "borderfloor"; dir = 1},/obj/effect/floor_decal/corner/mauve/border{tag = "icon-bordercolor (NORTH)"; icon_state = "bordercolor"; dir = 1},/obj/machinery/autolathe,/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled/steel_grid,/area/assembly/robotics) -"bFH" = (/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (NORTH)"; icon_state = "borderfloor"; dir = 1},/obj/effect/floor_decal/corner/mauve/border{tag = "icon-bordercolor (NORTH)"; icon_state = "bordercolor"; dir = 1},/obj/machinery/r_n_d/circuit_imprinter,/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled/steel_grid,/area/assembly/robotics) -"bFI" = (/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (NORTH)"; icon_state = "borderfloor"; dir = 1},/obj/effect/floor_decal/corner/mauve/border{tag = "icon-bordercolor (NORTH)"; icon_state = "bordercolor"; dir = 1},/obj/structure/table/standard{name = "plastic table frame"},/obj/item/weapon/book/manual/robotics_cyborgs{pixel_x = 2; pixel_y = 5},/obj/machinery/light{dir = 1},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled/steel_grid,/area/assembly/robotics) -"bFJ" = (/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (NORTH)"; icon_state = "borderfloor"; dir = 1},/obj/effect/floor_decal/corner/mauve/border{tag = "icon-bordercolor (NORTH)"; icon_state = "bordercolor"; dir = 1},/obj/structure/table/standard{name = "plastic table frame"},/obj/machinery/camera/network/research{c_tag = "SCI - Xenoflora"; dir = 2},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled/steel_grid,/area/assembly/robotics) -"bFK" = (/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (NORTH)"; icon_state = "borderfloor"; dir = 1},/obj/effect/floor_decal/corner/mauve/border{tag = "icon-bordercolor (NORTH)"; icon_state = "bordercolor"; dir = 1},/obj/structure/table/standard{name = "plastic table frame"},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled/steel_grid,/area/assembly/robotics) -"bFL" = (/obj/structure/closet{name = "materials"},/obj/item/stack/material/steel{amount = 50},/obj/item/stack/material/steel{amount = 50},/obj/item/stack/material/steel{amount = 50},/obj/item/stack/material/steel{amount = 50},/obj/item/stack/material/steel{amount = 50},/obj/item/stack/material/glass{amount = 50; pixel_x = -2; pixel_y = 2},/obj/item/stack/material/glass{amount = 50; pixel_x = -2; pixel_y = 2},/obj/item/stack/material/glass{amount = 50; pixel_x = -2; pixel_y = 2},/obj/item/stack/material/glass{amount = 50; pixel_x = -2; pixel_y = 2},/obj/item/stack/material/plasteel{amount = 10},/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (NORTH)"; icon_state = "borderfloor"; dir = 1},/obj/effect/floor_decal/corner/mauve/border{tag = "icon-bordercolor (NORTH)"; icon_state = "bordercolor"; dir = 1},/obj/machinery/status_display{pixel_y = 30},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled/steel_grid,/area/assembly/robotics) -"bFM" = (/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (NORTH)"; icon_state = "borderfloor"; dir = 1},/obj/effect/floor_decal/corner/mauve/border{tag = "icon-bordercolor (NORTH)"; icon_state = "bordercolor"; dir = 1},/obj/effect/floor_decal/borderfloor/corner2{tag = "icon-borderfloorcorner2 (NORTH)"; icon_state = "borderfloorcorner2"; dir = 1},/obj/effect/floor_decal/corner/mauve/bordercorner2{tag = "icon-bordercolorcorner2 (NORTH)"; icon_state = "bordercolorcorner2"; dir = 1},/obj/structure/sink{pixel_y = 24},/obj/effect/floor_decal/steeldecal/steel_decals4{tag = "icon-steel_decals4 (NORTH)"; icon_state = "steel_decals4"; dir = 1},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled/steel_grid,/area/assembly/robotics) -"bFN" = (/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (NORTHEAST)"; icon_state = "borderfloor"; dir = 5},/obj/effect/floor_decal/corner/mauve/border{tag = "icon-bordercolor (NORTHEAST)"; icon_state = "bordercolor"; dir = 5},/obj/effect/floor_decal/borderfloor/corner2{tag = "icon-borderfloorcorner2 (EAST)"; icon_state = "borderfloorcorner2"; dir = 4},/obj/effect/floor_decal/corner/mauve/bordercorner2{tag = "icon-bordercolorcorner2 (EAST)"; icon_state = "bordercolorcorner2"; dir = 4},/obj/machinery/light_switch{pixel_x = 25},/obj/machinery/disposal,/obj/structure/disposalpipe/trunk{dir = 8},/turf/simulated/floor/tiled/steel_grid,/area/assembly/robotics) -"bFO" = (/obj/structure/grille,/obj/structure/window/reinforced{dir = 5; icon_state = "fwindow"},/obj/machinery/door/firedoor,/obj/structure/window/reinforced{dir = 8},/turf/simulated/floor/plating,/area/hallway/lower/third_south) -"bFP" = (/obj/structure/grille,/obj/structure/window/reinforced{dir = 5; icon_state = "fwindow"},/obj/machinery/door/firedoor,/obj/structure/window/reinforced{dir = 4},/turf/simulated/floor/plating,/area/hallway/lower/third_south) -"bFQ" = (/obj/structure/filingcabinet/chestdrawer,/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (WEST)"; icon_state = "borderfloor"; dir = 8},/obj/effect/floor_decal/corner/mauve/border{tag = "icon-bordercolor (WEST)"; icon_state = "bordercolor"; dir = 8},/turf/simulated/floor/tiled,/area/rnd/rdoffice) -"bFR" = (/obj/structure/bed/chair/office/light{dir = 1},/turf/simulated/floor/tiled,/area/rnd/rdoffice) -"bFS" = (/obj/structure/table/glass,/obj/machinery/photocopier/faxmachine{department = "Research Director's Office"},/turf/simulated/floor/tiled,/area/rnd/rdoffice) -"bFT" = (/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (EAST)"; icon_state = "borderfloor"; dir = 4},/obj/effect/floor_decal/corner/mauve/border{tag = "icon-bordercolor (EAST)"; icon_state = "bordercolor"; dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals4{tag = "icon-steel_decals4 (NORTHEAST)"; icon_state = "steel_decals4"; dir = 5},/turf/simulated/floor/tiled,/area/rnd/rdoffice) -"bFU" = (/obj/structure/ladder,/obj/effect/floor_decal/industrial/outline/blue,/obj/machinery/camera/network/research{c_tag = "SCI - Research Hallway Center"; dir = 4},/turf/simulated/floor/tiled/steel_grid,/area/assembly/robotics) -"bFV" = (/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 4},/turf/simulated/floor/tiled/steel_grid,/area/assembly/robotics) -"bFW" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 5},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 9},/turf/simulated/floor/tiled/steel_grid,/area/assembly/robotics) -"bFX" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled/steel_grid,/area/assembly/robotics) -"bFY" = (/obj/effect/floor_decal/industrial/loading,/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled/steel_grid,/area/assembly/robotics) -"bFZ" = (/obj/machinery/atmospherics/unary/vent_pump/on{dir = 8},/turf/simulated/floor/tiled/steel_grid,/area/assembly/robotics) -"bGa" = (/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (EAST)"; icon_state = "borderfloor"; dir = 4},/obj/effect/floor_decal/corner/mauve/border{tag = "icon-bordercolor (EAST)"; icon_state = "bordercolor"; dir = 4},/obj/machinery/light{icon_state = "tube1"; dir = 4},/obj/structure/extinguisher_cabinet{dir = 8; icon_state = "extinguisher_closed"; pixel_x = 30; tag = "icon-extinguisher_closed (WEST)"},/turf/simulated/floor/tiled/steel_grid,/area/assembly/robotics) -"bGb" = (/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (WEST)"; icon_state = "borderfloor"; dir = 8},/obj/effect/floor_decal/corner/mauve/border{tag = "icon-bordercolor (WEST)"; icon_state = "bordercolor"; dir = 8},/turf/simulated/floor/tiled,/area/rnd/rdoffice) -"bGc" = (/mob/living/simple_animal/slime/science,/turf/simulated/floor/tiled,/area/rnd/rdoffice) -"bGd" = (/obj/structure/table/rack,/obj/item/weapon/rig/hazmat/equipped,/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (EAST)"; icon_state = "borderfloor"; dir = 4},/obj/effect/floor_decal/corner/mauve/border{tag = "icon-bordercolor (EAST)"; icon_state = "bordercolor"; dir = 4},/turf/simulated/floor/tiled,/area/rnd/rdoffice) -"bGe" = (/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (WEST)"; icon_state = "borderfloor"; dir = 8},/obj/effect/floor_decal/corner/mauve/border{tag = "icon-bordercolor (WEST)"; icon_state = "bordercolor"; dir = 8},/obj/structure/bed/chair,/obj/effect/floor_decal/borderfloor/corner2{tag = "icon-borderfloorcorner2 (WEST)"; icon_state = "borderfloorcorner2"; dir = 8},/obj/effect/floor_decal/corner/mauve/bordercorner2{tag = "icon-bordercolorcorner2 (WEST)"; icon_state = "bordercolorcorner2"; dir = 8},/turf/simulated/floor/tiled/steel_grid,/area/assembly/robotics) -"bGf" = (/obj/effect/floor_decal/industrial/warning/corner,/turf/simulated/floor/tiled/steel_grid,/area/assembly/robotics) -"bGg" = (/obj/effect/floor_decal/industrial/warning,/turf/simulated/floor/tiled/steel_grid,/area/assembly/robotics) -"bGh" = (/obj/effect/floor_decal/industrial/warning/corner{dir = 8},/turf/simulated/floor/tiled/steel_grid,/area/assembly/robotics) -"bGi" = (/obj/structure/bed/chair/office/light,/turf/simulated/floor/tiled/steel_grid,/area/assembly/robotics) -"bGj" = (/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (EAST)"; icon_state = "borderfloor"; dir = 4},/obj/effect/floor_decal/corner/mauve/border{tag = "icon-bordercolor (EAST)"; icon_state = "bordercolor"; dir = 4},/obj/structure/table/standard,/obj/item/weapon/paper_bin{pixel_x = -3; pixel_y = 7},/obj/machinery/newscaster{pixel_x = 25},/turf/simulated/floor/tiled/steel_grid,/area/assembly/robotics) -"bGk" = (/obj/machinery/door/firedoor/glass/hidden/steel{dir = 2},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/camera/network/northern_star{tag = "icon-camera (EAST)"; icon_state = "camera"; dir = 4},/turf/simulated/floor/tiled,/area/hallway/lower/third_south) -"bGl" = (/obj/machinery/door/firedoor/glass/hidden/steel{dir = 2},/turf/simulated/floor/tiled,/area/hallway/lower/third_south) -"bGm" = (/obj/machinery/door/firedoor/glass/hidden/steel{dir = 2},/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/tiled,/area/hallway/lower/third_south) -"bGn" = (/obj/machinery/computer/aifixer{dir = 1},/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (SOUTHWEST)"; icon_state = "borderfloor"; dir = 10},/obj/effect/floor_decal/corner/mauve/border{tag = "icon-bordercolor (SOUTHWEST)"; icon_state = "bordercolor"; dir = 10},/obj/machinery/alarm{dir = 1; pixel_y = -25},/turf/simulated/floor/tiled,/area/rnd/rdoffice) -"bGo" = (/obj/machinery/computer/robotics{dir = 1},/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/corner/mauve/border,/turf/simulated/floor/tiled,/area/rnd/rdoffice) -"bGp" = (/obj/machinery/computer/mecha{dir = 1},/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/corner/mauve/border,/obj/machinery/light,/turf/simulated/floor/tiled,/area/rnd/rdoffice) -"bGq" = (/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/corner/mauve/border,/obj/machinery/camera/network/research{c_tag = "SCI - Research Dock Hallway Starboard"; dir = 1},/turf/simulated/floor/tiled,/area/rnd/rdoffice) -"bGr" = (/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (SOUTHEAST)"; icon_state = "borderfloor"; dir = 6},/obj/effect/floor_decal/corner/mauve/border{tag = "icon-bordercolor (SOUTHEAST)"; icon_state = "bordercolor"; dir = 6},/obj/structure/closet/secure_closet/RD,/obj/item/clothing/glasses/omnihud/rnd,/obj/item/device/radio/intercom{name = "Station Intercom (General)"; pixel_y = -21},/turf/simulated/floor/tiled,/area/rnd/rdoffice) -"bGs" = (/obj/machinery/computer/transhuman/resleeving{dir = 1},/obj/item/weapon/book/manual/resleeving,/obj/item/weapon/storage/box/backup_kit,/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (SOUTHWEST)"; icon_state = "borderfloor"; dir = 10},/obj/effect/floor_decal/corner/mauve/border{tag = "icon-bordercolor (SOUTHWEST)"; icon_state = "bordercolor"; dir = 10},/turf/simulated/floor/tiled/steel_grid,/area/assembly/robotics) -"bGt" = (/obj/machinery/transhuman/synthprinter,/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/corner/mauve/border,/turf/simulated/floor/tiled/steel_grid,/area/assembly/robotics) -"bGu" = (/obj/machinery/light,/obj/machinery/transhuman/resleever,/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/corner/mauve/border,/turf/simulated/floor/tiled/steel_grid,/area/assembly/robotics) -"bGv" = (/obj/structure/closet{name = "robotics parts"},/obj/item/weapon/cell/high{charge = 100; maxcharge = 15000; pixel_x = 5; pixel_y = -5},/obj/item/device/assembly/prox_sensor{pixel_x = -8; pixel_y = 4},/obj/item/device/assembly/prox_sensor{pixel_x = -8; pixel_y = 4},/obj/item/weapon/cell/high{charge = 100; maxcharge = 15000; pixel_x = 5; pixel_y = -5},/obj/item/weapon/cell/high{charge = 100; maxcharge = 15000; pixel_x = 5; pixel_y = -5},/obj/item/weapon/cell/high{charge = 100; maxcharge = 15000; pixel_x = 5; pixel_y = -5},/obj/item/weapon/storage/firstaid/regular{empty = 1; name = "First-Aid (empty)"},/obj/item/weapon/storage/firstaid/regular{empty = 1; name = "First-Aid (empty)"},/obj/item/weapon/storage/firstaid/regular{empty = 1; name = "First-Aid (empty)"},/obj/item/device/healthanalyzer,/obj/item/device/healthanalyzer,/obj/item/device/healthanalyzer,/obj/item/device/flash/synthetic,/obj/item/device/flash/synthetic,/obj/item/device/flash/synthetic,/obj/item/device/flash/synthetic,/obj/item/device/flash/synthetic,/obj/item/device/flash/synthetic,/obj/item/stack/cable_coil,/obj/item/stack/cable_coil,/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/corner/mauve/border,/turf/simulated/floor/tiled/steel_grid,/area/assembly/robotics) -"bGw" = (/obj/structure/closet{name = "welding equipment"},/obj/item/clothing/head/welding{pixel_x = -3; pixel_y = 5},/obj/item/clothing/head/welding{pixel_x = -3; pixel_y = 5},/obj/item/clothing/glasses/welding,/obj/item/clothing/glasses/welding,/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/corner/mauve/border,/turf/simulated/floor/tiled/steel_grid,/area/assembly/robotics) -"bGx" = (/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/corner/mauve/border,/obj/effect/floor_decal/industrial/warning{dir = 4},/obj/structure/closet/secure_closet/medical_wall{name = "anesthetic closet"; pixel_x = 0; pixel_y = -32; req_access = list(29)},/obj/item/weapon/tank/anesthetic,/obj/item/weapon/tank/anesthetic,/obj/item/weapon/tank/anesthetic,/obj/item/clothing/mask/breath/medical,/obj/item/clothing/mask/breath/medical,/obj/item/clothing/mask/breath/medical,/turf/simulated/floor/tiled/steel_grid,/area/assembly/robotics) -"bGy" = (/obj/structure/table/standard,/obj/item/device/defib_kit/jumper_kit,/obj/item/weapon/storage/box/gloves,/obj/item/weapon/storage/box/bodybags{pixel_x = -1; pixel_y = -2},/turf/simulated/floor/tiled/white,/area/assembly/robotics) -"bGz" = (/obj/structure/table/standard,/obj/item/weapon/storage/firstaid/surgery,/turf/simulated/floor/tiled/white,/area/assembly/robotics) -"bGA" = (/obj/machinery/optable{name = "Robotics Operating Table"},/turf/simulated/floor/tiled/white,/area/assembly/robotics) -"bGB" = (/obj/structure/table/standard,/obj/item/device/robotanalyzer,/obj/item/device/robotanalyzer,/turf/simulated/floor/tiled/white,/area/assembly/robotics) -"bGC" = (/obj/structure/table/standard,/obj/item/device/mmi/digital/posibrain,/obj/item/device/mmi,/turf/simulated/floor/tiled/white,/area/assembly/robotics) -"bGD" = (/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/corner/mauve/border,/obj/effect/floor_decal/industrial/warning{icon_state = "warning"; dir = 8},/obj/structure/reagent_dispensers/fueltank,/turf/simulated/floor/tiled/steel_grid,/area/assembly/robotics) -"bGE" = (/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/corner/mauve/border,/obj/structure/filingcabinet/chestdrawer,/turf/simulated/floor/tiled/steel_grid,/area/assembly/robotics) -"bGF" = (/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/corner/mauve/border,/obj/structure/table/standard,/obj/machinery/computer/med_data/laptop,/turf/simulated/floor/tiled/steel_grid,/area/assembly/robotics) -"bGG" = (/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (SOUTHEAST)"; icon_state = "borderfloor"; dir = 6},/obj/effect/floor_decal/corner/mauve/border{tag = "icon-bordercolor (SOUTHEAST)"; icon_state = "bordercolor"; dir = 6},/obj/structure/table/standard,/obj/item/weapon/pen,/obj/item/weapon/pen,/obj/item/weapon/pen,/obj/machinery/firealarm{dir = 4; pixel_x = 24},/turf/simulated/floor/tiled/steel_grid,/area/assembly/robotics) -"bGH" = (/obj/machinery/light{icon_state = "tube1"; dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/tiled,/area/hallway/lower/third_south) -"bGI" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/item/device/radio/intercom{dir = 4; name = "Station Intercom (General)"; pixel_x = 21},/turf/simulated/floor/tiled,/area/hallway/lower/third_south) -"bGJ" = (/turf/simulated/wall,/area/tether/surfacebase/shuttle_pad) -"bGK" = (/obj/structure/grille,/obj/structure/window/reinforced{dir = 5; icon_state = "fwindow"},/obj/machinery/door/firedoor,/obj/structure/window/reinforced{dir = 1},/turf/simulated/floor/plating,/area/tether/surfacebase/shuttle_pad) -"bGL" = (/obj/structure/grille,/obj/structure/window/reinforced{dir = 5; icon_state = "fwindow"},/obj/machinery/door/firedoor,/obj/structure/window/reinforced,/turf/simulated/floor/plating,/area/rnd/rdoffice) -"bGM" = (/obj/structure/grille,/obj/structure/window/reinforced{dir = 5; icon_state = "fwindow"},/obj/machinery/door/firedoor,/obj/structure/window/reinforced,/turf/simulated/floor/plating,/area/assembly/robotics) -"bGN" = (/obj/machinery/firealarm{dir = 8; pixel_x = -24},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/tiled,/area/hallway/lower/third_south) -"bGO" = (/obj/structure/closet/firecloset,/turf/simulated/floor/reinforced,/area/tether/surfacebase/shuttle_pad) -"bGP" = (/turf/simulated/floor/reinforced,/area/tether/surfacebase/shuttle_pad) -"bGQ" = (/obj/machinery/computer/shuttle_control/tether_backup,/obj/machinery/airlock_sensor{frequency = 1380; id_tag = "tether_pad_sensor"; pixel_x = -11; pixel_y = 28},/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"},/turf/simulated/floor/reinforced,/area/tether/surfacebase/shuttle_pad) -"bGR" = (/obj/machinery/light{dir = 1},/turf/simulated/floor/reinforced,/area/tether/surfacebase/shuttle_pad) -"bGS" = (/obj/structure/frame/computer,/turf/simulated/floor/reinforced,/area/tether/surfacebase/shuttle_pad) -"bGT" = (/obj/structure/grille,/obj/structure/window/reinforced{dir = 5; icon_state = "fwindow"},/obj/machinery/door/firedoor,/obj/structure/window/reinforced{dir = 8},/turf/simulated/floor/plating,/area/tether/surfacebase/shuttle_pad) -"bGU" = (/obj/effect/floor_decal/industrial/warning/corner,/turf/simulated/floor/reinforced,/area/tether/surfacebase/shuttle_pad) -"bGV" = (/obj/effect/floor_decal/industrial/warning,/turf/simulated/floor/reinforced,/area/tether/surfacebase/shuttle_pad) -"bGW" = (/obj/effect/floor_decal/industrial/warning/corner{icon_state = "warningcorner"; dir = 8},/turf/simulated/floor/reinforced,/area/tether/surfacebase/shuttle_pad) -"bGX" = (/obj/structure/grille,/obj/structure/window/reinforced{dir = 5; icon_state = "fwindow"},/obj/machinery/door/firedoor,/obj/structure/window/reinforced{dir = 4},/turf/simulated/floor/plating,/area/tether/surfacebase/shuttle_pad) -"bGY" = (/obj/effect/floor_decal/industrial/warning{dir = 4},/turf/simulated/floor/reinforced,/area/tether/surfacebase/shuttle_pad) -"bGZ" = (/turf/simulated/shuttle/wall,/area/shuttle/tether/surface) -"bHa" = (/obj/structure/shuttle/window,/obj/structure/grille,/turf/unsimulated/shuttle/plating,/area/shuttle/tether/surface) -"bHb" = (/obj/effect/floor_decal/industrial/warning{icon_state = "warning"; dir = 8},/turf/simulated/floor/reinforced,/area/tether/surfacebase/shuttle_pad) -"bHc" = (/obj/effect/floor_decal/industrial/warning{dir = 4},/obj/machinery/camera/network/civilian{tag = "icon-camera (EAST)"; icon_state = "camera"; dir = 4},/turf/simulated/floor/reinforced,/area/tether/surfacebase/shuttle_pad) -"bHd" = (/obj/structure/closet/firecloset,/turf/simulated/shuttle/floor/black,/area/shuttle/tether/surface) -"bHe" = (/obj/machinery/computer/shuttle_control/tether_backup,/turf/simulated/shuttle/floor/black,/area/shuttle/tether/surface) -"bHf" = (/obj/structure/closet/emcloset,/turf/simulated/shuttle/floor/black,/area/shuttle/tether/surface) -"bHg" = (/obj/structure/bed/chair/shuttle{tag = "icon-shuttle_chair (EAST)"; icon_state = "shuttle_chair"; dir = 4},/turf/simulated/shuttle/floor/black,/area/shuttle/tether/surface) -"bHh" = (/turf/simulated/shuttle/floor/black,/area/shuttle/tether/surface) -"bHi" = (/obj/structure/bed/chair/shuttle{tag = "icon-shuttle_chair (WEST)"; icon_state = "shuttle_chair"; dir = 8},/obj/machinery/embedded_controller/radio/simple_docking_controller{frequency = 1380; id_tag = "tether_shuttle"; pixel_x = 25; pixel_y = 0; tag_door = "tether_shuttle_hatch"},/turf/simulated/shuttle/floor/black,/area/shuttle/tether/surface) -"bHj" = (/obj/machinery/light{dir = 8; icon_state = "tube1"; pixel_y = 0},/turf/simulated/shuttle/floor/black,/area/shuttle/tether/surface) -"bHk" = (/obj/machinery/door/airlock/external{frequency = 1380; icon_state = "door_locked"; id_tag = "tether_shuttle_hatch"; locked = 1; name = "Shuttle Hatch"; req_access = newlist()},/turf/simulated/floor/plating,/area/shuttle/tether/surface) -"bHl" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/camera/network/northern_star{tag = "icon-camera (NORTHWEST)"; icon_state = "camera"; dir = 9},/turf/simulated/floor/tiled,/area/hallway/lower/third_south) -"bHm" = (/obj/machinery/firealarm{dir = 8; pixel_x = -24},/obj/effect/floor_decal/industrial/warning{dir = 4},/turf/simulated/floor/reinforced,/area/tether/surfacebase/shuttle_pad) -"bHn" = (/obj/structure/bed/chair/shuttle{tag = "icon-shuttle_chair (NORTH)"; icon_state = "shuttle_chair"; dir = 1},/turf/simulated/shuttle/floor/black,/area/shuttle/tether/surface) -"bHo" = (/obj/machinery/alarm{dir = 4; icon_state = "alarm0"; pixel_x = -22; pixel_y = 0},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/tiled,/area/hallway/lower/third_south) -"bHp" = (/obj/machinery/light{dir = 4; icon_state = "tube1"},/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/extinguisher_cabinet{dir = 8; icon_state = "extinguisher_closed"; pixel_x = 30; tag = "icon-extinguisher_closed (WEST)"},/turf/simulated/floor/tiled,/area/hallway/lower/third_south) -"bHq" = (/obj/machinery/light{icon_state = "tube1"; dir = 8},/obj/effect/floor_decal/industrial/warning{dir = 4},/obj/structure/extinguisher_cabinet{dir = 4; icon_state = "extinguisher_closed"; pixel_x = -30; tag = "icon-extinguisher_closed (EAST)"},/turf/simulated/floor/reinforced,/area/tether/surfacebase/shuttle_pad) -"bHr" = (/obj/structure/shuttle/engine/heater,/obj/structure/window/reinforced{dir = 1; health = 1e+006},/turf/simulated/shuttle/plating/airless,/area/shuttle/tether/surface) -"bHs" = (/obj/machinery/light{dir = 4; icon_state = "tube1"},/obj/effect/floor_decal/industrial/warning{icon_state = "warning"; dir = 8},/turf/simulated/floor/reinforced,/area/tether/surfacebase/shuttle_pad) -"bHt" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/newscaster{pixel_x = 25},/turf/simulated/floor/tiled,/area/hallway/lower/third_south) -"bHu" = (/obj/machinery/power/apc{cell_type = /obj/item/weapon/cell/super; dir = 8; name = "west bump"; pixel_x = -28},/obj/structure/cable/green{d2 = 2; icon_state = "0-2"},/obj/effect/floor_decal/industrial/warning{dir = 4},/turf/simulated/floor/reinforced,/area/tether/surfacebase/shuttle_pad) -"bHv" = (/turf/simulated/floor/reinforced,/obj/structure/shuttle/engine/propulsion,/turf/simulated/shuttle/plating/carry,/area/shuttle/tether/surface) -"bHw" = (/obj/machinery/atmospherics/unary/vent_scrubber/on,/turf/simulated/floor/tiled,/area/hallway/lower/third_south) -"bHx" = (/obj/structure/grille,/obj/structure/window/reinforced{dir = 5; icon_state = "fwindow"},/obj/machinery/door/firedoor,/turf/simulated/floor/plating,/area/tether/surfacebase/shuttle_pad) -"bHy" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/unary/vent_scrubber/on,/obj/effect/floor_decal/industrial/warning/corner{icon_state = "warningcorner"; dir = 4},/turf/simulated/floor/reinforced,/area/tether/surfacebase/shuttle_pad) -"bHz" = (/obj/effect/floor_decal/industrial/warning{dir = 1},/turf/simulated/floor/reinforced,/area/tether/surfacebase/shuttle_pad) -"bHA" = (/obj/effect/floor_decal/industrial/warning/corner{dir = 1},/turf/simulated/floor/reinforced,/area/tether/surfacebase/shuttle_pad) -"bHB" = (/obj/effect/floor_decal/industrial/warning/corner{icon_state = "warningcorner"; dir = 4},/turf/simulated/floor/reinforced,/area/tether/surfacebase/shuttle_pad) -"bHC" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 5},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 5},/turf/simulated/floor/tiled,/area/hallway/lower/third_south) -"bHD" = (/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 1},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,/turf/simulated/floor/tiled,/area/hallway/lower/third_south) -"bHE" = (/obj/structure/cable/green{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/turf/simulated/floor/tiled,/area/hallway/lower/third_south) -"bHF" = (/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,/area/hallway/lower/third_south) -"bHG" = (/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/external{req_one_access = list()},/turf/simulated/floor/tiled,/area/tether/surfacebase/shuttle_pad) -"bHH" = (/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,/area/tether/surfacebase/shuttle_pad) -"bHI" = (/obj/structure/cable/green{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 10},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 4},/turf/simulated/floor/reinforced,/area/tether/surfacebase/shuttle_pad) -"bHJ" = (/obj/structure/extinguisher_cabinet{dir = 8; icon_state = "extinguisher_closed"; pixel_x = 30; tag = "icon-extinguisher_closed (WEST)"},/turf/simulated/floor/reinforced,/area/tether/surfacebase/shuttle_pad) -"bHK" = (/obj/effect/wingrille_spawn/reinforced,/obj/structure/sign/warning/internals_required,/obj/machinery/door/firedoor/glass,/turf/simulated/floor/plating,/area/tether/surfacebase/shuttle_pad) -"bHL" = (/turf/simulated/floor/tiled,/area/tether/surfacebase/shuttle_pad) -"bHM" = (/obj/effect/wingrille_spawn/reinforced,/obj/structure/sign/warning/nosmoking_1,/obj/machinery/door/firedoor/glass,/turf/simulated/floor/plating,/area/tether/surfacebase/shuttle_pad) -"bHN" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/reinforced,/area/tether/surfacebase/shuttle_pad) -"bHO" = (/obj/machinery/camera/network/civilian{tag = "icon-camera (NORTH)"; icon_state = "camera"; dir = 1},/turf/simulated/floor/reinforced,/area/tether/surfacebase/shuttle_pad) -"bHP" = (/obj/machinery/light,/obj/machinery/atmospherics/unary/vent_pump/on{dir = 1},/turf/simulated/floor/tiled,/area/hallway/lower/third_south) -"bHQ" = (/obj/machinery/door/firedoor/glass,/obj/machinery/door/airlock/external{req_one_access = list()},/turf/simulated/floor/tiled,/area/tether/surfacebase/shuttle_pad) -"bHR" = (/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 5},/turf/simulated/floor/reinforced,/area/tether/surfacebase/shuttle_pad) -"bHS" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/turf/simulated/floor/reinforced,/area/tether/surfacebase/shuttle_pad) -"bHT" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 10},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 10},/turf/simulated/floor/reinforced,/area/tether/surfacebase/shuttle_pad) -"bHU" = (/obj/structure/grille,/obj/structure/window/reinforced{dir = 5; icon_state = "fwindow"},/obj/machinery/door/firedoor,/obj/structure/window/reinforced,/obj/structure/window/reinforced{dir = 8},/turf/simulated/floor/plating,/area/hallway/lower/third_south) -"bHV" = (/obj/structure/grille,/obj/structure/window/reinforced{dir = 5; icon_state = "fwindow"},/obj/machinery/door/firedoor,/obj/structure/window/reinforced,/turf/simulated/floor/plating,/area/tether/surfacebase/shuttle_pad) -"bHW" = (/obj/machinery/atmospherics/unary/vent_pump/on{dir = 1},/turf/simulated/floor/reinforced,/area/tether/surfacebase/shuttle_pad) -"bHX" = (/turf/simulated/floor/tiled/techfloor,/area/tether/surfacebase/shuttle_pad) -"bHY" = (/obj/machinery/light{dir = 1},/turf/simulated/floor/tiled/techfloor,/area/tether/surfacebase/shuttle_pad) -"bHZ" = (/obj/structure/shuttle/engine/propulsion,/turf/simulated/floor/tiled/techfloor,/area/tether/surfacebase/shuttle_pad) -"bIa" = (/obj/item/device/radio/intercom{dir = 8; name = "Station Intercom (General)"; pixel_x = -28},/turf/simulated/floor/reinforced,/area/tether/surfacebase/shuttle_pad) -"bIb" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 5},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 5},/turf/simulated/floor/reinforced,/area/tether/surfacebase/shuttle_pad) -"bIc" = (/obj/machinery/door/airlock/glass,/obj/machinery/door/firedoor/glass,/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/turf/simulated/floor/tiled/techfloor,/area/tether/surfacebase/shuttle_pad) -"bId" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 10},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 10},/turf/simulated/floor/tiled/techfloor,/area/tether/surfacebase/shuttle_pad) -"bIe" = (/obj/structure/table/steel,/obj/item/weapon/storage/toolbox/mechanical,/obj/machinery/atmospherics/unary/vent_pump/on,/turf/simulated/floor/tiled/techfloor,/area/tether/surfacebase/shuttle_pad) -"bIf" = (/obj/machinery/alarm{dir = 4; icon_state = "alarm0"; pixel_x = -22; pixel_y = 0},/turf/simulated/floor/reinforced,/area/tether/surfacebase/shuttle_pad) -"bIg" = (/obj/structure/extinguisher_cabinet{dir = 4; icon_state = "extinguisher_closed"; pixel_x = -30; tag = "icon-extinguisher_closed (EAST)"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 5},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 5},/turf/simulated/floor/tiled/techfloor,/area/tether/surfacebase/shuttle_pad) -"bIh" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/turf/simulated/floor/tiled/techfloor,/area/tether/surfacebase/shuttle_pad) -"bIi" = (/obj/structure/bed/chair,/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/turf/simulated/floor/tiled/techfloor,/area/tether/surfacebase/shuttle_pad) -"bIj" = (/obj/structure/table/steel,/obj/item/weapon/storage/toolbox/electrical,/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 9},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 10},/turf/simulated/floor/tiled/techfloor,/area/tether/surfacebase/shuttle_pad) -"bIk" = (/obj/structure/extinguisher_cabinet{dir = 4; icon_state = "extinguisher_closed"; pixel_x = -30; tag = "icon-extinguisher_closed (EAST)"},/turf/simulated/floor/reinforced,/area/tether/surfacebase/shuttle_pad) -"bIl" = (/obj/machinery/light,/turf/simulated/floor/reinforced,/area/tether/surfacebase/shuttle_pad) -"bIm" = (/obj/structure/kitchenspike{name = "engine hoist"},/turf/simulated/floor/tiled/techfloor,/area/tether/surfacebase/shuttle_pad) -"bIn" = (/obj/machinery/camera/network/engineering{c_tag = "ENG - Pump Station"; dir = 1},/turf/simulated/floor/tiled/techfloor,/area/tether/surfacebase/shuttle_pad) -"bIo" = (/obj/structure/table/steel,/turf/simulated/floor/tiled/techfloor,/area/tether/surfacebase/shuttle_pad) -"bIp" = (/obj/structure/table/steel,/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 1},/turf/simulated/floor/tiled/techfloor,/area/tether/surfacebase/shuttle_pad) -"bIq" = (/obj/machinery/camera/network/northern_star,/turf/simulated/floor/outdoors/grass/sif/virgo3b,/area/tether/surfacebase/outside/outside3) +"aaX" = (/obj/structure/plasticflaps,/obj/machinery/conveyor{dir = 2; id = "mining_interior"},/turf/simulated/floor/plating,/area/tether/surfacebase/mining_main/refinery) +"aaY" = (/turf/simulated/wall,/area/maintenance/lower/trash_pit) +"aaZ" = (/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"},/obj/machinery/door/firedoor/glass,/obj/machinery/door/airlock/external{frequency = 1379; icon_state = "door_locked"; id_tag = "mining_airlock_inner"; locked = 1},/turf/simulated/floor/tiled,/area/tether/surfacebase/mining_main/airlock) +"aba" = (/obj/machinery/door/firedoor/glass,/obj/machinery/door/airlock/external{frequency = 1379; icon_state = "door_locked"; id_tag = "mining_airlock_inner"; locked = 1},/turf/simulated/floor/tiled,/area/tether/surfacebase/mining_main/airlock) +"abb" = (/obj/machinery/conveyor{dir = 6; id = "mining_inbound"},/turf/simulated/floor/plating,/area/tether/surfacebase/mining_main/refinery) +"abc" = (/obj/machinery/conveyor{dir = 8; id = "mining_inbound"},/turf/simulated/floor/plating,/area/tether/surfacebase/mining_main/refinery) +"abd" = (/obj/structure/plasticflaps/mining,/obj/machinery/conveyor{dir = 8; id = "mining_inbound"},/turf/simulated/floor/plating,/area/tether/surfacebase/mining_main/refinery) +"abe" = (/obj/machinery/mineral/input,/obj/machinery/conveyor{dir = 5; id = "mining_inbound"},/turf/simulated/floor/plating,/area/tether/surfacebase/mining_main/refinery) +"abf" = (/obj/machinery/disposal,/obj/structure/disposalpipe/trunk{dir = 4},/turf/simulated/floor/tiled,/area/tether/surfacebase/mining_main/refinery) +"abg" = (/obj/machinery/camera/network/cargo,/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled,/area/tether/surfacebase/mining_main/refinery) +"abh" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/unary/vent_scrubber/on,/obj/machinery/mineral/processing_unit_console{layer = 3.3; pixel_y = 30},/turf/simulated/floor/tiled/steel_grid,/area/tether/surfacebase/mining_main/refinery) +"abi" = (/obj/machinery/alarm{frequency = 1441; pixel_y = 22},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled/steel_grid,/area/tether/surfacebase/mining_main/refinery) +"abj" = (/obj/machinery/firealarm{dir = 2; layer = 3.3; pixel_x = 0; pixel_y = 26},/obj/structure/disposalpipe/segment{dir = 2; icon_state = "pipe-c"},/turf/simulated/floor/tiled,/area/tether/surfacebase/mining_main/refinery) +"abk" = (/obj/machinery/conveyor_switch/oneway{id = "mining_interior"; layer = 3.3; name = "refining conveyor"; pixel_y = 14},/turf/simulated/floor/tiled,/area/tether/surfacebase/mining_main/refinery) +"abl" = (/turf/simulated/floor/tiled,/area/tether/surfacebase/mining_main/refinery) +"abm" = (/obj/machinery/atmospherics/unary/vent_pump/on,/turf/simulated/floor/tiled,/area/tether/surfacebase/mining_main/refinery) +"abn" = (/obj/machinery/mineral/stacking_unit_console{layer = 3.3; pixel_y = 30},/turf/simulated/floor/tiled/steel_grid,/area/tether/surfacebase/mining_main/refinery) +"abo" = (/obj/effect/floor_decal/industrial/loading,/obj/machinery/light_switch{pixel_x = 25},/obj/structure/closet/crate,/turf/simulated/floor/tiled,/area/tether/surfacebase/mining_main/refinery) +"abp" = (/obj/structure/catwalk,/obj/effect/decal/cleanable/dirt,/obj/structure/closet/crate,/turf/simulated/floor/plating,/area/maintenance/lower/trash_pit) +"abq" = (/obj/effect/floor_decal/techfloor{tag = "icon-techfloor_edges (NORTH)"; icon_state = "techfloor_edges"; dir = 1},/obj/effect/floor_decal/techfloor{tag = "icon-techfloor_edges (NORTHEAST)"; icon_state = "techfloor_edges"; dir = 5},/obj/structure/railing{dir = 8},/obj/effect/decal/cleanable/dirt,/obj/effect/floor_decal/rust,/obj/structure/closet,/obj/random/maintenance/clean,/obj/random/maintenance/cargo,/obj/random/drinkbottle,/obj/random/maintenance/cargo,/turf/simulated/floor/plating,/area/maintenance/lower/trash_pit) +"abr" = (/turf/simulated/wall,/area/tether/surfacebase/mining_main/storage) +"abs" = (/obj/machinery/computer/area_atmos/tag{dir = 4; scrub_id = "mining_airlock_scrubber"},/turf/simulated/floor/tiled/techfloor,/area/tether/surfacebase/mining_main/storage) +"abt" = (/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (WEST)"; icon_state = "borderfloor"; dir = 8},/obj/effect/floor_decal/corner/brown/border{tag = "icon-bordercolor (WEST)"; icon_state = "bordercolor"; dir = 8},/obj/effect/floor_decal/borderfloor/corner2{tag = "icon-borderfloorcorner2 (WEST)"; icon_state = "borderfloorcorner2"; dir = 8},/obj/effect/floor_decal/corner/brown/bordercorner2{tag = "icon-bordercolorcorner2 (WEST)"; icon_state = "bordercolorcorner2"; dir = 8},/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,/area/tether/surfacebase/mining_main/storage) +"abu" = (/obj/machinery/light{dir = 4; icon_state = "tube1"},/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (EAST)"; icon_state = "borderfloor"; dir = 4},/obj/effect/floor_decal/corner/brown/border{tag = "icon-bordercolor (EAST)"; icon_state = "bordercolor"; dir = 4},/obj/effect/floor_decal/borderfloor/corner2{tag = "icon-borderfloorcorner2 (SOUTHEAST)"; icon_state = "borderfloorcorner2"; dir = 6},/obj/effect/floor_decal/corner/brown/bordercorner2{tag = "icon-bordercolorcorner2 (SOUTHEAST)"; icon_state = "bordercolorcorner2"; dir = 6},/obj/machinery/access_button/airlock_interior{master_tag = "mining_airlock"; pixel_x = 25; pixel_y = -8},/turf/simulated/floor/tiled,/area/tether/surfacebase/mining_main/storage) +"abv" = (/obj/machinery/conveyor{dir = 6; id = "mining_outbound"},/turf/simulated/floor/plating,/area/tether/surfacebase/mining_main/refinery) +"abw" = (/obj/machinery/conveyor{dir = 8; id = "mining_outbound"},/turf/simulated/floor/plating,/area/tether/surfacebase/mining_main/refinery) +"abx" = (/obj/structure/plasticflaps/mining,/obj/machinery/conveyor{dir = 8; id = "mining_outbound"},/turf/simulated/floor/plating,/area/tether/surfacebase/mining_main/refinery) +"aby" = (/obj/effect/floor_decal/industrial/outline/yellow,/turf/simulated/floor/tiled/steel_dirty,/area/tether/surfacebase/mining_main/refinery) +"abz" = (/obj/effect/floor_decal/industrial/warning{dir = 8},/obj/machinery/conveyor_switch/oneway{id = "mining_outbound"; layer = 3.3; name = "outbound conveyor"; pixel_y = 14},/turf/simulated/floor/tiled/steel_grid,/area/tether/surfacebase/mining_main/refinery) +"abA" = (/obj/machinery/power/apc{dir = 2; name = "south bump"; pixel_y = -28},/obj/structure/cable/green{d2 = 4; icon_state = "0-4"},/turf/simulated/floor/tiled,/area/tether/surfacebase/mining_main/refinery) +"abB" = (/obj/item/device/radio/intercom{name = "Station Intercom (General)"; pixel_y = -21},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 5},/turf/simulated/floor/tiled,/area/tether/surfacebase/mining_main/refinery) +"abC" = (/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/tether/surfacebase/mining_main/refinery) +"abD" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 6},/obj/structure/cable/green{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/structure/disposalpipe/segment,/obj/structure/cable/green{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 1},/turf/simulated/floor/tiled,/area/tether/surfacebase/mining_main/refinery) +"abE" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/turf/simulated/floor/tiled,/area/tether/surfacebase/mining_main/refinery) +"abF" = (/obj/machinery/light,/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/manifold/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/turf/simulated/floor/tiled,/area/tether/surfacebase/mining_main/refinery) +"abG" = (/obj/machinery/newscaster{pixel_x = 0; pixel_y = -30},/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/steel_grid,/area/tether/surfacebase/mining_main/refinery) +"abH" = (/obj/machinery/camera/network/cargo{c_tag = "CRG - Mining Dock"; dir = 1; name = "security camera"},/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,/area/tether/surfacebase/mining_main/refinery) +"abI" = (/obj/machinery/door/airlock/maintenance/common{name = "Trash Pit Access"; req_one_access = list(48)},/obj/machinery/door/firedoor/glass,/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/steel_grid,/area/tether/surfacebase/mining_main/refinery) +"abJ" = (/obj/structure/catwalk,/obj/effect/decal/cleanable/dirt,/obj/structure/cable/green{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 10},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 10},/turf/simulated/floor/plating,/area/maintenance/lower/trash_pit) +"abK" = (/obj/structure/catwalk,/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/plating,/area/maintenance/lower/trash_pit) +"abL" = (/obj/effect/floor_decal/techfloor{tag = "icon-techfloor_edges (EAST)"; icon_state = "techfloor_edges"; dir = 4},/obj/structure/railing{dir = 8},/obj/effect/decal/cleanable/dirt,/obj/effect/floor_decal/rust,/obj/machinery/light/small{dir = 4; pixel_y = 0},/turf/simulated/floor/plating,/area/maintenance/lower/trash_pit) +"abM" = (/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (WEST)"; icon_state = "borderfloor"; dir = 8},/obj/effect/floor_decal/corner/brown/border{tag = "icon-bordercolor (WEST)"; icon_state = "bordercolor"; dir = 8},/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"},/obj/machinery/camera/network/cargo{c_tag = "CRG - Mining Airlock"; dir = 4},/turf/simulated/floor/tiled,/area/tether/surfacebase/mining_main/storage) +"abN" = (/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (EAST)"; icon_state = "borderfloor"; dir = 4},/obj/effect/floor_decal/corner/brown/border{tag = "icon-bordercolor (EAST)"; icon_state = "bordercolor"; dir = 4},/turf/simulated/floor/tiled,/area/tether/surfacebase/mining_main/storage) +"abO" = (/turf/simulated/wall,/area/tether/surfacebase/mining_main/eva) +"abP" = (/obj/structure/grille,/obj/structure/window/reinforced{dir = 5; icon_state = "fwindow"},/obj/machinery/door/firedoor,/turf/simulated/floor/plating,/area/tether/surfacebase/mining_main/eva) +"abQ" = (/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/structure/disposalpipe/segment,/obj/machinery/door/airlock/glass_mining{name = "Production Area"; req_access = list(48)},/turf/simulated/floor/tiled,/area/tether/surfacebase/mining_main/eva) +"abR" = (/obj/machinery/door/firedoor/glass,/obj/machinery/door/airlock/glass_mining{name = "Production Area"; req_access = list(48)},/turf/simulated/floor/tiled,/area/tether/surfacebase/mining_main/eva) +"abS" = (/turf/simulated/wall,/area/tether/surfacebase/mining_main/uxstorage) +"abT" = (/obj/structure/catwalk,/obj/effect/decal/cleanable/dirt,/obj/effect/floor_decal/rust,/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 5},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 5},/turf/simulated/floor/plating,/area/maintenance/lower/trash_pit) +"abU" = (/obj/structure/catwalk,/obj/effect/decal/cleanable/dirt,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 10},/turf/simulated/floor/plating,/area/maintenance/lower/trash_pit) +"abV" = (/obj/effect/floor_decal/techfloor{tag = "icon-techfloor_edges (EAST)"; icon_state = "techfloor_edges"; dir = 4},/obj/structure/railing{dir = 8},/obj/effect/decal/cleanable/dirt,/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 8},/turf/simulated/floor/plating,/area/maintenance/lower/trash_pit) +"abW" = (/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (WEST)"; icon_state = "borderfloor"; dir = 8},/obj/effect/floor_decal/corner/brown/border{tag = "icon-bordercolor (WEST)"; icon_state = "bordercolor"; dir = 8},/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"},/obj/item/device/radio/intercom{dir = 8; name = "Station Intercom (General)"; pixel_x = -28},/turf/simulated/floor/tiled,/area/tether/surfacebase/mining_main/storage) +"abX" = (/obj/effect/floor_decal/borderfloor/corner{tag = "icon-borderfloorcorner (EAST)"; icon_state = "borderfloorcorner"; dir = 4},/obj/effect/floor_decal/corner/brown/bordercorner{tag = "icon-bordercolorcorner (EAST)"; icon_state = "bordercolorcorner"; dir = 4},/turf/simulated/floor/tiled,/area/tether/surfacebase/mining_main/storage) +"abY" = (/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (NORTH)"; icon_state = "borderfloor"; dir = 1},/obj/effect/floor_decal/corner/brown/border{tag = "icon-bordercolor (NORTH)"; icon_state = "bordercolor"; dir = 1},/obj/machinery/firealarm{dir = 2; layer = 3.3; pixel_x = 0; pixel_y = 26},/turf/simulated/floor/tiled,/area/tether/surfacebase/mining_main/storage) +"abZ" = (/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (NORTH)"; icon_state = "borderfloor"; dir = 1},/obj/effect/floor_decal/corner/brown/border{tag = "icon-bordercolor (NORTH)"; icon_state = "bordercolor"; dir = 1},/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/tiled,/area/tether/surfacebase/mining_main/storage) +"aca" = (/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (NORTH)"; icon_state = "borderfloor"; dir = 1},/obj/effect/floor_decal/corner/brown/border{tag = "icon-bordercolor (NORTH)"; icon_state = "bordercolor"; dir = 1},/obj/machinery/light_switch{pixel_y = 25},/turf/simulated/floor/tiled,/area/tether/surfacebase/mining_main/storage) +"acb" = (/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (NORTH)"; icon_state = "borderfloor"; dir = 1},/obj/effect/floor_decal/corner/brown/border{tag = "icon-bordercolor (NORTH)"; icon_state = "bordercolor"; dir = 1},/turf/simulated/floor/tiled,/area/tether/surfacebase/mining_main/storage) +"acc" = (/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (NORTH)"; icon_state = "borderfloor"; dir = 1},/obj/effect/floor_decal/corner/brown/border{tag = "icon-bordercolor (NORTH)"; icon_state = "bordercolor"; dir = 1},/obj/machinery/alarm{frequency = 1441; pixel_y = 22},/turf/simulated/floor/tiled,/area/tether/surfacebase/mining_main/storage) +"acd" = (/obj/machinery/light{dir = 1},/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (NORTH)"; icon_state = "borderfloor"; dir = 1},/obj/effect/floor_decal/corner/brown/border{tag = "icon-bordercolor (NORTH)"; icon_state = "bordercolor"; dir = 1},/turf/simulated/floor/tiled,/area/tether/surfacebase/mining_main/storage) +"ace" = (/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (NORTH)"; icon_state = "borderfloor"; dir = 1},/obj/effect/floor_decal/corner/brown/border{tag = "icon-bordercolor (NORTH)"; icon_state = "bordercolor"; dir = 1},/obj/machinery/disposal,/obj/structure/disposalpipe/trunk,/turf/simulated/floor/tiled,/area/tether/surfacebase/mining_main/storage) +"acf" = (/obj/structure/reagent_dispensers/watertank,/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (NORTH)"; icon_state = "borderfloor"; dir = 1},/obj/effect/floor_decal/corner/brown/border{tag = "icon-bordercolor (NORTH)"; icon_state = "bordercolor"; dir = 1},/obj/machinery/camera/network/cargo,/turf/simulated/floor/tiled,/area/tether/surfacebase/mining_main/storage) +"acg" = (/obj/structure/reagent_dispensers/fueltank,/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (NORTHEAST)"; icon_state = "borderfloor"; dir = 5},/obj/effect/floor_decal/corner/brown/border{tag = "icon-bordercolor (NORTHEAST)"; icon_state = "bordercolor"; dir = 5},/obj/effect/floor_decal/borderfloor/corner2{tag = "icon-borderfloorcorner2 (NORTHEAST)"; icon_state = "borderfloorcorner2"; dir = 5},/obj/effect/floor_decal/corner/brown/bordercorner2{tag = "icon-bordercolorcorner2 (NORTHEAST)"; icon_state = "bordercolorcorner2"; dir = 5},/obj/machinery/status_display{pixel_x = 32; pixel_y = 0},/obj/structure/extinguisher_cabinet{pixel_y = 30},/turf/simulated/floor/tiled,/area/tether/surfacebase/mining_main/storage) +"ach" = (/obj/machinery/recharge_station,/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (NORTHWEST)"; icon_state = "borderfloor"; dir = 9},/obj/effect/floor_decal/corner/brown/border{tag = "icon-bordercolor (NORTHWEST)"; icon_state = "bordercolor"; dir = 9},/obj/effect/floor_decal/borderfloor/corner2{tag = "icon-borderfloorcorner2 (SOUTHWEST)"; icon_state = "borderfloorcorner2"; dir = 10},/obj/effect/floor_decal/corner/brown/bordercorner2{tag = "icon-bordercolorcorner2 (SOUTHWEST)"; icon_state = "bordercolorcorner2"; dir = 10},/turf/simulated/floor/tiled,/area/tether/surfacebase/mining_main/eva) +"aci" = (/obj/structure/closet/secure_closet/miner,/obj/item/weapon/tank/jetpack/oxygen,/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (NORTH)"; icon_state = "borderfloor"; dir = 1},/obj/effect/floor_decal/corner/brown/border{tag = "icon-bordercolor (NORTH)"; icon_state = "bordercolor"; dir = 1},/turf/simulated/floor/tiled,/area/tether/surfacebase/mining_main/eva) +"acj" = (/obj/structure/table/rack,/obj/item/clothing/mask/breath,/obj/item/weapon/mining_scanner,/obj/item/weapon/rig/industrial/equipped,/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (NORTHEAST)"; icon_state = "borderfloor"; dir = 5},/obj/effect/floor_decal/corner/brown/border{tag = "icon-bordercolor (NORTHEAST)"; icon_state = "bordercolor"; dir = 5},/turf/simulated/floor/tiled,/area/tether/surfacebase/mining_main/eva) +"ack" = (/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (NORTHWEST)"; icon_state = "borderfloor"; dir = 9},/obj/effect/floor_decal/corner/brown/border{tag = "icon-bordercolor (NORTHWEST)"; icon_state = "bordercolor"; dir = 9},/obj/effect/floor_decal/borderfloor/corner2{tag = "icon-borderfloorcorner2 (NORTH)"; icon_state = "borderfloorcorner2"; dir = 1},/obj/effect/floor_decal/corner/brown/bordercorner2{tag = "icon-bordercolorcorner2 (NORTH)"; icon_state = "bordercolorcorner2"; dir = 1},/obj/machinery/alarm{dir = 4; icon_state = "alarm0"; pixel_x = -22},/turf/simulated/floor/tiled,/area/tether/surfacebase/mining_main/eva) +"acl" = (/obj/effect/floor_decal/industrial/warning{dir = 1},/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"},/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled,/area/tether/surfacebase/mining_main/eva) +"acm" = (/obj/effect/floor_decal/industrial/warning{dir = 1},/turf/simulated/floor/tiled,/area/tether/surfacebase/mining_main/eva) +"acn" = (/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (NORTHEAST)"; icon_state = "borderfloor"; dir = 5},/obj/effect/floor_decal/corner/brown/border{tag = "icon-bordercolor (NORTHEAST)"; icon_state = "bordercolor"; dir = 5},/obj/effect/floor_decal/borderfloor/corner2{tag = "icon-borderfloorcorner2 (EAST)"; icon_state = "borderfloorcorner2"; dir = 4},/obj/effect/floor_decal/corner/brown/bordercorner2{tag = "icon-bordercolorcorner2 (EAST)"; icon_state = "bordercolorcorner2"; dir = 4},/obj/machinery/light_switch{pixel_x = 25},/obj/machinery/camera/network/cargo,/turf/simulated/floor/tiled,/area/tether/surfacebase/mining_main/eva) +"aco" = (/obj/structure/ore_box,/turf/simulated/floor/tiled,/area/tether/surfacebase/mining_main/uxstorage) +"acp" = (/obj/structure/catwalk,/obj/effect/decal/cleanable/dirt,/obj/effect/floor_decal/rust,/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/plating,/area/maintenance/lower/trash_pit) +"acq" = (/obj/structure/catwalk,/obj/effect/decal/cleanable/dirt,/obj/effect/floor_decal/rust,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/plating,/area/maintenance/lower/trash_pit) +"acr" = (/obj/effect/floor_decal/techfloor{tag = "icon-techfloor_edges (EAST)"; icon_state = "techfloor_edges"; dir = 4},/obj/structure/railing{dir = 8},/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/plating,/area/maintenance/lower/trash_pit) +"acs" = (/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (SOUTHWEST)"; icon_state = "borderfloor"; dir = 10},/obj/effect/floor_decal/corner/brown/border{tag = "icon-bordercolor (SOUTHWEST)"; icon_state = "bordercolor"; dir = 10},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 8},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 8},/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/cable/green{d1 = 2; d2 = 4; icon_state = "2-4"},/turf/simulated/floor/tiled,/area/tether/surfacebase/mining_main/storage) +"act" = (/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/corner/brown/border,/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/tether/surfacebase/mining_main/storage) +"acu" = (/obj/effect/floor_decal/borderfloor/corner{tag = "icon-borderfloorcorner (WEST)"; icon_state = "borderfloorcorner"; dir = 8},/obj/effect/floor_decal/corner/brown/bordercorner{tag = "icon-bordercolorcorner (WEST)"; icon_state = "bordercolorcorner"; dir = 8},/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/tether/surfacebase/mining_main/storage) +"acv" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 10},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 10},/obj/structure/cable/green{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/structure/cable/green{d1 = 1; d2 = 8; icon_state = "1-8"},/turf/simulated/floor/tiled,/area/tether/surfacebase/mining_main/storage) +"acw" = (/turf/simulated/floor/tiled,/area/tether/surfacebase/mining_main/storage) +"acx" = (/obj/machinery/atmospherics/unary/vent_pump/on,/turf/simulated/floor/tiled,/area/tether/surfacebase/mining_main/storage) +"acy" = (/obj/structure/disposalpipe/segment{dir = 1; icon_state = "pipe-c"},/turf/simulated/floor/tiled,/area/tether/surfacebase/mining_main/storage) +"acz" = (/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled,/area/tether/surfacebase/mining_main/storage) +"acA" = (/obj/machinery/door/airlock/glass_mining,/obj/machinery/door/firedoor/glass,/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled,/area/tether/surfacebase/mining_main/eva) +"acB" = (/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled,/area/tether/surfacebase/mining_main/eva) +"acC" = (/obj/machinery/atmospherics/unary/vent_pump/on,/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled,/area/tether/surfacebase/mining_main/eva) +"acD" = (/obj/effect/floor_decal/borderfloor/corner{tag = "icon-borderfloorcorner (EAST)"; icon_state = "borderfloorcorner"; dir = 4},/obj/effect/floor_decal/corner/brown/bordercorner{tag = "icon-bordercolorcorner (EAST)"; icon_state = "bordercolorcorner"; dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled,/area/tether/surfacebase/mining_main/eva) +"acE" = (/obj/machinery/light{dir = 1},/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (NORTH)"; icon_state = "borderfloor"; dir = 1},/obj/effect/floor_decal/corner/brown/border{tag = "icon-bordercolor (NORTH)"; icon_state = "bordercolor"; dir = 1},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled,/area/tether/surfacebase/mining_main/eva) +"acF" = (/obj/effect/floor_decal/borderfloor/corner{tag = "icon-borderfloorcorner (NORTH)"; icon_state = "borderfloorcorner"; dir = 1},/obj/effect/floor_decal/corner/brown/bordercorner{tag = "icon-bordercolorcorner (NORTH)"; icon_state = "bordercolorcorner"; dir = 1},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled,/area/tether/surfacebase/mining_main/eva) +"acG" = (/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"},/obj/structure/disposalpipe/junction,/turf/simulated/floor/tiled,/area/tether/surfacebase/mining_main/eva) +"acH" = (/obj/machinery/atmospherics/unary/vent_scrubber/on,/turf/simulated/floor/tiled,/area/tether/surfacebase/mining_main/eva) +"acI" = (/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (EAST)"; icon_state = "borderfloor"; dir = 4},/obj/effect/floor_decal/corner/brown/border{tag = "icon-bordercolor (EAST)"; icon_state = "bordercolor"; dir = 4},/obj/effect/floor_decal/borderfloor/corner2{tag = "icon-borderfloorcorner2 (NORTHEAST)"; icon_state = "borderfloorcorner2"; dir = 5},/obj/effect/floor_decal/corner/brown/bordercorner2{tag = "icon-bordercolorcorner2 (NORTHEAST)"; icon_state = "bordercolorcorner2"; dir = 5},/turf/simulated/floor/tiled,/area/tether/surfacebase/mining_main/eva) +"acJ" = (/obj/structure/ore_box,/obj/machinery/atmospherics/unary/vent_pump/on,/turf/simulated/floor/tiled,/area/tether/surfacebase/mining_main/uxstorage) +"acK" = (/obj/structure/ore_box,/obj/machinery/atmospherics/unary/vent_scrubber/on,/obj/machinery/alarm{dir = 8; icon_state = "alarm0"; pixel_x = 24},/turf/simulated/floor/tiled,/area/tether/surfacebase/mining_main/uxstorage) +"acL" = (/obj/structure/catwalk,/obj/effect/decal/cleanable/dirt,/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/plating,/area/maintenance/lower/trash_pit) +"acM" = (/obj/effect/floor_decal/techfloor{tag = "icon-techfloor_edges (EAST)"; icon_state = "techfloor_edges"; dir = 4},/obj/structure/railing,/obj/structure/railing{dir = 8},/obj/effect/decal/cleanable/dirt,/obj/machinery/alarm{dir = 8; icon_state = "alarm0"; pixel_x = 24},/obj/structure/closet/crate,/obj/random/maintenance/clean,/obj/random/maintenance/cargo,/obj/random/maintenance/cargo,/turf/simulated/floor/plating,/area/maintenance/lower/trash_pit) +"acN" = (/obj/machinery/door/airlock/maintenance/common{name = "Mining Maintenance Access"; req_one_access = list(48)},/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/firedoor/glass,/turf/simulated/floor/tiled/techfloor,/area/tether/surfacebase/mining_main/storage) +"acO" = (/obj/machinery/light{dir = 8},/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (WEST)"; icon_state = "borderfloor"; dir = 8},/obj/effect/floor_decal/corner/brown/border{tag = "icon-bordercolor (WEST)"; icon_state = "bordercolor"; dir = 8},/turf/simulated/floor/tiled,/area/tether/surfacebase/mining_main/storage) +"acP" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 5},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 5},/obj/structure/cable/green{d1 = 1; d2 = 4; icon_state = "1-4"},/turf/simulated/floor/tiled,/area/tether/surfacebase/mining_main/storage) +"acQ" = (/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/tether/surfacebase/mining_main/storage) +"acR" = (/obj/machinery/atmospherics/pipe/manifold4w/hidden/supply,/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 1},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/tiled,/area/tether/surfacebase/mining_main/storage) +"acS" = (/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/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled,/area/tether/surfacebase/mining_main/storage) +"acT" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/cable/green{d1 = 2; d2 = 8; icon_state = "2-8"},/turf/simulated/floor/tiled,/area/tether/surfacebase/mining_main/storage) +"acU" = (/obj/machinery/door/airlock/glass_mining,/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/tiled,/area/tether/surfacebase/mining_main/eva) +"acV" = (/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/tether/surfacebase/mining_main/eva) +"acW" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/manifold/hidden/supply,/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/tiled,/area/tether/surfacebase/mining_main/eva) +"acX" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/cable/green{d1 = 2; d2 = 8; icon_state = "2-8"},/turf/simulated/floor/tiled,/area/tether/surfacebase/mining_main/eva) +"acY" = (/obj/machinery/atmospherics/pipe/manifold4w/hidden/supply,/obj/machinery/atmospherics/pipe/manifold4w/hidden/scrubbers,/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/structure/disposalpipe/segment,/turf/simulated/floor/tiled,/area/tether/surfacebase/mining_main/eva) +"acZ" = (/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,/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/mining_main/eva) +"ada" = (/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/mining_main/eva) +"adb" = (/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"},/turf/simulated/floor/tiled,/area/tether/surfacebase/mining_main/eva) +"adc" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 9},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/tiled,/area/tether/surfacebase/mining_main/uxstorage) +"add" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 9},/obj/structure/cable/green{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/machinery/light_switch{pixel_x = 25},/turf/simulated/floor/tiled,/area/tether/surfacebase/mining_main/uxstorage) +"ade" = (/obj/structure/catwalk,/obj/effect/decal/cleanable/dirt,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/plating,/area/maintenance/lower/trash_pit) +"adf" = (/turf/simulated/wall,/area/maintenance/lower/xenoflora) +"adg" = (/obj/structure/catwalk,/obj/machinery/atmospherics/pipe/simple/visible/scrubbers,/obj/machinery/atmospherics/pipe/simple/visible/supply,/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/tiled/techfloor,/area/maintenance/lower/xenoflora) +"adh" = (/obj/machinery/recharger,/obj/structure/table/steel,/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (WEST)"; icon_state = "borderfloor"; dir = 8},/obj/effect/floor_decal/corner/brown/border{tag = "icon-bordercolor (WEST)"; icon_state = "bordercolor"; dir = 8},/obj/machinery/requests_console{department = "Cargo Bay"; departmentType = 2; pixel_x = -30; pixel_y = 0},/turf/simulated/floor/tiled,/area/tether/surfacebase/mining_main/storage) +"adi" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/tiled,/area/tether/surfacebase/mining_main/storage) +"adj" = (/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 1},/turf/simulated/floor/tiled,/area/tether/surfacebase/mining_main/storage) +"adk" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/tiled,/area/tether/surfacebase/mining_main/storage) +"adl" = (/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (EAST)"; icon_state = "borderfloor"; dir = 4},/obj/effect/floor_decal/corner/brown/border{tag = "icon-bordercolor (EAST)"; icon_state = "bordercolor"; dir = 4},/obj/effect/floor_decal/borderfloor/corner2{tag = "icon-borderfloorcorner2 (SOUTHEAST)"; icon_state = "borderfloorcorner2"; dir = 6},/obj/effect/floor_decal/corner/brown/bordercorner2{tag = "icon-bordercolorcorner2 (SOUTHEAST)"; icon_state = "bordercolorcorner2"; dir = 6},/turf/simulated/floor/tiled,/area/tether/surfacebase/mining_main/storage) +"adm" = (/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (WEST)"; icon_state = "borderfloor"; dir = 8},/obj/effect/floor_decal/corner/brown/border{tag = "icon-bordercolor (WEST)"; icon_state = "bordercolor"; dir = 8},/obj/effect/floor_decal/borderfloor/corner2{tag = "icon-borderfloorcorner2 (WEST)"; icon_state = "borderfloorcorner2"; dir = 8},/obj/effect/floor_decal/corner/brown/bordercorner2{tag = "icon-bordercolorcorner2 (WEST)"; icon_state = "bordercolorcorner2"; dir = 8},/turf/simulated/floor/tiled,/area/tether/surfacebase/mining_main/eva) +"adn" = (/turf/simulated/floor/tiled,/area/tether/surfacebase/mining_main/eva) +"ado" = (/obj/effect/floor_decal/borderfloor/corner,/obj/effect/floor_decal/corner/brown/bordercorner,/turf/simulated/floor/tiled,/area/tether/surfacebase/mining_main/eva) +"adp" = (/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/corner/brown/border,/obj/machinery/power/apc{dir = 2; name = "south bump"; pixel_y = -28},/obj/structure/cable/green,/turf/simulated/floor/tiled,/area/tether/surfacebase/mining_main/eva) +"adq" = (/obj/effect/floor_decal/borderfloor/corner{tag = "icon-borderfloorcorner (WEST)"; icon_state = "borderfloorcorner"; dir = 8},/obj/effect/floor_decal/corner/brown/bordercorner{tag = "icon-bordercolorcorner (WEST)"; icon_state = "bordercolorcorner"; dir = 8},/turf/simulated/floor/tiled,/area/tether/surfacebase/mining_main/eva) +"adr" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled,/area/tether/surfacebase/mining_main/eva) +"ads" = (/obj/machinery/door/airlock/multi_tile/glass{dir = 2; name = "Mining Storage"; req_one_access = list(48)},/obj/machinery/door/firedoor/glass,/turf/simulated/floor/tiled,/area/tether/surfacebase/mining_main/eva) +"adt" = (/turf/simulated/floor/tiled,/area/tether/surfacebase/mining_main/uxstorage) +"adu" = (/obj/machinery/power/apc{dir = 4; name = "east bump"; pixel_x = 28},/obj/structure/cable/green,/turf/simulated/floor/tiled,/area/tether/surfacebase/mining_main/uxstorage) +"adv" = (/obj/structure/catwalk,/obj/effect/decal/cleanable/dirt,/obj/effect/floor_decal/rust,/obj/structure/cable/green{d1 = 1; d2 = 4; icon_state = "1-4"},/turf/simulated/floor/plating,/area/maintenance/lower/trash_pit) +"adw" = (/obj/structure/catwalk,/obj/effect/decal/cleanable/dirt,/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/plating,/area/maintenance/lower/trash_pit) +"adx" = (/obj/structure/catwalk,/obj/effect/decal/cleanable/dirt,/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/plating,/area/maintenance/lower/trash_pit) +"ady" = (/obj/structure/catwalk,/obj/effect/decal/cleanable/dirt,/obj/structure/cable/green{d1 = 2; d2 = 8; icon_state = "2-8"},/turf/simulated/floor/plating,/area/maintenance/lower/trash_pit) +"adz" = (/obj/machinery/cell_charger,/obj/structure/table/steel,/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (SOUTHWEST)"; icon_state = "borderfloor"; dir = 10},/obj/effect/floor_decal/corner/brown/border{tag = "icon-bordercolor (SOUTHWEST)"; icon_state = "bordercolor"; dir = 10},/turf/simulated/floor/tiled,/area/tether/surfacebase/mining_main/storage) +"adA" = (/obj/structure/table/steel,/obj/item/device/suit_cooling_unit,/obj/item/device/suit_cooling_unit,/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/corner/brown/border,/turf/simulated/floor/tiled,/area/tether/surfacebase/mining_main/storage) +"adB" = (/obj/structure/table/steel,/obj/item/weapon/storage/toolbox/mechanical,/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/corner/brown/border,/obj/effect/floor_decal/borderfloor/corner2{tag = "icon-borderfloorcorner2 (NORTHWEST)"; icon_state = "borderfloorcorner2"; dir = 9},/obj/effect/floor_decal/corner/brown/bordercorner2{tag = "icon-bordercolorcorner2 (NORTHWEST)"; icon_state = "bordercolorcorner2"; dir = 9},/turf/simulated/floor/tiled,/area/tether/surfacebase/mining_main/storage) +"adC" = (/obj/structure/table/rack,/obj/item/weapon/pickaxe/hammer,/obj/item/weapon/wrench,/obj/item/weapon/crowbar,/obj/item/weapon/shovel,/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,/turf/simulated/floor/tiled,/area/tether/surfacebase/mining_main/storage) +"adD" = (/obj/structure/table/rack,/obj/item/weapon/pickaxe,/obj/item/weapon/wrench,/obj/item/weapon/crowbar,/obj/item/weapon/shovel,/obj/machinery/light,/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/corner/brown/border,/obj/effect/floor_decal/borderfloor/corner2{tag = "icon-borderfloorcorner2 (NORTHWEST)"; icon_state = "borderfloorcorner2"; dir = 9},/obj/effect/floor_decal/corner/brown/bordercorner2{tag = "icon-bordercolorcorner2 (NORTHWEST)"; icon_state = "bordercolorcorner2"; dir = 9},/turf/simulated/floor/tiled,/area/tether/surfacebase/mining_main/storage) +"adE" = (/obj/item/weapon/pickaxe,/obj/structure/table/steel,/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,/turf/simulated/floor/tiled,/area/tether/surfacebase/mining_main/storage) +"adF" = (/obj/item/stack/flag/green{pixel_x = -4; pixel_y = 0},/obj/item/stack/flag/red,/obj/item/stack/flag/yellow{pixel_x = 4},/obj/structure/table/steel,/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (SOUTHEAST)"; icon_state = "borderfloor"; dir = 6},/obj/effect/floor_decal/corner/brown/border{tag = "icon-bordercolor (SOUTHEAST)"; icon_state = "bordercolor"; dir = 6},/turf/simulated/floor/tiled,/area/tether/surfacebase/mining_main/storage) +"adG" = (/obj/machinery/suit_cycler/mining,/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (SOUTHWEST)"; icon_state = "borderfloor"; dir = 10},/obj/effect/floor_decal/corner/brown/border{tag = "icon-bordercolor (SOUTHWEST)"; icon_state = "bordercolor"; dir = 10},/turf/simulated/floor/tiled,/area/tether/surfacebase/mining_main/eva) +"adH" = (/obj/structure/table/rack,/obj/item/clothing/suit/space/void/mining,/obj/item/clothing/mask/breath,/obj/item/clothing/head/helmet/space/void/mining,/obj/item/weapon/mining_scanner,/obj/item/clothing/suit/space/void/mining/taur,/obj/item/clothing/head/helmet/space/void/mining,/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/corner/brown/border,/turf/simulated/floor/tiled,/area/tether/surfacebase/mining_main/eva) +"adI" = (/obj/structure/table/rack,/obj/item/clothing/suit/space/void/mining,/obj/item/clothing/mask/breath,/obj/item/clothing/head/helmet/space/void/mining,/obj/item/weapon/mining_scanner,/obj/item/clothing/suit/space/void/mining/taur,/obj/item/clothing/head/helmet/space/void/mining,/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (SOUTHEAST)"; icon_state = "borderfloor"; dir = 6},/obj/effect/floor_decal/corner/brown/border{tag = "icon-bordercolor (SOUTHEAST)"; icon_state = "bordercolor"; dir = 6},/turf/simulated/floor/tiled,/area/tether/surfacebase/mining_main/eva) +"adJ" = (/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (SOUTHWEST)"; icon_state = "borderfloor"; dir = 10},/obj/effect/floor_decal/corner/brown/border{tag = "icon-bordercolor (SOUTHWEST)"; icon_state = "bordercolor"; dir = 10},/obj/effect/floor_decal/borderfloor/corner2{tag = "icon-borderfloorcorner2 (NORTHWEST)"; icon_state = "borderfloorcorner2"; dir = 9},/obj/effect/floor_decal/corner/brown/bordercorner2{tag = "icon-bordercolorcorner2 (NORTHWEST)"; icon_state = "bordercolorcorner2"; dir = 9},/turf/simulated/floor/tiled,/area/tether/surfacebase/mining_main/eva) +"adK" = (/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (SOUTHEAST)"; icon_state = "borderfloor"; dir = 6},/obj/effect/floor_decal/corner/brown/border{tag = "icon-bordercolor (SOUTHEAST)"; icon_state = "bordercolor"; dir = 6},/obj/effect/floor_decal/borderfloor/corner2,/obj/effect/floor_decal/borderfloor/corner2{tag = "icon-borderfloorcorner2 (SOUTHEAST)"; icon_state = "borderfloorcorner2"; dir = 6},/obj/effect/floor_decal/corner/brown/bordercorner2{tag = "icon-bordercolorcorner2 (SOUTHEAST)"; icon_state = "bordercolorcorner2"; dir = 6},/obj/effect/floor_decal/corner/brown/bordercorner2,/obj/machinery/firealarm{dir = 4; pixel_x = 24},/turf/simulated/floor/tiled,/area/tether/surfacebase/mining_main/eva) +"adL" = (/obj/machinery/portable_atmospherics/canister/oxygen,/turf/simulated/floor/tiled,/area/tether/surfacebase/mining_main/uxstorage) +"adM" = (/obj/structure/dispenser/oxygen,/turf/simulated/floor/tiled,/area/tether/surfacebase/mining_main/uxstorage) +"adN" = (/obj/effect/floor_decal/techfloor{tag = "icon-techfloor_edges (SOUTHWEST)"; icon_state = "techfloor_edges"; dir = 10},/obj/structure/railing{dir = 1},/obj/effect/decal/cleanable/dirt,/obj/effect/floor_decal/rust,/obj/structure/table/rack,/obj/random/maintenance/clean,/obj/random/maintenance/cargo,/obj/random/maintenance/cargo,/turf/simulated/floor/plating,/area/maintenance/lower/trash_pit) +"adO" = (/obj/effect/floor_decal/techfloor,/obj/structure/railing{dir = 1},/obj/effect/decal/cleanable/dirt,/obj/effect/floor_decal/rust,/obj/machinery/atmospherics/unary/vent_pump/on{dir = 1},/turf/simulated/floor/plating,/area/maintenance/lower/trash_pit) +"adP" = (/obj/effect/floor_decal/techfloor,/obj/structure/railing{dir = 1},/obj/effect/decal/cleanable/dirt,/obj/effect/floor_decal/rust,/turf/simulated/floor/plating,/area/maintenance/lower/trash_pit) +"adQ" = (/obj/effect/floor_decal/techfloor,/obj/structure/railing{dir = 1},/obj/effect/decal/cleanable/dirt,/obj/random/toolbox,/turf/simulated/floor/plating,/area/maintenance/lower/trash_pit) +"adR" = (/obj/effect/floor_decal/techfloor,/obj/structure/railing{dir = 1},/obj/effect/decal/cleanable/dirt,/obj/machinery/light/small,/turf/simulated/floor/plating,/area/maintenance/lower/trash_pit) +"adS" = (/obj/effect/floor_decal/techfloor,/obj/structure/railing{dir = 1},/obj/structure/railing{dir = 4},/obj/effect/decal/cleanable/dirt,/obj/machinery/power/apc{dir = 2; name = "south bump"; pixel_y = -24},/obj/structure/cable/green,/turf/simulated/floor/plating,/area/maintenance/lower/trash_pit) +"adT" = (/turf/simulated/wall,/area/tether/surfacebase/mining_main/ore) +"adU" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/door/firedoor/glass,/obj/machinery/door/airlock/glass_mining{name = "Warehouse"},/turf/simulated/floor/tiled,/area/tether/surfacebase/mining_main/ore) +"adV" = (/obj/machinery/door/airlock/glass_mining{name = "Warehouse"},/obj/machinery/door/firedoor/glass,/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/tiled,/area/tether/surfacebase/mining_main/ore) +"adW" = (/obj/machinery/door/airlock/glass_mining,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/door/firedoor/glass,/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled,/area/tether/surfacebase/mining_main/eva) +"adX" = (/obj/machinery/door/airlock/glass_mining,/obj/machinery/door/firedoor/glass,/turf/simulated/floor/tiled,/area/tether/surfacebase/mining_main/eva) +"adY" = (/turf/simulated/wall,/area/maintenance/substation/mining) +"adZ" = (/obj/structure/sign/securearea{desc = "A warning sign which reads 'HIGH VOLTAGE'"; icon_state = "shock"; name = "HIGH VOLTAGE"},/turf/simulated/wall,/area/maintenance/substation/mining) +"aea" = (/obj/structure/catwalk,/obj/machinery/atmospherics/pipe/simple/visible/scrubbers{dir = 5},/obj/machinery/atmospherics/pipe/simple/visible/supply{dir = 5},/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/tiled/techfloor,/area/maintenance/lower/xenoflora) +"aeb" = (/obj/machinery/light/small{dir = 1},/obj/structure/railing{dir = 8},/obj/machinery/atmospherics/pipe/simple/visible/scrubbers{dir = 10},/obj/machinery/atmospherics/pipe/simple/visible/supply{dir = 10},/turf/simulated/floor/tiled/techfloor,/area/maintenance/lower/xenoflora) +"aec" = (/obj/effect/floor_decal/rust,/obj/structure/closet,/obj/random/maintenance/cargo,/obj/random/maintenance/clean,/obj/random/medical/lite,/obj/random/maintenance/cargo,/turf/simulated/floor/tiled/techfloor,/area/maintenance/lower/xenoflora) +"aed" = (/obj/structure/closet/crate,/obj/machinery/atmospherics/unary/vent_pump/on{dir = 4},/obj/structure/extinguisher_cabinet{pixel_y = 30},/turf/simulated/floor/tiled/steel_dirty,/area/tether/surfacebase/mining_main/ore) +"aee" = (/obj/effect/floor_decal/rust,/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 9},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/tiled/steel_dirty,/area/tether/surfacebase/mining_main/ore) +"aef" = (/obj/effect/floor_decal/rust,/obj/machinery/alarm{frequency = 1441; pixel_y = 22},/turf/simulated/floor/tiled/steel_dirty,/area/tether/surfacebase/mining_main/ore) +"aeg" = (/obj/item/device/radio/intercom{dir = 1; name = "Station Intercom (General)"; pixel_y = 21},/turf/simulated/floor/tiled/steel_dirty,/area/tether/surfacebase/mining_main/ore) +"aeh" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/tiled/steel_dirty,/area/tether/surfacebase/mining_main/ore) +"aei" = (/obj/machinery/firealarm{dir = 2; layer = 3.3; pixel_x = 0; pixel_y = 26},/turf/simulated/floor/tiled/steel_dirty,/area/tether/surfacebase/mining_main/ore) +"aej" = (/obj/machinery/light_switch{pixel_x = 25},/obj/machinery/camera/network/cargo,/turf/simulated/floor/tiled/steel_dirty,/area/tether/surfacebase/mining_main/ore) +"aek" = (/turf/simulated/wall,/area/tether/surfacebase/mining_main/lobby) +"ael" = (/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (NORTHWEST)"; icon_state = "borderfloor"; dir = 9},/obj/effect/floor_decal/corner/brown/border{tag = "icon-bordercolor (NORTHWEST)"; icon_state = "bordercolor"; dir = 9},/obj/effect/floor_decal/borderfloor/corner2{tag = "icon-borderfloorcorner2 (SOUTHWEST)"; icon_state = "borderfloorcorner2"; dir = 10},/obj/effect/floor_decal/corner/brown/bordercorner2{tag = "icon-bordercolorcorner2 (SOUTHWEST)"; icon_state = "bordercolorcorner2"; dir = 10},/obj/machinery/status_display{pixel_y = 30},/obj/machinery/button/remote/blast_door{id = "qm_warehouse"; name = "Warehouse Door Control"; pixel_x = -26; pixel_y = 0; req_access = list(31)},/turf/simulated/floor/tiled,/area/tether/surfacebase/mining_main/lobby) +"aem" = (/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (NORTH)"; icon_state = "borderfloor"; dir = 1},/obj/effect/floor_decal/corner/brown/border{tag = "icon-bordercolor (NORTH)"; icon_state = "bordercolor"; dir = 1},/turf/simulated/floor/tiled,/area/tether/surfacebase/mining_main/lobby) +"aen" = (/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (NORTH)"; icon_state = "borderfloor"; dir = 1},/obj/effect/floor_decal/corner/brown/border{tag = "icon-bordercolor (NORTH)"; icon_state = "bordercolor"; dir = 1},/obj/machinery/firealarm{dir = 2; layer = 3.3; pixel_x = 0; pixel_y = 26},/turf/simulated/floor/tiled,/area/tether/surfacebase/mining_main/lobby) +"aeo" = (/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (NORTH)"; icon_state = "borderfloor"; dir = 1},/obj/effect/floor_decal/corner/brown/border{tag = "icon-bordercolor (NORTH)"; icon_state = "bordercolor"; dir = 1},/obj/machinery/alarm{frequency = 1441; pixel_y = 22},/turf/simulated/floor/tiled,/area/tether/surfacebase/mining_main/lobby) +"aep" = (/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (NORTH)"; icon_state = "borderfloor"; dir = 1},/obj/effect/floor_decal/corner/brown/border{tag = "icon-bordercolor (NORTH)"; icon_state = "bordercolor"; dir = 1},/obj/effect/floor_decal/borderfloor/corner2{tag = "icon-borderfloorcorner2 (NORTH)"; icon_state = "borderfloorcorner2"; dir = 1},/obj/effect/floor_decal/corner/brown/bordercorner2{tag = "icon-bordercolorcorner2 (NORTH)"; icon_state = "bordercolorcorner2"; dir = 1},/turf/simulated/floor/tiled,/area/tether/surfacebase/mining_main/lobby) +"aeq" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/disposalpipe/junction{icon_state = "pipe-j2"; dir = 2},/turf/simulated/floor/tiled,/area/tether/surfacebase/mining_main/lobby) +"aer" = (/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled,/area/tether/surfacebase/mining_main/lobby) +"aes" = (/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (NORTH)"; icon_state = "borderfloor"; dir = 1},/obj/effect/floor_decal/corner/brown/border{tag = "icon-bordercolor (NORTH)"; icon_state = "bordercolor"; dir = 1},/obj/effect/floor_decal/borderfloor/corner2{tag = "icon-borderfloorcorner2 (EAST)"; icon_state = "borderfloorcorner2"; dir = 4},/obj/effect/floor_decal/corner/brown/bordercorner2{tag = "icon-bordercolorcorner2 (EAST)"; icon_state = "bordercolorcorner2"; dir = 4},/obj/machinery/disposal,/obj/structure/disposalpipe/trunk{dir = 8},/turf/simulated/floor/tiled,/area/tether/surfacebase/mining_main/lobby) +"aet" = (/obj/structure/table/glass,/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (NORTH)"; icon_state = "borderfloor"; dir = 1},/obj/effect/floor_decal/corner/brown/border{tag = "icon-bordercolor (NORTH)"; icon_state = "bordercolor"; dir = 1},/obj/item/device/radio/intercom{dir = 1; name = "Station Intercom (General)"; pixel_y = 21},/turf/simulated/floor/tiled,/area/tether/surfacebase/mining_main/lobby) +"aeu" = (/obj/structure/table/glass,/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (NORTH)"; icon_state = "borderfloor"; dir = 1},/obj/effect/floor_decal/corner/brown/border{tag = "icon-bordercolor (NORTH)"; icon_state = "bordercolor"; dir = 1},/obj/machinery/camera/network/mining,/turf/simulated/floor/tiled,/area/tether/surfacebase/mining_main/lobby) +"aev" = (/obj/structure/flora/pottedplant,/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (NORTHEAST)"; icon_state = "borderfloor"; dir = 5},/obj/effect/floor_decal/corner/brown/border{tag = "icon-bordercolor (NORTHEAST)"; icon_state = "bordercolor"; dir = 5},/obj/structure/extinguisher_cabinet{pixel_y = 30},/turf/simulated/floor/tiled,/area/tether/surfacebase/mining_main/lobby) +"aew" = (/obj/machinery/power/sensor{name = "Powernet Sensor - Mining Subgrid"; name_tag = "Mining Subgrid"},/obj/structure/cable/green{icon_state = "0-4"},/obj/structure/cable/green{d2 = 2; icon_state = "0-2"},/obj/effect/floor_decal/industrial/warning,/turf/simulated/floor,/area/maintenance/substation/mining) +"aex" = (/obj/machinery/light/small{dir = 1},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/effect/floor_decal/industrial/warning/corner{tag = "icon-warningcorner (WEST)"; icon_state = "warningcorner"; dir = 8},/obj/effect/floor_decal/rust,/turf/simulated/floor,/area/maintenance/substation/mining) +"aey" = (/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/alarm{frequency = 1441; pixel_y = 22},/obj/effect/floor_decal/rust,/turf/simulated/floor,/area/maintenance/substation/mining) +"aez" = (/obj/machinery/door/airlock/engineering{name = "Science Substation"; req_one_access = list(11,24,47)},/obj/machinery/door/firedoor/glass,/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor,/area/maintenance/substation/mining) +"aeA" = (/obj/structure/catwalk,/obj/structure/cable/green{d1 = 1; d2 = 8; icon_state = "1-8"},/turf/simulated/floor/tiled/techfloor,/area/maintenance/lower/xenoflora) +"aeB" = (/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{tag = "icon-16-0"; icon_state = "16-0"},/obj/structure/cable{icon_state = "0-2"; d2 = 2},/turf/simulated/floor/tiled/techfloor,/area/maintenance/lower/xenoflora) +"aeC" = (/obj/structure/table/rack,/obj/random/maintenance/clean,/obj/random/maintenance/clean,/obj/random/maintenance/cargo,/turf/simulated/floor/tiled/techfloor,/area/maintenance/lower/xenoflora) +"aeD" = (/obj/structure/closet/crate,/turf/simulated/floor/tiled/steel_dirty,/area/tether/surfacebase/mining_main/ore) +"aeE" = (/obj/effect/floor_decal/rust,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/tiled/steel_dirty,/area/tether/surfacebase/mining_main/ore) +"aeF" = (/turf/simulated/floor/tiled/steel_dirty,/area/tether/surfacebase/mining_main/ore) +"aeG" = (/obj/machinery/door/firedoor/glass,/obj/machinery/door/blast/shutters{dir = 8; id = "qm_warehouse"; name = "Warehouse Shutters"},/turf/simulated/floor/tiled,/area/tether/surfacebase/mining_main/lobby) +"aeH" = (/turf/simulated/floor/tiled,/area/tether/surfacebase/mining_main/lobby) +"aeI" = (/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 4},/turf/simulated/floor/tiled,/area/tether/surfacebase/mining_main/lobby) +"aeJ" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/turf/simulated/floor/tiled,/area/tether/surfacebase/mining_main/lobby) +"aeK" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/disposalpipe/segment{dir = 4; icon_state = "pipe-c"},/turf/simulated/floor/tiled,/area/tether/surfacebase/mining_main/lobby) +"aeL" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled,/area/tether/surfacebase/mining_main/lobby) +"aeM" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 9},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/disposalpipe/segment{dir = 8; icon_state = "pipe-c"},/turf/simulated/floor/tiled,/area/tether/surfacebase/mining_main/lobby) +"aeN" = (/obj/structure/table/glass,/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (EAST)"; icon_state = "borderfloor"; dir = 4},/obj/effect/floor_decal/corner/brown/border{tag = "icon-bordercolor (EAST)"; icon_state = "bordercolor"; dir = 4},/obj/machinery/computer/guestpass{dir = 8; pixel_x = 25},/turf/simulated/floor/tiled,/area/tether/surfacebase/mining_main/lobby) +"aeO" = (/obj/machinery/power/smes/buildable{charge = 0; RCon_tag = "Substation - Mining"},/obj/structure/cable/green,/obj/structure/cable/green{d2 = 2; icon_state = "0-2"},/turf/simulated/floor,/area/maintenance/substation/mining) +"aeP" = (/obj/effect/floor_decal/industrial/warning{dir = 8},/obj/machinery/power/terminal{dir = 8},/obj/structure/cable{icon_state = "0-2"; d2 = 2},/turf/simulated/floor,/area/maintenance/substation/mining) +"aeQ" = (/obj/machinery/power/apc{dir = 4; name = "east bump"; pixel_x = 28},/obj/structure/cable/green,/obj/effect/floor_decal/rust,/turf/simulated/floor,/area/maintenance/substation/mining) +"aeR" = (/obj/structure/catwalk,/turf/simulated/floor/tiled/techfloor,/area/maintenance/lower/xenoflora) +"aeS" = (/obj/structure/railing{dir = 8},/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0},/obj/random/junk,/mob/living/simple_animal/mouse,/turf/simulated/floor/tiled/techfloor,/area/maintenance/lower/xenoflora) +"aeT" = (/obj/effect/decal/cleanable/dirt,/obj/structure/table/rack,/obj/random/maintenance/clean,/obj/random/maintenance/clean,/obj/random/action_figure,/obj/random/maintenance/cargo,/turf/simulated/floor/tiled/techfloor,/area/maintenance/lower/xenoflora) +"aeU" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/tiled/steel_dirty,/area/tether/surfacebase/mining_main/ore) +"aeV" = (/obj/structure/cable/green{d1 = 1; d2 = 4; icon_state = "1-4"},/turf/simulated/floor/tiled/steel_dirty,/area/tether/surfacebase/mining_main/ore) +"aeW" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/tiled/steel_dirty,/area/tether/surfacebase/mining_main/ore) +"aeX" = (/obj/machinery/door/firedoor/glass,/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/door/blast/shutters{dir = 8; id = "qm_warehouse"; name = "Warehouse Shutters"},/turf/simulated/floor/tiled,/area/tether/surfacebase/mining_main/lobby) +"aeY" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/tiled,/area/tether/surfacebase/mining_main/lobby) +"aeZ" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled,/area/tether/surfacebase/mining_main/lobby) +"afa" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 5},/obj/structure/cable/green{d1 = 2; d2 = 8; icon_state = "2-8"},/turf/simulated/floor/tiled,/area/tether/surfacebase/mining_main/lobby) +"afb" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled,/area/tether/surfacebase/mining_main/lobby) +"afc" = (/obj/machinery/atmospherics/unary/vent_pump/on{dir = 8},/turf/simulated/floor/tiled,/area/tether/surfacebase/mining_main/lobby) +"afd" = (/obj/structure/table/glass,/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (EAST)"; icon_state = "borderfloor"; dir = 4},/obj/effect/floor_decal/corner/brown/border{tag = "icon-bordercolor (EAST)"; icon_state = "bordercolor"; dir = 4},/turf/simulated/floor/tiled,/area/tether/surfacebase/mining_main/lobby) +"afe" = (/obj/machinery/power/breakerbox/activated{RCon_tag = "Mining Substation Bypass"},/turf/simulated/floor,/area/maintenance/substation/mining) +"aff" = (/obj/effect/floor_decal/industrial/warning/corner{dir = 1},/obj/structure/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0},/obj/effect/floor_decal/industrial/warning{dir = 8},/obj/machinery/camera/network/engineering{c_tag = "ENG - Pump Station"; dir = 1},/turf/simulated/floor,/area/maintenance/substation/mining) +"afg" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0},/turf/simulated/floor,/area/maintenance/substation/mining) +"afh" = (/obj/machinery/door/airlock/engineering{name = "Science Substation"; req_one_access = list(11,24,47)},/obj/machinery/door/firedoor/glass,/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0},/turf/simulated/floor,/area/maintenance/substation/mining) +"afi" = (/obj/structure/catwalk,/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0},/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/tiled/techfloor,/area/maintenance/lower/xenoflora) +"afj" = (/obj/structure/railing{dir = 8},/obj/structure/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/turf/simulated/floor/tiled/techfloor,/area/maintenance/lower/xenoflora) +"afk" = (/obj/structure/closet/crate,/obj/random/maintenance/cargo,/obj/random/maintenance/clean,/obj/random/maintenance/cargo,/turf/simulated/floor/tiled/techfloor,/area/maintenance/lower/xenoflora) +"afl" = (/obj/effect/floor_decal/rust,/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 4},/turf/simulated/floor/tiled/steel_dirty,/area/tether/surfacebase/mining_main/ore) +"afm" = (/obj/effect/floor_decal/rust,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 9},/turf/simulated/floor/tiled/steel_dirty,/area/tether/surfacebase/mining_main/ore) +"afn" = (/obj/structure/closet/crate,/obj/machinery/light,/turf/simulated/floor/tiled/steel_dirty,/area/tether/surfacebase/mining_main/ore) +"afo" = (/obj/machinery/power/apc{dir = 2; name = "south bump"; pixel_y = -28},/turf/simulated/floor/tiled/steel_dirty,/area/tether/surfacebase/mining_main/ore) +"afp" = (/obj/machinery/button/remote/blast_door{id = "qm_warehouse"; name = "Warehouse Door Control"; pixel_x = 26; pixel_y = 0; req_access = list(31)},/turf/simulated/floor/tiled/steel_dirty,/area/tether/surfacebase/mining_main/ore) +"afq" = (/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (SOUTHWEST)"; icon_state = "borderfloor"; dir = 10},/obj/effect/floor_decal/corner/brown/border{tag = "icon-bordercolor (SOUTHWEST)"; icon_state = "bordercolor"; dir = 10},/obj/effect/floor_decal/borderfloor/corner2{tag = "icon-borderfloorcorner2 (WEST)"; icon_state = "borderfloorcorner2"; dir = 8},/obj/effect/floor_decal/corner/brown/bordercorner2{tag = "icon-bordercolorcorner2 (WEST)"; icon_state = "bordercolorcorner2"; dir = 8},/obj/machinery/disposal,/obj/structure/disposalpipe/trunk{dir = 4},/turf/simulated/floor/tiled,/area/tether/surfacebase/mining_main/lobby) +"afr" = (/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/corner/brown/border,/obj/effect/floor_decal/borderfloor/corner2{tag = "icon-borderfloorcorner2 (NORTHWEST)"; icon_state = "borderfloorcorner2"; dir = 9},/obj/effect/floor_decal/corner/brown/bordercorner2{tag = "icon-bordercolorcorner2 (NORTHWEST)"; icon_state = "bordercolorcorner2"; dir = 9},/obj/machinery/newscaster{pixel_x = 0; pixel_y = -30},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled,/area/tether/surfacebase/mining_main/lobby) +"afs" = (/obj/structure/disposalpipe/junction,/turf/simulated/floor/tiled,/area/tether/surfacebase/mining_main/lobby) +"aft" = (/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,/turf/simulated/floor/tiled,/area/tether/surfacebase/mining_main/lobby) +"afu" = (/obj/machinery/light,/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/corner/brown/border,/turf/simulated/floor/tiled,/area/tether/surfacebase/mining_main/lobby) +"afv" = (/obj/structure/bed/chair{dir = 1},/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/corner/brown/border,/obj/machinery/power/apc{dir = 2; name = "south bump"; pixel_y = -28},/obj/structure/cable/green,/turf/simulated/floor/tiled,/area/tether/surfacebase/mining_main/lobby) +"afw" = (/obj/structure/bed/chair{dir = 1},/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/corner/brown/border,/turf/simulated/floor/tiled,/area/tether/surfacebase/mining_main/lobby) +"afx" = (/obj/structure/reagent_dispensers/water_cooler/full,/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/corner/brown/border,/turf/simulated/floor/tiled,/area/tether/surfacebase/mining_main/lobby) +"afy" = (/obj/structure/flora/pottedplant,/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (SOUTHEAST)"; icon_state = "borderfloor"; dir = 6},/obj/effect/floor_decal/corner/brown/border{tag = "icon-bordercolor (SOUTHEAST)"; icon_state = "bordercolor"; dir = 6},/turf/simulated/floor/tiled,/area/tether/surfacebase/mining_main/lobby) +"afz" = (/obj/structure/catwalk,/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/tiled/techfloor,/area/maintenance/lower/xenoflora) +"afA" = (/obj/machinery/door/airlock/multi_tile/glass,/obj/machinery/door/firedoor/glass,/turf/simulated/floor/tiled,/area/tether/surfacebase/mining_main/lobby) +"afB" = (/obj/machinery/door/firedoor/glass,/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled,/area/tether/surfacebase/mining_main/lobby) +"afC" = (/obj/structure/catwalk,/obj/effect/decal/cleanable/dirt,/obj/random/junk,/obj/random/maintenance/clean,/turf/simulated/floor/plating,/area/maintenance/lower/trash_pit) +"afD" = (/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (WEST)"; icon_state = "borderfloor"; dir = 8},/obj/effect/floor_decal/corner/brown/border{tag = "icon-bordercolor (WEST)"; icon_state = "bordercolor"; dir = 8},/obj/effect/floor_decal/borderfloor/corner2{tag = "icon-borderfloorcorner2 (WEST)"; icon_state = "borderfloorcorner2"; dir = 8},/obj/effect/floor_decal/corner/brown/bordercorner2{tag = "icon-bordercolorcorner2 (WEST)"; icon_state = "bordercolorcorner2"; dir = 8},/obj/machinery/camera/network/mining{tag = "icon-camera (EAST)"; icon_state = "camera"; dir = 4},/turf/simulated/floor/tiled,/area/tether/surfacebase/mining_main/lobby) +"afE" = (/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (EAST)"; icon_state = "borderfloor"; dir = 4},/obj/effect/floor_decal/corner/brown/border{tag = "icon-bordercolor (EAST)"; icon_state = "bordercolor"; dir = 4},/obj/effect/floor_decal/borderfloor/corner2{tag = "icon-borderfloorcorner2 (SOUTHEAST)"; icon_state = "borderfloorcorner2"; dir = 6},/obj/effect/floor_decal/corner/brown/bordercorner2{tag = "icon-bordercolorcorner2 (SOUTHEAST)"; icon_state = "bordercolorcorner2"; dir = 6},/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled,/area/tether/surfacebase/mining_main/lobby) +"afF" = (/obj/structure/catwalk,/obj/structure/catwalk,/obj/effect/decal/cleanable/dirt,/obj/random/junk,/obj/random/maintenance/clean,/turf/simulated/floor/plating,/area/maintenance/lower/trash_pit) +"afG" = (/obj/structure/catwalk,/obj/effect/decal/cleanable/dirt,/obj/machinery/light/small{dir = 1},/obj/random/tool,/turf/simulated/floor/plating,/area/maintenance/lower/trash_pit) +"afH" = (/obj/structure/catwalk,/obj/structure/catwalk,/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/plating,/area/maintenance/lower/trash_pit) +"afI" = (/obj/structure/catwalk,/obj/effect/decal/cleanable/dirt,/obj/machinery/light/small{dir = 1},/turf/simulated/floor/plating,/area/maintenance/lower/trash_pit) +"afJ" = (/turf/simulated/wall,/area/tether/surfacebase/atrium_one) +"afK" = (/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (WEST)"; icon_state = "borderfloor"; dir = 8},/obj/effect/floor_decal/corner/brown/border{tag = "icon-bordercolor (WEST)"; icon_state = "bordercolor"; dir = 8},/obj/item/device/radio/intercom{dir = 8; name = "Station Intercom (General)"; pixel_x = -28},/turf/simulated/floor/tiled,/area/tether/surfacebase/mining_main/lobby) +"afL" = (/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (EAST)"; icon_state = "borderfloor"; dir = 4},/obj/effect/floor_decal/corner/brown/border{tag = "icon-bordercolor (EAST)"; icon_state = "bordercolor"; dir = 4},/obj/machinery/alarm{dir = 8; icon_state = "alarm0"; pixel_x = 24},/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled,/area/tether/surfacebase/mining_main/lobby) +"afM" = (/obj/structure/railing{dir = 8},/obj/structure/railing{dir = 1},/obj/effect/decal/cleanable/dirt,/obj/random/junk,/obj/random/maintenance/cargo,/obj/random/maintenance/clean,/turf/simulated/floor/plating,/area/maintenance/lower/trash_pit) +"afN" = (/obj/effect/decal/cleanable/dirt,/obj/effect/floor_decal/rust,/obj/effect/floor_decal/industrial/warning{icon_state = "warning"; dir = 1},/obj/random/junk,/obj/random/maintenance/clean,/obj/random/maintenance/clean,/turf/simulated/floor/plating,/area/maintenance/lower/trash_pit) +"afO" = (/obj/structure/railing{dir = 1},/obj/structure/railing{dir = 4},/obj/effect/decal/cleanable/dirt,/obj/effect/floor_decal/rust,/obj/random/junk,/obj/random/junk,/obj/random/maintenance/clean,/mob/living/simple_animal/mouse,/turf/simulated/floor/plating,/area/maintenance/lower/trash_pit) +"afP" = (/obj/structure/catwalk,/obj/effect/decal/cleanable/dirt,/obj/random/junk,/obj/random/junk,/obj/random/maintenance/clean,/turf/simulated/floor/plating,/area/maintenance/lower/trash_pit) +"afQ" = (/obj/structure/catwalk,/obj/machinery/alarm{frequency = 1441; pixel_y = 22},/turf/simulated/floor/tiled/techfloor,/area/maintenance/lower/xenoflora) +"afR" = (/obj/machinery/portable_atmospherics/powered/scrubber/huge/stationary{scrub_id = "atrium"},/turf/simulated/floor/tiled/techmaint,/area/tether/surfacebase/atrium_one) +"afS" = (/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (WEST)"; icon_state = "borderfloor"; dir = 8},/obj/effect/floor_decal/corner/brown/border{tag = "icon-bordercolor (WEST)"; icon_state = "bordercolor"; dir = 8},/obj/effect/floor_decal/borderfloor/corner2{tag = "icon-borderfloorcorner2 (SOUTHWEST)"; icon_state = "borderfloorcorner2"; dir = 10},/obj/effect/floor_decal/corner/brown/bordercorner2{tag = "icon-bordercolorcorner2 (SOUTHWEST)"; icon_state = "bordercolorcorner2"; dir = 10},/turf/simulated/floor/tiled,/area/tether/surfacebase/mining_main/lobby) +"afT" = (/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (EAST)"; icon_state = "borderfloor"; dir = 4},/obj/effect/floor_decal/corner/brown/border{tag = "icon-bordercolor (EAST)"; icon_state = "bordercolor"; dir = 4},/obj/effect/floor_decal/borderfloor/corner2{tag = "icon-borderfloorcorner2 (NORTHEAST)"; icon_state = "borderfloorcorner2"; dir = 5},/obj/effect/floor_decal/corner/brown/bordercorner2{tag = "icon-bordercolorcorner2 (NORTHEAST)"; icon_state = "bordercolorcorner2"; dir = 5},/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled,/area/tether/surfacebase/mining_main/lobby) +"afU" = (/obj/structure/catwalk,/obj/effect/decal/cleanable/dirt,/obj/random/junk,/obj/random/junk,/obj/random/maintenance/clean,/obj/random/maintenance/medical,/turf/simulated/floor/plating,/area/maintenance/lower/trash_pit) +"afV" = (/obj/effect/decal/cleanable/dirt,/obj/effect/floor_decal/industrial/warning{icon_state = "warning"; dir = 8},/obj/random/junk,/obj/random/maintenance/cargo,/obj/random/maintenance/clean,/mob/living/simple_animal/mouse,/turf/simulated/floor/plating,/area/maintenance/lower/trash_pit) +"afW" = (/obj/effect/decal/cleanable/dirt,/obj/effect/floor_decal/rust,/obj/random/junk,/obj/random/junk,/obj/random/junk,/obj/random/maintenance/clean,/obj/random/maintenance/clean,/turf/simulated/floor/plating,/area/maintenance/lower/trash_pit) +"afX" = (/obj/effect/decal/cleanable/dirt,/obj/effect/floor_decal/industrial/warning{icon_state = "warning"; dir = 4},/obj/random/junk,/obj/random/maintenance/clean,/obj/random/maintenance/clean,/obj/random/medical/lite,/turf/simulated/floor/plating,/area/maintenance/lower/trash_pit) +"afY" = (/obj/structure/railing{dir = 1},/obj/structure/railing{dir = 8},/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/tiled/techfloor,/area/maintenance/lower/xenoflora) +"afZ" = (/obj/structure/railing{dir = 1},/obj/effect/decal/cleanable/dirt,/obj/random/tool,/turf/simulated/floor/tiled/techfloor,/area/maintenance/lower/xenoflora) +"aga" = (/obj/structure/railing{dir = 1},/obj/effect/decal/cleanable/dirt,/obj/structure/table/rack,/obj/random/maintenance/clean,/obj/random/maintenance/clean,/obj/random/maintenance/cargo,/obj/random/maintenance/cargo,/turf/simulated/floor/tiled/techfloor,/area/maintenance/lower/xenoflora) +"agb" = (/obj/structure/railing{dir = 1},/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/tiled/techfloor,/area/maintenance/lower/xenoflora) +"agc" = (/obj/structure/railing{dir = 1},/obj/effect/floor_decal/rust,/turf/simulated/floor/tiled/techfloor,/area/maintenance/lower/xenoflora) +"agd" = (/obj/structure/railing{dir = 1},/obj/effect/floor_decal/rust,/obj/random/junk,/turf/simulated/floor/tiled/techfloor,/area/maintenance/lower/xenoflora) +"age" = (/obj/structure/railing{dir = 1},/turf/simulated/floor/tiled/techfloor,/area/maintenance/lower/xenoflora) +"agf" = (/obj/structure/grille,/obj/structure/railing,/turf/simulated/floor/tiled/techmaint,/area/tether/surfacebase/atrium_one) +"agg" = (/obj/machinery/door/airlock/multi_tile/glass,/obj/machinery/door/firedoor/glass,/turf/simulated/floor/tiled,/area/tether/surfacebase/atrium_one) +"agh" = (/obj/machinery/door/firedoor/glass,/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled,/area/tether/surfacebase/atrium_one) +"agi" = (/turf/simulated/wall,/area/tether/surfacebase/emergency_storage/atrium) +"agj" = (/obj/structure/catwalk,/obj/effect/decal/cleanable/dirt,/obj/effect/floor_decal/rust,/turf/simulated/floor/plating,/area/maintenance/lower/trash_pit) +"agk" = (/obj/structure/railing{dir = 8},/obj/structure/railing,/obj/effect/decal/cleanable/dirt,/obj/effect/floor_decal/rust,/obj/random/junk,/obj/random/maintenance/security,/obj/random/maintenance/clean,/obj/random/contraband,/obj/random/junk,/obj/random/junk,/obj/random/maintenance/clean,/turf/simulated/floor/plating,/area/maintenance/lower/trash_pit) +"agl" = (/obj/effect/decal/cleanable/dirt,/obj/effect/floor_decal/industrial/warning,/obj/random/junk,/obj/random/maintenance/research,/obj/random/maintenance/clean,/obj/random/tool,/turf/simulated/floor/plating,/area/maintenance/lower/trash_pit) +"agm" = (/obj/structure/railing,/obj/structure/railing{dir = 4},/obj/effect/decal/cleanable/dirt,/obj/random/junk,/obj/random/junk,/obj/random/maintenance/clean,/obj/random/maintenance/clean,/turf/simulated/floor/plating,/area/maintenance/lower/trash_pit) +"agn" = (/obj/structure/catwalk,/obj/effect/decal/cleanable/dirt,/obj/random/maintenance/cargo,/turf/simulated/floor/plating,/area/maintenance/lower/trash_pit) +"ago" = (/turf/simulated/wall,/area/tether/surfacebase/north_stairs_one) +"agp" = (/obj/structure/sign/directions/cargo{dir = 4},/turf/simulated/wall,/area/tether/surfacebase/north_stairs_one) +"agq" = (/obj/structure/sign/directions/evac{dir = 4},/turf/simulated/wall,/area/tether/surfacebase/north_stairs_one) +"agr" = (/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (NORTHWEST)"; icon_state = "borderfloor"; dir = 9},/obj/effect/floor_decal/borderfloor/corner2{tag = "icon-borderfloorcorner2 (SOUTHWEST)"; icon_state = "borderfloorcorner2"; dir = 10},/obj/structure/disposalpipe/segment{dir = 4; icon_state = "pipe-c"},/turf/simulated/floor/tiled,/area/tether/surfacebase/atrium_one) +"ags" = (/obj/machinery/atm{pixel_y = 31},/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (NORTH)"; icon_state = "borderfloor"; dir = 1},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled,/area/tether/surfacebase/atrium_one) +"agt" = (/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (NORTH)"; icon_state = "borderfloor"; dir = 1},/obj/machinery/status_display{pixel_y = 30},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled,/area/tether/surfacebase/atrium_one) +"agu" = (/obj/machinery/light{dir = 1},/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (NORTH)"; icon_state = "borderfloor"; dir = 1},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled,/area/tether/surfacebase/atrium_one) +"agv" = (/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (NORTH)"; icon_state = "borderfloor"; dir = 1},/obj/effect/floor_decal/industrial/warning/corner{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/camera/network/northern_star,/turf/simulated/floor/tiled,/area/tether/surfacebase/atrium_one) +"agw" = (/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (NORTH)"; icon_state = "borderfloor"; dir = 1},/obj/effect/floor_decal/industrial/warning{dir = 1},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled,/area/tether/surfacebase/atrium_one) +"agx" = (/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (NORTH)"; icon_state = "borderfloor"; dir = 1},/obj/effect/floor_decal/industrial/warning/corner{icon_state = "warningcorner"; dir = 1},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled,/area/tether/surfacebase/atrium_one) +"agy" = (/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (NORTH)"; icon_state = "borderfloor"; dir = 1},/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/extinguisher_cabinet{pixel_y = 30},/turf/simulated/floor/tiled,/area/tether/surfacebase/atrium_one) +"agz" = (/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (NORTH)"; icon_state = "borderfloor"; dir = 1},/obj/effect/floor_decal/corner/brown/border{tag = "icon-bordercolor (NORTH)"; icon_state = "bordercolor"; dir = 1},/obj/machinery/newscaster{pixel_x = 0; pixel_y = 30},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled,/area/tether/surfacebase/atrium_one) +"agA" = (/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (NORTH)"; icon_state = "borderfloor"; dir = 1},/obj/effect/floor_decal/corner/brown/border{tag = "icon-bordercolor (NORTH)"; icon_state = "bordercolor"; dir = 1},/obj/effect/floor_decal/borderfloor/corner2{tag = "icon-borderfloorcorner2 (NORTH)"; icon_state = "borderfloorcorner2"; dir = 1},/obj/effect/floor_decal/corner/brown/bordercorner2{tag = "icon-bordercolorcorner2 (NORTH)"; icon_state = "bordercolorcorner2"; dir = 1},/obj/item/device/radio/intercom{dir = 1; name = "Station Intercom (General)"; pixel_y = 21},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled,/area/tether/surfacebase/atrium_one) +"agB" = (/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled,/area/tether/surfacebase/atrium_one) +"agC" = (/obj/structure/disposalpipe/junction{dir = 8},/turf/simulated/floor/tiled,/area/tether/surfacebase/atrium_one) +"agD" = (/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (NORTH)"; icon_state = "borderfloor"; dir = 1},/obj/effect/floor_decal/corner/brown/border{tag = "icon-bordercolor (NORTH)"; icon_state = "bordercolor"; dir = 1},/obj/effect/floor_decal/borderfloor/corner2{tag = "icon-borderfloorcorner2 (EAST)"; icon_state = "borderfloorcorner2"; dir = 4},/obj/effect/floor_decal/corner/brown/bordercorner2{tag = "icon-bordercolorcorner2 (EAST)"; icon_state = "bordercolorcorner2"; dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled,/area/tether/surfacebase/atrium_one) +"agE" = (/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (NORTH)"; icon_state = "borderfloor"; dir = 1},/obj/effect/floor_decal/corner/brown/border{tag = "icon-bordercolor (NORTH)"; icon_state = "bordercolor"; dir = 1},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/camera/network/northern_star,/turf/simulated/floor/tiled,/area/tether/surfacebase/atrium_one) +"agF" = (/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (NORTH)"; icon_state = "borderfloor"; dir = 1},/obj/machinery/firealarm{dir = 2; layer = 3.3; pixel_x = 0; pixel_y = 26},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled,/area/tether/surfacebase/atrium_one) +"agG" = (/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (NORTH)"; icon_state = "borderfloor"; dir = 1},/obj/machinery/status_display{pixel_y = 30},/obj/structure/disposalpipe/junction{dir = 8; icon_state = "pipe-j2"},/turf/simulated/floor/tiled,/area/tether/surfacebase/atrium_one) +"agH" = (/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (NORTHEAST)"; icon_state = "borderfloor"; dir = 5},/obj/machinery/disposal,/obj/structure/disposalpipe/trunk{dir = 8},/turf/simulated/floor/tiled,/area/tether/surfacebase/atrium_one) +"agI" = (/obj/structure/cable{icon_state = "0-2"; d2 = 2},/obj/machinery/power/apc{dir = 1; name = "north bump"; pixel_x = 0; pixel_y = 24},/turf/simulated/floor/tiled/techfloor,/area/tether/surfacebase/emergency_storage/atrium) +"agJ" = (/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) +"agK" = (/obj/machinery/space_heater,/obj/effect/floor_decal/industrial/outline/grey,/obj/machinery/alarm{dir = 8; icon_state = "alarm0"; pixel_x = 24},/turf/simulated/floor/tiled/techfloor,/area/tether/surfacebase/emergency_storage/atrium) +"agL" = (/obj/structure/catwalk,/obj/structure/catwalk,/obj/effect/decal/cleanable/dirt,/obj/effect/floor_decal/rust,/obj/random/junk,/obj/random/maintenance/clean,/obj/random/maintenance/research,/turf/simulated/floor/plating,/area/maintenance/lower/trash_pit) +"agM" = (/obj/machinery/alarm{frequency = 1441; pixel_y = 22},/obj/item/device/radio/intercom{dir = 8; name = "Station Intercom (General)"; pixel_x = -28},/turf/simulated/floor/tiled,/area/tether/surfacebase/north_stairs_one) +"agN" = (/obj/machinery/firealarm{dir = 2; layer = 3.3; pixel_x = 0; pixel_y = 26},/turf/simulated/floor/tiled,/area/tether/surfacebase/north_stairs_one) +"agO" = (/obj/machinery/atmospherics/unary/vent_pump/on,/obj/machinery/camera/network/northern_star,/turf/simulated/floor/tiled,/area/tether/surfacebase/north_stairs_one) +"agP" = (/turf/simulated/floor/tiled,/area/tether/surfacebase/north_stairs_one) +"agQ" = (/obj/machinery/newscaster{pixel_x = 0; pixel_y = 30},/turf/simulated/floor/tiled,/area/tether/surfacebase/north_stairs_one) +"agR" = (/obj/machinery/atmospherics/unary/vent_scrubber/on,/turf/simulated/floor/tiled,/area/tether/surfacebase/north_stairs_one) +"agS" = (/obj/machinery/light{dir = 1},/turf/simulated/floor/tiled,/area/tether/surfacebase/north_stairs_one) +"agT" = (/obj/structure/extinguisher_cabinet{pixel_y = 30},/turf/simulated/floor/tiled,/area/tether/surfacebase/north_stairs_one) +"agU" = (/obj/effect/floor_decal/spline/plain{dir = 4},/obj/machinery/door/firedoor/glass,/turf/simulated/floor/tiled,/area/tether/surfacebase/atrium_one) +"agV" = (/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled,/area/tether/surfacebase/atrium_one) +"agW" = (/obj/structure/cable{d1 = 2; d2 = 4; icon_state = "2-4"},/turf/simulated/floor/tiled,/area/tether/surfacebase/atrium_one) +"agX" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0},/turf/simulated/floor/tiled,/area/tether/surfacebase/atrium_one) +"agY" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0},/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled,/area/tether/surfacebase/atrium_one) +"agZ" = (/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (EAST)"; icon_state = "borderfloor"; dir = 4},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0},/turf/simulated/floor/tiled,/area/tether/surfacebase/atrium_one) +"aha" = (/obj/machinery/door/airlock/maintenance/int{name = "Emergency Storage"},/obj/machinery/door/firedoor/glass,/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0},/turf/simulated/floor/tiled/techfloor,/area/tether/surfacebase/atrium_one) +"ahb" = (/obj/structure/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0},/turf/simulated/floor/tiled/techfloor,/area/tether/surfacebase/emergency_storage/atrium) +"ahc" = (/obj/structure/cable{d1 = 2; d2 = 8; icon_state = "2-8"},/turf/simulated/floor/tiled/techfloor,/area/tether/surfacebase/emergency_storage/atrium) +"ahd" = (/obj/machinery/floodlight,/obj/effect/floor_decal/industrial/outline/yellow,/obj/machinery/light/small{dir = 4; pixel_y = 0},/turf/simulated/floor/tiled/techfloor,/area/tether/surfacebase/emergency_storage/atrium) +"ahe" = (/obj/effect/floor_decal/industrial/warning,/obj/machinery/computer/guestpass{dir = 4; pixel_x = -28; pixel_y = 0},/turf/simulated/floor/tiled,/area/tether/surfacebase/north_stairs_one) +"ahf" = (/obj/effect/floor_decal/industrial/warning,/turf/simulated/floor/tiled,/area/tether/surfacebase/north_stairs_one) +"ahg" = (/obj/machinery/light/small,/obj/effect/floor_decal/industrial/warning/corner{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 5},/turf/simulated/floor/tiled,/area/tether/surfacebase/north_stairs_one) +"ahh" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled,/area/tether/surfacebase/north_stairs_one) +"ahi" = (/obj/structure/cable{icon_state = "0-4"},/obj/machinery/power/apc{dir = 2; name = "south bump"; pixel_y = -28},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 5},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled,/area/tether/surfacebase/north_stairs_one) +"ahj" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled,/area/tether/surfacebase/north_stairs_one) +"ahk" = (/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},/turf/simulated/floor/tiled,/area/tether/surfacebase/atrium_one) +"ahl" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 10},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 10},/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled,/area/tether/surfacebase/atrium_one) +"ahm" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0},/obj/structure/cable{d1 = 2; d2 = 8; icon_state = "2-8"},/turf/simulated/floor/tiled,/area/tether/surfacebase/atrium_one) +"ahn" = (/turf/simulated/floor/grass,/area/tether/surfacebase/atrium_one) +"aho" = (/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (EAST)"; icon_state = "borderfloor"; dir = 4},/turf/simulated/floor/tiled,/area/tether/surfacebase/atrium_one) +"ahp" = (/obj/structure/closet/firecloset,/turf/simulated/floor/tiled/techfloor,/area/tether/surfacebase/emergency_storage/atrium) +"ahq" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0},/turf/simulated/floor/tiled/techfloor,/area/tether/surfacebase/emergency_storage/atrium) +"ahr" = (/obj/structure/table/standard,/obj/item/device/t_scanner,/obj/item/weapon/storage/briefcase/inflatable,/turf/simulated/floor/tiled/techfloor,/area/tether/surfacebase/emergency_storage/atrium) +"ahs" = (/obj/structure/extinguisher_cabinet{dir = 4; icon_state = "extinguisher_closed"; pixel_x = -30; tag = "icon-extinguisher_closed (EAST)"},/turf/simulated/floor/tiled,/area/tether/surfacebase/north_stairs_one) +"aht" = (/obj/structure/sign/directions/medical{dir = 1; icon_state = "direction_med"; pixel_y = 8; tag = "icon-direction_med (EAST)"},/obj/structure/sign/directions/science{dir = 1; icon_state = "direction_sci"; pixel_y = 3; tag = "icon-direction_sci (WEST)"},/obj/structure/sign/directions/security{dir = 1; icon_state = "direction_sec"; pixel_y = -4; tag = "icon-direction_sec (WEST)"},/obj/structure/sign/directions/engineering{dir = 1; icon_state = "direction_eng"; pixel_y = -10; tag = "icon-direction_eng (WEST)"},/turf/simulated/wall,/area/tether/surfacebase/north_stairs_one) +"ahu" = (/obj/machinery/door/firedoor/glass,/obj/machinery/door/airlock{name = "Secondary Janitorial Closet"; req_access = list(26)},/turf/simulated/floor/tiled,/area/tether/surfacebase/north_stairs_one) +"ahv" = (/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (WEST)"; icon_state = "borderfloor"; dir = 8},/obj/effect/floor_decal/borderfloor/corner2{tag = "icon-borderfloorcorner2 (WEST)"; icon_state = "borderfloorcorner2"; dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled,/area/tether/surfacebase/atrium_one) +"ahw" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0},/turf/simulated/floor/tiled,/area/tether/surfacebase/atrium_one) +"ahx" = (/obj/machinery/light/flamp/noshade,/turf/simulated/floor/grass,/area/tether/surfacebase/atrium_one) +"ahy" = (/obj/structure/flora/ausbushes/ppflowers,/turf/simulated/floor/grass,/area/tether/surfacebase/atrium_one) +"ahz" = (/obj/machinery/door/airlock/maintenance/common,/obj/machinery/door/firedoor/glass,/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0},/turf/simulated/floor/tiled/techfloor,/area/tether/surfacebase/emergency_storage/atrium) +"ahA" = (/obj/structure/catwalk,/obj/machinery/light/small{dir = 4},/turf/simulated/floor/tiled/techfloor,/area/maintenance/lower/xenoflora) +"ahB" = (/obj/structure/stairs/south,/turf/simulated/floor/tiled,/area/tether/surfacebase/north_stairs_one) +"ahC" = (/obj/structure/reagent_dispensers/watertank,/turf/simulated/floor/tiled,/area/tether/surfacebase/north_stairs_one) +"ahD" = (/obj/machinery/light{dir = 8},/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (WEST)"; icon_state = "borderfloor"; dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled,/area/tether/surfacebase/atrium_one) +"ahE" = (/obj/structure/table/bench/wooden,/turf/simulated/floor/grass,/area/tether/surfacebase/atrium_one) +"ahF" = (/turf/simulated/floor/water/pool,/area/tether/surfacebase/atrium_one) +"ahG" = (/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (EAST)"; icon_state = "borderfloor"; dir = 4},/obj/machinery/light{dir = 4; icon_state = "tube1"},/turf/simulated/floor/tiled,/area/tether/surfacebase/atrium_one) +"ahH" = (/turf/simulated/wall,/area/maintenance/lower/vacant_site) +"ahI" = (/obj/structure/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/turf/simulated/floor/tiled/techfloor,/area/maintenance/lower/vacant_site) +"ahJ" = (/obj/structure/cable{d1 = 2; d2 = 8; icon_state = "2-8"},/turf/simulated/floor/tiled/techfloor,/area/maintenance/lower/vacant_site) +"ahK" = (/obj/machinery/alarm{dir = 8; icon_state = "alarm0"; pixel_x = 24},/turf/simulated/floor/tiled,/area/tether/surfacebase/north_stairs_one) +"ahL" = (/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (WEST)"; icon_state = "borderfloor"; dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled,/area/tether/surfacebase/atrium_one) +"ahM" = (/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (EAST)"; icon_state = "borderfloor"; dir = 4},/obj/effect/floor_decal/industrial/warning/corner,/turf/simulated/floor/tiled,/area/tether/surfacebase/atrium_one) +"ahN" = (/obj/machinery/door/airlock/maintenance/common,/obj/machinery/door/firedoor/glass,/obj/structure/cable{tag = "icon-1-2"; icon_state = "1-2"},/turf/simulated/floor/tiled/techfloor,/area/maintenance/lower/vacant_site) +"ahO" = (/obj/structure/catwalk,/obj/structure/closet,/obj/random/maintenance/cargo,/obj/random/maintenance/clean,/obj/random/action_figure,/obj/random/maintenance/cargo,/turf/simulated/floor/plating,/area/maintenance/lower/vacant_site) +"ahP" = (/obj/structure/catwalk,/obj/machinery/alarm{frequency = 1441; pixel_y = 22},/turf/simulated/floor/plating,/area/maintenance/lower/vacant_site) +"ahQ" = (/obj/structure/catwalk,/turf/simulated/floor/plating,/area/maintenance/lower/vacant_site) +"ahR" = (/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,/turf/simulated/floor/tiled,/area/tether/surfacebase/north_stairs_one) +"ahS" = (/obj/machinery/light/small,/obj/structure/mopbucket,/obj/item/weapon/reagent_containers/glass/bucket,/obj/item/weapon/mop,/turf/simulated/floor/tiled,/area/tether/surfacebase/north_stairs_one) +"ahT" = (/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (EAST)"; icon_state = "borderfloor"; dir = 4},/obj/effect/floor_decal/industrial/warning{icon_state = "warning"; dir = 4},/turf/simulated/floor/tiled,/area/tether/surfacebase/atrium_one) +"ahU" = (/obj/structure/grille,/obj/structure/railing{dir = 8},/turf/simulated/floor/tiled/techmaint,/area/tether/surfacebase/atrium_one) +"ahV" = (/obj/machinery/door/airlock/maintenance/common,/obj/machinery/door/firedoor/glass,/turf/simulated/floor/tiled/techfloor,/area/maintenance/lower/vacant_site) +"ahW" = (/obj/structure/catwalk,/obj/structure/cable{tag = "icon-1-4"; icon_state = "1-4"},/turf/simulated/floor/plating,/area/maintenance/lower/vacant_site) +"ahX" = (/obj/structure/catwalk,/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0},/turf/simulated/floor/plating,/area/maintenance/lower/vacant_site) +"ahY" = (/obj/structure/catwalk,/obj/structure/cable{d1 = 2; d2 = 8; icon_state = "2-8"},/turf/simulated/floor/plating,/area/maintenance/lower/vacant_site) +"ahZ" = (/obj/structure/ladder/up,/obj/structure/catwalk,/obj/effect/floor_decal/industrial/outline/yellow,/turf/simulated/floor/plating,/area/maintenance/lower/vacant_site) +"aia" = (/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (WEST)"; icon_state = "borderfloor"; dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/item/device/radio/intercom{dir = 8; name = "Station Intercom (General)"; pixel_x = -28},/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled,/area/tether/surfacebase/atrium_one) +"aib" = (/obj/structure/flora/ausbushes/brflowers,/turf/simulated/floor/grass,/area/tether/surfacebase/atrium_one) +"aic" = (/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (EAST)"; icon_state = "borderfloor"; dir = 4},/obj/effect/floor_decal/industrial/warning/corner{icon_state = "warningcorner"; dir = 4},/turf/simulated/floor/tiled,/area/tether/surfacebase/atrium_one) +"aid" = (/obj/structure/railing{dir = 1},/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/plating,/area/maintenance/lower/vacant_site) +"aie" = (/obj/structure/railing{dir = 1},/obj/structure/cable,/obj/machinery/power/apc{dir = 2; name = "south bump"; pixel_y = -28},/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/plating,/area/maintenance/lower/vacant_site) +"aif" = (/obj/structure/railing{dir = 1},/obj/effect/decal/cleanable/dirt,/obj/effect/floor_decal/rust,/turf/simulated/floor/plating,/area/maintenance/lower/vacant_site) +"aig" = (/obj/structure/railing{dir = 1},/turf/simulated/floor/plating,/area/maintenance/lower/vacant_site) +"aih" = (/obj/structure/railing{dir = 1},/obj/structure/table/rack,/obj/random/maintenance/clean,/obj/random/maintenance/clean,/obj/random/maintenance/cargo,/turf/simulated/floor/plating,/area/maintenance/lower/vacant_site) +"aii" = (/obj/structure/railing{dir = 1},/obj/structure/railing{dir = 4},/obj/structure/closet/crate,/obj/random/maintenance/cargo,/obj/random/maintenance/clean,/obj/random/maintenance/cargo,/turf/simulated/floor/plating,/area/maintenance/lower/vacant_site) +"aij" = (/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (WEST)"; icon_state = "borderfloor"; dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/disposalpipe/segment,/obj/machinery/camera/network/northern_star{tag = "icon-camera (NORTHEAST)"; icon_state = "camera"; dir = 5},/turf/simulated/floor/tiled,/area/tether/surfacebase/atrium_one) +"aik" = (/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (EAST)"; icon_state = "borderfloor"; dir = 4},/obj/machinery/camera/network/northern_star{tag = "icon-camera (NORTHWEST)"; icon_state = "camera"; dir = 9},/turf/simulated/floor/tiled,/area/tether/surfacebase/atrium_one) +"ail" = (/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/plating,/area/maintenance/lower/vacant_site) +"aim" = (/obj/structure/railing{dir = 4},/obj/structure/railing{dir = 1},/obj/random/junk,/turf/simulated/floor/tiled/techfloor,/area/maintenance/lower/xenoflora) +"ain" = (/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (WEST)"; icon_state = "borderfloor"; dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/computer/guestpass{dir = 4; pixel_x = -28; pixel_y = 0},/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled,/area/tether/surfacebase/atrium_one) +"aio" = (/obj/structure/flora/ausbushes/ywflowers,/turf/simulated/floor/grass,/area/tether/surfacebase/atrium_one) +"aip" = (/obj/structure/flora/ausbushes/ywflowers,/obj/structure/flora/ausbushes/ywflowers,/turf/simulated/floor/grass,/area/tether/surfacebase/atrium_one) +"aiq" = (/obj/effect/decal/cleanable/dirt,/obj/effect/floor_decal/rust,/turf/simulated/floor/plating,/area/maintenance/lower/vacant_site) +"air" = (/obj/effect/floor_decal/rust,/obj/effect/floor_decal/industrial/outline/yellow,/obj/structure/disposalpipe/up{tag = "icon-pipe-u (EAST)"; icon_state = "pipe-u"; dir = 4},/turf/simulated/floor/tiled/techfloor,/area/maintenance/lower/xenoflora) +"ais" = (/obj/structure/railing{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled/techfloor,/area/maintenance/lower/xenoflora) +"ait" = (/obj/structure/catwalk,/obj/structure/disposalpipe/segment{dir = 2; icon_state = "pipe-c"},/turf/simulated/floor/tiled/techfloor,/area/maintenance/lower/xenoflora) +"aiu" = (/obj/structure/sign/directions/evac,/turf/simulated/wall,/area/tether/surfacebase/atrium_one) +"aiv" = (/turf/simulated/wall,/area/vacant/vacant_site) +"aiw" = (/obj/machinery/door/airlock/maintenance/common,/obj/machinery/door/firedoor/glass,/turf/simulated/floor/plating,/area/vacant/vacant_site) +"aix" = (/turf/simulated/mineral,/area/vacant/vacant_site) +"aiy" = (/obj/machinery/door/airlock/maintenance/common,/obj/machinery/door/firedoor/glass,/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled/techfloor,/area/maintenance/lower/xenoflora) +"aiz" = (/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (EAST)"; icon_state = "borderfloor"; dir = 4},/obj/item/device/radio/intercom{dir = 4; name = "Station Intercom (General)"; pixel_x = 21},/turf/simulated/floor/tiled,/area/tether/surfacebase/atrium_one) +"aiA" = (/obj/machinery/alarm{frequency = 1441; pixel_y = 22},/obj/effect/floor_decal/rust,/turf/simulated/floor/plating,/area/vacant/vacant_site) +"aiB" = (/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/plating,/area/vacant/vacant_site) +"aiC" = (/turf/simulated/floor/plating,/area/vacant/vacant_site) +"aiD" = (/obj/structure/closet,/obj/random/maintenance/clean,/obj/random/medical/lite,/obj/random/maintenance/research,/obj/random/maintenance/medical,/turf/simulated/floor/plating,/area/vacant/vacant_site) +"aiE" = (/obj/structure/railing{dir = 4},/obj/machinery/atmospherics/pipe/simple/visible/scrubbers{tag = "icon-intact-scrubbers (SOUTHEAST)"; icon_state = "intact-scrubbers"; dir = 6},/obj/effect/floor_decal/rust,/obj/structure/closet,/obj/random/maintenance/engineering,/obj/random/maintenance/research,/obj/random/drinkbottle,/obj/random/maintenance/research,/turf/simulated/floor/tiled/techfloor,/area/maintenance/lower/xenoflora) +"aiF" = (/obj/structure/catwalk,/obj/machinery/atmospherics/pipe/simple/visible/scrubbers{tag = "icon-intact-scrubbers (EAST)"; icon_state = "intact-scrubbers"; dir = 4},/obj/machinery/alarm{frequency = 1441; pixel_y = 22},/obj/effect/floor_decal/rust,/turf/simulated/floor/tiled/techfloor,/area/maintenance/lower/xenoflora) +"aiG" = (/obj/structure/catwalk,/obj/machinery/atmospherics/pipe/simple/visible/scrubbers{tag = "icon-intact-scrubbers (SOUTHWEST)"; icon_state = "intact-scrubbers"; dir = 10},/turf/simulated/floor/tiled/techfloor,/area/maintenance/lower/xenoflora) +"aiH" = (/obj/structure/catwalk,/obj/machinery/firealarm{dir = 2; layer = 3.3; pixel_x = 0; pixel_y = 26},/turf/simulated/floor/tiled/techfloor,/area/maintenance/lower/xenoflora) +"aiI" = (/obj/structure/catwalk,/obj/structure/disposalpipe/segment{dir = 1; icon_state = "pipe-c"},/turf/simulated/floor/tiled/techfloor,/area/maintenance/lower/xenoflora) +"aiJ" = (/obj/structure/catwalk,/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled/techfloor,/area/maintenance/lower/xenoflora) +"aiK" = (/obj/machinery/door/airlock/maintenance/common,/obj/machinery/door/firedoor/glass,/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled/techfloor,/area/tether/surfacebase/atrium_one) +"aiL" = (/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (WEST)"; icon_state = "borderfloor"; dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/disposalpipe/segment{dir = 8; icon_state = "pipe-c"},/turf/simulated/floor/tiled,/area/tether/surfacebase/atrium_one) +"aiM" = (/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (EAST)"; icon_state = "borderfloor"; dir = 4},/obj/structure/extinguisher_cabinet{dir = 2; icon_state = "extinguisher_closed"; pixel_x = 30; tag = "icon-extinguisher_closed (WEST)"},/turf/simulated/floor/tiled,/area/tether/surfacebase/atrium_one) +"aiN" = (/obj/effect/floor_decal/rust,/obj/structure/closet/crate,/obj/random/maintenance/clean,/obj/random/toolbox,/obj/random/maintenance/security,/turf/simulated/floor/plating,/area/vacant/vacant_site) +"aiO" = (/obj/effect/decal/cleanable/dirt,/obj/effect/floor_decal/rust,/turf/simulated/floor/plating,/area/vacant/vacant_site) +"aiP" = (/obj/structure/railing{dir = 4},/obj/machinery/atmospherics/pipe/simple/visible/scrubbers,/obj/effect/floor_decal/rust,/turf/simulated/floor/tiled/techfloor,/area/maintenance/lower/xenoflora) +"aiQ" = (/obj/structure/railing{dir = 8},/obj/structure/railing{dir = 1},/obj/machinery/atmospherics/pipe/simple/visible/universal,/turf/simulated/floor/tiled/techfloor,/area/maintenance/lower/xenoflora) +"aiR" = (/obj/structure/railing{dir = 1},/obj/random/junk,/turf/simulated/floor/tiled/techfloor,/area/maintenance/lower/xenoflora) +"aiS" = (/obj/structure/railing{dir = 1},/obj/effect/decal/cleanable/dirt,/obj/structure/table/rack,/obj/random/maintenance/clean,/obj/random/maintenance/clean,/obj/random/maintenance/research,/turf/simulated/floor/tiled/techfloor,/area/maintenance/lower/xenoflora) +"aiT" = (/obj/structure/railing{dir = 1},/obj/structure/table/rack,/obj/random/maintenance/clean,/obj/random/maintenance/research,/obj/random/maintenance/research,/turf/simulated/floor/tiled/techfloor,/area/maintenance/lower/xenoflora) +"aiU" = (/obj/structure/railing{dir = 1},/obj/structure/closet/crate,/obj/random/maintenance/security,/obj/random/maintenance/clean,/obj/random/maintenance/research,/turf/simulated/floor/tiled/techfloor,/area/maintenance/lower/xenoflora) +"aiV" = (/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (WEST)"; icon_state = "borderfloor"; dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/tiled,/area/tether/surfacebase/atrium_one) +"aiW" = (/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (EAST)"; icon_state = "borderfloor"; dir = 4},/obj/machinery/status_display{pixel_x = 32; pixel_y = 0},/turf/simulated/floor/tiled,/area/tether/surfacebase/atrium_one) +"aiX" = (/obj/random/junk,/turf/simulated/floor/plating,/area/vacant/vacant_site) +"aiY" = (/turf/simulated/wall,/area/tether/surfacebase/tram) +"aiZ" = (/obj/structure/sign/warning{name = "\improper STAND AWAY FROM TRACK EDGE"},/turf/simulated/wall,/area/tether/surfacebase/tram) +"aja" = (/obj/machinery/door/blast/regular,/turf/simulated/wall,/area/tether/surfacebase/tram) +"ajb" = (/obj/machinery/door/blast/regular,/turf/simulated/floor/maglev,/area/tether/surfacebase/tram) +"ajc" = (/obj/machinery/door/blast/regular,/turf/simulated/floor/tiled/techfloor/grid,/area/tether/surfacebase/tram) +"ajd" = (/obj/structure/sign/warning/docking_area,/turf/simulated/wall,/area/tether/surfacebase/tram) +"aje" = (/obj/structure/railing{dir = 4},/obj/machinery/atmospherics/pipe/simple/visible/scrubbers,/turf/simulated/floor/tiled/techfloor,/area/maintenance/lower/xenoflora) +"ajf" = (/obj/structure/railing{dir = 8},/obj/machinery/atmospherics/binary/passive_gate{dir = 1},/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/tiled/techfloor,/area/maintenance/lower/xenoflora) +"ajg" = (/obj/machinery/light/small{dir = 4; pixel_y = 0},/turf/simulated/floor/tiled/techfloor,/area/maintenance/lower/xenoflora) +"ajh" = (/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (WEST)"; icon_state = "borderfloor"; dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/extinguisher_cabinet{dir = 4; icon_state = "extinguisher_closed"; pixel_x = -30; tag = "icon-extinguisher_closed (EAST)"},/turf/simulated/floor/tiled,/area/tether/surfacebase/atrium_one) +"aji" = (/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (EAST)"; icon_state = "borderfloor"; dir = 4},/obj/machinery/computer/guestpass{dir = 8; pixel_x = 25},/turf/simulated/floor/tiled,/area/tether/surfacebase/atrium_one) +"ajj" = (/obj/structure/flora/pottedplant{tag = "icon-plant-10"; icon_state = "plant-10"},/turf/simulated/floor/tiled,/area/tether/surfacebase/tram) +"ajk" = (/obj/structure/bed/chair,/obj/machinery/camera/network/northern_star,/turf/simulated/floor/tiled,/area/tether/surfacebase/tram) +"ajl" = (/obj/structure/bed/chair,/obj/machinery/firealarm{dir = 2; layer = 3.3; pixel_x = 0; pixel_y = 26},/turf/simulated/floor/tiled,/area/tether/surfacebase/tram) +"ajm" = (/obj/structure/bed/chair,/obj/machinery/status_display{pixel_y = 30},/turf/simulated/floor/tiled,/area/tether/surfacebase/tram) +"ajn" = (/obj/machinery/alarm{frequency = 1441; pixel_y = 22},/obj/machinery/disposal,/obj/structure/disposalpipe/trunk,/turf/simulated/floor/tiled,/area/tether/surfacebase/tram) +"ajo" = (/obj/machinery/light{dir = 1},/obj/item/device/radio/intercom{dir = 1; name = "Station Intercom (General)"; pixel_y = 21},/turf/simulated/floor/tiled,/area/tether/surfacebase/tram) +"ajp" = (/obj/effect/floor_decal/industrial/danger{tag = "icon-danger (EAST)"; icon_state = "danger"; dir = 4},/turf/simulated/floor/tiled/steel_grid,/area/tether/surfacebase/tram) +"ajq" = (/obj/effect/floor_decal/techfloor/orange{tag = "icon-techfloororange_edges (WEST)"; icon_state = "techfloororange_edges"; dir = 8},/turf/simulated/floor/tiled/techfloor/grid,/area/tether/surfacebase/tram) +"ajr" = (/turf/simulated/floor/tiled/techfloor/grid,/area/tether/surfacebase/tram) +"ajs" = (/turf/simulated/floor/maglev,/area/tether/surfacebase/tram) +"ajt" = (/obj/effect/floor_decal/techfloor/orange{tag = "icon-techfloororange_edges (EAST)"; icon_state = "techfloororange_edges"; dir = 4},/turf/simulated/floor/tiled/techfloor/grid,/area/tether/surfacebase/tram) +"aju" = (/obj/structure/railing{dir = 4},/obj/machinery/atmospherics/pipe/simple/visible/yellow{dir = 6},/obj/machinery/atmospherics/pipe/simple/visible/scrubbers,/obj/structure/table/rack,/obj/random/maintenance/clean,/obj/random/maintenance/clean,/obj/random/maintenance/research,/turf/simulated/floor/tiled/techfloor,/area/maintenance/lower/xenoflora) +"ajv" = (/obj/structure/catwalk,/obj/machinery/atmospherics/pipe/simple/visible/yellow{dir = 4},/turf/simulated/floor/tiled/techfloor,/area/maintenance/lower/xenoflora) +"ajw" = (/obj/structure/railing{dir = 8},/obj/machinery/atmospherics/pipe/manifold/visible/yellow,/turf/simulated/floor/tiled/techfloor,/area/maintenance/lower/xenoflora) +"ajx" = (/obj/machinery/atmospherics/pipe/tank/phoron{dir = 8; icon_state = "phoron_map"; name = "Xenoflora Waste Buffer"; start_pressure = 0; tag = "icon-phoron_map (WEST)"},/turf/simulated/floor/tiled/techfloor,/area/maintenance/lower/xenoflora) +"ajy" = (/obj/effect/floor_decal/rust,/turf/simulated/floor/plating,/area/vacant/vacant_site) +"ajz" = (/obj/effect/floor_decal/rust,/obj/structure/table/rack,/obj/random/maintenance/clean,/obj/random/maintenance/clean,/obj/random/maintenance/cargo,/turf/simulated/floor/plating,/area/vacant/vacant_site) +"ajA" = (/obj/structure/bed/chair{dir = 4},/obj/machinery/computer/guestpass{dir = 4; pixel_x = -28; pixel_y = 0},/turf/simulated/floor/tiled,/area/tether/surfacebase/tram) +"ajB" = (/turf/simulated/floor/tiled,/area/tether/surfacebase/tram) +"ajC" = (/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled,/area/tether/surfacebase/tram) +"ajD" = (/obj/effect/floor_decal/techfloor/orange{tag = "icon-techfloororange_edges (EAST)"; icon_state = "techfloororange_edges"; dir = 4},/obj/machinery/light{dir = 4; icon_state = "tube1"; pixel_x = 0},/turf/simulated/floor/tiled/techfloor/grid,/area/tether/surfacebase/tram) +"ajE" = (/obj/structure/railing{dir = 4},/obj/machinery/atmospherics/pipe/simple/visible/scrubbers,/obj/machinery/atmospherics/pipe/simple/visible/yellow,/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/tiled/techfloor,/area/maintenance/lower/xenoflora) +"ajF" = (/obj/machinery/light{dir = 8},/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (WEST)"; icon_state = "borderfloor"; dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/tiled,/area/tether/surfacebase/atrium_one) +"ajG" = (/obj/effect/decal/cleanable/dirt,/obj/random/junk,/turf/simulated/floor/plating,/area/vacant/vacant_site) +"ajH" = (/obj/structure/bed/chair{dir = 4},/obj/machinery/light{dir = 8},/turf/simulated/floor/tiled,/area/tether/surfacebase/tram) +"ajI" = (/obj/machinery/atmospherics/unary/vent_pump/on,/turf/simulated/floor/tiled,/area/tether/surfacebase/tram) +"ajJ" = (/obj/machinery/atmospherics/unary/vent_scrubber/on,/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled,/area/tether/surfacebase/tram) +"ajK" = (/turf/simulated/floor/maglev,/area/shuttle/escape/station) +"ajL" = (/turf/simulated/floor/tiled/techfloor/grid,/area/shuttle/escape/station) +"ajM" = (/obj/structure/railing{dir = 4},/obj/machinery/atmospherics/pipe/simple/visible/scrubbers,/obj/machinery/atmospherics/pipe/simple/visible/yellow,/obj/effect/decal/cleanable/dirt,/mob/living/simple_animal/mouse,/turf/simulated/floor/tiled/techfloor,/area/maintenance/lower/xenoflora) +"ajN" = (/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (WEST)"; icon_state = "borderfloor"; dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/camera/network/northern_star{tag = "icon-camera (NORTHEAST)"; icon_state = "camera"; dir = 5},/turf/simulated/floor/tiled,/area/tether/surfacebase/atrium_one) +"ajO" = (/obj/machinery/door/firedoor/glass,/turf/simulated/floor/plating,/area/tether/surfacebase/atrium_one) +"ajP" = (/obj/effect/decal/cleanable/dirt,/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/plating,/area/vacant/vacant_site) +"ajQ" = (/obj/machinery/light_switch{pixel_x = 25},/turf/simulated/floor/plating,/area/vacant/vacant_site) +"ajR" = (/obj/structure/bed/chair{dir = 4},/obj/structure/extinguisher_cabinet{dir = 4; icon_state = "extinguisher_closed"; pixel_x = -30; tag = "icon-extinguisher_closed (EAST)"},/turf/simulated/floor/tiled,/area/tether/surfacebase/tram) +"ajS" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 5},/turf/simulated/floor/tiled,/area/tether/surfacebase/tram) +"ajT" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled,/area/tether/surfacebase/tram) +"ajU" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 10},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled,/area/tether/surfacebase/tram) +"ajV" = (/obj/effect/floor_decal/techfloor/orange{tag = "icon-techfloororange_edges (EAST)"; icon_state = "techfloororange_edges"; dir = 4},/obj/machinery/camera/network/northern_star{tag = "icon-camera (NORTHWEST)"; icon_state = "camera"; dir = 9},/turf/simulated/floor/tiled/techfloor/grid,/area/tether/surfacebase/tram) +"ajW" = (/turf/simulated/wall,/area/rnd/xenobiology/xenoflora/lab_atmos) +"ajX" = (/turf/simulated/wall/r_wall,/area/maintenance/lower/xenoflora) +"ajY" = (/turf/simulated/wall/r_wall,/area/tether/surfacebase/atrium_one) +"ajZ" = (/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (WEST)"; icon_state = "borderfloor"; dir = 8},/obj/machinery/alarm{dir = 4; icon_state = "alarm0"; pixel_x = -22; pixel_y = 0},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/tiled,/area/tether/surfacebase/atrium_one) +"aka" = (/obj/machinery/door/airlock/multi_tile/glass{dir = 1},/obj/machinery/door/firedoor/glass,/turf/simulated/floor/plating,/area/tether/surfacebase/atrium_one) +"akb" = (/obj/structure/table/rack,/obj/random/maintenance/clean,/obj/random/maintenance/clean,/obj/random/maintenance/engineering,/turf/simulated/floor/plating,/area/vacant/vacant_site) +"akc" = (/obj/structure/bed/chair{dir = 1},/turf/simulated/floor/tiled,/area/tether/surfacebase/tram) +"akd" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled,/area/tether/surfacebase/tram) +"ake" = (/obj/structure/sign/securearea{desc = "A warning sign which reads 'HIGH VOLTAGE'"; icon_state = "shock"; name = "HIGH VOLTAGE"},/turf/simulated/wall,/area/tether/surfacebase/tram) +"akf" = (/obj/machinery/atmospherics/unary/freezer{dir = 2; icon_state = "freezer"},/obj/effect/floor_decal/corner/green{dir = 10},/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (NORTHWEST)"; icon_state = "borderfloor"; dir = 9},/obj/effect/floor_decal/industrial/danger{tag = "icon-danger (NORTHWEST)"; icon_state = "danger"; dir = 9},/turf/simulated/floor/tiled,/area/rnd/xenobiology/xenoflora/lab_atmos) +"akg" = (/obj/machinery/atmospherics/unary/heater{dir = 2; icon_state = "heater"},/obj/effect/floor_decal/corner/green{dir = 10},/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (NORTH)"; icon_state = "borderfloor"; dir = 1},/obj/effect/floor_decal/industrial/danger{tag = "icon-danger (NORTH)"; icon_state = "danger"; dir = 1},/turf/simulated/floor/tiled,/area/rnd/xenobiology/xenoflora/lab_atmos) +"akh" = (/obj/machinery/atmospherics/portables_connector,/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (NORTH)"; icon_state = "borderfloor"; dir = 1},/obj/effect/floor_decal/industrial/danger{tag = "icon-danger (NORTH)"; icon_state = "danger"; dir = 1},/obj/machinery/camera/network/research,/turf/simulated/floor/tiled,/area/rnd/xenobiology/xenoflora/lab_atmos) +"aki" = (/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (NORTH)"; icon_state = "borderfloor"; dir = 1},/obj/effect/floor_decal/industrial/danger{tag = "icon-danger (NORTH)"; icon_state = "danger"; dir = 1},/obj/machinery/alarm{frequency = 1441; pixel_y = 22},/turf/simulated/floor/tiled,/area/rnd/xenobiology/xenoflora/lab_atmos) +"akj" = (/obj/machinery/portable_atmospherics/hydroponics,/obj/machinery/atmospherics/portables_connector,/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (NORTH)"; icon_state = "borderfloor"; dir = 1},/obj/effect/floor_decal/industrial/danger{tag = "icon-danger (NORTH)"; icon_state = "danger"; dir = 1},/turf/simulated/floor/tiled,/area/rnd/xenobiology/xenoflora/lab_atmos) +"akk" = (/obj/machinery/portable_atmospherics/hydroponics,/obj/machinery/atmospherics/portables_connector,/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (NORTHEAST)"; icon_state = "borderfloor"; dir = 5},/obj/effect/floor_decal/industrial/danger{tag = "icon-danger (NORTHEAST)"; icon_state = "danger"; dir = 5},/turf/simulated/floor/tiled,/area/rnd/xenobiology/xenoflora/lab_atmos) +"akl" = (/obj/structure/railing{dir = 4},/obj/machinery/atmospherics/pipe/simple/visible/scrubbers,/obj/machinery/atmospherics/pipe/simple/visible/yellow,/obj/machinery/power/apc{cell_type = /obj/item/weapon/cell/super; dir = 8; name = "west bump"; pixel_x = -28},/obj/structure/cable{icon_state = "0-4"; d2 = 4},/turf/simulated/floor/tiled/techfloor,/area/maintenance/lower/xenoflora) +"akm" = (/obj/structure/catwalk,/obj/structure/cable{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/tiled/techfloor,/area/maintenance/lower/xenoflora) +"akn" = (/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{tag = "icon-16-0"; icon_state = "16-0"},/obj/structure/cable{icon_state = "0-2"; d2 = 2},/obj/structure/disposalpipe/up,/turf/simulated/floor/plating,/area/maintenance/lower/xenoflora) +"ako" = (/turf/simulated/shuttle/wall/voidcraft/green{hard_corner = 1},/area/tether/surfacebase/atrium_one) +"akp" = (/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (WEST)"; icon_state = "borderfloor"; dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 5},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 5},/turf/simulated/floor/tiled,/area/tether/surfacebase/atrium_one) +"akq" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0},/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/atrium_one) +"akr" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 10},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 10},/obj/structure/disposalpipe/segment{dir = 4; icon_state = "pipe-c"},/turf/simulated/floor/tiled,/area/tether/surfacebase/atrium_one) +"aks" = (/obj/structure/disposalpipe/junction{dir = 1; icon_state = "pipe-j2"},/turf/simulated/floor/tiled,/area/tether/surfacebase/atrium_one) +"akt" = (/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (EAST)"; icon_state = "borderfloor"; dir = 4},/obj/machinery/camera/network/northern_star{dir = 8; icon_state = "camera"; tag = "icon-camera (NORTHWEST)"},/turf/simulated/floor/tiled,/area/tether/surfacebase/atrium_one) +"aku" = (/obj/structure/cable{d2 = 2; icon_state = "0-2"; pixel_y = 0},/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/plating,/area/vacant/vacant_site) +"akv" = (/obj/structure/closet/crate,/obj/random/maintenance/clean,/obj/random/maintenance/cargo,/obj/random/drinkbottle,/obj/random/maintenance/medical,/turf/simulated/floor/plating,/area/vacant/vacant_site) +"akw" = (/obj/machinery/vending/snack,/turf/simulated/floor/tiled,/area/tether/surfacebase/tram) +"akx" = (/turf/simulated/wall,/area/rnd/xenobiology/xenoflora) +"aky" = (/obj/machinery/atmospherics/pipe/simple/visible{tag = "icon-intact (NORTHEAST)"; icon_state = "intact"; dir = 5},/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (WEST)"; icon_state = "borderfloor"; dir = 8},/obj/effect/floor_decal/industrial/danger{tag = "icon-danger (WEST)"; icon_state = "danger"; dir = 8},/turf/simulated/floor/tiled,/area/rnd/xenobiology/xenoflora/lab_atmos) +"akz" = (/obj/machinery/atmospherics/pipe/manifold/visible,/obj/machinery/meter,/turf/simulated/floor/tiled,/area/rnd/xenobiology/xenoflora/lab_atmos) +"akA" = (/obj/machinery/atmospherics/pipe/simple/visible{tag = "icon-intact (NORTHWEST)"; icon_state = "intact"; dir = 9},/turf/simulated/floor/tiled,/area/rnd/xenobiology/xenoflora/lab_atmos) +"akB" = (/turf/simulated/floor/tiled,/area/rnd/xenobiology/xenoflora/lab_atmos) +"akC" = (/obj/machinery/atmospherics/pipe/simple/visible,/obj/machinery/meter,/turf/simulated/floor/tiled,/area/rnd/xenobiology/xenoflora/lab_atmos) +"akD" = (/obj/machinery/atmospherics/pipe/simple/visible,/obj/machinery/meter,/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (EAST)"; icon_state = "borderfloor"; dir = 4},/obj/effect/floor_decal/industrial/danger{tag = "icon-danger (EAST)"; icon_state = "danger"; dir = 4},/turf/simulated/floor/tiled,/area/rnd/xenobiology/xenoflora/lab_atmos) +"akE" = (/obj/structure/railing{dir = 4},/obj/machinery/atmospherics/pipe/manifold/visible/scrubbers{dir = 8},/obj/machinery/atmospherics/pipe/simple/visible/supply{dir = 6},/obj/machinery/atmospherics/pipe/simple/visible/yellow,/obj/random/tool,/turf/simulated/floor/tiled/techfloor,/area/maintenance/lower/xenoflora) +"akF" = (/obj/structure/catwalk,/obj/machinery/atmospherics/pipe/simple/visible/supply{tag = "icon-intact-supply (EAST)"; icon_state = "intact-supply"; dir = 4},/obj/machinery/atmospherics/pipe/simple/visible/scrubbers{tag = "icon-intact-scrubbers (EAST)"; icon_state = "intact-scrubbers"; dir = 4},/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"},/turf/simulated/floor/tiled/techfloor,/area/maintenance/lower/xenoflora) +"akG" = (/obj/machinery/door/airlock/maintenance/engi,/obj/machinery/atmospherics/pipe/simple/visible/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/visible/scrubbers{dir = 4},/obj/machinery/door/firedoor/glass,/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/plating,/area/maintenance/lower/xenoflora) +"akH" = (/obj/machinery/atmospherics/pipe/simple/visible/supply{dir = 9},/obj/machinery/atmospherics/pipe/simple/visible/scrubbers{dir = 9},/obj/structure/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/structure/disposalpipe/segment{dir = 8; icon_state = "pipe-c"},/turf/simulated/floor/plating,/area/maintenance/lower/xenoflora) +"akI" = (/turf/simulated/floor/holofloor/tiled/dark,/area/tether/surfacebase/atrium_one) +"akJ" = (/obj/item/device/radio/intercom{dir = 1; name = "Station Intercom (General)"; pixel_y = 21},/turf/simulated/floor/tiled,/area/tether/surfacebase/atrium_one) +"akK" = (/obj/structure/flora/pottedplant{icon_state = "plant-22"},/obj/machinery/camera/network/northern_star,/turf/simulated/floor/tiled,/area/tether/surfacebase/atrium_one) +"akL" = (/obj/structure/sign/directions/evac{dir = 4},/turf/simulated/wall,/area/tether/surfacebase/atrium_one) +"akM" = (/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (WEST)"; icon_state = "borderfloor"; dir = 8},/turf/simulated/floor/tiled,/area/tether/surfacebase/atrium_one) +"akN" = (/obj/effect/floor_decal/borderfloor/corner,/obj/structure/cable{icon_state = "2-4"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled,/area/tether/surfacebase/atrium_one) +"akO" = (/obj/effect/floor_decal/borderfloor,/obj/structure/cable{tag = "icon-4-8"; icon_state = "4-8"},/turf/simulated/floor/tiled,/area/tether/surfacebase/atrium_one) +"akP" = (/obj/effect/floor_decal/borderfloor,/obj/machinery/power/apc{dir = 2; name = "south bump"; pixel_y = -28},/obj/structure/cable{d2 = 8; icon_state = "0-8"},/turf/simulated/floor/tiled,/area/tether/surfacebase/atrium_one) +"akQ" = (/obj/effect/floor_decal/borderfloor,/turf/simulated/floor/tiled,/area/tether/surfacebase/atrium_one) +"akR" = (/obj/effect/floor_decal/borderfloor,/obj/machinery/camera/network/northern_star{tag = "icon-camera (NORTH)"; icon_state = "camera"; dir = 1},/turf/simulated/floor/tiled,/area/tether/surfacebase/atrium_one) +"akS" = (/obj/effect/floor_decal/borderfloor,/obj/machinery/light,/turf/simulated/floor/tiled,/area/tether/surfacebase/atrium_one) +"akT" = (/obj/effect/floor_decal/borderfloor,/obj/item/device/radio/intercom{name = "Station Intercom (General)"; pixel_y = -21},/turf/simulated/floor/tiled,/area/tether/surfacebase/atrium_one) +"akU" = (/obj/effect/floor_decal/borderfloor,/obj/machinery/newscaster{pixel_x = 0; pixel_y = -30},/turf/simulated/floor/tiled,/area/tether/surfacebase/atrium_one) +"akV" = (/obj/effect/floor_decal/borderfloor/corner{tag = "icon-borderfloorcorner (WEST)"; icon_state = "borderfloorcorner"; dir = 8},/turf/simulated/floor/tiled,/area/tether/surfacebase/atrium_one) +"akW" = (/obj/structure/cable{tag = "icon-1-2"; icon_state = "1-2"},/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/plating,/area/vacant/vacant_site) +"akX" = (/obj/machinery/portable_atmospherics/powered/scrubber/huge/stationary/tram,/turf/simulated/floor/tiled,/area/tether/surfacebase/tram) +"akY" = (/obj/machinery/vending/cola,/turf/simulated/floor/tiled,/area/tether/surfacebase/tram) +"akZ" = (/obj/structure/closet/secure_closet/hydroponics,/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (NORTHWEST)"; icon_state = "borderfloor"; dir = 9},/obj/effect/floor_decal/corner/mauve/border{tag = "icon-bordercolor (NORTHWEST)"; icon_state = "bordercolor"; dir = 9},/obj/machinery/camera/network/research{c_tag = "SCI - Research Hallway Center"; dir = 4},/turf/simulated/floor/tiled,/area/rnd/xenobiology/xenoflora) +"ala" = (/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (NORTH)"; icon_state = "borderfloor"; dir = 1},/obj/effect/floor_decal/corner/mauve/border{tag = "icon-bordercolor (NORTH)"; icon_state = "bordercolor"; dir = 1},/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/tiled,/area/rnd/xenobiology/xenoflora) +"alb" = (/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (NORTH)"; icon_state = "borderfloor"; dir = 1},/obj/effect/floor_decal/corner/mauve/border{tag = "icon-bordercolor (NORTH)"; icon_state = "bordercolor"; dir = 1},/obj/machinery/firealarm{dir = 2; layer = 3.3; pixel_x = 0; pixel_y = 26},/turf/simulated/floor/tiled,/area/rnd/xenobiology/xenoflora) +"alc" = (/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (NORTHEAST)"; icon_state = "borderfloor"; dir = 5},/obj/effect/floor_decal/corner/mauve/border{tag = "icon-bordercolor (NORTHEAST)"; icon_state = "bordercolor"; dir = 5},/obj/effect/floor_decal/borderfloor/corner2{tag = "icon-borderfloorcorner2 (NORTHEAST)"; icon_state = "borderfloorcorner2"; dir = 5},/obj/effect/floor_decal/corner/mauve/bordercorner2{tag = "icon-bordercolorcorner2 (NORTHEAST)"; icon_state = "bordercolorcorner2"; dir = 5},/obj/structure/closet/crate/hydroponics,/turf/simulated/floor/tiled,/area/rnd/xenobiology/xenoflora) +"ald" = (/obj/structure/grille,/obj/structure/window/reinforced{dir = 5; icon_state = "fwindow"},/obj/machinery/door/firedoor,/turf/simulated/floor/plating,/area/rnd/xenobiology/xenoflora/lab_atmos) +"ale" = (/obj/structure/window/reinforced,/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (WEST)"; icon_state = "borderfloor"; dir = 8},/obj/effect/floor_decal/industrial/danger{tag = "icon-danger (WEST)"; icon_state = "danger"; dir = 8},/obj/effect/floor_decal/borderfloor/corner2{tag = "icon-borderfloorcorner2 (SOUTHWEST)"; icon_state = "borderfloorcorner2"; dir = 10},/turf/simulated/floor/tiled,/area/rnd/xenobiology/xenoflora/lab_atmos) +"alf" = (/obj/structure/window/reinforced,/obj/machinery/atmospherics/unary/vent_scrubber/on,/turf/simulated/floor/tiled,/area/rnd/xenobiology/xenoflora/lab_atmos) +"alg" = (/obj/structure/window/reinforced,/obj/machinery/atmospherics/unary/vent_pump/on,/turf/simulated/floor/tiled,/area/rnd/xenobiology/xenoflora/lab_atmos) +"alh" = (/obj/machinery/door/window/brigdoor/southright,/turf/simulated/floor/tiled,/area/rnd/xenobiology/xenoflora/lab_atmos) +"ali" = (/obj/structure/window/reinforced,/obj/machinery/atmospherics/portables_connector{dir = 1},/turf/simulated/floor/tiled,/area/rnd/xenobiology/xenoflora/lab_atmos) +"alj" = (/obj/structure/window/reinforced,/obj/machinery/atmospherics/portables_connector{dir = 1},/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (EAST)"; icon_state = "borderfloor"; dir = 4},/obj/effect/floor_decal/industrial/danger{tag = "icon-danger (EAST)"; icon_state = "danger"; dir = 4},/obj/effect/floor_decal/borderfloor/corner2{tag = "icon-borderfloorcorner2 (NORTHEAST)"; icon_state = "borderfloorcorner2"; dir = 5},/obj/machinery/status_display{pixel_x = 32; pixel_y = 0},/turf/simulated/floor/tiled,/area/rnd/xenobiology/xenoflora/lab_atmos) +"alk" = (/obj/structure/railing{dir = 4},/obj/machinery/atmospherics/pipe/simple/visible/scrubbers,/obj/machinery/atmospherics/pipe/simple/visible/supply,/obj/machinery/atmospherics/pipe/simple/visible/yellow,/obj/structure/closet,/obj/random/maintenance/clean,/obj/random/maintenance/research,/obj/random/maintenance/research,/turf/simulated/floor/tiled/techfloor,/area/maintenance/lower/xenoflora) +"all" = (/obj/structure/catwalk,/obj/structure/cable{tag = "icon-1-2"; icon_state = "1-2"},/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled/techfloor,/area/maintenance/lower/xenoflora) +"alm" = (/turf/simulated/floor/plating,/area/maintenance/lower/xenoflora) +"aln" = (/turf/simulated/floor/tiled,/area/tether/surfacebase/atrium_one) +"alo" = (/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (NORTH)"; icon_state = "borderfloor"; dir = 1},/obj/machinery/newscaster{pixel_x = 0; pixel_y = 30},/turf/simulated/floor/tiled,/area/tether/surfacebase/atrium_one) +"alp" = (/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (NORTH)"; icon_state = "borderfloor"; dir = 1},/obj/machinery/status_display{pixel_y = 30},/turf/simulated/floor/tiled,/area/tether/surfacebase/atrium_one) +"alq" = (/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (NORTH)"; icon_state = "borderfloor"; dir = 1},/obj/machinery/alarm{frequency = 1441; pixel_y = 22},/turf/simulated/floor/tiled,/area/tether/surfacebase/atrium_one) +"alr" = (/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (NORTH)"; icon_state = "borderfloor"; dir = 1},/turf/simulated/floor/tiled,/area/tether/surfacebase/atrium_one) +"als" = (/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (NORTH)"; icon_state = "borderfloor"; dir = 1},/obj/structure/extinguisher_cabinet{pixel_y = 30},/turf/simulated/floor/tiled,/area/tether/surfacebase/atrium_one) +"alt" = (/obj/machinery/light{dir = 1},/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (NORTH)"; icon_state = "borderfloor"; dir = 1},/turf/simulated/floor/tiled,/area/tether/surfacebase/atrium_one) +"alu" = (/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (NORTH)"; icon_state = "borderfloor"; dir = 1},/obj/machinery/firealarm{dir = 2; layer = 3.3; pixel_x = 0; pixel_y = 26},/turf/simulated/floor/tiled,/area/tether/surfacebase/atrium_one) +"alv" = (/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (NORTH)"; icon_state = "borderfloor"; dir = 1},/obj/machinery/door/firedoor/glass/hidden/steel{dir = 2},/turf/simulated/floor/tiled,/area/tether/surfacebase/atrium_one) +"alw" = (/obj/effect/floor_decal/borderfloor/corner{tag = "icon-borderfloorcorner (NORTH)"; icon_state = "borderfloorcorner"; dir = 1},/turf/simulated/floor/tiled,/area/tether/surfacebase/atrium_one) +"alx" = (/obj/machinery/atmospherics/unary/vent_pump/on{dir = 4},/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0},/turf/simulated/floor/tiled,/area/tether/surfacebase/atrium_one) +"aly" = (/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (EAST)"; icon_state = "borderfloor"; dir = 4},/obj/effect/floor_decal/industrial/warning/corner,/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled,/area/tether/surfacebase/atrium_one) +"alz" = (/turf/simulated/wall,/area/crew_quarters/locker) +"alA" = (/obj/structure/sign/directions/evac{dir = 4},/turf/simulated/wall,/area/crew_quarters/locker) +"alB" = (/obj/machinery/door/airlock/multi_tile/glass,/obj/machinery/door/firedoor/glass,/turf/simulated/floor/plating,/area/tether/surfacebase/atrium_one) +"alC" = (/obj/machinery/door/firedoor/glass,/obj/structure/cable{tag = "icon-1-2"; icon_state = "1-2"},/turf/simulated/floor/plating,/area/tether/surfacebase/atrium_one) +"alD" = (/obj/structure/grille,/obj/structure/railing,/turf/simulated/floor/tiled,/area/tether/surfacebase/tram) +"alE" = (/obj/structure/sign/warning/nosmoking_1,/turf/simulated/wall,/area/tether/surfacebase/tram) +"alF" = (/obj/machinery/light{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled,/area/tether/surfacebase/tram) +"alG" = (/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (WEST)"; icon_state = "borderfloor"; dir = 8},/obj/effect/floor_decal/corner/mauve/border{tag = "icon-bordercolor (WEST)"; icon_state = "bordercolor"; dir = 8},/obj/structure/closet/secure_closet/hydroponics,/turf/simulated/floor/tiled,/area/rnd/xenobiology/xenoflora) +"alH" = (/obj/structure/cable/green{d1 = 1; d2 = 4; icon_state = "1-4"},/turf/simulated/floor/tiled,/area/rnd/xenobiology/xenoflora) +"alI" = (/obj/machinery/atmospherics/pipe/simple/hidden/yellow{dir = 6},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 6},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 6},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/cable/green{d1 = 2; d2 = 4; icon_state = "2-4"},/turf/simulated/floor/tiled,/area/rnd/xenobiology/xenoflora) +"alJ" = (/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/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/tiled,/area/rnd/xenobiology/xenoflora) +"alK" = (/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,/area/rnd/xenobiology/xenoflora/lab_atmos) +"alL" = (/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"},/turf/simulated/floor/tiled,/area/rnd/xenobiology/xenoflora/lab_atmos) +"alM" = (/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/lab_atmos) +"alN" = (/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/lab_atmos) +"alO" = (/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/lab_atmos) +"alP" = (/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/lab_atmos) +"alQ" = (/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (EAST)"; icon_state = "borderfloor"; dir = 4},/obj/effect/floor_decal/corner/mauve/border{tag = "icon-bordercolor (EAST)"; icon_state = "bordercolor"; 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"},/turf/simulated/floor/tiled,/area/rnd/xenobiology/xenoflora/lab_atmos) +"alR" = (/obj/structure/railing,/obj/structure/railing{dir = 4},/obj/machinery/atmospherics/pipe/simple/visible/scrubbers,/obj/machinery/atmospherics/pipe/simple/visible/supply,/obj/machinery/atmospherics/pipe/simple/visible/yellow,/turf/simulated/floor/tiled/techfloor,/area/maintenance/lower/xenoflora) +"alS" = (/obj/machinery/atmospherics/unary/vent_scrubber/on,/turf/simulated/floor/tiled,/area/tether/surfacebase/atrium_one) +"alT" = (/obj/machinery/atmospherics/unary/vent_pump/on,/turf/simulated/floor/tiled,/area/tether/surfacebase/atrium_one) +"alU" = (/obj/structure/disposalpipe/segment{dir = 4; icon_state = "pipe-c"},/turf/simulated/floor/tiled,/area/tether/surfacebase/atrium_one) +"alV" = (/obj/machinery/door/firedoor/glass/hidden/steel,/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled,/area/tether/surfacebase/atrium_one) +"alW" = (/obj/machinery/atmospherics/unary/vent_scrubber/on,/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled,/area/tether/surfacebase/atrium_one) +"alX" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled,/area/tether/surfacebase/atrium_one) +"alY" = (/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (EAST)"; icon_state = "borderfloor"; dir = 4},/obj/effect/floor_decal/industrial/warning{icon_state = "warning"; dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/disposalpipe/junction{dir = 1; icon_state = "pipe-j2"},/turf/simulated/floor/tiled,/area/tether/surfacebase/atrium_one) +"alZ" = (/obj/structure/closet/secure_closet/personal,/obj/machinery/status_display{pixel_y = 30},/turf/simulated/floor/tiled,/area/crew_quarters/locker) +"ama" = (/obj/structure/closet/secure_closet/personal,/obj/item/device/radio/intercom{dir = 1; name = "Station Intercom (General)"; pixel_y = 21},/turf/simulated/floor/tiled,/area/crew_quarters/locker) +"amb" = (/obj/machinery/vending/snack,/turf/simulated/floor/tiled,/area/crew_quarters/locker) +"amc" = (/obj/structure/closet/secure_closet/personal,/obj/machinery/camera/network/civilian,/turf/simulated/floor/tiled,/area/crew_quarters/locker) +"amd" = (/obj/structure/closet/secure_closet/personal,/turf/simulated/floor/tiled,/area/crew_quarters/locker) +"ame" = (/obj/structure/table/standard,/obj/item/weapon/storage/laundry_basket,/obj/item/weapon/tape_roll,/turf/simulated/floor/tiled,/area/crew_quarters/locker) +"amf" = (/obj/structure/table/standard,/obj/item/weapon/storage/toolbox/mechanical{pixel_x = -2; pixel_y = -1},/obj/machinery/firealarm{dir = 2; layer = 3.3; pixel_x = 0; pixel_y = 26},/turf/simulated/floor/tiled,/area/crew_quarters/locker) +"amg" = (/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (WEST)"; icon_state = "borderfloor"; dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 6},/turf/simulated/floor/tiled,/area/tether/surfacebase/atrium_one) +"amh" = (/obj/machinery/atmospherics/unary/vent_pump/on{dir = 8},/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled,/area/tether/surfacebase/atrium_one) +"ami" = (/obj/effect/floor_decal/borderfloor/corner{tag = "icon-borderfloorcorner (EAST)"; icon_state = "borderfloorcorner"; dir = 4},/turf/simulated/floor/tiled,/area/tether/surfacebase/atrium_one) +"amj" = (/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (NORTH)"; icon_state = "borderfloor"; dir = 1},/obj/machinery/light{dir = 1},/turf/simulated/floor/tiled,/area/tether/surfacebase/atrium_one) +"amk" = (/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (NORTH)"; icon_state = "borderfloor"; dir = 1},/obj/structure/cable{tag = "icon-1-2"; icon_state = "1-2"},/turf/simulated/floor/tiled,/area/tether/surfacebase/atrium_one) +"aml" = (/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (NORTH)"; icon_state = "borderfloor"; dir = 1},/obj/item/device/radio/intercom{dir = 1; name = "Station Intercom (General)"; pixel_y = 21},/turf/simulated/floor/tiled,/area/tether/surfacebase/atrium_one) +"amm" = (/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (NORTH)"; icon_state = "borderfloor"; dir = 1},/obj/machinery/camera/network/northern_star,/turf/simulated/floor/tiled,/area/tether/surfacebase/atrium_one) +"amn" = (/obj/machinery/door/firedoor/glass,/obj/machinery/door/airlock/external{req_one_access = list()},/turf/simulated/floor/tiled,/area/tether/surfacebase/tram) +"amo" = (/obj/effect/floor_decal/industrial/warning{icon_state = "warning"; dir = 1},/turf/simulated/floor/tiled,/area/tether/surfacebase/tram) +"amp" = (/obj/effect/floor_decal/industrial/warning{icon_state = "warning"; dir = 1},/obj/effect/landmark{name = "JoinLate"},/turf/simulated/floor/tiled,/area/tether/surfacebase/tram) +"amq" = (/obj/effect/floor_decal/industrial/warning{icon_state = "warning"; dir = 1},/obj/machinery/status_display{pixel_y = 30},/obj/effect/landmark/tram,/turf/simulated/floor/tiled,/area/tether/surfacebase/tram) +"amr" = (/obj/machinery/door/firedoor/glass,/obj/machinery/cryopod/robot/door/tram,/turf/simulated/floor/tiled,/area/tether/surfacebase/tram) +"ams" = (/obj/structure/table/glass,/obj/item/weapon/paper_bin{pixel_x = 1; pixel_y = 9},/obj/item/weapon/pen,/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (NORTHWEST)"; icon_state = "borderfloor"; dir = 9},/obj/effect/floor_decal/corner/mauve/border{tag = "icon-bordercolor (NORTHWEST)"; icon_state = "bordercolor"; dir = 9},/turf/simulated/floor/tiled,/area/rnd/xenobiology/xenoflora) +"amt" = (/obj/structure/table/glass,/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (NORTH)"; icon_state = "borderfloor"; dir = 1},/obj/effect/floor_decal/corner/mauve/border{tag = "icon-bordercolor (NORTH)"; icon_state = "bordercolor"; dir = 1},/obj/machinery/camera/network/research,/turf/simulated/floor/tiled,/area/rnd/xenobiology/xenoflora) +"amu" = (/obj/structure/table/glass,/obj/item/weapon/storage/box/botanydisk,/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (NORTH)"; icon_state = "borderfloor"; dir = 1},/obj/effect/floor_decal/corner/mauve/border{tag = "icon-bordercolor (NORTH)"; icon_state = "bordercolor"; dir = 1},/obj/item/device/radio/intercom{dir = 1; name = "Station Intercom (General)"; pixel_y = 21},/turf/simulated/floor/tiled,/area/rnd/xenobiology/xenoflora) +"amv" = (/obj/structure/table/glass,/obj/item/weapon/storage/box/beakers{pixel_x = 2; pixel_y = 2},/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (NORTH)"; icon_state = "borderfloor"; dir = 1},/obj/effect/floor_decal/corner/mauve/border{tag = "icon-bordercolor (NORTH)"; icon_state = "bordercolor"; dir = 1},/obj/machinery/alarm{frequency = 1441; pixel_y = 22},/turf/simulated/floor/tiled,/area/rnd/xenobiology/xenoflora) +"amw" = (/obj/structure/reagent_dispensers/watertank,/obj/item/weapon/reagent_containers/glass/bucket,/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (NORTH)"; icon_state = "borderfloor"; dir = 1},/obj/effect/floor_decal/corner/mauve/border{tag = "icon-bordercolor (NORTH)"; icon_state = "bordercolor"; dir = 1},/obj/machinery/status_display{pixel_y = 30},/turf/simulated/floor/tiled,/area/rnd/xenobiology/xenoflora) +"amx" = (/obj/machinery/smartfridge/drying_rack,/obj/machinery/light{dir = 1},/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (NORTH)"; icon_state = "borderfloor"; dir = 1},/obj/effect/floor_decal/corner/mauve/border{tag = "icon-bordercolor (NORTH)"; icon_state = "bordercolor"; dir = 1},/turf/simulated/floor/tiled,/area/rnd/xenobiology/xenoflora) +"amy" = (/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (NORTH)"; icon_state = "borderfloor"; dir = 1},/obj/effect/floor_decal/corner/mauve/border{tag = "icon-bordercolor (NORTH)"; icon_state = "bordercolor"; dir = 1},/obj/machinery/light_switch{pixel_y = 25},/turf/simulated/floor/tiled,/area/rnd/xenobiology/xenoflora) +"amz" = (/obj/effect/floor_decal/borderfloor/corner{tag = "icon-borderfloorcorner (NORTH)"; icon_state = "borderfloorcorner"; dir = 1},/obj/effect/floor_decal/corner/mauve/bordercorner{tag = "icon-bordercolorcorner (NORTH)"; icon_state = "bordercolorcorner"; dir = 1},/turf/simulated/floor/tiled,/area/rnd/xenobiology/xenoflora) +"amA" = (/turf/simulated/floor/tiled,/area/rnd/xenobiology/xenoflora) +"amB" = (/obj/machinery/atmospherics/pipe/simple/hidden/yellow,/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,/area/rnd/xenobiology/xenoflora) +"amC" = (/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (EAST)"; icon_state = "borderfloor"; dir = 4},/obj/effect/floor_decal/corner/mauve/border{tag = "icon-bordercolor (EAST)"; icon_state = "bordercolor"; dir = 4},/obj/effect/floor_decal/borderfloor/corner2{tag = "icon-borderfloorcorner2 (SOUTHEAST)"; icon_state = "borderfloorcorner2"; dir = 6},/obj/effect/floor_decal/corner/mauve/bordercorner2{tag = "icon-bordercolorcorner2 (SOUTHEAST)"; icon_state = "bordercolorcorner2"; dir = 6},/turf/simulated/floor/tiled,/area/rnd/xenobiology/xenoflora) +"amD" = (/obj/machinery/atmospherics/pipe/simple/visible{icon_state = "intact"; dir = 6},/obj/machinery/meter,/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (WEST)"; icon_state = "borderfloor"; dir = 8},/obj/effect/floor_decal/corner/mauve/border{tag = "icon-bordercolor (WEST)"; icon_state = "bordercolor"; dir = 8},/obj/effect/floor_decal/borderfloor/corner2{tag = "icon-borderfloorcorner2 (WEST)"; icon_state = "borderfloorcorner2"; dir = 8},/obj/effect/floor_decal/corner/mauve/bordercorner2{tag = "icon-bordercolorcorner2 (WEST)"; icon_state = "bordercolorcorner2"; dir = 8},/turf/simulated/floor/tiled,/area/rnd/xenobiology/xenoflora/lab_atmos) +"amE" = (/obj/machinery/atmospherics/binary/pump{dir = 4; name = "Port to Isolation"},/turf/simulated/floor/tiled,/area/rnd/xenobiology/xenoflora/lab_atmos) +"amF" = (/obj/machinery/atmospherics/pipe/simple/visible{dir = 4},/obj/machinery/meter,/turf/simulated/floor/tiled,/area/rnd/xenobiology/xenoflora/lab_atmos) +"amG" = (/obj/machinery/atmospherics/pipe/manifold/visible{dir = 1},/turf/simulated/floor/tiled,/area/rnd/xenobiology/xenoflora/lab_atmos) +"amH" = (/obj/machinery/atmospherics/pipe/manifold/visible{dir = 1},/obj/structure/disposalpipe/segment{dir = 4; icon_state = "pipe-c"},/turf/simulated/floor/tiled,/area/rnd/xenobiology/xenoflora/lab_atmos) +"amI" = (/obj/machinery/atmospherics/pipe/manifold/visible{dir = 1},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled,/area/rnd/xenobiology/xenoflora/lab_atmos) +"amJ" = (/obj/machinery/atmospherics/binary/pump{dir = 4; name = "Isolation to Waste"},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 8},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled,/area/rnd/xenobiology/xenoflora/lab_atmos) +"amK" = (/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (EAST)"; icon_state = "borderfloor"; dir = 4},/obj/effect/floor_decal/corner/mauve/border{tag = "icon-bordercolor (EAST)"; icon_state = "bordercolor"; dir = 4},/obj/machinery/atmospherics/pipe/manifold4w/hidden/yellow,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 5},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled,/area/rnd/xenobiology/xenoflora/lab_atmos) +"amL" = (/obj/machinery/door/airlock/maintenance/rnd{req_access = list(55)},/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/machinery/door/firedoor/glass,/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled/steel_dirty,/area/rnd/xenobiology/xenoflora/lab_atmos) +"amM" = (/obj/structure/catwalk,/obj/machinery/atmospherics/pipe/simple/visible/scrubbers{tag = "icon-intact-scrubbers (NORTHWEST)"; icon_state = "intact-scrubbers"; dir = 9},/obj/machinery/atmospherics/pipe/simple/visible/supply{dir = 9},/obj/machinery/atmospherics/pipe/simple/visible/yellow{dir = 9},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled/techfloor,/area/maintenance/lower/xenoflora) +"amN" = (/obj/structure/catwalk,/obj/structure/cable{tag = "icon-1-2"; icon_state = "1-2"},/obj/structure/disposalpipe/junction,/turf/simulated/floor/tiled/techfloor,/area/maintenance/lower/xenoflora) +"amO" = (/obj/turbolift_map_holder/tether{dir = 4},/turf/simulated/floor/holofloor/tiled/dark,/area/tether/surfacebase/atrium_one) +"amP" = (/obj/machinery/light,/obj/effect/floor_decal/borderfloor,/turf/simulated/floor/tiled,/area/tether/surfacebase/atrium_one) +"amQ" = (/obj/effect/floor_decal/borderfloor,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 5},/turf/simulated/floor/tiled,/area/tether/surfacebase/atrium_one) +"amR" = (/obj/effect/floor_decal/borderfloor,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/turf/simulated/floor/tiled,/area/tether/surfacebase/atrium_one) +"amS" = (/obj/effect/floor_decal/borderfloor,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/newscaster{pixel_x = 0; pixel_y = -30},/turf/simulated/floor/tiled,/area/tether/surfacebase/atrium_one) +"amT" = (/obj/effect/floor_decal/borderfloor,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 5},/turf/simulated/floor/tiled,/area/tether/surfacebase/atrium_one) +"amU" = (/obj/effect/floor_decal/borderfloor,/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/atrium_one) +"amV" = (/obj/effect/floor_decal/borderfloor,/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 1},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 1},/obj/structure/cable{icon_state = "2-4"},/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled,/area/tether/surfacebase/atrium_one) +"amW" = (/obj/effect/floor_decal/borderfloor,/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0},/obj/machinery/camera/network/northern_star{tag = "icon-camera (NORTH)"; icon_state = "camera"; dir = 1},/turf/simulated/floor/tiled,/area/tether/surfacebase/atrium_one) +"amX" = (/obj/effect/floor_decal/borderfloor,/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0},/obj/machinery/door/firedoor/glass/hidden/steel{dir = 1},/turf/simulated/floor/tiled,/area/tether/surfacebase/atrium_one) +"amY" = (/obj/effect/floor_decal/borderfloor,/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,/turf/simulated/floor/tiled,/area/tether/surfacebase/atrium_one) +"amZ" = (/obj/effect/floor_decal/borderfloor,/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/cable{icon_state = "1-8"},/obj/item/device/radio/intercom{name = "Station Intercom (General)"; pixel_y = -21},/turf/simulated/floor/tiled,/area/tether/surfacebase/atrium_one) +"ana" = (/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (SOUTHEAST)"; icon_state = "borderfloor"; dir = 6},/obj/effect/floor_decal/industrial/warning/corner{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 9},/obj/structure/cable{icon_state = "1-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 9},/obj/machinery/disposal,/obj/structure/disposalpipe/trunk{dir = 1},/turf/simulated/floor/tiled,/area/tether/surfacebase/atrium_one) +"anb" = (/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/tiled,/area/crew_quarters/locker) +"anc" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 6},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 10},/turf/simulated/floor/tiled,/area/crew_quarters/locker) +"and" = (/obj/machinery/atmospherics/unary/vent_pump/on{dir = 8},/turf/simulated/floor/tiled,/area/crew_quarters/locker) +"ane" = (/turf/simulated/floor/tiled,/area/crew_quarters/locker) +"anf" = (/obj/machinery/door/firedoor/glass,/turf/simulated/floor/tiled,/area/crew_quarters/locker) +"ang" = (/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (WEST)"; icon_state = "borderfloor"; dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/tiled,/area/tether/surfacebase/atrium_one) +"anh" = (/obj/structure/disposalpipe/junction{dir = 1},/turf/simulated/floor/tiled,/area/tether/surfacebase/atrium_one) +"ani" = (/obj/machinery/door/firedoor/glass/hidden/steel{dir = 8},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled,/area/tether/surfacebase/atrium_one) +"anj" = (/obj/machinery/atmospherics/unary/vent_pump/on,/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled,/area/tether/surfacebase/atrium_one) +"ank" = (/obj/structure/cable{tag = "icon-1-2"; icon_state = "1-2"},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled,/area/tether/surfacebase/atrium_one) +"anl" = (/obj/structure/grille,/obj/structure/window/reinforced{dir = 5; icon_state = "fwindow"},/obj/machinery/door/firedoor,/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/plating,/area/tether/surfacebase/tram) +"anm" = (/obj/effect/landmark{name = "JoinLate"},/obj/machinery/atmospherics/unary/vent_pump/on,/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled,/area/tether/surfacebase/tram) +"ann" = (/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled,/area/tether/surfacebase/tram) +"ano" = (/obj/effect/landmark{name = "JoinLate"},/obj/machinery/atmospherics/unary/vent_scrubber/on,/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled,/area/tether/surfacebase/tram) +"anp" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/disposalpipe/segment{dir = 8; icon_state = "pipe-c"},/obj/machinery/camera/network/northern_star{tag = "icon-camera (NORTHEAST)"; icon_state = "camera"; dir = 5},/turf/simulated/floor/tiled,/area/tether/surfacebase/tram) +"anq" = (/turf/simulated/wall,/area/rnd/hallway) +"anr" = (/obj/structure/table/glass,/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (WEST)"; icon_state = "borderfloor"; dir = 8},/obj/effect/floor_decal/corner/mauve/border{tag = "icon-bordercolor (WEST)"; icon_state = "bordercolor"; dir = 8},/obj/item/weapon/storage/box/gloves{pixel_x = 4; pixel_y = 4},/obj/item/weapon/storage/box/syringes,/turf/simulated/floor/tiled,/area/rnd/xenobiology/xenoflora) +"ans" = (/obj/structure/bed/chair/office/light{dir = 1},/turf/simulated/floor/tiled,/area/rnd/xenobiology/xenoflora) +"ant" = (/obj/machinery/atmospherics/pipe/simple/hidden/yellow{dir = 6},/turf/simulated/floor/tiled,/area/rnd/xenobiology/xenoflora) +"anu" = (/obj/machinery/atmospherics/pipe/simple/hidden/yellow{dir = 4},/turf/simulated/floor/tiled,/area/rnd/xenobiology/xenoflora) +"anv" = (/obj/machinery/atmospherics/pipe/manifold/hidden/yellow{tag = "icon-map (EAST)"; icon_state = "map"; dir = 4},/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,/area/rnd/xenobiology/xenoflora) +"anw" = (/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (EAST)"; icon_state = "borderfloor"; dir = 4},/obj/effect/floor_decal/corner/mauve/border{tag = "icon-bordercolor (EAST)"; icon_state = "bordercolor"; dir = 4},/turf/simulated/floor/tiled,/area/rnd/xenobiology/xenoflora) +"anx" = (/obj/machinery/atmospherics/portables_connector{dir = 1},/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (SOUTHWEST)"; icon_state = "borderfloor"; dir = 10},/obj/effect/floor_decal/corner/mauve/border{tag = "icon-bordercolor (SOUTHWEST)"; icon_state = "bordercolor"; dir = 10},/obj/item/device/radio/intercom{name = "Station Intercom (General)"; pixel_y = -21},/turf/simulated/floor/tiled,/area/rnd/xenobiology/xenoflora/lab_atmos) +"any" = (/obj/machinery/portable_atmospherics/canister/nitrogen,/obj/effect/floor_decal/industrial/warning{dir = 9},/turf/simulated/floor/tiled/white,/area/rnd/xenobiology/xenoflora/lab_atmos) +"anz" = (/obj/machinery/portable_atmospherics/canister/carbon_dioxide,/obj/effect/floor_decal/industrial/warning{dir = 5},/turf/simulated/floor/tiled/white,/area/rnd/xenobiology/xenoflora/lab_atmos) +"anA" = (/obj/machinery/atmospherics/portables_connector{dir = 1},/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/corner/mauve/border,/obj/machinery/light,/turf/simulated/floor/tiled,/area/rnd/xenobiology/xenoflora/lab_atmos) +"anB" = (/obj/machinery/atmospherics/portables_connector{dir = 1},/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/corner/mauve/border,/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled,/area/rnd/xenobiology/xenoflora/lab_atmos) +"anC" = (/obj/machinery/atmospherics/portables_connector{dir = 1},/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/corner/mauve/border,/obj/machinery/camera/network/research{c_tag = "SCI - Research Dock Hallway Starboard"; dir = 1},/turf/simulated/floor/tiled,/area/rnd/xenobiology/xenoflora/lab_atmos) +"anD" = (/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},/turf/simulated/floor/tiled,/area/rnd/xenobiology/xenoflora/lab_atmos) +"anE" = (/obj/structure/table/glass,/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (SOUTHEAST)"; icon_state = "borderfloor"; dir = 6},/obj/effect/floor_decal/corner/mauve/border{tag = "icon-bordercolor (SOUTHEAST)"; icon_state = "bordercolor"; 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/lab_atmos) +"anF" = (/obj/machinery/door/airlock/maintenance/engi,/obj/machinery/door/firedoor/glass,/obj/structure/cable{tag = "icon-1-2"; icon_state = "1-2"},/obj/structure/disposalpipe/segment,/turf/simulated/floor/plating,/area/maintenance/lower/xenoflora) +"anG" = (/obj/structure/closet/crate,/obj/random/maintenance/engineering,/obj/random/maintenance/engineering,/obj/random/toolbox,/obj/random/maintenance/research,/obj/random/maintenance/research,/turf/simulated/floor/plating,/area/maintenance/lower/xenoflora) +"anH" = (/obj/structure/flora/pottedplant{icon_state = "plant-22"},/turf/simulated/floor/tiled,/area/tether/surfacebase/atrium_one) +"anI" = (/obj/machinery/door/airlock/maintenance/common,/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0},/obj/machinery/atmospherics/pipe/simple/visible/scrubbers,/obj/machinery/atmospherics/pipe/simple/visible/supply,/obj/structure/disposalpipe/segment,/obj/machinery/door/firedoor/glass,/turf/simulated/floor/tiled/techfloor,/area/tether/surfacebase/atrium_one) +"anJ" = (/obj/structure/disposalpipe/segment{dir = 4; icon_state = "pipe-c"},/turf/simulated/floor/tiled,/area/crew_quarters/locker) +"anK" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/cable{icon_state = "2-4"},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled,/area/crew_quarters/locker) +"anL" = (/obj/structure/cable{tag = "icon-4-8"; icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled,/area/crew_quarters/locker) +"anM" = (/obj/machinery/light,/obj/structure/cable{tag = "icon-4-8"; icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled,/area/crew_quarters/locker) +"anN" = (/obj/structure/cable{tag = "icon-2-8"; icon_state = "2-8"},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled,/area/crew_quarters/locker) +"anO" = (/obj/machinery/door/airlock/multi_tile/glass{dir = 1; name = "Locker Room"},/obj/machinery/door/firedoor/glass,/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled,/area/crew_quarters/locker) +"anP" = (/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (SOUTHWEST)"; icon_state = "borderfloor"; dir = 10},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 5},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled,/area/tether/surfacebase/atrium_one) +"anQ" = (/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/industrial/warning/corner,/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/atrium_one) +"anR" = (/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/industrial/warning,/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 5},/turf/simulated/floor/tiled,/area/tether/surfacebase/atrium_one) +"anS" = (/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/industrial/warning/corner{icon_state = "warningcorner"; dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/door/firedoor/glass/hidden/steel{dir = 1},/turf/simulated/floor/tiled,/area/tether/surfacebase/atrium_one) +"anT" = (/obj/effect/floor_decal/borderfloor,/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/camera/network/northern_star{tag = "icon-camera (NORTH)"; icon_state = "camera"; dir = 1},/turf/simulated/floor/tiled,/area/tether/surfacebase/atrium_one) +"anU" = (/obj/effect/floor_decal/borderfloor,/obj/machinery/atmospherics/pipe/manifold/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/turf/simulated/floor/tiled,/area/tether/surfacebase/atrium_one) +"anV" = (/obj/effect/floor_decal/borderfloor,/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 1},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 1},/obj/structure/cable{icon_state = "2-4"},/obj/structure/cable{tag = "icon-1-2"; icon_state = "1-2"},/turf/simulated/floor/tiled,/area/tether/surfacebase/atrium_one) +"anW" = (/obj/effect/floor_decal/borderfloor,/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/cable{tag = "icon-4-8"; icon_state = "4-8"},/turf/simulated/floor/tiled,/area/tether/surfacebase/atrium_one) +"anX" = (/obj/effect/floor_decal/borderfloor,/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/alarm{dir = 1; pixel_y = -25},/obj/structure/cable{tag = "icon-4-8"; icon_state = "4-8"},/turf/simulated/floor/tiled,/area/tether/surfacebase/atrium_one) +"anY" = (/obj/effect/floor_decal/borderfloor,/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,/obj/structure/cable{tag = "icon-4-8"; icon_state = "4-8"},/turf/simulated/floor/tiled,/area/tether/surfacebase/atrium_one) +"anZ" = (/obj/effect/floor_decal/borderfloor,/obj/machinery/light,/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/cable{tag = "icon-4-8"; icon_state = "4-8"},/turf/simulated/floor/tiled,/area/tether/surfacebase/atrium_one) +"aoa" = (/obj/machinery/door/airlock/external{req_one_access = list()},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/cable{tag = "icon-4-8"; icon_state = "4-8"},/obj/machinery/door/firedoor/glass,/turf/simulated/floor/tiled,/area/tether/surfacebase/tram) +"aob" = (/obj/effect/floor_decal/industrial/warning,/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/manifold/hidden/supply,/obj/structure/cable{tag = "icon-4-8"; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/turf/simulated/floor/tiled,/area/tether/surfacebase/tram) +"aoc" = (/obj/effect/floor_decal/industrial/warning,/obj/effect/landmark{name = "JoinLate"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/cable{tag = "icon-4-8"; icon_state = "4-8"},/turf/simulated/floor/tiled,/area/tether/surfacebase/tram) +"aod" = (/obj/effect/floor_decal/industrial/warning,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,/obj/structure/cable{tag = "icon-4-8"; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/computer/cryopod{pixel_y = -30},/obj/effect/landmark/tram,/turf/simulated/floor/tiled,/area/tether/surfacebase/tram) +"aoe" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/cable{tag = "icon-4-8"; icon_state = "4-8"},/obj/machinery/door/firedoor/glass,/obj/machinery/cryopod/robot/door/tram,/turf/simulated/floor/tiled,/area/tether/surfacebase/tram) +"aof" = (/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 4},/obj/structure/cable{tag = "icon-2-8"; icon_state = "2-8"},/turf/simulated/floor/tiled,/area/tether/surfacebase/tram) +"aog" = (/turf/simulated/wall/r_wall,/area/rnd/misc_lab) +"aoh" = (/turf/simulated/wall,/area/rnd/misc_lab) +"aoi" = (/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (NORTHWEST)"; icon_state = "borderfloor"; dir = 9},/obj/effect/floor_decal/corner/mauve/border{tag = "icon-bordercolor (NORTHWEST)"; icon_state = "bordercolor"; dir = 9},/obj/item/device/radio/intercom{dir = 1; name = "Station Intercom (General)"; pixel_y = 21},/turf/simulated/floor/tiled,/area/rnd/hallway) +"aoj" = (/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (NORTHEAST)"; icon_state = "borderfloor"; dir = 5},/obj/effect/floor_decal/corner/mauve/border{tag = "icon-bordercolor (NORTHEAST)"; icon_state = "bordercolor"; dir = 5},/obj/effect/floor_decal/borderfloor/corner2{tag = "icon-borderfloorcorner2 (NORTHEAST)"; icon_state = "borderfloorcorner2"; dir = 5},/obj/effect/floor_decal/corner/mauve/bordercorner2{tag = "icon-bordercolorcorner2 (NORTHEAST)"; icon_state = "bordercolorcorner2"; dir = 5},/obj/machinery/light_switch{pixel_y = 25},/turf/simulated/floor/tiled,/area/rnd/hallway) +"aok" = (/obj/machinery/light{icon_state = "tube1"; dir = 8},/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (WEST)"; icon_state = "borderfloor"; dir = 8},/obj/effect/floor_decal/corner/mauve/border{tag = "icon-bordercolor (WEST)"; icon_state = "bordercolor"; dir = 8},/obj/effect/floor_decal/borderfloor/corner2{tag = "icon-borderfloorcorner2 (SOUTHWEST)"; icon_state = "borderfloorcorner2"; dir = 10},/obj/effect/floor_decal/corner/mauve/bordercorner2{tag = "icon-bordercolorcorner2 (SOUTHWEST)"; icon_state = "bordercolorcorner2"; dir = 10},/obj/machinery/disposal,/obj/structure/disposalpipe/trunk,/turf/simulated/floor/tiled,/area/rnd/xenobiology/xenoflora) +"aol" = (/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 1},/turf/simulated/floor/tiled,/area/rnd/xenobiology/xenoflora) +"aom" = (/obj/machinery/portable_atmospherics/hydroponics,/turf/simulated/floor/tiled,/area/rnd/xenobiology/xenoflora) +"aon" = (/obj/machinery/atmospherics/unary/vent_pump/on{dir = 4},/turf/simulated/floor/tiled,/area/rnd/xenobiology/xenoflora) +"aoo" = (/obj/machinery/atmospherics/pipe/simple/hidden/yellow,/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/tiled,/area/rnd/xenobiology/xenoflora) +"aop" = (/obj/machinery/biogenerator,/obj/machinery/light{icon_state = "tube1"; dir = 4},/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (EAST)"; icon_state = "borderfloor"; dir = 4},/obj/effect/floor_decal/corner/mauve/border{tag = "icon-bordercolor (EAST)"; icon_state = "bordercolor"; dir = 4},/turf/simulated/floor/tiled,/area/rnd/xenobiology/xenoflora) +"aoq" = (/obj/structure/grille,/obj/structure/window/reinforced{dir = 5; icon_state = "fwindow"},/obj/machinery/door/firedoor,/obj/structure/disposalpipe/segment,/turf/simulated/floor/plating,/area/rnd/xenobiology/xenoflora/lab_atmos) +"aor" = (/obj/structure/cable{tag = "icon-1-2"; icon_state = "1-2"},/obj/structure/disposalpipe/segment,/turf/simulated/floor/plating,/area/maintenance/lower/atmos) +"aos" = (/turf/simulated/wall,/area/maintenance/lower/atmos) +"aot" = (/obj/structure/catwalk,/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0},/obj/machinery/atmospherics/pipe/simple/visible/scrubbers,/obj/machinery/atmospherics/pipe/simple/visible/supply,/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled/techfloor,/area/maintenance/lower/atmos) +"aou" = (/obj/structure/grille,/obj/structure/window/reinforced{dir = 5; icon_state = "fwindow"},/obj/machinery/door/firedoor,/obj/structure/disposalpipe/segment,/turf/simulated/floor/plating,/area/crew_quarters/locker) +"aov" = (/obj/machinery/door/airlock/glass,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/door/firedoor/glass,/obj/structure/cable{tag = "icon-1-2"; icon_state = "1-2"},/turf/simulated/floor/tiled,/area/crew_quarters/locker) +"aow" = (/obj/structure/grille,/obj/structure/window/reinforced{dir = 5; icon_state = "fwindow"},/obj/machinery/door/firedoor,/turf/simulated/floor/plating,/area/crew_quarters/locker) +"aox" = (/obj/machinery/vending/fitness,/turf/simulated/floor/tiled,/area/crew_quarters/locker) +"aoy" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0},/turf/simulated/floor/tiled,/area/crew_quarters/locker) +"aoz" = (/obj/structure/grille,/obj/structure/railing{dir = 1},/turf/simulated/floor/tiled/techmaint,/area/tether/surfacebase/atrium_one) +"aoA" = (/obj/machinery/door/airlock/maintenance/common,/obj/machinery/door/firedoor/glass,/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,/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/tiled/techfloor,/area/tether/surfacebase/atrium_one) +"aoB" = (/obj/structure/grille,/obj/structure/railing{dir = 1},/turf/simulated/floor/tiled,/area/tether/surfacebase/tram) +"aoC" = (/obj/machinery/light{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/cable{tag = "icon-1-2"; icon_state = "1-2"},/turf/simulated/floor/tiled,/area/tether/surfacebase/tram) +"aoD" = (/obj/effect/floor_decal/rust,/turf/simulated/floor/tiled/steel_dirty,/area/rnd/misc_lab) +"aoE" = (/obj/machinery/shieldwallgen{anchored = 1; req_access = list(47)},/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (NORTHWEST)"; icon_state = "borderfloor"; dir = 9},/obj/effect/floor_decal/industrial/danger{tag = "icon-danger (NORTHWEST)"; icon_state = "danger"; dir = 9},/turf/simulated/floor/tiled,/area/rnd/misc_lab) +"aoF" = (/obj/machinery/suit_storage_unit/standard_unit,/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (NORTH)"; icon_state = "borderfloor"; dir = 1},/obj/effect/floor_decal/corner/mauve/border{tag = "icon-bordercolor (NORTH)"; icon_state = "bordercolor"; dir = 1},/turf/simulated/floor/tiled,/area/rnd/misc_lab) +"aoG" = (/obj/structure/closet/bombcloset,/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (NORTH)"; icon_state = "borderfloor"; dir = 1},/obj/effect/floor_decal/corner/mauve/border{tag = "icon-bordercolor (NORTH)"; icon_state = "bordercolor"; dir = 1},/obj/machinery/camera/network/research,/turf/simulated/floor/tiled,/area/rnd/misc_lab) +"aoH" = (/obj/machinery/disposal,/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (NORTHEAST)"; icon_state = "borderfloor"; dir = 5},/obj/effect/floor_decal/corner/mauve/border{tag = "icon-bordercolor (NORTHEAST)"; icon_state = "bordercolor"; dir = 5},/obj/machinery/newscaster{pixel_x = 0; pixel_y = 30},/obj/structure/disposalpipe/trunk,/turf/simulated/floor/tiled,/area/rnd/misc_lab) +"aoI" = (/obj/structure/grille,/obj/structure/window/reinforced{dir = 5; icon_state = "fwindow"},/obj/machinery/door/firedoor,/turf/simulated/floor/plating,/area/rnd/misc_lab) +"aoJ" = (/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (WEST)"; icon_state = "borderfloor"; dir = 8},/obj/effect/floor_decal/corner/mauve/border{tag = "icon-bordercolor (WEST)"; icon_state = "bordercolor"; dir = 8},/obj/machinery/camera/network/research{c_tag = "SCI - Research Hallway Center"; dir = 4},/turf/simulated/floor/tiled,/area/rnd/hallway) +"aoK" = (/obj/structure/disposalpipe/segment{dir = 4; icon_state = "pipe-c"},/turf/simulated/floor/tiled,/area/rnd/hallway) +"aoL" = (/obj/machinery/door/firedoor/glass,/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/door/airlock/glass_research{name = "Xenoflora Research"; req_access = list(55)},/turf/simulated/floor/tiled,/area/rnd/xenobiology/xenoflora) +"aoM" = (/obj/structure/disposalpipe/segment{dir = 8; icon_state = "pipe-c"},/turf/simulated/floor/tiled,/area/rnd/xenobiology/xenoflora) +"aoN" = (/turf/simulated/floor/grass,/area/rnd/xenobiology/xenoflora) +"aoO" = (/obj/machinery/seed_extractor,/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (EAST)"; icon_state = "borderfloor"; dir = 4},/obj/effect/floor_decal/corner/mauve/border{tag = "icon-bordercolor (EAST)"; icon_state = "bordercolor"; dir = 4},/turf/simulated/floor/tiled,/area/rnd/xenobiology/xenoflora) +"aoP" = (/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (NORTHWEST)"; icon_state = "borderfloor"; dir = 9},/obj/effect/floor_decal/corner/mauve/border{tag = "icon-bordercolor (NORTHWEST)"; icon_state = "bordercolor"; dir = 9},/obj/machinery/recharge_station,/obj/effect/floor_decal/steeldecal/steel_decals6,/turf/simulated/floor/tiled,/area/rnd/hallway) +"aoQ" = (/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (NORTH)"; icon_state = "borderfloor"; dir = 1},/obj/effect/floor_decal/corner/mauve/border{tag = "icon-bordercolor (NORTH)"; icon_state = "bordercolor"; dir = 1},/obj/machinery/firealarm{dir = 2; layer = 3.3; pixel_x = 0; pixel_y = 26},/turf/simulated/floor/tiled,/area/rnd/hallway) +"aoR" = (/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (NORTH)"; icon_state = "borderfloor"; dir = 1},/obj/effect/floor_decal/corner/mauve/border{tag = "icon-bordercolor (NORTH)"; icon_state = "bordercolor"; dir = 1},/turf/simulated/floor/tiled,/area/rnd/hallway) +"aoS" = (/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (NORTH)"; icon_state = "borderfloor"; dir = 1},/obj/effect/floor_decal/corner/mauve/border{tag = "icon-bordercolor (NORTH)"; icon_state = "bordercolor"; dir = 1},/obj/machinery/camera/network/research,/turf/simulated/floor/tiled,/area/rnd/hallway) +"aoT" = (/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (NORTH)"; icon_state = "borderfloor"; dir = 1},/obj/effect/floor_decal/corner/mauve/border{tag = "icon-bordercolor (NORTH)"; icon_state = "bordercolor"; dir = 1},/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled,/area/rnd/hallway) +"aoU" = (/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (NORTH)"; icon_state = "borderfloor"; dir = 1},/obj/effect/floor_decal/corner/mauve/border{tag = "icon-bordercolor (NORTH)"; icon_state = "bordercolor"; dir = 1},/obj/machinery/light_switch{pixel_y = 25},/turf/simulated/floor/tiled,/area/rnd/hallway) +"aoV" = (/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (NORTH)"; icon_state = "borderfloor"; dir = 1},/obj/effect/floor_decal/corner/mauve/border{tag = "icon-bordercolor (NORTH)"; icon_state = "bordercolor"; dir = 1},/obj/machinery/newscaster{pixel_x = 0; pixel_y = 30},/turf/simulated/floor/tiled,/area/rnd/hallway) +"aoW" = (/obj/structure/flora/pottedplant,/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (NORTHEAST)"; icon_state = "borderfloor"; dir = 5},/obj/effect/floor_decal/corner/mauve/border{tag = "icon-bordercolor (NORTHEAST)"; icon_state = "bordercolor"; dir = 5},/obj/effect/floor_decal/steeldecal/steel_decals6{tag = "icon-steel_decals6 (WEST)"; icon_state = "steel_decals6"; dir = 8},/obj/structure/extinguisher_cabinet{pixel_y = 30},/turf/simulated/floor/tiled,/area/rnd/hallway) +"aoX" = (/obj/structure/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/structure/disposalpipe/segment{dir = 1; icon_state = "pipe-c"},/turf/simulated/floor/plating,/area/maintenance/lower/atmos) +"aoY" = (/obj/structure/cable{tag = "icon-4-8"; icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/effect/decal/cleanable/dirt,/obj/effect/floor_decal/rust,/turf/simulated/floor/plating,/area/maintenance/lower/atmos) +"aoZ" = (/obj/structure/cable{tag = "icon-4-8"; icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/plating,/area/maintenance/lower/atmos) +"apa" = (/obj/structure/cable{tag = "icon-4-8"; icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/plating,/area/maintenance/lower/atmos) +"apb" = (/obj/structure/cable{tag = "icon-4-8"; icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/effect/decal/cleanable/dirt,/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/plating,/area/maintenance/lower/atmos) +"apc" = (/obj/machinery/door/airlock/maintenance/engi,/obj/machinery/door/firedoor/glass,/obj/structure/cable{tag = "icon-4-8"; icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/plating,/area/maintenance/lower/atmos) +"apd" = (/obj/structure/catwalk,/obj/structure/cable{icon_state = "1-8"},/obj/structure/cable{tag = "icon-1-2"; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/visible/scrubbers,/obj/machinery/atmospherics/pipe/simple/visible/supply,/obj/structure/disposalpipe/segment{dir = 8; icon_state = "pipe-c"},/turf/simulated/floor/tiled/techfloor,/area/maintenance/lower/atmos) +"ape" = (/obj/machinery/recharge_station,/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled,/area/crew_quarters/locker) +"apf" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 8},/obj/structure/cable{tag = "icon-1-2"; icon_state = "1-2"},/turf/simulated/floor/tiled,/area/crew_quarters/locker) +"apg" = (/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 8},/turf/simulated/floor/tiled,/area/crew_quarters/locker) +"aph" = (/obj/structure/reagent_dispensers/watertank,/obj/machinery/alarm{dir = 8; icon_state = "alarm0"; pixel_x = 24},/turf/simulated/floor/tiled,/area/crew_quarters/locker) +"api" = (/obj/machinery/vending/coffee,/turf/simulated/floor/tiled,/area/crew_quarters/locker) +"apj" = (/obj/machinery/power/apc{dir = 4; name = "east bump"; pixel_x = 28},/obj/structure/cable,/turf/simulated/floor/tiled,/area/crew_quarters/locker) +"apk" = (/turf/simulated/wall,/area/maintenance/lower/locker_room) +"apl" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/tiled/techfloor,/area/maintenance/lower/locker_room) +"apm" = (/obj/machinery/vending/fitness,/turf/simulated/floor/tiled,/area/tether/surfacebase/tram) +"apn" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/cable{tag = "icon-1-2"; icon_state = "1-2"},/turf/simulated/floor/tiled,/area/tether/surfacebase/tram) +"apo" = (/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (WEST)"; icon_state = "borderfloor"; dir = 8},/obj/effect/floor_decal/industrial/danger{tag = "icon-danger (WEST)"; icon_state = "danger"; dir = 8},/obj/machinery/alarm{dir = 4; icon_state = "alarm0"; pixel_x = -22; pixel_y = 0},/turf/simulated/floor/tiled,/area/rnd/misc_lab) +"app" = (/turf/simulated/floor/tiled,/area/rnd/misc_lab) +"apq" = (/obj/machinery/light{icon_state = "tube1"; dir = 4},/obj/machinery/portable_atmospherics/canister,/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (EAST)"; icon_state = "borderfloor"; dir = 4},/obj/effect/floor_decal/corner/mauve/border{tag = "icon-bordercolor (EAST)"; icon_state = "bordercolor"; dir = 4},/obj/structure/disposalpipe/segment{dir = 1; icon_state = "pipe-c"},/turf/simulated/floor/tiled,/area/rnd/misc_lab) +"apr" = (/obj/structure/grille,/obj/structure/window/reinforced{dir = 5; icon_state = "fwindow"},/obj/machinery/door/firedoor,/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/plating,/area/rnd/misc_lab) +"aps" = (/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (WEST)"; icon_state = "borderfloor"; dir = 8},/obj/effect/floor_decal/corner/mauve/border{tag = "icon-bordercolor (WEST)"; icon_state = "bordercolor"; dir = 8},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled,/area/rnd/hallway) +"apt" = (/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (EAST)"; icon_state = "borderfloor"; dir = 4},/obj/effect/floor_decal/corner/mauve/border{tag = "icon-bordercolor (EAST)"; icon_state = "bordercolor"; dir = 4},/obj/effect/floor_decal/borderfloor/corner2{tag = "icon-borderfloorcorner2 (SOUTHEAST)"; icon_state = "borderfloorcorner2"; dir = 6},/obj/effect/floor_decal/corner/mauve/bordercorner2{tag = "icon-bordercolorcorner2 (SOUTHEAST)"; icon_state = "bordercolorcorner2"; dir = 6},/obj/structure/disposalpipe/junction,/turf/simulated/floor/tiled,/area/rnd/hallway) +"apu" = (/obj/structure/grille,/obj/structure/window/reinforced{dir = 5; icon_state = "fwindow"},/obj/machinery/door/firedoor,/turf/simulated/floor/plating,/area/rnd/xenobiology/xenoflora) +"apv" = (/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (WEST)"; icon_state = "borderfloor"; dir = 8},/obj/effect/floor_decal/corner/mauve/border{tag = "icon-bordercolor (WEST)"; icon_state = "bordercolor"; dir = 8},/obj/effect/floor_decal/borderfloor/corner2{tag = "icon-borderfloorcorner2 (WEST)"; icon_state = "borderfloorcorner2"; dir = 8},/obj/effect/floor_decal/corner/mauve/bordercorner2{tag = "icon-bordercolorcorner2 (WEST)"; icon_state = "bordercolorcorner2"; dir = 8},/obj/structure/sink{icon_state = "sink"; dir = 8; pixel_x = -12; pixel_y = 2},/turf/simulated/floor/tiled,/area/rnd/xenobiology/xenoflora) +"apw" = (/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (EAST)"; icon_state = "borderfloor"; dir = 4},/obj/effect/floor_decal/corner/mauve/border{tag = "icon-bordercolor (EAST)"; icon_state = "bordercolor"; dir = 4},/obj/effect/floor_decal/borderfloor/corner2{tag = "icon-borderfloorcorner2 (NORTHEAST)"; icon_state = "borderfloorcorner2"; dir = 5},/obj/effect/floor_decal/corner/mauve/bordercorner2{tag = "icon-bordercolorcorner2 (NORTHEAST)"; icon_state = "bordercolorcorner2"; dir = 5},/obj/machinery/requests_console{department = "Science"; departmentType = 2; name = "Science Requests Console"; pixel_x = 30; pixel_y = 0},/turf/simulated/floor/tiled,/area/rnd/xenobiology/xenoflora) +"apx" = (/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (WEST)"; icon_state = "borderfloor"; dir = 8},/obj/effect/floor_decal/corner/mauve/border{tag = "icon-bordercolor (WEST)"; icon_state = "bordercolor"; dir = 8},/obj/effect/floor_decal/borderfloor/corner2{tag = "icon-borderfloorcorner2 (SOUTHWEST)"; icon_state = "borderfloorcorner2"; dir = 10},/obj/effect/floor_decal/corner/mauve/bordercorner2{tag = "icon-bordercolorcorner2 (SOUTHWEST)"; icon_state = "bordercolorcorner2"; dir = 10},/turf/simulated/floor/tiled,/area/rnd/hallway) +"apy" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 6},/turf/simulated/floor/tiled,/area/rnd/hallway) +"apz" = (/obj/machinery/atmospherics/unary/vent_pump/on{dir = 8},/turf/simulated/floor/tiled,/area/rnd/hallway) +"apA" = (/turf/simulated/floor/tiled,/area/rnd/hallway) +"apB" = (/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled,/area/rnd/hallway) +"apC" = (/obj/structure/window/reinforced,/turf/simulated/floor/tiled,/area/rnd/hallway) +"apD" = (/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (EAST)"; icon_state = "borderfloor"; dir = 4},/obj/effect/floor_decal/corner/mauve/border{tag = "icon-bordercolor (EAST)"; icon_state = "bordercolor"; dir = 4},/obj/machinery/alarm{dir = 8; icon_state = "alarm0"; pixel_x = 24},/turf/simulated/floor/tiled,/area/rnd/hallway) +"apE" = (/turf/simulated/wall,/area/tether/surfacebase/emergency_storage/rnd) +"apF" = (/obj/structure/catwalk,/obj/machinery/atmospherics/pipe/simple/visible/scrubbers,/obj/structure/cable{tag = "icon-1-4"; icon_state = "1-4"},/obj/machinery/atmospherics/pipe/simple/visible/supply,/turf/simulated/floor/tiled/techfloor,/area/maintenance/lower/atmos) +"apG" = (/obj/structure/catwalk,/obj/structure/cable{tag = "icon-4-8"; icon_state = "4-8"},/turf/simulated/floor/tiled/techfloor,/area/maintenance/lower/atmos) +"apH" = (/obj/structure/catwalk,/obj/machinery/alarm{frequency = 1441; pixel_y = 22},/obj/structure/cable{tag = "icon-4-8"; icon_state = "4-8"},/turf/simulated/floor/tiled/techfloor,/area/maintenance/lower/atmos) +"apI" = (/obj/structure/catwalk,/obj/structure/cable{tag = "icon-2-8"; icon_state = "2-8"},/turf/simulated/floor/tiled/techfloor,/area/maintenance/lower/atmos) +"apJ" = (/obj/machinery/disposal,/obj/structure/disposalpipe/trunk{dir = 1},/turf/simulated/floor/tiled,/area/crew_quarters/locker) +"apK" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 8},/obj/structure/cable{tag = "icon-1-2"; icon_state = "1-2"},/turf/simulated/floor/tiled,/area/crew_quarters/locker) +"apL" = (/obj/machinery/atmospherics/unary/vent_pump/on{dir = 8},/obj/machinery/light_switch{pixel_y = -25},/turf/simulated/floor/tiled,/area/crew_quarters/locker) +"apM" = (/obj/structure/reagent_dispensers/fueltank,/obj/machinery/firealarm{dir = 4; pixel_x = 24},/turf/simulated/floor/tiled,/area/crew_quarters/locker) +"apN" = (/obj/machinery/vending/cola,/turf/simulated/floor/tiled,/area/crew_quarters/locker) +"apO" = (/obj/machinery/light_switch{pixel_y = -25},/obj/structure/extinguisher_cabinet{dir = 2; icon_state = "extinguisher_closed"; pixel_x = 30; tag = "icon-extinguisher_closed (WEST)"},/turf/simulated/floor/tiled,/area/crew_quarters/locker) +"apP" = (/turf/simulated/floor/tiled/techfloor,/area/tether/surfacebase/atrium_one) +"apQ" = (/obj/machinery/door/airlock/maintenance/common,/obj/machinery/door/firedoor/glass,/turf/simulated/floor/tiled/techfloor,/area/maintenance/lower/locker_room) +"apR" = (/obj/effect/decal/cleanable/dirt,/obj/effect/floor_decal/rust,/turf/simulated/floor/tiled/techfloor,/area/maintenance/lower/locker_room) +"apS" = (/obj/machinery/vending/coffee,/turf/simulated/floor/tiled,/area/tether/surfacebase/tram) +"apT" = (/obj/effect/floor_decal/rust,/obj/machinery/camera/network/research{c_tag = "SCI - Research Hallway Center"; dir = 4},/turf/simulated/floor/tiled/steel_dirty,/area/rnd/misc_lab) +"apU" = (/turf/simulated/floor/tiled/steel_dirty,/area/rnd/misc_lab) +"apV" = (/obj/machinery/atmospherics/portables_connector,/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (WEST)"; icon_state = "borderfloor"; dir = 8},/obj/effect/floor_decal/industrial/danger{tag = "icon-danger (WEST)"; icon_state = "danger"; dir = 8},/obj/structure/extinguisher_cabinet{dir = 4; icon_state = "extinguisher_closed"; pixel_x = -30; tag = "icon-extinguisher_closed (EAST)"},/turf/simulated/floor/tiled,/area/rnd/misc_lab) +"apW" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 6},/turf/simulated/floor/tiled,/area/rnd/misc_lab) +"apX" = (/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 8},/turf/simulated/floor/tiled,/area/rnd/misc_lab) +"apY" = (/obj/machinery/portable_atmospherics/canister,/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (EAST)"; icon_state = "borderfloor"; dir = 4},/obj/effect/floor_decal/corner/mauve/border{tag = "icon-bordercolor (EAST)"; icon_state = "bordercolor"; dir = 4},/obj/effect/floor_decal/borderfloor/corner2{tag = "icon-borderfloorcorner2 (NORTHEAST)"; icon_state = "borderfloorcorner2"; dir = 5},/obj/effect/floor_decal/corner/mauve/bordercorner2{tag = "icon-bordercolorcorner2 (NORTHEAST)"; icon_state = "bordercolorcorner2"; dir = 5},/turf/simulated/floor/tiled,/area/rnd/misc_lab) +"apZ" = (/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (WEST)"; icon_state = "borderfloor"; dir = 8},/obj/effect/floor_decal/corner/mauve/border{tag = "icon-bordercolor (WEST)"; icon_state = "bordercolor"; dir = 8},/obj/effect/floor_decal/borderfloor/corner2{tag = "icon-borderfloorcorner2 (SOUTHWEST)"; icon_state = "borderfloorcorner2"; dir = 10},/obj/effect/floor_decal/corner/mauve/bordercorner2{tag = "icon-bordercolorcorner2 (SOUTHWEST)"; icon_state = "bordercolorcorner2"; dir = 10},/obj/machinery/computer/guestpass{dir = 4; pixel_x = -28; pixel_y = 0},/turf/simulated/floor/tiled,/area/rnd/hallway) +"aqa" = (/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (EAST)"; icon_state = "borderfloor"; dir = 4},/obj/effect/floor_decal/corner/mauve/border{tag = "icon-bordercolor (EAST)"; icon_state = "bordercolor"; dir = 4},/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled,/area/rnd/hallway) +"aqb" = (/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (WEST)"; icon_state = "borderfloor"; dir = 8},/obj/effect/floor_decal/corner/mauve/border{tag = "icon-bordercolor (WEST)"; icon_state = "bordercolor"; dir = 8},/turf/simulated/floor/tiled,/area/rnd/xenobiology/xenoflora) +"aqc" = (/obj/machinery/atmospherics/unary/vent_pump/on,/turf/simulated/floor/tiled,/area/rnd/xenobiology/xenoflora) +"aqd" = (/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 4},/turf/simulated/floor/tiled,/area/rnd/xenobiology/xenoflora) +"aqe" = (/obj/machinery/atmospherics/pipe/simple/hidden/yellow{dir = 9},/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,/area/rnd/xenobiology/xenoflora) +"aqf" = (/obj/machinery/door/firedoor/glass,/obj/machinery/door/airlock/glass_research{name = "Xenoflora Research"; req_access = list(55)},/turf/simulated/floor/tiled,/area/rnd/xenobiology/xenoflora) +"aqg" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/tiled,/area/rnd/hallway) +"aqh" = (/obj/structure/window/reinforced{dir = 4},/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled,/area/rnd/hallway) +"aqi" = (/obj/structure/stairs/north,/turf/simulated/floor/tiled,/area/rnd/hallway) +"aqj" = (/obj/structure/window/reinforced{dir = 8},/turf/simulated/floor/tiled,/area/rnd/hallway) +"aqk" = (/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (EAST)"; icon_state = "borderfloor"; dir = 4},/obj/effect/floor_decal/corner/mauve/border{tag = "icon-bordercolor (EAST)"; icon_state = "bordercolor"; dir = 4},/obj/machinery/status_display{pixel_x = 32; pixel_y = 0},/turf/simulated/floor/tiled,/area/rnd/hallway) +"aql" = (/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/tiled/techfloor,/area/tether/surfacebase/emergency_storage/rnd) +"aqm" = (/obj/machinery/portable_atmospherics/powered/pump/filled,/obj/effect/floor_decal/industrial/outline/blue,/turf/simulated/floor/tiled/techfloor,/area/tether/surfacebase/emergency_storage/rnd) +"aqn" = (/obj/machinery/space_heater,/obj/effect/floor_decal/industrial/outline/grey,/turf/simulated/floor/tiled/techfloor,/area/tether/surfacebase/emergency_storage/rnd) +"aqo" = (/obj/structure/railing{dir = 1},/obj/machinery/atmospherics/pipe/simple/visible/scrubbers{tag = "icon-intact-scrubbers (NORTHEAST)"; icon_state = "intact-scrubbers"; dir = 5},/obj/machinery/atmospherics/pipe/simple/visible/supply{tag = "icon-intact-supply (NORTHEAST)"; icon_state = "intact-supply"; dir = 5},/obj/effect/floor_decal/rust,/turf/simulated/floor/tiled/techfloor,/area/maintenance/lower/atmos) +"aqp" = (/obj/structure/railing{dir = 1},/obj/machinery/atmospherics/pipe/simple/visible/scrubbers{tag = "icon-intact-scrubbers (SOUTHWEST)"; icon_state = "intact-scrubbers"; dir = 10},/obj/machinery/atmospherics/pipe/simple/visible/supply{dir = 10},/obj/effect/floor_decal/rust,/turf/simulated/floor/tiled/techfloor,/area/maintenance/lower/atmos) +"aqq" = (/obj/structure/railing{dir = 4},/obj/structure/railing{dir = 1},/turf/simulated/floor/tiled/techfloor,/area/maintenance/lower/atmos) +"aqr" = (/obj/structure/catwalk,/obj/machinery/light/small{dir = 4; pixel_y = 0},/obj/structure/cable{tag = "icon-1-2"; icon_state = "1-2"},/turf/simulated/floor/tiled/techfloor,/area/maintenance/lower/atmos) +"aqs" = (/obj/machinery/door/airlock/maintenance/common,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/tiled/techfloor,/area/crew_quarters/locker) +"aqt" = (/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/tiled/techfloor,/area/maintenance/lower/locker_room) +"aqu" = (/obj/machinery/light/small{dir = 4; pixel_y = 0},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/tiled/techfloor,/area/maintenance/lower/locker_room) +"aqv" = (/obj/machinery/atmospherics/binary/pump,/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (WEST)"; icon_state = "borderfloor"; dir = 8},/obj/effect/floor_decal/industrial/danger{tag = "icon-danger (WEST)"; icon_state = "danger"; dir = 8},/turf/simulated/floor/tiled,/area/rnd/misc_lab) +"aqw" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/tiled,/area/rnd/misc_lab) +"aqx" = (/obj/machinery/door/firedoor/glass,/obj/machinery/door/airlock/research{name = "Miscellaneous Reseach Room"; req_access = list(); req_one_access = list(7,29)},/turf/simulated/floor/tiled,/area/rnd/misc_lab) +"aqy" = (/obj/machinery/light{icon_state = "tube1"; dir = 4},/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (EAST)"; icon_state = "borderfloor"; dir = 4},/obj/effect/floor_decal/corner/mauve/border{tag = "icon-bordercolor (EAST)"; icon_state = "bordercolor"; dir = 4},/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled,/area/rnd/hallway) +"aqz" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 5},/turf/simulated/floor/tiled,/area/rnd/xenobiology/xenoflora) +"aqA" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled,/area/rnd/xenobiology/xenoflora) +"aqB" = (/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 1},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 6},/obj/structure/cable/green{d1 = 2; d2 = 4; icon_state = "2-4"},/turf/simulated/floor/tiled,/area/rnd/xenobiology/xenoflora) +"aqC" = (/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) +"aqD" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 9},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 9},/obj/structure/cable/green{d1 = 1; d2 = 8; icon_state = "1-8"},/turf/simulated/floor/tiled,/area/rnd/xenobiology/xenoflora) +"aqE" = (/obj/machinery/botany/editor,/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (EAST)"; icon_state = "borderfloor"; dir = 4},/obj/effect/floor_decal/corner/mauve/border{tag = "icon-bordercolor (EAST)"; icon_state = "bordercolor"; dir = 4},/obj/effect/floor_decal/borderfloor/corner2{tag = "icon-borderfloorcorner2 (SOUTHEAST)"; icon_state = "borderfloorcorner2"; dir = 6},/obj/effect/floor_decal/corner/mauve/bordercorner2{tag = "icon-bordercolorcorner2 (SOUTHEAST)"; icon_state = "bordercolorcorner2"; dir = 6},/turf/simulated/floor/tiled,/area/rnd/xenobiology/xenoflora) +"aqF" = (/obj/machinery/light{icon_state = "tube1"; dir = 8},/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (WEST)"; icon_state = "borderfloor"; dir = 8},/obj/effect/floor_decal/corner/mauve/border{tag = "icon-bordercolor (WEST)"; icon_state = "bordercolor"; dir = 8},/obj/effect/floor_decal/borderfloor/corner2{tag = "icon-borderfloorcorner2 (WEST)"; icon_state = "borderfloorcorner2"; dir = 8},/obj/effect/floor_decal/corner/mauve/bordercorner2{tag = "icon-bordercolorcorner2 (WEST)"; icon_state = "bordercolorcorner2"; dir = 8},/turf/simulated/floor/tiled,/area/rnd/hallway) +"aqG" = (/obj/structure/window/reinforced{dir = 8},/obj/structure/cable/green{d1 = 2; d2 = 4; icon_state = "2-4"},/turf/simulated/floor/tiled,/area/rnd/hallway) +"aqH" = (/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (EAST)"; icon_state = "borderfloor"; dir = 4},/obj/effect/floor_decal/corner/mauve/border{tag = "icon-bordercolor (EAST)"; icon_state = "bordercolor"; dir = 4},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/tiled,/area/rnd/hallway) +"aqI" = (/obj/machinery/door/airlock/maintenance/int{name = "Emergency Storage"},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/door/firedoor/glass,/turf/simulated/floor/tiled/techfloor,/area/rnd/hallway) +"aqJ" = (/obj/structure/cable/green{d1 = 1; d2 = 8; icon_state = "1-8"},/turf/simulated/floor/tiled/techfloor,/area/tether/surfacebase/emergency_storage/rnd) +"aqK" = (/turf/simulated/floor/tiled/techfloor,/area/tether/surfacebase/emergency_storage/rnd) +"aqL" = (/obj/machinery/floodlight,/obj/effect/floor_decal/industrial/outline/yellow,/obj/machinery/alarm{dir = 8; icon_state = "alarm0"; pixel_x = 24},/turf/simulated/floor/tiled/techfloor,/area/tether/surfacebase/emergency_storage/rnd) +"aqM" = (/obj/effect/decal/cleanable/dirt,/obj/effect/floor_decal/rust,/obj/machinery/camera/network/northern_star{tag = "icon-camera (EAST)"; icon_state = "camera"; dir = 4},/turf/simulated/floor/tiled/techfloor,/area/maintenance/lower/atmos) +"aqN" = (/obj/machinery/atmospherics/pipe/simple/visible/scrubbers,/obj/machinery/atmospherics/pipe/simple/visible/supply,/obj/effect/decal/cleanable/dirt,/obj/random/tool,/turf/simulated/floor/tiled/techfloor,/area/maintenance/lower/atmos) +"aqO" = (/obj/structure/railing{dir = 4},/obj/random/junk,/turf/simulated/floor/tiled/techfloor,/area/maintenance/lower/atmos) +"aqP" = (/obj/structure/catwalk,/obj/structure/cable{tag = "icon-1-2"; icon_state = "1-2"},/turf/simulated/floor/tiled/techfloor,/area/maintenance/lower/atmos) +"aqQ" = (/obj/machinery/power/apc{dir = 1; name = "north bump"; pixel_x = 0; pixel_y = 24},/obj/structure/cable{icon_state = "0-2"; d2 = 2},/obj/effect/decal/cleanable/dirt,/mob/living/simple_animal/mouse,/turf/simulated/floor/tiled/techfloor,/area/maintenance/lower/locker_room) +"aqR" = (/obj/effect/decal/cleanable/dirt,/obj/structure/closet/crate,/obj/random/maintenance/clean,/obj/random/maintenance/research,/obj/random/maintenance/research,/turf/simulated/floor/tiled/techfloor,/area/maintenance/lower/locker_room) +"aqS" = (/obj/machinery/alarm{dir = 8; icon_state = "alarm0"; pixel_x = 24},/turf/simulated/floor/tiled/techfloor,/area/maintenance/lower/locker_room) +"aqT" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 6},/turf/simulated/floor/tiled,/area/tether/surfacebase/tram) +"aqU" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/turf/simulated/floor/tiled,/area/tether/surfacebase/tram) +"aqV" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 9},/obj/structure/cable{tag = "icon-1-2"; icon_state = "1-2"},/turf/simulated/floor/tiled,/area/tether/surfacebase/tram) +"aqW" = (/obj/machinery/light{icon_state = "tube1"; dir = 8},/turf/simulated/floor/tiled/steel_dirty,/area/rnd/misc_lab) +"aqX" = (/obj/machinery/atmospherics/pipe/simple/visible{icon_state = "intact"; dir = 6},/turf/simulated/floor/tiled/steel_dirty,/area/rnd/misc_lab) +"aqY" = (/obj/machinery/atmospherics/pipe/simple/visible{dir = 4},/turf/simulated/floor/tiled/steel_dirty,/area/rnd/misc_lab) +"aqZ" = (/obj/structure/grille,/obj/structure/window/reinforced{dir = 5; icon_state = "fwindow"},/obj/machinery/door/firedoor,/obj/machinery/atmospherics/pipe/simple/visible{dir = 4},/turf/simulated/floor/plating,/area/rnd/misc_lab) +"ara" = (/obj/machinery/atmospherics/pipe/simple/visible{tag = "icon-intact (NORTHWEST)"; icon_state = "intact"; dir = 9},/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (WEST)"; icon_state = "borderfloor"; dir = 8},/obj/effect/floor_decal/industrial/danger{tag = "icon-danger (WEST)"; icon_state = "danger"; dir = 8},/turf/simulated/floor/tiled,/area/rnd/misc_lab) +"arb" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 6},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/tiled,/area/rnd/misc_lab) +"arc" = (/obj/machinery/atmospherics/unary/vent_pump/on{dir = 8},/turf/simulated/floor/tiled,/area/rnd/misc_lab) +"ard" = (/obj/structure/reagent_dispensers/fueltank,/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (EAST)"; icon_state = "borderfloor"; dir = 4},/obj/effect/floor_decal/corner/mauve/border{tag = "icon-bordercolor (EAST)"; icon_state = "bordercolor"; dir = 4},/obj/effect/floor_decal/borderfloor/corner2{tag = "icon-borderfloorcorner2 (SOUTHEAST)"; icon_state = "borderfloorcorner2"; dir = 6},/obj/effect/floor_decal/corner/mauve/bordercorner2{tag = "icon-bordercolorcorner2 (SOUTHEAST)"; icon_state = "bordercolorcorner2"; dir = 6},/turf/simulated/floor/tiled,/area/rnd/misc_lab) +"are" = (/obj/structure/sign/warning/caution,/turf/simulated/wall,/area/rnd/misc_lab) +"arf" = (/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (WEST)"; icon_state = "borderfloor"; dir = 8},/obj/effect/floor_decal/corner/mauve/border{tag = "icon-bordercolor (WEST)"; icon_state = "bordercolor"; dir = 8},/obj/effect/floor_decal/borderfloor/corner2{tag = "icon-borderfloorcorner2 (WEST)"; icon_state = "borderfloorcorner2"; dir = 8},/obj/effect/floor_decal/corner/mauve/bordercorner2{tag = "icon-bordercolorcorner2 (WEST)"; icon_state = "bordercolorcorner2"; dir = 8},/turf/simulated/floor/tiled,/area/rnd/hallway) +"arg" = (/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (EAST)"; icon_state = "borderfloor"; dir = 4},/obj/effect/floor_decal/corner/mauve/border{tag = "icon-bordercolor (EAST)"; icon_state = "bordercolor"; dir = 4},/obj/machinery/atmospherics/unary/vent_pump/on,/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled,/area/rnd/hallway) +"arh" = (/obj/machinery/seed_storage/xenobotany,/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (SOUTHWEST)"; icon_state = "borderfloor"; dir = 10},/obj/effect/floor_decal/corner/mauve/border{tag = "icon-bordercolor (SOUTHWEST)"; icon_state = "bordercolor"; dir = 10},/turf/simulated/floor/tiled,/area/rnd/xenobiology/xenoflora) +"ari" = (/obj/machinery/vending/hydronutrients{categories = 3},/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/corner/mauve/border,/turf/simulated/floor/tiled,/area/rnd/xenobiology/xenoflora) +"arj" = (/obj/machinery/smartfridge,/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/corner/mauve/border,/turf/simulated/floor/tiled,/area/rnd/xenobiology/xenoflora) +"ark" = (/obj/structure/table/glass,/obj/item/weapon/tape_roll,/obj/item/device/analyzer/plant_analyzer,/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/corner/mauve/border,/turf/simulated/floor/tiled,/area/rnd/xenobiology/xenoflora) +"arl" = (/obj/structure/table/glass,/obj/item/weapon/clipboard,/obj/item/weapon/folder/white,/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/corner/mauve/border,/turf/simulated/floor/tiled,/area/rnd/xenobiology/xenoflora) +"arm" = (/obj/machinery/reagentgrinder,/obj/structure/table/glass,/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/corner/mauve/border,/obj/effect/floor_decal/borderfloor/corner2{tag = "icon-borderfloorcorner2 (NORTHWEST)"; icon_state = "borderfloorcorner2"; dir = 9},/obj/effect/floor_decal/corner/mauve/bordercorner2{tag = "icon-bordercolorcorner2 (NORTHWEST)"; icon_state = "bordercolorcorner2"; dir = 9},/obj/machinery/light,/turf/simulated/floor/tiled,/area/rnd/xenobiology/xenoflora) +"arn" = (/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,/area/rnd/xenobiology/xenoflora) +"aro" = (/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/corner/mauve/border,/obj/effect/floor_decal/borderfloor/corner2,/obj/effect/floor_decal/corner/mauve/bordercorner2,/obj/machinery/newscaster{pixel_x = 0; pixel_y = -30},/turf/simulated/floor/tiled,/area/rnd/xenobiology/xenoflora) +"arp" = (/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/corner/mauve/border,/turf/simulated/floor/tiled,/area/rnd/xenobiology/xenoflora) +"arq" = (/obj/machinery/botany/extractor,/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (SOUTHEAST)"; icon_state = "borderfloor"; dir = 6},/obj/effect/floor_decal/corner/mauve/border{tag = "icon-bordercolor (SOUTHEAST)"; icon_state = "bordercolor"; dir = 6},/turf/simulated/floor/tiled,/area/rnd/xenobiology/xenoflora) +"arr" = (/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (WEST)"; icon_state = "borderfloor"; dir = 8},/obj/effect/floor_decal/corner/mauve/border{tag = "icon-bordercolor (WEST)"; icon_state = "bordercolor"; dir = 8},/turf/simulated/floor/tiled,/area/rnd/hallway) +"ars" = (/obj/effect/floor_decal/steeldecal/steel_decals9{tag = "icon-steel_decals9 (EAST)"; icon_state = "steel_decals9"; dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals9{tag = "icon-steel_decals9 (NORTH)"; icon_state = "steel_decals9"; dir = 1},/turf/simulated/floor/tiled,/area/rnd/hallway) +"art" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/tiled,/area/rnd/hallway) +"aru" = (/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (EAST)"; icon_state = "borderfloor"; dir = 4},/obj/effect/floor_decal/corner/mauve/border{tag = "icon-bordercolor (EAST)"; icon_state = "bordercolor"; dir = 4},/obj/machinery/light{dir = 4; icon_state = "tube1"; pixel_x = 0},/turf/simulated/floor/tiled,/area/rnd/hallway) +"arv" = (/obj/structure/closet/firecloset,/turf/simulated/floor/tiled/techfloor,/area/tether/surfacebase/emergency_storage/rnd) +"arw" = (/obj/machinery/light/small,/turf/simulated/floor/tiled/techfloor,/area/tether/surfacebase/emergency_storage/rnd) +"arx" = (/obj/structure/table/standard,/obj/item/device/t_scanner,/obj/item/weapon/storage/briefcase/inflatable,/turf/simulated/floor/tiled/techfloor,/area/tether/surfacebase/emergency_storage/rnd) +"ary" = (/obj/machinery/atmospherics/pipe/simple/visible/supply{dir = 6},/obj/machinery/atmospherics/pipe/simple/visible/scrubbers{tag = "icon-intact-scrubbers (SOUTHEAST)"; icon_state = "intact-scrubbers"; dir = 6},/turf/simulated/floor/tiled/techfloor,/area/maintenance/lower/atmos) +"arz" = (/obj/machinery/atmospherics/pipe/manifold/visible/supply,/obj/machinery/atmospherics/pipe/manifold/visible/scrubbers,/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/tiled/techfloor,/area/maintenance/lower/atmos) +"arA" = (/obj/structure/railing{dir = 4},/obj/machinery/atmospherics/pipe/simple/visible/supply{tag = "icon-intact-supply (EAST)"; icon_state = "intact-supply"; dir = 4},/obj/machinery/atmospherics/pipe/simple/visible/scrubbers{tag = "icon-intact-scrubbers (EAST)"; icon_state = "intact-scrubbers"; dir = 4},/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/tiled/techfloor,/area/maintenance/lower/atmos) +"arB" = (/obj/structure/catwalk,/obj/machinery/atmospherics/pipe/simple/visible/supply{tag = "icon-intact-supply (EAST)"; icon_state = "intact-supply"; dir = 4},/obj/machinery/atmospherics/pipe/simple/visible/scrubbers{tag = "icon-intact-scrubbers (EAST)"; icon_state = "intact-scrubbers"; dir = 4},/obj/structure/cable{tag = "icon-4-8"; icon_state = "4-8"},/obj/structure/cable{tag = "icon-1-4"; icon_state = "1-4"},/turf/simulated/floor/tiled/techfloor,/area/maintenance/lower/atmos) +"arC" = (/obj/machinery/door/airlock/maintenance/common,/obj/machinery/door/firedoor/glass,/obj/structure/cable{tag = "icon-4-8"; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0},/turf/simulated/floor/tiled/techfloor,/area/maintenance/lower/atmos) +"arD" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0},/turf/simulated/floor/tiled/techfloor,/area/maintenance/lower/locker_room) +"arE" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0},/obj/structure/cable{icon_state = "1-8"},/turf/simulated/floor/tiled/techfloor,/area/maintenance/lower/locker_room) +"arF" = (/obj/machinery/light/small{dir = 4; pixel_y = 0},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/cable{d1 = 2; d2 = 8; icon_state = "2-8"},/turf/simulated/floor/tiled/techfloor,/area/maintenance/lower/locker_room) +"arG" = (/obj/effect/decal/cleanable/dirt,/obj/effect/decal/cleanable/dirt,/obj/random/junk,/turf/simulated/floor/tiled/techfloor,/area/maintenance/lower/locker_room) +"arH" = (/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 1},/turf/simulated/floor/tiled,/area/tether/surfacebase/tram) +"arI" = (/obj/machinery/atmospherics/unary/vent_pump/on{dir = 1},/obj/structure/cable{tag = "icon-1-2"; icon_state = "1-2"},/turf/simulated/floor/tiled,/area/tether/surfacebase/tram) +"arJ" = (/obj/machinery/alarm{dir = 4; icon_state = "alarm0"; pixel_x = -22; pixel_y = 0},/turf/simulated/floor/tiled/steel_dirty,/area/rnd/misc_lab) +"arK" = (/obj/machinery/atmospherics/pipe/simple/visible,/turf/simulated/floor/tiled/steel_dirty,/area/rnd/misc_lab) +"arL" = (/obj/machinery/door/blast/regular,/obj/machinery/door/firedoor/glass,/turf/simulated/floor/tiled,/area/rnd/misc_lab) +"arM" = (/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (WEST)"; icon_state = "borderfloor"; dir = 8},/obj/effect/floor_decal/industrial/danger{tag = "icon-danger (WEST)"; icon_state = "danger"; dir = 8},/turf/simulated/floor/tiled,/area/rnd/misc_lab) +"arN" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/tiled,/area/rnd/misc_lab) +"arO" = (/obj/structure/table/reinforced,/obj/item/weapon/crowbar/red,/obj/item/weapon/wrench,/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (EAST)"; icon_state = "borderfloor"; dir = 4},/obj/effect/floor_decal/corner/mauve/border{tag = "icon-bordercolor (EAST)"; icon_state = "bordercolor"; dir = 4},/turf/simulated/floor/tiled,/area/rnd/misc_lab) +"arP" = (/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (WEST)"; icon_state = "borderfloor"; dir = 8},/obj/effect/floor_decal/corner/mauve/border{tag = "icon-bordercolor (WEST)"; icon_state = "bordercolor"; dir = 8},/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 4},/turf/simulated/floor/tiled,/area/rnd/hallway) +"arQ" = (/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (EAST)"; icon_state = "borderfloor"; dir = 4},/obj/effect/floor_decal/corner/mauve/border{tag = "icon-bordercolor (EAST)"; icon_state = "bordercolor"; dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 10},/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled,/area/rnd/hallway) +"arR" = (/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/glass_research{name = "Xenoflora Research"; req_access = list(55)},/turf/simulated/floor/tiled,/area/rnd/xenobiology/xenoflora) +"arS" = (/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (EAST)"; icon_state = "borderfloor"; dir = 4},/obj/effect/floor_decal/corner/mauve/border{tag = "icon-bordercolor (EAST)"; icon_state = "bordercolor"; dir = 4},/obj/machinery/requests_console{department = "Science"; departmentType = 2; name = "Science Requests Console"; pixel_x = 30; pixel_y = 0},/turf/simulated/floor/tiled,/area/rnd/hallway) +"arT" = (/obj/effect/decal/cleanable/blood,/obj/item/clothing/shoes/athletic{desc = "Assault"},/obj/item/clothing/under/pants{desc = "Overdose"},/obj/item/weapon/material/twohanded/baseballbat{desc = "Decadence"; health = 1989},/obj/effect/floor_decal/rust,/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/plating,/area/maintenance/lower/atmos) +"arU" = (/obj/effect/decal/cleanable/blood,/obj/item/device/tape{desc = "No Talk"},/obj/item/clothing/suit/varsity/brown{desc = "Showdown"},/obj/item/clothing/head/richard,/obj/effect/floor_decal/rust,/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/plating,/area/maintenance/lower/atmos) +"arV" = (/obj/structure/railing,/obj/machinery/atmospherics/pipe/simple/visible/supply,/obj/machinery/atmospherics/pipe/simple/visible/scrubbers,/obj/structure/closet,/obj/random/maintenance/clean,/obj/random/maintenance/engineering,/obj/random/tool,/obj/random/maintenance/engineering,/turf/simulated/floor/tiled/techfloor,/area/maintenance/lower/atmos) +"arW" = (/obj/structure/railing,/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/tiled/techfloor,/area/maintenance/lower/atmos) +"arX" = (/obj/structure/railing{dir = 4},/obj/structure/railing,/obj/structure/table/rack,/obj/random/maintenance/clean,/obj/random/maintenance/clean,/obj/random/maintenance/engineering,/turf/simulated/floor/tiled/techfloor,/area/maintenance/lower/atmos) +"arY" = (/obj/structure/catwalk,/turf/simulated/floor/tiled/techfloor,/area/maintenance/lower/atmos) +"arZ" = (/obj/structure/closet/crate,/obj/item/weapon/handcuffs/fuzzy,/obj/random/maintenance/security,/obj/random/contraband,/turf/simulated/floor/plating,/area/maintenance/lower/locker_room) +"asa" = (/obj/structure/cable{tag = "icon-1-2"; icon_state = "1-2"},/turf/simulated/floor/tiled,/area/tether/surfacebase/tram) +"asb" = (/obj/machinery/light_switch{pixel_x = -25},/turf/simulated/floor/tiled/steel_dirty,/area/rnd/misc_lab) +"asc" = (/obj/machinery/atmospherics/unary/outlet_injector{dir = 1; frequency = 1441; icon_state = "map_injector"; id = "n2_in"; use_power = 1},/turf/simulated/floor/tiled/steel_dirty,/area/rnd/misc_lab) +"asd" = (/obj/machinery/atmospherics/unary/vent_scrubber/on,/turf/simulated/floor/tiled/steel_dirty,/area/rnd/misc_lab) +"ase" = (/obj/machinery/light{icon_state = "tube1"; dir = 4},/obj/structure/table/reinforced,/obj/item/clothing/mask/gas,/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (EAST)"; icon_state = "borderfloor"; dir = 4},/obj/effect/floor_decal/corner/mauve/border{tag = "icon-bordercolor (EAST)"; icon_state = "bordercolor"; dir = 4},/turf/simulated/floor/tiled,/area/rnd/misc_lab) +"asf" = (/obj/effect/floor_decal/borderfloor/corner{tag = "icon-borderfloorcorner (EAST)"; icon_state = "borderfloorcorner"; dir = 4},/obj/effect/floor_decal/corner/mauve/bordercorner{tag = "icon-bordercolorcorner (EAST)"; icon_state = "bordercolorcorner"; dir = 4},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/cable/green{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/structure/disposalpipe/segment{dir = 1; icon_state = "pipe-c"},/turf/simulated/floor/tiled,/area/rnd/hallway) +"asg" = (/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (NORTH)"; icon_state = "borderfloor"; dir = 1},/obj/effect/floor_decal/corner/mauve/border{tag = "icon-bordercolor (NORTH)"; icon_state = "bordercolor"; dir = 1},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/extinguisher_cabinet{pixel_y = 30},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled,/area/rnd/hallway) +"ash" = (/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (NORTH)"; icon_state = "borderfloor"; dir = 1},/obj/effect/floor_decal/corner/mauve/border{tag = "icon-bordercolor (NORTH)"; icon_state = "bordercolor"; dir = 1},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/alarm{frequency = 1441; pixel_y = 22},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled,/area/rnd/hallway) +"asi" = (/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (NORTH)"; icon_state = "borderfloor"; dir = 1},/obj/effect/floor_decal/corner/mauve/border{tag = "icon-bordercolor (NORTH)"; icon_state = "bordercolor"; dir = 1},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/firealarm{dir = 2; layer = 3.3; pixel_x = 0; pixel_y = 26},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled,/area/rnd/hallway) +"asj" = (/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (NORTH)"; icon_state = "borderfloor"; dir = 1},/obj/effect/floor_decal/corner/mauve/border{tag = "icon-bordercolor (NORTH)"; icon_state = "bordercolor"; dir = 1},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 1},/obj/structure/cable/green{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/status_display{pixel_y = 30},/obj/structure/disposalpipe/junction{icon_state = "pipe-j1"; dir = 4},/turf/simulated/floor/tiled,/area/rnd/hallway) +"ask" = (/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (NORTH)"; icon_state = "borderfloor"; dir = 1},/obj/effect/floor_decal/corner/mauve/border{tag = "icon-bordercolor (NORTH)"; icon_state = "bordercolor"; dir = 1},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/camera/network/research,/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled,/area/rnd/hallway) +"asl" = (/obj/machinery/light{dir = 1},/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (NORTH)"; icon_state = "borderfloor"; dir = 1},/obj/effect/floor_decal/corner/mauve/border{tag = "icon-bordercolor (NORTH)"; icon_state = "bordercolor"; dir = 1},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled,/area/rnd/hallway) +"asm" = (/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (NORTH)"; icon_state = "borderfloor"; dir = 1},/obj/effect/floor_decal/corner/mauve/border{tag = "icon-bordercolor (NORTH)"; icon_state = "bordercolor"; dir = 1},/obj/effect/floor_decal/borderfloor/corner2{tag = "icon-borderfloorcorner2 (NORTH)"; icon_state = "borderfloorcorner2"; dir = 1},/obj/effect/floor_decal/corner/mauve/bordercorner2{tag = "icon-bordercolorcorner2 (NORTH)"; icon_state = "bordercolorcorner2"; dir = 1},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/door/firedoor/glass/hidden/steel{dir = 2},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled,/area/rnd/hallway) +"asn" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,/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/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled,/area/rnd/hallway) +"aso" = (/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (NORTH)"; icon_state = "borderfloor"; dir = 1},/obj/effect/floor_decal/corner/mauve/border{tag = "icon-bordercolor (NORTH)"; icon_state = "bordercolor"; dir = 1},/obj/effect/floor_decal/borderfloor/corner2{tag = "icon-borderfloorcorner2 (EAST)"; icon_state = "borderfloorcorner2"; dir = 4},/obj/effect/floor_decal/corner/mauve/bordercorner2{tag = "icon-bordercolorcorner2 (EAST)"; icon_state = "bordercolorcorner2"; dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled,/area/rnd/hallway) +"asp" = (/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (NORTH)"; icon_state = "borderfloor"; dir = 1},/obj/effect/floor_decal/corner/mauve/border{tag = "icon-bordercolor (NORTH)"; icon_state = "bordercolor"; dir = 1},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled,/area/rnd/hallway) +"asq" = (/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (NORTH)"; icon_state = "borderfloor"; dir = 1},/obj/effect/floor_decal/corner/mauve/border{tag = "icon-bordercolor (NORTH)"; icon_state = "bordercolor"; dir = 1},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 1},/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/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled,/area/rnd/hallway) +"asr" = (/obj/effect/floor_decal/borderfloor/corner{tag = "icon-borderfloorcorner (NORTH)"; icon_state = "borderfloorcorner"; dir = 1},/obj/effect/floor_decal/corner/mauve/bordercorner{tag = "icon-bordercolorcorner (NORTH)"; icon_state = "bordercolorcorner"; dir = 1},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled,/area/rnd/hallway) +"ass" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled,/area/rnd/hallway) +"ast" = (/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 8},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled,/area/rnd/hallway) +"asu" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled,/area/rnd/hallway) +"asv" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 8; icon_state = "pipe-c"},/turf/simulated/floor/tiled,/area/rnd/hallway) +"asw" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/tiled,/area/rnd/hallway) +"asx" = (/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/structure/cable/green{d1 = 1; d2 = 8; icon_state = "1-8"},/turf/simulated/floor/tiled,/area/rnd/hallway) +"asy" = (/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (EAST)"; icon_state = "borderfloor"; dir = 4},/obj/effect/floor_decal/corner/mauve/border{tag = "icon-bordercolor (EAST)"; icon_state = "bordercolor"; dir = 4},/obj/machinery/power/apc{dir = 4; name = "east bump"; pixel_x = 28},/obj/structure/cable/green{icon_state = "0-8"},/turf/simulated/floor/tiled,/area/rnd/hallway) +"asz" = (/obj/structure/catwalk,/obj/machinery/alarm{frequency = 1441; pixel_y = 22},/turf/simulated/floor/tiled/techfloor,/area/maintenance/lower/atmos) +"asA" = (/obj/structure/railing{dir = 8},/obj/effect/floor_decal/industrial/outline/yellow,/obj/machinery/atmospherics/pipe/zpipe/up/scrubbers,/obj/machinery/atmospherics/pipe/zpipe/up/supply,/obj/structure/cable/cyan{d1 = 16; d2 = 0; icon_state = "16-0"},/obj/structure/cable/cyan{d2 = 2; icon_state = "0-2"},/obj/structure/cable/cyan{d2 = 4; icon_state = "0-4"},/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/tiled/techfloor,/area/maintenance/lower/atmos) +"asB" = (/obj/machinery/power/apc{dir = 1; name = "north bump"; pixel_x = 0; pixel_y = 24},/obj/structure/cable/cyan{d2 = 8; icon_state = "0-8"},/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/tiled/techfloor,/area/maintenance/lower/atmos) +"asC" = (/obj/structure/catwalk,/obj/machinery/atmospherics/pipe/simple/visible/supply,/obj/machinery/atmospherics/pipe/simple/visible/scrubbers,/turf/simulated/floor/tiled/techfloor,/area/maintenance/lower/atmos) +"asD" = (/obj/structure/catwalk,/obj/structure/catwalk,/turf/simulated/floor/tiled/techfloor,/area/maintenance/lower/atmos) +"asE" = (/obj/structure/bed/chair{dir = 1},/obj/machinery/firealarm{dir = 1; pixel_x = 0; pixel_y = -25},/turf/simulated/floor/tiled,/area/tether/surfacebase/tram) +"asF" = (/obj/machinery/power/apc{dir = 2; name = "south bump"; pixel_y = -28},/obj/structure/cable,/turf/simulated/floor/tiled,/area/tether/surfacebase/tram) +"asG" = (/obj/machinery/light,/obj/item/device/radio/intercom{name = "Station Intercom (General)"; pixel_y = -21},/turf/simulated/floor/tiled,/area/tether/surfacebase/tram) +"asH" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 5},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 6},/turf/simulated/floor/tiled/steel_dirty,/area/rnd/misc_lab) +"asI" = (/obj/structure/grille,/obj/structure/window/reinforced{dir = 5; icon_state = "fwindow"},/obj/machinery/door/firedoor,/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/turf/simulated/floor/plating,/area/rnd/misc_lab) +"asJ" = (/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (WEST)"; icon_state = "borderfloor"; dir = 8},/obj/effect/floor_decal/industrial/danger{tag = "icon-danger (WEST)"; icon_state = "danger"; dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/turf/simulated/floor/tiled,/area/rnd/misc_lab) +"asK" = (/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 4},/turf/simulated/floor/tiled,/area/rnd/misc_lab) +"asL" = (/obj/structure/closet/crate,/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (EAST)"; icon_state = "borderfloor"; dir = 4},/obj/effect/floor_decal/corner/mauve/border{tag = "icon-bordercolor (EAST)"; icon_state = "bordercolor"; dir = 4},/obj/item/device/radio/intercom{dir = 4; name = "Station Intercom (General)"; pixel_x = 21},/turf/simulated/floor/tiled,/area/rnd/misc_lab) +"asM" = (/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (SOUTHWEST)"; icon_state = "borderfloor"; dir = 10},/obj/effect/floor_decal/corner/mauve/border{tag = "icon-bordercolor (SOUTHWEST)"; icon_state = "bordercolor"; dir = 10},/obj/effect/floor_decal/borderfloor/corner2{tag = "icon-borderfloorcorner2 (NORTHWEST)"; icon_state = "borderfloorcorner2"; dir = 9},/obj/effect/floor_decal/corner/mauve/bordercorner2{tag = "icon-bordercolorcorner2 (NORTHWEST)"; icon_state = "bordercolorcorner2"; dir = 9},/turf/simulated/floor/tiled,/area/rnd/hallway) +"asN" = (/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/tiled,/area/rnd/hallway) +"asO" = (/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/corner/mauve/border,/obj/effect/floor_decal/borderfloor/corner2,/obj/effect/floor_decal/corner/mauve/bordercorner2,/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled,/area/rnd/hallway) +"asP" = (/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/corner/mauve/border,/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled,/area/rnd/hallway) +"asQ" = (/obj/effect/floor_decal/borderfloor/corner{tag = "icon-borderfloorcorner (WEST)"; icon_state = "borderfloorcorner"; dir = 8},/obj/effect/floor_decal/corner/mauve/bordercorner{tag = "icon-bordercolorcorner (WEST)"; icon_state = "bordercolorcorner"; dir = 8},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 1},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled,/area/rnd/hallway) +"asR" = (/obj/effect/floor_decal/borderfloor/corner,/obj/effect/floor_decal/corner/mauve/bordercorner,/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled,/area/rnd/hallway) +"asS" = (/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/corner/mauve/border,/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/door/firedoor/glass/hidden/steel{dir = 1},/turf/simulated/floor/tiled,/area/rnd/hallway) +"asT" = (/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/corner/mauve/border,/obj/machinery/atmospherics/pipe/manifold/hidden/supply,/turf/simulated/floor/tiled,/area/rnd/hallway) +"asU" = (/obj/machinery/light,/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/corner/mauve/border,/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled,/area/rnd/hallway) +"asV" = (/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/corner/mauve/border,/obj/effect/floor_decal/borderfloor/corner2{tag = "icon-borderfloorcorner2 (NORTHWEST)"; icon_state = "borderfloorcorner2"; dir = 9},/obj/effect/floor_decal/corner/mauve/bordercorner2{tag = "icon-bordercolorcorner2 (NORTHWEST)"; icon_state = "bordercolorcorner2"; dir = 9},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled,/area/rnd/hallway) +"asW" = (/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 1},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/tiled,/area/rnd/hallway) +"asX" = (/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/corner/mauve/border,/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 9},/obj/machinery/camera/network/research{c_tag = "SCI - Research Dock Hallway Starboard"; dir = 1},/turf/simulated/floor/tiled,/area/rnd/hallway) +"asY" = (/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/corner/mauve/border,/obj/machinery/computer/guestpass{dir = 1; icon_state = "guest"; pixel_y = -28; tag = "icon-guest (NORTH)"},/turf/simulated/floor/tiled,/area/rnd/hallway) +"asZ" = (/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/corner/mauve/border,/turf/simulated/floor/tiled,/area/rnd/hallway) +"ata" = (/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/corner/mauve/border,/obj/item/device/radio/intercom{name = "Station Intercom (General)"; pixel_y = -21},/turf/simulated/floor/tiled,/area/rnd/hallway) +"atb" = (/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/corner/mauve/border,/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/tiled,/area/rnd/hallway) +"atc" = (/obj/structure/flora/pottedplant,/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (SOUTHEAST)"; icon_state = "borderfloor"; dir = 6},/obj/effect/floor_decal/corner/mauve/border{tag = "icon-bordercolor (SOUTHEAST)"; icon_state = "bordercolor"; dir = 6},/turf/simulated/floor/tiled,/area/rnd/hallway) +"atd" = (/turf/simulated/wall,/area/maintenance/lower/research) +"ate" = (/obj/structure/catwalk,/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/tiled/techfloor,/area/maintenance/lower/atmos) +"atf" = (/obj/structure/railing{dir = 8},/obj/machinery/atmospherics/pipe/simple/visible/scrubbers{tag = "icon-intact-scrubbers (NORTHEAST)"; icon_state = "intact-scrubbers"; dir = 5},/obj/machinery/atmospherics/pipe/simple/visible/supply{tag = "icon-intact-supply (NORTHEAST)"; icon_state = "intact-supply"; dir = 5},/obj/structure/cable/cyan{d1 = 1; d2 = 4; icon_state = "1-4"},/turf/simulated/floor/tiled/techfloor,/area/maintenance/lower/atmos) +"atg" = (/obj/machinery/atmospherics/pipe/simple/visible/scrubbers{tag = "icon-intact-scrubbers (SOUTHWEST)"; icon_state = "intact-scrubbers"; dir = 10},/obj/machinery/atmospherics/pipe/simple/visible/supply{dir = 10},/obj/structure/cable/cyan{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/tiled/techfloor,/area/maintenance/lower/atmos) +"ath" = (/obj/structure/ladder/up,/obj/machinery/light/small{dir = 8; pixel_x = 0},/turf/simulated/floor/tiled/techfloor,/area/maintenance/lower/atmos) +"ati" = (/obj/structure/catwalk,/obj/machinery/atmospherics/pipe/simple/visible/supply,/obj/machinery/atmospherics/pipe/simple/visible/scrubbers,/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/tiled/techfloor,/area/maintenance/lower/atmos) +"atj" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 5},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 5},/obj/structure/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/turf/simulated/floor/tiled/techfloor,/area/maintenance/lower/locker_room) +"atk" = (/obj/effect/floor_decal/techfloor/orange{tag = "icon-techfloororange_edges (WEST)"; icon_state = "techfloororange_edges"; dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0},/turf/simulated/floor/tiled/techfloor/grid,/area/maintenance/lower/locker_room) +"atl" = (/obj/machinery/light/small,/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0},/turf/simulated/floor/tiled/techfloor,/area/maintenance/lower/locker_room) +"atm" = (/obj/machinery/door/airlock/maintenance/common,/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0},/turf/simulated/floor/tiled/techfloor,/area/maintenance/lower/locker_room) +"atn" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 9; pixel_y = 0},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 9},/obj/structure/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/turf/simulated/floor/tiled/techfloor,/area/maintenance/lower/locker_room) +"ato" = (/obj/machinery/atmospherics/unary/vent_pump/on{dir = 1},/turf/simulated/floor/tiled/steel_dirty,/area/rnd/misc_lab) +"atp" = (/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (WEST)"; icon_state = "borderfloor"; dir = 8},/obj/effect/floor_decal/industrial/danger{tag = "icon-danger (WEST)"; icon_state = "danger"; dir = 8},/obj/machinery/camera/network/research{c_tag = "SCI - Research Hallway Center"; dir = 4},/turf/simulated/floor/tiled,/area/rnd/misc_lab) +"atq" = (/obj/structure/closet/crate,/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (EAST)"; icon_state = "borderfloor"; dir = 4},/obj/effect/floor_decal/corner/mauve/border{tag = "icon-bordercolor (EAST)"; icon_state = "bordercolor"; dir = 4},/turf/simulated/floor/tiled,/area/rnd/misc_lab) +"atr" = (/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 = "Miscellaneous Reseach Room"; req_access = list(); req_one_access = list(7,29)},/turf/simulated/floor/tiled,/area/rnd/misc_lab) +"ats" = (/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (WEST)"; icon_state = "borderfloor"; dir = 8},/obj/effect/floor_decal/corner/mauve/border{tag = "icon-bordercolor (WEST)"; icon_state = "bordercolor"; dir = 8},/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"},/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled,/area/rnd/hallway) +"att" = (/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (EAST)"; icon_state = "borderfloor"; dir = 4},/obj/effect/floor_decal/corner/mauve/border{tag = "icon-bordercolor (EAST)"; icon_state = "bordercolor"; dir = 4},/turf/simulated/floor/tiled,/area/rnd/hallway) +"atu" = (/turf/simulated/wall/r_wall,/area/rnd/xenobiology/xenoflora_storage) +"atv" = (/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,/area/rnd/xenobiology/xenoflora_storage) +"atw" = (/obj/structure/sign/warning/caution,/turf/simulated/wall/r_wall,/area/rnd/xenobiology/xenoflora_storage) +"atx" = (/obj/machinery/door/airlock/maintenance/rnd,/obj/machinery/door/firedoor/glass,/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/tiled/steel_dirty,/area/rnd/hallway) +"aty" = (/obj/structure/railing{dir = 4},/obj/random/junk,/turf/simulated/floor/tiled/techfloor,/area/maintenance/lower/research) +"atz" = (/obj/structure/catwalk,/turf/simulated/floor/tiled/techfloor,/area/maintenance/lower/research) +"atA" = (/obj/structure/catwalk,/obj/machinery/alarm{frequency = 1441; pixel_y = 22},/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/tiled/techfloor,/area/maintenance/lower/research) +"atB" = (/obj/structure/catwalk,/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/tiled/techfloor,/area/maintenance/lower/research) +"atC" = (/obj/machinery/door/airlock/maintenance/rnd,/obj/machinery/door/firedoor/glass,/turf/simulated/floor/tiled/techfloor,/area/maintenance/lower/atmos) +"atD" = (/obj/machinery/light/small{dir = 8; pixel_x = 0},/obj/structure/catwalk,/obj/effect/decal/cleanable/dirt,/obj/effect/floor_decal/rust,/turf/simulated/floor/tiled/techfloor,/area/maintenance/lower/atmos) +"atE" = (/obj/structure/railing,/obj/structure/railing{dir = 8},/obj/effect/decal/cleanable/dirt,/obj/effect/floor_decal/rust,/obj/random/junk,/turf/simulated/floor/tiled/techfloor,/area/maintenance/lower/atmos) +"atF" = (/obj/structure/railing,/obj/machinery/atmospherics/pipe/simple/visible/scrubbers,/obj/machinery/atmospherics/pipe/simple/visible/supply,/obj/structure/cable/cyan{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/tiled/techfloor,/area/maintenance/lower/atmos) +"atG" = (/obj/machinery/door/airlock/maintenance/engi,/obj/machinery/door/firedoor/glass,/turf/simulated/floor/tiled/techfloor,/area/maintenance/lower/atmos) +"atH" = (/obj/structure/sign/warning/nosmoking_2,/turf/simulated/wall/r_wall,/area/rnd/misc_lab) +"atI" = (/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 8},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 8},/turf/simulated/floor/tiled,/area/rnd/misc_lab) +"atJ" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled,/area/rnd/misc_lab) +"atK" = (/obj/effect/floor_decal/borderfloor/corner{tag = "icon-borderfloorcorner (EAST)"; icon_state = "borderfloorcorner"; dir = 4},/obj/effect/floor_decal/corner/mauve/bordercorner{tag = "icon-bordercolorcorner (EAST)"; icon_state = "bordercolorcorner"; 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/misc_lab) +"atL" = (/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (NORTH)"; icon_state = "borderfloor"; dir = 1},/obj/effect/floor_decal/corner/mauve/border{tag = "icon-bordercolor (NORTH)"; icon_state = "bordercolor"; dir = 1},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 1},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 1},/obj/machinery/firealarm{dir = 2; layer = 3.3; pixel_x = 0; pixel_y = 26},/turf/simulated/floor/tiled,/area/rnd/misc_lab) +"atM" = (/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (NORTH)"; icon_state = "borderfloor"; dir = 1},/obj/effect/floor_decal/corner/mauve/border{tag = "icon-bordercolor (NORTH)"; icon_state = "bordercolor"; dir = 1},/obj/effect/floor_decal/borderfloor/corner2{tag = "icon-borderfloorcorner2 (NORTH)"; icon_state = "borderfloorcorner2"; dir = 1},/obj/effect/floor_decal/corner/mauve/bordercorner2{tag = "icon-bordercolorcorner2 (NORTH)"; icon_state = "bordercolorcorner2"; dir = 1},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/power/apc{dir = 1; name = "north bump"; pixel_x = 0; pixel_y = 24},/obj/structure/cable/green{icon_state = "0-4"},/turf/simulated/floor/tiled,/area/rnd/misc_lab) +"atN" = (/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 4},/obj/structure/cable/green{d1 = 1; d2 = 8; icon_state = "1-8"},/turf/simulated/floor/tiled,/area/rnd/misc_lab) +"atO" = (/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (NORTH)"; icon_state = "borderfloor"; dir = 1},/obj/effect/floor_decal/corner/mauve/border{tag = "icon-bordercolor (NORTH)"; icon_state = "bordercolor"; dir = 1},/obj/effect/floor_decal/borderfloor/corner2{tag = "icon-borderfloorcorner2 (EAST)"; icon_state = "borderfloorcorner2"; dir = 4},/obj/effect/floor_decal/corner/mauve/bordercorner2{tag = "icon-bordercolorcorner2 (EAST)"; icon_state = "bordercolorcorner2"; dir = 4},/turf/simulated/floor/tiled,/area/rnd/misc_lab) +"atP" = (/obj/machinery/disposal,/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (NORTHEAST)"; icon_state = "borderfloor"; dir = 5},/obj/effect/floor_decal/corner/mauve/border{tag = "icon-bordercolor (NORTHEAST)"; icon_state = "bordercolor"; dir = 5},/obj/structure/extinguisher_cabinet{pixel_y = 30},/obj/structure/disposalpipe/trunk,/turf/simulated/floor/tiled,/area/rnd/misc_lab) +"atQ" = (/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (EAST)"; icon_state = "borderfloor"; dir = 4},/obj/effect/floor_decal/corner/mauve/border{tag = "icon-bordercolor (EAST)"; icon_state = "bordercolor"; dir = 4},/obj/item/device/radio/intercom{dir = 4; name = "Station Intercom (General)"; pixel_x = 21},/turf/simulated/floor/tiled,/area/rnd/hallway) +"atR" = (/obj/machinery/portable_atmospherics/powered/scrubber/huge/stationary{scrub_id = "rnd_can_store"},/turf/simulated/floor/tiled/techmaint,/area/rnd/xenobiology/xenoflora_storage) +"atS" = (/obj/structure/grille,/obj/structure/railing{dir = 4},/turf/simulated/floor/tiled/techmaint,/area/rnd/xenobiology/xenoflora_storage) +"atT" = (/obj/effect/floor_decal/industrial/warning{icon_state = "warning"; dir = 8},/obj/machinery/computer/area_atmos/tag{dir = 4; scrub_id = "rnd_can_store"},/turf/simulated/floor/tiled,/area/rnd/xenobiology/xenoflora_storage) +"atU" = (/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"},/turf/simulated/floor/tiled,/area/rnd/xenobiology/xenoflora_storage) +"atV" = (/obj/structure/sign/warning/nosmoking_2,/turf/simulated/wall/r_wall,/area/rnd/xenobiology/xenoflora_storage) +"atW" = (/obj/effect/floor_decal/rust,/obj/machinery/portable_atmospherics/canister/phoron,/turf/simulated/floor/tiled/steel_dirty,/area/rnd/xenobiology/xenoflora_storage) +"atX" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/tiled/steel_dirty,/area/maintenance/lower/research) +"atY" = (/obj/structure/railing{dir = 4},/obj/machinery/light/small{dir = 8},/obj/effect/decal/cleanable/dirt,/mob/living/simple_animal/mouse,/turf/simulated/floor/tiled/techfloor,/area/maintenance/lower/research) +"atZ" = (/obj/structure/catwalk,/obj/effect/floor_decal/rust,/obj/effect/floor_decal/rust,/turf/simulated/floor/tiled/techfloor,/area/maintenance/lower/atmos) +"aua" = (/obj/structure/catwalk,/obj/effect/decal/cleanable/dirt,/obj/effect/floor_decal/rust,/turf/simulated/floor/tiled/techfloor,/area/maintenance/lower/atmos) +"aub" = (/obj/structure/catwalk,/obj/machinery/atmospherics/pipe/manifold/visible/scrubbers{dir = 8},/obj/machinery/atmospherics/pipe/manifold/visible/supply{dir = 8},/obj/structure/cable/cyan{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/tiled/techfloor,/area/maintenance/lower/atmos) +"auc" = (/obj/structure/catwalk,/obj/machinery/atmospherics/pipe/simple/visible/supply{tag = "icon-intact-supply (EAST)"; icon_state = "intact-supply"; dir = 4},/obj/machinery/atmospherics/pipe/simple/visible/scrubbers{tag = "icon-intact-scrubbers (EAST)"; icon_state = "intact-scrubbers"; dir = 4},/obj/machinery/firealarm{dir = 2; layer = 3.3; pixel_x = 0; pixel_y = 26},/turf/simulated/floor/tiled/techfloor,/area/maintenance/lower/atmos) +"aud" = (/obj/structure/catwalk,/obj/machinery/atmospherics/pipe/simple/visible/supply{tag = "icon-intact-supply (EAST)"; icon_state = "intact-supply"; dir = 4},/obj/machinery/atmospherics/pipe/simple/visible/scrubbers{tag = "icon-intact-scrubbers (EAST)"; icon_state = "intact-scrubbers"; dir = 4},/turf/simulated/floor/tiled/techfloor,/area/maintenance/lower/atmos) +"aue" = (/obj/machinery/door/airlock/maintenance/common,/obj/machinery/atmospherics/pipe/simple/visible/supply{tag = "icon-intact-supply (EAST)"; icon_state = "intact-supply"; dir = 4},/obj/machinery/atmospherics/pipe/simple/visible/scrubbers{tag = "icon-intact-scrubbers (EAST)"; icon_state = "intact-scrubbers"; dir = 4},/obj/machinery/door/firedoor/glass,/turf/simulated/floor/tiled/techfloor,/area/maintenance/lower/atmos) +"auf" = (/obj/structure/catwalk,/obj/machinery/atmospherics/pipe/simple/visible/supply{dir = 9},/obj/machinery/atmospherics/pipe/simple/visible/scrubbers{tag = "icon-intact-scrubbers (NORTHWEST)"; icon_state = "intact-scrubbers"; dir = 9},/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/tiled/techfloor,/area/maintenance/lower/atmos) +"aug" = (/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (WEST)"; icon_state = "borderfloor"; dir = 8},/obj/effect/floor_decal/industrial/danger{tag = "icon-danger (WEST)"; icon_state = "danger"; dir = 8},/obj/machinery/light_switch{pixel_x = -25},/turf/simulated/floor/tiled,/area/rnd/misc_lab) +"auh" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/tiled,/area/rnd/misc_lab) +"aui" = (/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 4},/turf/simulated/floor/tiled,/area/rnd/misc_lab) +"auj" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 5},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 9},/turf/simulated/floor/tiled,/area/rnd/misc_lab) +"auk" = (/obj/machinery/light{icon_state = "tube1"; dir = 4},/obj/structure/table/standard,/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (EAST)"; icon_state = "borderfloor"; dir = 4},/obj/effect/floor_decal/corner/mauve/border{tag = "icon-bordercolor (EAST)"; icon_state = "bordercolor"; dir = 4},/obj/structure/disposalpipe/segment{dir = 1; icon_state = "pipe-c"},/turf/simulated/floor/tiled,/area/rnd/misc_lab) +"aul" = (/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (WEST)"; icon_state = "borderfloor"; dir = 8},/obj/effect/floor_decal/corner/mauve/border{tag = "icon-bordercolor (WEST)"; icon_state = "bordercolor"; dir = 8},/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"},/obj/structure/disposalpipe/segment{dir = 8; icon_state = "pipe-c"},/turf/simulated/floor/tiled,/area/rnd/hallway) +"aum" = (/obj/machinery/light/small{dir = 8},/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/tiled/steel_dirty,/area/maintenance/lower/research) +"aun" = (/obj/structure/railing{dir = 4},/obj/structure/table/rack,/obj/random/maintenance/clean,/obj/random/maintenance/clean,/obj/random/maintenance/research,/obj/random/action_figure,/obj/random/maintenance/research,/turf/simulated/floor/tiled/techfloor,/area/maintenance/lower/research) +"auo" = (/obj/machinery/door/airlock/multi_tile/metal/mait{name = "Atmospherics Maintenance"; req_access = list(24); req_one_access = list(24)},/obj/machinery/atmospherics/pipe/simple/visible/scrubbers,/obj/machinery/atmospherics/pipe/simple/visible/supply,/obj/structure/cable/cyan{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/door/firedoor/glass,/turf/simulated/floor/tiled/techfloor,/area/maintenance/lower/atmos) +"aup" = (/obj/machinery/door/firedoor/glass,/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/tiled/techfloor,/area/maintenance/lower/atmos) +"auq" = (/obj/machinery/shieldwallgen{anchored = 1; req_access = list(47)},/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (SOUTHWEST)"; icon_state = "borderfloor"; dir = 10},/obj/effect/floor_decal/industrial/danger{tag = "icon-danger (SOUTHWEST)"; icon_state = "danger"; dir = 10},/turf/simulated/floor/tiled,/area/rnd/misc_lab) +"aur" = (/obj/effect/floor_decal/rust/steel_decals_rusted2,/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/industrial/danger,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/tiled,/area/rnd/misc_lab) +"aus" = (/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/industrial/danger,/turf/simulated/floor/tiled,/area/rnd/misc_lab) +"aut" = (/obj/machinery/shieldwallgen{anchored = 1; req_access = list(47)},/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/industrial/danger,/turf/simulated/floor/tiled,/area/rnd/misc_lab) +"auu" = (/obj/effect/floor_decal/borderfloor/corner{tag = "icon-borderfloorcorner (WEST)"; icon_state = "borderfloorcorner"; dir = 8},/obj/effect/floor_decal/corner/mauve/bordercorner{tag = "icon-bordercolorcorner (WEST)"; icon_state = "bordercolorcorner"; dir = 8},/turf/simulated/floor/tiled,/area/rnd/misc_lab) +"auv" = (/obj/structure/table/standard,/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (EAST)"; icon_state = "borderfloor"; dir = 4},/obj/effect/floor_decal/corner/mauve/border{tag = "icon-bordercolor (EAST)"; icon_state = "bordercolor"; dir = 4},/turf/simulated/floor/tiled,/area/rnd/misc_lab) +"auw" = (/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (WEST)"; icon_state = "borderfloor"; dir = 8},/obj/effect/floor_decal/corner/mauve/border{tag = "icon-bordercolor (WEST)"; icon_state = "bordercolor"; dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 5},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/camera/network/research{c_tag = "SCI - Mech Bay Port"; dir = 4},/obj/structure/cable/green{d1 = 1; d2 = 4; icon_state = "1-4"},/turf/simulated/floor/tiled,/area/rnd/hallway) +"aux" = (/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (EAST)"; icon_state = "borderfloor"; dir = 4},/obj/effect/floor_decal/corner/mauve/border{tag = "icon-bordercolor (EAST)"; icon_state = "bordercolor"; dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 10},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/tiled,/area/rnd/hallway) +"auy" = (/obj/machinery/door/airlock/maintenance/rnd,/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/plating,/area/rnd/hallway) +"auz" = (/obj/effect/decal/cleanable/dirt,/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/plating,/area/maintenance/asmaint2) +"auA" = (/obj/effect/floor_decal/rust,/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/plating,/area/maintenance/asmaint2) +"auB" = (/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) +"auC" = (/obj/machinery/atmospherics/unary/vent_pump/on{dir = 4},/obj/machinery/light_switch{pixel_y = 25},/obj/item/device/radio/intercom{dir = 8; name = "Station Intercom (General)"; pixel_x = -28},/turf/simulated/floor/tiled/steel_dirty,/area/rnd/xenobiology/xenoflora_storage) +"auD" = (/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"},/turf/simulated/floor/tiled/steel_dirty,/area/rnd/xenobiology/xenoflora_storage) +"auE" = (/obj/effect/floor_decal/industrial/warning/dust/corner{tag = "icon-warningcorner_dust (EAST)"; icon_state = "warningcorner_dust"; dir = 4},/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 8},/turf/simulated/floor/tiled/steel_dirty,/area/rnd/xenobiology/xenoflora_storage) +"auF" = (/obj/effect/floor_decal/industrial/warning/dust{tag = "icon-warning_dust (NORTH)"; icon_state = "warning_dust"; dir = 1},/turf/simulated/floor/tiled/steel_dirty,/area/rnd/xenobiology/xenoflora_storage) +"auG" = (/obj/effect/floor_decal/rust,/obj/effect/floor_decal/industrial/warning/dust{tag = "icon-warning_dust (NORTH)"; icon_state = "warning_dust"; dir = 1},/obj/machinery/firealarm{dir = 4; pixel_x = 24},/turf/simulated/floor/tiled/steel_dirty,/area/rnd/xenobiology/xenoflora_storage) +"auH" = (/obj/structure/catwalk,/obj/machinery/atmospherics/pipe/simple/visible/scrubbers,/obj/machinery/atmospherics/pipe/simple/visible/supply,/obj/structure/cable/cyan{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/tiled/techfloor,/area/maintenance/lower/atmos) +"auI" = (/obj/machinery/camera/network/research{c_tag = "SCI - Research Hallway Center"; dir = 4},/turf/simulated/floor/tiled/steel_dirty,/area/rnd/misc_lab) +"auJ" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/door/firedoor/glass,/obj/machinery/door/airlock/external{req_one_access = list(47)},/turf/simulated/floor/tiled,/area/rnd/misc_lab) +"auK" = (/obj/structure/reagent_dispensers/watertank,/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (SOUTHWEST)"; icon_state = "borderfloor"; dir = 10},/obj/effect/floor_decal/corner/mauve/border{tag = "icon-bordercolor (SOUTHWEST)"; icon_state = "bordercolor"; dir = 10},/turf/simulated/floor/tiled,/area/rnd/misc_lab) +"auL" = (/obj/structure/table/standard,/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (SOUTHEAST)"; icon_state = "borderfloor"; dir = 6},/obj/effect/floor_decal/corner/mauve/border{tag = "icon-bordercolor (SOUTHEAST)"; icon_state = "bordercolor"; dir = 6},/obj/machinery/status_display{pixel_x = 32; pixel_y = 0},/turf/simulated/floor/tiled,/area/rnd/misc_lab) +"auM" = (/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (WEST)"; icon_state = "borderfloor"; dir = 8},/obj/effect/floor_decal/corner/mauve/border{tag = "icon-bordercolor (WEST)"; icon_state = "bordercolor"; dir = 8},/obj/effect/floor_decal/borderfloor/corner2{tag = "icon-borderfloorcorner2 (SOUTHWEST)"; icon_state = "borderfloorcorner2"; dir = 10},/obj/effect/floor_decal/corner/mauve/bordercorner2{tag = "icon-bordercolorcorner2 (SOUTHWEST)"; icon_state = "bordercolorcorner2"; dir = 10},/obj/effect/floor_decal/steeldecal/steel_decals10{tag = "icon-steel_decals10 (NORTHEAST)"; icon_state = "steel_decals10"; dir = 5},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/tiled,/area/rnd/hallway) +"auN" = (/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (EAST)"; icon_state = "borderfloor"; dir = 4},/obj/effect/floor_decal/corner/mauve/border{tag = "icon-bordercolor (EAST)"; icon_state = "bordercolor"; dir = 4},/obj/effect/floor_decal/borderfloor/corner2{tag = "icon-borderfloorcorner2 (NORTHEAST)"; icon_state = "borderfloorcorner2"; dir = 5},/obj/effect/floor_decal/corner/mauve/bordercorner2{tag = "icon-bordercolorcorner2 (NORTHEAST)"; icon_state = "bordercolorcorner2"; dir = 5},/obj/effect/floor_decal/steeldecal/steel_decals10{tag = "icon-steel_decals10 (SOUTHEAST)"; icon_state = "steel_decals10"; dir = 6},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/tiled,/area/rnd/hallway) +"auO" = (/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 = -28},/obj/structure/cable/green{icon_state = "0-4"},/turf/simulated/floor/tiled/steel_dirty,/area/rnd/xenobiology/xenoflora_storage) +"auP" = (/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) +"auQ" = (/obj/effect/floor_decal/industrial/warning/dust/corner{tag = "icon-warningcorner_dust (WEST)"; icon_state = "warningcorner_dust"; dir = 8},/obj/effect/floor_decal/industrial/warning/dust/corner,/turf/simulated/floor/tiled/steel_dirty,/area/rnd/xenobiology/xenoflora_storage) +"auR" = (/obj/effect/floor_decal/industrial/warning/dust,/turf/simulated/floor/tiled/steel_dirty,/area/rnd/xenobiology/xenoflora_storage) +"auS" = (/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) +"auT" = (/obj/machinery/door/blast/regular,/obj/machinery/door/firedoor,/turf/simulated/floor/tiled/steel_dirty,/area/rnd/misc_lab) +"auU" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/tiled/steel_dirty,/area/rnd/misc_lab) +"auV" = (/turf/simulated/wall,/area/rnd/external) +"auW" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/door/firedoor/glass,/obj/machinery/door/airlock/external{req_one_access = list(47)},/turf/simulated/floor/tiled,/area/rnd/external) +"auX" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/door/firedoor/glass,/obj/machinery/door/airlock/external{req_one_access = list(47)},/obj/machinery/access_button/airlock_interior{master_tag = "rnd_s_airlock"; pixel_x = 25; pixel_y = 24},/turf/simulated/floor/tiled,/area/rnd/external) +"auY" = (/obj/machinery/portable_atmospherics/canister/carbon_dioxide,/obj/machinery/camera/network/research{c_tag = "SCI - Research Hallway Center"; dir = 4},/turf/simulated/floor/tiled/steel_dirty,/area/rnd/xenobiology/xenoflora_storage) +"auZ" = (/obj/machinery/portable_atmospherics/canister/carbon_dioxide,/turf/simulated/floor/tiled/steel_dirty,/area/rnd/xenobiology/xenoflora_storage) +"ava" = (/obj/effect/floor_decal/industrial/warning/dust{tag = "icon-warning_dust (EAST)"; icon_state = "warning_dust"; dir = 4},/obj/effect/floor_decal/industrial/warning/dust{tag = "icon-warning_dust (WEST)"; icon_state = "warning_dust"; dir = 8},/turf/simulated/floor/tiled/steel_dirty,/area/rnd/xenobiology/xenoflora_storage) +"avb" = (/obj/machinery/portable_atmospherics/canister/sleeping_agent,/turf/simulated/floor/tiled/steel_dirty,/area/rnd/xenobiology/xenoflora_storage) +"avc" = (/obj/machinery/power/apc{cell_type = /obj/item/weapon/cell/super; dir = 8; name = "west bump"; pixel_x = -28},/obj/structure/cable/green,/turf/simulated/floor/tiled/steel_dirty,/area/maintenance/lower/research) +"avd" = (/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/tiled/steel_dirty,/area/maintenance/lower/research) +"ave" = (/obj/structure/catwalk,/obj/machinery/atmospherics/pipe/simple/visible/scrubbers,/obj/machinery/atmospherics/pipe/simple/visible/supply,/obj/structure/cable/cyan{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/light/small{dir = 8; pixel_x = 0},/turf/simulated/floor/tiled/techfloor,/area/maintenance/lower/atmos) +"avf" = (/obj/structure/catwalk,/obj/machinery/alarm{dir = 8; icon_state = "alarm0"; pixel_x = 24},/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/tiled/techfloor,/area/maintenance/lower/atmos) +"avg" = (/obj/machinery/atmospherics/unary/vent_pump/on{dir = 4},/turf/simulated/floor/tiled/steel_dirty,/area/rnd/misc_lab) +"avh" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 9},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 5},/turf/simulated/floor/tiled/steel_dirty,/area/rnd/misc_lab) +"avi" = (/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 8},/obj/machinery/alarm{dir = 1; pixel_y = -25},/turf/simulated/floor/tiled/steel_dirty,/area/rnd/misc_lab) +"avj" = (/obj/effect/floor_decal/rust,/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 9},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 5},/turf/simulated/floor/tiled/steel_dirty,/area/rnd/misc_lab) +"avk" = (/obj/effect/floor_decal/rust,/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 8},/obj/machinery/alarm{dir = 1; pixel_y = -25},/turf/simulated/floor/tiled/steel_dirty,/area/rnd/misc_lab) +"avl" = (/obj/machinery/portable_atmospherics/powered/scrubber/huge/stationary{frequency = 1379; scrub_id = "rnd_s_airlock_scrubber"; scrubbing_gas = list("phoron")},/turf/simulated/floor/tiled/techmaint,/area/rnd/external) +"avm" = (/obj/structure/grille,/obj/structure/railing{dir = 4},/turf/simulated/floor/tiled/techmaint,/area/rnd/external) +"avn" = (/obj/effect/floor_decal/industrial/warning{icon_state = "warning"; dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals3{tag = "icon-steel_decals3 (SOUTHEAST)"; icon_state = "steel_decals3"; dir = 6},/obj/effect/floor_decal/steeldecal/steel_decals3,/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 4},/obj/machinery/embedded_controller/radio/airlock/phoron{id_tag = "rnd_s_airlock"; pixel_x = 0; pixel_y = 30},/obj/machinery/airlock_sensor/phoron{id_tag = "rnd_s_airlock_sensor"; pixel_x = 11; pixel_y = 30},/turf/simulated/floor/tiled,/area/rnd/external) +"avo" = (/obj/effect/floor_decal/steeldecal/steel_decals10{tag = "icon-steel_decals10 (NORTHWEST)"; icon_state = "steel_decals10"; dir = 9},/obj/effect/floor_decal/steeldecal/steel_decals10{tag = "icon-steel_decals10 (SOUTHWEST)"; icon_state = "steel_decals10"; dir = 10},/obj/effect/floor_decal/steeldecal/steel_decals7{tag = "icon-steel_decals7 (NORTHWEST)"; icon_state = "steel_decals7"; dir = 9},/obj/effect/floor_decal/steeldecal/steel_decals7{tag = "icon-steel_decals7 (SOUTHEAST)"; icon_state = "steel_decals7"; dir = 6},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 9},/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/tiled,/area/rnd/external) +"avp" = (/obj/effect/floor_decal/steeldecal/steel_decals10{tag = "icon-steel_decals10 (NORTHWEST)"; icon_state = "steel_decals10"; dir = 9},/obj/effect/floor_decal/steeldecal/steel_decals10{tag = "icon-steel_decals10 (SOUTHWEST)"; icon_state = "steel_decals10"; dir = 10},/obj/effect/floor_decal/steeldecal/steel_decals7{tag = "icon-steel_decals7 (NORTHWEST)"; icon_state = "steel_decals7"; dir = 9},/obj/effect/floor_decal/steeldecal/steel_decals7{tag = "icon-steel_decals7 (SOUTHEAST)"; icon_state = "steel_decals7"; dir = 6},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 8},/turf/simulated/floor/tiled,/area/rnd/external) +"avq" = (/obj/effect/floor_decal/industrial/warning{icon_state = "warning"; dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals3{tag = "icon-steel_decals3 (EAST)"; icon_state = "steel_decals3"; dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals3{tag = "icon-steel_decals3 (NORTHEAST)"; icon_state = "steel_decals3"; dir = 5},/obj/machinery/light_switch{pixel_y = 25},/obj/machinery/atmospherics/unary/vent_pump/high_volume{dir = 8; icon_state = "map_vent_out"; use_power = 1},/turf/simulated/floor/tiled,/area/rnd/external) +"avr" = (/obj/structure/grille,/obj/structure/railing{dir = 8},/turf/simulated/floor/tiled/techmaint,/area/rnd/external) +"avs" = (/obj/machinery/portable_atmospherics/canister/oxygen,/turf/simulated/floor/tiled/steel_dirty,/area/rnd/xenobiology/xenoflora_storage) +"avt" = (/obj/machinery/portable_atmospherics/canister/nitrogen,/turf/simulated/floor/tiled/steel_dirty,/area/rnd/xenobiology/xenoflora_storage) +"avu" = (/turf/simulated/mineral,/area/maintenance/lower/research) +"avv" = (/obj/effect/floor_decal/rust,/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/tiled/steel_dirty,/area/maintenance/lower/research) +"avw" = (/obj/effect/floor_decal/rust,/obj/machinery/door/airlock/external{req_one_access = list(47)},/turf/simulated/floor/tiled,/area/rnd/misc_lab) +"avx" = (/obj/machinery/door/airlock/external,/obj/effect/floor_decal/rust,/turf/simulated/floor/tiled,/area/rnd/misc_lab) +"avy" = (/obj/effect/floor_decal/industrial/warning/corner{icon_state = "warningcorner"; dir = 1},/obj/machinery/light{icon_state = "tube1"; dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals9,/obj/effect/floor_decal/steeldecal/steel_decals4{tag = "icon-steel_decals4 (EAST)"; icon_state = "steel_decals4"; dir = 4},/obj/machinery/power/apc{dir = 2; name = "south bump"; pixel_y = -28},/obj/structure/cable/green{icon_state = "0-4"},/turf/simulated/floor/tiled,/area/rnd/external) +"avz" = (/obj/effect/floor_decal/steeldecal/steel_decals10{tag = "icon-steel_decals10 (SOUTHEAST)"; icon_state = "steel_decals10"; dir = 6},/obj/effect/floor_decal/steeldecal/steel_decals10{tag = "icon-steel_decals10 (NORTHEAST)"; icon_state = "steel_decals10"; dir = 5},/obj/effect/floor_decal/steeldecal/steel_decals7{tag = "icon-steel_decals7 (NORTHEAST)"; icon_state = "steel_decals7"; dir = 5},/obj/effect/floor_decal/steeldecal/steel_decals7{tag = "icon-steel_decals7 (SOUTHWEST)"; icon_state = "steel_decals7"; dir = 10},/obj/structure/cable/green{d1 = 1; d2 = 8; icon_state = "1-8"},/turf/simulated/floor/tiled,/area/rnd/external) +"avA" = (/obj/effect/floor_decal/steeldecal/steel_decals10{tag = "icon-steel_decals10 (SOUTHEAST)"; icon_state = "steel_decals10"; dir = 6},/obj/effect/floor_decal/steeldecal/steel_decals10{tag = "icon-steel_decals10 (NORTHEAST)"; icon_state = "steel_decals10"; dir = 5},/obj/effect/floor_decal/steeldecal/steel_decals7{tag = "icon-steel_decals7 (NORTHEAST)"; icon_state = "steel_decals7"; dir = 5},/obj/effect/floor_decal/steeldecal/steel_decals7{tag = "icon-steel_decals7 (SOUTHWEST)"; icon_state = "steel_decals7"; dir = 10},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 5},/turf/simulated/floor/tiled,/area/rnd/external) +"avB" = (/obj/effect/floor_decal/industrial/warning/corner{dir = 4},/obj/machinery/light{icon_state = "tube1"; dir = 4},/obj/machinery/computer/area_atmos/tag{dir = 1; scrub_id = "rnd_s_airlock_scrubber"},/obj/machinery/atmospherics/unary/vent_pump/high_volume{dir = 8; icon_state = "map_vent_out"; use_power = 1},/turf/simulated/floor/tiled,/area/rnd/external) +"avC" = (/obj/effect/floor_decal/industrial/warning/dust{tag = "icon-warning_dust (EAST)"; icon_state = "warning_dust"; dir = 4},/obj/effect/floor_decal/industrial/warning/dust{tag = "icon-warning_dust (WEST)"; icon_state = "warning_dust"; dir = 8},/obj/machinery/light/small,/turf/simulated/floor/tiled/steel_dirty,/area/rnd/xenobiology/xenoflora_storage) +"avD" = (/obj/effect/floor_decal/rust,/turf/simulated/floor/tiled/steel_dirty,/area/maintenance/lower/research) +"avE" = (/obj/effect/floor_decal/rust,/obj/machinery/alarm{frequency = 1441; pixel_y = 22},/turf/simulated/floor/tiled/steel_dirty,/area/maintenance/lower/research) +"avF" = (/turf/simulated/floor/outdoors/grass/sif/virgo3b,/area/rnd/misc_lab) +"avG" = (/obj/effect/floor_decal/rust,/turf/simulated/floor/tiled,/area/rnd/misc_lab) +"avH" = (/obj/item/device/radio/intercom{dir = 1; name = "Station Intercom (General)"; pixel_y = 21},/turf/simulated/floor/outdoors/grass/sif/virgo3b,/area/rnd/misc_lab) +"avI" = (/obj/machinery/camera/network/research{c_tag = "SCI - Xenoflora"; dir = 2},/turf/simulated/floor/outdoors/grass/sif/virgo3b,/area/rnd/misc_lab) +"avJ" = (/obj/machinery/door/airlock/external{req_one_access = list(47)},/turf/simulated/floor/tiled,/area/rnd/external) +"avK" = (/obj/machinery/door/airlock/external{req_one_access = list(47)},/obj/machinery/access_button/airlock_exterior{master_tag = "rnd_s_airlock"; pixel_x = 25; pixel_y = -8},/turf/simulated/floor/tiled,/area/rnd/external) +"avL" = (/obj/structure/grille,/obj/structure/railing{dir = 1},/turf/simulated/floor/tiled/techmaint,/area/rnd/xenobiology/xenoflora_storage) +"avM" = (/obj/structure/ladder/up,/obj/effect/floor_decal/rust,/turf/simulated/floor/tiled/steel_dirty,/area/maintenance/lower/research) +"avN" = (/obj/machinery/door/airlock/maintenance/rnd,/obj/machinery/door/firedoor/glass,/turf/simulated/floor/tiled/techfloor,/area/maintenance/lower/research) +"avO" = (/turf/simulated/mineral,/area/rnd/external) +"avP" = (/obj/effect/floor_decal/steeldecal/steel_decals10{tag = "icon-steel_decals10 (SOUTHWEST)"; icon_state = "steel_decals10"; dir = 10},/obj/effect/floor_decal/steeldecal/steel_decals10{tag = "icon-steel_decals10 (NORTHWEST)"; icon_state = "steel_decals10"; dir = 9},/turf/simulated/floor/outdoors/grass/sif/virgo3b,/area/rnd/external) +"avQ" = (/obj/machinery/camera/network/research{c_tag = "SCI - Xenoflora"; dir = 2},/turf/simulated/floor/outdoors/grass/sif/virgo3b,/area/rnd/external) +"avR" = (/obj/effect/floor_decal/rust,/obj/structure/closet/crate,/obj/random/maintenance/clean,/obj/random/maintenance/clean,/obj/random/maintenance/research,/turf/simulated/floor/tiled/steel_dirty,/area/maintenance/lower/research) +"avS" = (/obj/effect/floor_decal/rust,/obj/structure/closet,/obj/random/maintenance/research,/obj/random/maintenance/engineering,/obj/random/maintenance/research,/turf/simulated/floor/tiled/steel_dirty,/area/maintenance/lower/research) +"avT" = (/turf/simulated/wall/r_wall,/area/engineering/atmos/processing) +"avU" = (/obj/machinery/atmospherics/pipe/simple/visible/supply,/obj/machinery/atmospherics/pipe/simple/visible/scrubbers,/obj/structure/cable/cyan{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/door/firedoor/glass,/obj/machinery/door/airlock/multi_tile/metal/mait{name = "Atmospherics Maintenance"; req_access = list(24); req_one_access = list(24)},/turf/simulated/floor/tiled/techfloor,/area/engineering/atmos/processing) +"avV" = (/obj/machinery/door/firedoor/glass,/turf/simulated/floor/tiled/techfloor,/area/engineering/atmos/processing) +"avW" = (/obj/effect/floor_decal/techfloor{tag = "icon-techfloor_edges (NORTHWEST)"; icon_state = "techfloor_edges"; dir = 9},/obj/machinery/firealarm{dir = 2; layer = 3.3; pixel_x = 0; pixel_y = 26},/turf/simulated/floor/tiled/techfloor,/area/engineering/atmos/processing) +"avX" = (/obj/effect/floor_decal/techfloor{tag = "icon-techfloor_edges (NORTH)"; icon_state = "techfloor_edges"; dir = 1},/obj/machinery/atmospherics/unary/vent_scrubber/on,/turf/simulated/floor/tiled/techfloor,/area/engineering/atmos/processing) +"avY" = (/obj/effect/floor_decal/techfloor{tag = "icon-techfloor_edges (NORTH)"; icon_state = "techfloor_edges"; dir = 1},/obj/machinery/atmospherics/unary/vent_pump/on,/obj/structure/extinguisher_cabinet{pixel_y = 30},/turf/simulated/floor/tiled/techfloor,/area/engineering/atmos/processing) +"avZ" = (/obj/machinery/light{dir = 1},/obj/effect/floor_decal/techfloor{tag = "icon-techfloor_edges (NORTH)"; icon_state = "techfloor_edges"; dir = 1},/turf/simulated/floor/tiled/techfloor,/area/engineering/atmos/processing) +"awa" = (/obj/effect/floor_decal/techfloor/corner{tag = "icon-techfloor_corners (NORTH)"; icon_state = "techfloor_corners"; dir = 1},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/cable/cyan{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/cable/cyan{d1 = 1; d2 = 4; icon_state = "1-4"},/turf/simulated/floor/tiled/techfloor,/area/engineering/atmos/processing) +"awb" = (/obj/effect/floor_decal/techfloor/corner{tag = "icon-techfloor_corners (EAST)"; icon_state = "techfloor_corners"; dir = 4},/obj/structure/cable/cyan{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/tiled/techfloor,/area/engineering/atmos/processing) +"awc" = (/obj/effect/floor_decal/techfloor{tag = "icon-techfloor_edges (NORTH)"; icon_state = "techfloor_edges"; dir = 1},/obj/structure/cable/cyan{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/visible{icon_state = "intact"; dir = 6},/obj/machinery/light_switch{pixel_y = 25},/turf/simulated/floor/tiled/techfloor,/area/engineering/atmos/processing) +"awd" = (/obj/effect/floor_decal/techfloor{tag = "icon-techfloor_edges (NORTH)"; icon_state = "techfloor_edges"; dir = 1},/obj/structure/cable/cyan{d2 = 8; icon_state = "0-8"},/obj/machinery/power/apc{dir = 1; name = "north bump"; pixel_x = 0; pixel_y = 24},/obj/machinery/atmospherics/pipe/simple/visible{dir = 4},/turf/simulated/floor/tiled/techfloor,/area/engineering/atmos/processing) +"awe" = (/obj/effect/floor_decal/techfloor{tag = "icon-techfloor_edges (NORTH)"; icon_state = "techfloor_edges"; dir = 1},/obj/machinery/atmospherics/pipe/simple/visible{tag = "icon-intact (SOUTHWEST)"; icon_state = "intact"; dir = 10},/obj/machinery/camera/network/engineering,/turf/simulated/floor/tiled/techfloor,/area/engineering/atmos/processing) +"awf" = (/obj/effect/floor_decal/techfloor{tag = "icon-techfloor_edges (NORTH)"; icon_state = "techfloor_edges"; dir = 1},/obj/machinery/newscaster{pixel_x = 0; pixel_y = 30},/turf/simulated/floor/tiled/techfloor,/area/engineering/atmos/processing) +"awg" = (/obj/effect/floor_decal/techfloor{tag = "icon-techfloor_edges (NORTH)"; icon_state = "techfloor_edges"; dir = 1},/obj/item/device/radio/intercom{dir = 1; name = "Station Intercom (General)"; pixel_y = 21},/turf/simulated/floor/tiled/techfloor,/area/engineering/atmos/processing) +"awh" = (/obj/effect/floor_decal/techfloor{tag = "icon-techfloor_edges (NORTH)"; icon_state = "techfloor_edges"; dir = 1},/obj/machinery/status_display{pixel_y = 30},/turf/simulated/floor/tiled/techfloor,/area/engineering/atmos/processing) +"awi" = (/obj/effect/floor_decal/techfloor{tag = "icon-techfloor_edges (NORTH)"; icon_state = "techfloor_edges"; dir = 1},/obj/machinery/alarm{frequency = 1441; pixel_y = 22},/turf/simulated/floor/tiled/techfloor,/area/engineering/atmos/processing) +"awj" = (/obj/effect/floor_decal/techfloor{tag = "icon-techfloor_edges (NORTH)"; icon_state = "techfloor_edges"; dir = 1},/obj/machinery/requests_console{department = "Atmospherics"; departmentType = 3; name = "Atmos RC"; pixel_x = 0; pixel_y = 28},/turf/simulated/floor/tiled/techfloor,/area/engineering/atmos/processing) +"awk" = (/obj/effect/floor_decal/techfloor{tag = "icon-techfloor_edges (NORTH)"; icon_state = "techfloor_edges"; dir = 1},/obj/structure/extinguisher_cabinet{pixel_y = 30},/turf/simulated/floor/tiled/techfloor,/area/engineering/atmos/processing) +"awl" = (/obj/effect/floor_decal/techfloor{tag = "icon-techfloor_edges (NORTH)"; icon_state = "techfloor_edges"; dir = 1},/obj/machinery/atmospherics/unary/vent_pump/on,/turf/simulated/floor/tiled/techfloor,/area/engineering/atmos/processing) +"awm" = (/obj/effect/floor_decal/techfloor{tag = "icon-techfloor_edges (NORTHEAST)"; icon_state = "techfloor_edges"; dir = 5},/turf/simulated/floor/tiled/techfloor,/area/engineering/atmos/processing) +"awn" = (/obj/effect/floor_decal/techfloor{tag = "icon-techfloor_edges (WEST)"; icon_state = "techfloor_edges"; dir = 8},/turf/simulated/floor/tiled/techfloor,/area/engineering/atmos/processing) +"awo" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 5},/turf/simulated/floor/tiled/techfloor,/area/engineering/atmos/processing) +"awp" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 5},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/turf/simulated/floor/tiled/techfloor,/area/engineering/atmos/processing) +"awq" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/turf/simulated/floor/tiled/techfloor,/area/engineering/atmos/processing) +"awr" = (/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,/obj/machinery/atmospherics/pipe/manifold/hidden/supply,/obj/structure/cable/cyan{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/tiled/techfloor,/area/engineering/atmos/processing) +"aws" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/visible{tag = "icon-intact (NORTHEAST)"; icon_state = "intact"; dir = 5},/turf/simulated/floor/tiled/techfloor,/area/engineering/atmos/processing) +"awt" = (/obj/machinery/atmospherics/omni/filter{tag_east = 1; tag_south = 6; tag_west = 2},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/turf/simulated/floor/tiled/techfloor,/area/engineering/atmos/processing) +"awu" = (/obj/effect/floor_decal/industrial/warning/corner,/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/manifold/visible,/turf/simulated/floor/tiled/techfloor,/area/engineering/atmos/processing) +"awv" = (/obj/effect/floor_decal/industrial/warning,/obj/machinery/atmospherics/pipe/simple/visible{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/turf/simulated/floor/tiled/techfloor,/area/engineering/atmos/processing) +"aww" = (/obj/effect/floor_decal/industrial/warning/corner{tag = "icon-warningcorner (WEST)"; icon_state = "warningcorner"; dir = 8},/obj/machinery/atmospherics/pipe/simple/visible{tag = "icon-intact (SOUTHWEST)"; icon_state = "intact"; dir = 10},/obj/machinery/meter,/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/turf/simulated/floor/tiled/techfloor,/area/engineering/atmos/processing) +"awx" = (/obj/effect/floor_decal/industrial/warning/corner,/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 1},/turf/simulated/floor/tiled/techfloor,/area/engineering/atmos/processing) +"awy" = (/obj/structure/window/reinforced,/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 9},/turf/simulated/floor/tiled/techfloor,/area/engineering/atmos/processing) +"awz" = (/obj/structure/window/reinforced,/obj/effect/floor_decal/techfloor{tag = "icon-techfloor_edges (EAST)"; icon_state = "techfloor_edges"; dir = 4},/turf/simulated/floor/tiled/techfloor,/area/engineering/atmos/processing) +"awA" = (/obj/machinery/light{dir = 8; icon_state = "tube1"; pixel_y = 0},/obj/effect/floor_decal/techfloor{tag = "icon-techfloor_edges (WEST)"; icon_state = "techfloor_edges"; dir = 8},/turf/simulated/floor/tiled/techfloor,/area/engineering/atmos/processing) +"awB" = (/turf/simulated/floor/tiled/techfloor,/area/engineering/atmos/processing) +"awC" = (/obj/structure/cable/cyan{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/tiled/techfloor,/area/engineering/atmos/processing) +"awD" = (/obj/machinery/atmospherics/pipe/simple/visible,/turf/simulated/floor/tiled/techfloor,/area/engineering/atmos/processing) +"awE" = (/obj/effect/floor_decal/industrial/warning{icon_state = "warning"; dir = 4},/turf/simulated/floor/tiled/techfloor,/area/engineering/atmos/processing) +"awF" = (/turf/simulated/floor/tiled/techmaint,/area/engineering/atmos/processing) +"awG" = (/obj/effect/floor_decal/industrial/warning{dir = 8},/obj/machinery/atmospherics/pipe/simple/visible,/turf/simulated/floor/tiled/techfloor,/area/engineering/atmos/processing) +"awH" = (/obj/effect/floor_decal/industrial/warning{dir = 9},/turf/simulated/floor/tiled/techmaint,/area/engineering/atmos/processing) +"awI" = (/obj/effect/floor_decal/industrial/warning{dir = 1},/obj/structure/closet/crate/hydroponics,/obj/item/stack/material/algae,/obj/item/stack/material/algae,/obj/item/stack/material/algae,/turf/simulated/floor/tiled/techmaint,/area/engineering/atmos/processing) +"awJ" = (/obj/effect/floor_decal/industrial/warning{dir = 5},/turf/simulated/floor/tiled/techmaint,/area/engineering/atmos/processing) +"awK" = (/obj/effect/floor_decal/industrial/warning{icon_state = "warning"; dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/tiled/techfloor,/area/engineering/atmos/processing) +"awL" = (/obj/machinery/portable_atmospherics/canister/empty,/turf/simulated/floor/tiled/techmaint,/area/engineering/atmos/processing) +"awM" = (/obj/machinery/portable_atmospherics/canister/empty,/obj/machinery/light{dir = 4; icon_state = "tube1"; pixel_x = 0},/turf/simulated/floor/tiled/techmaint,/area/engineering/atmos/processing) +"awN" = (/obj/effect/floor_decal/industrial/warning/corner{tag = "icon-warningcorner (WEST)"; icon_state = "warningcorner"; dir = 8},/obj/structure/cable/cyan{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/tiled/techfloor,/area/engineering/atmos/processing) +"awO" = (/obj/machinery/atmospherics/pipe/manifold/visible{dir = 8},/turf/simulated/floor/tiled/techfloor,/area/engineering/atmos/processing) +"awP" = (/obj/effect/floor_decal/industrial/warning{icon_state = "warning"; dir = 4},/obj/machinery/atmospherics/pipe/simple/visible{dir = 4},/turf/simulated/floor/tiled/techfloor,/area/engineering/atmos/processing) +"awQ" = (/obj/machinery/atmospherics/valve/digital{dir = 4},/turf/simulated/floor/tiled/techmaint,/area/engineering/atmos/processing) +"awR" = (/obj/machinery/atmospherics/pipe/tank/phoron{tag = "icon-phoron_map (WEST)"; icon_state = "phoron_map"; dir = 8},/obj/effect/floor_decal/industrial/outline/yellow,/turf/simulated/floor/tiled/techmaint,/area/engineering/atmos/processing) +"awS" = (/obj/effect/floor_decal/industrial/warning{icon_state = "warning"; dir = 8},/obj/machinery/atmospherics/pipe/simple/visible{icon_state = "intact"; dir = 6},/turf/simulated/floor/tiled/techmaint,/area/engineering/atmos/processing) +"awT" = (/obj/machinery/atmospherics/binary/algae_farm{dir = 4},/turf/simulated/floor/tiled/techmaint,/area/engineering/atmos/processing) +"awU" = (/obj/effect/floor_decal/industrial/warning{icon_state = "warning"; dir = 4},/obj/machinery/atmospherics/pipe/simple/visible{tag = "icon-intact (SOUTHWEST)"; icon_state = "intact"; dir = 10},/turf/simulated/floor/tiled/techmaint,/area/engineering/atmos/processing) +"awV" = (/obj/machinery/portable_atmospherics/canister/empty,/obj/machinery/camera/network/engineering{c_tag = "ENG - Workshop Starboard"; dir = 8},/turf/simulated/floor/tiled/techmaint,/area/engineering/atmos/processing) +"awW" = (/obj/structure/stairs/north,/turf/simulated/floor/tiled/techfloor,/area/engineering/atmos/processing) +"awX" = (/obj/effect/floor_decal/industrial/warning{dir = 8},/obj/structure/cable/cyan{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/tiled/techfloor,/area/engineering/atmos/processing) +"awY" = (/obj/machinery/atmospherics/pipe/zpipe/up{dir = 4; icon_state = "up"; level = 2; tag = "icon-up (EAST)"},/turf/simulated/floor/tiled/techmaint,/area/engineering/atmos/processing) +"awZ" = (/obj/effect/floor_decal/industrial/warning{dir = 8},/obj/machinery/atmospherics/pipe/manifold/visible{dir = 4},/turf/simulated/floor/tiled/techfloor,/area/engineering/atmos/processing) +"axa" = (/obj/effect/floor_decal/industrial/warning{icon_state = "warning"; dir = 8},/obj/machinery/atmospherics/pipe/manifold/visible{dir = 8},/turf/simulated/floor/tiled/techmaint,/area/engineering/atmos/processing) +"axb" = (/obj/effect/floor_decal/industrial/warning{icon_state = "warning"; dir = 4},/obj/machinery/atmospherics/pipe/manifold/visible{dir = 4},/turf/simulated/floor/tiled/techmaint,/area/engineering/atmos/processing) +"axc" = (/obj/machinery/portable_atmospherics/canister/empty/phoron,/turf/simulated/floor/tiled/techmaint,/area/engineering/atmos/processing) +"axd" = (/turf/simulated/wall/r_wall,/area/engineering/atmos/intake) +"axe" = (/obj/effect/floor_decal/techfloor{tag = "icon-techfloor_edges (WEST)"; icon_state = "techfloor_edges"; dir = 8},/obj/structure/extinguisher_cabinet{dir = 4; icon_state = "extinguisher_closed"; pixel_x = -30; tag = "icon-extinguisher_closed (EAST)"},/turf/simulated/floor/tiled/techfloor,/area/engineering/atmos/processing) +"axf" = (/turf/simulated/floor/outdoors/grass/sif/virgo3b,/area/engineering/atmos/intake) +"axg" = (/turf/simulated/mineral,/area/engineering/atmos/intake) +"axh" = (/obj/effect/floor_decal/techfloor{tag = "icon-techfloor_edges (WEST)"; icon_state = "techfloor_edges"; dir = 8},/obj/machinery/camera/network/engineering{c_tag = "ENG - Locker Room"; dir = 4},/turf/simulated/floor/tiled/techfloor,/area/engineering/atmos/processing) +"axi" = (/obj/effect/floor_decal/industrial/warning{dir = 1},/turf/simulated/floor/tiled/techfloor,/area/engineering/atmos/processing) +"axj" = (/obj/effect/floor_decal/industrial/warning/corner{icon_state = "warningcorner"; dir = 1},/obj/structure/cable/cyan{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/tiled/techfloor,/area/engineering/atmos/processing) +"axk" = (/obj/effect/floor_decal/industrial/warning/corner{icon_state = "warningcorner"; dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/tiled/techfloor,/area/engineering/atmos/processing) +"axl" = (/obj/effect/floor_decal/techfloor{tag = "icon-techfloor_edges (EAST)"; icon_state = "techfloor_edges"; dir = 4},/turf/simulated/floor/tiled/techfloor,/area/engineering/atmos/processing) +"axm" = (/obj/structure/sign/warning/caution{name = "\improper CAUTION - ATMOSPHERICS AREA"},/turf/simulated/wall/r_wall,/area/engineering/atmos/intake) +"axn" = (/obj/effect/floor_decal/industrial/warning{dir = 8},/obj/machinery/atmospherics/pipe/manifold/visible{dir = 8},/turf/simulated/floor/tiled/techfloor,/area/engineering/atmos/processing) +"axo" = (/obj/effect/floor_decal/industrial/warning{dir = 10},/obj/machinery/atmospherics/pipe/manifold/visible,/turf/simulated/floor/tiled/techmaint,/area/engineering/atmos/processing) +"axp" = (/obj/effect/floor_decal/industrial/warning,/obj/machinery/atmospherics/pipe/simple/visible{dir = 4},/turf/simulated/floor/tiled/techmaint,/area/engineering/atmos/processing) +"axq" = (/obj/effect/floor_decal/industrial/warning{dir = 6},/obj/machinery/atmospherics/pipe/simple/visible{tag = "icon-intact (NORTHWEST)"; icon_state = "intact"; dir = 9},/turf/simulated/floor/tiled/techmaint,/area/engineering/atmos/processing) +"axr" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/tiled/techfloor,/area/engineering/atmos/processing) +"axs" = (/obj/machinery/atmospherics/portables_connector,/obj/effect/floor_decal/industrial/hatch/yellow,/turf/simulated/floor/tiled/techmaint,/area/engineering/atmos/processing) +"axt" = (/obj/effect/floor_decal/techfloor{tag = "icon-techfloor_edges (EAST)"; icon_state = "techfloor_edges"; dir = 4},/obj/structure/extinguisher_cabinet{dir = 2; icon_state = "extinguisher_closed"; pixel_x = 30; tag = "icon-extinguisher_closed (WEST)"},/turf/simulated/floor/tiled/techfloor,/area/engineering/atmos/processing) +"axu" = (/obj/machinery/atmospherics/pipe/simple/visible{tag = "icon-intact (NORTHEAST)"; icon_state = "intact"; dir = 5},/obj/machinery/meter,/turf/simulated/floor/tiled/techfloor,/area/engineering/atmos/processing) +"axv" = (/obj/machinery/atmospherics/binary/pump{dir = 4},/obj/effect/floor_decal/industrial/warning/corner{icon_state = "warningcorner"; dir = 4},/turf/simulated/floor/tiled/techfloor,/area/engineering/atmos/processing) +"axw" = (/obj/machinery/atmospherics/pipe/manifold/visible,/obj/effect/floor_decal/industrial/warning{icon_state = "warning"; dir = 1},/turf/simulated/floor/tiled/techfloor,/area/engineering/atmos/processing) +"axx" = (/obj/machinery/atmospherics/pipe/simple/visible{tag = "icon-intact (NORTHWEST)"; icon_state = "intact"; dir = 9},/obj/effect/floor_decal/industrial/warning{icon_state = "warning"; dir = 1},/turf/simulated/floor/tiled/techfloor,/area/engineering/atmos/processing) +"axy" = (/obj/effect/floor_decal/industrial/warning/corner{icon_state = "warningcorner"; dir = 1},/obj/machinery/atmospherics/pipe/simple/visible,/turf/simulated/floor/tiled/techfloor,/area/engineering/atmos/processing) +"axz" = (/turf/simulated/floor/tiled/steel_dirty/virgo3b,/area/engineering/atmos/intake) +"axA" = (/obj/machinery/light/small{dir = 4; pixel_y = 0},/turf/simulated/floor/tiled/steel_dirty/virgo3b,/area/engineering/atmos/intake) +"axB" = (/obj/machinery/light{dir = 4; icon_state = "tube1"; pixel_x = 0},/obj/effect/floor_decal/techfloor{tag = "icon-techfloor_edges (EAST)"; icon_state = "techfloor_edges"; dir = 4},/turf/simulated/floor/tiled/techfloor,/area/engineering/atmos/processing) +"axC" = (/obj/machinery/atmospherics/pipe/vent/high_volume{dir = 4},/turf/simulated/floor/tiled/steel_dirty/virgo3b,/area/engineering/atmos/intake) +"axD" = (/obj/machinery/atmospherics/pipe/simple/visible{dir = 4},/turf/simulated/floor/tiled/steel_dirty/virgo3b,/area/engineering/atmos/intake) +"axE" = (/obj/structure/grille,/obj/structure/window/reinforced{dir = 5; icon_state = "fwindow"},/obj/machinery/door/firedoor,/obj/machinery/atmospherics/pipe/simple/visible{dir = 4},/turf/simulated/floor/plating,/area/engineering/atmos/processing) +"axF" = (/obj/machinery/atmospherics/pipe/simple/visible{dir = 4},/obj/effect/floor_decal/techfloor/corner{tag = "icon-techfloor_corners (NORTH)"; icon_state = "techfloor_corners"; dir = 1},/turf/simulated/floor/tiled/techfloor,/area/engineering/atmos/processing) +"axG" = (/obj/machinery/atmospherics/binary/passive_gate{dir = 8; target_pressure = 4500},/turf/simulated/floor/tiled/techfloor,/area/engineering/atmos/processing) +"axH" = (/obj/machinery/atmospherics/pipe/simple/visible{dir = 4},/obj/machinery/meter,/turf/simulated/floor/tiled/techfloor,/area/engineering/atmos/processing) +"axI" = (/obj/machinery/atmospherics/valve/digital{dir = 4},/turf/simulated/floor/tiled/techfloor,/area/engineering/atmos/processing) +"axJ" = (/obj/machinery/atmospherics/pipe/simple/visible{tag = "icon-intact (SOUTHWEST)"; icon_state = "intact"; dir = 10},/obj/structure/cable/cyan{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/tiled/techfloor,/area/engineering/atmos/processing) +"axK" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 5},/turf/simulated/floor/tiled/techfloor,/area/engineering/atmos/processing) +"axL" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 10},/turf/simulated/floor/tiled/techfloor,/area/engineering/atmos/processing) +"axM" = (/obj/effect/floor_decal/techfloor{tag = "icon-techfloor_edges (EAST)"; icon_state = "techfloor_edges"; dir = 4},/obj/machinery/camera/network/engineering{c_tag = "ENG - Workshop Starboard"; dir = 8},/turf/simulated/floor/tiled/techfloor,/area/engineering/atmos/processing) +"axN" = (/obj/machinery/atmospherics/pipe/simple/visible{icon_state = "intact"; dir = 6},/turf/simulated/floor/tiled/steel_dirty/virgo3b,/area/engineering/atmos/intake) +"axO" = (/obj/machinery/atmospherics/pipe/simple/visible{dir = 4},/obj/structure/cable/cyan{d1 = 2; d2 = 4; icon_state = "2-4"},/turf/simulated/floor/tiled/steel_dirty/virgo3b,/area/engineering/atmos/intake) +"axP" = (/obj/structure/grille,/obj/structure/window/reinforced{dir = 5; icon_state = "fwindow"},/obj/machinery/door/firedoor,/obj/machinery/atmospherics/pipe/simple/visible{dir = 4},/obj/structure/cable/cyan{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/plating,/area/engineering/atmos/processing) +"axQ" = (/obj/machinery/atmospherics/pipe/simple/visible{dir = 4},/obj/effect/floor_decal/techfloor,/obj/structure/cable/cyan{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/tiled/techfloor,/area/engineering/atmos/processing) +"axR" = (/obj/machinery/atmospherics/binary/pump{dir = 4},/obj/effect/floor_decal/techfloor,/obj/structure/cable/cyan{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/camera/network/engineering{c_tag = "ENG - Pump Station"; dir = 1},/turf/simulated/floor/tiled/techfloor,/area/engineering/atmos/processing) +"axS" = (/obj/machinery/atmospherics/pipe/simple/visible{dir = 4},/obj/machinery/meter,/obj/effect/floor_decal/techfloor,/obj/structure/cable/cyan{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/tiled/techfloor,/area/engineering/atmos/processing) +"axT" = (/obj/machinery/atmospherics/pipe/simple/visible{dir = 4},/obj/machinery/light,/obj/effect/floor_decal/techfloor,/obj/structure/cable/cyan{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/tiled/techfloor,/area/engineering/atmos/processing) +"axU" = (/obj/machinery/atmospherics/pipe/manifold/visible,/obj/effect/floor_decal/techfloor,/obj/structure/cable/cyan{d1 = 1; d2 = 8; icon_state = "1-8"},/turf/simulated/floor/tiled/techfloor,/area/engineering/atmos/processing) +"axV" = (/obj/machinery/atmospherics/pipe/simple/visible{dir = 4},/obj/effect/floor_decal/techfloor,/turf/simulated/floor/tiled/techfloor,/area/engineering/atmos/processing) +"axW" = (/obj/machinery/atmospherics/pipe/simple/visible{dir = 4},/obj/effect/floor_decal/techfloor,/obj/item/device/radio/intercom{name = "Station Intercom (General)"; pixel_y = -21},/turf/simulated/floor/tiled/techfloor,/area/engineering/atmos/processing) +"axX" = (/obj/machinery/atmospherics/pipe/simple/visible{dir = 4},/obj/effect/floor_decal/techfloor,/obj/machinery/camera/network/engineering{c_tag = "ENG - Pump Station"; dir = 1},/turf/simulated/floor/tiled/techfloor,/area/engineering/atmos/processing) +"axY" = (/obj/machinery/atmospherics/pipe/simple/visible{tag = "icon-intact (NORTHWEST)"; icon_state = "intact"; dir = 9},/obj/effect/floor_decal/techfloor,/turf/simulated/floor/tiled/techfloor,/area/engineering/atmos/processing) +"axZ" = (/obj/effect/floor_decal/techfloor,/obj/machinery/light_switch{pixel_y = -25},/turf/simulated/floor/tiled/techfloor,/area/engineering/atmos/processing) +"aya" = (/obj/machinery/light,/obj/effect/floor_decal/techfloor,/turf/simulated/floor/tiled/techfloor,/area/engineering/atmos/processing) +"ayb" = (/obj/effect/floor_decal/techfloor,/turf/simulated/floor/tiled/techfloor,/area/engineering/atmos/processing) +"ayc" = (/obj/effect/floor_decal/techfloor,/obj/machinery/atmospherics/unary/vent_pump/on{dir = 1},/turf/simulated/floor/tiled/techfloor,/area/engineering/atmos/processing) +"ayd" = (/obj/effect/floor_decal/techfloor,/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 1},/turf/simulated/floor/tiled/techfloor,/area/engineering/atmos/processing) +"aye" = (/obj/effect/floor_decal/techfloor{tag = "icon-techfloor_edges (SOUTHEAST)"; icon_state = "techfloor_edges"; dir = 6},/obj/machinery/pipedispenser,/turf/simulated/floor/tiled/techfloor,/area/engineering/atmos/processing) +"ayf" = (/obj/machinery/atmospherics/pipe/simple/visible,/turf/simulated/floor/tiled/steel_dirty/virgo3b,/area/engineering/atmos/intake) +"ayg" = (/obj/structure/cable/cyan,/obj/machinery/power/apc{dir = 4; name = "east bump"; pixel_x = 28},/turf/simulated/floor/tiled/steel_dirty/virgo3b,/area/engineering/atmos/intake) +"ayh" = (/obj/machinery/atmospherics/pipe/simple/visible{tag = "icon-intact (NORTHWEST)"; icon_state = "intact"; dir = 9},/turf/simulated/floor/tiled/steel_dirty/virgo3b,/area/engineering/atmos/intake) +"ayi" = (/turf/unsimulated/wall/planetary/virgo3b,/area/tether/surfacebase/outside/outside2) +"ayj" = (/turf/simulated/open/virgo3b,/area/tether/surfacebase/outside/outside2) +"ayk" = (/turf/simulated/mineral,/area/tether/surfacebase/outside/outside2) +"ayl" = (/turf/simulated/wall,/area/maintenance/lower/mining) +"aym" = (/turf/simulated/wall/r_wall,/area/gateway) +"ayn" = (/obj/structure/table/steel,/obj/item/weapon/storage/box/bodybags,/turf/simulated/floor/tiled/techfloor,/area/maintenance/lower/mining) +"ayo" = (/obj/machinery/alarm{frequency = 1441; pixel_y = 22},/turf/simulated/floor/tiled/techfloor,/area/maintenance/lower/mining) +"ayp" = (/obj/machinery/light_switch{pixel_y = 25},/turf/simulated/floor/tiled/techfloor,/area/maintenance/lower/mining) +"ayq" = (/obj/item/device/radio/intercom{dir = 1; name = "Station Intercom (General)"; pixel_y = 21},/turf/simulated/floor/tiled/techfloor,/area/maintenance/lower/mining) +"ayr" = (/obj/structure/table/steel,/obj/item/weapon/surgical/circular_saw,/obj/item/weapon/storage/briefcase/inflatable,/turf/simulated/floor/tiled/techfloor,/area/maintenance/lower/mining) +"ays" = (/obj/machinery/gateway{dir = 9},/turf/simulated/floor/tiled/dark,/area/gateway) +"ayt" = (/obj/machinery/gateway{dir = 1},/obj/machinery/light{dir = 1},/turf/simulated/floor/tiled/dark,/area/gateway) +"ayu" = (/obj/machinery/gateway{dir = 5},/obj/machinery/camera/network/command,/turf/simulated/floor/tiled/dark,/area/gateway) +"ayv" = (/turf/simulated/wall,/area/maintenance/substation/medsec) +"ayw" = (/turf/simulated/wall,/area/maintenance/lower/north) +"ayx" = (/obj/structure/closet/firecloset,/obj/random/maintenance/medical,/turf/simulated/floor/tiled/techfloor,/area/maintenance/lower/mining) +"ayy" = (/turf/simulated/floor/tiled/techfloor,/area/maintenance/lower/mining) +"ayz" = (/obj/structure/ladder/up,/obj/effect/floor_decal/industrial/outline/yellow,/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/tiled/techfloor,/area/maintenance/lower/mining) +"ayA" = (/obj/structure/table/steel,/obj/item/weapon/backup_implanter,/turf/simulated/floor/tiled/techfloor,/area/maintenance/lower/mining) +"ayB" = (/obj/machinery/gateway{dir = 8},/turf/simulated/floor/tiled/dark,/area/gateway) +"ayC" = (/obj/machinery/gateway/centerstation,/turf/simulated/floor/tiled/dark,/area/gateway) +"ayD" = (/obj/machinery/gateway{dir = 4},/turf/simulated/floor/tiled/dark,/area/gateway) +"ayE" = (/obj/machinery/power/breakerbox/activated{RCon_tag = "MedSec Substation Bypass"},/turf/simulated/floor,/area/maintenance/substation/medsec) +"ayF" = (/obj/effect/floor_decal/industrial/warning{dir = 8},/obj/structure/cable{tag = "icon-4-8"; icon_state = "4-8"},/obj/structure/cable{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/machinery/light/small{dir = 1},/turf/simulated/floor,/area/maintenance/substation/medsec) +"ayG" = (/obj/structure/cable{tag = "icon-4-8"; icon_state = "4-8"},/obj/machinery/camera/network/engineering,/turf/simulated/floor,/area/maintenance/substation/medsec) +"ayH" = (/obj/structure/cable{tag = "icon-4-8"; icon_state = "4-8"},/obj/machinery/door/airlock/engineering{name = "MedSec Substation"},/obj/machinery/door/firedoor/glass,/turf/simulated/floor,/area/maintenance/substation/medsec) +"ayI" = (/obj/structure/cable{tag = "icon-4-8"; icon_state = "4-8"},/obj/structure/catwalk,/turf/simulated/floor,/area/maintenance/lower/north) +"ayJ" = (/obj/structure/cable{tag = "icon-2-8"; icon_state = "2-8"},/obj/structure/catwalk,/obj/machinery/alarm{frequency = 1441; pixel_y = 22},/obj/structure/cable{icon_state = "2-4"},/turf/simulated/floor,/area/maintenance/lower/north) +"ayK" = (/obj/structure/catwalk,/obj/structure/extinguisher_cabinet{pixel_y = 30},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0},/turf/simulated/floor/tiled/techfloor,/area/maintenance/lower/north) +"ayL" = (/obj/machinery/door/airlock/maintenance/medical,/obj/machinery/door/firedoor/glass,/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0},/turf/simulated/floor/tiled/techfloor,/area/maintenance/lower/mining) +"ayM" = (/obj/effect/decal/cleanable/blood/splatter,/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0},/obj/machinery/light/small{brightness_color = "#DA0205"; brightness_power = 1; brightness_range = 5},/turf/simulated/floor/tiled/techfloor,/area/maintenance/lower/mining) +"ayN" = (/obj/machinery/power/apc{dir = 2; name = "south bump"; pixel_y = -28},/obj/structure/cable{icon_state = "0-8"},/turf/simulated/floor/tiled/techfloor,/area/maintenance/lower/mining) +"ayO" = (/obj/effect/decal/cleanable/dirt,/obj/machinery/camera/network/medbay{c_tag = "MED - Operating Theatre 2"; dir = 1},/turf/simulated/floor/tiled/techfloor,/area/maintenance/lower/mining) +"ayP" = (/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/tiled/techfloor,/area/maintenance/lower/mining) +"ayQ" = (/obj/structure/table/steel,/obj/item/bodybag/cryobag,/turf/simulated/floor/tiled/techfloor,/area/maintenance/lower/mining) +"ayR" = (/obj/machinery/gateway{dir = 10},/obj/effect/floor_decal/industrial/warning,/turf/simulated/floor/tiled/dark,/area/gateway) +"ayS" = (/obj/machinery/gateway,/obj/effect/floor_decal/industrial/warning,/turf/simulated/floor/tiled/dark,/area/gateway) +"ayT" = (/obj/machinery/gateway{dir = 6},/obj/effect/floor_decal/industrial/warning,/turf/simulated/floor/tiled/dark,/area/gateway) +"ayU" = (/obj/structure/cable/green,/obj/structure/cable/green{d2 = 2; icon_state = "0-2"},/obj/machinery/power/smes/buildable{charge = 0; RCon_tag = "Substation - MedSec"},/turf/simulated/floor,/area/maintenance/substation/medsec) +"ayV" = (/obj/effect/floor_decal/industrial/warning{dir = 8},/obj/machinery/power/terminal{dir = 8},/obj/structure/cable,/turf/simulated/floor,/area/maintenance/substation/medsec) +"ayW" = (/obj/machinery/power/apc{dir = 4; name = "east bump"; pixel_x = 28},/obj/structure/cable/green{d2 = 2; icon_state = "0-2"},/turf/simulated/floor,/area/maintenance/substation/medsec) +"ayX" = (/obj/structure/catwalk,/turf/simulated/floor,/area/maintenance/lower/north) +"ayY" = (/obj/structure/cable{tag = "icon-1-2"; icon_state = "1-2"},/obj/structure/catwalk,/turf/simulated/floor,/area/maintenance/lower/north) +"ayZ" = (/obj/structure/railing{dir = 8},/obj/structure/railing{dir = 1},/turf/simulated/floor/tiled/techfloor,/area/maintenance/lower/north) +"aza" = (/obj/machinery/door/blast/shutters{dir = 2; id = "PubPrep"; layer = 3.3; name = "Gateway Shutter"},/turf/simulated/floor/holofloor/tiled/dark,/area/gateway) +"azb" = (/obj/effect/floor_decal/industrial/warning{dir = 1},/obj/structure/cable/green,/obj/structure/cable/green{icon_state = "0-4"},/obj/machinery/power/sensor{name = "Powernet Sensor - MedSec Subgrid"; name_tag = "MedSec Subgrid"},/obj/machinery/alarm{dir = 4; icon_state = "alarm0"; pixel_x = -22},/turf/simulated/floor,/area/maintenance/substation/medsec) +"azc" = (/obj/structure/cable/green{icon_state = "16-0"},/obj/structure/cable/green{d2 = 8; icon_state = "0-8"},/obj/structure/cable/green{icon_state = "0-4"},/obj/effect/floor_decal/industrial/warning/corner{dir = 1},/turf/simulated/floor,/area/maintenance/substation/medsec) +"azd" = (/obj/structure/cable/green{d1 = 1; d2 = 8; icon_state = "1-8"},/turf/simulated/floor,/area/maintenance/substation/medsec) +"aze" = (/obj/structure/sign/warning/high_voltage,/turf/simulated/wall,/area/maintenance/substation/medsec) +"azf" = (/obj/structure/railing{dir = 8},/obj/random/tool,/turf/simulated/floor/tiled/techfloor,/area/maintenance/lower/north) +"azg" = (/turf/simulated/open,/area/maintenance/lower/mining) +"azh" = (/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/plating,/area/maintenance/lower/mining) +"azi" = (/obj/effect/decal/cleanable/dirt,/obj/machinery/alarm{frequency = 1441; pixel_y = 22},/turf/simulated/floor/plating,/area/maintenance/lower/mining) +"azj" = (/obj/structure/closet,/obj/random/maintenance/engineering,/obj/random/maintenance/research,/obj/random/toolbox,/obj/random/maintenance/cargo,/turf/simulated/floor/plating,/area/maintenance/lower/mining) +"azk" = (/obj/machinery/light_switch{pixel_x = -25},/turf/simulated/floor/holofloor/tiled/dark,/area/gateway) +"azl" = (/turf/simulated/floor/holofloor/tiled/dark,/area/gateway) +"azm" = (/obj/structure/closet/firecloset,/obj/machinery/camera/network/command,/turf/simulated/floor/holofloor/tiled/dark,/area/gateway) +"azn" = (/obj/structure/closet/emcloset,/turf/simulated/floor/holofloor/tiled/dark,/area/gateway) +"azo" = (/obj/structure/ladder/up,/obj/effect/floor_decal/industrial/outline/yellow,/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/tiled/techfloor,/area/maintenance/lower/north) +"azp" = (/obj/random/junk,/obj/random/cigarettes,/obj/random/maintenance/cargo,/turf/simulated/floor/plating,/area/maintenance/lower/mining) +"azq" = (/obj/effect/floor_decal/rust,/turf/simulated/floor/plating,/area/maintenance/lower/mining) +"azr" = (/obj/machinery/light/small{dir = 4; pixel_y = 0},/turf/simulated/floor/plating,/area/maintenance/lower/mining) +"azs" = (/obj/structure/cable{icon_state = "2-4"},/obj/effect/decal/cleanable/dirt,/obj/effect/floor_decal/rust,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 6},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 6},/turf/simulated/floor/plating,/area/gateway) +"azt" = (/obj/machinery/door/airlock/maintenance/engi,/obj/machinery/door/firedoor/glass,/obj/structure/cable{tag = "icon-4-8"; icon_state = "4-8"},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/plating,/area/gateway) +"azu" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/holofloor/tiled/dark,/area/gateway) +"azv" = (/obj/structure/cable{icon_state = "0-8"},/obj/machinery/power/apc{dir = 4; name = "east bump"; pixel_x = 24},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 10},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 10},/turf/simulated/floor/holofloor/tiled/dark,/area/gateway) +"azw" = (/obj/effect/floor_decal/techfloor{tag = "icon-techfloor_edges (NORTHWEST)"; icon_state = "techfloor_edges"; dir = 9},/obj/effect/decal/cleanable/dirt,/obj/random/cigarettes,/turf/simulated/floor/tiled/techfloor,/area/maintenance/lower/north) +"azx" = (/obj/structure/railing{dir = 4},/obj/effect/floor_decal/techfloor{tag = "icon-techfloor_edges (NORTH)"; icon_state = "techfloor_edges"; dir = 1},/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/tiled/techfloor,/area/maintenance/lower/north) +"azy" = (/obj/structure/catwalk,/obj/effect/floor_decal/techfloor{tag = "icon-techfloor_edges (NORTH)"; icon_state = "techfloor_edges"; dir = 1},/obj/machinery/firealarm{dir = 2; layer = 3.3; pixel_x = 0; pixel_y = 26},/turf/simulated/floor/tiled/techfloor,/area/maintenance/lower/north) +"azz" = (/obj/structure/catwalk,/obj/effect/floor_decal/techfloor{tag = "icon-techfloor_edges (NORTH)"; icon_state = "techfloor_edges"; dir = 1},/obj/machinery/power/apc{dir = 1; name = "north bump"; pixel_x = 0; pixel_y = 24},/obj/structure/cable{tag = "icon-0-2"; icon_state = "0-2"},/turf/simulated/floor/tiled/techfloor,/area/maintenance/lower/north) +"azA" = (/obj/effect/decal/cleanable/dirt,/obj/machinery/door/firedoor/glass,/turf/simulated/floor/tiled/techfloor/grid,/area/maintenance/lower/north) +"azB" = (/obj/effect/decal/cleanable/dirt,/obj/machinery/atmospherics/unary/vent_scrubber/on,/turf/simulated/floor/tiled/techfloor,/area/maintenance/lower/north) +"azC" = (/obj/effect/decal/cleanable/dirt,/obj/machinery/atmospherics/unary/vent_pump/on,/turf/simulated/floor/tiled/techfloor,/area/maintenance/lower/north) +"azD" = (/obj/effect/decal/cleanable/dirt,/obj/structure/cable{tag = "icon-1-2"; icon_state = "1-2"},/turf/simulated/floor/tiled/techfloor,/area/maintenance/lower/north) +"azE" = (/obj/structure/railing,/turf/simulated/open,/area/maintenance/lower/mining) +"azF" = (/mob/living/simple_animal/mouse,/turf/simulated/floor/plating,/area/maintenance/lower/mining) +"azG" = (/turf/simulated/floor/plating,/area/maintenance/lower/mining) +"azH" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0},/obj/effect/decal/cleanable/dirt,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/plating,/area/gateway) +"azI" = (/obj/machinery/firealarm{dir = 8; pixel_x = -24},/turf/simulated/floor/holofloor/tiled/dark,/area/gateway) +"azJ" = (/obj/machinery/light{icon_state = "tube1"; dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/holofloor/tiled/dark,/area/gateway) +"azK" = (/obj/effect/floor_decal/techfloor{tag = "icon-techfloor_edges (WEST)"; icon_state = "techfloor_edges"; dir = 8},/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/tiled/techfloor,/area/maintenance/lower/north) +"azL" = (/obj/structure/railing{dir = 4},/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/tiled/techfloor,/area/maintenance/lower/north) +"azM" = (/obj/structure/catwalk,/turf/simulated/floor/tiled/techfloor,/area/maintenance/lower/north) +"azN" = (/obj/structure/catwalk,/obj/structure/cable{icon_state = "2-4"},/obj/structure/cable{tag = "icon-1-2"; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/visible/scrubbers{dir = 6},/obj/machinery/atmospherics/pipe/simple/visible/supply{dir = 6},/turf/simulated/floor/tiled/techfloor,/area/maintenance/lower/north) +"azO" = (/obj/machinery/door/airlock/multi_tile/metal/mait{dir = 1},/obj/effect/decal/cleanable/dirt,/obj/machinery/door/firedoor/glass,/obj/structure/cable{tag = "icon-4-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/maintenance/lower/north) +"azP" = (/obj/effect/decal/cleanable/dirt,/obj/structure/cable{tag = "icon-4-8"; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,/turf/simulated/floor/tiled/techfloor,/area/maintenance/lower/north) +"azQ" = (/obj/effect/decal/cleanable/dirt,/obj/structure/cable{tag = "icon-4-8"; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/manifold/hidden/supply,/turf/simulated/floor/tiled/techfloor,/area/maintenance/lower/north) +"azR" = (/obj/effect/decal/cleanable/dirt,/obj/structure/cable{tag = "icon-4-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,/area/maintenance/lower/north) +"azS" = (/obj/effect/decal/cleanable/dirt,/obj/structure/cable{tag = "icon-4-8"; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 10},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 10},/turf/simulated/floor/tiled/techfloor,/area/maintenance/lower/north) +"azT" = (/obj/effect/decal/cleanable/dirt,/obj/structure/cable{tag = "icon-2-8"; icon_state = "2-8"},/obj/structure/cable{icon_state = "1-8"},/turf/simulated/floor/tiled/techfloor,/area/maintenance/lower/north) +"azU" = (/obj/structure/railing{dir = 4},/turf/simulated/open,/area/maintenance/lower/mining) +"azV" = (/obj/structure/catwalk,/turf/simulated/floor/tiled/techfloor,/area/maintenance/lower/mining) +"azW" = (/obj/machinery/door/airlock/maintenance/common,/obj/machinery/door/firedoor/glass,/turf/simulated/floor/tiled/techfloor/grid,/area/maintenance/lower/mining) +"azX" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0},/obj/effect/decal/cleanable/dirt,/obj/effect/floor_decal/rust,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/plating,/area/gateway) +"azY" = (/obj/effect/floor_decal/industrial/warning,/obj/machinery/alarm{dir = 4; icon_state = "alarm0"; pixel_x = -22; pixel_y = 0},/turf/simulated/floor/holofloor/tiled/dark,/area/gateway) +"azZ" = (/obj/effect/floor_decal/industrial/warning,/turf/simulated/floor/holofloor/tiled/dark,/area/gateway) +"aAa" = (/obj/machinery/button/remote/blast_door{id = "GateShut"; name = "Gateway Shutter"; pixel_y = -22; req_access = list(62)},/turf/simulated/floor/holofloor/tiled/dark,/area/gateway) +"aAb" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/extinguisher_cabinet{pixel_x = 27},/turf/simulated/floor/holofloor/tiled/dark,/area/gateway) +"aAc" = (/obj/structure/railing{dir = 4},/turf/simulated/floor/tiled/techfloor,/area/maintenance/lower/north) +"aAd" = (/obj/structure/catwalk,/obj/structure/cable{tag = "icon-1-2"; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/visible/scrubbers,/obj/machinery/atmospherics/pipe/simple/visible/supply,/turf/simulated/floor/tiled/techfloor,/area/maintenance/lower/north) +"aAe" = (/obj/effect/decal/cleanable/dirt,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/tiled/techfloor,/area/maintenance/lower/north) +"aAf" = (/obj/machinery/light/small{dir = 4; pixel_y = 0},/obj/effect/decal/cleanable/dirt,/obj/structure/cable{tag = "icon-1-2"; icon_state = "1-2"},/turf/simulated/floor/tiled/techfloor,/area/maintenance/lower/north) +"aAg" = (/obj/structure/catwalk,/obj/random/junk,/turf/simulated/floor/tiled/techfloor,/area/maintenance/lower/mining) +"aAh" = (/obj/structure/catwalk,/obj/machinery/light/small,/turf/simulated/floor/tiled/techfloor,/area/maintenance/lower/mining) +"aAi" = (/obj/structure/closet/crate,/obj/random/maintenance/clean,/obj/random/maintenance/cargo,/obj/random/action_figure,/obj/random/tool,/obj/random/maintenance/cargo,/obj/effect/floor_decal/rust,/turf/simulated/floor/plating,/area/maintenance/lower/mining) +"aAj" = (/turf/simulated/mineral,/area/gateway) +"aAk" = (/obj/structure/closet/crate,/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 6},/turf/simulated/floor/holofloor/tiled/dark,/area/gateway) +"aAl" = (/obj/structure/closet/crate,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 9},/turf/simulated/floor/holofloor/tiled/dark,/area/gateway) +"aAm" = (/obj/structure/catwalk,/obj/random/junk,/turf/simulated/floor/tiled/techfloor,/area/maintenance/lower/north) +"aAn" = (/obj/structure/catwalk,/obj/machinery/light/small{dir = 4; pixel_y = 0},/obj/structure/cable{tag = "icon-1-2"; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/visible/scrubbers,/obj/machinery/atmospherics/pipe/simple/visible/supply,/turf/simulated/floor/tiled/techfloor,/area/maintenance/lower/north) +"aAo" = (/obj/effect/decal/cleanable/dirt,/obj/structure/closet/crate,/obj/random/maintenance/clean,/obj/random/maintenance/clean,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/tiled/techfloor,/area/maintenance/lower/north) +"aAp" = (/obj/structure/railing{dir = 4},/obj/structure/railing,/turf/simulated/open,/area/maintenance/lower/mining) +"aAq" = (/obj/structure/stairs/south,/turf/simulated/mineral,/area/gateway) +"aAr" = (/obj/structure/closet/crate,/obj/machinery/atmospherics/unary/vent_pump/on{dir = 1},/turf/simulated/floor/holofloor/tiled/dark,/area/gateway) +"aAs" = (/obj/structure/closet/crate,/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 1},/turf/simulated/floor/holofloor/tiled/dark,/area/gateway) +"aAt" = (/obj/effect/decal/cleanable/dirt,/obj/structure/closet/crate,/obj/random/maintenance/clean,/obj/random/maintenance/clean,/obj/random/maintenance/cargo,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/tiled/techfloor,/area/maintenance/lower/north) +"aAu" = (/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/tiled/techfloor,/area/maintenance/lower/north) +"aAv" = (/obj/effect/decal/cleanable/dirt,/obj/machinery/door/firedoor/glass,/turf/simulated/floor/tiled/techfloor/grid,/area/maintenance/lower/mining) +"aAw" = (/obj/structure/catwalk,/obj/machinery/alarm{dir = 8; icon_state = "alarm0"; pixel_x = 24},/turf/simulated/floor/tiled/techfloor,/area/maintenance/lower/mining) +"aAx" = (/obj/structure/railing{dir = 4},/obj/machinery/atmospherics/pipe/simple/visible/scrubbers{dir = 6},/obj/machinery/atmospherics/pipe/simple/visible/supply{dir = 6},/turf/simulated/floor/tiled/techfloor,/area/maintenance/lower/north) +"aAy" = (/obj/structure/catwalk,/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/north) +"aAz" = (/obj/structure/catwalk,/obj/structure/cable{tag = "icon-1-2"; icon_state = "1-2"},/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/north) +"aAA" = (/obj/effect/decal/cleanable/dirt,/obj/structure/closet,/obj/random/maintenance/clean,/obj/random/maintenance/cargo,/obj/random/medical/lite,/obj/random/maintenance/cargo,/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 5},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 5},/turf/simulated/floor/tiled/techfloor,/area/maintenance/lower/north) +"aAB" = (/obj/effect/decal/cleanable/dirt,/obj/structure/cable{tag = "icon-1-4"; icon_state = "1-4"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/turf/simulated/floor/tiled/techfloor,/area/maintenance/lower/north) +"aAC" = (/obj/machinery/door/airlock/multi_tile/metal/mait{dir = 1},/obj/effect/decal/cleanable/dirt,/obj/machinery/door/firedoor/glass,/obj/structure/cable{tag = "icon-4-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/maintenance/lower/mining) +"aAD" = (/obj/structure/catwalk,/obj/structure/cable{tag = "icon-4-8"; icon_state = "4-8"},/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/mining) +"aAE" = (/obj/structure/catwalk,/obj/structure/cable{tag = "icon-2-8"; icon_state = "2-8"},/obj/structure/cable{tag = "icon-4-8"; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/visible/supply{dir = 10},/obj/machinery/atmospherics/pipe/simple/visible/scrubbers{dir = 10},/turf/simulated/floor/tiled/techfloor,/area/maintenance/lower/mining) +"aAF" = (/obj/structure/catwalk,/obj/machinery/power/apc{dir = 4; name = "east bump"; pixel_x = 28},/obj/structure/cable{d2 = 8; icon_state = "0-8"},/turf/simulated/floor/tiled/techfloor,/area/maintenance/lower/mining) +"aAG" = (/obj/effect/floor_decal/rust,/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/tiled/techfloor,/area/maintenance/lower/north) +"aAH" = (/obj/effect/floor_decal/techfloor/hole{tag = "icon-techfloor_hole_left (NORTH)"; icon_state = "techfloor_hole_left"; dir = 1},/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/tiled/techfloor,/area/maintenance/lower/north) +"aAI" = (/obj/effect/floor_decal/techfloor{tag = "icon-techfloor_edges (NORTH)"; icon_state = "techfloor_edges"; dir = 1},/obj/effect/decal/cleanable/dirt,/mob/living/simple_animal/mouse,/turf/simulated/floor/tiled/techfloor,/area/maintenance/lower/north) +"aAJ" = (/obj/effect/floor_decal/techfloor{tag = "icon-techfloor_edges (NORTH)"; icon_state = "techfloor_edges"; dir = 1},/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/tiled/techfloor,/area/maintenance/lower/north) +"aAK" = (/obj/effect/floor_decal/techfloor/hole{tag = "icon-techfloor_hole_left (WEST)"; icon_state = "techfloor_hole_left"; dir = 8},/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/tiled/techfloor,/area/maintenance/lower/north) +"aAL" = (/obj/structure/railing{dir = 4},/obj/structure/lattice,/obj/structure/cable{tag = "icon-32-2"; icon_state = "32-2"},/obj/machinery/atmospherics/pipe/zpipe/down/supply{dir = 1},/obj/machinery/atmospherics/pipe/zpipe/down/scrubbers{dir = 1},/obj/machinery/door/firedoor/glass,/turf/simulated/open,/area/maintenance/lower/north) +"aAM" = (/obj/structure/catwalk,/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0},/obj/machinery/atmospherics/pipe/simple/visible/supply,/obj/machinery/atmospherics/pipe/simple/visible/scrubbers,/obj/machinery/atmospherics/pipe/simple/visible/supply,/turf/simulated/floor/tiled/techfloor,/area/maintenance/lower/north) +"aAN" = (/obj/structure/railing{dir = 1},/turf/simulated/open,/area/maintenance/lower/mining) +"aAO" = (/obj/structure/railing{dir = 4},/obj/structure/railing{dir = 1},/turf/simulated/open,/area/maintenance/lower/mining) +"aAP" = (/obj/structure/catwalk,/obj/structure/cable{tag = "icon-1-2"; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/visible/supply,/obj/machinery/atmospherics/pipe/simple/visible/scrubbers,/turf/simulated/floor/tiled/techfloor,/area/maintenance/lower/mining) +"aAQ" = (/turf/simulated/wall,/area/maintenance/lower/bar) +"aAR" = (/obj/effect/floor_decal/rust,/obj/effect/decal/cleanable/dirt,/obj/structure/closet/crate,/obj/random/maintenance/clean,/obj/random/maintenance/clean,/obj/random/maintenance/engineering,/turf/simulated/floor/tiled/techfloor,/area/maintenance/lower/north) +"aAS" = (/obj/structure/railing,/obj/effect/floor_decal/rust,/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/tiled/techfloor,/area/maintenance/lower/north) +"aAT" = (/obj/structure/railing,/obj/effect/floor_decal/rust,/obj/effect/decal/cleanable/dirt,/obj/random/tool,/turf/simulated/floor/tiled/techfloor,/area/maintenance/lower/north) +"aAU" = (/obj/structure/railing,/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/tiled/techfloor,/area/maintenance/lower/north) +"aAV" = (/obj/structure/railing,/obj/effect/decal/cleanable/dirt,/obj/random/junk,/turf/simulated/floor/tiled/techfloor,/area/maintenance/lower/north) +"aAW" = (/obj/structure/railing,/obj/structure/cable{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/tiled/techfloor,/area/maintenance/lower/north) +"aAX" = (/obj/structure/railing,/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0},/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/tiled/techfloor,/area/maintenance/lower/north) +"aAY" = (/obj/structure/railing{dir = 4},/obj/structure/railing,/obj/effect/decal/cleanable/dirt,/obj/structure/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0},/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/tiled/techfloor,/area/maintenance/lower/north) +"aAZ" = (/obj/structure/catwalk,/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0},/turf/simulated/floor/tiled/techfloor,/area/maintenance/lower/north) +"aBa" = (/obj/structure/catwalk,/obj/structure/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0},/obj/machinery/atmospherics/pipe/simple/visible/supply,/obj/machinery/atmospherics/pipe/simple/visible/scrubbers,/obj/machinery/atmospherics/pipe/simple/visible/supply,/turf/simulated/floor/tiled/techfloor,/area/maintenance/lower/north) +"aBb" = (/obj/structure/catwalk,/obj/structure/disposalpipe/segment{dir = 4; icon_state = "pipe-c"},/turf/simulated/floor/tiled/techfloor,/area/maintenance/lower/mining) +"aBc" = (/obj/structure/catwalk,/obj/machinery/firealarm{dir = 2; layer = 3.3; pixel_x = 0; pixel_y = 26},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled/techfloor,/area/maintenance/lower/mining) +"aBd" = (/obj/structure/catwalk,/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled/techfloor,/area/maintenance/lower/mining) +"aBe" = (/obj/structure/catwalk,/obj/machinery/light/small{dir = 1},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled/techfloor,/area/maintenance/lower/mining) +"aBf" = (/obj/structure/catwalk,/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled/techfloor,/area/maintenance/lower/bar) +"aBg" = (/obj/structure/catwalk,/obj/structure/disposalpipe/segment{dir = 4},/obj/random/junk,/turf/simulated/floor/tiled/techfloor,/area/maintenance/lower/bar) +"aBh" = (/obj/structure/catwalk,/obj/structure/disposalpipe/segment{dir = 4},/mob/living/simple_animal/mouse,/turf/simulated/floor/tiled/techfloor,/area/maintenance/lower/bar) +"aBi" = (/obj/structure/catwalk,/obj/structure/disposalpipe/segment{dir = 2; icon_state = "pipe-c"},/obj/structure/closet/crate,/obj/random/maintenance/clean,/obj/random/maintenance/cargo,/obj/random/maintenance/cargo,/turf/simulated/floor/tiled/techfloor,/area/maintenance/lower/bar) +"aBj" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0},/obj/effect/decal/cleanable/dirt,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/railing,/turf/simulated/floor/plating,/area/gateway) +"aBk" = (/obj/structure/catwalk,/obj/effect/floor_decal/rust,/turf/simulated/floor/tiled/techfloor,/area/maintenance/lower/north) +"aBl" = (/obj/structure/catwalk,/obj/structure/cable{tag = "icon-1-2"; icon_state = "1-2"},/turf/simulated/floor/tiled/techfloor,/area/maintenance/lower/north) +"aBm" = (/obj/structure/catwalk,/obj/machinery/alarm{dir = 8; icon_state = "alarm0"; pixel_x = 24},/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0},/obj/machinery/atmospherics/pipe/simple/visible/supply,/obj/machinery/atmospherics/pipe/simple/visible/scrubbers,/obj/machinery/atmospherics/pipe/simple/visible/supply,/turf/simulated/floor/tiled/techfloor,/area/maintenance/lower/north) +"aBn" = (/turf/simulated/wall,/area/tether/surfacebase/atrium_two) +"aBo" = (/obj/structure/catwalk,/obj/structure/cable{tag = "icon-1-4"; icon_state = "1-4"},/obj/machinery/atmospherics/pipe/simple/visible/supply{dir = 5},/obj/machinery/atmospherics/pipe/simple/visible/scrubbers{dir = 5},/turf/simulated/floor/tiled/techfloor,/area/maintenance/lower/mining) +"aBp" = (/obj/structure/catwalk,/obj/structure/cable{tag = "icon-4-8"; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/manifold/visible/supply{dir = 1},/obj/machinery/atmospherics/pipe/manifold/visible/scrubbers{dir = 1},/turf/simulated/floor/tiled/techfloor,/area/maintenance/lower/mining) +"aBq" = (/obj/structure/catwalk,/obj/structure/cable{tag = "icon-4-8"; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/visible/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/visible/scrubbers{dir = 4},/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled/techfloor,/area/maintenance/lower/mining) +"aBr" = (/obj/structure/catwalk,/obj/structure/cable{tag = "icon-4-8"; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/visible/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/visible/scrubbers{dir = 4},/obj/random/junk,/turf/simulated/floor/tiled/techfloor,/area/maintenance/lower/mining) +"aBs" = (/obj/structure/catwalk,/obj/structure/cable{tag = "icon-4-8"; icon_state = "4-8"},/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/bar) +"aBt" = (/obj/structure/catwalk,/obj/structure/cable{tag = "icon-2-8"; icon_state = "2-8"},/obj/machinery/atmospherics/pipe/simple/visible/supply{dir = 10},/obj/machinery/atmospherics/pipe/simple/visible/scrubbers{dir = 10},/turf/simulated/floor/tiled/techfloor,/area/maintenance/lower/bar) +"aBu" = (/obj/structure/catwalk,/turf/simulated/floor/tiled/techfloor,/area/maintenance/lower/bar) +"aBv" = (/obj/structure/catwalk,/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled/techfloor,/area/maintenance/lower/bar) +"aBw" = (/obj/effect/floor_decal/industrial/outline/yellow,/obj/structure/cable{tag = "icon-16-0"; icon_state = "16-0"},/obj/structure/cable,/obj/effect/decal/cleanable/dirt,/obj/effect/floor_decal/rust,/obj/machinery/atmospherics/pipe/zpipe/up/scrubbers{dir = 1},/obj/machinery/atmospherics/pipe/zpipe/up/supply{dir = 1},/turf/simulated/floor/plating,/area/gateway) +"aBx" = (/obj/effect/floor_decal/rust,/obj/structure/closet,/obj/random/maintenance/clean,/obj/random/maintenance/research,/obj/random/maintenance/engineering,/turf/simulated/floor/tiled/techfloor,/area/maintenance/lower/north) +"aBy" = (/obj/structure/catwalk,/obj/structure/cable{tag = "icon-1-2"; icon_state = "1-2"},/obj/structure/disposalpipe/segment{dir = 4; icon_state = "pipe-c"},/turf/simulated/floor/tiled/techfloor,/area/maintenance/lower/north) +"aBz" = (/obj/structure/catwalk,/obj/machinery/light/small,/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled/techfloor,/area/maintenance/lower/north) +"aBA" = (/obj/structure/catwalk,/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled/techfloor,/area/maintenance/lower/north) +"aBB" = (/obj/structure/catwalk,/obj/structure/disposalpipe/segment{dir = 2; icon_state = "pipe-c"},/turf/simulated/floor/tiled/techfloor,/area/maintenance/lower/north) +"aBC" = (/obj/machinery/portable_atmospherics/powered/scrubber/huge/stationary{scrub_id = "atrium"},/turf/simulated/floor/tiled/techmaint,/area/tether/surfacebase/atrium_two) +"aBD" = (/obj/structure/railing{dir = 1},/obj/structure/railing{dir = 4},/turf/simulated/open,/area/maintenance/lower/mining) +"aBE" = (/obj/structure/catwalk,/obj/machinery/atmospherics/pipe/simple/visible/scrubbers,/obj/machinery/atmospherics/pipe/simple/visible/supply,/turf/simulated/floor/tiled/techfloor,/area/maintenance/lower/mining) +"aBF" = (/obj/structure/catwalk,/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled/techfloor,/area/maintenance/lower/mining) +"aBG" = (/obj/structure/railing{dir = 1},/obj/structure/railing{dir = 8},/turf/simulated/floor/tiled/techfloor,/area/maintenance/lower/mining) +"aBH" = (/obj/structure/railing{dir = 1},/obj/effect/floor_decal/rust,/turf/simulated/floor/tiled/techfloor,/area/maintenance/lower/mining) +"aBI" = (/obj/structure/railing{dir = 1},/turf/simulated/floor/tiled/techfloor,/area/maintenance/lower/bar) +"aBJ" = (/obj/structure/railing{dir = 4},/obj/structure/railing{dir = 1},/obj/effect/floor_decal/rust,/turf/simulated/floor/tiled/techfloor,/area/maintenance/lower/bar) +"aBK" = (/obj/structure/catwalk,/obj/effect/floor_decal/rust,/obj/structure/cable{tag = "icon-1-2"; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/visible/supply,/obj/machinery/atmospherics/pipe/simple/visible/scrubbers,/turf/simulated/floor/tiled/techfloor,/area/maintenance/lower/bar) +"aBL" = (/obj/structure/catwalk,/obj/effect/floor_decal/rust,/turf/simulated/floor/tiled/techfloor,/area/maintenance/lower/bar) +"aBM" = (/obj/structure/railing{dir = 8},/obj/structure/railing{dir = 1},/obj/effect/floor_decal/rust,/turf/simulated/floor/tiled/techmaint,/area/maintenance/lower/bar) +"aBN" = (/obj/structure/railing{dir = 1},/obj/structure/railing{dir = 4},/obj/effect/floor_decal/rust,/turf/simulated/floor/tiled/techmaint,/area/maintenance/lower/bar) +"aBO" = (/obj/structure/railing{dir = 1},/obj/effect/floor_decal/techfloor{tag = "icon-techfloor_edges (WEST)"; icon_state = "techfloor_edges"; dir = 8},/turf/simulated/floor/tiled/techfloor,/area/maintenance/lower/north) +"aBP" = (/obj/structure/railing{dir = 1},/turf/simulated/floor/tiled/techfloor,/area/maintenance/lower/north) +"aBQ" = (/obj/structure/railing{dir = 1},/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/tiled/techfloor,/area/maintenance/lower/north) +"aBR" = (/obj/structure/railing{dir = 1},/obj/effect/floor_decal/techfloor{tag = "icon-techfloor_edges (EAST)"; icon_state = "techfloor_edges"; dir = 4},/turf/simulated/floor/tiled/techfloor,/area/maintenance/lower/north) +"aBS" = (/obj/machinery/door/airlock/maintenance/common,/obj/machinery/door/firedoor/glass,/obj/structure/cable{tag = "icon-1-2"; icon_state = "1-2"},/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled/techfloor/grid,/area/maintenance/lower/north) +"aBT" = (/obj/machinery/door/firedoor/glass,/obj/machinery/door/airlock/multi_tile/metal/mait,/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled/techfloor/grid,/area/tether/surfacebase/atrium_two) +"aBU" = (/obj/machinery/door/firedoor/glass,/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/tiled/techfloor/grid,/area/tether/surfacebase/atrium_two) +"aBV" = (/obj/structure/grille,/obj/structure/railing,/turf/simulated/floor/tiled/techmaint,/area/tether/surfacebase/atrium_two) +"aBW" = (/obj/machinery/door/airlock/multi_tile/metal/mait,/obj/machinery/door/firedoor/glass,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/tiled/techfloor/grid,/area/tether/surfacebase/atrium_two) +"aBX" = (/obj/machinery/door/firedoor/glass,/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled/techfloor/grid,/area/tether/surfacebase/atrium_two) +"aBY" = (/obj/effect/floor_decal/rust,/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/plating,/area/maintenance/lower/mining) +"aBZ" = (/obj/effect/floor_decal/techfloor/orange{tag = "icon-techfloororange_edges (NORTHWEST)"; icon_state = "techfloororange_edges"; dir = 9},/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/tiled/techfloor,/area/maintenance/lower/bar) +"aCa" = (/obj/structure/railing{dir = 4},/obj/effect/floor_decal/techfloor/orange{tag = "icon-techfloororange_edges (NORTH)"; icon_state = "techfloororange_edges"; dir = 1},/turf/simulated/floor/tiled/techfloor,/area/maintenance/lower/bar) +"aCb" = (/obj/structure/catwalk,/obj/effect/floor_decal/techfloor/orange{tag = "icon-techfloororange_edges (NORTH)"; icon_state = "techfloororange_edges"; dir = 1},/obj/structure/cable{tag = "icon-1-2"; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/visible/supply,/obj/machinery/atmospherics/pipe/simple/visible/scrubbers,/turf/simulated/floor/tiled/techfloor,/area/maintenance/lower/bar) +"aCc" = (/obj/structure/catwalk,/obj/effect/floor_decal/techfloor/orange{tag = "icon-techfloororange_edges (NORTH)"; icon_state = "techfloororange_edges"; dir = 1},/turf/simulated/floor/tiled/techfloor,/area/maintenance/lower/bar) +"aCd" = (/obj/structure/railing{dir = 8},/obj/effect/floor_decal/techfloor/orange{tag = "icon-techfloororange_edges (NORTHEAST)"; icon_state = "techfloororange_edges"; dir = 5},/turf/simulated/floor/tiled/techfloor,/area/maintenance/lower/bar) +"aCe" = (/obj/structure/railing{dir = 4},/obj/effect/floor_decal/rust,/turf/simulated/floor/tiled/techmaint,/area/maintenance/lower/bar) +"aCf" = (/obj/effect/floor_decal/techfloor{tag = "icon-techfloor_edges (SOUTHWEST)"; icon_state = "techfloor_edges"; dir = 10},/turf/simulated/floor/tiled/techfloor,/area/maintenance/lower/north) +"aCg" = (/obj/effect/floor_decal/techfloor,/obj/effect/floor_decal/techfloor/hole,/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/tiled/techfloor,/area/maintenance/lower/north) +"aCh" = (/obj/effect/floor_decal/techfloor,/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/tiled/techfloor,/area/maintenance/lower/north) +"aCi" = (/obj/effect/floor_decal/techfloor{tag = "icon-techfloor_edges (SOUTHEAST)"; icon_state = "techfloor_edges"; dir = 6},/turf/simulated/floor/tiled/techfloor,/area/maintenance/lower/north) +"aCj" = (/obj/effect/floor_decal/techfloor{tag = "icon-techfloor_edges (EAST)"; icon_state = "techfloor_edges"; dir = 4},/obj/effect/floor_decal/techfloor{tag = "icon-techfloor_edges (WEST)"; icon_state = "techfloor_edges"; dir = 8},/obj/structure/cable{tag = "icon-1-2"; icon_state = "1-2"},/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled/techfloor,/area/maintenance/lower/north) +"aCk" = (/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (NORTHWEST)"; icon_state = "borderfloor"; dir = 9},/obj/effect/floor_decal/borderfloor/corner2{tag = "icon-borderfloorcorner2 (NORTH)"; icon_state = "borderfloorcorner2"; dir = 1},/obj/machinery/light/small{dir = 8; pixel_x = 0},/turf/simulated/floor/tiled/techmaint,/area/tether/surfacebase/atrium_two) +"aCl" = (/obj/structure/disposalpipe/segment{dir = 1; icon_state = "pipe-c"},/turf/simulated/floor/tiled/techmaint,/area/tether/surfacebase/atrium_two) +"aCm" = (/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/structure/cable{icon_state = "2-4"},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled/techmaint,/area/tether/surfacebase/atrium_two) +"aCn" = (/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (NORTH)"; icon_state = "borderfloor"; dir = 1},/obj/effect/floor_decal/borderfloor/corner2{tag = "icon-borderfloorcorner2 (EAST)"; icon_state = "borderfloorcorner2"; dir = 4},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/camera/network/northern_star,/turf/simulated/floor/tiled/techmaint,/area/tether/surfacebase/atrium_two) +"aCo" = (/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (NORTH)"; icon_state = "borderfloor"; dir = 1},/obj/item/device/radio/intercom{dir = 1; name = "Station Intercom (General)"; pixel_y = 21},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled/techmaint,/area/tether/surfacebase/atrium_two) +"aCp" = (/obj/machinery/light/small{dir = 1},/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (NORTH)"; icon_state = "borderfloor"; dir = 1},/obj/effect/floor_decal/borderfloor/corner2{tag = "icon-borderfloorcorner2 (NORTH)"; icon_state = "borderfloorcorner2"; dir = 1},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled/techmaint,/area/tether/surfacebase/atrium_two) +"aCq" = (/obj/effect/floor_decal/industrial/warning/corner{dir = 4},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0},/obj/structure/extinguisher_cabinet{pixel_y = 30},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled/techmaint,/area/tether/surfacebase/atrium_two) +"aCr" = (/obj/effect/floor_decal/industrial/warning{dir = 1},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled/techmaint,/area/tether/surfacebase/atrium_two) +"aCs" = (/obj/effect/floor_decal/industrial/warning/corner{icon_state = "warningcorner"; dir = 1},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled/techmaint,/area/tether/surfacebase/atrium_two) +"aCt" = (/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (NORTH)"; icon_state = "borderfloor"; dir = 1},/obj/effect/floor_decal/borderfloor/corner2{tag = "icon-borderfloorcorner2 (EAST)"; icon_state = "borderfloorcorner2"; dir = 4},/obj/machinery/newscaster{pixel_x = 0; pixel_y = 30},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled/techmaint,/area/tether/surfacebase/atrium_two) +"aCu" = (/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (NORTH)"; icon_state = "borderfloor"; dir = 1},/obj/machinery/status_display{pixel_y = 30},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled/techmaint,/area/tether/surfacebase/atrium_two) +"aCv" = (/obj/machinery/light/small{dir = 1},/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (NORTH)"; icon_state = "borderfloor"; dir = 1},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled/techmaint,/area/tether/surfacebase/atrium_two) +"aCw" = (/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (NORTH)"; icon_state = "borderfloor"; dir = 1},/obj/machinery/firealarm{dir = 2; layer = 3.3; pixel_x = 0; pixel_y = 26},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled/techmaint,/area/tether/surfacebase/atrium_two) +"aCx" = (/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (NORTH)"; icon_state = "borderfloor"; dir = 1},/obj/machinery/power/apc{dir = 1; name = "north bump"; pixel_x = 0; pixel_y = 28},/obj/structure/cable{d2 = 8; icon_state = "0-8"},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled/techmaint,/area/tether/surfacebase/atrium_two) +"aCy" = (/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (NORTH)"; icon_state = "borderfloor"; dir = 1},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled/techmaint,/area/tether/surfacebase/atrium_two) +"aCz" = (/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (NORTH)"; icon_state = "borderfloor"; dir = 1},/obj/structure/extinguisher_cabinet{pixel_y = 30},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled/techmaint,/area/tether/surfacebase/atrium_two) +"aCA" = (/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (NORTH)"; icon_state = "borderfloor"; dir = 1},/obj/item/device/radio/intercom{dir = 1; name = "Station Intercom (General)"; pixel_y = 21},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled/techmaint,/area/tether/surfacebase/atrium_two) +"aCB" = (/obj/machinery/light/small{dir = 1},/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (NORTH)"; icon_state = "borderfloor"; dir = 1},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled/techmaint,/area/tether/surfacebase/atrium_two) +"aCC" = (/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (NORTH)"; icon_state = "borderfloor"; dir = 1},/obj/effect/floor_decal/borderfloor/corner2{tag = "icon-borderfloorcorner2 (NORTH)"; icon_state = "borderfloorcorner2"; dir = 1},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/camera/network/northern_star,/turf/simulated/floor/tiled/techmaint,/area/tether/surfacebase/atrium_two) +"aCD" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled/techmaint,/area/tether/surfacebase/atrium_two) +"aCE" = (/obj/structure/disposalpipe/junction{dir = 8},/turf/simulated/floor/tiled/techmaint,/area/tether/surfacebase/atrium_two) +"aCF" = (/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (NORTH)"; icon_state = "borderfloor"; dir = 1},/obj/effect/floor_decal/borderfloor/corner2{tag = "icon-borderfloorcorner2 (EAST)"; icon_state = "borderfloorcorner2"; dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled/techmaint,/area/tether/surfacebase/atrium_two) +"aCG" = (/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (NORTHEAST)"; icon_state = "borderfloor"; dir = 5},/obj/machinery/disposal,/obj/structure/disposalpipe/trunk{dir = 8},/turf/simulated/floor/tiled/techmaint,/area/tether/surfacebase/atrium_two) +"aCH" = (/obj/effect/floor_decal/techfloor/orange{tag = "icon-techfloororange_edges (WEST)"; icon_state = "techfloororange_edges"; dir = 8},/obj/effect/decal/cleanable/dirt,/obj/structure/closet/crate,/obj/random/maintenance/clean,/obj/random/maintenance/security,/obj/random/tool,/obj/random/maintenance/cargo,/turf/simulated/floor/tiled/techfloor,/area/maintenance/lower/bar) +"aCI" = (/obj/structure/railing{dir = 4},/turf/simulated/open,/area/maintenance/lower/bar) +"aCJ" = (/obj/structure/catwalk,/obj/structure/cable{tag = "icon-1-2"; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/visible/supply,/obj/machinery/atmospherics/pipe/simple/visible/scrubbers,/turf/simulated/open,/area/maintenance/lower/bar) +"aCK" = (/obj/structure/catwalk,/turf/simulated/open,/area/maintenance/lower/bar) +"aCL" = (/obj/structure/railing{dir = 8},/obj/effect/floor_decal/techfloor/orange{tag = "icon-techfloororange_edges (EAST)"; icon_state = "techfloororange_edges"; dir = 4},/obj/random/junk,/turf/simulated/floor/tiled/techfloor,/area/maintenance/lower/bar) +"aCM" = (/obj/structure/railing{dir = 4},/turf/simulated/floor/tiled/techmaint,/area/maintenance/lower/bar) +"aCN" = (/obj/effect/floor_decal/techfloor{tag = "icon-techfloor_edges (EAST)"; icon_state = "techfloor_edges"; dir = 4},/obj/effect/floor_decal/techfloor{tag = "icon-techfloor_edges (WEST)"; icon_state = "techfloor_edges"; dir = 8},/obj/effect/floor_decal/techfloor/hole{tag = "icon-techfloor_hole_left (EAST)"; icon_state = "techfloor_hole_left"; dir = 4},/obj/structure/cable{tag = "icon-1-2"; icon_state = "1-2"},/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled/techfloor,/area/maintenance/lower/north) +"aCO" = (/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (WEST)"; icon_state = "borderfloor"; dir = 8},/obj/machinery/status_display{pixel_x = -32},/turf/simulated/floor/tiled/techmaint,/area/tether/surfacebase/atrium_two) +"aCP" = (/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 4},/turf/simulated/floor/tiled/techmaint,/area/tether/surfacebase/atrium_two) +"aCQ" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 5},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 9},/turf/simulated/floor/tiled/techmaint,/area/tether/surfacebase/atrium_two) +"aCR" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled/techmaint,/area/tether/surfacebase/atrium_two) +"aCS" = (/obj/machinery/atmospherics/unary/vent_pump/on{dir = 8},/turf/simulated/floor/tiled/techmaint,/area/tether/surfacebase/atrium_two) +"aCT" = (/turf/simulated/floor/tiled/techmaint,/area/tether/surfacebase/atrium_two) +"aCU" = (/obj/machinery/atmospherics/unary/vent_pump/on{dir = 4},/turf/simulated/floor/tiled/techmaint,/area/tether/surfacebase/atrium_two) +"aCV" = (/obj/machinery/atmospherics/pipe/manifold/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 5},/turf/simulated/floor/tiled/techmaint,/area/tether/surfacebase/atrium_two) +"aCW" = (/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 1},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 10},/turf/simulated/floor/tiled/techmaint,/area/tether/surfacebase/atrium_two) +"aCX" = (/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 8},/turf/simulated/floor/tiled/techmaint,/area/tether/surfacebase/atrium_two) +"aCY" = (/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (EAST)"; icon_state = "borderfloor"; dir = 4},/turf/simulated/floor/tiled/techmaint,/area/tether/surfacebase/atrium_two) +"aCZ" = (/obj/effect/floor_decal/techfloor/orange{tag = "icon-techfloororange_edges (WEST)"; icon_state = "techfloororange_edges"; dir = 8},/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/tiled/techfloor,/area/maintenance/lower/bar) +"aDa" = (/obj/structure/catwalk,/obj/structure/cable{tag = "icon-1-2"; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/visible/supply,/obj/machinery/atmospherics/pipe/simple/visible/scrubbers,/obj/structure/disposalpipe/down,/turf/simulated/open,/area/maintenance/lower/bar) +"aDb" = (/obj/structure/railing{dir = 8},/obj/effect/floor_decal/techfloor/orange{tag = "icon-techfloororange_edges (EAST)"; icon_state = "techfloororange_edges"; dir = 4},/turf/simulated/floor/tiled/techfloor,/area/maintenance/lower/bar) +"aDc" = (/obj/machinery/light/small{dir = 8},/obj/effect/floor_decal/techfloor{tag = "icon-techfloor_edges (NORTHWEST)"; icon_state = "techfloor_edges"; dir = 9},/obj/structure/cable{icon_state = "2-4"},/obj/structure/disposalpipe/segment{dir = 4; icon_state = "pipe-c"},/turf/simulated/floor/tiled/techfloor/grid,/area/maintenance/lower/north) +"aDd" = (/obj/effect/floor_decal/techfloor{tag = "icon-techfloor_edges (NORTH)"; icon_state = "techfloor_edges"; dir = 1},/obj/effect/floor_decal/techfloor,/obj/effect/floor_decal/techfloor/hole/right{tag = "icon-techfloor_hole_right (NORTH)"; icon_state = "techfloor_hole_right"; dir = 1},/obj/structure/cable{tag = "icon-4-8"; icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled/techfloor,/area/maintenance/lower/north) +"aDe" = (/obj/effect/floor_decal/techfloor{tag = "icon-techfloor_edges (NORTH)"; icon_state = "techfloor_edges"; dir = 1},/obj/effect/floor_decal/techfloor,/obj/structure/cable{tag = "icon-4-8"; icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled/techfloor,/area/maintenance/lower/north) +"aDf" = (/obj/effect/floor_decal/techfloor{tag = "icon-techfloor_edges (NORTH)"; icon_state = "techfloor_edges"; dir = 1},/obj/effect/floor_decal/techfloor,/obj/effect/floor_decal/techfloor/hole/right,/obj/structure/cable{tag = "icon-4-8"; icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled/techfloor,/area/maintenance/lower/north) +"aDg" = (/obj/effect/floor_decal/techfloor{tag = "icon-techfloor_edges (SOUTHEAST)"; icon_state = "techfloor_edges"; dir = 6},/obj/structure/cable{icon_state = "1-8"},/obj/structure/disposalpipe/segment{dir = 8; icon_state = "pipe-c"},/turf/simulated/floor/tiled/techfloor/grid,/area/maintenance/lower/north) +"aDh" = (/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (WEST)"; icon_state = "borderfloor"; dir = 8},/turf/simulated/floor/tiled/techmaint,/area/tether/surfacebase/atrium_two) +"aDi" = (/obj/structure/disposalpipe/segment{dir = 4; icon_state = "pipe-c"},/turf/simulated/floor/tiled/techmaint,/area/tether/surfacebase/atrium_two) +"aDj" = (/obj/effect/floor_decal/borderfloor/corner,/obj/effect/floor_decal/corner/orange/bordercorner,/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled/techmaint,/area/tether/surfacebase/atrium_two) +"aDk" = (/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/corner/orange/border,/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled/techmaint,/area/tether/surfacebase/atrium_two) +"aDl" = (/obj/effect/floor_decal/borderfloor/corner{tag = "icon-borderfloorcorner (WEST)"; icon_state = "borderfloorcorner"; dir = 8},/obj/effect/floor_decal/corner/orange/bordercorner{tag = "icon-bordercolorcorner (WEST)"; icon_state = "bordercolorcorner"; dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 5},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 5},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled/techmaint,/area/tether/surfacebase/atrium_two) +"aDm" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 10},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 10},/obj/structure/disposalpipe/segment{dir = 2; icon_state = "pipe-c"},/turf/simulated/floor/tiled/techmaint,/area/tether/surfacebase/atrium_two) +"aDn" = (/obj/effect/floor_decal/techfloor/orange{tag = "icon-techfloororange_edges (WEST)"; icon_state = "techfloororange_edges"; dir = 8},/turf/simulated/floor/tiled/techfloor,/area/maintenance/lower/bar) +"aDo" = (/obj/structure/catwalk,/obj/structure/cable{tag = "icon-1-2"; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/visible/supply,/obj/machinery/atmospherics/pipe/simple/visible/scrubbers,/obj/structure/disposalpipe/segment,/turf/simulated/open,/area/maintenance/lower/bar) +"aDp" = (/obj/effect/floor_decal/techfloor{tag = "icon-techfloor_edges (WEST)"; icon_state = "techfloor_edges"; dir = 8},/obj/structure/cable{tag = "icon-1-2"; icon_state = "1-2"},/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled/techfloor,/area/maintenance/lower/north) +"aDq" = (/turf/simulated/wall,/area/tether/surfacebase/north_staires_two) +"aDr" = (/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (WEST)"; icon_state = "borderfloor"; dir = 8},/obj/machinery/computer/guestpass{dir = 4; pixel_x = -28; pixel_y = 0},/turf/simulated/floor/tiled/techmaint,/area/tether/surfacebase/atrium_two) +"aDs" = (/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled/techmaint,/area/tether/surfacebase/atrium_two) +"aDt" = (/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (EAST)"; icon_state = "borderfloor"; dir = 4},/obj/effect/floor_decal/corner/orange/border{tag = "icon-bordercolor (EAST)"; icon_state = "bordercolor"; dir = 4},/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0},/turf/simulated/floor/tiled/techmaint,/area/tether/surfacebase/atrium_two) +"aDu" = (/obj/structure/railing{dir = 1},/obj/structure/railing{dir = 8},/turf/simulated/open,/area/tether/surfacebase/atrium_two) +"aDv" = (/obj/structure/railing{dir = 1},/turf/simulated/open,/area/tether/surfacebase/atrium_two) +"aDw" = (/obj/structure/railing{dir = 1},/obj/structure/railing{dir = 4},/turf/simulated/open,/area/tether/surfacebase/atrium_two) +"aDx" = (/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (WEST)"; icon_state = "borderfloor"; dir = 8},/obj/effect/floor_decal/corner/orange/border{tag = "icon-bordercolor (WEST)"; icon_state = "bordercolor"; dir = 8},/turf/simulated/floor/tiled/techmaint,/area/tether/surfacebase/atrium_two) +"aDy" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled/techmaint,/area/tether/surfacebase/atrium_two) +"aDz" = (/obj/machinery/light/small{dir = 8},/obj/effect/floor_decal/techfloor/orange{tag = "icon-techfloororange_edges (SOUTHWEST)"; icon_state = "techfloororange_edges"; dir = 10},/obj/random/junk,/turf/simulated/floor/tiled/techfloor,/area/maintenance/lower/bar) +"aDA" = (/obj/structure/railing{dir = 4},/obj/effect/floor_decal/techfloor/orange,/obj/structure/railing,/turf/simulated/floor/tiled/techfloor,/area/maintenance/lower/bar) +"aDB" = (/obj/structure/catwalk,/obj/effect/floor_decal/techfloor/orange,/obj/structure/cable{tag = "icon-1-2"; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/visible/supply,/obj/machinery/atmospherics/pipe/simple/visible/scrubbers,/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled/techfloor,/area/maintenance/lower/bar) +"aDC" = (/obj/structure/catwalk,/obj/effect/floor_decal/techfloor/orange,/turf/simulated/floor/tiled/techfloor,/area/maintenance/lower/bar) +"aDD" = (/obj/structure/railing{dir = 8},/obj/effect/floor_decal/techfloor/orange{tag = "icon-techfloororange_edges (SOUTHEAST)"; icon_state = "techfloororange_edges"; dir = 6},/obj/random/junk,/turf/simulated/floor/tiled/techfloor,/area/maintenance/lower/bar) +"aDE" = (/turf/simulated/open,/area/tether/surfacebase/north_staires_two) +"aDF" = (/obj/structure/railing{dir = 8},/turf/simulated/open,/area/tether/surfacebase/atrium_two) +"aDG" = (/turf/simulated/open,/area/tether/surfacebase/atrium_two) +"aDH" = (/obj/structure/railing{dir = 4},/turf/simulated/open,/area/tether/surfacebase/atrium_two) +"aDI" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/disposalpipe/sortjunction/flipped,/turf/simulated/floor/tiled/techmaint,/area/tether/surfacebase/atrium_two) +"aDJ" = (/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (EAST)"; icon_state = "borderfloor"; dir = 4},/obj/structure/disposalpipe/segment{dir = 2; icon_state = "pipe-c"},/turf/simulated/floor/tiled/techmaint,/area/tether/surfacebase/atrium_two) +"aDK" = (/obj/effect/decal/cleanable/dirt,/obj/structure/railing{dir = 4},/turf/simulated/floor/tiled/techfloor,/area/maintenance/lower/bar) +"aDL" = (/obj/structure/catwalk,/obj/structure/ladder/up,/obj/effect/floor_decal/industrial/outline/yellow,/turf/simulated/floor/tiled/techfloor,/area/maintenance/lower/bar) +"aDM" = (/obj/structure/catwalk,/obj/structure/cable{tag = "icon-1-2"; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/visible/supply,/obj/machinery/atmospherics/pipe/simple/visible/scrubbers,/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled/techfloor,/area/maintenance/lower/bar) +"aDN" = (/obj/structure/railing{dir = 8},/turf/simulated/floor/tiled/techmaint,/area/maintenance/lower/bar) +"aDO" = (/obj/effect/floor_decal/techfloor{tag = "icon-techfloor_edges (WEST)"; icon_state = "techfloor_edges"; dir = 8},/obj/effect/floor_decal/techfloor/hole/right{tag = "icon-techfloor_hole_right (WEST)"; icon_state = "techfloor_hole_right"; dir = 8},/obj/effect/decal/cleanable/dirt,/obj/structure/cable{tag = "icon-1-2"; icon_state = "1-2"},/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled/techfloor,/area/maintenance/lower/north) +"aDP" = (/obj/machinery/light/small{dir = 8; pixel_x = 0},/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (WEST)"; icon_state = "borderfloor"; dir = 8},/turf/simulated/floor/tiled/techmaint,/area/tether/surfacebase/atrium_two) +"aDQ" = (/obj/machinery/light/small{dir = 4},/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (EAST)"; icon_state = "borderfloor"; dir = 4},/obj/effect/floor_decal/borderfloor/corner2{tag = "icon-borderfloorcorner2 (NORTHEAST)"; icon_state = "borderfloorcorner2"; dir = 5},/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled/techmaint,/area/tether/surfacebase/atrium_two) +"aDR" = (/obj/structure/railing{dir = 8},/obj/structure/railing,/turf/simulated/floor/tiled/techmaint,/area/maintenance/lower/bar) +"aDS" = (/obj/structure/railing{dir = 4},/obj/structure/railing,/turf/simulated/floor/tiled/techmaint,/area/maintenance/lower/bar) +"aDT" = (/obj/effect/floor_decal/rust,/obj/structure/cable{tag = "icon-1-2"; icon_state = "1-2"},/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled/techfloor,/area/maintenance/lower/north) +"aDU" = (/turf/simulated/floor/tiled,/area/tether/surfacebase/north_staires_two) +"aDV" = (/obj/structure/extinguisher_cabinet{dir = 2; icon_state = "extinguisher_closed"; pixel_x = 30; tag = "icon-extinguisher_closed (WEST)"},/turf/simulated/floor/tiled,/area/tether/surfacebase/north_staires_two) +"aDW" = (/obj/structure/stairs/north,/turf/simulated/floor/tiled,/area/tether/surfacebase/north_staires_two) +"aDX" = (/obj/machinery/door/airlock/maintenance/common,/obj/machinery/door/firedoor/glass,/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled/techfloor/grid,/area/tether/surfacebase/atrium_two) +"aDY" = (/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled/techfloor,/area/maintenance/lower/bar) +"aDZ" = (/obj/machinery/alarm{frequency = 1441; pixel_y = 22},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled/techfloor,/area/maintenance/lower/bar) +"aEa" = (/obj/effect/floor_decal/rust,/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled/techfloor,/area/maintenance/lower/bar) +"aEb" = (/obj/machinery/door/airlock/maintenance/common,/obj/machinery/door/firedoor/glass,/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled/techfloor/grid,/area/maintenance/lower/bar) +"aEc" = (/obj/structure/catwalk,/obj/structure/cable{tag = "icon-1-2"; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/visible/supply,/obj/machinery/atmospherics/pipe/simple/visible/scrubbers,/obj/structure/disposalpipe/segment{dir = 8; icon_state = "pipe-c"},/turf/simulated/floor/tiled/techfloor,/area/maintenance/lower/bar) +"aEd" = (/obj/structure/catwalk,/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/tiled/techfloor,/area/maintenance/lower/bar) +"aEe" = (/obj/structure/catwalk,/obj/random/junk,/turf/simulated/floor/tiled/techfloor,/area/maintenance/lower/bar) +"aEf" = (/obj/structure/sign/directions/evac{tag = "icon-direction_evac (NORTH)"; icon_state = "direction_evac"; dir = 1},/turf/simulated/wall,/area/tether/surfacebase/north_staires_two) +"aEg" = (/obj/machinery/camera/network/northern_star{tag = "icon-camera (EAST)"; icon_state = "camera"; dir = 4},/turf/simulated/floor/tiled,/area/tether/surfacebase/north_staires_two) +"aEh" = (/obj/structure/sign/directions/medical{dir = 1; icon_state = "direction_med"; pixel_y = 8; tag = "icon-direction_med (EAST)"},/obj/structure/sign/directions/science{dir = 1; icon_state = "direction_sci"; pixel_y = 3; tag = "icon-direction_sci (WEST)"},/obj/structure/sign/directions/security{dir = 1; icon_state = "direction_sec"; pixel_y = -4; tag = "icon-direction_sec (WEST)"},/obj/structure/sign/directions/engineering{dir = 4; icon_state = "direction_eng"; pixel_y = -10; tag = "icon-direction_eng (WEST)"},/turf/simulated/wall,/area/tether/surfacebase/north_staires_two) +"aEi" = (/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (WEST)"; icon_state = "borderfloor"; dir = 8},/obj/effect/floor_decal/borderfloor/corner2{tag = "icon-borderfloorcorner2 (SOUTHWEST)"; icon_state = "borderfloorcorner2"; dir = 10},/obj/machinery/camera/network/northern_star{tag = "icon-camera (EAST)"; icon_state = "camera"; dir = 4},/turf/simulated/floor/tiled/techmaint,/area/tether/surfacebase/atrium_two) +"aEj" = (/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (EAST)"; icon_state = "borderfloor"; dir = 4},/obj/effect/floor_decal/borderfloor/corner2{tag = "icon-borderfloorcorner2 (SOUTHEAST)"; icon_state = "borderfloorcorner2"; dir = 6},/obj/machinery/camera/network/northern_star{tag = "icon-camera (NORTHWEST)"; icon_state = "camera"; dir = 9},/turf/simulated/floor/tiled/techmaint,/area/tether/surfacebase/atrium_two) +"aEk" = (/obj/structure/catwalk,/obj/structure/cable{tag = "icon-1-2"; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/visible/supply,/obj/machinery/atmospherics/pipe/simple/visible/scrubbers,/turf/simulated/floor/tiled/techfloor,/area/maintenance/lower/bar) +"aEl" = (/obj/structure/catwalk,/obj/structure/disposalpipe/segment{dir = 4; icon_state = "pipe-c"},/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/tiled/techfloor,/area/maintenance/lower/bar) +"aEm" = (/obj/structure/catwalk,/obj/structure/closet,/obj/structure/disposalpipe/segment{dir = 8; icon_state = "pipe-c"},/obj/random/maintenance/medical,/obj/random/maintenance/clean,/obj/random/maintenance/cargo,/obj/random/maintenance/cargo,/turf/simulated/floor/tiled/techfloor,/area/maintenance/lower/bar) +"aEn" = (/obj/effect/floor_decal/industrial/warning{icon_state = "warning"; dir = 1},/obj/item/device/radio/intercom{dir = 8; name = "Station Intercom (General)"; pixel_x = -28},/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 4},/turf/simulated/floor/tiled,/area/tether/surfacebase/north_staires_two) +"aEo" = (/obj/effect/floor_decal/industrial/warning{icon_state = "warning"; dir = 1},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 10},/turf/simulated/floor/tiled,/area/tether/surfacebase/north_staires_two) +"aEp" = (/obj/machinery/light/small{dir = 1},/obj/effect/floor_decal/industrial/warning{icon_state = "warning"; dir = 1},/turf/simulated/floor/tiled,/area/tether/surfacebase/north_staires_two) +"aEq" = (/obj/effect/floor_decal/industrial/warning{icon_state = "warning"; dir = 1},/turf/simulated/floor/tiled,/area/tether/surfacebase/north_staires_two) +"aEr" = (/obj/effect/floor_decal/spline/plain{dir = 4},/obj/machinery/door/firedoor/glass,/turf/simulated/floor/tiled,/area/tether/surfacebase/atrium_two) +"aEs" = (/obj/machinery/recharge_station,/obj/effect/floor_decal/techfloor{tag = "icon-techfloor_edges (NORTHWEST)"; icon_state = "techfloor_edges"; dir = 9},/turf/simulated/floor/tiled/techfloor,/area/maintenance/lower/bar) +"aEt" = (/obj/effect/floor_decal/techfloor{tag = "icon-techfloor_edges (NORTH)"; icon_state = "techfloor_edges"; dir = 1},/obj/effect/floor_decal/rust/steel_decals_rusted2,/obj/machinery/alarm{frequency = 1441; pixel_y = 22},/turf/simulated/floor/tiled/techfloor,/area/maintenance/lower/bar) +"aEu" = (/obj/machinery/light/small{dir = 1},/obj/effect/floor_decal/techfloor{tag = "icon-techfloor_edges (NORTH)"; icon_state = "techfloor_edges"; dir = 1},/turf/simulated/floor/tiled/techfloor,/area/maintenance/lower/bar) +"aEv" = (/obj/effect/floor_decal/techfloor{tag = "icon-techfloor_edges (NORTH)"; icon_state = "techfloor_edges"; dir = 1},/obj/machinery/light_switch{pixel_y = 25},/turf/simulated/floor/tiled/techfloor,/area/maintenance/lower/bar) +"aEw" = (/obj/effect/floor_decal/techfloor{tag = "icon-techfloor_edges (NORTHEAST)"; icon_state = "techfloor_edges"; dir = 5},/obj/machinery/space_heater,/obj/structure/extinguisher_cabinet{pixel_y = 30},/turf/simulated/floor/tiled/techfloor,/area/maintenance/lower/bar) +"aEx" = (/obj/structure/catwalk,/obj/structure/cable{tag = "icon-1-2"; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/visible/supply,/obj/machinery/atmospherics/pipe/simple/visible/scrubbers,/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/tiled/techfloor,/area/maintenance/lower/bar) +"aEy" = (/obj/structure/catwalk,/obj/structure/disposalpipe/segment,/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/tiled/techfloor,/area/maintenance/lower/bar) +"aEz" = (/obj/structure/cable{tag = "icon-1-2"; icon_state = "1-2"},/obj/structure/disposalpipe/segment,/turf/simulated/floor/plating,/area/maintenance/lower/north) +"aEA" = (/obj/machinery/light_switch{pixel_x = -25},/obj/machinery/atmospherics/unary/vent_pump/on{dir = 4},/turf/simulated/floor/tiled,/area/tether/surfacebase/north_staires_two) +"aEB" = (/obj/machinery/alarm{dir = 1; pixel_y = -25},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 5},/turf/simulated/floor/tiled,/area/tether/surfacebase/north_staires_two) +"aEC" = (/obj/machinery/firealarm{dir = 1; pixel_x = 0; pixel_y = -25},/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/north_staires_two) +"aED" = (/obj/structure/cable{icon_state = "0-4"; d2 = 4},/obj/machinery/power/apc{dir = 2; name = "south bump"; pixel_y = -28},/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/north_staires_two) +"aEE" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/turf/simulated/floor/tiled,/area/tether/surfacebase/north_staires_two) +"aEF" = (/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/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/door/airlock/multi_tile/glass{dir = 1},/turf/simulated/floor/tiled,/area/tether/surfacebase/atrium_two) +"aEG" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/turf/simulated/floor/tiled/techmaint,/area/tether/surfacebase/atrium_two) +"aEH" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 10},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 10},/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled/techmaint,/area/tether/surfacebase/atrium_two) +"aEI" = (/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (EAST)"; icon_state = "borderfloor"; dir = 4},/obj/effect/floor_decal/corner/orange/border{tag = "icon-bordercolor (EAST)"; icon_state = "bordercolor"; dir = 4},/obj/structure/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/turf/simulated/floor/tiled/techmaint,/area/tether/surfacebase/atrium_two) +"aEJ" = (/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (EAST)"; icon_state = "borderfloor"; dir = 4},/obj/machinery/computer/guestpass{dir = 8; pixel_x = 25},/turf/simulated/floor/tiled/techmaint,/area/tether/surfacebase/atrium_two) +"aEK" = (/obj/effect/floor_decal/techfloor{tag = "icon-techfloor_edges (WEST)"; icon_state = "techfloor_edges"; dir = 8},/turf/simulated/floor/tiled/techfloor,/area/maintenance/lower/bar) +"aEL" = (/turf/simulated/floor/tiled/techfloor,/area/maintenance/lower/bar) +"aEM" = (/obj/effect/floor_decal/corner_techfloor_grid/diagonal,/obj/effect/floor_decal/industrial/outline/yellow,/obj/machinery/atmospherics/pipe/zpipe/up/scrubbers,/obj/machinery/atmospherics/pipe/zpipe/up/supply,/obj/structure/disposalpipe/up,/turf/simulated/floor/tiled/techfloor,/area/maintenance/lower/bar) +"aEN" = (/obj/effect/floor_decal/techfloor{tag = "icon-techfloor_edges (EAST)"; icon_state = "techfloor_edges"; dir = 4},/turf/simulated/floor/tiled/techfloor,/area/maintenance/lower/bar) +"aEO" = (/obj/structure/catwalk,/obj/machinery/atmospherics/pipe/simple/visible/supply,/obj/structure/cable{tag = "icon-1-2"; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/visible/scrubbers,/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/tiled/techfloor,/area/maintenance/lower/bar) +"aEP" = (/obj/structure/railing{dir = 8},/obj/effect/floor_decal/techfloor{tag = "icon-techfloor_edges (NORTH)"; icon_state = "techfloor_edges"; dir = 1},/turf/simulated/floor/tiled/techfloor,/area/maintenance/lower/bar) +"aEQ" = (/obj/effect/floor_decal/techfloor{tag = "icon-techfloor_edges (NORTHEAST)"; icon_state = "techfloor_edges"; dir = 5},/turf/simulated/floor/tiled/techfloor,/area/maintenance/lower/bar) +"aER" = (/obj/effect/floor_decal/corner_techfloor_grid,/obj/machinery/alarm{frequency = 1441; pixel_y = 22},/turf/simulated/floor/tiled/techfloor,/area/maintenance/lower/bar) +"aES" = (/obj/structure/ladder{layer = 3.3; pixel_y = 16},/obj/effect/floor_decal/industrial/outline/blue,/turf/simulated/floor/tiled/techfloor,/area/maintenance/lower/bar) +"aET" = (/obj/effect/floor_decal/rust,/turf/simulated/floor/tiled/techfloor,/area/maintenance/lower/bar) +"aEU" = (/obj/structure/sign/warning/caution{name = "\improper CAUTION - DANGEROUS EQUIPMENT AND DROPS"},/turf/simulated/wall,/area/tether/surfacebase/north_staires_two) +"aEV" = (/obj/machinery/light/small{dir = 8; pixel_x = 0},/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (WEST)"; icon_state = "borderfloor"; dir = 8},/obj/effect/floor_decal/borderfloor/corner2{tag = "icon-borderfloorcorner2 (WEST)"; icon_state = "borderfloorcorner2"; dir = 8},/turf/simulated/floor/tiled/techmaint,/area/tether/surfacebase/atrium_two) +"aEW" = (/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (EAST)"; icon_state = "borderfloor"; dir = 4},/obj/effect/floor_decal/corner/orange/border{tag = "icon-bordercolor (EAST)"; icon_state = "bordercolor"; dir = 4},/turf/simulated/floor/tiled/techmaint,/area/tether/surfacebase/atrium_two) +"aEX" = (/obj/machinery/light/small{dir = 4},/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (EAST)"; icon_state = "borderfloor"; dir = 4},/turf/simulated/floor/tiled/techmaint,/area/tether/surfacebase/atrium_two) +"aEY" = (/obj/effect/decal/cleanable/dirt,/obj/machinery/atmospherics/pipe/simple/visible/supply,/obj/machinery/atmospherics/pipe/simple/visible/scrubbers,/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled/techfloor,/area/maintenance/lower/bar) +"aEZ" = (/obj/effect/floor_decal/techfloor{tag = "icon-techfloor_edges (EAST)"; icon_state = "techfloor_edges"; dir = 4},/obj/item/device/radio/intercom{dir = 4; name = "Station Intercom (General)"; pixel_x = 21},/turf/simulated/floor/tiled/techfloor,/area/maintenance/lower/bar) +"aFa" = (/obj/structure/catwalk,/obj/machinery/atmospherics/pipe/simple/visible/supply,/obj/machinery/atmospherics/pipe/simple/visible/scrubbers,/obj/structure/cable{tag = "icon-1-2"; icon_state = "1-2"},/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/tiled/techfloor,/area/maintenance/lower/bar) +"aFb" = (/obj/structure/railing{dir = 8},/obj/effect/floor_decal/rust,/turf/simulated/floor/tiled/techfloor,/area/maintenance/lower/bar) +"aFc" = (/obj/machinery/light/small{dir = 4; pixel_y = 0},/turf/simulated/floor/tiled/techfloor,/area/maintenance/lower/bar) +"aFd" = (/turf/simulated/wall,/area/maintenance/lower/rnd) +"aFe" = (/obj/machinery/door/airlock/maintenance/common,/obj/machinery/door/firedoor/glass,/obj/structure/cable{tag = "icon-1-2"; icon_state = "1-2"},/obj/structure/disposalpipe/segment,/turf/simulated/floor/plating,/area/maintenance/lower/rnd) +"aFf" = (/obj/machinery/power/apc{dir = 1; name = "north bump"; pixel_x = 0; pixel_y = 24},/obj/structure/cable{tag = "icon-0-2"; icon_state = "0-2"},/turf/simulated/floor/plating,/area/maintenance/lower/rnd) +"aFg" = (/turf/simulated/floor/plating,/area/maintenance/lower/rnd) +"aFh" = (/obj/structure/table/rack,/obj/random/maintenance/clean,/obj/random/maintenance/clean,/obj/random/maintenance/engineering,/turf/simulated/floor/plating,/area/maintenance/lower/rnd) +"aFi" = (/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (EAST)"; icon_state = "borderfloor"; dir = 4},/obj/item/device/radio/intercom{dir = 4; name = "Station Intercom (General)"; pixel_x = 21},/turf/simulated/floor/tiled/techmaint,/area/tether/surfacebase/atrium_two) +"aFj" = (/obj/effect/floor_decal/techfloor{tag = "icon-techfloor_edges (SOUTHWEST)"; icon_state = "techfloor_edges"; dir = 10},/obj/structure/closet,/obj/random/maintenance/engineering,/obj/random/maintenance/clean,/obj/random/maintenance/engineering,/turf/simulated/floor/tiled/techfloor,/area/maintenance/lower/bar) +"aFk" = (/obj/effect/floor_decal/techfloor,/obj/effect/floor_decal/techfloor/hole,/obj/effect/floor_decal/techfloor/hole/right,/turf/simulated/floor/tiled/techfloor,/area/maintenance/lower/bar) +"aFl" = (/obj/effect/floor_decal/techfloor/corner{tag = "icon-techfloor_corners (WEST)"; icon_state = "techfloor_corners"; dir = 8},/obj/effect/floor_decal/techfloor/corner,/obj/machinery/atmospherics/pipe/simple/visible/supply{dir = 6},/obj/machinery/atmospherics/pipe/simple/visible/scrubbers{tag = "icon-intact-scrubbers (SOUTHEAST)"; icon_state = "intact-scrubbers"; dir = 6},/obj/structure/disposalpipe/segment{dir = 4; icon_state = "pipe-c"},/turf/simulated/floor/tiled/techfloor,/area/maintenance/lower/bar) +"aFm" = (/obj/effect/floor_decal/techfloor,/obj/machinery/atmospherics/pipe/simple/visible/supply{dir = 9},/obj/machinery/atmospherics/pipe/simple/visible/scrubbers{tag = "icon-intact-scrubbers (NORTHWEST)"; icon_state = "intact-scrubbers"; dir = 9},/obj/structure/disposalpipe/segment{dir = 8; icon_state = "pipe-c"},/turf/simulated/floor/tiled/techfloor,/area/maintenance/lower/bar) +"aFn" = (/obj/effect/floor_decal/techfloor{tag = "icon-techfloor_edges (SOUTHEAST)"; icon_state = "techfloor_edges"; dir = 6},/turf/simulated/floor/tiled/techfloor,/area/maintenance/lower/bar) +"aFo" = (/obj/structure/catwalk,/obj/machinery/light/small{dir = 8},/obj/machinery/atmospherics/pipe/simple/visible/supply,/obj/machinery/atmospherics/pipe/simple/visible/scrubbers,/obj/structure/cable{tag = "icon-1-2"; icon_state = "1-2"},/turf/simulated/floor/tiled/techfloor,/area/maintenance/lower/bar) +"aFp" = (/obj/effect/floor_decal/techfloor{tag = "icon-techfloor_edges (EAST)"; icon_state = "techfloor_edges"; dir = 4},/obj/effect/floor_decal/techfloor/hole/right{tag = "icon-techfloor_hole_right (EAST)"; icon_state = "techfloor_hole_right"; dir = 4},/turf/simulated/floor/tiled/techfloor,/area/maintenance/lower/bar) +"aFq" = (/obj/structure/cable{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/effect/floor_decal/industrial/warning/corner,/obj/structure/disposalpipe/segment{dir = 4; icon_state = "pipe-c"},/turf/simulated/floor/plating,/area/maintenance/lower/rnd) +"aFr" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/effect/floor_decal/industrial/warning,/obj/structure/disposalpipe/segment{dir = 8; icon_state = "pipe-c"},/turf/simulated/floor/plating,/area/maintenance/lower/rnd) +"aFs" = (/obj/machinery/light/small{dir = 1},/obj/structure/cable{tag = "icon-4-8"; icon_state = "4-8"},/obj/effect/floor_decal/industrial/warning/corner{tag = "icon-warningcorner (WEST)"; icon_state = "warningcorner"; dir = 8},/turf/simulated/floor/plating,/area/maintenance/lower/rnd) +"aFt" = (/obj/structure/cable{tag = "icon-4-8"; icon_state = "4-8"},/obj/structure/cable{icon_state = "1-8"},/turf/simulated/floor/plating,/area/maintenance/lower/rnd) +"aFu" = (/obj/structure/cable{tag = "icon-4-8"; icon_state = "4-8"},/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/plating,/area/maintenance/lower/rnd) +"aFv" = (/obj/structure/cable{tag = "icon-4-8"; icon_state = "4-8"},/turf/simulated/floor/plating,/area/maintenance/lower/rnd) +"aFw" = (/obj/structure/cable{tag = "icon-16-0"; icon_state = "16-0"},/obj/structure/cable{icon_state = "0-8"},/obj/effect/floor_decal/industrial/outline/yellow,/turf/simulated/floor/plating,/area/maintenance/lower/rnd) +"aFx" = (/obj/machinery/alarm{dir = 8; icon_state = "alarm0"; pixel_x = 24},/turf/simulated/floor/plating,/area/maintenance/lower/rnd) +"aFy" = (/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (EAST)"; icon_state = "borderfloor"; dir = 4},/obj/effect/floor_decal/industrial/danger{tag = "icon-danger (EAST)"; icon_state = "danger"; dir = 4},/turf/simulated/floor/tiled/techmaint,/area/tether/surfacebase/atrium_two) +"aFz" = (/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (WEST)"; icon_state = "borderfloor"; dir = 8},/obj/effect/floor_decal/industrial/danger{tag = "icon-danger (WEST)"; icon_state = "danger"; dir = 8},/turf/simulated/floor/tiled/techmaint,/area/tether/surfacebase/atrium_two) +"aFA" = (/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (EAST)"; icon_state = "borderfloor"; dir = 4},/obj/effect/floor_decal/borderfloor/corner2{tag = "icon-borderfloorcorner2 (NORTHEAST)"; icon_state = "borderfloorcorner2"; dir = 5},/turf/simulated/floor/tiled/techmaint,/area/tether/surfacebase/atrium_two) +"aFB" = (/obj/structure/sign/nosmoking_1,/turf/simulated/wall,/area/tether/surfacebase/atrium_two) +"aFC" = (/obj/machinery/door/airlock/maintenance/engi,/obj/machinery/atmospherics/pipe/simple/visible/supply,/obj/machinery/atmospherics/pipe/simple/visible/scrubbers,/obj/machinery/door/firedoor/glass,/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled/techfloor/grid,/area/maintenance/lower/bar) +"aFD" = (/obj/structure/catwalk,/obj/machinery/atmospherics/pipe/simple/visible/supply,/obj/machinery/atmospherics/pipe/simple/visible/scrubbers,/obj/structure/cable{tag = "icon-1-2"; icon_state = "1-2"},/obj/structure/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/turf/simulated/floor/tiled/techfloor,/area/maintenance/lower/bar) +"aFE" = (/obj/structure/catwalk,/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0},/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled/techfloor,/area/maintenance/lower/bar) +"aFF" = (/obj/structure/railing{dir = 8},/obj/structure/cable{icon_state = "0-8"},/obj/machinery/power/apc{dir = 2; name = "south bump"; pixel_y = -28},/turf/simulated/floor/tiled/techfloor,/area/maintenance/lower/bar) +"aFG" = (/obj/effect/floor_decal/techfloor/corner{tag = "icon-techfloor_corners (EAST)"; icon_state = "techfloor_corners"; dir = 4},/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/tiled/techfloor,/area/maintenance/lower/bar) +"aFH" = (/obj/machinery/door/airlock/maintenance/common,/obj/machinery/door/firedoor/glass,/turf/simulated/floor/tiled/techfloor/grid,/area/maintenance/lower/bar) +"aFI" = (/obj/effect/floor_decal/corner_techfloor_grid,/turf/simulated/floor/tiled/techfloor,/area/maintenance/lower/bar) +"aFJ" = (/obj/structure/closet/crate,/obj/random/maintenance/clean,/obj/random/maintenance/medical,/obj/random/maintenance/cargo,/turf/simulated/floor/tiled/techfloor,/area/maintenance/lower/bar) +"aFK" = (/obj/structure/cable{icon_state = "2-4"},/obj/random/junk,/turf/simulated/floor/plating,/area/maintenance/lower/rnd) +"aFL" = (/obj/structure/cable{tag = "icon-4-8"; icon_state = "4-8"},/mob/living/simple_animal/mouse,/turf/simulated/floor/plating,/area/maintenance/lower/rnd) +"aFM" = (/obj/structure/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/effect/floor_decal/industrial/warning{icon_state = "warning"; dir = 4},/obj/structure/disposalpipe/segment,/turf/simulated/floor/plating,/area/maintenance/lower/rnd) +"aFN" = (/obj/structure/lattice,/obj/structure/disposalpipe/down{tag = "icon-pipe-d (EAST)"; icon_state = "pipe-d"; dir = 4},/obj/machinery/door/firedoor/glass,/turf/simulated/open,/area/maintenance/lower/rnd) +"aFO" = (/obj/effect/decal/cleanable/dirt,/obj/effect/floor_decal/industrial/warning{icon_state = "warning"; dir = 8},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/plating,/area/maintenance/lower/rnd) +"aFP" = (/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/plating,/area/maintenance/lower/rnd) +"aFQ" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/random/junk,/turf/simulated/floor/plating,/area/maintenance/lower/rnd) +"aFR" = (/obj/effect/decal/cleanable/dirt,/obj/structure/disposalpipe/segment{dir = 2; icon_state = "pipe-c"},/turf/simulated/floor/plating,/area/maintenance/lower/rnd) +"aFS" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 5},/obj/structure/disposalpipe/segment{dir = 1; icon_state = "pipe-c"},/turf/simulated/floor/tiled/techmaint,/area/tether/surfacebase/atrium_two) +"aFT" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled/techmaint,/area/tether/surfacebase/atrium_two) +"aFU" = (/obj/machinery/door/airlock/maintenance/common,/obj/machinery/door/firedoor/glass,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled/techfloor/grid,/area/tether/surfacebase/atrium_two) +"aFV" = (/obj/structure/catwalk,/obj/machinery/atmospherics/pipe/simple/visible/scrubbers{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled/techfloor,/area/maintenance/lower/bar) +"aFW" = (/obj/structure/catwalk,/obj/machinery/atmospherics/pipe/simple/visible/supply{tag = "icon-intact-supply (NORTHEAST)"; icon_state = "intact-supply"; dir = 5},/obj/machinery/atmospherics/pipe/manifold/visible/scrubbers,/obj/structure/disposalpipe/segment{dir = 8; icon_state = "pipe-c"},/turf/simulated/floor/tiled/techfloor,/area/maintenance/lower/bar) +"aFX" = (/obj/structure/catwalk,/obj/machinery/atmospherics/pipe/simple/visible/supply{tag = "icon-intact-supply (EAST)"; icon_state = "intact-supply"; dir = 4},/obj/machinery/atmospherics/pipe/simple/visible/scrubbers{tag = "icon-intact-scrubbers (EAST)"; icon_state = "intact-scrubbers"; dir = 4},/turf/simulated/floor/tiled/techfloor,/area/maintenance/lower/bar) +"aFY" = (/obj/machinery/door/airlock/maintenance/common,/obj/machinery/atmospherics/pipe/simple/visible/supply{tag = "icon-intact-supply (EAST)"; icon_state = "intact-supply"; dir = 4},/obj/machinery/atmospherics/pipe/simple/visible/scrubbers{tag = "icon-intact-scrubbers (EAST)"; icon_state = "intact-scrubbers"; dir = 4},/obj/machinery/door/firedoor/glass,/turf/simulated/floor/tiled/techfloor/grid,/area/maintenance/lower/bar) +"aFZ" = (/obj/structure/catwalk,/obj/machinery/atmospherics/pipe/manifold/visible/supply{dir = 4},/obj/machinery/atmospherics/pipe/manifold/visible/scrubbers{dir = 4},/obj/structure/cable{tag = "icon-1-2"; icon_state = "1-2"},/turf/simulated/floor/tiled/techfloor,/area/maintenance/lower/bar) +"aGa" = (/obj/structure/cable{tag = "icon-1-2"; icon_state = "1-2"},/obj/structure/disposalpipe/segment{dir = 4; icon_state = "pipe-c"},/turf/simulated/floor/plating,/area/maintenance/lower/rnd) +"aGb" = (/obj/effect/decal/cleanable/dirt,/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/plating,/area/maintenance/lower/rnd) +"aGc" = (/obj/effect/floor_decal/industrial/warning/corner{dir = 4},/obj/structure/disposalpipe/segment{dir = 8; icon_state = "pipe-c"},/turf/simulated/floor/plating,/area/maintenance/lower/rnd) +"aGd" = (/obj/effect/floor_decal/industrial/warning{icon_state = "warning"; dir = 1},/turf/simulated/floor/plating,/area/maintenance/lower/rnd) +"aGe" = (/obj/effect/floor_decal/industrial/warning/corner{dir = 1},/turf/simulated/floor/plating,/area/maintenance/lower/rnd) +"aGf" = (/obj/structure/disposalpipe/segment{dir = 1; icon_state = "pipe-c"},/turf/simulated/floor/plating,/area/maintenance/lower/rnd) +"aGg" = (/obj/machinery/door/airlock/maintenance/common,/obj/machinery/door/firedoor/glass,/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/plating,/area/tether/surfacebase/atrium_two) +"aGh" = (/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (WEST)"; icon_state = "borderfloor"; dir = 8},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled/techmaint,/area/tether/surfacebase/atrium_two) +"aGi" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/disposalpipe/segment{dir = 8; icon_state = "pipe-c"},/turf/simulated/floor/tiled/techmaint,/area/tether/surfacebase/atrium_two) +"aGj" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/tiled/techmaint,/area/tether/surfacebase/atrium_two) +"aGk" = (/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (EAST)"; icon_state = "borderfloor"; dir = 4},/obj/effect/floor_decal/borderfloor/corner2{tag = "icon-borderfloorcorner2 (SOUTHEAST)"; icon_state = "borderfloorcorner2"; dir = 6},/turf/simulated/floor/tiled/techmaint,/area/tether/surfacebase/atrium_two) +"aGl" = (/obj/structure/catwalk,/obj/machinery/atmospherics/pipe/simple/visible/supply,/obj/machinery/atmospherics/pipe/simple/visible/scrubbers,/obj/structure/cable{tag = "icon-1-2"; icon_state = "1-2"},/turf/simulated/floor/tiled/techfloor,/area/maintenance/lower/bar) +"aGm" = (/obj/effect/floor_decal/techfloor{tag = "icon-techfloor_edges (NORTHWEST)"; icon_state = "techfloor_edges"; dir = 9},/obj/structure/closet,/obj/random/maintenance/security,/obj/random/maintenance/engineering,/obj/random/maintenance/research,/turf/simulated/floor/tiled/techfloor/grid,/area/maintenance/lower/bar) +"aGn" = (/obj/effect/floor_decal/techfloor{tag = "icon-techfloor_edges (NORTH)"; icon_state = "techfloor_edges"; dir = 1},/obj/effect/floor_decal/rust/steel_decals_rusted1,/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/tiled/techfloor/grid,/area/maintenance/lower/bar) +"aGo" = (/obj/effect/floor_decal/techfloor{tag = "icon-techfloor_edges (NORTH)"; icon_state = "techfloor_edges"; dir = 1},/turf/simulated/floor/tiled/techfloor/grid,/area/maintenance/lower/bar) +"aGp" = (/obj/effect/floor_decal/techfloor{tag = "icon-techfloor_edges (NORTHEAST)"; icon_state = "techfloor_edges"; dir = 5},/obj/random/tool,/turf/simulated/floor/tiled/techfloor/grid,/area/maintenance/lower/bar) +"aGq" = (/obj/structure/cable{tag = "icon-1-2"; icon_state = "1-2"},/obj/structure/disposalpipe/segment,/turf/simulated/floor/plating,/area/maintenance/lower/rnd) +"aGr" = (/obj/structure/closet,/obj/random/maintenance/clean,/obj/random/maintenance/clean,/obj/random/drinkbottle,/obj/random/maintenance/research,/turf/simulated/floor/plating,/area/maintenance/lower/rnd) +"aGs" = (/obj/structure/closet/crate,/obj/random/maintenance/clean,/obj/random/maintenance/clean,/obj/random/maintenance/engineering,/turf/simulated/floor/plating,/area/maintenance/lower/rnd) +"aGt" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/tiled/techmaint,/area/tether/surfacebase/atrium_two) +"aGu" = (/obj/structure/railing{dir = 1},/obj/effect/floor_decal/techfloor{tag = "icon-techfloor_edges (EAST)"; icon_state = "techfloor_edges"; dir = 4},/turf/simulated/floor/tiled/techfloor,/area/maintenance/lower/bar) +"aGv" = (/obj/structure/railing,/obj/effect/floor_decal/techfloor/hole/right{tag = "icon-techfloor_hole_right (EAST)"; icon_state = "techfloor_hole_right"; dir = 4},/obj/effect/floor_decal/techfloor/hole{tag = "icon-techfloor_hole_left (WEST)"; icon_state = "techfloor_hole_left"; dir = 8},/obj/random/junk,/obj/effect/floor_decal/rust,/turf/simulated/floor/tiled/techfloor/grid,/area/maintenance/lower/bar) +"aGw" = (/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (EAST)"; icon_state = "borderfloor"; dir = 4},/obj/structure/extinguisher_cabinet{dir = 2; icon_state = "extinguisher_closed"; pixel_x = 30; tag = "icon-extinguisher_closed (WEST)"},/turf/simulated/floor/tiled/techmaint,/area/tether/surfacebase/atrium_two) +"aGx" = (/obj/structure/railing{dir = 4},/obj/effect/floor_decal/techfloor{tag = "icon-techfloor_edges (NORTHWEST)"; icon_state = "techfloor_edges"; dir = 9},/turf/simulated/floor/tiled/techfloor,/area/maintenance/lower/bar) +"aGy" = (/turf/simulated/floor/tiled/steel_dirty/virgo3b,/area/tether/surfacebase/outside/outside2) +"aGz" = (/obj/effect/decal/cleanable/dirt,/obj/structure/closet,/obj/random/maintenance/engineering,/obj/random/maintenance/clean,/obj/random/maintenance/medical,/turf/simulated/floor/plating,/area/maintenance/lower/rnd) +"aGA" = (/obj/machinery/atmospherics/unary/vent_pump/on{dir = 1},/turf/simulated/floor/tiled/techmaint,/area/tether/surfacebase/atrium_two) +"aGB" = (/obj/structure/railing{dir = 4},/obj/effect/floor_decal/techfloor{tag = "icon-techfloor_edges (WEST)"; icon_state = "techfloor_edges"; dir = 8},/turf/simulated/floor/tiled/techfloor,/area/maintenance/lower/bar) +"aGC" = (/obj/structure/catwalk,/obj/machinery/atmospherics/pipe/simple/visible/supply{dir = 6},/obj/machinery/atmospherics/pipe/simple/visible/scrubbers{tag = "icon-intact-scrubbers (SOUTHEAST)"; icon_state = "intact-scrubbers"; dir = 6},/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/tiled/techfloor,/area/maintenance/lower/bar) +"aGD" = (/obj/structure/catwalk,/obj/machinery/atmospherics/pipe/simple/visible/scrubbers{tag = "icon-intact-scrubbers (EAST)"; icon_state = "intact-scrubbers"; dir = 4},/obj/machinery/atmospherics/pipe/simple/visible/supply{tag = "icon-intact-supply (EAST)"; icon_state = "intact-supply"; dir = 4},/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/tiled/techfloor,/area/maintenance/lower/bar) +"aGE" = (/obj/structure/catwalk,/obj/machinery/atmospherics/pipe/simple/visible/scrubbers{tag = "icon-intact-scrubbers (EAST)"; icon_state = "intact-scrubbers"; dir = 4},/obj/machinery/atmospherics/pipe/simple/visible/supply{tag = "icon-intact-supply (EAST)"; icon_state = "intact-supply"; dir = 4},/obj/structure/cable{d1 = 2; d2 = 4; icon_state = "2-4"},/turf/simulated/floor/tiled/techfloor,/area/maintenance/lower/bar) +"aGF" = (/obj/structure/catwalk,/obj/machinery/atmospherics/pipe/simple/visible/supply{dir = 9},/obj/machinery/atmospherics/pipe/simple/visible/scrubbers{tag = "icon-intact-scrubbers (NORTHWEST)"; icon_state = "intact-scrubbers"; dir = 9},/obj/structure/cable{icon_state = "1-8"},/obj/structure/disposalpipe/segment{dir = 4; icon_state = "pipe-c"},/turf/simulated/floor/tiled/techfloor,/area/maintenance/lower/bar) +"aGG" = (/obj/structure/catwalk,/obj/machinery/firealarm{dir = 4; pixel_x = 24},/obj/structure/disposalpipe/segment{dir = 8; icon_state = "pipe-c"},/turf/simulated/floor/tiled/techfloor,/area/maintenance/lower/bar) +"aGH" = (/turf/simulated/wall,/area/maintenance/asmaint2) +"aGI" = (/obj/effect/decal/cleanable/dirt,/obj/structure/table/rack,/obj/random/maintenance/clean,/obj/random/maintenance/research,/obj/random/maintenance/research,/turf/simulated/floor/plating,/area/maintenance/lower/rnd) +"aGJ" = (/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/plating,/area/maintenance/lower/rnd) +"aGK" = (/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (WEST)"; icon_state = "borderfloor"; dir = 8},/obj/effect/floor_decal/industrial/warning/corner{icon_state = "warningcorner"; dir = 8},/obj/machinery/camera/network/northern_star{tag = "icon-camera (EAST)"; icon_state = "camera"; dir = 4},/turf/simulated/floor/tiled/techmaint,/area/tether/surfacebase/atrium_two) +"aGL" = (/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (EAST)"; icon_state = "borderfloor"; dir = 4},/obj/machinery/camera/network/northern_star{tag = "icon-camera (NORTHWEST)"; icon_state = "camera"; dir = 9},/turf/simulated/floor/tiled/techmaint,/area/tether/surfacebase/atrium_two) +"aGM" = (/obj/structure/catwalk,/obj/machinery/atmospherics/pipe/simple/visible/supply,/obj/machinery/atmospherics/pipe/simple/visible/scrubbers,/turf/simulated/floor/tiled/techfloor,/area/maintenance/lower/bar) +"aGN" = (/obj/structure/railing{dir = 8},/obj/structure/railing{dir = 1},/obj/effect/decal/cleanable/dirt,/obj/structure/cable{tag = "icon-1-2"; icon_state = "1-2"},/obj/effect/decal/cleanable/dirt,/mob/living/simple_animal/mouse,/turf/simulated/floor/tiled/techfloor,/area/maintenance/lower/bar) +"aGO" = (/obj/structure/railing{dir = 1},/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled/techfloor,/area/maintenance/lower/bar) +"aGP" = (/obj/structure/railing{dir = 1},/obj/effect/floor_decal/techfloor{tag = "icon-techfloor_edges (EAST)"; icon_state = "techfloor_edges"; dir = 4},/obj/effect/floor_decal/rust,/turf/simulated/floor/tiled/techfloor,/area/maintenance/lower/bar) +"aGQ" = (/obj/item/toy/plushie/kitten{desc = "An odd appearing, cryptic plush of a cat."; name = "Pablo"},/obj/effect/floor_decal/rust,/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/plating,/area/maintenance/lower/bar) +"aGR" = (/obj/item/clothing/under/batter,/obj/effect/floor_decal/rust,/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/plating,/area/maintenance/lower/bar) +"aGS" = (/obj/structure/catwalk,/obj/machinery/alarm{dir = 8; icon_state = "alarm0"; pixel_x = 24},/turf/simulated/floor/tiled/techfloor,/area/maintenance/lower/bar) +"aGT" = (/obj/effect/floor_decal/techfloor{tag = "icon-techfloor_edges (WEST)"; icon_state = "techfloor_edges"; dir = 8},/obj/effect/decal/cleanable/dirt,/obj/structure/closet,/obj/random/maintenance/research,/obj/random/maintenance/clean,/obj/random/drinkbottle,/turf/simulated/floor/tiled/techfloor,/area/maintenance/asmaint2) +"aGU" = (/obj/structure/catwalk,/obj/structure/grille/broken,/obj/effect/decal/cleanable/dirt,/obj/effect/floor_decal/rust,/obj/random/toolbox,/turf/simulated/floor/tiled/techfloor,/area/maintenance/asmaint2) +"aGV" = (/obj/random/junk,/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/tiled/techfloor,/area/maintenance/lower/rnd) +"aGW" = (/turf/simulated/floor/tiled/techfloor,/area/maintenance/lower/rnd) +"aGX" = (/obj/effect/floor_decal/rust,/turf/simulated/floor/tiled/techfloor,/area/maintenance/lower/rnd) +"aGY" = (/obj/structure/cable{icon_state = "2-4"},/obj/structure/disposalpipe/segment{dir = 4; icon_state = "pipe-c"},/turf/simulated/floor/plating,/area/maintenance/lower/rnd) +"aGZ" = (/obj/structure/cable{tag = "icon-4-8"; icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/plating,/area/maintenance/lower/rnd) +"aHa" = (/obj/structure/cable{icon_state = "1-8"},/obj/effect/decal/cleanable/dirt,/obj/structure/disposalpipe/segment{dir = 8; icon_state = "pipe-c"},/turf/simulated/floor/plating,/area/maintenance/lower/rnd) +"aHb" = (/obj/structure/grille,/obj/structure/railing{dir = 4},/turf/simulated/floor/tiled/techmaint,/area/tether/surfacebase/atrium_two) +"aHc" = (/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (WEST)"; icon_state = "borderfloor"; dir = 8},/obj/effect/floor_decal/industrial/warning{dir = 8},/turf/simulated/floor/tiled/techmaint,/area/tether/surfacebase/atrium_two) +"aHd" = (/obj/machinery/atmospherics/unary/vent_scrubber/on,/turf/simulated/floor/tiled/techmaint,/area/tether/surfacebase/atrium_two) +"aHe" = (/obj/effect/floor_decal/techfloor{tag = "icon-techfloor_edges (EAST)"; icon_state = "techfloor_edges"; dir = 4},/obj/structure/closet/crate,/obj/random/maintenance/security,/obj/random/maintenance/clean,/obj/random/contraband,/obj/random/maintenance/medical,/turf/simulated/floor/tiled/techfloor,/area/maintenance/lower/bar) +"aHf" = (/obj/structure/railing{dir = 4},/obj/machinery/light/small{dir = 8},/obj/effect/floor_decal/techfloor{tag = "icon-techfloor_edges (WEST)"; icon_state = "techfloor_edges"; dir = 8},/turf/simulated/floor/tiled/techfloor,/area/maintenance/lower/bar) +"aHg" = (/obj/structure/railing{dir = 8},/obj/structure/cable{tag = "icon-1-2"; icon_state = "1-2"},/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/tiled/techfloor,/area/maintenance/lower/bar) +"aHh" = (/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled/techfloor,/area/maintenance/lower/bar) +"aHi" = (/obj/effect/floor_decal/techfloor{tag = "icon-techfloor_edges (EAST)"; icon_state = "techfloor_edges"; dir = 4},/obj/random/tool,/turf/simulated/floor/tiled/techfloor,/area/maintenance/lower/bar) +"aHj" = (/obj/item/clothing/shoes/boots/jackboots{desc = "Very old and worn baseball cleats."; name = "baseball cleats"},/obj/effect/floor_decal/rust,/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/plating,/area/maintenance/lower/bar) +"aHk" = (/obj/item/clothing/head/soft/black{desc = "Its a dusty old cap, It hides most your eyes."},/obj/effect/floor_decal/rust,/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/plating,/area/maintenance/lower/bar) +"aHl" = (/obj/structure/catwalk,/obj/machinery/light/small{dir = 4; pixel_y = 0},/turf/simulated/floor/tiled/techfloor,/area/maintenance/lower/bar) +"aHm" = (/obj/effect/floor_decal/techfloor{tag = "icon-techfloor_edges (WEST)"; icon_state = "techfloor_edges"; dir = 8},/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/tiled/techfloor,/area/maintenance/asmaint2) +"aHn" = (/obj/structure/catwalk,/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/tiled/techfloor,/area/maintenance/asmaint2) +"aHo" = (/obj/structure/railing{dir = 8},/obj/machinery/light{dir = 4; icon_state = "tube1"; pixel_x = 0},/obj/effect/floor_decal/techfloor{tag = "icon-techfloor_edges (EAST)"; icon_state = "techfloor_edges"; dir = 4},/obj/effect/decal/cleanable/dirt,/obj/machinery/atmospherics/pipe/simple/visible/black{tag = "icon-intact (NORTH)"; icon_state = "intact"; dir = 1},/obj/random/tool,/turf/simulated/floor/tiled/techfloor,/area/maintenance/asmaint2) +"aHp" = (/obj/random/maintenance/research,/obj/random/maintenance/clean,/obj/structure/closet/crate,/obj/random/tool,/obj/random/maintenance/research,/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/tiled/techfloor,/area/maintenance/lower/rnd) +"aHq" = (/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/tiled/techfloor,/area/maintenance/lower/rnd) +"aHr" = (/obj/machinery/light/small{dir = 8; pixel_x = 0},/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (WEST)"; icon_state = "borderfloor"; dir = 8},/obj/effect/floor_decal/industrial/warning/corner{icon_state = "warningcorner"; dir = 1},/turf/simulated/floor/tiled/techmaint,/area/tether/surfacebase/atrium_two) +"aHs" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/tiled/techmaint,/area/tether/surfacebase/atrium_two) +"aHt" = (/obj/structure/railing{dir = 4},/obj/effect/floor_decal/techfloor{tag = "icon-techfloor_edges (WEST)"; icon_state = "techfloor_edges"; dir = 8},/obj/effect/floor_decal/techfloor/hole/right{tag = "icon-techfloor_hole_right (WEST)"; icon_state = "techfloor_hole_right"; dir = 8},/turf/simulated/floor/tiled/techfloor,/area/maintenance/lower/bar) +"aHu" = (/obj/structure/railing{dir = 8},/obj/structure/railing,/obj/structure/cable{tag = "icon-1-2"; icon_state = "1-2"},/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/tiled/techfloor,/area/maintenance/lower/bar) +"aHv" = (/obj/structure/railing,/obj/structure/disposalpipe/segment,/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/tiled/techfloor,/area/maintenance/lower/bar) +"aHw" = (/obj/structure/railing,/obj/effect/floor_decal/techfloor{tag = "icon-techfloor_edges (EAST)"; icon_state = "techfloor_edges"; dir = 4},/turf/simulated/floor/tiled/techfloor,/area/maintenance/lower/bar) +"aHx" = (/turf/simulated/mineral,/area/maintenance/lower/bar) +"aHy" = (/obj/item/weapon/material/twohanded/baseballbat{desc = "This bat looks very off."; health = 500},/obj/effect/floor_decal/rust,/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/plating,/area/maintenance/lower/bar) +"aHz" = (/obj/structure/railing{dir = 4},/obj/effect/floor_decal/techfloor{tag = "icon-techfloor_edges (WEST)"; icon_state = "techfloor_edges"; dir = 8},/obj/effect/decal/cleanable/dirt,/obj/machinery/atmospherics/pipe/simple/visible/purple{tag = "icon-intact (NORTH)"; icon_state = "intact"; dir = 1},/turf/simulated/floor/tiled/techfloor,/area/maintenance/asmaint2) +"aHA" = (/obj/structure/catwalk,/mob/living/simple_animal/mouse,/turf/simulated/floor/tiled/techfloor,/area/maintenance/asmaint2) +"aHB" = (/obj/structure/railing{dir = 8},/obj/effect/floor_decal/techfloor{tag = "icon-techfloor_edges (EAST)"; icon_state = "techfloor_edges"; dir = 4},/obj/effect/decal/cleanable/dirt,/obj/machinery/atmospherics/pipe/simple/visible/black{tag = "icon-intact (NORTH)"; icon_state = "intact"; dir = 1},/turf/simulated/floor/tiled/techfloor,/area/maintenance/asmaint2) +"aHC" = (/obj/structure/cable{tag = "icon-1-2"; icon_state = "1-2"},/obj/effect/decal/cleanable/dirt,/obj/structure/disposalpipe/segment,/turf/simulated/floor/plating,/area/maintenance/lower/rnd) +"aHD" = (/turf/simulated/wall/r_wall,/area/maintenance/lower/rnd) +"aHE" = (/turf/simulated/wall/r_wall,/area/tether/surfacebase/atrium_two) +"aHF" = (/obj/structure/catwalk,/obj/structure/cable{tag = "icon-1-2"; icon_state = "1-2"},/turf/simulated/floor/tiled/techfloor,/area/maintenance/lower/bar) +"aHG" = (/obj/structure/railing{dir = 4},/obj/effect/floor_decal/rust,/obj/effect/floor_decal/techfloor{tag = "icon-techfloor_edges (WEST)"; icon_state = "techfloor_edges"; dir = 8},/obj/machinery/atmospherics/pipe/simple/visible/purple{tag = "icon-intact (NORTH)"; icon_state = "intact"; dir = 1},/turf/simulated/floor/tiled/techfloor,/area/maintenance/asmaint2) +"aHH" = (/obj/structure/catwalk,/turf/simulated/floor/tiled/techfloor,/area/maintenance/asmaint2) +"aHI" = (/obj/structure/catwalk,/obj/effect/decal/cleanable/dirt,/obj/random/junk,/turf/simulated/floor/tiled/techfloor,/area/maintenance/asmaint2) +"aHJ" = (/obj/effect/floor_decal/techfloor{tag = "icon-techfloor_edges (EAST)"; icon_state = "techfloor_edges"; dir = 4},/obj/effect/decal/cleanable/dirt,/obj/effect/floor_decal/rust,/obj/structure/cable/green{d2 = 2; icon_state = "0-2"},/turf/simulated/floor/tiled/techfloor,/area/maintenance/asmaint2) +"aHK" = (/turf/simulated/wall,/area/maintenance/research) +"aHL" = (/obj/structure/sign/securearea{desc = "A warning sign which reads 'HIGH VOLTAGE'"; icon_state = "shock"; name = "HIGH VOLTAGE"},/turf/simulated/wall,/area/maintenance/research) +"aHM" = (/obj/effect/floor_decal/industrial/warning/corner,/obj/structure/cable{tag = "icon-1-2"; icon_state = "1-2"},/obj/structure/disposalpipe/segment,/turf/simulated/floor/plating,/area/maintenance/lower/rnd) +"aHN" = (/obj/structure/sign/warning/caution{name = "\improper CAUTION - DANGEROUS EQUIPMENT AND DROPS"},/turf/simulated/wall/r_wall,/area/maintenance/lower/rnd) +"aHO" = (/obj/machinery/light/small{dir = 4; pixel_y = 0},/obj/machinery/atmospherics/pipe/zpipe/down/scrubbers,/obj/machinery/atmospherics/pipe/zpipe/down/supply,/obj/structure/lattice,/obj/structure/cable{tag = "icon-32-2"; icon_state = "32-2"},/obj/structure/disposalpipe/down,/turf/simulated/open,/area/maintenance/lower/rnd) +"aHP" = (/turf/simulated/shuttle/wall/voidcraft/green{hard_corner = 1},/area/tether/surfacebase/atrium_two) +"aHQ" = (/obj/effect/floor_decal/techfloor/corner{tag = "icon-techfloor_corners (EAST)"; icon_state = "techfloor_corners"; dir = 4},/obj/effect/floor_decal/rust,/turf/simulated/floor/tiled/techfloor,/area/maintenance/lower/bar) +"aHR" = (/obj/effect/floor_decal/techfloor{tag = "icon-techfloor_edges (NORTH)"; icon_state = "techfloor_edges"; dir = 1},/turf/simulated/floor/tiled/techfloor,/area/maintenance/lower/bar) +"aHS" = (/obj/structure/railing{dir = 4},/obj/effect/floor_decal/techfloor/corner{tag = "icon-techfloor_corners (NORTH)"; icon_state = "techfloor_corners"; dir = 1},/turf/simulated/floor/tiled/techfloor,/area/maintenance/lower/bar) +"aHT" = (/obj/structure/catwalk,/obj/machinery/atmospherics/pipe/simple/visible/supply{tag = "icon-intact-supply (NORTHEAST)"; icon_state = "intact-supply"; dir = 5},/obj/machinery/atmospherics/pipe/simple/visible/scrubbers{tag = "icon-intact-scrubbers (NORTHEAST)"; icon_state = "intact-scrubbers"; dir = 5},/turf/simulated/floor/tiled/techfloor,/area/maintenance/lower/bar) +"aHU" = (/obj/structure/catwalk,/obj/machinery/atmospherics/pipe/simple/visible/supply{tag = "icon-intact-supply (EAST)"; icon_state = "intact-supply"; dir = 4},/obj/machinery/atmospherics/pipe/simple/visible/scrubbers{tag = "icon-intact-scrubbers (EAST)"; icon_state = "intact-scrubbers"; dir = 4},/obj/structure/cable{tag = "icon-1-4"; icon_state = "1-4"},/turf/simulated/floor/tiled/techfloor,/area/maintenance/lower/bar) +"aHV" = (/obj/structure/catwalk,/obj/machinery/atmospherics/pipe/simple/visible/supply{dir = 10},/obj/machinery/atmospherics/pipe/simple/visible/scrubbers{tag = "icon-intact-scrubbers (SOUTHWEST)"; icon_state = "intact-scrubbers"; dir = 10},/obj/structure/cable{tag = "icon-2-8"; icon_state = "2-8"},/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled/techfloor,/area/maintenance/lower/bar) +"aHW" = (/obj/structure/catwalk,/obj/effect/decal/cleanable/dirt,/obj/structure/cable/green{icon_state = "0-4"},/turf/simulated/floor/tiled/techfloor,/area/maintenance/asmaint2) +"aHX" = (/obj/structure/catwalk,/obj/effect/decal/cleanable/dirt,/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/tiled/techfloor,/area/maintenance/asmaint2) +"aHY" = (/obj/structure/railing{dir = 8},/obj/effect/floor_decal/techfloor{tag = "icon-techfloor_edges (EAST)"; icon_state = "techfloor_edges"; dir = 4},/obj/effect/decal/cleanable/dirt,/obj/structure/cable/green{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/machinery/atmospherics/pipe/simple/visible/black{tag = "icon-intact (NORTH)"; icon_state = "intact"; dir = 1},/turf/simulated/floor/tiled/techfloor,/area/maintenance/asmaint2) +"aHZ" = (/obj/machinery/power/breakerbox/activated{RCon_tag = "Research Substation Bypass"},/turf/simulated/floor,/area/maintenance/research) +"aIa" = (/obj/effect/floor_decal/industrial/warning{dir = 8},/obj/structure/cable{tag = "icon-4-8"; icon_state = "4-8"},/obj/structure/cable{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/machinery/light/small{dir = 1},/turf/simulated/floor,/area/maintenance/research) +"aIb" = (/obj/structure/cable{tag = "icon-4-8"; icon_state = "4-8"},/obj/machinery/alarm{frequency = 1441; pixel_y = 22},/turf/simulated/floor,/area/maintenance/research) +"aIc" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/door/airlock/engineering{name = "Science Substation"; req_one_access = list(11,24,47)},/obj/machinery/door/firedoor,/obj/structure/cable{tag = "icon-4-8"; icon_state = "4-8"},/turf/simulated/floor,/area/maintenance/research) +"aId" = (/obj/machinery/atmospherics/pipe/simple/visible/supply{dir = 6},/obj/machinery/atmospherics/pipe/simple/visible/scrubbers{dir = 6},/obj/effect/floor_decal/industrial/warning{dir = 4},/obj/structure/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/structure/cable{tag = "icon-4-8"; icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 1; icon_state = "pipe-c"},/turf/simulated/floor/plating,/area/maintenance/lower/rnd) +"aIe" = (/obj/machinery/door/airlock/maintenance/engi,/obj/machinery/atmospherics/pipe/simple/visible/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/visible/supply{dir = 4},/obj/machinery/door/firedoor/glass,/obj/structure/cable{tag = "icon-4-8"; icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/plating,/area/maintenance/lower/rnd) +"aIf" = (/obj/machinery/atmospherics/pipe/manifold/visible/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/manifold/visible/supply{dir = 4},/obj/structure/cable{tag = "icon-1-2"; icon_state = "1-2"},/obj/structure/cable{tag = "icon-2-8"; icon_state = "2-8"},/obj/structure/disposalpipe/segment{dir = 8; icon_state = "pipe-c"},/turf/simulated/floor/plating,/area/maintenance/lower/rnd) +"aIg" = (/turf/simulated/floor/holofloor/tiled/dark,/area/tether/surfacebase/atrium_two) +"aIh" = (/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (NORTH)"; icon_state = "borderfloor"; dir = 1},/turf/simulated/floor/tiled/techmaint,/area/tether/surfacebase/atrium_two) +"aIi" = (/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (NORTHEAST)"; icon_state = "borderfloor"; dir = 5},/obj/structure/extinguisher_cabinet{pixel_y = 30},/turf/simulated/floor/tiled/techmaint,/area/tether/surfacebase/atrium_two) +"aIj" = (/obj/structure/sign/warning/caution{name = "\improper CAUTION - DANGEROUS EQUIPMENT AND DROPS"},/turf/simulated/wall,/area/tether/surfacebase/atrium_two) +"aIk" = (/obj/structure/railing,/obj/structure/railing{dir = 8},/turf/simulated/open,/area/tether/surfacebase/atrium_two) +"aIl" = (/obj/structure/railing,/turf/simulated/open,/area/tether/surfacebase/atrium_two) +"aIm" = (/obj/structure/railing{dir = 4},/obj/structure/railing,/turf/simulated/open,/area/tether/surfacebase/atrium_two) +"aIn" = (/obj/structure/catwalk,/obj/machinery/atmospherics/pipe/simple/visible/supply,/obj/machinery/atmospherics/pipe/simple/visible/scrubbers,/obj/structure/cable{tag = "icon-1-2"; icon_state = "1-2"},/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled/techfloor,/area/maintenance/lower/bar) +"aIo" = (/obj/machinery/power/smes/buildable{charge = 0; RCon_tag = "Substation - Research"},/obj/structure/cable/green,/obj/structure/cable/green{d2 = 2; icon_state = "0-2"},/turf/simulated/floor,/area/maintenance/research) +"aIp" = (/obj/effect/floor_decal/industrial/warning{dir = 8},/obj/machinery/power/terminal{dir = 8},/obj/structure/cable,/turf/simulated/floor,/area/maintenance/research) +"aIq" = (/obj/machinery/power/apc{dir = 4; name = "east bump"; pixel_x = 28},/obj/structure/cable/green{d2 = 2; icon_state = "0-2"},/turf/simulated/floor,/area/maintenance/research) +"aIr" = (/obj/effect/decal/cleanable/dirt,/obj/machinery/atmospherics/pipe/simple/visible/supply,/obj/machinery/atmospherics/pipe/simple/visible/scrubbers,/obj/effect/floor_decal/industrial/warning/corner{dir = 4},/turf/simulated/floor/plating,/area/maintenance/lower/rnd) +"aIs" = (/obj/machinery/atmospherics/pipe/zpipe/up/supply{dir = 1},/obj/machinery/atmospherics/pipe/zpipe/up/scrubbers{dir = 1},/obj/structure/railing,/obj/structure/cable{tag = "icon-16-0"; icon_state = "16-0"},/obj/structure/cable,/obj/structure/cable{tag = "icon-0-2"; icon_state = "0-2"},/obj/structure/disposalpipe/up,/obj/effect/floor_decal/industrial/outline/yellow,/turf/simulated/floor/plating,/area/maintenance/lower/rnd) +"aIt" = (/obj/effect/floor_decal/borderfloor/corner{tag = "icon-borderfloorcorner (EAST)"; icon_state = "borderfloorcorner"; dir = 4},/turf/simulated/floor/tiled/techmaint,/area/tether/surfacebase/atrium_two) +"aIu" = (/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (NORTH)"; icon_state = "borderfloor"; dir = 1},/obj/item/device/radio/intercom{dir = 1; name = "Station Intercom (General)"; pixel_y = 21},/turf/simulated/floor/tiled/techmaint,/area/tether/surfacebase/atrium_two) +"aIv" = (/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (NORTH)"; icon_state = "borderfloor"; dir = 1},/obj/machinery/camera/network/northern_star,/turf/simulated/floor/tiled/techmaint,/area/tether/surfacebase/atrium_two) +"aIw" = (/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (NORTH)"; icon_state = "borderfloor"; dir = 1},/obj/machinery/status_display{pixel_y = 30},/turf/simulated/floor/tiled/techmaint,/area/tether/surfacebase/atrium_two) +"aIx" = (/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (NORTH)"; icon_state = "borderfloor"; dir = 1},/obj/machinery/firealarm{dir = 2; layer = 3.3; pixel_x = 0; pixel_y = 26},/turf/simulated/floor/tiled/techmaint,/area/tether/surfacebase/atrium_two) +"aIy" = (/obj/machinery/light/small{dir = 1},/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (NORTH)"; icon_state = "borderfloor"; dir = 1},/turf/simulated/floor/tiled/techmaint,/area/tether/surfacebase/atrium_two) +"aIz" = (/obj/effect/floor_decal/borderfloor/corner{tag = "icon-borderfloorcorner (NORTH)"; icon_state = "borderfloorcorner"; dir = 1},/turf/simulated/floor/tiled/techmaint,/area/tether/surfacebase/atrium_two) +"aIA" = (/obj/effect/floor_decal/borderfloor/corner{tag = "icon-borderfloorcorner (EAST)"; icon_state = "borderfloorcorner"; dir = 4},/obj/effect/floor_decal/corner/orange/bordercorner{tag = "icon-bordercolorcorner (EAST)"; icon_state = "bordercolorcorner"; dir = 4},/turf/simulated/floor/tiled/techmaint,/area/tether/surfacebase/atrium_two) +"aIB" = (/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (NORTH)"; icon_state = "borderfloor"; dir = 1},/obj/effect/floor_decal/corner/orange/border{tag = "icon-bordercolor (NORTH)"; icon_state = "bordercolor"; dir = 1},/turf/simulated/floor/tiled/techmaint,/area/tether/surfacebase/atrium_two) +"aIC" = (/obj/effect/floor_decal/borderfloor/corner{tag = "icon-borderfloorcorner (NORTH)"; icon_state = "borderfloorcorner"; dir = 1},/obj/effect/floor_decal/corner/orange/bordercorner{tag = "icon-bordercolorcorner (NORTH)"; icon_state = "bordercolorcorner"; dir = 1},/turf/simulated/floor/tiled/techmaint,/area/tether/surfacebase/atrium_two) +"aID" = (/obj/machinery/door/firedoor/glass,/turf/simulated/floor/tiled/techfloor/grid,/area/tether/surfacebase/atrium_two) +"aIE" = (/obj/structure/catwalk,/obj/structure/extinguisher_cabinet{pixel_y = 30},/turf/simulated/floor/tiled/techfloor,/area/maintenance/lower/bar) +"aIF" = (/obj/structure/catwalk,/obj/machinery/alarm{frequency = 1441; pixel_y = 22},/turf/simulated/floor/tiled/techfloor,/area/maintenance/lower/bar) +"aIG" = (/obj/structure/catwalk,/obj/machinery/light/small{dir = 1},/turf/simulated/floor/tiled/techfloor,/area/maintenance/lower/bar) +"aIH" = (/obj/structure/catwalk,/obj/machinery/status_display{pixel_y = 30},/turf/simulated/floor/tiled/techfloor,/area/maintenance/lower/bar) +"aII" = (/obj/machinery/door/firedoor/glass,/turf/simulated/floor/tiled/techfloor/grid,/area/maintenance/lower/bar) +"aIJ" = (/obj/structure/railing{dir = 4},/obj/effect/floor_decal/techfloor{tag = "icon-techfloor_edges (WEST)"; icon_state = "techfloor_edges"; dir = 8},/obj/effect/decal/cleanable/dirt,/obj/machinery/atmospherics/pipe/simple/visible/purple{tag = "icon-intact (NORTH)"; icon_state = "intact"; dir = 1},/obj/structure/table/rack,/obj/random/maintenance/research,/obj/random/maintenance/clean,/obj/random/action_figure,/obj/random/cigarettes,/turf/simulated/floor/tiled/techfloor,/area/maintenance/asmaint2) +"aIK" = (/obj/structure/railing{dir = 8},/obj/effect/floor_decal/techfloor{tag = "icon-techfloor_edges (EAST)"; icon_state = "techfloor_edges"; dir = 4},/obj/structure/railing,/obj/effect/decal/cleanable/dirt,/obj/effect/floor_decal/rust,/turf/simulated/floor/tiled/techfloor,/area/maintenance/asmaint2) +"aIL" = (/obj/effect/decal/cleanable/dirt,/obj/effect/floor_decal/rust,/turf/simulated/floor/tiled/techfloor,/area/maintenance/lower/rnd) +"aIM" = (/obj/effect/floor_decal/rust,/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/tiled/techfloor,/area/maintenance/lower/rnd) +"aIN" = (/obj/machinery/power/sensor{name = "Powernet Sensor - Research Subgrid"; name_tag = "Research Subgrid"},/obj/effect/floor_decal/industrial/warning{dir = 1},/obj/structure/cable/green,/obj/structure/cable/green{icon_state = "0-4"},/turf/simulated/floor,/area/maintenance/research) +"aIO" = (/obj/effect/floor_decal/industrial/warning/corner{dir = 1},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/camera/network/engineering{c_tag = "ENG - Pump Station"; dir = 1},/turf/simulated/floor,/area/maintenance/research) +"aIP" = (/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,/area/maintenance/research) +"aIQ" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0},/obj/machinery/door/airlock/engineering{name = "Science Substation"; req_one_access = list(11,24,47)},/obj/machinery/door/firedoor,/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor,/area/maintenance/research) +"aIR" = (/obj/effect/decal/cleanable/dirt,/obj/machinery/atmospherics/pipe/manifold/visible/supply{dir = 8},/obj/machinery/atmospherics/pipe/manifold/visible/scrubbers{dir = 8},/obj/structure/cable/green{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/structure/disposalpipe/segment{dir = 4; icon_state = "pipe-c"},/turf/simulated/floor/plating,/area/maintenance/lower/rnd) +"aIS" = (/obj/machinery/door/airlock/maintenance/engi,/obj/machinery/atmospherics/pipe/simple/visible/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/visible/scrubbers{dir = 4},/obj/machinery/door/firedoor/glass,/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/plating,/area/maintenance/lower/rnd) +"aIT" = (/obj/machinery/atmospherics/pipe/simple/visible/supply{dir = 10},/obj/machinery/atmospherics/pipe/simple/visible/scrubbers{dir = 10},/obj/structure/cable{tag = "icon-1-2"; icon_state = "1-2"},/obj/structure/disposalpipe/junction,/turf/simulated/floor/plating,/area/maintenance/lower/rnd) +"aIU" = (/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 1},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 6},/turf/simulated/floor/tiled/techmaint,/area/tether/surfacebase/atrium_two) +"aIV" = (/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,/obj/machinery/atmospherics/pipe/manifold4w/hidden/supply,/turf/simulated/floor/tiled/techmaint,/area/tether/surfacebase/atrium_two) +"aIW" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/disposalpipe/segment{dir = 4; icon_state = "pipe-c"},/turf/simulated/floor/tiled/techmaint,/area/tether/surfacebase/atrium_two) +"aIX" = (/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/techmaint,/area/tether/surfacebase/atrium_two) +"aIY" = (/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 1},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 1},/obj/structure/cable{icon_state = "2-4"},/obj/structure/disposalpipe/junction{icon_state = "pipe-j1"; dir = 4},/turf/simulated/floor/tiled/techmaint,/area/tether/surfacebase/atrium_two) +"aIZ" = (/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{tag = "icon-4-8"; icon_state = "4-8"},/turf/simulated/floor/tiled/techmaint,/area/tether/surfacebase/atrium_two) +"aJa" = (/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{tag = "icon-4-8"; icon_state = "4-8"},/turf/simulated/floor/tiled/techmaint,/area/tether/surfacebase/atrium_two) +"aJb" = (/obj/machinery/door/airlock/multi_tile/metal/mait{dir = 1},/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/structure/cable{tag = "icon-4-8"; icon_state = "4-8"},/turf/simulated/floor/tiled/techfloor/grid,/area/tether/surfacebase/atrium_two) +"aJc" = (/obj/structure/catwalk,/obj/machinery/atmospherics/pipe/simple/visible/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/visible/supply{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{tag = "icon-4-8"; icon_state = "4-8"},/turf/simulated/floor/tiled/techfloor,/area/maintenance/lower/bar) +"aJd" = (/obj/structure/catwalk,/obj/machinery/atmospherics/pipe/simple/visible/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/visible/supply{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{tag = "icon-4-8"; icon_state = "4-8"},/obj/machinery/camera/network/northern_star{tag = "icon-camera (NORTH)"; icon_state = "camera"; dir = 1},/turf/simulated/floor/tiled/techfloor,/area/maintenance/lower/bar) +"aJe" = (/obj/machinery/door/airlock/multi_tile/metal/mait{dir = 1},/obj/machinery/atmospherics/pipe/simple/visible/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/visible/supply{dir = 4},/obj/machinery/door/firedoor/glass,/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{tag = "icon-4-8"; icon_state = "4-8"},/turf/simulated/floor/tiled/techfloor/grid,/area/maintenance/lower/bar) +"aJf" = (/obj/structure/catwalk,/obj/machinery/atmospherics/pipe/manifold/visible/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/manifold/visible/supply{dir = 4},/obj/structure/cable{tag = "icon-1-2"; icon_state = "1-2"},/obj/structure/disposalpipe/segment{dir = 8; icon_state = "pipe-c"},/obj/structure/cable{tag = "icon-2-8"; icon_state = "2-8"},/turf/simulated/floor/tiled/techfloor,/area/maintenance/lower/bar) +"aJg" = (/obj/structure/catwalk,/obj/effect/decal/cleanable/dirt,/obj/effect/floor_decal/rust,/turf/simulated/floor/tiled/techfloor,/area/maintenance/asmaint2) +"aJh" = (/obj/effect/floor_decal/techfloor{tag = "icon-techfloor_edges (EAST)"; icon_state = "techfloor_edges"; dir = 4},/obj/structure/catwalk,/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/tiled/techfloor,/area/maintenance/asmaint2) +"aJi" = (/obj/machinery/door/airlock/maintenance/common,/obj/machinery/door/firedoor/glass,/turf/simulated/floor/tiled/techfloor,/area/maintenance/lower/rnd) +"aJj" = (/turf/simulated/wall,/area/rnd/lockers) +"aJk" = (/turf/simulated/wall,/area/rnd/research) +"aJl" = (/obj/machinery/door/airlock/maintenance/rnd{req_access = list(7)},/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/structure/disposalpipe/segment,/turf/simulated/floor/plating,/area/rnd/research) +"aJm" = (/turf/simulated/wall/r_wall,/area/rnd/research) +"aJn" = (/obj/machinery/atmospherics/pipe/simple/visible/supply,/obj/machinery/atmospherics/pipe/simple/visible/scrubbers,/obj/structure/cable{tag = "icon-1-2"; icon_state = "1-2"},/obj/structure/disposalpipe/segment,/mob/living/simple_animal/mouse,/turf/simulated/floor/plating,/area/maintenance/lower/rnd) +"aJo" = (/obj/effect/floor_decal/borderfloor/corner,/turf/simulated/floor/tiled/techmaint,/area/tether/surfacebase/atrium_two) +"aJp" = (/obj/machinery/light/small,/obj/effect/floor_decal/borderfloor,/turf/simulated/floor/tiled/techmaint,/area/tether/surfacebase/atrium_two) +"aJq" = (/obj/effect/floor_decal/borderfloor,/turf/simulated/floor/tiled/techmaint,/area/tether/surfacebase/atrium_two) +"aJr" = (/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/borderfloor/corner2{tag = "icon-borderfloorcorner2 (NORTHWEST)"; icon_state = "borderfloorcorner2"; dir = 9},/turf/simulated/floor/tiled/techmaint,/area/tether/surfacebase/atrium_two) +"aJs" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/tiled/techmaint,/area/tether/surfacebase/atrium_two) +"aJt" = (/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/borderfloor/corner2,/turf/simulated/floor/tiled/techmaint,/area/tether/surfacebase/atrium_two) +"aJu" = (/obj/effect/floor_decal/borderfloor,/obj/machinery/camera/network/northern_star{tag = "icon-camera (NORTH)"; icon_state = "camera"; dir = 1},/turf/simulated/floor/tiled/techmaint,/area/tether/surfacebase/atrium_two) +"aJv" = (/obj/effect/floor_decal/borderfloor,/obj/machinery/newscaster{pixel_x = 0; pixel_y = -30},/turf/simulated/floor/tiled/techmaint,/area/tether/surfacebase/atrium_two) +"aJw" = (/obj/effect/floor_decal/borderfloor,/obj/item/device/radio/intercom{name = "Station Intercom (General)"; pixel_y = -21},/turf/simulated/floor/tiled/techmaint,/area/tether/surfacebase/atrium_two) +"aJx" = (/obj/machinery/light/small,/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/borderfloor/corner2{tag = "icon-borderfloorcorner2 (NORTHWEST)"; icon_state = "borderfloorcorner2"; dir = 9},/turf/simulated/floor/tiled/techmaint,/area/tether/surfacebase/atrium_two) +"aJy" = (/obj/effect/floor_decal/industrial/warning/corner,/turf/simulated/floor/tiled/techmaint,/area/tether/surfacebase/atrium_two) +"aJz" = (/obj/effect/floor_decal/industrial/warning,/turf/simulated/floor/tiled/techmaint,/area/tether/surfacebase/atrium_two) +"aJA" = (/obj/effect/floor_decal/industrial/warning/corner{dir = 8},/turf/simulated/floor/tiled/techmaint,/area/tether/surfacebase/atrium_two) +"aJB" = (/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/borderfloor/corner2,/obj/machinery/camera/network/northern_star{tag = "icon-camera (NORTH)"; icon_state = "camera"; dir = 1},/turf/simulated/floor/tiled/techmaint,/area/tether/surfacebase/atrium_two) +"aJC" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0},/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled/techmaint,/area/tether/surfacebase/atrium_two) +"aJD" = (/obj/effect/floor_decal/borderfloor,/obj/machinery/light/small,/obj/effect/floor_decal/borderfloor/corner2,/turf/simulated/floor/tiled/techmaint,/area/tether/surfacebase/atrium_two) +"aJE" = (/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (SOUTHEAST)"; icon_state = "borderfloor"; dir = 6},/obj/effect/floor_decal/borderfloor/corner2{tag = "icon-borderfloorcorner2 (SOUTHEAST)"; icon_state = "borderfloorcorner2"; dir = 6},/obj/item/device/radio/intercom{dir = 4; name = "Station Intercom (General)"; pixel_x = 21},/turf/simulated/floor/tiled/techmaint,/area/tether/surfacebase/atrium_two) +"aJF" = (/obj/structure/catwalk,/obj/structure/cable{tag = "icon-1-2"; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/visible/scrubbers,/obj/machinery/atmospherics/pipe/simple/visible/supply,/turf/simulated/floor/tiled/techfloor,/area/maintenance/lower/bar) +"aJG" = (/obj/structure/railing{dir = 8},/obj/effect/floor_decal/techfloor{tag = "icon-techfloor_edges (EAST)"; icon_state = "techfloor_edges"; dir = 4},/obj/structure/railing{dir = 1},/obj/effect/decal/cleanable/dirt,/obj/effect/floor_decal/rust,/turf/simulated/floor/tiled/techfloor,/area/maintenance/asmaint2) +"aJH" = (/turf/simulated/wall,/area/rnd/workshop) +"aJI" = (/obj/machinery/autolathe{hacked = 1},/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (NORTHWEST)"; icon_state = "borderfloor"; dir = 9},/obj/effect/floor_decal/corner/mauve/border{tag = "icon-bordercolor (NORTHWEST)"; icon_state = "bordercolor"; dir = 9},/turf/simulated/floor/tiled,/area/rnd/research) +"aJJ" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (NORTHEAST)"; icon_state = "borderfloor"; dir = 5},/obj/effect/floor_decal/corner/mauve/border{tag = "icon-bordercolor (NORTHEAST)"; icon_state = "bordercolor"; dir = 5},/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled,/area/rnd/research) +"aJK" = (/obj/machinery/atmospherics/pipe/simple/visible/supply,/obj/machinery/atmospherics/pipe/simple/visible/scrubbers,/obj/structure/cable{tag = "icon-1-2"; icon_state = "1-2"},/obj/structure/disposalpipe/segment,/turf/simulated/floor/plating,/area/maintenance/lower/rnd) +"aJL" = (/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (SOUTHEAST)"; icon_state = "borderfloor"; dir = 6},/obj/machinery/newscaster{pixel_x = 0; pixel_y = -30},/turf/simulated/floor/tiled/techmaint,/area/tether/surfacebase/atrium_two) +"aJM" = (/turf/simulated/wall,/area/engineering/lower/lobby) +"aJN" = (/obj/machinery/door/airlock/glass,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/door/firedoor/glass,/turf/simulated/floor/tiled,/area/engineering/lower/lobby) +"aJO" = (/obj/structure/grille,/obj/structure/window/reinforced{dir = 5; icon_state = "fwindow"},/obj/machinery/door/firedoor,/turf/simulated/floor/plating,/area/engineering/lower/lobby) +"aJP" = (/obj/machinery/door/airlock/glass,/obj/machinery/door/firedoor/glass,/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled,/area/engineering/lower/lobby) +"aJQ" = (/turf/simulated/wall,/area/engineering/lower/breakroom) +"aJR" = (/obj/structure/grille,/obj/structure/railing{dir = 1},/turf/simulated/floor/tiled/techmaint,/area/tether/surfacebase/atrium_two) +"aJS" = (/turf/simulated/wall,/area/janitor) +"aJT" = (/obj/machinery/door/firedoor/border_only,/obj/machinery/door/airlock{name = "Custodial Closet"; req_access = list(26)},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0},/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled,/area/janitor) +"aJU" = (/obj/structure/table/reinforced,/obj/machinery/door/window/eastleft{tag = "icon-left"; name = "Janitorial Desk"; icon_state = "left"; dir = 2},/obj/machinery/door/window/eastleft{tag = "icon-left (NORTH)"; name = "Janitorial Desk"; icon_state = "left"; dir = 1},/obj/machinery/door/blast/shutters{dir = 2; id = "janitor_blast"; layer = 3.3; name = "Janitorial Shutters"},/turf/simulated/floor/tiled,/area/janitor) +"aJV" = (/obj/effect/floor_decal/corner_techfloor_grid{tag = "icon-corner_techfloor_grid (NORTHWEST)"; icon_state = "corner_techfloor_grid"; dir = 9},/obj/effect/floor_decal/corner_techfloor_grid{tag = "icon-corner_techfloor_grid (NORTHEAST)"; icon_state = "corner_techfloor_grid"; dir = 5},/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/tiled/techfloor,/area/maintenance/lower/bar) +"aJW" = (/obj/effect/floor_decal/rust,/obj/structure/railing{dir = 4},/obj/effect/floor_decal/corner_techfloor_grid{tag = "icon-corner_techfloor_grid (NORTHEAST)"; icon_state = "corner_techfloor_grid"; dir = 5},/turf/simulated/floor/tiled/techfloor,/area/maintenance/lower/bar) +"aJX" = (/obj/effect/floor_decal/rust,/obj/structure/catwalk,/obj/structure/closet/crate,/obj/random/maintenance/research,/obj/random/maintenance/clean,/obj/random/maintenance/clean,/obj/item/clothing/mask/gas,/obj/random/toolbox,/obj/random/maintenance/medical,/turf/simulated/floor/tiled/techfloor,/area/maintenance/lower/bar) +"aJY" = (/obj/structure/railing{dir = 4},/obj/effect/floor_decal/techfloor{tag = "icon-techfloor_edges (WEST)"; icon_state = "techfloor_edges"; dir = 8},/obj/effect/decal/cleanable/dirt,/obj/machinery/atmospherics/pipe/simple/visible/purple{tag = "icon-intact (NORTH)"; icon_state = "intact"; dir = 1},/obj/random/junk,/turf/simulated/floor/tiled/techfloor,/area/maintenance/asmaint2) +"aJZ" = (/obj/effect/floor_decal/techfloor{tag = "icon-techfloor_edges (NORTHWEST)"; icon_state = "techfloor_edges"; dir = 9},/obj/structure/table/steel,/obj/item/weapon/storage/bag/circuits/basic,/turf/simulated/floor/tiled/techfloor,/area/rnd/workshop) +"aKa" = (/obj/effect/floor_decal/techfloor{tag = "icon-techfloor_edges (NORTH)"; icon_state = "techfloor_edges"; dir = 1},/obj/structure/table/steel,/obj/machinery/camera/network/research,/turf/simulated/floor/tiled/techfloor,/area/rnd/workshop) +"aKb" = (/obj/effect/floor_decal/techfloor{tag = "icon-techfloor_edges (NORTHEAST)"; icon_state = "techfloor_edges"; dir = 5},/obj/structure/table/steel,/obj/item/stack/material/glass{amount = 50; pixel_x = 3; pixel_y = 3},/turf/simulated/floor/tiled/techfloor,/area/rnd/workshop) +"aKc" = (/obj/structure/closet/secure_closet/scientist,/obj/effect/floor_decal/industrial/outline,/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (NORTHWEST)"; icon_state = "borderfloor"; dir = 9},/obj/effect/floor_decal/corner/mauve/border{tag = "icon-bordercolor (NORTHWEST)"; icon_state = "bordercolor"; dir = 9},/turf/simulated/floor/tiled,/area/rnd/lockers) +"aKd" = (/obj/structure/closet/secure_closet/scientist,/obj/effect/floor_decal/industrial/outline,/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (NORTH)"; icon_state = "borderfloor"; dir = 1},/obj/effect/floor_decal/corner/mauve/border{tag = "icon-bordercolor (NORTH)"; icon_state = "bordercolor"; dir = 1},/obj/structure/extinguisher_cabinet{pixel_y = 30},/turf/simulated/floor/tiled,/area/rnd/lockers) +"aKe" = (/obj/structure/closet/secure_closet/scientist,/obj/effect/floor_decal/industrial/outline,/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (NORTH)"; icon_state = "borderfloor"; dir = 1},/obj/effect/floor_decal/corner/mauve/border{tag = "icon-bordercolor (NORTH)"; icon_state = "bordercolor"; dir = 1},/turf/simulated/floor/tiled,/area/rnd/lockers) +"aKf" = (/obj/structure/table/standard,/obj/machinery/recharger{pixel_y = 0},/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (NORTH)"; icon_state = "borderfloor"; dir = 1},/obj/effect/floor_decal/corner/mauve/border{tag = "icon-bordercolor (NORTH)"; icon_state = "bordercolor"; dir = 1},/obj/machinery/atmospherics/unary/vent_scrubber/on,/obj/machinery/status_display{pixel_y = 30},/turf/simulated/floor/tiled,/area/rnd/lockers) +"aKg" = (/obj/structure/table/standard,/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (NORTH)"; icon_state = "borderfloor"; dir = 1},/obj/effect/floor_decal/corner/mauve/border{tag = "icon-bordercolor (NORTH)"; icon_state = "bordercolor"; dir = 1},/obj/machinery/atmospherics/unary/vent_pump/on,/obj/machinery/firealarm{dir = 2; layer = 3.3; pixel_x = 0; pixel_y = 26},/turf/simulated/floor/tiled,/area/rnd/lockers) +"aKh" = (/obj/structure/closet/secure_closet/scientist,/obj/effect/floor_decal/industrial/outline,/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (NORTH)"; icon_state = "borderfloor"; dir = 1},/obj/effect/floor_decal/corner/mauve/border{tag = "icon-bordercolor (NORTH)"; icon_state = "bordercolor"; dir = 1},/obj/machinery/camera/network/research,/turf/simulated/floor/tiled,/area/rnd/lockers) +"aKi" = (/obj/structure/closet/secure_closet/scientist,/obj/effect/floor_decal/industrial/outline,/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (NORTHEAST)"; icon_state = "borderfloor"; dir = 5},/obj/effect/floor_decal/corner/mauve/border{tag = "icon-bordercolor (NORTHEAST)"; icon_state = "bordercolor"; dir = 5},/turf/simulated/floor/tiled,/area/rnd/lockers) +"aKj" = (/obj/structure/table/standard,/obj/item/weapon/storage/belt/utility,/obj/item/clothing/gloves/sterile/latex,/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (WEST)"; icon_state = "borderfloor"; dir = 8},/obj/effect/floor_decal/corner/mauve/border{tag = "icon-bordercolor (WEST)"; icon_state = "bordercolor"; dir = 8},/turf/simulated/floor/tiled,/area/rnd/research) +"aKk" = (/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (EAST)"; icon_state = "borderfloor"; dir = 4},/obj/effect/floor_decal/corner/mauve/border{tag = "icon-bordercolor (EAST)"; icon_state = "bordercolor"; dir = 4},/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"},/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled,/area/rnd/research) +"aKl" = (/obj/machinery/atmospherics/pipe/simple/visible/supply{dir = 5},/obj/machinery/atmospherics/pipe/simple/visible/scrubbers{dir = 5},/obj/structure/cable{tag = "icon-1-4"; icon_state = "1-4"},/obj/structure/disposalpipe/segment{dir = 1; icon_state = "pipe-c"},/turf/simulated/floor/plating,/area/maintenance/lower/rnd) +"aKm" = (/obj/machinery/atmospherics/pipe/simple/visible/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/visible/scrubbers{dir = 4},/obj/structure/cable{tag = "icon-4-8"; icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/plating,/area/maintenance/lower/rnd) +"aKn" = (/obj/machinery/atmospherics/pipe/simple/visible/supply{dir = 10},/obj/machinery/atmospherics/pipe/simple/visible/scrubbers{dir = 10},/obj/structure/cable{tag = "icon-2-8"; icon_state = "2-8"},/obj/structure/disposalpipe/segment{dir = 2; icon_state = "pipe-c"},/turf/simulated/floor/plating,/area/maintenance/lower/rnd) +"aKo" = (/turf/simulated/floor/plating,/area/tether/surfacebase/atrium_two) +"aKp" = (/obj/machinery/atmospherics/portables_connector{dir = 4},/obj/effect/floor_decal/industrial/outline,/obj/machinery/portable_atmospherics/powered/scrubber,/obj/structure/extinguisher_cabinet{pixel_y = 30},/turf/simulated/floor/tiled/techfloor,/area/engineering/lower/lobby) +"aKq" = (/obj/machinery/atmospherics/pipe/simple/hidden/yellow{dir = 10},/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (NORTH)"; icon_state = "borderfloor"; dir = 1},/obj/effect/floor_decal/corner/yellow/border{tag = "icon-bordercolor (NORTH)"; icon_state = "bordercolor"; dir = 1},/obj/effect/floor_decal/borderfloor/corner2{tag = "icon-borderfloorcorner2 (NORTH)"; icon_state = "borderfloorcorner2"; dir = 1},/obj/effect/floor_decal/corner/yellow/bordercorner2{tag = "icon-bordercolorcorner2 (NORTH)"; icon_state = "bordercolorcorner2"; dir = 1},/obj/machinery/firealarm{dir = 2; layer = 3.3; pixel_x = 0; pixel_y = 26},/turf/simulated/floor/tiled,/area/engineering/lower/lobby) +"aKr" = (/obj/effect/floor_decal/steeldecal/steel_decals10{tag = "icon-steel_decals10 (NORTH)"; icon_state = "steel_decals10"; dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals10{tag = "icon-steel_decals10 (EAST)"; icon_state = "steel_decals10"; dir = 4},/obj/effect/decal/cleanable/dirt,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/tiled,/area/engineering/lower/lobby) +"aKs" = (/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (NORTH)"; icon_state = "borderfloor"; dir = 1},/obj/effect/floor_decal/corner/yellow/border{tag = "icon-bordercolor (NORTH)"; icon_state = "bordercolor"; dir = 1},/obj/effect/floor_decal/borderfloor/corner2{tag = "icon-borderfloorcorner2 (EAST)"; icon_state = "borderfloorcorner2"; dir = 4},/obj/effect/floor_decal/borderfloor/corner2{tag = "icon-borderfloorcorner2 (NORTH)"; icon_state = "borderfloorcorner2"; dir = 1},/obj/effect/floor_decal/corner/yellow/bordercorner2{tag = "icon-bordercolorcorner2 (EAST)"; icon_state = "bordercolorcorner2"; dir = 4},/obj/effect/floor_decal/corner/yellow/bordercorner2{tag = "icon-bordercolorcorner2 (NORTH)"; icon_state = "bordercolorcorner2"; dir = 1},/turf/simulated/floor/tiled,/area/engineering/lower/lobby) +"aKt" = (/obj/effect/floor_decal/steeldecal/steel_decals10{tag = "icon-steel_decals10 (EAST)"; icon_state = "steel_decals10"; dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals10{tag = "icon-steel_decals10 (NORTH)"; icon_state = "steel_decals10"; dir = 1},/obj/effect/decal/cleanable/dirt,/obj/structure/disposalpipe/sortjunction{dir = 1; icon_state = "pipe-j1s"; name = "Atmospherics"; sortType = "Atmospherics"},/turf/simulated/floor/tiled,/area/engineering/lower/lobby) +"aKu" = (/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (NORTH)"; icon_state = "borderfloor"; dir = 1},/obj/effect/floor_decal/corner/yellow/border{tag = "icon-bordercolor (NORTH)"; icon_state = "bordercolor"; dir = 1},/obj/effect/floor_decal/borderfloor/corner2{tag = "icon-borderfloorcorner2 (EAST)"; icon_state = "borderfloorcorner2"; dir = 4},/obj/effect/floor_decal/corner/yellow/bordercorner2{tag = "icon-bordercolorcorner2 (EAST)"; icon_state = "bordercolorcorner2"; dir = 4},/obj/machinery/alarm{frequency = 1441; pixel_y = 22},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled,/area/engineering/lower/lobby) +"aKv" = (/obj/structure/bed/chair{dir = 8},/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (NORTHEAST)"; icon_state = "borderfloor"; dir = 5},/obj/effect/floor_decal/corner/yellow/border{tag = "icon-bordercolor (NORTHEAST)"; icon_state = "bordercolor"; dir = 5},/obj/machinery/computer/guestpass{pixel_x = 0; pixel_y = 28},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled,/area/engineering/lower/lobby) +"aKw" = (/obj/structure/grille,/obj/structure/window/reinforced{dir = 5; icon_state = "fwindow"},/obj/machinery/door/firedoor,/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/plating,/area/engineering/lower/breakroom) +"aKx" = (/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (NORTHWEST)"; icon_state = "borderfloor"; dir = 9},/obj/effect/floor_decal/corner/yellow/border{tag = "icon-bordercolor (NORTHWEST)"; icon_state = "bordercolor"; dir = 9},/obj/item/device/radio/intercom{dir = 1; name = "Station Intercom (General)"; pixel_y = 21},/obj/machinery/disposal,/obj/structure/disposalpipe/trunk{dir = 8},/turf/simulated/floor/tiled,/area/engineering/lower/breakroom) +"aKy" = (/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (NORTH)"; icon_state = "borderfloor"; dir = 1},/obj/effect/floor_decal/corner/yellow/border{tag = "icon-bordercolor (NORTH)"; icon_state = "bordercolor"; dir = 1},/obj/machinery/alarm{frequency = 1441; pixel_y = 22},/turf/simulated/floor/tiled,/area/engineering/lower/breakroom) +"aKz" = (/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (NORTH)"; icon_state = "borderfloor"; dir = 1},/obj/effect/floor_decal/corner/yellow/border{tag = "icon-bordercolor (NORTH)"; icon_state = "bordercolor"; dir = 1},/obj/machinery/light_switch{pixel_y = 25},/turf/simulated/floor/tiled,/area/engineering/lower/breakroom) +"aKA" = (/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (NORTH)"; icon_state = "borderfloor"; dir = 1},/obj/effect/floor_decal/corner/yellow/border{tag = "icon-bordercolor (NORTH)"; icon_state = "bordercolor"; dir = 1},/obj/machinery/firealarm{dir = 2; layer = 3.3; pixel_x = 0; pixel_y = 26},/turf/simulated/floor/tiled,/area/engineering/lower/breakroom) +"aKB" = (/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (NORTH)"; icon_state = "borderfloor"; dir = 1},/obj/effect/floor_decal/corner/yellow/border{tag = "icon-bordercolor (NORTH)"; icon_state = "bordercolor"; dir = 1},/obj/machinery/camera/network/engineering,/turf/simulated/floor/tiled,/area/engineering/lower/breakroom) +"aKC" = (/obj/machinery/vending/snack,/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (NORTHEAST)"; icon_state = "borderfloor"; dir = 5},/obj/effect/floor_decal/corner/yellow/border{tag = "icon-bordercolor (NORTHEAST)"; icon_state = "bordercolor"; dir = 5},/turf/simulated/floor/tiled,/area/engineering/lower/breakroom) +"aKD" = (/obj/item/weapon/grenade/chem_grenade/cleaner,/obj/item/weapon/grenade/chem_grenade/cleaner,/obj/item/weapon/grenade/chem_grenade/cleaner,/obj/machinery/requests_console{department = "Janitorial"; departmentType = 1; pixel_y = 28},/obj/item/weapon/reagent_containers/spray/cleaner,/obj/structure/table/steel,/obj/item/weapon/storage/box/mousetraps,/obj/item/weapon/storage/box/lights/mixed,/obj/item/weapon/storage/box/lights/mixed,/obj/item/weapon/reagent_containers/spray/cleaner,/obj/machinery/atmospherics/unary/vent_pump/on{dir = 4},/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (NORTHWEST)"; icon_state = "borderfloor"; dir = 9},/obj/effect/floor_decal/corner/purple/border{tag = "icon-bordercolor (NORTHWEST)"; icon_state = "bordercolor"; dir = 9},/turf/simulated/floor/tiled,/area/janitor) +"aKE" = (/obj/structure/table/steel,/obj/item/weapon/paper_bin{pixel_x = -3; pixel_y = 7},/obj/item/weapon/pen,/obj/machinery/newscaster{pixel_y = 32},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (NORTH)"; icon_state = "borderfloor"; dir = 1},/obj/effect/floor_decal/corner/purple/border{tag = "icon-bordercolor (NORTH)"; icon_state = "bordercolor"; dir = 1},/turf/simulated/floor/tiled,/area/janitor) +"aKF" = (/obj/machinery/power/apc{dir = 1; name = "north bump"; pixel_x = 0; pixel_y = 24},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/cable{icon_state = "0-4"; d2 = 4},/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (NORTH)"; icon_state = "borderfloor"; dir = 1},/obj/effect/floor_decal/corner/purple/border{tag = "icon-bordercolor (NORTH)"; icon_state = "bordercolor"; dir = 1},/turf/simulated/floor/tiled,/area/janitor) +"aKG" = (/obj/machinery/status_display{pixel_x = 0; pixel_y = 32},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (NORTH)"; icon_state = "borderfloor"; dir = 1},/obj/effect/floor_decal/corner/purple/border{tag = "icon-bordercolor (NORTH)"; icon_state = "bordercolor"; dir = 1},/obj/effect/floor_decal/borderfloor/corner2{tag = "icon-borderfloorcorner2 (NORTH)"; icon_state = "borderfloorcorner2"; dir = 1},/obj/effect/floor_decal/corner/purple/bordercorner2{tag = "icon-bordercolorcorner2 (NORTH)"; icon_state = "bordercolorcorner2"; dir = 1},/turf/simulated/floor/tiled,/area/janitor) +"aKH" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 9},/obj/structure/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled,/area/janitor) +"aKI" = (/obj/machinery/alarm{pixel_y = 22},/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (NORTH)"; icon_state = "borderfloor"; dir = 1},/obj/effect/floor_decal/corner/purple/border{tag = "icon-bordercolor (NORTH)"; icon_state = "bordercolor"; dir = 1},/obj/effect/floor_decal/borderfloor/corner2{tag = "icon-borderfloorcorner2 (EAST)"; icon_state = "borderfloorcorner2"; dir = 4},/obj/effect/floor_decal/corner/purple/bordercorner2{tag = "icon-bordercolorcorner2 (EAST)"; icon_state = "bordercolorcorner2"; dir = 4},/turf/simulated/floor/tiled,/area/janitor) +"aKJ" = (/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (NORTH)"; icon_state = "borderfloor"; dir = 1},/obj/effect/floor_decal/corner/purple/border{tag = "icon-bordercolor (NORTH)"; icon_state = "bordercolor"; dir = 1},/turf/simulated/floor/tiled,/area/janitor) +"aKK" = (/obj/structure/extinguisher_cabinet{pixel_x = 25; pixel_y = 0},/obj/machinery/light_switch{pixel_x = 34; pixel_y = 1},/obj/machinery/button/remote/blast_door{id = "janitor_blast"; name = "Privacy Shutters"; pixel_x = 0; pixel_y = 24; pixel_z = 0},/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (NORTHEAST)"; icon_state = "borderfloor"; dir = 5},/obj/effect/floor_decal/corner/purple/border{tag = "icon-bordercolor (NORTHEAST)"; icon_state = "bordercolor"; dir = 5},/turf/simulated/floor/tiled,/area/janitor) +"aKL" = (/obj/effect/floor_decal/corner_techfloor_grid{tag = "icon-corner_techfloor_grid (NORTHWEST)"; icon_state = "corner_techfloor_grid"; dir = 9},/obj/effect/decal/cleanable/dirt,/obj/machinery/portable_atmospherics/hydroponics,/turf/simulated/floor/tiled/techfloor,/area/maintenance/lower/bar) +"aKM" = (/obj/structure/railing{dir = 4},/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/tiled/techfloor,/area/maintenance/lower/bar) +"aKN" = (/obj/machinery/door/airlock/maintenance/common,/turf/simulated/floor,/area/maintenance/lower/bar) +"aKO" = (/obj/effect/floor_decal/techfloor{tag = "icon-techfloor_edges (WEST)"; icon_state = "techfloor_edges"; dir = 8},/obj/effect/floor_decal/rust,/turf/simulated/floor/tiled/techfloor,/area/maintenance/asmaint2) +"aKP" = (/obj/structure/catwalk,/obj/effect/decal/cleanable/dirt,/obj/random/tool,/turf/simulated/floor/tiled/techfloor,/area/maintenance/asmaint2) +"aKQ" = (/obj/effect/floor_decal/techfloor{tag = "icon-techfloor_edges (WEST)"; icon_state = "techfloor_edges"; dir = 8},/obj/structure/table/steel,/obj/item/device/integrated_electronics/wirer{pixel_x = 5; pixel_y = 0},/obj/item/device/integrated_electronics/debugger{pixel_x = -5; pixel_y = 0},/obj/machinery/newscaster{pixel_x = -25},/turf/simulated/floor/tiled/techfloor,/area/rnd/workshop) +"aKR" = (/obj/structure/bed/chair/office/dark{dir = 1},/turf/simulated/floor/tiled/techfloor,/area/rnd/workshop) +"aKS" = (/obj/effect/floor_decal/techfloor{tag = "icon-techfloor_edges (EAST)"; icon_state = "techfloor_edges"; dir = 4},/obj/structure/table/steel,/obj/item/device/electronic_assembly/large{pixel_y = 6},/turf/simulated/floor/tiled/techfloor,/area/rnd/workshop) +"aKT" = (/obj/machinery/light{icon_state = "tube1"; dir = 8},/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (WEST)"; icon_state = "borderfloor"; dir = 8},/obj/effect/floor_decal/corner/mauve/border{tag = "icon-bordercolor (WEST)"; icon_state = "bordercolor"; dir = 8},/obj/machinery/computer/guestpass{dir = 4; pixel_x = -28; pixel_y = 0},/turf/simulated/floor/tiled,/area/rnd/lockers) +"aKU" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 6},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 6},/turf/simulated/floor/tiled,/area/rnd/lockers) +"aKV" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled,/area/rnd/lockers) +"aKW" = (/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled,/area/rnd/lockers) +"aKX" = (/obj/machinery/atmospherics/pipe/manifold/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/turf/simulated/floor/tiled,/area/rnd/lockers) +"aKY" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 10},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 10},/turf/simulated/floor/tiled,/area/rnd/lockers) +"aKZ" = (/obj/machinery/light{icon_state = "tube1"; dir = 4},/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (EAST)"; icon_state = "borderfloor"; dir = 4},/obj/effect/floor_decal/corner/mauve/border{tag = "icon-bordercolor (EAST)"; icon_state = "bordercolor"; dir = 4},/turf/simulated/floor/tiled,/area/rnd/lockers) +"aLa" = (/obj/structure/table/standard,/obj/item/weapon/stock_parts/manipulator,/obj/item/weapon/stock_parts/capacitor,/obj/item/weapon/stock_parts/capacitor,/obj/item/weapon/stock_parts/manipulator,/obj/item/weapon/stock_parts/micro_laser,/obj/item/weapon/stock_parts/micro_laser,/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (WEST)"; icon_state = "borderfloor"; dir = 8},/obj/effect/floor_decal/corner/mauve/border{tag = "icon-bordercolor (WEST)"; icon_state = "bordercolor"; dir = 8},/turf/simulated/floor/tiled,/area/rnd/research) +"aLb" = (/obj/machinery/atmospherics/pipe/simple/visible/scrubbers,/obj/machinery/atmospherics/pipe/simple/visible/supply,/obj/structure/cable{tag = "icon-1-2"; icon_state = "1-2"},/obj/structure/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/structure/disposalpipe/segment,/obj/effect/floor_decal/industrial/warning/corner,/turf/simulated/floor/plating,/area/maintenance/lower/rnd) +"aLc" = (/obj/structure/cable{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/effect/floor_decal/industrial/warning,/turf/simulated/floor/plating,/area/maintenance/lower/rnd) +"aLd" = (/obj/machinery/atmospherics/portables_connector{dir = 4},/obj/effect/floor_decal/industrial/outline,/obj/machinery/portable_atmospherics/powered/scrubber,/turf/simulated/floor/tiled/techfloor,/area/engineering/lower/lobby) +"aLe" = (/obj/machinery/atmospherics/pipe/manifold/hidden/yellow{tag = "icon-map (EAST)"; icon_state = "map"; dir = 4},/turf/simulated/floor/tiled,/area/engineering/lower/lobby) +"aLf" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 8},/turf/simulated/floor/tiled,/area/engineering/lower/lobby) +"aLg" = (/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 8},/turf/simulated/floor/tiled,/area/engineering/lower/lobby) +"aLh" = (/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled,/area/engineering/lower/lobby) +"aLi" = (/turf/simulated/floor/tiled,/area/engineering/lower/lobby) +"aLj" = (/obj/structure/bed/chair{dir = 8},/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (EAST)"; icon_state = "borderfloor"; dir = 4},/obj/effect/floor_decal/corner/yellow/border{tag = "icon-bordercolor (EAST)"; icon_state = "bordercolor"; dir = 4},/turf/simulated/floor/tiled,/area/engineering/lower/lobby) +"aLk" = (/obj/structure/grille,/obj/structure/window/reinforced{dir = 5; icon_state = "fwindow"},/obj/machinery/door/firedoor,/turf/simulated/floor/plating,/area/engineering/lower/breakroom) +"aLl" = (/turf/simulated/floor/carpet,/area/engineering/lower/breakroom) +"aLm" = (/obj/structure/bed/chair,/turf/simulated/floor/carpet,/area/engineering/lower/breakroom) +"aLn" = (/turf/simulated/floor/tiled,/area/engineering/lower/breakroom) +"aLo" = (/obj/machinery/vending/cola,/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (EAST)"; icon_state = "borderfloor"; dir = 4},/obj/effect/floor_decal/corner/yellow/border{tag = "icon-bordercolor (EAST)"; icon_state = "bordercolor"; dir = 4},/turf/simulated/floor/tiled,/area/engineering/lower/breakroom) +"aLp" = (/obj/item/device/radio/intercom{dir = 8; name = "Station Intercom (General)"; pixel_x = -21},/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (WEST)"; icon_state = "borderfloor"; dir = 8},/obj/effect/floor_decal/corner/purple/border{tag = "icon-bordercolor (WEST)"; icon_state = "bordercolor"; dir = 8},/obj/item/weapon/stool/padded,/obj/effect/landmark/start{name = "Janitor"},/turf/simulated/floor/tiled,/area/janitor) +"aLq" = (/obj/item/weapon/stool/padded,/obj/effect/landmark/start{name = "Janitor"},/turf/simulated/floor/tiled,/area/janitor) +"aLr" = (/turf/simulated/floor/tiled,/area/janitor) +"aLs" = (/obj/machinery/hologram/holopad,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled,/area/janitor) +"aLt" = (/obj/structure/janitorialcart,/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (EAST)"; icon_state = "borderfloor"; dir = 4},/obj/effect/floor_decal/corner/purple/border{tag = "icon-bordercolor (EAST)"; icon_state = "bordercolor"; dir = 4},/turf/simulated/floor/tiled,/area/janitor) +"aLu" = (/obj/effect/floor_decal/corner_techfloor_grid{tag = "icon-corner_techfloor_grid (NORTHWEST)"; icon_state = "corner_techfloor_grid"; dir = 9},/turf/simulated/floor/tiled/techfloor,/area/maintenance/lower/bar) +"aLv" = (/obj/effect/floor_decal/techfloor{tag = "icon-techfloor_edges (WEST)"; icon_state = "techfloor_edges"; dir = 8},/obj/item/device/radio/intercom{dir = 8; name = "Station Intercom (General)"; pixel_x = -28},/turf/simulated/floor/tiled/techfloor,/area/rnd/workshop) +"aLw" = (/obj/machinery/atmospherics/unary/vent_pump/on,/turf/simulated/floor/tiled/techfloor,/area/rnd/workshop) +"aLx" = (/obj/effect/floor_decal/techfloor{tag = "icon-techfloor_edges (EAST)"; icon_state = "techfloor_edges"; dir = 4},/obj/machinery/firealarm{dir = 4; pixel_x = 24},/turf/simulated/floor/tiled/techfloor,/area/rnd/workshop) +"aLy" = (/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (WEST)"; icon_state = "borderfloor"; dir = 8},/obj/effect/floor_decal/corner/mauve/border{tag = "icon-bordercolor (WEST)"; icon_state = "bordercolor"; dir = 8},/obj/effect/floor_decal/borderfloor/corner2{tag = "icon-borderfloorcorner2 (SOUTHWEST)"; icon_state = "borderfloorcorner2"; dir = 10},/obj/effect/floor_decal/corner/mauve/bordercorner2{tag = "icon-bordercolorcorner2 (SOUTHWEST)"; icon_state = "bordercolorcorner2"; dir = 10},/turf/simulated/floor/tiled,/area/rnd/lockers) +"aLz" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/tiled,/area/rnd/lockers) +"aLA" = (/turf/simulated/floor/tiled,/area/rnd/lockers) +"aLB" = (/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (EAST)"; icon_state = "borderfloor"; dir = 4},/obj/effect/floor_decal/corner/mauve/border{tag = "icon-bordercolor (EAST)"; icon_state = "bordercolor"; dir = 4},/obj/effect/floor_decal/borderfloor/corner2{tag = "icon-borderfloorcorner2 (NORTHEAST)"; icon_state = "borderfloorcorner2"; dir = 5},/obj/effect/floor_decal/corner/mauve/bordercorner2{tag = "icon-bordercolorcorner2 (NORTHEAST)"; icon_state = "bordercolorcorner2"; dir = 5},/turf/simulated/floor/tiled,/area/rnd/lockers) +"aLC" = (/obj/structure/table/standard,/obj/item/stack/cable_coil,/obj/item/stack/cable_coil{pixel_x = 3; pixel_y = 3},/obj/item/weapon/stock_parts/scanning_module{pixel_x = 2; pixel_y = 3},/obj/item/weapon/stock_parts/scanning_module,/obj/item/clothing/glasses/omnihud/rnd,/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (WEST)"; icon_state = "borderfloor"; dir = 8},/obj/effect/floor_decal/corner/mauve/border{tag = "icon-bordercolor (WEST)"; icon_state = "bordercolor"; dir = 8},/obj/effect/floor_decal/borderfloor/corner2{tag = "icon-borderfloorcorner2 (SOUTHWEST)"; icon_state = "borderfloorcorner2"; dir = 10},/obj/effect/floor_decal/corner/mauve/bordercorner2{tag = "icon-bordercolorcorner2 (SOUTHWEST)"; icon_state = "bordercolorcorner2"; dir = 10},/obj/machinery/newscaster{pixel_x = -25},/turf/simulated/floor/tiled,/area/rnd/research) +"aLD" = (/obj/effect/floor_decal/borderfloor/corner{tag = "icon-borderfloorcorner (EAST)"; icon_state = "borderfloorcorner"; dir = 4},/obj/effect/floor_decal/corner/mauve/bordercorner{tag = "icon-bordercolorcorner (EAST)"; icon_state = "bordercolorcorner"; dir = 4},/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"},/obj/structure/cable/green{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled,/area/rnd/research) +"aLE" = (/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (NORTH)"; icon_state = "borderfloor"; dir = 1},/obj/effect/floor_decal/corner/mauve/border{tag = "icon-bordercolor (NORTH)"; icon_state = "bordercolor"; dir = 1},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/light_switch{pixel_y = 25},/turf/simulated/floor/tiled,/area/rnd/research) +"aLF" = (/obj/structure/table/standard,/obj/item/weapon/storage/toolbox/mechanical{pixel_x = 2; pixel_y = 3},/obj/item/weapon/storage/toolbox/mechanical{pixel_x = -2; pixel_y = -1},/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (NORTH)"; icon_state = "borderfloor"; dir = 1},/obj/effect/floor_decal/corner/mauve/border{tag = "icon-bordercolor (NORTH)"; icon_state = "bordercolor"; dir = 1},/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,/area/rnd/research) +"aLG" = (/obj/structure/table/standard{name = "plastic table frame"},/obj/item/stack/material/glass{amount = 50; pixel_x = 3; pixel_y = 3},/obj/item/stack/material/steel{amount = 50},/obj/item/clothing/glasses/welding,/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (NORTH)"; icon_state = "borderfloor"; dir = 1},/obj/effect/floor_decal/corner/mauve/border{tag = "icon-bordercolor (NORTH)"; icon_state = "bordercolor"; dir = 1},/obj/machinery/camera/network/research,/turf/simulated/floor/tiled,/area/rnd/research) +"aLH" = (/obj/structure/table/standard,/obj/item/weapon/hand_labeler,/obj/item/weapon/pen,/obj/item/weapon/packageWrap,/obj/item/weapon/packageWrap,/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (NORTH)"; icon_state = "borderfloor"; dir = 1},/obj/effect/floor_decal/corner/mauve/border{tag = "icon-bordercolor (NORTH)"; icon_state = "bordercolor"; dir = 1},/obj/machinery/firealarm{dir = 2; layer = 3.3; pixel_x = 0; pixel_y = 26},/turf/simulated/floor/tiled,/area/rnd/research) +"aLI" = (/obj/item/weapon/stock_parts/console_screen,/obj/structure/table/standard,/obj/item/weapon/stock_parts/console_screen,/obj/item/weapon/stock_parts/console_screen,/obj/item/weapon/stock_parts/matter_bin,/obj/item/weapon/stock_parts/matter_bin,/obj/machinery/recharger{pixel_y = 0},/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (NORTHEAST)"; icon_state = "borderfloor"; dir = 5},/obj/effect/floor_decal/corner/mauve/border{tag = "icon-bordercolor (NORTHEAST)"; icon_state = "bordercolor"; dir = 5},/turf/simulated/floor/tiled,/area/rnd/research) +"aLJ" = (/obj/machinery/atmospherics/pipe/simple/visible/scrubbers,/obj/machinery/atmospherics/pipe/simple/visible/supply,/obj/structure/cable{tag = "icon-1-2"; icon_state = "1-2"},/obj/structure/disposalpipe/segment,/obj/effect/floor_decal/industrial/warning{dir = 4},/turf/simulated/floor/plating,/area/maintenance/lower/rnd) +"aLK" = (/obj/machinery/power/breakerbox/activated{RCon_tag = "Atmos Substation Bypass"},/turf/simulated/floor/plating,/area/maintenance/lower/rnd) +"aLL" = (/obj/structure/sign/warning/high_voltage,/turf/simulated/wall,/area/maintenance/lower/rnd) +"aLM" = (/obj/machinery/atmospherics/pipe/manifold/hidden/yellow,/turf/simulated/floor/tiled,/area/engineering/lower/lobby) +"aLN" = (/obj/machinery/atmospherics/pipe/simple/hidden/yellow{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/tiled,/area/engineering/lower/lobby) +"aLO" = (/obj/machinery/atmospherics/pipe/simple/hidden/yellow{dir = 4},/obj/machinery/hologram/holopad,/turf/simulated/floor/tiled,/area/engineering/lower/lobby) +"aLP" = (/obj/machinery/atmospherics/pipe/simple/hidden/yellow{dir = 10},/obj/structure/disposalpipe/junction{dir = 1},/turf/simulated/floor/tiled,/area/engineering/lower/lobby) +"aLQ" = (/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled,/area/engineering/lower/lobby) +"aLR" = (/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (EAST)"; icon_state = "borderfloor"; dir = 4},/obj/effect/floor_decal/corner/yellow/border{tag = "icon-bordercolor (EAST)"; icon_state = "bordercolor"; dir = 4},/obj/machinery/disposal,/obj/structure/disposalpipe/trunk{dir = 8},/turf/simulated/floor/tiled,/area/engineering/lower/lobby) +"aLS" = (/obj/structure/bed/chair{dir = 4},/turf/simulated/floor/carpet,/area/engineering/lower/breakroom) +"aLT" = (/obj/structure/table/glass,/turf/simulated/floor/carpet,/area/engineering/lower/breakroom) +"aLU" = (/obj/structure/table/glass,/obj/machinery/computer/atmoscontrol/laptop,/turf/simulated/floor/carpet,/area/engineering/lower/breakroom) +"aLV" = (/obj/structure/bed/chair{dir = 8},/turf/simulated/floor/carpet,/area/engineering/lower/breakroom) +"aLW" = (/obj/machinery/vending/coffee,/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (EAST)"; icon_state = "borderfloor"; dir = 4},/obj/effect/floor_decal/corner/yellow/border{tag = "icon-bordercolor (EAST)"; icon_state = "bordercolor"; dir = 4},/turf/simulated/floor/tiled,/area/engineering/lower/breakroom) +"aLX" = (/obj/effect/decal/cleanable/dirt,/obj/effect/floor_decal/rust,/obj/structure/table/rack,/obj/random/maintenance/clean,/obj/random/maintenance/clean,/obj/random/maintenance/engineering,/obj/random/junk,/obj/random/drinkbottle,/turf/simulated/floor/tiled/techfloor,/area/maintenance/lower/south) +"aLY" = (/obj/machinery/light{dir = 8; icon_state = "tube1"; pixel_y = 0},/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (WEST)"; icon_state = "borderfloor"; dir = 8},/obj/effect/floor_decal/corner/purple/border{tag = "icon-bordercolor (WEST)"; icon_state = "bordercolor"; dir = 8},/turf/simulated/floor/tiled,/area/janitor) +"aLZ" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 5},/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled,/area/janitor) +"aMa" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/turf/simulated/floor/tiled,/area/janitor) +"aMb" = (/obj/structure/janitorialcart,/obj/machinery/light{icon_state = "tube1"; dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 10},/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (EAST)"; icon_state = "borderfloor"; dir = 4},/obj/effect/floor_decal/corner/purple/border{tag = "icon-bordercolor (EAST)"; icon_state = "bordercolor"; dir = 4},/turf/simulated/floor/tiled,/area/janitor) +"aMc" = (/obj/effect/floor_decal/corner_techfloor_grid{tag = "icon-corner_techfloor_grid (NORTHWEST)"; icon_state = "corner_techfloor_grid"; dir = 9},/obj/random/junk,/turf/simulated/floor/tiled/techfloor,/area/maintenance/lower/bar) +"aMd" = (/obj/structure/catwalk,/obj/machinery/portable_atmospherics/hydroponics,/turf/simulated/floor/tiled/techfloor,/area/maintenance/lower/bar) +"aMe" = (/obj/structure/railing{dir = 8},/obj/effect/floor_decal/techfloor{tag = "icon-techfloor_edges (EAST)"; icon_state = "techfloor_edges"; dir = 4},/obj/effect/decal/cleanable/dirt,/obj/effect/floor_decal/rust,/obj/structure/table/rack,/obj/random/maintenance/research,/obj/random/maintenance/clean,/turf/simulated/floor/tiled/techfloor,/area/maintenance/asmaint2) +"aMf" = (/obj/effect/floor_decal/techfloor{tag = "icon-techfloor_edges (WEST)"; icon_state = "techfloor_edges"; dir = 8},/obj/machinery/computer/rdconsole/core{dir = 4},/turf/simulated/floor/tiled/techfloor,/area/rnd/workshop) +"aMg" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 5},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 6},/turf/simulated/floor/tiled/techfloor,/area/rnd/workshop) +"aMh" = (/obj/effect/floor_decal/techfloor/corner{tag = "icon-techfloor_corners (EAST)"; icon_state = "techfloor_corners"; dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled/techfloor,/area/rnd/workshop) +"aMi" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/door/firedoor/glass,/obj/machinery/door/airlock/glass_research{name = "Workshop"; req_access = list(47)},/turf/simulated/floor/tiled,/area/rnd/workshop) +"aMj" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 9},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 9},/turf/simulated/floor/tiled,/area/rnd/lockers) +"aMk" = (/obj/structure/railing{dir = 8},/obj/structure/railing{dir = 1},/obj/structure/railing,/turf/simulated/open,/area/rnd/lockers) +"aMl" = (/obj/structure/railing{dir = 1},/turf/simulated/open,/area/rnd/lockers) +"aMm" = (/obj/structure/railing{dir = 4},/turf/simulated/open,/area/rnd/lockers) +"aMn" = (/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 8},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 8},/turf/simulated/floor/tiled,/area/rnd/lockers) +"aMo" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/door/firedoor/glass,/obj/machinery/door/airlock/glass_research{name = "Research and Development"; req_access = list(7)},/turf/simulated/floor/tiled,/area/rnd/research) +"aMp" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled,/area/rnd/research) +"aMq" = (/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,/obj/machinery/atmospherics/pipe/manifold/hidden/supply,/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled,/area/rnd/research) +"aMr" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 10},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 10},/turf/simulated/floor/tiled,/area/rnd/research) +"aMs" = (/turf/simulated/floor/tiled,/area/rnd/research) +"aMt" = (/obj/item/weapon/folder/white,/obj/structure/table/standard,/obj/item/weapon/disk/tech_disk{pixel_x = 0; pixel_y = 0},/obj/item/weapon/disk/tech_disk{pixel_x = 0; pixel_y = 0},/obj/item/weapon/disk/design_disk,/obj/item/weapon/disk/design_disk,/obj/item/weapon/reagent_containers/dropper{pixel_y = -4},/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (EAST)"; icon_state = "borderfloor"; dir = 4},/obj/effect/floor_decal/corner/mauve/border{tag = "icon-bordercolor (EAST)"; icon_state = "bordercolor"; dir = 4},/turf/simulated/floor/tiled,/area/rnd/research) +"aMu" = (/obj/machinery/atmospherics/pipe/simple/visible/scrubbers,/obj/machinery/atmospherics/pipe/simple/visible/supply,/obj/machinery/power/terminal{dir = 4},/obj/structure/cable,/obj/structure/disposalpipe/segment,/obj/effect/floor_decal/industrial/warning{dir = 4},/turf/simulated/floor/plating,/area/maintenance/lower/rnd) +"aMv" = (/obj/structure/cable/cyan{d2 = 2; icon_state = "0-2"},/obj/structure/cable/cyan,/obj/machinery/power/smes/buildable{charge = 2e+006; RCon_tag = "Substation - Atmospherics"},/turf/simulated/floor,/area/maintenance/lower/rnd) +"aMw" = (/obj/effect/floor_decal/industrial/hatch/yellow,/obj/machinery/light{dir = 8; icon_state = "tube1"; pixel_y = 0},/turf/simulated/floor/tiled,/area/engineering/lower/lobby) +"aMx" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 8},/turf/simulated/floor/tiled,/area/engineering/lower/lobby) +"aMy" = (/obj/machinery/atmospherics/unary/vent_pump/on{dir = 8},/turf/simulated/floor/tiled,/area/engineering/lower/lobby) +"aMz" = (/obj/machinery/atmospherics/pipe/simple/hidden/yellow,/obj/structure/disposalpipe/junction{dir = 1},/turf/simulated/floor/tiled,/area/engineering/lower/lobby) +"aMA" = (/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (EAST)"; icon_state = "borderfloor"; dir = 4},/obj/effect/floor_decal/corner/yellow/border{tag = "icon-bordercolor (EAST)"; icon_state = "bordercolor"; dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled,/area/engineering/lower/lobby) +"aMB" = (/obj/structure/bed/chair{dir = 4},/obj/structure/disposalpipe/segment{dir = 2; icon_state = "pipe-c"},/turf/simulated/floor/carpet,/area/engineering/lower/breakroom) +"aMC" = (/obj/machinery/vending/cigarette,/obj/machinery/light{dir = 4; icon_state = "tube1"; pixel_x = 0},/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (EAST)"; icon_state = "borderfloor"; dir = 4},/obj/effect/floor_decal/corner/yellow/border{tag = "icon-bordercolor (EAST)"; icon_state = "bordercolor"; dir = 4},/turf/simulated/floor/tiled,/area/engineering/lower/breakroom) +"aMD" = (/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/tiled/techfloor,/area/maintenance/lower/south) +"aME" = (/obj/structure/closet/l3closet/janitor,/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (SOUTHWEST)"; icon_state = "borderfloor"; dir = 10},/obj/effect/floor_decal/corner/purple/border{tag = "icon-bordercolor (SOUTHWEST)"; icon_state = "bordercolor"; dir = 10},/turf/simulated/floor/tiled,/area/janitor) +"aMF" = (/obj/structure/closet/jcloset,/obj/item/weapon/soap/nanotrasen,/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/corner/purple/border,/turf/simulated/floor/tiled,/area/janitor) +"aMG" = (/obj/machinery/firealarm{dir = 1; pixel_x = 0; pixel_y = -26},/obj/structure/mopbucket,/obj/item/weapon/mop,/obj/item/weapon/reagent_containers/glass/bucket,/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/corner/purple/border,/turf/simulated/floor/tiled,/area/janitor) +"aMH" = (/obj/structure/mopbucket,/obj/item/weapon/mop,/obj/item/weapon/reagent_containers/glass/bucket,/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/corner/purple/border,/obj/structure/disposalpipe/segment{dir = 1; icon_state = "pipe-c"},/turf/simulated/floor/tiled,/area/janitor) +"aMI" = (/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/corner/purple/border,/obj/effect/floor_decal/borderfloor/corner2{tag = "icon-borderfloorcorner2 (NORTHWEST)"; icon_state = "borderfloorcorner2"; dir = 9},/obj/effect/floor_decal/corner/purple/bordercorner2{tag = "icon-bordercolorcorner2 (NORTHWEST)"; icon_state = "bordercolorcorner2"; dir = 9},/obj/machinery/disposal,/obj/structure/disposalpipe/trunk{dir = 8},/turf/simulated/floor/tiled,/area/janitor) +"aMJ" = (/obj/structure/reagent_dispensers/watertank,/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 1},/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (SOUTHEAST)"; icon_state = "borderfloor"; dir = 6},/obj/effect/floor_decal/corner/purple/border{tag = "icon-bordercolor (SOUTHEAST)"; icon_state = "bordercolor"; dir = 6},/obj/effect/floor_decal/borderfloor/corner2,/obj/effect/floor_decal/corner/purple/bordercorner2,/turf/simulated/floor/tiled,/area/janitor) +"aMK" = (/obj/effect/floor_decal/rust,/obj/structure/railing{dir = 4},/turf/simulated/floor/tiled/techfloor,/area/maintenance/lower/bar) +"aML" = (/turf/simulated/wall,/area/maintenance/lower/south) +"aMM" = (/obj/machinery/door/airlock/multi_tile/metal/mait,/obj/machinery/door/firedoor/glass,/obj/structure/cable{tag = "icon-1-2"; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/visible/scrubbers,/obj/machinery/atmospherics/pipe/simple/visible/supply,/turf/simulated/floor/tiled/techfloor/grid,/area/maintenance/lower/south) +"aMN" = (/obj/machinery/door/firedoor/glass,/turf/simulated/floor/tiled/techfloor/grid,/area/maintenance/lower/south) +"aMO" = (/obj/structure/railing{dir = 4},/obj/effect/floor_decal/techfloor{tag = "icon-techfloor_edges (WEST)"; icon_state = "techfloor_edges"; dir = 8},/obj/effect/floor_decal/rust,/obj/machinery/atmospherics/pipe/simple/visible/purple{tag = "icon-intact (NORTH)"; icon_state = "intact"; dir = 1},/turf/simulated/floor/tiled/techfloor,/area/maintenance/asmaint2) +"aMP" = (/obj/effect/floor_decal/techfloor{tag = "icon-techfloor_edges (WEST)"; icon_state = "techfloor_edges"; dir = 8},/obj/structure/table/steel,/obj/machinery/cell_charger,/obj/structure/reagent_dispensers/acid{pixel_x = -32},/obj/machinery/light{dir = 8; icon_state = "tube1"; pixel_y = 0},/turf/simulated/floor/tiled/techfloor,/area/rnd/workshop) +"aMQ" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/tiled/techfloor,/area/rnd/workshop) +"aMR" = (/turf/simulated/floor/tiled/techfloor,/area/rnd/workshop) +"aMS" = (/obj/structure/grille,/obj/structure/window/reinforced{dir = 5; icon_state = "fwindow"},/obj/machinery/door/firedoor,/turf/simulated/floor/plating,/area/rnd/workshop) +"aMT" = (/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (WEST)"; icon_state = "borderfloor"; dir = 8},/obj/effect/floor_decal/corner/mauve/border{tag = "icon-bordercolor (WEST)"; icon_state = "bordercolor"; dir = 8},/obj/effect/floor_decal/borderfloor/corner2{tag = "icon-borderfloorcorner2 (WEST)"; icon_state = "borderfloorcorner2"; dir = 8},/obj/effect/floor_decal/borderfloor/corner2{tag = "icon-borderfloorcorner2 (SOUTHWEST)"; icon_state = "borderfloorcorner2"; dir = 10},/obj/effect/floor_decal/corner/mauve/bordercorner2{tag = "icon-bordercolorcorner2 (SOUTHWEST)"; icon_state = "bordercolorcorner2"; dir = 10},/obj/effect/floor_decal/corner/mauve/bordercorner2{tag = "icon-bordercolorcorner2 (WEST)"; icon_state = "bordercolorcorner2"; dir = 8},/turf/simulated/floor/tiled,/area/rnd/lockers) +"aMU" = (/obj/effect/decal/cleanable/dirt,/obj/effect/floor_decal/steeldecal/steel_decals9,/obj/effect/floor_decal/steeldecal/steel_decals9{tag = "icon-steel_decals9 (WEST)"; icon_state = "steel_decals9"; dir = 8},/turf/simulated/floor/tiled,/area/rnd/lockers) +"aMV" = (/obj/structure/railing{dir = 8},/turf/simulated/open,/area/rnd/lockers) +"aMW" = (/turf/simulated/open,/area/rnd/lockers) +"aMX" = (/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (EAST)"; icon_state = "borderfloor"; dir = 4},/obj/effect/floor_decal/corner/mauve/border{tag = "icon-bordercolor (EAST)"; icon_state = "bordercolor"; dir = 4},/obj/effect/floor_decal/borderfloor/corner2{tag = "icon-borderfloorcorner2 (NORTHEAST)"; icon_state = "borderfloorcorner2"; dir = 5},/obj/effect/floor_decal/borderfloor/corner2{tag = "icon-borderfloorcorner2 (SOUTHEAST)"; icon_state = "borderfloorcorner2"; dir = 6},/obj/effect/floor_decal/corner/mauve/bordercorner2{tag = "icon-bordercolorcorner2 (NORTHEAST)"; icon_state = "bordercolorcorner2"; dir = 5},/obj/effect/floor_decal/corner/mauve/bordercorner2{tag = "icon-bordercolorcorner2 (SOUTHEAST)"; icon_state = "bordercolorcorner2"; dir = 6},/obj/structure/disposalpipe/segment{dir = 4; icon_state = "pipe-c"},/turf/simulated/floor/tiled,/area/rnd/lockers) +"aMY" = (/obj/structure/grille,/obj/structure/window/reinforced{dir = 5; icon_state = "fwindow"},/obj/machinery/door/firedoor,/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/plating,/area/rnd/research) +"aMZ" = (/obj/machinery/light{icon_state = "tube1"; dir = 8},/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (WEST)"; icon_state = "borderfloor"; dir = 8},/obj/effect/floor_decal/corner/mauve/border{tag = "icon-bordercolor (WEST)"; icon_state = "bordercolor"; dir = 8},/obj/effect/floor_decal/borderfloor/corner2{tag = "icon-borderfloorcorner2 (SOUTHWEST)"; icon_state = "borderfloorcorner2"; dir = 10},/obj/effect/floor_decal/borderfloor/corner2{tag = "icon-borderfloorcorner2 (WEST)"; icon_state = "borderfloorcorner2"; dir = 8},/obj/effect/floor_decal/corner/mauve/bordercorner2{tag = "icon-bordercolorcorner2 (SOUTHWEST)"; icon_state = "bordercolorcorner2"; dir = 10},/obj/effect/floor_decal/corner/mauve/bordercorner2{tag = "icon-bordercolorcorner2 (WEST)"; icon_state = "bordercolorcorner2"; dir = 8},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled,/area/rnd/research) +"aNa" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/disposalpipe/junction{dir = 1; icon_state = "pipe-j2"},/turf/simulated/floor/tiled,/area/rnd/research) +"aNb" = (/obj/machinery/atmospherics/unary/vent_pump/on{dir = 4},/turf/simulated/floor/tiled,/area/rnd/research) +"aNc" = (/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 8},/turf/simulated/floor/tiled,/area/rnd/research) +"aNd" = (/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 8},/turf/simulated/floor/tiled,/area/rnd/research) +"aNe" = (/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/effect/floor_decal/borderfloor{tag = "icon-borderfloor (EAST)"; icon_state = "borderfloor"; dir = 4},/obj/effect/floor_decal/corner/mauve/border{tag = "icon-bordercolor (EAST)"; icon_state = "bordercolor"; dir = 4},/turf/simulated/floor/tiled,/area/rnd/research) +"aNf" = (/obj/machinery/atmospherics/pipe/simple/visible/scrubbers,/obj/machinery/atmospherics/pipe/simple/visible/supply,/obj/machinery/alarm{dir = 4; icon_state = "alarm0"; pixel_x = -22; pixel_y = 0},/obj/effect/decal/cleanable/dirt,/obj/structure/disposalpipe/segment,/obj/effect/floor_decal/industrial/warning/corner{dir = 4},/turf/simulated/floor/plating,/area/maintenance/lower/rnd) +"aNg" = (/obj/structure/cable/cyan{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/power/sensor{name = "Powernet Sensor - Atmospherics Subgrid"; name_tag = "Atmospherics Subgrid"},/obj/effect/decal/cleanable/dirt,/obj/effect/floor_decal/industrial/warning{icon_state = "warning"; dir = 1},/turf/simulated/floor/plating,/area/maintenance/lower/rnd) +"aNh" = (/obj/machinery/atmospherics/portables_connector{dir = 4},/obj/effect/floor_decal/industrial/outline/blue,/obj/machinery/portable_atmospherics/powered/pump/filled,/turf/simulated/floor/tiled/techfloor,/area/engineering/lower/lobby) +"aNi" = (/obj/machinery/atmospherics/pipe/simple/hidden/cyan{dir = 10; icon_state = "intact"; tag = "icon-intact-f (NORTHWEST)"},/turf/simulated/floor/tiled,/area/engineering/lower/lobby) +"aNj" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/tiled,/area/engineering/lower/lobby) +"aNk" = (/obj/machinery/atmospherics/pipe/simple/hidden/yellow,/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled,/area/engineering/lower/lobby) +"aNl" = (/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (EAST)"; icon_state = "borderfloor"; dir = 4},/obj/effect/floor_decal/corner/yellow/border{tag = "icon-bordercolor (EAST)"; icon_state = "bordercolor"; dir = 4},/obj/effect/floor_decal/borderfloor/corner2{tag = "icon-borderfloorcorner2 (NORTHEAST)"; icon_state = "borderfloorcorner2"; dir = 5},/obj/effect/floor_decal/corner/yellow/bordercorner2{tag = "icon-bordercolorcorner2 (NORTHEAST)"; icon_state = "bordercolorcorner2"; dir = 5},/turf/simulated/floor/tiled,/area/engineering/lower/lobby) +"aNm" = (/obj/structure/disposalpipe/segment,/turf/simulated/floor/carpet,/area/engineering/lower/breakroom) +"aNn" = (/obj/structure/bed/chair{dir = 1},/turf/simulated/floor/carpet,/area/engineering/lower/breakroom) +"aNo" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 6},/turf/simulated/floor/tiled,/area/engineering/lower/breakroom) +"aNp" = (/obj/structure/table/glass,/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (EAST)"; icon_state = "borderfloor"; dir = 4},/obj/effect/floor_decal/corner/yellow/border{tag = "icon-bordercolor (EAST)"; icon_state = "bordercolor"; dir = 4},/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 8},/obj/item/weapon/storage/box/glasses/pint,/obj/machinery/requests_console{announcementConsole = 0; department = "Engineering"; departmentType = 3; name = "Engineering RC"; pixel_x = 30; pixel_y = 0},/turf/simulated/floor/tiled,/area/engineering/lower/breakroom) +"aNq" = (/obj/machinery/door/airlock/maintenance{name = "Custodial Maintenance"; req_access = list(26)},/turf/simulated/floor,/area/janitor) +"aNr" = (/obj/effect/floor_decal/rust,/obj/effect/floor_decal/corner_techfloor_grid{tag = "icon-corner_techfloor_grid (NORTHWEST)"; icon_state = "corner_techfloor_grid"; dir = 9},/obj/effect/floor_decal/corner_techfloor_grid{tag = "icon-corner_techfloor_grid (SOUTHWEST)"; icon_state = "corner_techfloor_grid"; dir = 10},/obj/structure/table/rack,/obj/random/maintenance/clean,/obj/random/maintenance/clean,/obj/random/maintenance/research,/turf/simulated/floor/tiled/techfloor,/area/maintenance/lower/bar) +"aNs" = (/obj/structure/railing{dir = 4},/obj/effect/floor_decal/corner_techfloor_grid{tag = "icon-corner_techfloor_grid (SOUTHWEST)"; icon_state = "corner_techfloor_grid"; dir = 10},/turf/simulated/floor/tiled/techfloor,/area/maintenance/lower/bar) +"aNt" = (/obj/structure/railing{dir = 4},/obj/effect/floor_decal/corner_techfloor_grid/full{tag = "icon-corner_techfloor_grid_full (WEST)"; icon_state = "corner_techfloor_grid_full"; dir = 8},/obj/machinery/alarm{frequency = 1441; pixel_y = 22},/turf/simulated/floor/tiled/techfloor,/area/maintenance/lower/south) +"aNu" = (/obj/structure/catwalk,/obj/effect/floor_decal/corner_techfloor_grid{tag = "icon-corner_techfloor_grid (NORTHEAST)"; icon_state = "corner_techfloor_grid"; dir = 5},/obj/structure/cable{tag = "icon-1-2"; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/visible/scrubbers,/obj/machinery/atmospherics/pipe/simple/visible/supply,/turf/simulated/floor/tiled/techfloor,/area/maintenance/lower/south) +"aNv" = (/obj/structure/catwalk,/obj/effect/floor_decal/corner_techfloor_grid{tag = "icon-corner_techfloor_grid (NORTHEAST)"; icon_state = "corner_techfloor_grid"; dir = 5},/turf/simulated/floor/tiled/techfloor,/area/maintenance/lower/south) +"aNw" = (/obj/structure/railing{dir = 8},/obj/effect/floor_decal/corner_techfloor_grid/full{tag = "icon-corner_techfloor_grid_full (NORTH)"; icon_state = "corner_techfloor_grid_full"; dir = 1},/obj/item/device/radio/intercom{dir = 1; name = "Station Intercom (General)"; pixel_y = 21},/turf/simulated/floor/tiled/techfloor,/area/maintenance/lower/south) +"aNx" = (/obj/structure/catwalk,/obj/effect/decal/cleanable/dirt,/obj/structure/cable/green{d1 = 2; d2 = 4; icon_state = "2-4"},/turf/simulated/floor/tiled/techfloor,/area/maintenance/asmaint2) +"aNy" = (/obj/effect/floor_decal/techfloor{tag = "icon-techfloor_edges (WEST)"; icon_state = "techfloor_edges"; dir = 8},/obj/machinery/r_n_d/circuit_imprinter,/obj/item/weapon/reagent_containers/glass/beaker/sulphuric,/turf/simulated/floor/tiled/techfloor,/area/rnd/workshop) +"aNz" = (/obj/effect/floor_decal/techfloor/corner,/obj/structure/cable/green{d1 = 2; d2 = 4; icon_state = "2-4"},/turf/simulated/floor/tiled/techfloor,/area/rnd/workshop) +"aNA" = (/obj/machinery/door/firedoor/glass,/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/door/airlock/glass_research{name = "Workshop"; req_access = list(47)},/turf/simulated/floor/tiled,/area/rnd/workshop) +"aNB" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/tiled,/area/rnd/lockers) +"aNC" = (/obj/structure/cable/green{d1 = 2; d2 = 8; icon_state = "2-8"},/turf/simulated/floor/tiled,/area/rnd/lockers) +"aND" = (/obj/structure/cable/green{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled,/area/rnd/lockers) +"aNE" = (/obj/machinery/door/firedoor/glass,/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/door/airlock/glass_research{name = "Research and Development"; req_access = list(7)},/turf/simulated/floor/tiled,/area/rnd/research) +"aNF" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/tiled,/area/rnd/research) +"aNG" = (/obj/effect/floor_decal/industrial/warning/corner,/obj/structure/cable/green{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/structure/cable/green{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/structure/disposalpipe/segment{dir = 1; icon_state = "pipe-c"},/turf/simulated/floor/tiled/steel_grid,/area/rnd/research) +"aNH" = (/obj/effect/floor_decal/industrial/warning,/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled/steel_grid,/area/rnd/research) +"aNI" = (/obj/effect/floor_decal/industrial/warning,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled/steel_grid,/area/rnd/research) +"aNJ" = (/obj/effect/floor_decal/industrial/warning/corner{dir = 8},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled/steel_grid,/area/rnd/research) +"aNK" = (/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (EAST)"; icon_state = "borderfloor"; dir = 4},/obj/effect/floor_decal/corner/mauve/border{tag = "icon-bordercolor (EAST)"; icon_state = "bordercolor"; dir = 4},/obj/machinery/disposal,/obj/structure/disposalpipe/trunk{dir = 8},/turf/simulated/floor/tiled,/area/rnd/research) +"aNL" = (/obj/machinery/atmospherics/pipe/simple/visible/scrubbers,/obj/machinery/atmospherics/pipe/simple/visible/supply,/obj/structure/cable/cyan{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/effect/decal/cleanable/dirt,/obj/structure/disposalpipe/segment,/turf/simulated/floor/plating,/area/maintenance/lower/rnd) +"aNM" = (/obj/structure/cable/cyan{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/machinery/power/apc{dir = 4; name = "east bump"; pixel_x = 28},/obj/structure/cable/cyan,/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/plating,/area/maintenance/lower/rnd) +"aNN" = (/obj/machinery/atmospherics/pipe/manifold/hidden/cyan{dir = 4},/turf/simulated/floor/tiled,/area/engineering/lower/lobby) +"aNO" = (/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 8},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 8},/turf/simulated/floor/tiled,/area/engineering/lower/lobby) +"aNP" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/turf/simulated/floor/tiled,/area/engineering/lower/lobby) +"aNQ" = (/obj/machinery/atmospherics/pipe/simple/hidden/yellow,/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/cable/cyan{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled,/area/engineering/lower/lobby) +"aNR" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/cable/cyan{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/tiled,/area/engineering/lower/lobby) +"aNS" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/cable/cyan{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/cable/cyan{d1 = 2; d2 = 8; icon_state = "2-8"},/turf/simulated/floor/tiled,/area/engineering/lower/lobby) +"aNT" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/cable/cyan{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/door/firedoor/glass,/obj/machinery/door/airlock/glass_engineering{name = "Break Room"; req_access = list(10)},/turf/simulated/floor/tiled,/area/engineering/lower/breakroom) +"aNU" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/cable/cyan{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled,/area/engineering/lower/breakroom) +"aNV" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/cable/cyan{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/tiled,/area/engineering/lower/breakroom) +"aNW" = (/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 1},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 1},/obj/structure/cable/cyan{d1 = 2; d2 = 8; icon_state = "2-8"},/turf/simulated/floor/tiled,/area/engineering/lower/breakroom) +"aNX" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/turf/simulated/floor/tiled,/area/engineering/lower/breakroom) +"aNY" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 9},/turf/simulated/floor/tiled,/area/engineering/lower/breakroom) +"aNZ" = (/obj/structure/table/glass,/obj/item/weapon/storage/box/donkpockets,/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (EAST)"; icon_state = "borderfloor"; dir = 4},/obj/effect/floor_decal/corner/yellow/border{tag = "icon-bordercolor (EAST)"; icon_state = "bordercolor"; dir = 4},/obj/machinery/atmospherics/unary/vent_pump/on{dir = 8},/turf/simulated/floor/tiled,/area/engineering/lower/breakroom) +"aOa" = (/obj/effect/decal/cleanable/dirt,/turf/simulated/floor,/area/maintenance/lower/south) +"aOb" = (/obj/effect/floor_decal/rust,/obj/effect/decal/cleanable/dirt,/turf/simulated/floor,/area/maintenance/lower/south) +"aOc" = (/obj/random/junk,/turf/simulated/floor/tiled/techfloor,/area/maintenance/lower/south) +"aOd" = (/obj/structure/railing{dir = 4},/obj/effect/floor_decal/corner_techfloor_grid{tag = "icon-corner_techfloor_grid (NORTHWEST)"; icon_state = "corner_techfloor_grid"; dir = 9},/turf/simulated/floor/tiled/techfloor,/area/maintenance/lower/south) +"aOe" = (/obj/structure/catwalk,/obj/structure/cable{tag = "icon-1-2"; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/visible/scrubbers,/obj/machinery/atmospherics/pipe/simple/visible/supply,/turf/simulated/floor/tiled/techfloor,/area/maintenance/lower/south) +"aOf" = (/obj/structure/catwalk,/turf/simulated/floor/tiled/techfloor,/area/maintenance/lower/south) +"aOg" = (/obj/structure/railing{dir = 8},/obj/machinery/light/small{dir = 4; pixel_y = 0},/obj/effect/floor_decal/corner_techfloor_grid{tag = "icon-corner_techfloor_grid (SOUTHEAST)"; icon_state = "corner_techfloor_grid"; dir = 6},/turf/simulated/floor/tiled/techfloor,/area/maintenance/lower/south) +"aOh" = (/obj/structure/railing{dir = 4},/obj/machinery/light{dir = 8; icon_state = "tube1"; pixel_y = 0},/obj/effect/floor_decal/techfloor{tag = "icon-techfloor_edges (WEST)"; icon_state = "techfloor_edges"; dir = 8},/obj/effect/decal/cleanable/dirt,/obj/machinery/atmospherics/pipe/simple/visible/purple{tag = "icon-intact (NORTH)"; icon_state = "intact"; dir = 1},/mob/living/simple_animal/mouse,/turf/simulated/floor/tiled/techfloor,/area/maintenance/asmaint2) +"aOi" = (/obj/effect/floor_decal/techfloor{tag = "icon-techfloor_edges (WEST)"; icon_state = "techfloor_edges"; dir = 8},/obj/machinery/media/jukebox,/turf/simulated/floor/tiled/techfloor,/area/rnd/workshop) +"aOj" = (/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 1},/turf/simulated/floor/tiled/techfloor,/area/rnd/workshop) +"aOk" = (/obj/effect/floor_decal/techfloor{tag = "icon-techfloor_edges (EAST)"; icon_state = "techfloor_edges"; dir = 4},/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/light_switch{pixel_x = 25},/turf/simulated/floor/tiled/techfloor,/area/rnd/workshop) +"aOl" = (/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (WEST)"; icon_state = "borderfloor"; dir = 8},/obj/effect/floor_decal/corner/mauve/border{tag = "icon-bordercolor (WEST)"; icon_state = "bordercolor"; dir = 8},/obj/effect/floor_decal/borderfloor/corner2{tag = "icon-borderfloorcorner2 (WEST)"; icon_state = "borderfloorcorner2"; dir = 8},/obj/effect/floor_decal/corner/mauve/bordercorner2{tag = "icon-bordercolorcorner2 (WEST)"; icon_state = "bordercolorcorner2"; dir = 8},/obj/machinery/camera/network/research{c_tag = "SCI - Research Hallway Center"; dir = 4},/turf/simulated/floor/tiled,/area/rnd/lockers) +"aOm" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/tiled,/area/rnd/lockers) +"aOn" = (/obj/structure/stairs/south,/turf/simulated/floor/tiled,/area/rnd/lockers) +"aOo" = (/obj/structure/railing,/obj/structure/railing{dir = 8},/turf/simulated/open,/area/rnd/lockers) +"aOp" = (/obj/structure/railing,/turf/simulated/open,/area/rnd/lockers) +"aOq" = (/obj/structure/railing{dir = 4},/obj/structure/railing,/turf/simulated/open,/area/rnd/lockers) +"aOr" = (/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (EAST)"; icon_state = "borderfloor"; dir = 4},/obj/effect/floor_decal/corner/mauve/border{tag = "icon-bordercolor (EAST)"; icon_state = "bordercolor"; dir = 4},/obj/effect/floor_decal/borderfloor/corner2{tag = "icon-borderfloorcorner2 (SOUTHEAST)"; icon_state = "borderfloorcorner2"; dir = 6},/obj/effect/floor_decal/corner/mauve/bordercorner2{tag = "icon-bordercolorcorner2 (SOUTHEAST)"; icon_state = "bordercolorcorner2"; dir = 6},/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/light_switch{pixel_x = 25},/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled,/area/rnd/lockers) +"aOs" = (/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (WEST)"; icon_state = "borderfloor"; dir = 8},/obj/effect/floor_decal/corner/mauve/border{tag = "icon-bordercolor (WEST)"; icon_state = "bordercolor"; dir = 8},/obj/effect/floor_decal/borderfloor/corner2{tag = "icon-borderfloorcorner2 (WEST)"; icon_state = "borderfloorcorner2"; dir = 8},/obj/effect/floor_decal/corner/mauve/bordercorner2{tag = "icon-bordercolorcorner2 (WEST)"; icon_state = "bordercolorcorner2"; dir = 8},/obj/machinery/camera/network/research{c_tag = "SCI - Research Hallway Center"; dir = 4},/turf/simulated/floor/tiled,/area/rnd/research) +"aOt" = (/obj/effect/floor_decal/industrial/warning{dir = 4},/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/tiled/steel_grid,/area/rnd/research) +"aOu" = (/obj/machinery/computer/rdconsole/core{dir = 8},/turf/simulated/floor/tiled/steel_grid,/area/rnd/research) +"aOv" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/tiled/steel_grid,/area/rnd/research) +"aOw" = (/obj/machinery/r_n_d/protolathe,/turf/simulated/floor/tiled/steel_grid,/area/rnd/research) +"aOx" = (/obj/effect/floor_decal/industrial/warning{dir = 8},/turf/simulated/floor/tiled/steel_grid,/area/rnd/research) +"aOy" = (/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (EAST)"; icon_state = "borderfloor"; dir = 4},/obj/effect/floor_decal/corner/mauve/border{tag = "icon-bordercolor (EAST)"; icon_state = "bordercolor"; dir = 4},/obj/machinery/light{icon_state = "tube1"; dir = 4},/turf/simulated/floor/tiled,/area/rnd/research) +"aOz" = (/obj/machinery/atmospherics/pipe/simple/visible/scrubbers,/obj/machinery/atmospherics/pipe/simple/visible/supply,/obj/structure/cable/cyan{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/effect/decal/cleanable/dirt,/obj/structure/disposalpipe/segment,/turf/simulated/floor/plating,/area/maintenance/lower/rnd) +"aOA" = (/obj/effect/decal/cleanable/dirt,/obj/structure/table/rack,/obj/random/maintenance/engineering,/obj/random/maintenance/clean,/obj/random/junk,/turf/simulated/floor/plating,/area/maintenance/lower/rnd) +"aOB" = (/turf/simulated/wall,/area/engineering/atmos/hallway) +"aOC" = (/obj/machinery/atmospherics/pipe/manifold/hidden/cyan,/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/corner/yellow/border,/obj/effect/floor_decal/borderfloor/corner2{tag = "icon-borderfloorcorner2 (NORTHWEST)"; icon_state = "borderfloorcorner2"; dir = 9},/obj/effect/floor_decal/corner/yellow/bordercorner2{tag = "icon-bordercolorcorner2 (NORTHWEST)"; icon_state = "bordercolorcorner2"; dir = 9},/turf/simulated/floor/tiled,/area/engineering/lower/lobby) +"aOD" = (/obj/machinery/atmospherics/pipe/simple/hidden/cyan{dir = 10; icon_state = "intact"; tag = "icon-intact-f (NORTHWEST)"},/obj/effect/floor_decal/steeldecal/steel_decals_central4,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/tiled,/area/engineering/lower/lobby) +"aOE" = (/obj/machinery/light,/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/corner/yellow/border,/obj/effect/floor_decal/borderfloor/corner2{tag = "icon-borderfloorcorner2 (NORTHWEST)"; icon_state = "borderfloorcorner2"; dir = 9},/obj/effect/floor_decal/borderfloor/corner2,/obj/effect/floor_decal/corner/yellow/bordercorner2,/obj/effect/floor_decal/corner/yellow/bordercorner2{tag = "icon-bordercolorcorner2 (NORTHWEST)"; icon_state = "bordercolorcorner2"; dir = 9},/turf/simulated/floor/tiled,/area/engineering/lower/lobby) +"aOF" = (/obj/machinery/atmospherics/pipe/simple/hidden/yellow,/obj/effect/floor_decal/steeldecal/steel_decals_central4,/obj/structure/cable/cyan{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled,/area/engineering/lower/lobby) +"aOG" = (/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/corner/yellow/border,/obj/effect/floor_decal/borderfloor/corner2,/obj/effect/floor_decal/corner/yellow/bordercorner2,/obj/machinery/camera/network/engineering{c_tag = "ENG - Pump Station"; dir = 1},/turf/simulated/floor/tiled,/area/engineering/lower/lobby) +"aOH" = (/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (SOUTHEAST)"; icon_state = "borderfloor"; dir = 6},/obj/effect/floor_decal/corner/yellow/border{tag = "icon-bordercolor (SOUTHEAST)"; icon_state = "bordercolor"; dir = 6},/obj/effect/floor_decal/borderfloor/corner2{tag = "icon-borderfloorcorner2 (SOUTHEAST)"; icon_state = "borderfloorcorner2"; dir = 6},/obj/effect/floor_decal/corner/yellow/bordercorner2{tag = "icon-bordercolorcorner2 (SOUTHEAST)"; icon_state = "bordercolorcorner2"; dir = 6},/obj/structure/cable/cyan,/obj/machinery/power/apc{dir = 2; name = "south bump"; pixel_y = -28},/turf/simulated/floor/tiled,/area/engineering/lower/lobby) +"aOI" = (/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (SOUTHWEST)"; icon_state = "borderfloor"; dir = 10},/obj/effect/floor_decal/corner/yellow/border{tag = "icon-bordercolor (SOUTHWEST)"; icon_state = "bordercolor"; dir = 10},/obj/effect/floor_decal/borderfloor/corner2{tag = "icon-borderfloorcorner2 (WEST)"; icon_state = "borderfloorcorner2"; dir = 8},/obj/effect/floor_decal/corner/yellow/bordercorner2{tag = "icon-bordercolorcorner2 (WEST)"; icon_state = "bordercolorcorner2"; dir = 8},/obj/machinery/newscaster{pixel_x = -25},/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled,/area/engineering/lower/breakroom) +"aOJ" = (/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/corner/yellow/border,/turf/simulated/floor/tiled,/area/engineering/lower/breakroom) +"aOK" = (/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/corner/yellow/border,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/cable/cyan{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/cable/cyan{d1 = 1; d2 = 4; icon_state = "1-4"},/turf/simulated/floor/tiled,/area/engineering/lower/breakroom) +"aOL" = (/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/corner/yellow/border,/obj/machinery/power/apc{dir = 2; name = "south bump"; pixel_y = -28},/obj/structure/cable/cyan{d2 = 8; icon_state = "0-8"},/turf/simulated/floor/tiled,/area/engineering/lower/breakroom) +"aOM" = (/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/corner/yellow/border,/obj/machinery/camera/network/engineering{c_tag = "ENG - Pump Station"; dir = 1},/turf/simulated/floor/tiled,/area/engineering/lower/breakroom) +"aON" = (/obj/structure/table/glass,/obj/machinery/microwave,/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (SOUTHEAST)"; icon_state = "borderfloor"; dir = 6},/obj/effect/floor_decal/corner/yellow/border{tag = "icon-bordercolor (SOUTHEAST)"; icon_state = "bordercolor"; dir = 6},/turf/simulated/floor/tiled,/area/engineering/lower/breakroom) +"aOO" = (/turf/simulated/floor,/area/maintenance/lower/south) +"aOP" = (/obj/effect/decal/cleanable/dirt,/obj/structure/closet,/obj/random/maintenance/cargo,/obj/random/maintenance/research,/obj/random/maintenance/engineering,/turf/simulated/floor,/area/maintenance/lower/south) +"aOQ" = (/obj/effect/floor_decal/corner_techfloor_grid/full{tag = "icon-corner_techfloor_grid_full (WEST)"; icon_state = "corner_techfloor_grid_full"; dir = 8},/obj/effect/decal/cleanable/dirt,/obj/effect/floor_decal/rust,/mob/living/simple_animal/mouse,/turf/simulated/floor/tiled/techfloor,/area/maintenance/lower/south) +"aOR" = (/obj/effect/floor_decal/corner_techfloor_grid{tag = "icon-corner_techfloor_grid (NORTHEAST)"; icon_state = "corner_techfloor_grid"; dir = 5},/obj/structure/cable{icon_state = "2-4"},/turf/simulated/floor/tiled/techfloor,/area/maintenance/lower/south) +"aOS" = (/obj/effect/floor_decal/corner_techfloor_grid{tag = "icon-corner_techfloor_grid (NORTHEAST)"; icon_state = "corner_techfloor_grid"; dir = 5},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0},/turf/simulated/floor/tiled/techfloor,/area/maintenance/lower/south) +"aOT" = (/obj/structure/railing{dir = 4},/obj/effect/floor_decal/corner_techfloor_grid{tag = "icon-corner_techfloor_grid (NORTH)"; icon_state = "corner_techfloor_grid"; dir = 1},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0},/turf/simulated/floor/tiled/techfloor,/area/maintenance/lower/south) +"aOU" = (/obj/structure/catwalk,/obj/structure/cable{icon_state = "1-8"},/obj/machinery/atmospherics/pipe/simple/visible/scrubbers,/obj/machinery/atmospherics/pipe/simple/visible/supply,/turf/simulated/floor/tiled/techfloor,/area/maintenance/lower/south) +"aOV" = (/obj/structure/railing{dir = 8},/obj/effect/floor_decal/corner_techfloor_grid{tag = "icon-corner_techfloor_grid (SOUTHEAST)"; icon_state = "corner_techfloor_grid"; dir = 6},/turf/simulated/floor/tiled/techfloor,/area/maintenance/lower/south) +"aOW" = (/obj/structure/railing{dir = 4},/obj/effect/floor_decal/techfloor{tag = "icon-techfloor_edges (WEST)"; icon_state = "techfloor_edges"; dir = 8},/obj/effect/decal/cleanable/dirt,/obj/machinery/atmospherics/pipe/simple/visible/purple{tag = "icon-intact (NORTH)"; icon_state = "intact"; dir = 1},/obj/structure/table/rack,/obj/random/maintenance/research,/obj/random/maintenance/clean,/turf/simulated/floor/tiled/techfloor,/area/maintenance/asmaint2) +"aOX" = (/obj/structure/railing{dir = 8},/obj/effect/floor_decal/techfloor{tag = "icon-techfloor_edges (EAST)"; icon_state = "techfloor_edges"; dir = 4},/obj/effect/decal/cleanable/dirt,/obj/structure/cable/green{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/machinery/atmospherics/pipe/simple/visible/black{tag = "icon-intact (NORTH)"; icon_state = "intact"; dir = 1},/turf/simulated/floor/tiled/techfloor,/area/maintenance/asmaint2) +"aOY" = (/obj/effect/floor_decal/techfloor{tag = "icon-techfloor_edges (WEST)"; icon_state = "techfloor_edges"; dir = 8},/obj/machinery/alarm{dir = 4; icon_state = "alarm0"; pixel_x = -22; pixel_y = 0},/turf/simulated/floor/tiled/techfloor,/area/rnd/workshop) +"aOZ" = (/obj/effect/floor_decal/techfloor{tag = "icon-techfloor_edges (EAST)"; icon_state = "techfloor_edges"; dir = 4},/obj/machinery/power/apc{dir = 4; name = "east bump"; pixel_x = 28},/obj/structure/cable/green,/turf/simulated/floor/tiled/techfloor,/area/rnd/workshop) +"aPa" = (/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (WEST)"; icon_state = "borderfloor"; dir = 8},/obj/effect/floor_decal/corner/mauve/border{tag = "icon-bordercolor (WEST)"; icon_state = "bordercolor"; dir = 8},/obj/machinery/disposal,/obj/structure/disposalpipe/trunk{dir = 4},/turf/simulated/floor/tiled,/area/rnd/lockers) +"aPb" = (/obj/structure/cable/green{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/structure/cable/green{d1 = 1; d2 = 4; icon_state = "1-4"},/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,/area/rnd/lockers) +"aPc" = (/obj/structure/window/reinforced{dir = 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/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled,/area/rnd/lockers) +"aPd" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled,/area/rnd/lockers) +"aPe" = (/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/scrubbers{dir = 9},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled,/area/rnd/lockers) +"aPf" = (/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (EAST)"; icon_state = "borderfloor"; dir = 4},/obj/effect/floor_decal/corner/mauve/border{tag = "icon-bordercolor (EAST)"; icon_state = "bordercolor"; dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals4{tag = "icon-steel_decals4 (NORTHEAST)"; icon_state = "steel_decals4"; dir = 5},/obj/machinery/power/apc{dir = 4; name = "east bump"; pixel_x = 28},/obj/structure/cable/green{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/structure/cable/green{icon_state = "0-8"},/obj/structure/disposalpipe/segment{dir = 8; icon_state = "pipe-c"},/turf/simulated/floor/tiled,/area/rnd/lockers) +"aPg" = (/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (WEST)"; icon_state = "borderfloor"; dir = 8},/obj/effect/floor_decal/corner/mauve/border{tag = "icon-bordercolor (WEST)"; icon_state = "bordercolor"; dir = 8},/turf/simulated/floor/tiled,/area/rnd/research) +"aPh" = (/obj/machinery/r_n_d/destructive_analyzer,/turf/simulated/floor/tiled/steel_grid,/area/rnd/research) +"aPi" = (/obj/machinery/hologram/holopad,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/tiled/steel_grid,/area/rnd/research) +"aPj" = (/obj/machinery/r_n_d/circuit_imprinter,/obj/item/weapon/reagent_containers/glass/beaker/sulphuric,/turf/simulated/floor/tiled/steel_grid,/area/rnd/research) +"aPk" = (/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (EAST)"; icon_state = "borderfloor"; dir = 4},/obj/effect/floor_decal/corner/mauve/border{tag = "icon-bordercolor (EAST)"; icon_state = "bordercolor"; dir = 4},/obj/item/device/radio/intercom{dir = 4; name = "Station Intercom (General)"; pixel_x = 21},/turf/simulated/floor/tiled,/area/rnd/research) +"aPl" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/cable/cyan{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/door/firedoor/glass,/obj/structure/disposalpipe/segment,/obj/machinery/door/airlock/atmos{name = "Atmospherics Maintenance"; req_access = list(24)},/turf/simulated/floor/tiled,/area/engineering/atmos/hallway) +"aPm" = (/obj/structure/lattice,/obj/structure/railing,/obj/machinery/atmospherics/pipe/zpipe/down/supply,/obj/machinery/atmospherics/pipe/zpipe/down/scrubbers,/obj/structure/cable/cyan{d1 = 32; d2 = 2; icon_state = "32-2"},/obj/machinery/door/firedoor/glass,/turf/simulated/open,/area/engineering/atmos/hallway) +"aPn" = (/obj/machinery/atmospherics/pipe/simple/hidden/cyan,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/door/firedoor/glass,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/door/airlock/glass_atmos{name = "Atmospherics"; req_access = list(24)},/turf/simulated/floor/tiled,/area/engineering/atmos/hallway) +"aPo" = (/obj/machinery/atmospherics/pipe/zpipe/up/scrubbers,/obj/machinery/atmospherics/pipe/zpipe/up/supply,/obj/structure/window/reinforced{dir = 1},/obj/structure/window/reinforced{dir = 8},/obj/structure/window/reinforced{dir = 4},/obj/machinery/door/firedoor/glass,/obj/structure/cable/cyan{d2 = 2; icon_state = "0-2"},/obj/structure/cable/cyan{d1 = 16; d2 = 0; icon_state = "16-0"},/obj/structure/railing,/turf/simulated/floor/plating,/area/engineering/atmos/hallway) +"aPp" = (/obj/machinery/atmospherics/pipe/simple/hidden/yellow,/obj/structure/cable/cyan{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/door/firedoor/glass,/obj/structure/disposalpipe/segment,/obj/machinery/door/airlock/glass_atmos{name = "Atmospherics"; req_access = list(24)},/turf/simulated/floor/tiled,/area/engineering/atmos/hallway) +"aPq" = (/turf/simulated/wall,/area/engineering/atmos/monitoring) +"aPr" = (/obj/structure/grille,/obj/structure/window/reinforced{dir = 5; icon_state = "fwindow"},/obj/machinery/door/firedoor,/obj/structure/disposalpipe/segment,/turf/simulated/floor/plating,/area/engineering/atmos/monitoring) +"aPs" = (/obj/structure/grille,/obj/structure/window/reinforced{dir = 5; icon_state = "fwindow"},/obj/machinery/door/firedoor,/turf/simulated/floor/plating,/area/engineering/atmos/monitoring) +"aPt" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/cable/cyan{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/door/firedoor/glass,/obj/machinery/door/airlock/glass_atmos{name = "Atmospherics Monitoring Room"; req_access = list(24)},/turf/simulated/floor/tiled,/area/engineering/atmos/monitoring) +"aPu" = (/obj/structure/cable/cyan{d2 = 2; icon_state = "0-2"},/obj/machinery/power/apc{cell_type = /obj/item/weapon/cell/super; dir = 8; name = "west bump"; pixel_x = -28},/turf/simulated/floor/tiled/techfloor,/area/tether/surfacebase/emergency_storage/atrium) +"aPv" = (/obj/machinery/space_heater,/obj/effect/floor_decal/industrial/outline/grey,/turf/simulated/floor/tiled/techfloor,/area/tether/surfacebase/emergency_storage/atrium) +"aPw" = (/obj/effect/floor_decal/corner_techfloor_grid{tag = "icon-corner_techfloor_grid (NORTHWEST)"; icon_state = "corner_techfloor_grid"; dir = 9},/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/tiled/techfloor,/area/maintenance/lower/south) +"aPx" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/tiled/techfloor,/area/maintenance/lower/south) +"aPy" = (/obj/effect/decal/cleanable/dirt,/obj/structure/table/rack,/obj/random/maintenance/cargo,/obj/random/maintenance/clean,/obj/random/junk,/turf/simulated/floor/tiled/techfloor,/area/maintenance/lower/south) +"aPz" = (/obj/structure/railing{dir = 4},/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/tiled/techfloor,/area/maintenance/lower/south) +"aPA" = (/obj/structure/catwalk,/obj/machinery/atmospherics/pipe/simple/visible/scrubbers,/obj/machinery/atmospherics/pipe/simple/visible/supply,/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/tiled/techfloor,/area/maintenance/lower/south) +"aPB" = (/obj/structure/catwalk,/obj/effect/floor_decal/rust,/turf/simulated/floor/tiled/techfloor,/area/maintenance/lower/south) +"aPC" = (/obj/structure/railing{dir = 8},/obj/effect/floor_decal/techfloor{tag = "icon-techfloor_edges (EAST)"; icon_state = "techfloor_edges"; dir = 4},/obj/effect/decal/cleanable/dirt,/obj/structure/cable/green,/obj/machinery/atmospherics/pipe/simple/visible/black{tag = "icon-intact (NORTH)"; icon_state = "intact"; dir = 1},/turf/simulated/floor/tiled/techfloor,/area/maintenance/asmaint2) +"aPD" = (/obj/effect/floor_decal/techfloor{tag = "icon-techfloor_edges (WEST)"; icon_state = "techfloor_edges"; dir = 8},/obj/structure/table/steel,/obj/item/device/electronic_assembly/large{pixel_y = 6},/turf/simulated/floor/tiled/techfloor,/area/rnd/workshop) +"aPE" = (/obj/structure/bed/chair/office/dark,/turf/simulated/floor/tiled/techfloor,/area/rnd/workshop) +"aPF" = (/obj/effect/floor_decal/techfloor{tag = "icon-techfloor_edges (EAST)"; icon_state = "techfloor_edges"; dir = 4},/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/structure/extinguisher_cabinet{dir = 2; icon_state = "extinguisher_closed"; pixel_x = 30; tag = "icon-extinguisher_closed (WEST)"},/turf/simulated/floor/tiled/techfloor,/area/rnd/workshop) +"aPG" = (/obj/structure/flora/pottedplant,/obj/machinery/light,/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (SOUTHWEST)"; icon_state = "borderfloor"; dir = 10},/obj/effect/floor_decal/corner/mauve/border{tag = "icon-bordercolor (SOUTHWEST)"; icon_state = "bordercolor"; dir = 10},/turf/simulated/floor/tiled,/area/rnd/lockers) +"aPH" = (/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/corner/mauve/border,/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/rnd/lockers) +"aPI" = (/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/corner/mauve/border,/turf/simulated/floor/tiled,/area/rnd/lockers) +"aPJ" = (/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/corner/mauve/border,/obj/machinery/alarm{dir = 1; pixel_y = -25},/turf/simulated/floor/tiled,/area/rnd/lockers) +"aPK" = (/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/corner/mauve/border,/obj/machinery/newscaster{pixel_x = 0; pixel_y = -30},/turf/simulated/floor/tiled,/area/rnd/lockers) +"aPL" = (/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/corner/mauve/border,/obj/item/device/radio/intercom{name = "Station Intercom (General)"; pixel_y = -21},/turf/simulated/floor/tiled,/area/rnd/lockers) +"aPM" = (/obj/machinery/light,/obj/structure/flora/pottedplant,/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (SOUTHEAST)"; icon_state = "borderfloor"; dir = 6},/obj/effect/floor_decal/corner/mauve/border{tag = "icon-bordercolor (SOUTHEAST)"; icon_state = "bordercolor"; dir = 6},/turf/simulated/floor/tiled,/area/rnd/lockers) +"aPN" = (/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (WEST)"; icon_state = "borderfloor"; dir = 8},/obj/effect/floor_decal/corner/mauve/border{tag = "icon-bordercolor (WEST)"; icon_state = "bordercolor"; dir = 8},/obj/machinery/alarm{dir = 4; icon_state = "alarm0"; pixel_x = -22; pixel_y = 0},/turf/simulated/floor/tiled,/area/rnd/research) +"aPO" = (/obj/effect/floor_decal/industrial/warning/corner{dir = 4},/obj/structure/cable/green{d1 = 1; d2 = 4; icon_state = "1-4"},/turf/simulated/floor/tiled/steel_grid,/area/rnd/research) +"aPP" = (/obj/effect/floor_decal/industrial/warning{dir = 1},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/tiled/steel_grid,/area/rnd/research) +"aPQ" = (/obj/effect/floor_decal/industrial/warning{dir = 1},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/cable/green{d1 = 2; d2 = 8; icon_state = "2-8"},/turf/simulated/floor/tiled/steel_grid,/area/rnd/research) +"aPR" = (/obj/effect/floor_decal/industrial/warning{dir = 1},/turf/simulated/floor/tiled/steel_grid,/area/rnd/research) +"aPS" = (/obj/effect/floor_decal/industrial/warning/corner{dir = 1},/turf/simulated/floor/tiled/steel_grid,/area/rnd/research) +"aPT" = (/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (EAST)"; icon_state = "borderfloor"; dir = 4},/obj/effect/floor_decal/corner/mauve/border{tag = "icon-bordercolor (EAST)"; icon_state = "bordercolor"; dir = 4},/obj/machinery/requests_console{department = "Science"; departmentType = 2; name = "Science Requests Console"; pixel_x = 30; pixel_y = 0},/turf/simulated/floor/tiled,/area/rnd/research) +"aPU" = (/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (NORTHWEST)"; icon_state = "borderfloor"; dir = 9},/obj/effect/floor_decal/corner/yellow/border{tag = "icon-bordercolor (NORTHWEST)"; icon_state = "bordercolor"; dir = 9},/obj/effect/floor_decal/steeldecal/steel_decals7,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/cable/cyan{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/cable/cyan{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled,/area/engineering/atmos/hallway) +"aPV" = (/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (NORTH)"; icon_state = "borderfloor"; dir = 1},/obj/effect/floor_decal/corner/yellow/border{tag = "icon-bordercolor (NORTH)"; icon_state = "bordercolor"; dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals7{tag = "icon-steel_decals7 (EAST)"; icon_state = "steel_decals7"; dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals7,/obj/machinery/recharge_station,/obj/structure/cable/cyan{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/tiled,/area/engineering/atmos/hallway) +"aPW" = (/obj/structure/closet/secure_closet/atmos_personal,/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (NORTH)"; icon_state = "borderfloor"; dir = 1},/obj/effect/floor_decal/corner/yellow/border{tag = "icon-bordercolor (NORTH)"; icon_state = "bordercolor"; dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals5,/obj/machinery/atmospherics/unary/vent_pump/on,/obj/structure/cable/cyan{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/tiled,/area/engineering/atmos/hallway) +"aPX" = (/obj/structure/closet/secure_closet/atmos_personal,/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (NORTH)"; icon_state = "borderfloor"; dir = 1},/obj/effect/floor_decal/corner/yellow/border{tag = "icon-bordercolor (NORTH)"; icon_state = "bordercolor"; dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals5,/obj/machinery/atmospherics/unary/vent_scrubber/on,/obj/structure/cable/cyan{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/extinguisher_cabinet{pixel_y = 30},/turf/simulated/floor/tiled,/area/engineering/atmos/hallway) +"aPY" = (/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (NORTH)"; icon_state = "borderfloor"; dir = 1},/obj/effect/floor_decal/corner/yellow/border{tag = "icon-bordercolor (NORTH)"; icon_state = "bordercolor"; dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals5,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/cable/cyan{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/structure/cable/cyan{d1 = 2; d2 = 8; icon_state = "2-8"},/turf/simulated/floor/tiled,/area/engineering/atmos/hallway) +"aPZ" = (/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (NORTH)"; icon_state = "borderfloor"; dir = 1},/obj/effect/floor_decal/corner/yellow/border{tag = "icon-bordercolor (NORTH)"; icon_state = "bordercolor"; dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals5,/obj/structure/closet/secure_closet/engineering_electrical,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/tiled,/area/engineering/atmos/hallway) +"aQa" = (/obj/structure/closet/secure_closet/engineering_welding,/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (NORTH)"; icon_state = "borderfloor"; dir = 1},/obj/effect/floor_decal/corner/yellow/border{tag = "icon-bordercolor (NORTH)"; icon_state = "bordercolor"; dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals5,/obj/machinery/camera/network/engineering,/turf/simulated/floor/tiled,/area/engineering/atmos/hallway) +"aQb" = (/obj/structure/ladder/updown,/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (NORTH)"; icon_state = "borderfloor"; dir = 1},/obj/effect/floor_decal/corner/yellow/border{tag = "icon-bordercolor (NORTH)"; icon_state = "bordercolor"; dir = 1},/obj/machinery/status_display{pixel_y = 30},/turf/simulated/floor/tiled,/area/engineering/atmos/hallway) +"aQc" = (/obj/structure/grille,/obj/structure/window/reinforced{dir = 5; icon_state = "fwindow"},/obj/machinery/door/firedoor,/turf/simulated/floor/plating,/area/engineering/atmos/hallway) +"aQd" = (/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (NORTHWEST)"; icon_state = "borderfloor"; dir = 9},/obj/effect/floor_decal/corner/yellow/border{tag = "icon-bordercolor (NORTHWEST)"; icon_state = "bordercolor"; dir = 9},/obj/effect/floor_decal/borderfloor/corner2{tag = "icon-borderfloorcorner2 (SOUTHWEST)"; icon_state = "borderfloorcorner2"; dir = 10},/obj/effect/floor_decal/borderfloor/corner2{tag = "icon-borderfloorcorner2 (NORTH)"; icon_state = "borderfloorcorner2"; dir = 1},/obj/effect/floor_decal/corner/yellow/bordercorner2{tag = "icon-bordercolorcorner2 (NORTH)"; icon_state = "bordercolorcorner2"; dir = 1},/obj/effect/floor_decal/corner/yellow/bordercorner2{tag = "icon-bordercolorcorner2 (SOUTHWEST)"; icon_state = "bordercolorcorner2"; dir = 10},/obj/machinery/light_switch{pixel_y = 25},/turf/simulated/floor/tiled,/area/engineering/atmos/hallway) +"aQe" = (/obj/machinery/atmospherics/pipe/simple/hidden/cyan,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/tiled,/area/engineering/atmos/hallway) +"aQf" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (NORTH)"; icon_state = "borderfloor"; dir = 1},/obj/effect/floor_decal/corner/yellow/border{tag = "icon-bordercolor (NORTH)"; icon_state = "bordercolor"; dir = 1},/obj/effect/floor_decal/borderfloor/corner2{tag = "icon-borderfloorcorner2 (EAST)"; icon_state = "borderfloorcorner2"; dir = 4},/obj/effect/floor_decal/borderfloor/corner2{tag = "icon-borderfloorcorner2 (NORTH)"; icon_state = "borderfloorcorner2"; dir = 1},/obj/effect/floor_decal/corner/yellow/bordercorner2{tag = "icon-bordercolorcorner2 (EAST)"; icon_state = "bordercolorcorner2"; dir = 4},/obj/effect/floor_decal/corner/yellow/bordercorner2{tag = "icon-bordercolorcorner2 (NORTH)"; icon_state = "bordercolorcorner2"; dir = 1},/obj/structure/cable/cyan{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/tiled,/area/engineering/atmos/hallway) +"aQg" = (/obj/machinery/atmospherics/pipe/simple/hidden/yellow{dir = 5; icon_state = "intact"; tag = "icon-intact (NORTHEAST)"},/obj/structure/cable/cyan{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled,/area/engineering/atmos/hallway) +"aQh" = (/obj/machinery/atmospherics/pipe/simple/hidden/yellow{dir = 10},/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (NORTH)"; icon_state = "borderfloor"; dir = 1},/obj/effect/floor_decal/corner/yellow/border{tag = "icon-bordercolor (NORTH)"; icon_state = "bordercolor"; dir = 1},/obj/effect/floor_decal/borderfloor/corner2{tag = "icon-borderfloorcorner2 (EAST)"; icon_state = "borderfloorcorner2"; dir = 4},/obj/effect/floor_decal/corner/yellow/bordercorner2{tag = "icon-bordercolorcorner2 (EAST)"; icon_state = "bordercolorcorner2"; dir = 4},/obj/machinery/firealarm{dir = 2; layer = 3.3; pixel_x = 0; pixel_y = 26},/turf/simulated/floor/tiled,/area/engineering/atmos/hallway) +"aQi" = (/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (NORTHEAST)"; icon_state = "borderfloor"; dir = 5},/obj/effect/floor_decal/corner/yellow/border{tag = "icon-bordercolor (NORTHEAST)"; icon_state = "bordercolor"; dir = 5},/turf/simulated/floor/tiled,/area/engineering/atmos/hallway) +"aQj" = (/obj/effect/floor_decal/steeldecal/steel_decals5{tag = "icon-steel_decals5 (WEST)"; icon_state = "steel_decals5"; dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals5{tag = "icon-steel_decals5 (EAST)"; icon_state = "steel_decals5"; dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals9,/obj/effect/floor_decal/steeldecal/steel_decals4{tag = "icon-steel_decals4 (NORTH)"; icon_state = "steel_decals4"; dir = 1},/obj/machinery/firealarm{dir = 8; pixel_x = -24},/obj/machinery/disposal,/obj/structure/disposalpipe/trunk{dir = 1},/turf/simulated/floor/tiled,/area/engineering/atmos/monitoring) +"aQk" = (/obj/effect/floor_decal/steeldecal/steel_decals5{tag = "icon-steel_decals5 (EAST)"; icon_state = "steel_decals5"; dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals5{tag = "icon-steel_decals5 (WEST)"; icon_state = "steel_decals5"; dir = 8},/obj/machinery/atmospherics/unary/vent_pump/on{dir = 4},/turf/simulated/floor/tiled,/area/engineering/atmos/monitoring) +"aQl" = (/obj/effect/floor_decal/steeldecal/steel_decals5{tag = "icon-steel_decals5 (EAST)"; icon_state = "steel_decals5"; dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals5{tag = "icon-steel_decals5 (WEST)"; icon_state = "steel_decals5"; dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 5},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 9},/obj/structure/cable/cyan{d1 = 1; d2 = 4; icon_state = "1-4"},/turf/simulated/floor/tiled,/area/engineering/atmos/monitoring) +"aQm" = (/obj/machinery/light{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals5{tag = "icon-steel_decals5 (EAST)"; icon_state = "steel_decals5"; dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals5{tag = "icon-steel_decals5 (WEST)"; icon_state = "steel_decals5"; dir = 8},/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 8},/obj/structure/cable/cyan{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/tiled,/area/engineering/atmos/monitoring) +"aQn" = (/obj/effect/floor_decal/steeldecal/steel_decals5{tag = "icon-steel_decals5 (EAST)"; icon_state = "steel_decals5"; dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals5{tag = "icon-steel_decals5 (WEST)"; icon_state = "steel_decals5"; dir = 8},/obj/structure/cable/cyan{d2 = 8; icon_state = "0-8"},/obj/machinery/power/apc{dir = 1; name = "north bump"; pixel_x = 0; pixel_y = 24},/obj/structure/cable/cyan{d2 = 4; icon_state = "0-4"},/turf/simulated/floor/tiled,/area/engineering/atmos/monitoring) +"aQo" = (/obj/effect/floor_decal/steeldecal/steel_decals5{tag = "icon-steel_decals5 (EAST)"; icon_state = "steel_decals5"; dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals5{tag = "icon-steel_decals5 (WEST)"; icon_state = "steel_decals5"; dir = 8},/obj/structure/cable/cyan{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/light_switch{pixel_y = 25},/turf/simulated/floor/tiled,/area/engineering/atmos/monitoring) +"aQp" = (/obj/machinery/door/airlock/maintenance/int{name = "Emergency Storage"},/obj/structure/cable/cyan{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/door/firedoor/glass,/turf/simulated/floor/tiled/techfloor,/area/engineering/atmos/monitoring) +"aQq" = (/obj/structure/cable/cyan{d1 = 1; d2 = 8; icon_state = "1-8"},/turf/simulated/floor/tiled/techfloor,/area/tether/surfacebase/emergency_storage/atrium) +"aQr" = (/turf/simulated/floor/tiled/techfloor,/area/tether/surfacebase/emergency_storage/atrium) +"aQs" = (/obj/machinery/floodlight,/obj/effect/floor_decal/industrial/outline/yellow,/obj/machinery/alarm{dir = 8; icon_state = "alarm0"; pixel_x = 24},/turf/simulated/floor/tiled/techfloor,/area/tether/surfacebase/emergency_storage/atrium) +"aQt" = (/obj/machinery/door/airlock/maintenance/common,/turf/simulated/floor,/area/maintenance/lower/south) +"aQu" = (/obj/structure/railing{dir = 4},/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/tiled/techfloor,/area/maintenance/lower/south) +"aQv" = (/obj/structure/catwalk,/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/tiled/techfloor,/area/maintenance/lower/south) +"aQw" = (/obj/structure/railing{dir = 8},/obj/structure/railing,/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/tiled/techfloor,/area/maintenance/lower/south) +"aQx" = (/obj/structure/railing{dir = 4},/obj/structure/railing,/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/tiled/techfloor,/area/maintenance/lower/south) +"aQy" = (/obj/effect/floor_decal/techfloor{tag = "icon-techfloor_edges (WEST)"; icon_state = "techfloor_edges"; dir = 8},/obj/effect/decal/cleanable/dirt,/obj/effect/floor_decal/rust,/turf/simulated/floor/tiled/techfloor,/area/maintenance/asmaint2) +"aQz" = (/obj/structure/railing{dir = 8},/obj/effect/floor_decal/techfloor{tag = "icon-techfloor_edges (EAST)"; icon_state = "techfloor_edges"; dir = 4},/obj/effect/decal/cleanable/dirt,/obj/effect/floor_decal/rust,/turf/simulated/floor/tiled/techfloor,/area/maintenance/asmaint2) +"aQA" = (/obj/effect/floor_decal/techfloor{tag = "icon-techfloor_edges (SOUTHWEST)"; icon_state = "techfloor_edges"; dir = 10},/obj/structure/table/steel,/obj/item/stack/material/glass{amount = 50; pixel_x = 3; pixel_y = 3},/turf/simulated/floor/tiled/techfloor,/area/rnd/workshop) +"aQB" = (/obj/effect/floor_decal/techfloor,/obj/structure/table/steel,/obj/machinery/camera/network/research{c_tag = "SCI - Research Dock Hallway Starboard"; dir = 1},/turf/simulated/floor/tiled/techfloor,/area/rnd/workshop) +"aQC" = (/obj/effect/floor_decal/techfloor{tag = "icon-techfloor_edges (SOUTHEAST)"; icon_state = "techfloor_edges"; dir = 6},/obj/structure/table/steel,/obj/item/weapon/storage/bag/circuits/basic,/turf/simulated/floor/tiled/techfloor,/area/rnd/workshop) +"aQD" = (/obj/machinery/door/airlock/maintenance/rnd,/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,/turf/simulated/floor/tiled,/area/rnd/lockers) +"aQE" = (/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (SOUTHWEST)"; icon_state = "borderfloor"; dir = 10},/obj/effect/floor_decal/corner/mauve/border{tag = "icon-bordercolor (SOUTHWEST)"; icon_state = "bordercolor"; dir = 10},/obj/machinery/status_display{pixel_x = -32},/turf/simulated/floor/tiled,/area/rnd/research) +"aQF" = (/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/corner/mauve/border,/obj/machinery/computer/guestpass{dir = 1; icon_state = "guest"; pixel_y = -28; tag = "icon-guest (NORTH)"},/turf/simulated/floor/tiled,/area/rnd/research) +"aQG" = (/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/corner/mauve/border,/obj/effect/floor_decal/borderfloor/corner2{tag = "icon-borderfloorcorner2 (NORTHWEST)"; icon_state = "borderfloorcorner2"; dir = 9},/obj/effect/floor_decal/corner/mauve/bordercorner2{tag = "icon-bordercolorcorner2 (NORTHWEST)"; icon_state = "bordercolorcorner2"; dir = 9},/turf/simulated/floor/tiled,/area/rnd/research) +"aQH" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/tiled,/area/rnd/research) +"aQI" = (/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/corner/mauve/border,/obj/effect/floor_decal/borderfloor/corner2,/obj/effect/floor_decal/corner/mauve/bordercorner2,/turf/simulated/floor/tiled,/area/rnd/research) +"aQJ" = (/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/corner/mauve/border,/obj/structure/reagent_dispensers/acid{density = 0; pixel_x = 0; pixel_y = -30},/turf/simulated/floor/tiled,/area/rnd/research) +"aQK" = (/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (SOUTHEAST)"; icon_state = "borderfloor"; dir = 6},/obj/effect/floor_decal/corner/mauve/border{tag = "icon-bordercolor (SOUTHEAST)"; icon_state = "bordercolor"; dir = 6},/turf/simulated/floor/tiled,/area/rnd/research) +"aQL" = (/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (WEST)"; icon_state = "borderfloor"; dir = 8},/obj/effect/floor_decal/corner/yellow/border{tag = "icon-bordercolor (WEST)"; icon_state = "bordercolor"; dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals7{tag = "icon-steel_decals7 (WEST)"; icon_state = "steel_decals7"; dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals7,/obj/effect/floor_decal/steeldecal/steel_decals10{tag = "icon-steel_decals10 (EAST)"; icon_state = "steel_decals10"; dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals4{tag = "icon-steel_decals4 (NORTHWEST)"; icon_state = "steel_decals4"; dir = 9},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 8},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 8},/obj/structure/cable/cyan{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/disposalpipe/segment{dir = 1; icon_state = "pipe-c"},/turf/simulated/floor/tiled,/area/engineering/atmos/hallway) +"aQM" = (/obj/effect/floor_decal/borderfloor/corner,/obj/effect/floor_decal/corner/yellow/bordercorner,/obj/effect/floor_decal/steeldecal/steel_decals7{tag = "icon-steel_decals7 (NORTH)"; icon_state = "steel_decals7"; dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals7{tag = "icon-steel_decals7 (WEST)"; icon_state = "steel_decals7"; dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals7{tag = "icon-steel_decals7 (EAST)"; icon_state = "steel_decals7"; dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals10{tag = "icon-steel_decals10 (NORTH)"; icon_state = "steel_decals10"; dir = 1},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/disposalpipe/junction{icon_state = "pipe-j1"; dir = 4},/turf/simulated/floor/tiled,/area/engineering/atmos/hallway) +"aQN" = (/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/corner/yellow/border,/obj/effect/floor_decal/steeldecal/steel_decals7{tag = "icon-steel_decals7 (NORTH)"; icon_state = "steel_decals7"; dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals7{tag = "icon-steel_decals7 (WEST)"; icon_state = "steel_decals7"; dir = 8},/obj/machinery/atmospherics/pipe/manifold/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled,/area/engineering/atmos/hallway) +"aQO" = (/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/corner/yellow/border,/obj/effect/floor_decal/steeldecal/steel_decals7{tag = "icon-steel_decals7 (NORTH)"; icon_state = "steel_decals7"; dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals7{tag = "icon-steel_decals7 (WEST)"; icon_state = "steel_decals7"; dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled,/area/engineering/atmos/hallway) +"aQP" = (/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/corner/yellow/border,/obj/effect/floor_decal/steeldecal/steel_decals7{tag = "icon-steel_decals7 (NORTH)"; icon_state = "steel_decals7"; dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals7{tag = "icon-steel_decals7 (WEST)"; icon_state = "steel_decals7"; dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals4{tag = "icon-steel_decals4 (SOUTHEAST)"; icon_state = "steel_decals4"; dir = 6},/obj/machinery/atmospherics/pipe/manifold/hidden/supply,/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,/obj/machinery/light,/obj/structure/cable/cyan{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled,/area/engineering/atmos/hallway) +"aQQ" = (/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/corner/yellow/border,/obj/effect/floor_decal/steeldecal/steel_decals7{tag = "icon-steel_decals7 (NORTH)"; icon_state = "steel_decals7"; dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals7{tag = "icon-steel_decals7 (WEST)"; icon_state = "steel_decals7"; dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/cable/cyan{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/item/device/radio/intercom{name = "Station Intercom (General)"; pixel_y = -21},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled,/area/engineering/atmos/hallway) +"aQR" = (/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/corner/yellow/border,/obj/effect/floor_decal/borderfloor/corner2{tag = "icon-borderfloorcorner2 (NORTHWEST)"; icon_state = "borderfloorcorner2"; dir = 9},/obj/effect/floor_decal/corner/yellow/bordercorner2{tag = "icon-bordercolorcorner2 (NORTHWEST)"; icon_state = "bordercolorcorner2"; dir = 9},/obj/effect/floor_decal/steeldecal/steel_decals7{tag = "icon-steel_decals7 (NORTH)"; icon_state = "steel_decals7"; dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals7{tag = "icon-steel_decals7 (WEST)"; icon_state = "steel_decals7"; dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/cable/cyan{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled,/area/engineering/atmos/hallway) +"aQS" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/cable/cyan{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled/steel_grid,/area/engineering/atmos/hallway) +"aQT" = (/obj/machinery/door/airlock/glass_atmos,/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/cable/cyan{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/door/firedoor/glass,/turf/simulated/floor/tiled,/area/engineering/atmos/hallway) +"aQU" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/cable/cyan{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled,/area/engineering/atmos/hallway) +"aQV" = (/obj/machinery/atmospherics/pipe/simple/hidden/cyan{dir = 5; icon_state = "intact"; tag = "icon-intact-f (NORTHWEST)"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 9},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 9},/obj/structure/cable/cyan{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled,/area/engineering/atmos/hallway) +"aQW" = (/obj/machinery/atmospherics/pipe/simple/hidden/cyan{dir = 4; icon_state = "intact"; tag = "icon-intact-f (EAST)"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/cable/cyan{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/cable/cyan{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/structure/cable/cyan{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled,/area/engineering/atmos/hallway) +"aQX" = (/obj/machinery/atmospherics/pipe/simple/hidden/cyan{dir = 10; icon_state = "intact"; tag = "icon-intact-f (NORTHWEST)"},/obj/structure/cable/cyan{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/structure/disposalpipe/segment{dir = 8; icon_state = "pipe-c"},/turf/simulated/floor/tiled,/area/engineering/atmos/hallway) +"aQY" = (/obj/machinery/atmospherics/pipe/simple/hidden/yellow,/turf/simulated/floor/tiled,/area/engineering/atmos/hallway) +"aQZ" = (/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (EAST)"; icon_state = "borderfloor"; dir = 4},/obj/effect/floor_decal/corner/yellow/border{tag = "icon-bordercolor (EAST)"; icon_state = "bordercolor"; dir = 4},/turf/simulated/floor/tiled,/area/engineering/atmos/hallway) +"aRa" = (/obj/effect/floor_decal/steeldecal/steel_decals5{tag = "icon-steel_decals5 (EAST)"; icon_state = "steel_decals5"; dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals5{tag = "icon-steel_decals5 (WEST)"; icon_state = "steel_decals5"; dir = 8},/turf/simulated/floor/tiled,/area/engineering/atmos/monitoring) +"aRb" = (/obj/effect/floor_decal/steeldecal/steel_decals5{tag = "icon-steel_decals5 (EAST)"; icon_state = "steel_decals5"; dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals5{tag = "icon-steel_decals5 (WEST)"; icon_state = "steel_decals5"; dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals6{tag = "icon-steel_decals6 (NORTHEAST)"; icon_state = "steel_decals6"; dir = 5},/obj/machinery/alarm{dir = 8; icon_state = "alarm0"; pixel_x = 24},/turf/simulated/floor/tiled,/area/engineering/atmos/monitoring) +"aRc" = (/obj/machinery/light/small,/turf/simulated/floor/tiled/techfloor,/area/tether/surfacebase/emergency_storage/atrium) +"aRd" = (/obj/effect/decal/cleanable/dirt,/obj/structure/catwalk,/turf/simulated/floor/tiled/techfloor,/area/maintenance/lower/south) +"aRe" = (/obj/structure/railing,/obj/random/junk,/turf/simulated/floor,/area/maintenance/lower/south) +"aRf" = (/obj/structure/catwalk,/obj/machinery/atmospherics/pipe/simple/visible/scrubbers{dir = 6},/obj/machinery/atmospherics/pipe/simple/visible/supply{dir = 6},/turf/simulated/floor/tiled/techfloor,/area/maintenance/lower/south) +"aRg" = (/obj/structure/catwalk,/obj/machinery/atmospherics/pipe/simple/visible/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/visible/supply{dir = 4},/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/tiled/techfloor,/area/maintenance/lower/south) +"aRh" = (/obj/structure/catwalk,/obj/machinery/atmospherics/pipe/simple/visible/scrubbers{dir = 9},/obj/machinery/atmospherics/pipe/simple/visible/supply{dir = 9},/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/tiled/techfloor,/area/maintenance/lower/south) +"aRi" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/effect/decal/cleanable/dirt,/obj/machinery/atmospherics/pipe/simple/visible/supply,/obj/machinery/atmospherics/pipe/simple/visible/scrubbers,/obj/structure/catwalk,/turf/simulated/floor/plating,/area/rnd/lockers) +"aRj" = (/obj/effect/floor_decal/techfloor{tag = "icon-techfloor_edges (NORTHEAST)"; icon_state = "techfloor_edges"; dir = 5},/obj/structure/railing{dir = 8},/obj/effect/floor_decal/rust,/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/tiled/techfloor,/area/rnd/lockers) +"aRk" = (/turf/simulated/wall/r_wall,/area/server) +"aRl" = (/obj/structure/sign/warning/server_room,/turf/simulated/wall/r_wall,/area/server) +"aRm" = (/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/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/door/airlock/command{name = "Server Room"; req_access = list(30)},/turf/simulated/floor/tiled,/area/server) +"aRn" = (/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (WEST)"; icon_state = "borderfloor"; dir = 8},/obj/effect/floor_decal/corner/yellow/border{tag = "icon-bordercolor (WEST)"; icon_state = "bordercolor"; dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals9,/obj/effect/floor_decal/steeldecal/steel_decals7{tag = "icon-steel_decals7 (WEST)"; icon_state = "steel_decals7"; dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/cable/cyan{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/firealarm{dir = 8; pixel_x = -24},/turf/simulated/floor/tiled,/area/engineering/atmos/hallway) +"aRo" = (/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (EAST)"; icon_state = "borderfloor"; dir = 4},/obj/effect/floor_decal/corner/yellow/border{tag = "icon-bordercolor (EAST)"; icon_state = "bordercolor"; dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals7{tag = "icon-steel_decals7 (EAST)"; icon_state = "steel_decals7"; dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals7{tag = "icon-steel_decals7 (NORTH)"; icon_state = "steel_decals7"; dir = 1},/obj/machinery/light_switch{pixel_x = 25},/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled,/area/engineering/atmos/hallway) +"aRp" = (/turf/simulated/wall,/area/engineering/drone_fabrication) +"aRq" = (/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (SOUTHWEST)"; icon_state = "borderfloor"; dir = 10},/obj/effect/floor_decal/corner/yellow/border{tag = "icon-bordercolor (SOUTHWEST)"; icon_state = "bordercolor"; dir = 10},/obj/effect/floor_decal/borderfloor/corner2{tag = "icon-borderfloorcorner2 (WEST)"; icon_state = "borderfloorcorner2"; dir = 8},/obj/effect/floor_decal/corner/yellow/bordercorner2{tag = "icon-bordercolorcorner2 (WEST)"; icon_state = "bordercolorcorner2"; dir = 8},/turf/simulated/floor/tiled,/area/engineering/atmos/hallway) +"aRr" = (/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/corner/yellow/border,/turf/simulated/floor/tiled,/area/engineering/atmos/hallway) +"aRs" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/effect/floor_decal/borderfloor/corner{tag = "icon-borderfloorcorner (WEST)"; icon_state = "borderfloorcorner"; dir = 8},/obj/effect/floor_decal/corner/yellow/bordercorner{tag = "icon-bordercolorcorner (WEST)"; icon_state = "bordercolorcorner"; dir = 8},/obj/structure/cable/cyan{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/tiled,/area/engineering/atmos/hallway) +"aRt" = (/obj/machinery/atmospherics/pipe/simple/hidden/cyan,/turf/simulated/floor/tiled,/area/engineering/atmos/hallway) +"aRu" = (/obj/machinery/light{dir = 4; icon_state = "tube1"; pixel_x = 0},/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (EAST)"; icon_state = "borderfloor"; dir = 4},/obj/effect/floor_decal/corner/yellow/border{tag = "icon-bordercolor (EAST)"; icon_state = "bordercolor"; dir = 4},/turf/simulated/floor/tiled,/area/engineering/atmos/hallway) +"aRv" = (/obj/machinery/computer/atmos_alert{dir = 4},/turf/simulated/floor/tiled,/area/engineering/atmos/monitoring) +"aRw" = (/obj/structure/bed/chair/office/light,/turf/simulated/floor/tiled,/area/engineering/atmos/monitoring) +"aRx" = (/obj/machinery/computer/security/engineering{dir = 8},/turf/simulated/floor/tiled,/area/engineering/atmos/monitoring) +"aRy" = (/obj/machinery/computer/rcon{dir = 4},/turf/simulated/floor/tiled,/area/engineering/atmos/monitoring) +"aRz" = (/obj/machinery/computer/power_monitor{dir = 8},/turf/simulated/floor/tiled,/area/engineering/atmos/monitoring) +"aRA" = (/obj/effect/floor_decal/corner_techfloor_grid{tag = "icon-corner_techfloor_grid (NORTHWEST)"; icon_state = "corner_techfloor_grid"; dir = 9},/turf/simulated/floor/tiled/techfloor,/area/maintenance/lower/south) +"aRB" = (/obj/structure/railing{dir = 4},/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/turf/simulated/floor/tiled/techfloor,/area/maintenance/lower/south) +"aRC" = (/obj/structure/catwalk,/obj/machinery/atmospherics/pipe/simple/visible/scrubbers,/obj/machinery/atmospherics/pipe/simple/visible/supply,/obj/structure/cable{d1 = 2; d2 = 8; icon_state = "2-8"},/turf/simulated/floor/tiled/techfloor,/area/maintenance/lower/south) +"aRD" = (/obj/effect/floor_decal/techfloor/corner{tag = "icon-techfloor_corners (EAST)"; icon_state = "techfloor_corners"; dir = 4},/obj/effect/decal/cleanable/dirt,/obj/effect/floor_decal/rust,/obj/machinery/atmospherics/pipe/simple/visible/black{dir = 5},/obj/random/tool,/turf/simulated/floor/tiled/techfloor,/area/maintenance/asmaint2) +"aRE" = (/obj/machinery/alarm{dir = 4; icon_state = "alarm0"; pixel_x = -22},/obj/effect/decal/cleanable/dirt,/obj/effect/floor_decal/rust,/obj/structure/cable/green{d1 = 2; d2 = 4; icon_state = "2-4"},/turf/simulated/floor/plating,/area/maintenance/asmaint2) +"aRF" = (/obj/structure/cable/green{icon_state = "16-0"},/obj/structure/cable/green{icon_state = "0-4"},/obj/machinery/atmospherics/pipe/zpipe/up/scrubbers{tag = "icon-up-scrubbers (EAST)"; icon_state = "up-scrubbers"; dir = 4},/obj/machinery/atmospherics/pipe/zpipe/up/supply{tag = "icon-up-supply (EAST)"; icon_state = "up-supply"; dir = 4},/obj/effect/decal/cleanable/dirt,/obj/structure/cable/green{d2 = 8; icon_state = "0-8"},/turf/simulated/floor/plating,/area/maintenance/asmaint2) +"aRG" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/visible/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/visible/scrubbers{dir = 4},/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/plating,/area/maintenance/asmaint2) +"aRH" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/visible/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/visible/scrubbers{dir = 4},/obj/effect/decal/cleanable/dirt,/obj/structure/railing{dir = 4},/turf/simulated/floor/plating,/area/maintenance/asmaint2) +"aRI" = (/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/effect/decal/cleanable/dirt,/obj/machinery/atmospherics/pipe/manifold/visible/supply{dir = 4},/obj/machinery/atmospherics/pipe/manifold/visible/scrubbers{dir = 4},/obj/structure/catwalk,/turf/simulated/floor/plating,/area/maintenance/asmaint2) +"aRJ" = (/obj/effect/floor_decal/techfloor{tag = "icon-techfloor_edges (EAST)"; icon_state = "techfloor_edges"; dir = 4},/obj/structure/railing{dir = 8},/obj/effect/floor_decal/rust,/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/tiled/techfloor,/area/maintenance/asmaint2) +"aRK" = (/obj/machinery/computer/message_monitor{dir = 4},/obj/effect/floor_decal/techfloor{tag = "icon-techfloor_edges (NORTHWEST)"; icon_state = "techfloor_edges"; dir = 9},/turf/simulated/floor/tiled/techfloor,/area/server) +"aRL" = (/obj/structure/bed/chair/office/light{dir = 8},/obj/effect/floor_decal/techfloor{tag = "icon-techfloor_edges (NORTH)"; icon_state = "techfloor_edges"; dir = 1},/turf/simulated/floor/tiled/techfloor,/area/server) +"aRM" = (/obj/effect/floor_decal/techfloor{tag = "icon-techfloor_edges (NORTH)"; icon_state = "techfloor_edges"; dir = 1},/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/server) +"aRN" = (/obj/effect/floor_decal/techfloor{tag = "icon-techfloor_edges (NORTH)"; icon_state = "techfloor_edges"; dir = 1},/obj/machinery/camera/network/research,/turf/simulated/floor/tiled/techfloor,/area/server) +"aRO" = (/obj/machinery/atmospherics/portables_connector,/obj/machinery/portable_atmospherics/canister/nitrogen,/obj/effect/floor_decal/techfloor{tag = "icon-techfloor_edges (NORTH)"; icon_state = "techfloor_edges"; dir = 1},/obj/effect/floor_decal/industrial/outline/blue,/turf/simulated/floor/tiled/techfloor,/area/server) +"aRP" = (/obj/machinery/atmospherics/unary/freezer{dir = 2; icon_state = "freezer_1"; use_power = 1; power_setting = 20; set_temperature = 73},/obj/effect/floor_decal/techfloor{tag = "icon-techfloor_edges (NORTHEAST)"; icon_state = "techfloor_edges"; dir = 5},/obj/effect/floor_decal/industrial/outline/blue,/turf/simulated/floor/tiled/techfloor,/area/server) +"aRQ" = (/obj/machinery/light{dir = 8; icon_state = "tube1"; pixel_y = 0},/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (WEST)"; icon_state = "borderfloor"; dir = 8},/obj/effect/floor_decal/corner/yellow/border{tag = "icon-bordercolor (WEST)"; icon_state = "bordercolor"; dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals7{tag = "icon-steel_decals7 (WEST)"; icon_state = "steel_decals7"; dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals7,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/cable/cyan{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/tiled,/area/engineering/atmos/hallway) +"aRR" = (/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (EAST)"; icon_state = "borderfloor"; dir = 4},/obj/effect/floor_decal/corner/yellow/border{tag = "icon-bordercolor (EAST)"; icon_state = "bordercolor"; dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals7{tag = "icon-steel_decals7 (EAST)"; icon_state = "steel_decals7"; dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals7{tag = "icon-steel_decals7 (NORTH)"; icon_state = "steel_decals7"; dir = 1},/obj/machinery/alarm{dir = 8; icon_state = "alarm0"; pixel_x = 24},/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled,/area/engineering/atmos/hallway) +"aRS" = (/obj/item/weapon/pickaxe,/turf/simulated/floor/tiled/techfloor,/area/engineering/atmos/hallway) +"aRT" = (/obj/effect/floor_decal/techfloor{tag = "icon-techfloor_edges (NORTHWEST)"; icon_state = "techfloor_edges"; dir = 9},/obj/machinery/recharge_station,/turf/simulated/floor/tiled/techfloor,/area/engineering/drone_fabrication) +"aRU" = (/obj/effect/floor_decal/techfloor{tag = "icon-techfloor_edges (NORTH)"; icon_state = "techfloor_edges"; dir = 1},/obj/machinery/computer/cryopod/robot{pixel_y = 30},/turf/simulated/floor/tiled/techfloor,/area/engineering/drone_fabrication) +"aRV" = (/obj/effect/floor_decal/techfloor{tag = "icon-techfloor_edges (NORTHEAST)"; icon_state = "techfloor_edges"; dir = 5},/obj/machinery/cryopod/robot,/turf/simulated/floor/tiled/techfloor,/area/engineering/drone_fabrication) +"aRW" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (WEST)"; icon_state = "borderfloor"; dir = 8},/obj/effect/floor_decal/corner/yellow/border{tag = "icon-bordercolor (WEST)"; icon_state = "bordercolor"; dir = 8},/obj/structure/cable/cyan{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/tiled,/area/engineering/atmos/hallway) +"aRX" = (/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (EAST)"; icon_state = "borderfloor"; dir = 4},/obj/effect/floor_decal/corner/yellow/border{tag = "icon-bordercolor (EAST)"; icon_state = "bordercolor"; dir = 4},/obj/machinery/alarm{dir = 8; icon_state = "alarm0"; pixel_x = 24},/turf/simulated/floor/tiled,/area/engineering/atmos/hallway) +"aRY" = (/obj/structure/table/glass,/obj/item/weapon/wrench,/turf/simulated/floor/tiled,/area/engineering/atmos/monitoring) +"aRZ" = (/obj/machinery/computer/atmoscontrol{dir = 1},/turf/simulated/floor/tiled,/area/engineering/atmos/monitoring) +"aSa" = (/obj/structure/table/glass,/obj/machinery/camera/network/engineering{c_tag = "ENG - Pump Station"; dir = 1},/turf/simulated/floor/tiled,/area/engineering/atmos/monitoring) +"aSb" = (/obj/structure/table/glass,/obj/item/weapon/storage/box/donkpockets,/turf/simulated/floor/tiled,/area/engineering/atmos/monitoring) +"aSc" = (/obj/machinery/computer/station_alert{dir = 1},/turf/simulated/floor/tiled,/area/engineering/atmos/monitoring) +"aSd" = (/obj/structure/table/glass,/obj/item/device/radio/intercom{name = "Station Intercom (General)"; pixel_y = -21},/turf/simulated/floor/tiled,/area/engineering/atmos/monitoring) +"aSe" = (/obj/effect/decal/cleanable/dirt,/obj/structure/catwalk,/obj/structure/closet/crate,/obj/random/maintenance/clean,/obj/random/firstaid,/obj/random/maintenance/engineering,/obj/random/maintenance/security,/turf/simulated/floor,/area/maintenance/lower/south) +"aSf" = (/obj/effect/floor_decal/rust,/obj/effect/decal/cleanable/dirt,/obj/structure/catwalk,/obj/structure/closet/crate,/obj/random/maintenance/clean,/obj/random/maintenance/clean,/obj/random/junk,/obj/random/maintenance/engineering,/turf/simulated/floor,/area/maintenance/lower/south) +"aSg" = (/obj/effect/decal/cleanable/dirt,/obj/structure/catwalk,/obj/random/junk,/turf/simulated/floor,/area/maintenance/lower/south) +"aSh" = (/obj/effect/decal/cleanable/dirt,/obj/structure/catwalk,/turf/simulated/floor,/area/maintenance/lower/south) +"aSi" = (/obj/effect/floor_decal/rust,/obj/effect/decal/cleanable/dirt,/obj/structure/catwalk,/turf/simulated/floor,/area/maintenance/lower/south) +"aSj" = (/obj/effect/floor_decal/rust,/obj/structure/table/rack,/obj/random/maintenance/clean,/obj/random/maintenance/clean,/obj/structure/catwalk,/obj/random/medical/lite,/obj/random/maintenance/cargo,/turf/simulated/floor/tiled/techfloor,/area/maintenance/lower/south) +"aSk" = (/obj/machinery/light/small,/obj/effect/floor_decal/corner_techfloor_grid/full,/turf/simulated/floor/tiled/techfloor,/area/maintenance/lower/south) +"aSl" = (/obj/structure/railing{dir = 4},/obj/effect/floor_decal/corner_techfloor_grid{tag = "icon-corner_techfloor_grid (SOUTHWEST)"; icon_state = "corner_techfloor_grid"; dir = 10},/obj/machinery/power/apc{dir = 2; name = "south bump"; pixel_y = -28},/obj/structure/cable,/turf/simulated/floor/tiled/techfloor,/area/maintenance/lower/south) +"aSm" = (/obj/structure/catwalk,/obj/effect/floor_decal/corner_techfloor_grid{tag = "icon-corner_techfloor_grid (WEST)"; icon_state = "corner_techfloor_grid"; dir = 8},/obj/machinery/atmospherics/pipe/simple/visible/scrubbers,/obj/machinery/atmospherics/pipe/simple/visible/supply,/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0},/turf/simulated/floor/tiled/techfloor,/area/maintenance/lower/south) +"aSn" = (/obj/structure/railing{dir = 8},/obj/structure/railing{dir = 1},/turf/simulated/floor/tiled/techfloor,/area/maintenance/lower/south) +"aSo" = (/obj/structure/railing{dir = 1},/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/tiled/techfloor,/area/maintenance/lower/south) +"aSp" = (/obj/structure/railing{dir = 1},/obj/effect/floor_decal/corner_techfloor_grid,/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/tiled/techfloor,/area/maintenance/lower/south) +"aSq" = (/obj/effect/floor_decal/corner_techfloor_grid/full{tag = "icon-corner_techfloor_grid_full (EAST)"; icon_state = "corner_techfloor_grid_full"; dir = 4},/turf/simulated/floor/tiled/techfloor,/area/maintenance/lower/south) +"aSr" = (/obj/effect/decal/cleanable/dirt,/obj/structure/lattice,/obj/structure/cable/green{icon_state = "32-1"},/obj/machinery/door/firedoor/glass,/turf/simulated/open,/area/maintenance/asmaint2) +"aSs" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/effect/decal/cleanable/dirt,/obj/machinery/atmospherics/pipe/simple/visible/supply,/obj/machinery/atmospherics/pipe/simple/visible/scrubbers,/obj/structure/catwalk,/turf/simulated/floor/plating,/area/maintenance/asmaint2) +"aSt" = (/obj/effect/floor_decal/techfloor{tag = "icon-techfloor_edges (EAST)"; icon_state = "techfloor_edges"; dir = 4},/obj/structure/railing{dir = 8},/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/tiled/techfloor,/area/maintenance/asmaint2) +"aSu" = (/obj/machinery/computer/rdservercontrol{dir = 4},/obj/effect/floor_decal/techfloor{tag = "icon-techfloor_edges (WEST)"; icon_state = "techfloor_edges"; dir = 8},/obj/machinery/alarm{dir = 4; icon_state = "alarm0"; pixel_x = -22; pixel_y = 0},/turf/simulated/floor/tiled/techfloor,/area/server) +"aSv" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 6},/turf/simulated/floor/tiled/techfloor,/area/server) +"aSw" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 9},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 5},/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/tiled/techfloor,/area/server) +"aSx" = (/obj/machinery/atmospherics/unary/vent_pump/on{dir = 8},/turf/simulated/floor/tiled/techfloor,/area/server) +"aSy" = (/obj/machinery/atmospherics/pipe/manifold/hidden{dir = 8; icon_state = "map"; tag = "icon-manifold-f (WEST)"},/turf/simulated/floor/tiled/techfloor,/area/server) +"aSz" = (/obj/machinery/atmospherics/pipe/simple/hidden{dir = 9; icon_state = "intact"; tag = "icon-intact-f (NORTHWEST)"},/obj/effect/floor_decal/techfloor{tag = "icon-techfloor_edges (EAST)"; icon_state = "techfloor_edges"; dir = 4},/obj/machinery/light{icon_state = "tube1"; dir = 4},/turf/simulated/floor/tiled/techfloor,/area/server) +"aSA" = (/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (WEST)"; icon_state = "borderfloor"; dir = 8},/obj/effect/floor_decal/corner/yellow/border{tag = "icon-bordercolor (WEST)"; icon_state = "bordercolor"; dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals7{tag = "icon-steel_decals7 (WEST)"; icon_state = "steel_decals7"; dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/cable/cyan{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/effect/floor_decal/steeldecal/steel_decals7,/obj/machinery/status_display{pixel_x = -32},/turf/simulated/floor/tiled,/area/engineering/atmos/hallway) +"aSB" = (/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (EAST)"; icon_state = "borderfloor"; dir = 4},/obj/effect/floor_decal/corner/yellow/border{tag = "icon-bordercolor (EAST)"; icon_state = "bordercolor"; dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals7{tag = "icon-steel_decals7 (EAST)"; icon_state = "steel_decals7"; dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals7{tag = "icon-steel_decals7 (NORTH)"; icon_state = "steel_decals7"; dir = 1},/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled,/area/engineering/atmos/hallway) +"aSC" = (/turf/simulated/floor/tiled/techfloor,/area/engineering/atmos/hallway) +"aSD" = (/obj/effect/floor_decal/techfloor{tag = "icon-techfloor_edges (WEST)"; icon_state = "techfloor_edges"; dir = 8},/obj/effect/floor_decal/industrial/warning,/turf/simulated/floor/tiled/techfloor,/area/engineering/drone_fabrication) +"aSE" = (/obj/effect/floor_decal/industrial/warning,/turf/simulated/floor/tiled/techfloor,/area/engineering/drone_fabrication) +"aSF" = (/obj/effect/floor_decal/corner_techfloor_grid{tag = "icon-corner_techfloor_grid (EAST)"; icon_state = "corner_techfloor_grid"; dir = 4},/obj/effect/floor_decal/industrial/warning,/obj/effect/landmark{name = "JoinLateCyborg"},/turf/simulated/floor/tiled/techfloor,/area/engineering/drone_fabrication) +"aSG" = (/obj/effect/floor_decal/techfloor{tag = "icon-techfloor_edges (NORTH)"; icon_state = "techfloor_edges"; dir = 1},/obj/effect/floor_decal/industrial/warning,/obj/machinery/alarm{frequency = 1441; pixel_y = 22},/turf/simulated/floor/tiled/techfloor,/area/engineering/drone_fabrication) +"aSH" = (/obj/effect/floor_decal/techfloor{tag = "icon-techfloor_edges (NORTHEAST)"; icon_state = "techfloor_edges"; dir = 5},/obj/effect/floor_decal/industrial/warning/corner{dir = 8},/obj/structure/cable/cyan{d2 = 2; icon_state = "0-2"},/obj/machinery/power/apc{dir = 4; name = "east bump"; pixel_x = 28},/obj/machinery/light_switch{pixel_y = 25},/turf/simulated/floor/tiled/techfloor,/area/engineering/drone_fabrication) +"aSI" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 5},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 5},/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (WEST)"; icon_state = "borderfloor"; dir = 8},/obj/effect/floor_decal/corner/yellow/border{tag = "icon-bordercolor (WEST)"; icon_state = "bordercolor"; dir = 8},/obj/effect/floor_decal/borderfloor/corner2{tag = "icon-borderfloorcorner2 (SOUTHWEST)"; icon_state = "borderfloorcorner2"; dir = 10},/obj/effect/floor_decal/corner/yellow/bordercorner2{tag = "icon-bordercolorcorner2 (SOUTHWEST)"; icon_state = "bordercolorcorner2"; dir = 10},/obj/structure/cable/cyan{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/tiled,/area/engineering/atmos/hallway) +"aSJ" = (/obj/machinery/atmospherics/pipe/simple/hidden/cyan,/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/turf/simulated/floor/tiled,/area/engineering/atmos/hallway) +"aSK" = (/obj/machinery/atmospherics/pipe/simple/hidden/yellow,/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/turf/simulated/floor/tiled,/area/engineering/atmos/hallway) +"aSL" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 10},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 10},/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (EAST)"; icon_state = "borderfloor"; dir = 4},/obj/effect/floor_decal/corner/yellow/border{tag = "icon-bordercolor (EAST)"; icon_state = "bordercolor"; dir = 4},/turf/simulated/floor/tiled,/area/engineering/atmos/hallway) +"aSM" = (/turf/simulated/wall/r_wall,/area/engineering/atmos/storage) +"aSN" = (/obj/structure/catwalk,/obj/effect/floor_decal/corner_techfloor_grid/full,/obj/machinery/atmospherics/pipe/simple/visible/scrubbers,/obj/machinery/atmospherics/pipe/simple/visible/supply,/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0},/turf/simulated/floor/tiled/techfloor,/area/maintenance/lower/south) +"aSO" = (/obj/structure/catwalk,/obj/effect/floor_decal/corner_techfloor_grid{tag = "icon-corner_techfloor_grid (SOUTHWEST)"; icon_state = "corner_techfloor_grid"; dir = 10},/turf/simulated/floor/tiled/techfloor,/area/maintenance/lower/south) +"aSP" = (/obj/structure/railing{dir = 8},/obj/effect/floor_decal/corner_techfloor_grid{tag = "icon-corner_techfloor_grid (SOUTHWEST)"; icon_state = "corner_techfloor_grid"; dir = 10},/obj/random/junk,/turf/simulated/floor/tiled/techfloor,/area/maintenance/lower/south) +"aSQ" = (/obj/effect/floor_decal/corner_techfloor_grid{tag = "icon-corner_techfloor_grid (SOUTHWEST)"; icon_state = "corner_techfloor_grid"; dir = 10},/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/tiled/techfloor,/area/maintenance/lower/south) +"aSR" = (/obj/effect/floor_decal/corner_techfloor_grid/full{tag = "icon-corner_techfloor_grid_full (EAST)"; icon_state = "corner_techfloor_grid_full"; dir = 4},/obj/effect/decal/cleanable/dirt,/obj/structure/closet/crate,/obj/random/maintenance/clean,/obj/random/maintenance/clean,/obj/random/maintenance/cargo,/obj/random/maintenance/research,/turf/simulated/floor/tiled/techfloor,/area/maintenance/lower/south) +"aSS" = (/obj/structure/railing{dir = 4},/obj/effect/floor_decal/techfloor{tag = "icon-techfloor_edges (WEST)"; icon_state = "techfloor_edges"; dir = 8},/obj/effect/decal/cleanable/dirt,/obj/effect/floor_decal/rust,/obj/machinery/atmospherics/pipe/simple/visible/purple{tag = "icon-intact (NORTH)"; icon_state = "intact"; dir = 1},/turf/simulated/floor/tiled/techfloor,/area/maintenance/asmaint2) +"aST" = (/obj/structure/catwalk,/obj/machinery/alarm{dir = 8; icon_state = "alarm0"; pixel_x = 24},/obj/effect/decal/cleanable/dirt,/mob/living/simple_animal/mouse,/turf/simulated/floor/tiled/techfloor,/area/maintenance/asmaint2) +"aSU" = (/obj/effect/floor_decal/techfloor{tag = "icon-techfloor_edges (WEST)"; icon_state = "techfloor_edges"; dir = 8},/obj/machinery/firealarm{dir = 8; pixel_x = -24},/turf/simulated/floor/tiled/techfloor,/area/server) +"aSV" = (/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 1},/obj/structure/cable/green{d1 = 2; d2 = 4; icon_state = "2-4"},/turf/simulated/floor/tiled/techfloor,/area/server) +"aSW" = (/obj/machinery/hologram/holopad,/obj/structure/cable/green{d1 = 1; d2 = 8; icon_state = "1-8"},/turf/simulated/floor/tiled/techfloor,/area/server) +"aSX" = (/obj/machinery/r_n_d/server/robotics,/obj/structure/window/reinforced{dir = 1},/obj/structure/window/reinforced{dir = 8},/turf/simulated/floor/bluegrid{name = "Server Base"; nitrogen = 500; oxygen = 0; temperature = 80},/area/server) +"aSY" = (/obj/machinery/atmospherics/pipe/simple/hidden,/obj/structure/window/reinforced{dir = 1},/turf/simulated/floor/bluegrid{name = "Server Base"; nitrogen = 500; oxygen = 0; temperature = 80},/area/server) +"aSZ" = (/obj/machinery/r_n_d/server/core,/obj/structure/window/reinforced{dir = 1},/turf/simulated/floor/bluegrid{name = "Server Base"; nitrogen = 500; oxygen = 0; temperature = 80},/area/server) +"aTa" = (/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (WEST)"; icon_state = "borderfloor"; dir = 8},/obj/effect/floor_decal/corner/yellow/border{tag = "icon-bordercolor (WEST)"; icon_state = "bordercolor"; dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/cable/cyan{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/effect/floor_decal/steeldecal/steel_decals7,/obj/effect/floor_decal/steeldecal/steel_decals7{tag = "icon-steel_decals7 (WEST)"; icon_state = "steel_decals7"; dir = 8},/obj/structure/cable/cyan{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/machinery/camera/network/engineering{c_tag = "ENG - Locker Room"; dir = 4},/turf/simulated/floor/tiled,/area/engineering/atmos/hallway) +"aTb" = (/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (EAST)"; icon_state = "borderfloor"; dir = 4},/obj/effect/floor_decal/corner/yellow/border{tag = "icon-bordercolor (EAST)"; icon_state = "bordercolor"; dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals7{tag = "icon-steel_decals7 (EAST)"; icon_state = "steel_decals7"; dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals7{tag = "icon-steel_decals7 (NORTH)"; icon_state = "steel_decals7"; dir = 1},/obj/machinery/power/apc{dir = 4; name = "east bump"; pixel_x = 28},/obj/structure/cable/cyan{d2 = 8; icon_state = "0-8"},/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled,/area/engineering/atmos/hallway) +"aTc" = (/obj/structure/bed/chair{dir = 4},/turf/simulated/floor/tiled/steel_dirty,/area/engineering/drone_fabrication) +"aTd" = (/obj/machinery/computer/drone_control{dir = 8},/turf/simulated/floor/tiled/steel_dirty,/area/engineering/drone_fabrication) +"aTe" = (/obj/machinery/drone_fabricator,/turf/simulated/floor/tiled/steel_dirty,/area/engineering/drone_fabrication) +"aTf" = (/turf/simulated/floor/tiled/steel_dirty,/area/engineering/drone_fabrication) +"aTg" = (/obj/effect/floor_decal/techfloor/corner,/obj/effect/floor_decal/techfloor/corner{tag = "icon-techfloor_corners (EAST)"; icon_state = "techfloor_corners"; dir = 4},/obj/effect/floor_decal/industrial/warning{dir = 8},/obj/structure/cable/cyan{d1 = 1; d2 = 4; icon_state = "1-4"},/turf/simulated/floor/tiled/techfloor,/area/engineering/drone_fabrication) +"aTh" = (/obj/structure/cable/cyan{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/door/firedoor/glass,/obj/machinery/door/airlock/engineering{name = "Engineering Drone Fabrication"; req_one_access = list(11,24)},/turf/simulated/floor/tiled,/area/engineering/drone_fabrication) +"aTi" = (/obj/structure/cable/cyan{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/structure/cable/cyan{d1 = 1; d2 = 4; icon_state = "1-4"},/turf/simulated/floor/tiled,/area/engineering/atmos/hallway) +"aTj" = (/obj/machinery/atmospherics/pipe/simple/hidden/cyan,/obj/structure/cable/cyan{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/tiled,/area/engineering/atmos/hallway) +"aTk" = (/obj/machinery/atmospherics/pipe/simple/hidden/yellow,/obj/structure/cable/cyan{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/tiled,/area/engineering/atmos/hallway) +"aTl" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/effect/floor_decal/borderfloor/corner{tag = "icon-borderfloorcorner (EAST)"; icon_state = "borderfloorcorner"; dir = 4},/obj/effect/floor_decal/corner/yellow/bordercorner{tag = "icon-bordercolorcorner (EAST)"; icon_state = "bordercolorcorner"; dir = 4},/obj/structure/cable/cyan{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/tiled,/area/engineering/atmos/hallway) +"aTm" = (/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (NORTH)"; icon_state = "borderfloor"; dir = 1},/obj/effect/floor_decal/corner/yellow/border{tag = "icon-bordercolor (NORTH)"; icon_state = "bordercolor"; dir = 1},/obj/structure/cable/cyan{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/extinguisher_cabinet{pixel_y = 30},/turf/simulated/floor/tiled,/area/engineering/atmos/hallway) +"aTn" = (/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (NORTH)"; icon_state = "borderfloor"; dir = 1},/obj/effect/floor_decal/corner/yellow/border{tag = "icon-bordercolor (NORTH)"; icon_state = "bordercolor"; dir = 1},/obj/structure/cable/cyan{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/power/apc{dir = 1; name = "north bump"; pixel_x = 0; pixel_y = 24},/obj/structure/cable/cyan{d2 = 8; icon_state = "0-8"},/turf/simulated/floor/tiled,/area/engineering/atmos/hallway) +"aTo" = (/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (NORTH)"; icon_state = "borderfloor"; dir = 1},/obj/effect/floor_decal/corner/yellow/border{tag = "icon-bordercolor (NORTH)"; icon_state = "bordercolor"; dir = 1},/obj/structure/cable/cyan{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/tiled,/area/engineering/atmos/hallway) +"aTp" = (/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (NORTHEAST)"; icon_state = "borderfloor"; dir = 5},/obj/effect/floor_decal/corner/yellow/border{tag = "icon-bordercolor (NORTHEAST)"; icon_state = "bordercolor"; dir = 5},/obj/effect/floor_decal/borderfloor/corner2{tag = "icon-borderfloorcorner2 (NORTHEAST)"; icon_state = "borderfloorcorner2"; dir = 5},/obj/effect/floor_decal/corner/yellow/bordercorner2{tag = "icon-bordercolorcorner2 (NORTHEAST)"; icon_state = "bordercolorcorner2"; dir = 5},/obj/structure/cable/cyan{d1 = 2; d2 = 8; icon_state = "2-8"},/turf/simulated/floor/tiled,/area/engineering/atmos/hallway) +"aTq" = (/obj/machinery/light_switch{pixel_y = 25},/turf/simulated/floor,/area/engineering/atmos/storage) +"aTr" = (/obj/machinery/alarm{frequency = 1441; pixel_y = 22},/turf/simulated/floor,/area/engineering/atmos/storage) +"aTs" = (/obj/machinery/space_heater,/turf/simulated/floor,/area/engineering/atmos/storage) +"aTt" = (/obj/machinery/door/airlock/multi_tile/metal/mait,/obj/machinery/door/firedoor/glass,/obj/machinery/atmospherics/pipe/simple/visible/scrubbers,/obj/machinery/atmospherics/pipe/simple/visible/supply,/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0},/turf/simulated/floor/tiled/techfloor/grid,/area/maintenance/lower/south) +"aTu" = (/obj/effect/floor_decal/techfloor{tag = "icon-techfloor_edges (SOUTHWEST)"; icon_state = "techfloor_edges"; dir = 10},/obj/effect/decal/cleanable/dirt,/obj/effect/floor_decal/rust,/obj/machinery/atmospherics/pipe/simple/visible/purple{tag = "icon-intact (NORTHEAST)"; icon_state = "intact"; dir = 5},/turf/simulated/floor/tiled/techfloor,/area/maintenance/asmaint2) +"aTv" = (/obj/effect/floor_decal/techfloor,/obj/effect/decal/cleanable/dirt,/obj/effect/floor_decal/rust,/obj/structure/closet,/obj/random/maintenance/research,/obj/random/maintenance/research,/obj/random/maintenance/engineering,/obj/random/drinkbottle,/obj/random/medical/lite,/obj/random/cigarettes,/turf/simulated/floor/tiled/techfloor,/area/maintenance/asmaint2) +"aTw" = (/obj/structure/railing{dir = 1},/obj/effect/floor_decal/techfloor,/obj/effect/decal/cleanable/dirt,/obj/effect/floor_decal/rust,/obj/machinery/atmospherics/pipe/simple/visible/purple{tag = "icon-intact (EAST)"; icon_state = "intact"; dir = 4},/turf/simulated/floor/tiled/techfloor,/area/maintenance/asmaint2) +"aTx" = (/obj/effect/floor_decal/techfloor,/obj/machinery/light_switch{pixel_x = -25},/obj/item/device/radio/intercom{name = "Station Intercom (General)"; pixel_y = -21},/turf/simulated/floor/tiled/techfloor/grid,/area/server) +"aTy" = (/obj/effect/floor_decal/techfloor,/obj/machinery/power/apc{dir = 2; name = "south bump"; pixel_y = -28},/obj/structure/cable/green,/turf/simulated/floor/tiled/techfloor,/area/server) +"aTz" = (/obj/machinery/door/window/westleft{dir = 8; name = "Server Room"; opacity = 0; req_access = list(30)},/obj/machinery/door/window/eastleft{name = "Server Room"},/obj/structure/window/reinforced{dir = 1},/turf/simulated/floor/tiled/techfloor/grid,/area/server) +"aTA" = (/obj/machinery/atmospherics/unary/vent_pump{dir = 4; icon_state = "map_vent_out"; use_power = 1},/turf/simulated/floor/bluegrid{name = "Server Base"; nitrogen = 500; oxygen = 0; temperature = 80},/area/server) +"aTB" = (/obj/machinery/atmospherics/pipe/manifold/hidden,/obj/machinery/alarm/server{dir = 1; pixel_x = 0; pixel_y = -22},/turf/simulated/floor/bluegrid{name = "Server Base"; nitrogen = 500; oxygen = 0; temperature = 80},/area/server) +"aTC" = (/obj/machinery/atmospherics/unary/vent_pump{dir = 8; external_pressure_bound = 0; external_pressure_bound_default = 0; icon_state = "map_vent_in"; initialize_directions = 1; internal_pressure_bound = 4000; internal_pressure_bound_default = 4000; pressure_checks = 2; pressure_checks_default = 2; pump_direction = 0; use_power = 1},/turf/simulated/floor/bluegrid{name = "Server Base"; nitrogen = 500; oxygen = 0; temperature = 80},/area/server) +"aTD" = (/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (WEST)"; icon_state = "borderfloor"; dir = 8},/obj/effect/floor_decal/corner/yellow/border{tag = "icon-bordercolor (WEST)"; icon_state = "bordercolor"; dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals7{tag = "icon-steel_decals7 (WEST)"; icon_state = "steel_decals7"; dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals7,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/cable/cyan{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/tiled,/area/engineering/atmos/hallway) +"aTE" = (/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (EAST)"; icon_state = "borderfloor"; dir = 4},/obj/effect/floor_decal/corner/yellow/border{tag = "icon-bordercolor (EAST)"; icon_state = "bordercolor"; dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals7{tag = "icon-steel_decals7 (EAST)"; icon_state = "steel_decals7"; dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals7{tag = "icon-steel_decals7 (NORTH)"; icon_state = "steel_decals7"; dir = 1},/obj/effect/decal/cleanable/dirt,/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled,/area/engineering/atmos/hallway) +"aTF" = (/obj/effect/floor_decal/techfloor{tag = "icon-techfloor_edges (SOUTHWEST)"; icon_state = "techfloor_edges"; dir = 10},/obj/effect/floor_decal/industrial/warning{dir = 1},/turf/simulated/floor/tiled/techfloor,/area/engineering/drone_fabrication) +"aTG" = (/obj/effect/floor_decal/techfloor,/obj/effect/floor_decal/industrial/warning{dir = 1},/turf/simulated/floor/tiled/techfloor,/area/engineering/drone_fabrication) +"aTH" = (/obj/machinery/light,/obj/effect/floor_decal/techfloor,/obj/effect/floor_decal/industrial/warning{dir = 1},/turf/simulated/floor/tiled/techfloor,/area/engineering/drone_fabrication) +"aTI" = (/obj/effect/floor_decal/techfloor,/obj/effect/floor_decal/industrial/warning{dir = 1},/obj/machinery/camera/network/engineering{c_tag = "ENG - Pump Station"; dir = 1},/turf/simulated/floor/tiled/techfloor,/area/engineering/drone_fabrication) +"aTJ" = (/obj/effect/floor_decal/techfloor{tag = "icon-techfloor_edges (SOUTHEAST)"; icon_state = "techfloor_edges"; dir = 6},/obj/effect/floor_decal/industrial/warning/corner{icon_state = "warningcorner"; dir = 1},/obj/machinery/firealarm{dir = 4; pixel_x = 24},/turf/simulated/floor/tiled/techfloor,/area/engineering/drone_fabrication) +"aTK" = (/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (SOUTHWEST)"; icon_state = "borderfloor"; dir = 10},/obj/effect/floor_decal/corner/yellow/border{tag = "icon-bordercolor (SOUTHWEST)"; icon_state = "bordercolor"; dir = 10},/obj/effect/floor_decal/borderfloor/corner2{tag = "icon-borderfloorcorner2 (WEST)"; icon_state = "borderfloorcorner2"; dir = 8},/obj/effect/floor_decal/corner/yellow/bordercorner2{tag = "icon-bordercolorcorner2 (WEST)"; icon_state = "bordercolorcorner2"; dir = 8},/obj/machinery/camera/network/engineering{c_tag = "ENG - Pump Station"; dir = 1},/turf/simulated/floor/tiled,/area/engineering/atmos/hallway) +"aTL" = (/obj/machinery/atmospherics/pipe/simple/hidden/cyan,/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/corner/yellow/border,/obj/effect/floor_decal/borderfloor/corner2{tag = "icon-borderfloorcorner2 (NORTHWEST)"; icon_state = "borderfloorcorner2"; dir = 9},/obj/effect/floor_decal/corner/yellow/bordercorner2{tag = "icon-bordercolorcorner2 (NORTHWEST)"; icon_state = "bordercolorcorner2"; dir = 9},/turf/simulated/floor/tiled,/area/engineering/atmos/hallway) +"aTM" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/corner/yellow/border,/obj/effect/floor_decal/borderfloor/corner2,/obj/effect/floor_decal/corner/yellow/bordercorner2,/turf/simulated/floor/tiled,/area/engineering/atmos/hallway) +"aTN" = (/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/corner/yellow/border,/obj/item/device/radio/intercom{name = "Station Intercom (General)"; pixel_y = -21},/turf/simulated/floor/tiled,/area/engineering/atmos/hallway) +"aTO" = (/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/corner/yellow/border,/obj/effect/floor_decal/borderfloor/corner2{tag = "icon-borderfloorcorner2 (NORTHWEST)"; icon_state = "borderfloorcorner2"; dir = 9},/obj/effect/floor_decal/corner/yellow/bordercorner2{tag = "icon-bordercolorcorner2 (NORTHWEST)"; icon_state = "bordercolorcorner2"; dir = 9},/turf/simulated/floor/tiled,/area/engineering/atmos/hallway) +"aTP" = (/obj/structure/cable/cyan{d1 = 1; d2 = 4; icon_state = "1-4"},/turf/simulated/floor/tiled,/area/engineering/atmos/hallway) +"aTQ" = (/obj/structure/cable/cyan{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/door/firedoor/glass,/obj/machinery/door/airlock/atmos,/turf/simulated/floor/tiled,/area/engineering/atmos/storage) +"aTR" = (/obj/effect/decal/cleanable/dirt,/obj/structure/cable/cyan{d1 = 2; d2 = 8; icon_state = "2-8"},/turf/simulated/floor,/area/engineering/atmos/storage) +"aTS" = (/obj/effect/decal/cleanable/dirt,/turf/simulated/floor,/area/engineering/atmos/storage) +"aTT" = (/turf/simulated/floor,/area/engineering/atmos/storage) +"aTU" = (/obj/machinery/light/small{dir = 4; pixel_y = 0},/turf/simulated/floor,/area/engineering/atmos/storage) +"aTV" = (/obj/structure/catwalk,/obj/machinery/atmospherics/pipe/simple/visible/scrubbers,/obj/machinery/atmospherics/pipe/simple/visible/supply,/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0},/turf/simulated/floor/tiled/techfloor,/area/maintenance/lower/south) +"aTW" = (/turf/simulated/wall,/area/rnd/research_storage) +"aTX" = (/obj/machinery/atmospherics/pipe/simple/visible/scrubbers,/obj/machinery/atmospherics/pipe/simple/visible/supply,/obj/structure/cable/cyan{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/door/firedoor/glass,/obj/machinery/door/airlock/glass_atmos{name = "Atmospherics"; req_access = list(24)},/turf/simulated/floor/tiled,/area/engineering/atmos) +"aTY" = (/obj/machinery/door/firedoor/glass,/obj/structure/disposalpipe/segment,/obj/machinery/door/airlock/glass_atmos{name = "Atmospherics"; req_access = list(24)},/turf/simulated/floor/tiled,/area/engineering/atmos) +"aTZ" = (/turf/simulated/wall,/area/engineering/atmos) +"aUa" = (/obj/structure/grille,/obj/structure/window/reinforced{dir = 5; icon_state = "fwindow"},/obj/machinery/door/firedoor,/obj/machinery/atmospherics/pipe/simple/hidden/cyan,/turf/simulated/floor/plating,/area/engineering/atmos) +"aUb" = (/obj/machinery/door/firedoor,/obj/machinery/atmospherics/pipe/simple/hidden/yellow,/obj/machinery/door/airlock/glass_atmos{name = "Atmospherics"; req_access = list(24)},/turf/simulated/floor/plating,/area/engineering/atmos) +"aUc" = (/obj/structure/grille,/obj/structure/window/reinforced{dir = 5; icon_state = "fwindow"},/obj/machinery/door/firedoor,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/plating,/area/engineering/atmos) +"aUd" = (/obj/effect/decal/cleanable/dirt,/obj/structure/cable/cyan,/obj/machinery/power/apc{cell_type = /obj/item/weapon/cell/super; dir = 8; name = "west bump"; pixel_x = -28},/turf/simulated/floor,/area/engineering/atmos/storage) +"aUe" = (/obj/item/device/radio/intercom{dir = 4; name = "Station Intercom (General)"; pixel_x = 21},/turf/simulated/floor,/area/engineering/atmos/storage) +"aUf" = (/obj/structure/closet/firecloset,/turf/simulated/floor/tiled/steel_dirty,/area/rnd/research_storage) +"aUg" = (/obj/structure/closet/secure_closet/scientist,/obj/item/weapon/handcuffs/fuzzy,/turf/simulated/floor/tiled/steel_dirty,/area/rnd/research_storage) +"aUh" = (/obj/machinery/firealarm{dir = 2; layer = 3.3; pixel_x = 0; pixel_y = 26},/turf/simulated/floor/tiled/steel_dirty,/area/rnd/research_storage) +"aUi" = (/obj/effect/floor_decal/rust,/obj/machinery/camera/network/research,/turf/simulated/floor/tiled/steel_dirty,/area/rnd/research_storage) +"aUj" = (/obj/effect/floor_decal/rust,/obj/machinery/light_switch{pixel_y = 25},/obj/item/device/radio/intercom{dir = 4; name = "Station Intercom (General)"; pixel_x = 21},/turf/simulated/floor/tiled/steel_dirty,/area/rnd/research_storage) +"aUk" = (/obj/effect/floor_decal/techfloor{tag = "icon-techfloor_edges (NORTHWEST)"; icon_state = "techfloor_edges"; dir = 9},/obj/structure/extinguisher_cabinet{pixel_y = 30},/turf/simulated/floor/tiled/techfloor,/area/engineering/atmos) +"aUl" = (/obj/machinery/atmospherics/pipe/simple/visible/cyan{tag = "icon-intact (SOUTHEAST)"; icon_state = "intact"; dir = 6},/obj/machinery/meter,/obj/effect/floor_decal/techfloor{tag = "icon-techfloor_edges (NORTH)"; icon_state = "techfloor_edges"; dir = 1},/turf/simulated/floor/tiled/techfloor,/area/engineering/atmos) +"aUm" = (/obj/machinery/atmospherics/pipe/simple/visible/cyan{dir = 4; icon_state = "intact"; tag = "icon-intact (EAST)"},/obj/machinery/light{dir = 1},/obj/effect/floor_decal/techfloor{tag = "icon-techfloor_edges (NORTH)"; icon_state = "techfloor_edges"; dir = 1},/turf/simulated/floor/tiled/techfloor,/area/engineering/atmos) +"aUn" = (/obj/machinery/atmospherics/pipe/simple/visible/cyan{dir = 4; icon_state = "intact"; tag = "icon-intact (EAST)"},/obj/effect/floor_decal/techfloor{tag = "icon-techfloor_edges (NORTH)"; icon_state = "techfloor_edges"; dir = 1},/obj/machinery/power/apc{dir = 1; name = "north bump"; pixel_x = 0; pixel_y = 24},/obj/structure/cable/cyan{d2 = 4; icon_state = "0-4"},/turf/simulated/floor/tiled/techfloor,/area/engineering/atmos) +"aUo" = (/obj/machinery/atmospherics/pipe/simple/visible/universal{dir = 4},/obj/effect/floor_decal/techfloor{tag = "icon-techfloor_edges (NORTH)"; icon_state = "techfloor_edges"; dir = 1},/obj/structure/cable/cyan{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/light_switch{pixel_y = 25},/turf/simulated/floor/tiled/techfloor,/area/engineering/atmos) +"aUp" = (/obj/machinery/atmospherics/pipe/simple/visible/supply{dir = 9},/obj/machinery/atmospherics/pipe/simple/visible/scrubbers{tag = "icon-intact-scrubbers (NORTHEAST)"; icon_state = "intact-scrubbers"; dir = 5},/obj/effect/floor_decal/techfloor/corner{tag = "icon-techfloor_corners (NORTH)"; icon_state = "techfloor_corners"; dir = 1},/obj/structure/cable/cyan{d1 = 1; d2 = 8; icon_state = "1-8"},/turf/simulated/floor/tiled/techfloor,/area/engineering/atmos) +"aUq" = (/obj/machinery/atmospherics/pipe/simple/visible/scrubbers{tag = "icon-intact-scrubbers (EAST)"; icon_state = "intact-scrubbers"; dir = 4},/obj/effect/floor_decal/techfloor/corner{tag = "icon-techfloor_corners (EAST)"; icon_state = "techfloor_corners"; dir = 4},/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled/techfloor,/area/engineering/atmos) +"aUr" = (/obj/machinery/atmospherics/pipe/simple/visible/universal{dir = 4},/obj/effect/floor_decal/techfloor{tag = "icon-techfloor_edges (NORTH)"; icon_state = "techfloor_edges"; dir = 1},/obj/machinery/status_display{pixel_y = 30},/turf/simulated/floor/tiled/techfloor,/area/engineering/atmos) +"aUs" = (/obj/machinery/atmospherics/pipe/simple/visible/yellow{dir = 10},/obj/machinery/meter,/obj/effect/floor_decal/techfloor{tag = "icon-techfloor_edges (NORTH)"; icon_state = "techfloor_edges"; dir = 1},/obj/item/device/radio/intercom{dir = 1; name = "Station Intercom (General)"; pixel_y = 21},/turf/simulated/floor/tiled/techfloor,/area/engineering/atmos) +"aUt" = (/obj/structure/table/standard,/obj/item/clothing/head/welding{pixel_x = -5; pixel_y = 3},/obj/item/clothing/glasses/welding,/obj/effect/floor_decal/techfloor{tag = "icon-techfloor_edges (NORTH)"; icon_state = "techfloor_edges"; dir = 1},/obj/structure/extinguisher_cabinet{pixel_y = 30},/turf/simulated/floor/tiled/techfloor,/area/engineering/atmos) +"aUu" = (/obj/structure/table/standard,/obj/machinery/requests_console{department = "Atmospherics"; departmentType = 3; name = "Atmos RC"; pixel_x = 0; pixel_y = 28},/obj/item/device/t_scanner,/obj/item/device/multitool{pixel_x = 5},/obj/item/device/radio/headset/headset_eng,/obj/item/weapon/cartridge/atmos,/obj/item/clothing/ears/earmuffs,/obj/item/clothing/ears/earmuffs,/obj/item/weapon/cartridge/atmos,/obj/item/device/pipe_painter,/obj/effect/floor_decal/techfloor{tag = "icon-techfloor_edges (NORTH)"; icon_state = "techfloor_edges"; dir = 1},/turf/simulated/floor/tiled/techfloor,/area/engineering/atmos) +"aUv" = (/obj/structure/table/standard,/obj/structure/closet/fireaxecabinet{pixel_y = 32},/obj/machinery/cell_charger,/obj/item/weapon/wrench,/obj/effect/floor_decal/techfloor{tag = "icon-techfloor_edges (NORTH)"; icon_state = "techfloor_edges"; dir = 1},/turf/simulated/floor/tiled/techfloor,/area/engineering/atmos) +"aUw" = (/obj/structure/table/standard,/obj/machinery/newscaster{pixel_y = 30},/obj/item/stack/material/steel{amount = 50},/obj/item/stack/material/glass{amount = 50},/obj/item/clothing/gloves/black,/obj/item/clothing/gloves/black,/obj/item/weapon/storage/belt/utility/atmostech,/obj/item/weapon/storage/belt/utility/atmostech,/obj/machinery/camera/network/engineering{c_tag = "ENG - Atmospherics Fore Starboard"; dir = 2},/obj/effect/floor_decal/techfloor{tag = "icon-techfloor_edges (NORTH)"; icon_state = "techfloor_edges"; dir = 1},/turf/simulated/floor/tiled/techfloor,/area/engineering/atmos) +"aUx" = (/obj/machinery/atmospherics/pipe/simple/visible/cyan{tag = "icon-intact (SOUTHEAST)"; icon_state = "intact"; dir = 6},/obj/machinery/light{dir = 1},/obj/effect/floor_decal/techfloor{tag = "icon-techfloor_edges (NORTH)"; icon_state = "techfloor_edges"; dir = 1},/turf/simulated/floor/tiled/techfloor,/area/engineering/atmos) +"aUy" = (/obj/machinery/atmospherics/pipe/simple/visible/cyan{dir = 4; icon_state = "intact"; tag = "icon-intact (EAST)"},/obj/effect/floor_decal/techfloor{tag = "icon-techfloor_edges (NORTH)"; icon_state = "techfloor_edges"; dir = 1},/obj/machinery/firealarm{dir = 2; layer = 3.3; pixel_x = 0; pixel_y = 26},/turf/simulated/floor/tiled/techfloor,/area/engineering/atmos) +"aUz" = (/obj/machinery/atmospherics/pipe/simple/visible/cyan{dir = 4; icon_state = "intact"; tag = "icon-intact (EAST)"},/obj/effect/floor_decal/techfloor{tag = "icon-techfloor_edges (NORTH)"; icon_state = "techfloor_edges"; dir = 1},/obj/machinery/alarm{frequency = 1441; pixel_y = 22},/turf/simulated/floor/tiled/techfloor,/area/engineering/atmos) +"aUA" = (/obj/machinery/atmospherics/pipe/simple/visible/cyan{dir = 4; icon_state = "intact"; tag = "icon-intact (EAST)"},/obj/effect/floor_decal/techfloor{tag = "icon-techfloor_edges (NORTH)"; icon_state = "techfloor_edges"; dir = 1},/obj/machinery/light_switch{pixel_y = 25},/turf/simulated/floor/tiled/techfloor,/area/engineering/atmos) +"aUB" = (/obj/machinery/atmospherics/pipe/manifold/visible/cyan{tag = "icon-map (EAST)"; icon_state = "map"; dir = 4},/obj/machinery/meter,/obj/effect/floor_decal/techfloor/corner{tag = "icon-techfloor_corners (NORTH)"; icon_state = "techfloor_corners"; dir = 1},/turf/simulated/floor/tiled/techfloor,/area/engineering/atmos) +"aUC" = (/obj/machinery/atmospherics/pipe/simple/visible/yellow,/turf/simulated/floor/tiled/techfloor,/area/engineering/atmos) +"aUD" = (/obj/machinery/atmospherics/pipe/simple/visible/supply,/obj/machinery/atmospherics/pipe/simple/visible/scrubbers{tag = "icon-intact-scrubbers (NORTHEAST)"; icon_state = "intact-scrubbers"; dir = 5},/obj/effect/floor_decal/techfloor/corner{tag = "icon-techfloor_corners (EAST)"; icon_state = "techfloor_corners"; dir = 4},/turf/simulated/floor/tiled/techfloor,/area/engineering/atmos) +"aUE" = (/obj/machinery/atmospherics/pipe/simple/visible/scrubbers{tag = "icon-intact-scrubbers (SOUTHWEST)"; icon_state = "intact-scrubbers"; dir = 10},/obj/effect/floor_decal/techfloor{tag = "icon-techfloor_edges (NORTH)"; icon_state = "techfloor_edges"; dir = 1},/obj/item/device/radio/intercom{dir = 1; name = "Station Intercom (General)"; pixel_y = 21},/turf/simulated/floor/tiled/techfloor,/area/engineering/atmos) +"aUF" = (/obj/effect/floor_decal/techfloor{tag = "icon-techfloor_edges (NORTH)"; icon_state = "techfloor_edges"; dir = 1},/obj/machinery/camera/network/engineering,/turf/simulated/floor/tiled/techfloor,/area/engineering/atmos) +"aUG" = (/obj/machinery/atmospherics/unary/freezer,/turf/simulated/floor/tiled/steel_dirty,/area/engineering/atmos) +"aUH" = (/obj/machinery/light{dir = 1},/obj/machinery/atmospherics/unary/heater{dir = 2; icon_state = "heater"},/turf/simulated/floor/tiled/steel_dirty,/area/engineering/atmos) +"aUI" = (/obj/machinery/atmospherics/portables_connector,/obj/effect/floor_decal/industrial/hatch/yellow,/obj/structure/extinguisher_cabinet{pixel_y = 30},/turf/simulated/floor/tiled/steel_dirty,/area/engineering/atmos) +"aUJ" = (/obj/machinery/atmospherics/portables_connector,/obj/effect/floor_decal/industrial/hatch/yellow,/turf/simulated/floor/tiled/steel_dirty,/area/engineering/atmos) +"aUK" = (/obj/structure/closet/firecloset,/obj/random/maintenance/engineering,/turf/simulated/floor,/area/engineering/atmos/storage) +"aUL" = (/obj/effect/decal/cleanable/dirt,/mob/living/simple_animal/mouse,/turf/simulated/floor,/area/engineering/atmos/storage) +"aUM" = (/obj/effect/decal/cleanable/dirt,/obj/structure/dispenser{oxygentanks = 0},/turf/simulated/floor,/area/engineering/atmos/storage) +"aUN" = (/turf/simulated/mineral,/area/maintenance/lower/south) +"aUO" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/effect/decal/cleanable/dirt,/obj/machinery/atmospherics/pipe/simple/visible/supply,/obj/machinery/atmospherics/pipe/simple/visible/scrubbers,/obj/effect/floor_decal/rust,/obj/structure/catwalk,/turf/simulated/floor/plating,/area/maintenance/asmaint2) +"aUP" = (/obj/effect/floor_decal/techfloor{tag = "icon-techfloor_edges (EAST)"; icon_state = "techfloor_edges"; dir = 4},/obj/effect/floor_decal/techfloor{tag = "icon-techfloor_edges (SOUTHEAST)"; icon_state = "techfloor_edges"; dir = 6},/obj/structure/railing,/obj/structure/railing{dir = 8},/obj/effect/decal/cleanable/dirt,/obj/structure/closet/crate,/obj/random/maintenance/clean,/obj/random/maintenance/research,/obj/random/maintenance/research,/turf/simulated/floor/tiled/techfloor,/area/maintenance/asmaint2) +"aUQ" = (/obj/machinery/alarm{dir = 4; icon_state = "alarm0"; pixel_x = -22; pixel_y = 0},/turf/simulated/floor/tiled/steel_dirty,/area/rnd/research_storage) +"aUR" = (/turf/simulated/floor/tiled/steel_dirty,/area/rnd/research_storage) +"aUS" = (/obj/effect/floor_decal/rust,/turf/simulated/floor/tiled/steel_dirty,/area/rnd/research_storage) +"aUT" = (/obj/structure/ladder/updown,/obj/effect/floor_decal/rust,/turf/simulated/floor/tiled/steel_dirty,/area/rnd/research_storage) +"aUU" = (/obj/effect/floor_decal/techfloor{tag = "icon-techfloor_edges (WEST)"; icon_state = "techfloor_edges"; dir = 8},/turf/simulated/floor/tiled/techfloor,/area/engineering/atmos) +"aUV" = (/obj/machinery/atmospherics/binary/pump{dir = 1},/obj/effect/floor_decal/industrial/outline/yellow,/turf/simulated/floor/tiled/techfloor,/area/engineering/atmos) +"aUW" = (/turf/simulated/floor/tiled/techfloor,/area/engineering/atmos) +"aUX" = (/obj/machinery/atmospherics/pipe/simple/visible/cyan{tag = "icon-intact (SOUTHEAST)"; icon_state = "intact"; dir = 6},/turf/simulated/floor/tiled/techfloor,/area/engineering/atmos) +"aUY" = (/obj/machinery/atmospherics/binary/pump{dir = 4},/turf/simulated/floor/tiled/techfloor,/area/engineering/atmos) +"aUZ" = (/obj/machinery/atmospherics/pipe/simple/visible/yellow{dir = 4},/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled/techfloor,/area/engineering/atmos) +"aVa" = (/obj/machinery/atmospherics/pipe/manifold/visible/yellow{tag = "icon-map (NORTH)"; icon_state = "map"; dir = 1},/turf/simulated/floor/tiled/techfloor,/area/engineering/atmos) +"aVb" = (/obj/machinery/atmospherics/pipe/manifold/visible/yellow,/turf/simulated/floor/tiled/techfloor,/area/engineering/atmos) +"aVc" = (/obj/machinery/atmospherics/pipe/simple/visible/yellow{dir = 4},/turf/simulated/floor/tiled/techfloor,/area/engineering/atmos) +"aVd" = (/obj/machinery/atmospherics/pipe/simple/visible/cyan,/obj/machinery/atmospherics/pipe/simple/visible/yellow{dir = 4},/turf/simulated/floor/tiled/techfloor,/area/engineering/atmos) +"aVe" = (/obj/machinery/atmospherics/pipe/manifold/visible/yellow{tag = "icon-map (EAST)"; icon_state = "map"; dir = 4},/obj/machinery/meter,/turf/simulated/floor/tiled/techfloor,/area/engineering/atmos) +"aVf" = (/obj/machinery/atmospherics/pipe/simple/visible/universal,/turf/simulated/floor/tiled/techfloor,/area/engineering/atmos) +"aVg" = (/obj/machinery/atmospherics/pipe/manifold/visible/green{dir = 8},/turf/simulated/floor/tiled/techfloor,/area/engineering/atmos) +"aVh" = (/obj/machinery/atmospherics/pipe/manifold/visible/green{tag = "icon-map (EAST)"; icon_state = "map"; dir = 4},/turf/simulated/floor/tiled/techfloor,/area/engineering/atmos) +"aVi" = (/obj/machinery/atmospherics/pipe/manifold/visible/green{tag = "icon-map (EAST)"; icon_state = "map"; dir = 4},/obj/effect/floor_decal/techfloor{tag = "icon-techfloor_edges (EAST)"; icon_state = "techfloor_edges"; dir = 4},/turf/simulated/floor/tiled/techfloor,/area/engineering/atmos) +"aVj" = (/obj/machinery/floodlight,/obj/effect/floor_decal/industrial/outline/yellow,/turf/simulated/floor,/area/engineering/atmos/storage) +"aVk" = (/obj/effect/decal/cleanable/dirt,/obj/machinery/floodlight,/obj/effect/floor_decal/industrial/outline/yellow,/turf/simulated/floor,/area/engineering/atmos/storage) +"aVl" = (/obj/structure/cable/green{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/effect/decal/cleanable/dirt,/obj/machinery/atmospherics/pipe/simple/visible/supply{tag = "icon-intact-supply (NORTHEAST)"; icon_state = "intact-supply"; dir = 5},/obj/machinery/atmospherics/pipe/simple/visible/scrubbers{tag = "icon-intact-scrubbers (NORTHEAST)"; icon_state = "intact-scrubbers"; dir = 5},/obj/effect/floor_decal/rust,/obj/structure/catwalk,/turf/simulated/floor/plating,/area/maintenance/asmaint2) +"aVm" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/effect/decal/cleanable/dirt,/obj/machinery/atmospherics/pipe/simple/visible/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/visible/scrubbers{dir = 4},/obj/effect/floor_decal/rust,/obj/structure/catwalk,/turf/simulated/floor/plating,/area/maintenance/asmaint2) +"aVn" = (/obj/machinery/door/firedoor/glass,/obj/machinery/door/airlock/maintenance/rnd,/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,/area/rnd/research_storage) +"aVo" = (/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 = 10},/turf/simulated/floor/tiled/steel_dirty,/area/rnd/research_storage) +"aVp" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 10},/turf/simulated/floor/tiled/steel_dirty,/area/rnd/research_storage) +"aVq" = (/obj/structure/cable/green{d1 = 2; d2 = 8; icon_state = "2-8"},/turf/simulated/floor/tiled/steel_dirty,/area/rnd/research_storage) +"aVr" = (/obj/effect/floor_decal/rust,/obj/structure/extinguisher_cabinet{dir = 2; icon_state = "extinguisher_closed"; pixel_x = 30; tag = "icon-extinguisher_closed (WEST)"},/turf/simulated/floor/tiled/steel_dirty,/area/rnd/research_storage) +"aVs" = (/obj/effect/floor_decal/techfloor{tag = "icon-techfloor_edges (WEST)"; icon_state = "techfloor_edges"; dir = 8},/obj/machinery/requests_console{pixel_x = -30},/turf/simulated/floor/tiled/techfloor,/area/engineering/atmos) +"aVt" = (/obj/machinery/atmospherics/pipe/manifold/visible/cyan{tag = "icon-map (WEST)"; icon_state = "map"; dir = 8},/obj/effect/floor_decal/corner_techfloor_gray{tag = "icon-corner_techfloor_gray (NORTH)"; icon_state = "corner_techfloor_gray"; dir = 1},/turf/simulated/floor/tiled/techmaint,/area/engineering/atmos) +"aVu" = (/obj/effect/floor_decal/industrial/warning/corner,/obj/machinery/atmospherics/pipe/simple/visible/cyan{dir = 4; icon_state = "intact"; tag = "icon-intact (EAST)"},/turf/simulated/floor/tiled/techmaint,/area/engineering/atmos) +"aVv" = (/obj/effect/floor_decal/industrial/warning,/obj/machinery/atmospherics/pipe/simple/visible/cyan{dir = 4; icon_state = "intact"; tag = "icon-intact (EAST)"},/turf/simulated/floor/tiled/techmaint,/area/engineering/atmos) +"aVw" = (/obj/effect/floor_decal/industrial/warning,/obj/machinery/atmospherics/pipe/manifold/visible/cyan,/turf/simulated/floor/tiled/techmaint,/area/engineering/atmos) +"aVx" = (/obj/effect/floor_decal/industrial/warning/corner{icon_state = "warningcorner"; dir = 8},/obj/machinery/atmospherics/pipe/simple/visible/cyan{dir = 4; icon_state = "intact"; tag = "icon-intact (EAST)"},/obj/effect/floor_decal/corner_techfloor_gray{tag = "icon-corner_techfloor_gray (EAST)"; icon_state = "corner_techfloor_gray"; dir = 4},/obj/structure/disposalpipe/segment{dir = 1; icon_state = "pipe-c"},/turf/simulated/floor/tiled/techmaint,/area/engineering/atmos) +"aVy" = (/obj/machinery/atmospherics/pipe/simple/visible/yellow,/obj/machinery/atmospherics/pipe/simple/visible/cyan{dir = 4; icon_state = "intact"; tag = "icon-intact (EAST)"},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled/techfloor,/area/engineering/atmos) +"aVz" = (/obj/machinery/atmospherics/pipe/simple/visible/cyan{dir = 4; icon_state = "intact"; tag = "icon-intact (EAST)"},/obj/structure/disposalpipe/segment{dir = 2; icon_state = "pipe-c"},/turf/simulated/floor/tiled/techfloor,/area/engineering/atmos) +"aVA" = (/obj/machinery/atmospherics/pipe/simple/visible/cyan{dir = 4; icon_state = "intact"; tag = "icon-intact (EAST)"},/turf/simulated/floor/tiled/techfloor,/area/engineering/atmos) +"aVB" = (/obj/machinery/atmospherics/binary/pump{dir = 4},/obj/effect/floor_decal/industrial/outline/blue,/turf/simulated/floor/tiled/techfloor,/area/engineering/atmos) +"aVC" = (/obj/machinery/atmospherics/pipe/simple/visible/cyan{dir = 9},/turf/simulated/floor/tiled/techfloor,/area/engineering/atmos) +"aVD" = (/obj/machinery/atmospherics/binary/pump{dir = 1},/turf/simulated/floor/tiled/techfloor,/area/engineering/atmos) +"aVE" = (/obj/machinery/atmospherics/binary/pump,/turf/simulated/floor/tiled/techfloor,/area/engineering/atmos) +"aVF" = (/obj/machinery/atmospherics/pipe/simple/visible/cyan{tag = "icon-intact (NORTHEAST)"; icon_state = "intact"; dir = 5},/turf/simulated/floor/tiled/techfloor,/area/engineering/atmos) +"aVG" = (/obj/machinery/atmospherics/pipe/simple/visible/yellow,/obj/machinery/atmospherics/pipe/simple/visible/cyan{dir = 4; icon_state = "intact"; tag = "icon-intact (EAST)"},/turf/simulated/floor/tiled/techfloor,/area/engineering/atmos) +"aVH" = (/obj/machinery/atmospherics/valve/digital/open,/turf/simulated/floor/tiled/techfloor,/area/engineering/atmos) +"aVI" = (/obj/machinery/atmospherics/binary/pump,/obj/effect/floor_decal/techfloor{tag = "icon-techfloor_edges (EAST)"; icon_state = "techfloor_edges"; dir = 4},/turf/simulated/floor/tiled/techfloor,/area/engineering/atmos) +"aVJ" = (/obj/structure/table/steel,/obj/item/weapon/implantcase/chem,/obj/machinery/atmospherics/unary/vent_pump/on{dir = 1},/turf/simulated/floor/tiled/steel_dirty,/area/rnd/research_storage) +"aVK" = (/obj/structure/table/steel,/obj/item/weapon/locator,/obj/machinery/light/small{brightness_color = "#DA0205"; brightness_power = 1; brightness_range = 5},/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 1},/turf/simulated/floor/tiled/steel_dirty,/area/rnd/research_storage) +"aVL" = (/obj/structure/cable/green,/obj/machinery/power/apc{dir = 2; name = "south bump"; pixel_y = -28},/turf/simulated/floor/tiled/steel_dirty,/area/rnd/research_storage) +"aVM" = (/obj/structure/closet/wardrobe/robotics_black,/turf/simulated/floor/tiled/steel_dirty,/area/rnd/research_storage) +"aVN" = (/obj/structure/closet/wardrobe/robotics_black,/obj/effect/floor_decal/rust,/obj/random/maintenance/research,/turf/simulated/floor/tiled/steel_dirty,/area/rnd/research_storage) +"aVO" = (/obj/effect/floor_decal/techfloor{tag = "icon-techfloor_edges (WEST)"; icon_state = "techfloor_edges"; dir = 8},/obj/machinery/camera/network/engineering{c_tag = "ENG - Locker Room"; dir = 4},/turf/simulated/floor/tiled/techfloor,/area/engineering/atmos) +"aVP" = (/obj/machinery/atmospherics/pipe/simple/visible/cyan,/turf/simulated/floor/tiled/techmaint,/area/engineering/atmos) +"aVQ" = (/obj/machinery/atmospherics/portables_connector,/obj/effect/floor_decal/industrial/warning{icon_state = "warning"; dir = 4},/obj/effect/floor_decal/industrial/hatch/yellow,/turf/simulated/floor/tiled/steel_dirty,/area/engineering/atmos) +"aVR" = (/obj/machinery/atmospherics/pipe/tank/nitrogen,/obj/effect/floor_decal/industrial/outline/yellow,/turf/simulated/floor/tiled/steel_dirty,/area/engineering/atmos) +"aVS" = (/obj/effect/floor_decal/industrial/warning{dir = 8},/turf/simulated/floor/tiled/techmaint,/area/engineering/atmos) +"aVT" = (/obj/machinery/atmospherics/binary/pump,/obj/effect/floor_decal/industrial/outline/yellow,/turf/simulated/floor/tiled/techfloor,/area/engineering/atmos) +"aVU" = (/obj/machinery/atmospherics/pipe/simple/visible/green{tag = "icon-intact (SOUTHEAST)"; icon_state = "intact"; dir = 6},/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled/techfloor,/area/engineering/atmos) +"aVV" = (/obj/machinery/atmospherics/pipe/simple/visible/green{tag = "icon-intact (EAST)"; icon_state = "intact"; dir = 4},/turf/simulated/floor/tiled/techfloor,/area/engineering/atmos) +"aVW" = (/obj/machinery/atmospherics/pipe/manifold/visible/green{dir = 1},/turf/simulated/floor/tiled/techfloor,/area/engineering/atmos) +"aVX" = (/obj/machinery/atmospherics/pipe/manifold4w/visible/green,/turf/simulated/floor/tiled/techfloor,/area/engineering/atmos) +"aVY" = (/obj/machinery/atmospherics/pipe/simple/visible/yellow{tag = "icon-intact (NORTHEAST)"; icon_state = "intact"; dir = 5},/turf/simulated/floor/tiled/techfloor,/area/engineering/atmos) +"aVZ" = (/obj/machinery/atmospherics/pipe/simple/visible/yellow{dir = 10},/turf/simulated/floor/tiled/techfloor,/area/engineering/atmos) +"aWa" = (/obj/machinery/atmospherics/pipe/simple/visible/green,/turf/simulated/floor/tiled/techfloor,/area/engineering/atmos) +"aWb" = (/obj/machinery/atmospherics/pipe/simple/visible/green{dir = 5; icon_state = "intact"; tag = "icon-intact (SOUTHEAST)"},/turf/simulated/floor/tiled/techfloor,/area/engineering/atmos) +"aWc" = (/obj/machinery/atmospherics/pipe/manifold/visible/green,/obj/effect/floor_decal/corner_techfloor_gray{tag = "icon-corner_techfloor_gray (NORTH)"; icon_state = "corner_techfloor_gray"; dir = 1},/turf/simulated/floor/tiled/techmaint,/area/engineering/atmos) +"aWd" = (/obj/machinery/atmospherics/pipe/simple/visible/green{dir = 9; icon_state = "intact"; tag = "icon-intact (SOUTHEAST)"},/obj/structure/extinguisher_cabinet{dir = 2; icon_state = "extinguisher_closed"; pixel_x = 30; tag = "icon-extinguisher_closed (WEST)"},/turf/simulated/floor/tiled/techmaint,/area/engineering/atmos) +"aWe" = (/obj/structure/catwalk,/obj/machinery/firealarm{dir = 2; layer = 3.3; pixel_x = 0; pixel_y = 26},/turf/simulated/floor/tiled/techfloor,/area/maintenance/lower/south) +"aWf" = (/obj/machinery/light{dir = 8; icon_state = "tube1"; pixel_y = 0},/obj/effect/floor_decal/techfloor{tag = "icon-techfloor_edges (WEST)"; icon_state = "techfloor_edges"; dir = 8},/turf/simulated/floor/tiled/techfloor,/area/engineering/atmos) +"aWg" = (/obj/machinery/atmospherics/binary/pump{dir = 1},/obj/effect/floor_decal/industrial/warning/corner{icon_state = "warningcorner"; dir = 4},/turf/simulated/floor/tiled/techmaint,/area/engineering/atmos) +"aWh" = (/obj/machinery/atmospherics/pipe/manifold/visible/red{tag = "icon-map (WEST)"; icon_state = "map"; dir = 8},/obj/effect/floor_decal/industrial/warning{icon_state = "warning"; dir = 1},/turf/simulated/floor/tiled/techmaint,/area/engineering/atmos) +"aWi" = (/obj/machinery/atmospherics/pipe/manifold4w/visible/red,/obj/effect/floor_decal/industrial/warning{icon_state = "warning"; dir = 1},/obj/machinery/meter,/turf/simulated/floor/tiled/techmaint,/area/engineering/atmos) +"aWj" = (/obj/machinery/atmospherics/pipe/manifold/visible/red{dir = 4; initialize_directions = 11},/obj/effect/floor_decal/industrial/warning{icon_state = "warning"; dir = 1},/turf/simulated/floor/tiled/techmaint,/area/engineering/atmos) +"aWk" = (/obj/effect/floor_decal/industrial/warning/corner{icon_state = "warningcorner"; dir = 1},/turf/simulated/floor/tiled/techmaint,/area/engineering/atmos) +"aWl" = (/obj/machinery/atmospherics/pipe/simple/visible/green,/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled/techfloor,/area/engineering/atmos) +"aWm" = (/obj/effect/floor_decal/industrial/outline/yellow,/turf/simulated/floor/tiled/steel_dirty,/area/engineering/atmos) +"aWn" = (/obj/machinery/atmospherics/portables_connector{dir = 1},/obj/effect/floor_decal/industrial/hatch/yellow,/turf/simulated/floor/tiled/steel_dirty,/area/engineering/atmos) +"aWo" = (/obj/machinery/atmospherics/pipe/simple/visible/yellow,/obj/machinery/atmospherics/pipe/simple/visible/green{tag = "icon-intact (EAST)"; icon_state = "intact"; dir = 4},/turf/simulated/floor/tiled/techfloor,/area/engineering/atmos) +"aWp" = (/obj/machinery/atmospherics/pipe/simple/visible/green{dir = 9; icon_state = "intact"; tag = "icon-intact (SOUTHEAST)"},/turf/simulated/floor/tiled/techfloor,/area/engineering/atmos) +"aWq" = (/obj/machinery/atmospherics/pipe/simple/visible/purple{tag = "icon-intact (SOUTHEAST)"; icon_state = "intact"; dir = 6},/turf/simulated/floor/tiled/techmaint,/area/engineering/atmos) +"aWr" = (/obj/effect/floor_decal/industrial/warning/corner,/obj/machinery/atmospherics/binary/pump{dir = 4},/turf/simulated/floor/tiled/techmaint,/area/engineering/atmos) +"aWs" = (/obj/effect/floor_decal/industrial/warning,/obj/machinery/atmospherics/portables_connector{dir = 8},/obj/effect/floor_decal/industrial/hatch/yellow,/obj/machinery/light{dir = 4; icon_state = "tube1"; pixel_x = 0},/turf/simulated/floor/tiled/steel_dirty,/area/engineering/atmos) +"aWt" = (/obj/structure/catwalk,/obj/machinery/atmospherics/pipe/simple/visible/scrubbers,/obj/machinery/atmospherics/pipe/simple/visible/supply,/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0},/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/tiled/techfloor,/area/maintenance/lower/south) +"aWu" = (/obj/effect/floor_decal/industrial/warning,/turf/simulated/floor/tiled/techmaint,/area/engineering/atmos) +"aWv" = (/obj/effect/floor_decal/industrial/warning/corner{icon_state = "warningcorner"; dir = 8},/obj/machinery/atmospherics/pipe/simple/visible/cyan,/turf/simulated/floor/tiled/techmaint,/area/engineering/atmos) +"aWw" = (/obj/machinery/atmospherics/pipe/simple/visible/red{tag = "icon-intact (NORTHEAST)"; icon_state = "intact"; dir = 5},/turf/simulated/floor/tiled/techmaint,/area/engineering/atmos) +"aWx" = (/obj/machinery/atmospherics/pipe/manifold/visible/red{dir = 4; initialize_directions = 11},/turf/simulated/floor/tiled/techmaint,/area/engineering/atmos) +"aWy" = (/obj/machinery/atmospherics/binary/pump,/turf/simulated/floor/tiled/techmaint,/area/engineering/atmos) +"aWz" = (/obj/machinery/atmospherics/binary/pump/on{dir = 1},/turf/simulated/floor/tiled/techmaint,/area/engineering/atmos) +"aWA" = (/turf/simulated/floor/tiled/techmaint,/area/engineering/atmos) +"aWB" = (/obj/structure/railing{dir = 1},/obj/structure/railing{dir = 8},/turf/simulated/open,/area/engineering/atmos) +"aWC" = (/obj/structure/railing{dir = 1},/turf/simulated/open,/area/engineering/atmos) +"aWD" = (/obj/structure/railing{dir = 1},/obj/structure/railing{dir = 4},/turf/simulated/open,/area/engineering/atmos) +"aWE" = (/obj/machinery/atmospherics/unary/vent_pump/on{dir = 4},/turf/simulated/floor/tiled/techfloor,/area/engineering/atmos) +"aWF" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 10},/turf/simulated/floor/tiled/techfloor,/area/engineering/atmos) +"aWG" = (/obj/machinery/atmospherics/omni/filter{tag_east = 4; tag_north = 2; tag_south = 1},/turf/simulated/floor/tiled/techmaint,/area/engineering/atmos) +"aWH" = (/obj/machinery/atmospherics/valve/digital/open{dir = 4; icon_state = "map_valve1"; tag = "icon-map_valve1 (WEST)"},/turf/simulated/floor/tiled/techmaint,/area/engineering/atmos) +"aWI" = (/obj/machinery/atmospherics/pipe/manifold/visible/purple,/turf/simulated/floor/tiled/techmaint,/area/engineering/atmos) +"aWJ" = (/obj/effect/floor_decal/industrial/warning{icon_state = "warning"; dir = 4},/obj/machinery/atmospherics/pipe/manifold/visible/purple{tag = "icon-map (NORTH)"; icon_state = "map"; dir = 1},/obj/machinery/meter,/turf/simulated/floor/tiled/techmaint,/area/engineering/atmos) +"aWK" = (/obj/machinery/atmospherics/pipe/tank/nitrous_oxide{tag = "icon-n2o_map (WEST)"; icon_state = "n2o_map"; dir = 8},/obj/effect/floor_decal/industrial/outline/yellow,/turf/simulated/floor/tiled/steel_dirty,/area/engineering/atmos) +"aWL" = (/obj/machinery/atmospherics/pipe/tank/air{dir = 4},/obj/effect/floor_decal/industrial/outline/yellow,/turf/simulated/floor/tiled/steel_dirty,/area/engineering/atmos) +"aWM" = (/obj/effect/floor_decal/industrial/warning{dir = 8},/obj/machinery/atmospherics/pipe/manifold/visible/cyan{tag = "icon-map (EAST)"; icon_state = "map"; dir = 4},/turf/simulated/floor/tiled/techmaint,/area/engineering/atmos) +"aWN" = (/obj/machinery/atmospherics/valve/digital/open,/turf/simulated/floor/tiled/techmaint,/area/engineering/atmos) +"aWO" = (/obj/machinery/atmospherics/pipe/simple/visible/green,/turf/simulated/floor/tiled/techmaint,/area/engineering/atmos) +"aWP" = (/obj/machinery/atmospherics/omni/filter{tag_north = 1; tag_south = 2; tag_west = 4},/turf/simulated/floor/tiled/techmaint,/area/engineering/atmos) +"aWQ" = (/obj/machinery/atmospherics/pipe/simple/visible/green,/obj/effect/floor_decal/industrial/warning/corner,/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled/techfloor,/area/engineering/atmos) +"aWR" = (/obj/effect/floor_decal/industrial/warning,/turf/simulated/floor/tiled/techfloor,/area/engineering/atmos) +"aWS" = (/obj/structure/railing{dir = 8},/turf/simulated/open,/area/engineering/atmos) +"aWT" = (/turf/simulated/open,/area/engineering/atmos) +"aWU" = (/obj/structure/railing{dir = 4},/turf/simulated/open,/area/engineering/atmos) +"aWV" = (/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 4},/turf/simulated/floor/tiled/techfloor,/area/engineering/atmos) +"aWW" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 10},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/tiled/techfloor,/area/engineering/atmos) +"aWX" = (/obj/machinery/atmospherics/pipe/simple/visible/yellow,/obj/machinery/atmospherics/pipe/simple/visible/purple{tag = "icon-intact (EAST)"; icon_state = "intact"; dir = 4},/obj/effect/floor_decal/corner_techfloor_gray{tag = "icon-corner_techfloor_gray (WEST)"; icon_state = "corner_techfloor_gray"; dir = 8},/turf/simulated/floor/tiled/techmaint,/area/engineering/atmos) +"aWY" = (/obj/machinery/atmospherics/pipe/simple/visible/purple{tag = "icon-intact (EAST)"; icon_state = "intact"; dir = 4},/turf/simulated/floor/tiled/techmaint,/area/engineering/atmos) +"aWZ" = (/obj/machinery/atmospherics/binary/pump{dir = 8},/turf/simulated/floor/tiled/techmaint,/area/engineering/atmos) +"aXa" = (/obj/effect/floor_decal/industrial/warning{icon_state = "warning"; dir = 4},/obj/machinery/atmospherics/pipe/manifold/visible/purple,/turf/simulated/floor/tiled/techmaint,/area/engineering/atmos) +"aXb" = (/obj/structure/catwalk,/obj/machinery/atmospherics/pipe/simple/visible/scrubbers,/obj/machinery/atmospherics/pipe/simple/visible/supply,/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0},/obj/effect/decal/cleanable/dirt,/obj/structure/table/rack,/obj/random/maintenance/clean,/obj/random/maintenance/clean,/turf/simulated/floor/tiled/techfloor,/area/maintenance/lower/south) +"aXc" = (/obj/structure/catwalk,/obj/machinery/light/small{dir = 4; pixel_y = 0},/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/tiled/techfloor,/area/maintenance/lower/south) +"aXd" = (/obj/machinery/atmospherics/pipe/manifold4w/visible/cyan,/obj/effect/floor_decal/industrial/warning{dir = 8},/turf/simulated/floor/tiled/techmaint,/area/engineering/atmos) +"aXe" = (/obj/machinery/atmospherics/binary/pump/on{dir = 8},/turf/simulated/floor/tiled/techmaint,/area/engineering/atmos) +"aXf" = (/obj/machinery/atmospherics/omni/mixer{tag_north = 1; tag_north_con = 0.79; tag_south = 1; tag_south_con = 0.21; tag_west = 2},/obj/effect/floor_decal/industrial/outline/yellow,/turf/simulated/floor/tiled/techmaint,/area/engineering/atmos) +"aXg" = (/obj/machinery/atmospherics/pipe/manifold/visible/green{dir = 8},/turf/simulated/floor/tiled/techmaint,/area/engineering/atmos) +"aXh" = (/obj/machinery/atmospherics/pipe/simple/visible/green{tag = "icon-intact (EAST)"; icon_state = "intact"; dir = 4},/turf/simulated/floor/tiled/techmaint,/area/engineering/atmos) +"aXi" = (/obj/machinery/atmospherics/pipe/simple/visible/yellow,/obj/machinery/atmospherics/pipe/simple/visible/green{tag = "icon-intact (EAST)"; icon_state = "intact"; dir = 4},/turf/simulated/floor/tiled/techmaint,/area/engineering/atmos) +"aXj" = (/obj/machinery/atmospherics/pipe/simple/visible/green{dir = 9; icon_state = "intact"; tag = "icon-intact (SOUTHEAST)"},/obj/effect/floor_decal/industrial/warning{dir = 4},/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled/techfloor,/area/engineering/atmos) +"aXk" = (/turf/simulated/floor/tiled/steel_dirty,/area/engineering/atmos) +"aXl" = (/obj/structure/railing{dir = 4},/obj/machinery/atmospherics/pipe/zpipe/down{tag = "icon-down (EAST)"; icon_state = "down"; dir = 4},/turf/simulated/open,/area/engineering/atmos) +"aXm" = (/obj/machinery/atmospherics/pipe/simple/visible{tag = "icon-intact (SOUTHWEST)"; icon_state = "intact"; dir = 10},/turf/simulated/floor/tiled/techfloor,/area/engineering/atmos) +"aXn" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/tiled/techfloor,/area/engineering/atmos) +"aXo" = (/obj/machinery/atmospherics/pipe/simple/visible/black,/turf/simulated/floor/tiled/techfloor,/area/engineering/atmos) +"aXp" = (/obj/machinery/hologram/holopad,/turf/simulated/floor/tiled/techfloor,/area/engineering/atmos) +"aXq" = (/obj/effect/floor_decal/industrial/warning/corner{icon_state = "warningcorner"; dir = 4},/turf/simulated/floor/tiled/techmaint,/area/engineering/atmos) +"aXr" = (/obj/effect/floor_decal/industrial/warning{dir = 1},/obj/machinery/camera/network/engineering{c_tag = "ENG - Workshop Starboard"; dir = 8},/turf/simulated/floor/tiled/techmaint,/area/engineering/atmos) +"aXs" = (/obj/structure/catwalk,/obj/machinery/atmospherics/pipe/simple/visible/scrubbers,/obj/machinery/atmospherics/pipe/simple/visible/supply,/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0},/obj/structure/closet/crate,/obj/random/maintenance/clean,/obj/random/maintenance/clean,/turf/simulated/floor/tiled/techfloor,/area/maintenance/lower/south) +"aXt" = (/obj/effect/floor_decal/industrial/warning/dust{tag = "icon-warning_dust (WEST)"; icon_state = "warning_dust"; dir = 8},/obj/effect/floor_decal/industrial/warning/dust{tag = "icon-warning_dust (EAST)"; icon_state = "warning_dust"; dir = 4},/turf/simulated/floor/tiled/steel_dirty/virgo3b,/area/engineering/atmos/intake) +"aXu" = (/obj/machinery/atmospherics/pipe/simple/visible/blue{tag = "icon-intact (SOUTHEAST)"; icon_state = "intact"; dir = 6},/turf/simulated/floor/tiled/techmaint,/area/engineering/atmos) +"aXv" = (/obj/machinery/atmospherics/omni/filter{tag_north = 1; tag_south = 2; tag_west = 3},/turf/simulated/floor/tiled/techmaint,/area/engineering/atmos) +"aXw" = (/obj/effect/floor_decal/industrial/warning{dir = 4},/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled/techfloor,/area/engineering/atmos) +"aXx" = (/obj/effect/floor_decal/industrial/warning/corner,/turf/simulated/floor/tiled/techmaint,/area/engineering/atmos) +"aXy" = (/obj/effect/floor_decal/industrial/warning,/obj/machinery/light_switch{pixel_x = 25},/turf/simulated/floor/tiled/techmaint,/area/engineering/atmos) +"aXz" = (/obj/structure/catwalk,/obj/machinery/atmospherics/pipe/simple/visible/scrubbers{dir = 5},/obj/machinery/atmospherics/pipe/simple/visible/supply{dir = 5},/obj/structure/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/structure/closet/crate,/obj/random/maintenance/clean,/obj/random/maintenance/cargo,/turf/simulated/floor/tiled/techfloor,/area/maintenance/lower/south) +"aXA" = (/obj/structure/catwalk,/obj/machinery/atmospherics/pipe/simple/visible/scrubbers{dir = 10},/obj/machinery/atmospherics/pipe/simple/visible/supply{dir = 10},/obj/structure/cable{d1 = 2; d2 = 8; icon_state = "2-8"},/turf/simulated/floor/tiled/techfloor,/area/maintenance/lower/south) +"aXB" = (/obj/effect/floor_decal/industrial/warning{icon_state = "warning"; dir = 1},/obj/machinery/camera/network/engineering{c_tag = "ENG - Locker Room"; dir = 4},/turf/simulated/floor/tiled/techmaint,/area/engineering/atmos) +"aXC" = (/obj/effect/floor_decal/industrial/warning/corner{icon_state = "warningcorner"; dir = 1},/obj/machinery/atmospherics/pipe/simple/visible/cyan,/turf/simulated/floor/tiled/techmaint,/area/engineering/atmos) +"aXD" = (/obj/machinery/atmospherics/pipe/manifold/visible/blue{tag = "icon-map (EAST)"; icon_state = "map"; dir = 4},/turf/simulated/floor/tiled/techmaint,/area/engineering/atmos) +"aXE" = (/obj/machinery/atmospherics/binary/pump{dir = 1},/turf/simulated/floor/tiled/techmaint,/area/engineering/atmos) +"aXF" = (/obj/machinery/atmospherics/binary/pump/on,/turf/simulated/floor/tiled/techmaint,/area/engineering/atmos) +"aXG" = (/obj/effect/floor_decal/industrial/warning/corner{icon_state = "warningcorner"; dir = 4},/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled/techfloor,/area/engineering/atmos) +"aXH" = (/obj/machinery/atmospherics/pipe/simple/visible/black{dir = 5},/turf/simulated/floor/tiled/techfloor,/area/engineering/atmos) +"aXI" = (/obj/machinery/atmospherics/pipe/simple/visible/yellow,/obj/machinery/atmospherics/pipe/simple/visible/black{dir = 4},/obj/effect/floor_decal/corner_techfloor_gray{tag = "icon-corner_techfloor_gray (NORTH)"; icon_state = "corner_techfloor_gray"; dir = 1},/turf/simulated/floor/tiled/techmaint,/area/engineering/atmos) +"aXJ" = (/obj/machinery/atmospherics/pipe/simple/visible/black{dir = 4},/turf/simulated/floor/tiled/techmaint,/area/engineering/atmos) +"aXK" = (/obj/effect/floor_decal/industrial/warning{icon_state = "warning"; dir = 4},/obj/machinery/atmospherics/pipe/manifold/visible/black{dir = 1},/turf/simulated/floor/tiled/techmaint,/area/engineering/atmos) +"aXL" = (/obj/machinery/atmospherics/pipe/tank/carbon_dioxide{tag = "icon-co2_map (WEST)"; icon_state = "co2_map"; dir = 8},/obj/effect/floor_decal/industrial/outline/yellow,/turf/simulated/floor/tiled/steel_dirty,/area/engineering/atmos) +"aXM" = (/obj/machinery/atmospherics/binary/pump,/obj/effect/floor_decal/industrial/warning/corner,/turf/simulated/floor/tiled/techmaint,/area/engineering/atmos) +"aXN" = (/obj/machinery/atmospherics/pipe/manifold/visible/blue{tag = "icon-map (WEST)"; icon_state = "map"; dir = 8},/obj/effect/floor_decal/industrial/warning,/turf/simulated/floor/tiled/techmaint,/area/engineering/atmos) +"aXO" = (/obj/machinery/atmospherics/pipe/manifold4w/visible/blue,/obj/effect/floor_decal/industrial/warning,/obj/machinery/meter,/turf/simulated/floor/tiled/techmaint,/area/engineering/atmos) +"aXP" = (/obj/machinery/atmospherics/pipe/manifold/visible/blue{tag = "icon-map (EAST)"; icon_state = "map"; dir = 4},/obj/effect/floor_decal/industrial/warning,/turf/simulated/floor/tiled/techmaint,/area/engineering/atmos) +"aXQ" = (/obj/effect/floor_decal/industrial/warning/corner{icon_state = "warningcorner"; dir = 8},/turf/simulated/floor/tiled/techmaint,/area/engineering/atmos) +"aXR" = (/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled/techfloor,/area/engineering/atmos) +"aXS" = (/obj/structure/railing{dir = 8},/obj/structure/railing,/turf/simulated/open,/area/engineering/atmos) +"aXT" = (/obj/structure/railing,/turf/simulated/open,/area/engineering/atmos) +"aXU" = (/obj/structure/railing,/obj/structure/railing{dir = 4},/turf/simulated/open,/area/engineering/atmos) +"aXV" = (/obj/machinery/atmospherics/omni/filter{tag_east = 5; tag_north = 2; tag_south = 1},/turf/simulated/floor/tiled/techmaint,/area/engineering/atmos) +"aXW" = (/obj/machinery/atmospherics/pipe/manifold/visible/black{dir = 1},/turf/simulated/floor/tiled/techmaint,/area/engineering/atmos) +"aXX" = (/obj/effect/floor_decal/industrial/warning{icon_state = "warning"; dir = 4},/obj/machinery/atmospherics/pipe/manifold/visible/black,/obj/machinery/meter,/turf/simulated/floor/tiled/techmaint,/area/engineering/atmos) +"aXY" = (/obj/structure/closet,/obj/random/maintenance/security,/obj/random/contraband,/obj/random/maintenance/engineering,/obj/random/maintenance/engineering,/obj/effect/floor_decal/rust,/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/plating,/area/maintenance/lower/south) +"aXZ" = (/obj/effect/floor_decal/techfloor{tag = "icon-techfloor_edges (WEST)"; icon_state = "techfloor_edges"; dir = 8},/obj/item/device/radio/intercom{dir = 8; name = "Station Intercom (General)"; pixel_x = -28},/turf/simulated/floor/tiled/techfloor,/area/engineering/atmos) +"aYa" = (/obj/machinery/atmospherics/portables_connector{dir = 1},/obj/effect/floor_decal/industrial/warning{icon_state = "warning"; dir = 4},/obj/effect/floor_decal/industrial/hatch/yellow,/turf/simulated/floor/tiled/steel_dirty,/area/engineering/atmos) +"aYb" = (/obj/machinery/atmospherics/pipe/tank/oxygen{tag = "icon-o2_map (NORTH)"; icon_state = "o2_map"; dir = 1},/obj/effect/floor_decal/industrial/outline/yellow,/turf/simulated/floor/tiled/steel_dirty,/area/engineering/atmos) +"aYc" = (/obj/machinery/atmospherics/pipe/manifold4w/visible/yellow,/obj/machinery/meter,/turf/simulated/floor/tiled/techfloor,/area/engineering/atmos) +"aYd" = (/obj/machinery/atmospherics/pipe/simple/visible/yellow{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 5},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 5},/turf/simulated/floor/tiled/techfloor,/area/engineering/atmos) +"aYe" = (/obj/machinery/atmospherics/pipe/simple/visible/yellow{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled/techfloor,/area/engineering/atmos) +"aYf" = (/obj/machinery/atmospherics/pipe/simple/visible/yellow{dir = 9},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled/techfloor,/area/engineering/atmos) +"aYg" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 10},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 10},/turf/simulated/floor/tiled/techfloor,/area/engineering/atmos) +"aYh" = (/obj/machinery/atmospherics/pipe/simple/visible/black{dir = 5},/turf/simulated/floor/tiled/techmaint,/area/engineering/atmos) +"aYi" = (/obj/effect/floor_decal/industrial/warning/corner{icon_state = "warningcorner"; dir = 4},/obj/machinery/atmospherics/binary/pump{dir = 4},/turf/simulated/floor/tiled/techmaint,/area/engineering/atmos) +"aYj" = (/obj/effect/floor_decal/industrial/warning{icon_state = "warning"; dir = 1},/obj/machinery/atmospherics/portables_connector{dir = 8},/obj/effect/floor_decal/industrial/hatch/yellow,/obj/machinery/light{dir = 4; icon_state = "tube1"; pixel_x = 0},/turf/simulated/floor/tiled/steel_dirty,/area/engineering/atmos) +"aYk" = (/obj/structure/catwalk,/obj/effect/decal/cleanable/cobweb,/turf/simulated/floor/tiled/techfloor,/area/maintenance/lower/south) +"aYl" = (/obj/structure/catwalk,/obj/machinery/alarm{frequency = 1441; pixel_y = 22},/turf/simulated/floor/tiled/techfloor,/area/maintenance/lower/south) +"aYm" = (/obj/effect/floor_decal/rust,/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/plating,/area/maintenance/lower/south) +"aYn" = (/obj/effect/floor_decal/techfloor{tag = "icon-techfloor_edges (WEST)"; icon_state = "techfloor_edges"; dir = 8},/obj/machinery/light_switch{pixel_x = -25},/turf/simulated/floor/tiled/techfloor,/area/engineering/atmos) +"aYo" = (/obj/effect/floor_decal/corner_techfloor_gray{tag = "icon-corner_techfloor_gray (WEST)"; icon_state = "corner_techfloor_gray"; dir = 8},/turf/simulated/floor/tiled/techmaint,/area/engineering/atmos) +"aYp" = (/obj/effect/floor_decal/industrial/warning{icon_state = "warning"; dir = 1},/turf/simulated/floor/tiled/techmaint,/area/engineering/atmos) +"aYq" = (/obj/effect/floor_decal/industrial/warning/corner{icon_state = "warningcorner"; dir = 1},/obj/effect/floor_decal/corner_techfloor_gray,/turf/simulated/floor/tiled/techmaint,/area/engineering/atmos) +"aYr" = (/obj/effect/floor_decal/industrial/warning/corner,/turf/simulated/floor/tiled/techfloor,/area/engineering/atmos) +"aYs" = (/obj/effect/floor_decal/industrial/warning/corner{icon_state = "warningcorner"; dir = 8},/turf/simulated/floor/tiled/techfloor,/area/engineering/atmos) +"aYt" = (/obj/effect/floor_decal/corner_techfloor_grid,/turf/simulated/floor/tiled/techfloor,/area/engineering/atmos) +"aYu" = (/obj/machinery/light,/obj/effect/floor_decal/techfloor,/turf/simulated/floor/tiled/techfloor,/area/engineering/atmos) +"aYv" = (/obj/effect/floor_decal/techfloor,/turf/simulated/floor/tiled/techfloor,/area/engineering/atmos) +"aYw" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/tiled/techfloor,/area/engineering/atmos) +"aYx" = (/obj/effect/floor_decal/techfloor,/obj/item/device/radio/intercom{name = "Station Intercom (General)"; pixel_y = -21},/turf/simulated/floor/tiled/techfloor,/area/engineering/atmos) +"aYy" = (/obj/structure/extinguisher_cabinet{dir = 2; icon_state = "extinguisher_closed"; pixel_x = 30; tag = "icon-extinguisher_closed (WEST)"},/turf/simulated/floor/tiled/techmaint,/area/engineering/atmos) +"aYz" = (/obj/structure/railing{dir = 1},/obj/structure/railing{dir = 8},/obj/effect/decal/cleanable/dirt,/obj/structure/table/rack,/obj/random/maintenance/engineering,/obj/random/maintenance/engineering,/obj/random/maintenance/cargo,/turf/simulated/floor/tiled/techfloor,/area/maintenance/lower/south) +"aYA" = (/obj/structure/railing{dir = 1},/turf/simulated/floor/tiled/techfloor,/area/maintenance/lower/south) +"aYB" = (/obj/structure/railing{dir = 1},/obj/structure/railing{dir = 4},/turf/simulated/floor/tiled/techfloor,/area/maintenance/lower/south) +"aYC" = (/obj/structure/table/standard,/obj/effect/floor_decal/techfloor{tag = "icon-techfloor_edges (WEST)"; icon_state = "techfloor_edges"; dir = 8},/turf/simulated/floor/tiled/techfloor,/area/engineering/atmos) +"aYD" = (/obj/structure/window/reinforced{dir = 4},/turf/simulated/floor/tiled/techfloor,/area/engineering/atmos) +"aYE" = (/obj/machinery/portable_atmospherics/canister/empty,/turf/simulated/floor/tiled/steel_dirty,/area/engineering/atmos) +"aYF" = (/obj/machinery/portable_atmospherics/canister/air,/turf/simulated/floor/tiled/steel_dirty,/area/engineering/atmos) +"aYG" = (/obj/machinery/portable_atmospherics/canister/nitrogen,/turf/simulated/floor/tiled/steel_dirty,/area/engineering/atmos) +"aYH" = (/obj/machinery/portable_atmospherics/canister/oxygen,/turf/simulated/floor/tiled/steel_dirty,/area/engineering/atmos) +"aYI" = (/obj/machinery/portable_atmospherics/canister/sleeping_agent,/turf/simulated/floor/tiled/steel_dirty,/area/engineering/atmos) +"aYJ" = (/obj/machinery/portable_atmospherics/canister/carbon_dioxide,/turf/simulated/floor/tiled/steel_dirty,/area/engineering/atmos) +"aYK" = (/obj/machinery/atmospherics/portables_connector{dir = 4},/obj/effect/floor_decal/industrial/hatch/yellow,/turf/simulated/floor/tiled/techfloor,/area/engineering/atmos) +"aYL" = (/obj/machinery/atmospherics/pipe/manifold/visible/yellow{tag = "icon-map (EAST)"; icon_state = "map"; dir = 4},/turf/simulated/floor/tiled/techfloor,/area/engineering/atmos) +"aYM" = (/obj/effect/floor_decal/techfloor{tag = "icon-techfloor_edges (EAST)"; icon_state = "techfloor_edges"; dir = 4},/obj/machinery/camera/network/engineering{c_tag = "ENG - Workshop Starboard"; dir = 8},/turf/simulated/floor/tiled/techfloor,/area/engineering/atmos) +"aYN" = (/obj/machinery/door/firedoor/glass,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/door/airlock/atmos{name = "Atmospherics Maintenance"; req_access = list(24)},/turf/simulated/floor/tiled/techfloor/grid,/area/engineering/atmos) +"aYO" = (/obj/structure/catwalk,/obj/machinery/light/small{dir = 8},/obj/structure/cable{icon_state = "2-4"},/turf/simulated/floor/tiled/techfloor,/area/maintenance/lower/south) +"aYP" = (/obj/structure/railing{dir = 8},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/tiled/techfloor,/area/maintenance/lower/south) +"aYQ" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/tiled/techfloor,/area/maintenance/lower/south) +"aYR" = (/obj/structure/railing{dir = 4},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/tiled/techfloor,/area/maintenance/lower/south) +"aYS" = (/obj/structure/catwalk,/obj/machinery/light/small{dir = 4; pixel_y = 0},/obj/structure/cable{d1 = 2; d2 = 8; icon_state = "2-8"},/turf/simulated/floor/tiled/techfloor,/area/maintenance/lower/south) +"aYT" = (/obj/structure/disposalpipe/segment{dir = 1; icon_state = "pipe-c"},/turf/simulated/floor/tiled/techfloor,/area/engineering/atmos) +"aYU" = (/obj/structure/disposalpipe/segment{dir = 2; icon_state = "pipe-c"},/turf/simulated/floor/tiled/techfloor,/area/engineering/atmos) +"aYV" = (/obj/effect/floor_decal/techfloor{tag = "icon-techfloor_edges (EAST)"; icon_state = "techfloor_edges"; dir = 4},/turf/simulated/floor/tiled/techfloor,/area/engineering/atmos) +"aYW" = (/obj/structure/railing,/obj/structure/railing{dir = 4},/obj/effect/floor_decal/techfloor{tag = "icon-techfloor_edges (NORTHWEST)"; icon_state = "techfloor_edges"; dir = 9},/obj/structure/closet,/obj/random/maintenance/engineering,/obj/random/maintenance/clean,/obj/random/maintenance/engineering,/turf/simulated/floor/tiled/techfloor,/area/maintenance/lower/south) +"aYX" = (/obj/structure/catwalk,/obj/machinery/atmospherics/pipe/manifold/visible/supply{dir = 8},/obj/machinery/atmospherics/pipe/manifold/visible/scrubbers{dir = 8},/turf/simulated/floor/tiled/techfloor,/area/maintenance/lower/south) +"aYY" = (/obj/structure/railing,/obj/structure/railing{dir = 8},/obj/effect/floor_decal/techfloor{tag = "icon-techfloor_edges (NORTH)"; icon_state = "techfloor_edges"; dir = 1},/obj/machinery/atmospherics/pipe/simple/visible/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/visible/supply{dir = 4},/turf/simulated/floor/tiled/techfloor,/area/maintenance/lower/south) +"aYZ" = (/obj/structure/railing,/obj/effect/floor_decal/techfloor{tag = "icon-techfloor_edges (NORTH)"; icon_state = "techfloor_edges"; dir = 1},/obj/machinery/atmospherics/pipe/simple/visible/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/visible/supply{dir = 4},/turf/simulated/floor/tiled/techfloor,/area/maintenance/lower/south) +"aZa" = (/obj/structure/railing,/obj/machinery/light/small{dir = 1},/obj/effect/floor_decal/techfloor{tag = "icon-techfloor_edges (NORTH)"; icon_state = "techfloor_edges"; dir = 1},/obj/machinery/atmospherics/pipe/simple/visible/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/visible/supply{dir = 4},/turf/simulated/floor/tiled/techfloor,/area/maintenance/lower/south) +"aZb" = (/obj/structure/railing,/obj/effect/floor_decal/techfloor{tag = "icon-techfloor_edges (NORTH)"; icon_state = "techfloor_edges"; dir = 1},/obj/machinery/firealarm{dir = 2; layer = 3.3; pixel_x = 0; pixel_y = 26},/obj/machinery/atmospherics/pipe/simple/visible/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/visible/supply{dir = 4},/turf/simulated/floor/tiled/techfloor,/area/maintenance/lower/south) +"aZc" = (/obj/structure/railing,/obj/effect/floor_decal/techfloor{tag = "icon-techfloor_edges (NORTH)"; icon_state = "techfloor_edges"; dir = 1},/obj/machinery/atmospherics/pipe/simple/visible/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/visible/supply{dir = 4},/obj/structure/cable{icon_state = "2-4"},/turf/simulated/floor/tiled/techfloor,/area/maintenance/lower/south) +"aZd" = (/obj/structure/railing{dir = 4},/obj/structure/railing,/obj/effect/floor_decal/techfloor{tag = "icon-techfloor_edges (NORTH)"; icon_state = "techfloor_edges"; dir = 1},/obj/machinery/atmospherics/pipe/simple/visible/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/visible/supply{dir = 4},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/tiled/techfloor,/area/maintenance/lower/south) +"aZe" = (/obj/structure/catwalk,/obj/effect/floor_decal/techfloor{tag = "icon-techfloor_edges (NORTH)"; icon_state = "techfloor_edges"; dir = 1},/obj/machinery/atmospherics/pipe/simple/visible/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/visible/supply{dir = 4},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/tiled/techfloor,/area/maintenance/lower/south) +"aZf" = (/obj/structure/catwalk,/obj/machinery/atmospherics/pipe/simple/visible/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/visible/supply{dir = 4},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/tiled/techfloor,/area/maintenance/lower/south) +"aZg" = (/obj/structure/catwalk,/obj/effect/floor_decal/techfloor,/obj/machinery/atmospherics/pipe/simple/visible/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/visible/supply{dir = 4},/obj/structure/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/turf/simulated/floor/tiled/techfloor,/area/maintenance/lower/south) +"aZh" = (/obj/structure/railing{dir = 8},/obj/effect/floor_decal/techfloor,/obj/machinery/atmospherics/pipe/simple/visible/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/visible/supply{dir = 4},/turf/simulated/floor/tiled/techfloor,/area/maintenance/lower/south) +"aZi" = (/obj/effect/floor_decal/techfloor,/obj/machinery/atmospherics/pipe/simple/visible/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/visible/supply{dir = 4},/obj/effect/decal/cleanable/dirt,/mob/living/simple_animal/mouse,/turf/simulated/floor/tiled/techfloor,/area/maintenance/lower/south) +"aZj" = (/obj/effect/floor_decal/techfloor,/obj/machinery/atmospherics/pipe/simple/visible/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/visible/supply{dir = 4},/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/tiled/techfloor,/area/maintenance/lower/south) +"aZk" = (/obj/structure/railing{dir = 4},/obj/effect/floor_decal/techfloor,/obj/machinery/atmospherics/pipe/simple/visible/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/visible/supply{dir = 4},/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/tiled/techfloor,/area/maintenance/lower/south) +"aZl" = (/obj/structure/catwalk,/obj/effect/floor_decal/techfloor,/obj/machinery/atmospherics/pipe/simple/visible/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/visible/supply{dir = 4},/obj/structure/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/turf/simulated/floor/tiled/techfloor,/area/maintenance/lower/south) +"aZm" = (/obj/structure/catwalk,/obj/machinery/atmospherics/pipe/simple/visible/scrubbers{dir = 9},/obj/machinery/atmospherics/pipe/simple/visible/supply{dir = 9},/obj/structure/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/turf/simulated/floor/tiled/techfloor,/area/maintenance/lower/south) +"aZn" = (/obj/structure/table/standard,/obj/effect/floor_decal/techfloor{tag = "icon-techfloor_edges (SOUTHWEST)"; icon_state = "techfloor_edges"; dir = 10},/turf/simulated/floor/tiled/techfloor,/area/engineering/atmos) +"aZo" = (/obj/structure/table/standard,/obj/effect/floor_decal/techfloor,/turf/simulated/floor/tiled/techfloor,/area/engineering/atmos) +"aZp" = (/obj/structure/table/standard,/obj/effect/floor_decal/techfloor,/obj/machinery/camera/network/engineering{c_tag = "ENG - Pump Station"; dir = 1},/turf/simulated/floor/tiled/techfloor,/area/engineering/atmos) +"aZq" = (/obj/effect/floor_decal/techfloor,/obj/machinery/space_heater,/turf/simulated/floor/tiled/techfloor,/area/engineering/atmos) +"aZr" = (/obj/structure/table/rack{dir = 8; layer = 2.9},/obj/item/clothing/shoes/magboots,/obj/item/clothing/suit/space/void/atmos,/obj/item/clothing/mask/breath,/obj/item/clothing/head/helmet/space/void/atmos,/obj/structure/window/reinforced{dir = 8},/obj/machinery/door/window/northleft{name = "Atmospherics Hardsuits"; req_access = list(24)},/obj/item/clothing/suit/space/void/atmos/taur,/obj/item/clothing/head/helmet/space/void/atmos,/turf/simulated/floor/tiled/techfloor,/area/engineering/atmos) +"aZs" = (/obj/structure/table/rack{dir = 8; layer = 2.9},/obj/item/clothing/shoes/magboots,/obj/item/clothing/suit/space/void/atmos,/obj/item/clothing/mask/breath,/obj/item/clothing/head/helmet/space/void/atmos,/obj/machinery/door/window/northright{name = "Atmospherics Hardsuits"; req_access = list(24)},/obj/structure/window/reinforced{dir = 4},/obj/item/clothing/suit/space/void/atmos/taur,/obj/item/clothing/head/helmet/space/void/atmos,/turf/simulated/floor/tiled/techfloor,/area/engineering/atmos) +"aZt" = (/obj/machinery/pipedispenser/disposal,/obj/effect/floor_decal/industrial/outline/yellow,/turf/simulated/floor/tiled/techfloor,/area/engineering/atmos) +"aZu" = (/obj/machinery/pipedispenser,/obj/effect/floor_decal/industrial/outline/yellow,/turf/simulated/floor/tiled/techfloor,/area/engineering/atmos) +"aZv" = (/obj/effect/floor_decal/techfloor,/obj/machinery/disposal,/obj/structure/disposalpipe/trunk{dir = 1},/turf/simulated/floor/tiled/techfloor,/area/engineering/atmos) +"aZw" = (/obj/structure/window/reinforced{dir = 4},/obj/effect/floor_decal/techfloor,/obj/machinery/camera/network/engineering{c_tag = "ENG - Pump Station"; dir = 1},/turf/simulated/floor/tiled/techfloor,/area/engineering/atmos) +"aZx" = (/obj/machinery/portable_atmospherics/canister/oxygen,/obj/machinery/light,/turf/simulated/floor/tiled/steel_dirty,/area/engineering/atmos) +"aZy" = (/obj/machinery/atmospherics/pipe/simple/visible/yellow{dir = 9},/obj/effect/floor_decal/corner_techfloor_grid,/obj/effect/floor_decal/corner_techfloor_grid{tag = "icon-corner_techfloor_grid (WEST)"; icon_state = "corner_techfloor_grid"; dir = 8},/turf/simulated/floor/tiled/techfloor,/area/engineering/atmos) +"aZz" = (/obj/effect/floor_decal/techfloor{tag = "icon-techfloor_edges (SOUTHEAST)"; icon_state = "techfloor_edges"; dir = 6},/turf/simulated/floor/tiled/techfloor,/area/engineering/atmos) +"aZA" = (/obj/structure/catwalk,/obj/machinery/atmospherics/pipe/simple/visible/supply,/obj/machinery/atmospherics/pipe/simple/visible/scrubbers,/turf/simulated/floor/tiled/techfloor,/area/maintenance/lower/south) +"aZB" = (/obj/structure/catwalk,/obj/structure/cable{icon_state = "2-4"},/turf/simulated/floor/tiled/techfloor,/area/maintenance/lower/south) +"aZC" = (/obj/structure/catwalk,/obj/structure/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/turf/simulated/floor/tiled/techfloor,/area/maintenance/lower/south) +"aZD" = (/obj/structure/railing{dir = 8},/obj/structure/railing{dir = 1},/obj/effect/floor_decal/techfloor{tag = "icon-techfloor_edges (EAST)"; icon_state = "techfloor_edges"; dir = 4},/obj/machinery/atmospherics/pipe/simple/visible/supply,/obj/machinery/atmospherics/pipe/simple/visible/scrubbers,/turf/simulated/floor/tiled/techfloor,/area/maintenance/lower/south) +"aZE" = (/obj/structure/sign/department/telecoms,/turf/simulated/wall,/area/maintenance/substation/tcomms) +"aZF" = (/obj/machinery/door/airlock/maintenance/engi{name = "Telecomms Substation"},/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0},/obj/machinery/door/firedoor,/turf/simulated/floor/plating,/area/maintenance/substation/tcomms) +"aZG" = (/obj/structure/sign/securearea{desc = "A warning sign which reads 'HIGH VOLTAGE'"; icon_state = "shock"; name = "HIGH VOLTAGE"; pixel_y = 0},/turf/simulated/wall,/area/maintenance/substation/tcomms) +"aZH" = (/turf/simulated/wall,/area/maintenance/substation/tcomms) +"aZI" = (/obj/structure/railing{dir = 8},/obj/effect/floor_decal/techfloor{tag = "icon-techfloor_edges (EAST)"; icon_state = "techfloor_edges"; dir = 4},/obj/machinery/atmospherics/pipe/simple/visible/supply,/obj/machinery/atmospherics/pipe/simple/visible/scrubbers,/turf/simulated/floor/tiled/techfloor,/area/maintenance/lower/south) +"aZJ" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0},/obj/structure/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/effect/floor_decal/industrial/warning,/turf/simulated/floor/plating,/area/maintenance/substation/tcomms) +"aZK" = (/obj/machinery/power/terminal,/obj/structure/cable{icon_state = "0-8"},/obj/effect/floor_decal/industrial/warning,/turf/simulated/floor/plating,/area/maintenance/substation/tcomms) +"aZL" = (/obj/machinery/alarm{frequency = 1441; pixel_y = 22},/obj/effect/floor_decal/industrial/warning/corner{tag = "icon-warningcorner (WEST)"; icon_state = "warningcorner"; dir = 8},/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/plating,/area/maintenance/substation/tcomms) +"aZM" = (/obj/machinery/power/apc{dir = 4; name = "east bump"; pixel_x = 28},/obj/machinery/camera/network/engineering,/obj/structure/cable/green{d2 = 2; icon_state = "0-2"},/turf/simulated/floor/plating,/area/maintenance/substation/tcomms) +"aZN" = (/turf/simulated/wall/r_wall,/area/tcommsat/computer) +"aZO" = (/obj/machinery/power/breakerbox/activated{RCon_tag = "Telecomms Substation Bypass"},/turf/simulated/floor/plating,/area/maintenance/substation/tcomms) +"aZP" = (/obj/machinery/power/smes/buildable{charge = 100000; RCon_tag = "Substation - Telecomms"},/obj/structure/cable/green{icon_state = "0-4"},/obj/structure/cable/green{icon_state = "0-8"},/turf/simulated/floor/plating,/area/maintenance/substation/tcomms) +"aZQ" = (/obj/machinery/power/sensor{name = "Powernet Sensor - Telecomms Subgrid"; name_tag = "Telecomms Subgrid"},/obj/effect/floor_decal/industrial/warning{dir = 8},/obj/structure/cable/green{icon_state = "0-8"},/obj/structure/cable/green{d2 = 2; icon_state = "0-2"},/obj/structure/cable/green{d2 = 4; icon_state = "0-4"},/turf/simulated/floor/plating,/area/maintenance/substation/tcomms) +"aZR" = (/obj/structure/cable/green{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/machinery/light/small,/turf/simulated/floor/plating,/area/maintenance/substation/tcomms) +"aZS" = (/turf/simulated/wall/r_wall,/area/maintenance/substation/tcomms) +"aZT" = (/turf/simulated/wall/r_wall,/area/tcommsat/entrance) +"aZU" = (/obj/machinery/atmospherics/portables_connector,/obj/machinery/portable_atmospherics/canister/air/airlock,/turf/simulated/floor/tiled/dark,/area/tcommsat/computer) +"aZV" = (/obj/structure/filingcabinet,/obj/machinery/status_display{pixel_y = 30},/turf/simulated/floor/tiled/dark,/area/tcommsat/computer) +"aZW" = (/obj/structure/table/standard,/obj/item/weapon/folder/yellow,/obj/item/weapon/folder/yellow,/obj/machinery/light{dir = 1},/obj/machinery/firealarm{dir = 2; layer = 3.3; pixel_x = 0; pixel_y = 26},/turf/simulated/floor/tiled/dark,/area/tcommsat/computer) +"aZX" = (/obj/structure/table/standard,/obj/item/weapon/paper_bin,/obj/item/weapon/pen/blue{pixel_x = -3; pixel_y = 2},/turf/simulated/floor/tiled/dark,/area/tcommsat/computer) +"aZY" = (/obj/machinery/alarm{frequency = 1441; pixel_y = 22},/turf/simulated/floor/tiled/dark,/area/tcommsat/computer) +"aZZ" = (/obj/structure/table/standard,/obj/item/device/flashlight/lamp,/turf/simulated/floor/tiled/dark,/area/tcommsat/computer) +"baa" = (/obj/machinery/door/airlock/highsecurity{name = "Telecomms Access"; req_one_access = list(61)},/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/door/firedoor,/turf/simulated/floor/tiled,/area/tcommsat/entrance) +"bab" = (/obj/structure/sign/securearea,/turf/simulated/wall/r_wall,/area/tcommsat/entrance) +"bac" = (/obj/machinery/porta_turret{dir = 6},/obj/machinery/light{dir = 1},/turf/simulated/floor/tiled/dark,/area/tcommsat/entrance) +"bad" = (/obj/machinery/camera/network/telecom,/turf/simulated/floor/tiled/dark,/area/tcommsat/entrance) +"bae" = (/obj/machinery/turretid/lethal{ailock = 1; check_synth = 1; control_area = "\improper Telecoms Satellite"; desc = "A firewall prevents AIs from interacting with this device."; name = "Telecoms lethal turret control"; pixel_x = 29; pixel_y = 0; req_access = list(61)},/obj/structure/extinguisher_cabinet{pixel_y = 30},/obj/effect/decal/cleanable/cobweb2,/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/tiled/dark,/area/tcommsat/entrance) +"baf" = (/obj/machinery/atmospherics/pipe/simple/hidden{dir = 5; icon_state = "intact"; tag = "icon-intact-f (NORTHEAST)"},/turf/simulated/floor/tiled,/area/tcommsat/computer) +"bag" = (/obj/machinery/atmospherics/pipe/simple/hidden{dir = 4; icon_state = "intact"; tag = "icon-intact-f (EAST)"},/turf/simulated/floor/tiled,/area/tcommsat/computer) +"bah" = (/obj/structure/bed/chair/office/dark{dir = 1},/obj/machinery/atmospherics/pipe/simple/hidden{dir = 4; icon_state = "intact"; tag = "icon-intact-f (EAST)"},/turf/simulated/floor/tiled,/area/tcommsat/computer) +"bai" = (/obj/machinery/atmospherics/pipe/simple/hidden{tag = "icon-intact (EAST)"; icon_state = "intact"; dir = 4},/turf/simulated/floor/tiled,/area/tcommsat/computer) +"baj" = (/obj/machinery/atmospherics/pipe/simple/hidden{dir = 10; icon_state = "intact"; tag = "icon-intact-f (SOUTHWEST)"},/turf/simulated/floor/tiled,/area/tcommsat/computer) +"bak" = (/obj/machinery/computer/telecomms/monitor{dir = 8; network = "tcommsat"},/turf/simulated/floor/tiled/dark,/area/tcommsat/computer) +"bal" = (/obj/effect/floor_decal/techfloor{tag = "icon-techfloor_edges (EAST)"; icon_state = "techfloor_edges"; dir = 4},/obj/structure/railing{dir = 8},/obj/structure/railing,/obj/machinery/atmospherics/pipe/simple/visible/supply,/obj/machinery/atmospherics/pipe/simple/visible/scrubbers,/obj/structure/table/rack,/obj/random/maintenance/clean,/obj/random/maintenance/engineering,/obj/random/cigarettes,/obj/random/maintenance/engineering,/turf/simulated/floor/tiled/techfloor,/area/maintenance/lower/south) +"bam" = (/obj/structure/sign/department/telecoms,/turf/simulated/wall/r_wall,/area/tcommsat/entrance) +"ban" = (/obj/machinery/atmospherics/unary/vent_scrubber/on,/obj/effect/decal/cleanable/cobweb,/obj/machinery/light/small{dir = 1},/turf/simulated/floor/tiled,/area/tcommsat/entrance) +"bao" = (/obj/structure/cable/green{d2 = 2; icon_state = "0-2"},/obj/machinery/power/apc{dir = 1; name = "north bump"; pixel_x = 0; pixel_y = 28},/turf/simulated/floor/tiled,/area/tcommsat/entrance) +"bap" = (/obj/machinery/turretid/stun{ailock = 1; check_synth = 1; control_area = "\improper Telecoms Foyer"; desc = "A firewall prevents AIs from interacting with this device."; name = "Telecoms Foyer turret control"; pixel_x = 29; pixel_y = 0; req_access = list(61)},/obj/machinery/firealarm{dir = 2; layer = 3.3; pixel_x = 0; pixel_y = 26},/turf/simulated/floor/tiled,/area/tcommsat/entrance) +"baq" = (/obj/machinery/alarm{frequency = 1441; pixel_y = 22},/turf/simulated/floor/tiled,/area/tcommsat/entrance) +"bar" = (/obj/machinery/camera/network/telecom,/obj/structure/sign/electricshock,/turf/simulated/floor/tiled,/area/tcommsat/entrance) +"bas" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 6},/turf/simulated/floor/tiled,/area/tcommsat/entrance) +"bat" = (/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 8},/turf/simulated/floor/tiled,/area/tcommsat/entrance) +"bau" = (/obj/structure/window/reinforced{dir = 5; icon_state = "fwindow"},/obj/structure/grille,/obj/machinery/door/firedoor/glass,/obj/structure/cable/green{d2 = 2; icon_state = "0-2"},/turf/simulated/floor/plating,/area/tcommsat/entrance) +"bav" = (/turf/simulated/floor/tiled,/area/tcommsat/entrance) +"baw" = (/obj/machinery/atmospherics/unary/vent_pump/on,/obj/item/device/radio/intercom{dir = 4; name = "Station Intercom (General)"; pixel_x = 22},/turf/simulated/floor/tiled,/area/tcommsat/entrance) +"bax" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 6},/obj/machinery/camera/network/telecom{dir = 4},/turf/simulated/floor/tiled,/area/tcommsat/computer) +"bay" = (/obj/machinery/atmospherics/unary/vent_pump/on{dir = 8},/turf/simulated/floor/tiled,/area/tcommsat/computer) +"baz" = (/turf/simulated/floor/tiled,/area/tcommsat/computer) +"baA" = (/obj/machinery/atmospherics/unary/vent_scrubber/on,/turf/simulated/floor/tiled,/area/tcommsat/computer) +"baB" = (/obj/structure/bed/chair/office/dark{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden,/turf/simulated/floor/tiled,/area/tcommsat/computer) +"baC" = (/obj/machinery/computer/telecomms/server{dir = 8; network = "tcommsat"},/turf/simulated/floor/tiled/dark,/area/tcommsat/computer) +"baD" = (/obj/structure/catwalk,/obj/effect/floor_decal/techfloor/corner,/turf/simulated/floor/tiled/techfloor,/area/maintenance/lower/south) +"baE" = (/obj/structure/catwalk,/obj/effect/floor_decal/techfloor{tag = "icon-techfloor_edges (EAST)"; icon_state = "techfloor_edges"; dir = 4},/obj/machinery/atmospherics/pipe/simple/visible/supply{dir = 5},/obj/machinery/atmospherics/pipe/simple/visible/scrubbers{dir = 5},/turf/simulated/floor/tiled/techfloor,/area/maintenance/lower/south) +"baF" = (/obj/machinery/door/airlock/highsecurity{name = "Telecomms Access"; req_one_access = list(61)},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/door/firedoor,/turf/simulated/floor/tiled,/area/tcommsat/entrance) +"baG" = (/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 1},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,/turf/simulated/floor/tiled,/area/tcommsat/entrance) +"baH" = (/obj/structure/cable/green{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/tiled,/area/tcommsat/entrance) +"baI" = (/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,/area/tcommsat/entrance) +"baJ" = (/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/hatch{name = "Telecomms Foyer"; req_one_access = list(61)},/obj/machinery/door/firedoor,/turf/simulated/floor/tiled,/area/tcommsat/entrance) +"baK" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 1},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/turf/simulated/floor/tiled,/area/tcommsat/entrance) +"baL" = (/obj/structure/cable/green{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/cable/green{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/machinery/atmospherics/pipe/manifold4w/hidden/scrubbers,/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 1},/obj/machinery/hologram/holopad,/turf/simulated/floor/tiled,/area/tcommsat/entrance) +"baM" = (/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/decal/cleanable/dirt,/turf/simulated/floor/tiled,/area/tcommsat/entrance) +"baN" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/door/firedoor/glass,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/door/airlock/glass{req_access = list(61)},/obj/structure/cable/green{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/structure/cable/green{d1 = 2; d2 = 8; icon_state = "2-8"},/turf/simulated/floor/tiled,/area/tcommsat/entrance) +"baO" = (/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/tcommsat/entrance) +"baP" = (/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 = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled,/area/tcommsat/entrance) +"baQ" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/manifold/hidden/supply,/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 1},/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/tiled,/area/tcommsat/entrance) +"baR" = (/obj/machinery/door/airlock/hatch{name = "Telecoms Control Room"; req_access = list(61)},/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/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/turf/simulated/floor/tiled,/area/tcommsat/computer) +"baS" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 9; pixel_y = 0},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/turf/simulated/floor/tiled,/area/tcommsat/computer) +"baT" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/turf/simulated/floor/tiled,/area/tcommsat/computer) +"baU" = (/obj/structure/cable/green{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/structure/cable/green{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/turf/simulated/floor/tiled,/area/tcommsat/computer) +"baV" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 9},/turf/simulated/floor/tiled,/area/tcommsat/computer) +"baW" = (/obj/machinery/power/apc{dir = 4; name = "east bump"; pixel_x = 24},/obj/machinery/atmospherics/pipe/simple/hidden,/obj/structure/cable/green{d2 = 8; icon_state = "0-8"},/turf/simulated/floor/tiled,/area/tcommsat/computer) +"baX" = (/turf/simulated/wall/r_wall,/area/tcommsat/chamber) +"baY" = (/obj/structure/railing{dir = 1},/obj/effect/floor_decal/techfloor{tag = "icon-techfloor_edges (SOUTHWEST)"; icon_state = "techfloor_edges"; dir = 10},/turf/simulated/floor/tiled/techfloor,/area/maintenance/lower/south) +"baZ" = (/obj/structure/railing{dir = 1},/obj/effect/floor_decal/techfloor{tag = "icon-techfloor_edges (SOUTHEAST)"; icon_state = "techfloor_edges"; dir = 6},/turf/simulated/floor/tiled/techfloor,/area/maintenance/lower/south) +"bba" = (/obj/machinery/atmospherics/unary/vent_pump/on{dir = 1},/turf/simulated/floor/tiled,/area/tcommsat/entrance) +"bbb" = (/obj/machinery/camera/network/telecom{dir = 1},/turf/simulated/floor/tiled,/area/tcommsat/entrance) +"bbc" = (/obj/machinery/alarm{dir = 1; pixel_y = -25},/obj/item/device/radio/intercom{dir = 4; name = "Station Intercom (General)"; pixel_x = 22},/turf/simulated/floor/tiled,/area/tcommsat/entrance) +"bbd" = (/obj/machinery/atmospherics/unary/vent_pump/on{dir = 1},/obj/machinery/light{icon_state = "tube1"; dir = 8},/turf/simulated/floor/tiled,/area/tcommsat/entrance) +"bbe" = (/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/tcommsat/entrance) +"bbf" = (/obj/structure/grille,/obj/structure/window/reinforced{dir = 5; icon_state = "fwindow"},/obj/machinery/door/firedoor,/obj/structure/cable/green,/turf/simulated/floor/plating,/area/tcommsat/entrance) +"bbg" = (/obj/machinery/porta_turret{dir = 6},/turf/simulated/floor/tiled,/area/tcommsat/entrance) +"bbh" = (/obj/machinery/power/apc{dir = 2; name = "south bump"; pixel_y = -28},/obj/structure/cable/green,/turf/simulated/floor/tiled,/area/tcommsat/entrance) +"bbi" = (/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 1},/obj/machinery/alarm{dir = 1; icon_state = "alarm0"; pixel_y = -22},/turf/simulated/floor/tiled,/area/tcommsat/entrance) +"bbj" = (/obj/machinery/light{dir = 8},/obj/structure/table/standard,/obj/item/device/multitool,/obj/structure/sign/electricshock{pixel_x = -32},/turf/simulated/floor/tiled/dark,/area/tcommsat/computer) +"bbk" = (/obj/machinery/atmospherics/unary/freezer{dir = 2; icon_state = "freezer_1"; set_temperature = 73; use_power = 1},/turf/simulated/floor/tiled/dark,/area/tcommsat/computer) +"bbl" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/tiled/dark,/area/tcommsat/computer) +"bbm" = (/obj/machinery/atmospherics/pipe/simple/hidden{dir = 5; icon_state = "intact"; tag = "icon-intact-f (NORTHEAST)"},/obj/machinery/airlock_sensor/airlock_exterior{frequency = 1381; id_tag = "server_access_ex_sensor"; master_tag = "server_access_airlock"; pixel_x = 25; pixel_y = 22},/turf/simulated/floor/tiled,/area/tcommsat/computer) +"bbn" = (/obj/machinery/door/airlock/maintenance_hatch{frequency = 1381; icon_state = "door_locked"; id_tag = "server_access_outer"; locked = 1; name = "Telecoms Server Access"; req_access = list(61)},/obj/machinery/atmospherics/pipe/simple/hidden{tag = "icon-intact (EAST)"; icon_state = "intact"; dir = 4},/turf/simulated/floor/tiled,/area/tcommsat/chamber) +"bbo" = (/obj/machinery/airlock_sensor{frequency = 1381; id_tag = "server_access_sensor"; pixel_x = 12; pixel_y = 25},/obj/machinery/atmospherics/unary/vent_pump/high_volume{dir = 8; frequency = 1381; id_tag = "server_access_pump"},/obj/machinery/embedded_controller/radio/airlock/advanced_airlock_controller{frequency = 1381; id_tag = "server_access_airlock"; name = "Server Access Airlock"; pixel_x = 0; pixel_y = 25; tag_airpump = "server_access_pump"; tag_chamber_sensor = "server_access_sensor"; tag_exterior_door = "server_access_outer"; tag_exterior_sensor = "server_access_ex_sensor"; tag_interior_door = "server_access_inner"; tag_interior_sensor = "server_access_in_sensor"; tag_secure = 1},/turf/simulated/floor/plating,/area/tcommsat/chamber) +"bbp" = (/obj/machinery/light/small{dir = 1},/turf/simulated/floor/plating,/area/tcommsat/chamber) +"bbq" = (/obj/machinery/atmospherics/unary/vent_pump/on{dir = 1},/obj/machinery/porta_turret{dir = 6},/turf/simulated/floor/tiled/dark,/area/tcommsat/entrance) +"bbr" = (/turf/simulated/floor/tiled/dark,/area/tcommsat/entrance) +"bbs" = (/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/dark,/area/tcommsat/entrance) +"bbt" = (/obj/machinery/porta_turret/stationary,/turf/simulated/floor/tiled/dark,/area/tcommsat/entrance) +"bbu" = (/obj/structure/cable/green{d2 = 4; icon_state = "0-4"},/obj/structure/window/reinforced{dir = 5; icon_state = "fwindow"},/obj/structure/grille,/obj/machinery/door/firedoor/glass,/obj/machinery/atmospherics/pipe/simple/hidden/black{dir = 6},/turf/simulated/floor/plating,/area/tcommsat/chamber) +"bbv" = (/obj/structure/cable/green{d2 = 4; icon_state = "0-4"},/obj/structure/cable/green{d2 = 8; icon_state = "0-8"},/obj/structure/window/reinforced{dir = 5; icon_state = "fwindow"},/obj/structure/grille,/obj/machinery/door/firedoor/glass,/obj/machinery/atmospherics/pipe/manifold/hidden/black,/turf/simulated/floor/plating,/area/tcommsat/chamber) +"bbw" = (/obj/structure/cable/green{d2 = 4; icon_state = "0-4"},/obj/structure/cable/green{d2 = 8; icon_state = "0-8"},/obj/structure/cable/green,/obj/structure/cable/green{d2 = 2; icon_state = "0-2"},/obj/structure/window/reinforced{dir = 5; icon_state = "fwindow"},/obj/structure/grille,/obj/machinery/door/firedoor/glass,/obj/machinery/atmospherics/pipe/simple/hidden/black{dir = 4},/turf/simulated/floor/plating,/area/tcommsat/chamber) +"bbx" = (/obj/structure/cable/green{d2 = 4; icon_state = "0-4"},/obj/structure/cable/green{d2 = 8; icon_state = "0-8"},/obj/structure/window/reinforced{dir = 5; icon_state = "fwindow"},/obj/structure/grille,/obj/machinery/door/firedoor/glass,/obj/machinery/atmospherics/pipe/simple/hidden/black{dir = 4},/turf/simulated/floor/plating,/area/tcommsat/chamber) +"bby" = (/obj/structure/cable/green{d2 = 8; icon_state = "0-8"},/obj/structure/window/reinforced{dir = 5; icon_state = "fwindow"},/obj/structure/grille,/obj/machinery/door/firedoor/glass,/obj/machinery/atmospherics/pipe/simple/hidden/black{dir = 10},/turf/simulated/floor/plating,/area/tcommsat/chamber) +"bbz" = (/obj/machinery/door/airlock/maintenance_hatch{frequency = 1381; icon_state = "door_locked"; id_tag = "server_access_inner"; locked = 1; name = "Telecoms Server Access"; req_access = list(61)},/turf/simulated/wall/r_wall,/area/tcommsat/chamber) +"bbA" = (/obj/effect/floor_decal/industrial/warning/dust{tag = "icon-warning_dust (SOUTHWEST)"; icon_state = "warning_dust"; dir = 10},/obj/effect/floor_decal/industrial/warning/dust/corner{tag = "icon-warningcorner_dust (EAST)"; icon_state = "warningcorner_dust"; dir = 4},/turf/simulated/floor/tiled/steel_dirty/virgo3b,/area/engineering/atmos/intake) +"bbB" = (/obj/effect/floor_decal/industrial/warning/dust,/obj/effect/floor_decal/industrial/warning/dust{tag = "icon-warning_dust (NORTH)"; icon_state = "warning_dust"; dir = 1},/turf/simulated/floor/tiled/steel_dirty/virgo3b,/area/engineering/atmos/intake) +"bbC" = (/obj/structure/grille,/obj/structure/window/reinforced{dir = 5; icon_state = "fwindow"},/obj/machinery/door/firedoor,/turf/simulated/floor/plating,/area/tcommsat/entrance) +"bbD" = (/obj/machinery/door/airlock/glass{name = "Telecomms Storage"; req_access = list(61); req_one_access = newlist()},/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/door/firedoor/glass,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/tiled/dark,/area/tcommsat/entrance) +"bbE" = (/turf/simulated/floor/bluegrid{name = "Mainframe Base"; nitrogen = 100; oxygen = 0; temperature = 80},/area/tcommsat/chamber) +"bbF" = (/obj/structure/cable/green{icon_state = "0-4"},/obj/machinery/power/apc/super/critical{dir = 1; name = "north bump"; pixel_y = 24},/turf/simulated/floor/bluegrid{name = "Mainframe Base"; nitrogen = 100; oxygen = 0; temperature = 80},/area/tcommsat/chamber) +"bbG" = (/obj/machinery/atmospherics/pipe/simple/hidden/black,/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/bluegrid{name = "Mainframe Base"; nitrogen = 100; oxygen = 0; temperature = 80},/area/tcommsat/chamber) +"bbH" = (/obj/machinery/porta_turret/stationary,/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/bluegrid{name = "Mainframe Base"; nitrogen = 100; oxygen = 0; temperature = 80},/area/tcommsat/chamber) +"bbI" = (/obj/machinery/light{dir = 1},/obj/structure/cable/green{d1 = 1; d2 = 8; icon_state = "1-8"},/turf/simulated/floor/bluegrid{name = "Mainframe Base"; nitrogen = 100; oxygen = 0; temperature = 80},/area/tcommsat/chamber) +"bbJ" = (/obj/machinery/porta_turret/stationary,/turf/simulated/floor/bluegrid{name = "Mainframe Base"; nitrogen = 100; oxygen = 0; temperature = 80},/area/tcommsat/chamber) +"bbK" = (/obj/machinery/atmospherics/pipe/simple/hidden/black,/turf/simulated/floor/bluegrid{name = "Mainframe Base"; nitrogen = 100; oxygen = 0; temperature = 80},/area/tcommsat/chamber) +"bbL" = (/obj/machinery/airlock_sensor/airlock_interior{frequency = 1381; id_tag = "server_access_in_sensor"; master_tag = "server_access_airlock"; name = "interior sensor"; pixel_x = 8; pixel_y = 25},/turf/simulated/floor/bluegrid{name = "Mainframe Base"; nitrogen = 100; oxygen = 0; temperature = 80},/area/tcommsat/chamber) +"bbM" = (/obj/machinery/airlock_sensor/airlock_interior{frequency = 1381; id_tag = "server_access_in_sensor"; name = "interior sensor"; pixel_y = 25},/obj/structure/sign/securearea{desc = "A warning sign which reads 'SERVER ROOM'."; name = "SERVER ROOM"; pixel_y = 32},/turf/simulated/floor/bluegrid{name = "Mainframe Base"; nitrogen = 100; oxygen = 0; temperature = 80},/area/tcommsat/chamber) +"bbN" = (/turf/simulated/floor/tiled/dark{nitrogen = 100; oxygen = 0; temperature = 80},/area/tcommsat/chamber) +"bbO" = (/obj/structure/sign/securearea{desc = "A warning sign which reads 'SERVER ROOM'."; name = "SERVER ROOM"; pixel_y = 32},/turf/simulated/floor/bluegrid{name = "Mainframe Base"; nitrogen = 100; oxygen = 0; temperature = 80},/area/tcommsat/chamber) +"bbP" = (/obj/structure/table/standard,/obj/item/weapon/stock_parts/subspace/amplifier,/obj/item/weapon/stock_parts/subspace/amplifier,/obj/item/weapon/stock_parts/subspace/amplifier,/obj/machinery/atmospherics/unary/vent_pump/on{dir = 4},/turf/simulated/floor/tiled/techmaint,/area/tcommsat/entrance) +"bbQ" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/effect/decal/cleanable/molten_item,/turf/simulated/floor/tiled/techmaint,/area/tcommsat/entrance) +"bbR" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 9; pixel_y = 0},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 5},/turf/simulated/floor/tiled/techmaint,/area/tcommsat/entrance) +"bbS" = (/obj/structure/table/standard,/obj/item/weapon/stock_parts/subspace/ansible,/obj/item/weapon/stock_parts/subspace/ansible,/obj/item/weapon/stock_parts/subspace/ansible,/obj/machinery/alarm{dir = 8; pixel_x = 25; pixel_y = 0},/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 8},/turf/simulated/floor/tiled/techmaint,/area/tcommsat/entrance) +"bbT" = (/obj/machinery/atmospherics/pipe/simple/hidden/black,/turf/simulated/floor/tiled/dark{nitrogen = 100; oxygen = 0; temperature = 80},/area/tcommsat/chamber) +"bbU" = (/obj/machinery/hologram/holopad,/turf/simulated/floor/tiled/dark{nitrogen = 100; oxygen = 0; temperature = 80},/area/tcommsat/chamber) +"bbV" = (/obj/structure/table/standard,/obj/item/weapon/stock_parts/subspace/transmitter,/obj/item/weapon/stock_parts/subspace/transmitter,/obj/structure/cable/green{icon_state = "0-4"},/obj/machinery/power/apc{cell_type = /obj/item/weapon/cell/super; dir = 8; name = "west bump"; pixel_x = -24},/turf/simulated/floor/tiled/techmaint,/area/tcommsat/entrance) +"bbW" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/tiled/techmaint,/area/tcommsat/entrance) +"bbX" = (/obj/structure/cable/green{d1 = 1; d2 = 8; icon_state = "1-8"},/turf/simulated/floor/tiled/techmaint,/area/tcommsat/entrance) +"bbY" = (/obj/structure/table/standard,/obj/item/weapon/stock_parts/subspace/analyzer,/obj/item/weapon/stock_parts/subspace/analyzer,/obj/item/weapon/stock_parts/subspace/analyzer,/obj/machinery/firealarm{dir = 4; pixel_x = 26},/turf/simulated/floor/tiled/techmaint,/area/tcommsat/entrance) +"bbZ" = (/obj/machinery/telecomms/server/presets/supply,/turf/simulated/floor/tiled/dark{nitrogen = 100; oxygen = 0; temperature = 80},/area/tcommsat/chamber) +"bca" = (/obj/machinery/telecomms/server/presets/service,/turf/simulated/floor/tiled/dark{nitrogen = 100; oxygen = 0; temperature = 80},/area/tcommsat/chamber) +"bcb" = (/obj/machinery/telecomms/server/presets/unused,/turf/simulated/floor/tiled/dark{nitrogen = 100; oxygen = 0; temperature = 80},/area/tcommsat/chamber) +"bcc" = (/obj/machinery/telecomms/server/presets/common,/turf/simulated/floor/tiled/dark{nitrogen = 100; oxygen = 0; temperature = 80},/area/tcommsat/chamber) +"bcd" = (/obj/machinery/telecomms/server/presets/engineering,/turf/simulated/floor/tiled/dark{nitrogen = 100; oxygen = 0; temperature = 80},/area/tcommsat/chamber) +"bce" = (/obj/structure/table/standard,/obj/item/weapon/stock_parts/subspace/treatment,/obj/item/weapon/stock_parts/subspace/treatment,/obj/item/weapon/stock_parts/subspace/treatment,/turf/simulated/floor/tiled/techmaint,/area/tcommsat/entrance) +"bcf" = (/turf/simulated/floor/tiled/techmaint,/area/tcommsat/entrance) +"bcg" = (/obj/structure/table/rack,/obj/item/weapon/circuitboard/telecomms/processor,/obj/item/weapon/circuitboard/telecomms/processor,/obj/item/weapon/circuitboard/telecomms/receiver,/obj/item/weapon/circuitboard/telecomms/server,/obj/item/weapon/circuitboard/telecomms/server,/obj/item/weapon/circuitboard/telecomms/bus,/obj/item/weapon/circuitboard/telecomms/bus,/obj/item/weapon/circuitboard/telecomms/broadcaster,/obj/item/weapon/circuitboard/telecomms/exonet_node,/obj/machinery/light/small,/turf/simulated/floor/tiled/techmaint,/area/tcommsat/entrance) +"bch" = (/obj/machinery/camera/network/telecom{c_tag = "Telecoms West Wing South"; dir = 4},/turf/simulated/floor/bluegrid{name = "Mainframe Base"; nitrogen = 100; oxygen = 0; temperature = 80},/area/tcommsat/chamber) +"bci" = (/obj/machinery/exonet_node{anchored = 1},/turf/simulated/floor/bluegrid{name = "Mainframe Base"; nitrogen = 100; oxygen = 0; temperature = 80},/area/tcommsat/chamber) +"bcj" = (/obj/machinery/camera/network/telecom{c_tag = "Telecoms West Wing Central"; dir = 8},/turf/simulated/floor/bluegrid{name = "Mainframe Base"; nitrogen = 100; oxygen = 0; temperature = 80},/area/tcommsat/chamber) +"bck" = (/obj/structure/table/standard,/obj/item/weapon/stock_parts/micro_laser,/obj/item/weapon/stock_parts/manipulator,/obj/item/weapon/stock_parts/manipulator,/obj/item/weapon/stock_parts/manipulator,/obj/item/weapon/stock_parts/manipulator,/obj/item/weapon/stock_parts/capacitor,/obj/item/weapon/stock_parts/micro_laser/high,/obj/item/weapon/stock_parts/micro_laser/high,/obj/item/weapon/stock_parts/micro_laser/high,/obj/item/weapon/stock_parts/micro_laser/high,/turf/simulated/floor/tiled/techmaint,/area/tcommsat/entrance) +"bcl" = (/obj/structure/table/standard,/obj/item/weapon/stock_parts/subspace/filter,/obj/item/weapon/stock_parts/subspace/filter,/obj/item/weapon/stock_parts/subspace/filter,/obj/item/weapon/stock_parts/subspace/filter,/obj/item/weapon/stock_parts/subspace/filter,/obj/machinery/camera/network/telecom{c_tag = "Telecoms Central Compartment South"; dir = 1},/turf/simulated/floor/tiled/techmaint,/area/tcommsat/entrance) +"bcm" = (/obj/structure/table/standard,/obj/item/weapon/stock_parts/subspace/crystal,/obj/item/weapon/stock_parts/subspace/crystal,/obj/item/weapon/stock_parts/subspace/crystal,/turf/simulated/floor/tiled/techmaint,/area/tcommsat/entrance) +"bcn" = (/obj/structure/sign/nosmoking_2{pixel_x = -32; pixel_y = 0},/obj/machinery/light{icon_state = "tube1"; dir = 8},/turf/simulated/floor/bluegrid{name = "Mainframe Base"; nitrogen = 100; oxygen = 0; temperature = 80},/area/tcommsat/chamber) +"bco" = (/obj/machinery/telecomms/processor/preset_two,/turf/simulated/floor/tiled/dark{nitrogen = 100; oxygen = 0; temperature = 80},/area/tcommsat/chamber) +"bcp" = (/obj/machinery/telecomms/bus/preset_two,/turf/simulated/floor/tiled/dark{nitrogen = 100; oxygen = 0; temperature = 80},/area/tcommsat/chamber) +"bcq" = (/obj/machinery/telecomms/relay/preset/tether/base_high,/turf/simulated/floor/tiled/dark{nitrogen = 100; oxygen = 0; temperature = 80},/area/tcommsat/chamber) +"bcr" = (/obj/machinery/telecomms/broadcaster/preset_right,/turf/simulated/floor/bluegrid{name = "Mainframe Base"; nitrogen = 100; oxygen = 0; temperature = 80},/area/tcommsat/chamber) +"bcs" = (/obj/machinery/telecomms/hub/preset/tether,/turf/simulated/floor/bluegrid{name = "Mainframe Base"; nitrogen = 100; oxygen = 0; temperature = 80},/area/tcommsat/chamber) +"bct" = (/obj/machinery/telecomms/receiver/preset_right,/turf/simulated/floor/bluegrid{name = "Mainframe Base"; nitrogen = 100; oxygen = 0; temperature = 80},/area/tcommsat/chamber) +"bcu" = (/obj/machinery/telecomms/relay/preset/tether/base_low,/turf/simulated/floor/tiled/dark{nitrogen = 100; oxygen = 0; temperature = 80},/area/tcommsat/chamber) +"bcv" = (/obj/machinery/telecomms/bus/preset_four,/turf/simulated/floor/tiled/dark{nitrogen = 100; oxygen = 0; temperature = 80},/area/tcommsat/chamber) +"bcw" = (/obj/machinery/telecomms/processor/preset_four,/turf/simulated/floor/tiled/dark{nitrogen = 100; oxygen = 0; temperature = 80},/area/tcommsat/chamber) +"bcx" = (/obj/structure/sign/nosmoking_2{pixel_x = 32; pixel_y = 0},/obj/machinery/light{dir = 4},/turf/simulated/floor/bluegrid{name = "Mainframe Base"; nitrogen = 100; oxygen = 0; temperature = 80},/area/tcommsat/chamber) +"bcy" = (/obj/machinery/telecomms/bus/preset_one,/turf/simulated/floor/tiled/dark{nitrogen = 100; oxygen = 0; temperature = 80},/area/tcommsat/chamber) +"bcz" = (/obj/machinery/telecomms/processor/preset_one,/turf/simulated/floor/tiled/dark{nitrogen = 100; oxygen = 0; temperature = 80},/area/tcommsat/chamber) +"bcA" = (/obj/machinery/telecomms/processor/preset_three,/turf/simulated/floor/tiled/dark{nitrogen = 100; oxygen = 0; temperature = 80},/area/tcommsat/chamber) +"bcB" = (/obj/machinery/telecomms/bus/preset_three,/turf/simulated/floor/tiled/dark{nitrogen = 100; oxygen = 0; temperature = 80},/area/tcommsat/chamber) +"bcC" = (/obj/machinery/telecomms/relay/preset/tether/base_mid,/turf/simulated/floor/bluegrid{name = "Mainframe Base"; nitrogen = 100; oxygen = 0; temperature = 80},/area/tcommsat/chamber) +"bcD" = (/obj/machinery/telecomms/server/presets/science,/turf/simulated/floor/tiled/dark{nitrogen = 100; oxygen = 0; temperature = 80},/area/tcommsat/chamber) +"bcE" = (/obj/machinery/telecomms/server/presets/medical,/turf/simulated/floor/tiled/dark{nitrogen = 100; oxygen = 0; temperature = 80},/area/tcommsat/chamber) +"bcF" = (/obj/machinery/atmospherics/pipe/simple/hidden/black{dir = 6},/turf/simulated/floor/tiled/dark{nitrogen = 100; oxygen = 0; temperature = 80},/area/tcommsat/chamber) +"bcG" = (/obj/machinery/atmospherics/pipe/simple/hidden/black{dir = 9},/turf/simulated/floor/tiled/dark{nitrogen = 100; oxygen = 0; temperature = 80},/area/tcommsat/chamber) +"bcH" = (/obj/machinery/pda_multicaster/prebuilt,/turf/simulated/floor/tiled/dark{nitrogen = 100; oxygen = 0; temperature = 80},/area/tcommsat/chamber) +"bcI" = (/obj/machinery/atmospherics/pipe/simple/hidden/black{dir = 5},/turf/simulated/floor/tiled/dark{nitrogen = 100; oxygen = 0; temperature = 80},/area/tcommsat/chamber) +"bcJ" = (/obj/machinery/atmospherics/pipe/simple/hidden/black{dir = 10},/turf/simulated/floor/tiled/dark{nitrogen = 100; oxygen = 0; temperature = 80},/area/tcommsat/chamber) +"bcK" = (/obj/machinery/telecomms/server/presets/command,/turf/simulated/floor/tiled/dark{nitrogen = 100; oxygen = 0; temperature = 80},/area/tcommsat/chamber) +"bcL" = (/obj/machinery/telecomms/server/presets/security,/turf/simulated/floor/tiled/dark{nitrogen = 100; oxygen = 0; temperature = 80},/area/tcommsat/chamber) +"bcM" = (/obj/machinery/camera/network/telecom{c_tag = "Telecoms Central Compartment South"; dir = 1},/turf/simulated/floor/bluegrid{name = "Mainframe Base"; nitrogen = 100; oxygen = 0; temperature = 80},/area/tcommsat/chamber) +"bcN" = (/obj/machinery/atmospherics/unary/vent_pump{dir = 1; external_pressure_bound = 140; external_pressure_bound_default = 140; icon_state = "map_vent_out"; use_power = 1; pressure_checks = 0; pressure_checks_default = 0},/turf/simulated/floor/bluegrid{name = "Mainframe Base"; nitrogen = 100; oxygen = 0; temperature = 80},/area/tcommsat/chamber) +"bcO" = (/obj/machinery/light,/turf/simulated/floor/bluegrid{name = "Mainframe Base"; nitrogen = 100; oxygen = 0; temperature = 80},/area/tcommsat/chamber) +"bcP" = (/obj/machinery/atmospherics/unary/vent_pump{dir = 1; external_pressure_bound = 0; external_pressure_bound_default = 0; icon_state = "map_vent_in"; initialize_directions = 1; internal_pressure_bound = 4000; internal_pressure_bound_default = 4000; use_power = 1; pressure_checks = 2; pressure_checks_default = 2; pump_direction = 0},/turf/simulated/floor/bluegrid{name = "Mainframe Base"; nitrogen = 100; oxygen = 0; temperature = 80},/area/tcommsat/chamber) +"bcQ" = (/turf/unsimulated/wall/planetary/virgo3b,/area/tether/surfacebase/outside/outside3) +"bcR" = (/turf/simulated/open/virgo3b,/area/tether/surfacebase/outside/outside3) +"bcS" = (/turf/simulated/floor/outdoors/grass/sif/virgo3b,/area/tether/surfacebase/outside/outside3) +"bcT" = (/obj/machinery/camera/network/northern_star{tag = "icon-camera (NORTH)"; icon_state = "camera"; dir = 1},/turf/simulated/floor/outdoors/grass/sif/virgo3b,/area/tether/surfacebase/outside/outside3) +"bcU" = (/turf/simulated/wall,/area/vacant/vacant_site2) +"bcV" = (/obj/structure/grille,/obj/structure/window/reinforced{dir = 5; icon_state = "fwindow"},/obj/machinery/door/firedoor,/obj/structure/window/reinforced{dir = 1},/turf/simulated/floor/plating,/area/vacant/vacant_site2) +"bcW" = (/turf/simulated/wall,/area/tether/surfacebase/medical/triage) +"bcX" = (/obj/structure/grille,/obj/structure/window/reinforced{dir = 5; icon_state = "fwindow"},/obj/machinery/door/firedoor,/obj/structure/window/reinforced{dir = 1},/turf/simulated/floor/plating,/area/tether/surfacebase/medical/triage) +"bcY" = (/obj/machinery/firealarm{dir = 2; layer = 3.3; pixel_x = 0; pixel_y = 26},/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 4},/turf/simulated/floor/wood,/area/vacant/vacant_site2) +"bcZ" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 6},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 10},/obj/structure/closet,/obj/random/maintenance/security,/obj/random/maintenance/clean,/obj/random/drinkbottle,/obj/random/medical/lite,/obj/random/maintenance/medical,/turf/simulated/floor/wood,/area/vacant/vacant_site2) +"bda" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/closet,/obj/random/maintenance/medical,/obj/random/maintenance/medical,/obj/random/maintenance/clean,/obj/random/junk,/obj/random/drinkbottle,/obj/random/maintenance/medical,/turf/simulated/floor/wood,/area/vacant/vacant_site2) +"bdb" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/plating,/area/vacant/vacant_site2) +"bdc" = (/obj/structure/bed/chair{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/plating,/area/vacant/vacant_site2) +"bdd" = (/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/vacant/vacant_site2) +"bde" = (/obj/structure/closet/secure_closet/paramedic,/obj/effect/floor_decal/borderfloorwhite{tag = "icon-borderfloor_white (NORTHWEST)"; icon_state = "borderfloor_white"; dir = 9},/obj/effect/floor_decal/corner/paleblue/border{tag = "icon-bordercolor (NORTHWEST)"; icon_state = "bordercolor"; dir = 9},/turf/simulated/floor/tiled/white,/area/tether/surfacebase/medical/triage) +"bdf" = (/obj/effect/floor_decal/borderfloorwhite{tag = "icon-borderfloor_white (NORTH)"; icon_state = "borderfloor_white"; dir = 1},/obj/effect/floor_decal/corner/paleblue/border{tag = "icon-bordercolor (NORTH)"; icon_state = "bordercolor"; dir = 1},/obj/machinery/camera/network/medbay,/turf/simulated/floor/tiled/white,/area/tether/surfacebase/medical/triage) +"bdg" = (/obj/machinery/light{dir = 1},/obj/effect/floor_decal/borderfloorwhite{tag = "icon-borderfloor_white (NORTH)"; icon_state = "borderfloor_white"; dir = 1},/obj/effect/floor_decal/corner/paleblue/border{tag = "icon-bordercolor (NORTH)"; icon_state = "bordercolor"; dir = 1},/obj/effect/floor_decal/borderfloorwhite/corner2{tag = "icon-borderfloorcorner2_white (NORTH)"; icon_state = "borderfloorcorner2_white"; dir = 1},/obj/effect/floor_decal/corner/paleblue/bordercorner2{tag = "icon-bordercolorcorner2 (NORTH)"; icon_state = "bordercolorcorner2"; dir = 1},/turf/simulated/floor/tiled/white,/area/tether/surfacebase/medical/triage) +"bdh" = (/obj/structure/ladder{layer = 3.3; pixel_y = 16},/obj/effect/floor_decal/industrial/outline/blue,/turf/simulated/floor/tiled/white,/area/tether/surfacebase/medical/triage) +"bdi" = (/obj/effect/floor_decal/borderfloorwhite{tag = "icon-borderfloor_white (NORTHEAST)"; icon_state = "borderfloor_white"; dir = 5},/obj/effect/floor_decal/corner/paleblue/border{tag = "icon-bordercolor (NORTHEAST)"; icon_state = "bordercolor"; dir = 5},/obj/effect/floor_decal/borderfloorwhite/corner2{tag = "icon-borderfloorcorner2_white (EAST)"; icon_state = "borderfloorcorner2_white"; dir = 4},/obj/effect/floor_decal/corner/paleblue/bordercorner2{tag = "icon-bordercolorcorner2 (EAST)"; icon_state = "bordercolorcorner2"; dir = 4},/turf/simulated/floor/tiled/white,/area/tether/surfacebase/medical/triage) +"bdj" = (/obj/structure/grille,/obj/structure/window/reinforced{dir = 5; icon_state = "fwindow"},/obj/machinery/door/firedoor,/obj/structure/window/reinforced{dir = 4},/turf/simulated/floor/plating,/area/tether/surfacebase/medical/triage) +"bdk" = (/obj/machinery/alarm{dir = 4; icon_state = "alarm0"; pixel_x = -22; pixel_y = 0},/turf/simulated/floor/wood,/area/vacant/vacant_site2) +"bdl" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/wood,/area/vacant/vacant_site2) +"bdm" = (/mob/living/simple_animal/mouse,/turf/simulated/floor/plating,/area/vacant/vacant_site2) +"bdn" = (/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/plating,/area/vacant/vacant_site2) +"bdo" = (/obj/effect/decal/cleanable/dirt,/obj/structure/table/rack,/obj/random/maintenance/medical,/obj/random/maintenance/clean,/obj/random/medical/lite,/obj/random/maintenance/medical,/turf/simulated/floor/plating,/area/vacant/vacant_site2) +"bdp" = (/obj/structure/closet/secure_closet/medical3,/obj/effect/floor_decal/borderfloorwhite{tag = "icon-borderfloor_white (WEST)"; icon_state = "borderfloor_white"; dir = 8},/obj/effect/floor_decal/corner/paleblue/border{tag = "icon-bordercolor (WEST)"; icon_state = "bordercolor"; dir = 8},/obj/machinery/status_display{pixel_x = -32},/turf/simulated/floor/tiled/white,/area/tether/surfacebase/medical/triage) +"bdq" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 6},/turf/simulated/floor/tiled/white,/area/tether/surfacebase/medical/triage) +"bdr" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/turf/simulated/floor/tiled/white,/area/tether/surfacebase/medical/triage) +"bds" = (/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 8},/turf/simulated/floor/tiled/white,/area/tether/surfacebase/medical/triage) +"bdt" = (/obj/effect/floor_decal/borderfloorwhite{tag = "icon-borderfloor_white (EAST)"; icon_state = "borderfloor_white"; dir = 4},/obj/effect/floor_decal/corner/paleblue/border{tag = "icon-bordercolor (EAST)"; icon_state = "bordercolor"; dir = 4},/turf/simulated/floor/tiled/white,/area/tether/surfacebase/medical/triage) +"bdu" = (/obj/structure/table/rack,/obj/random/firstaid,/obj/random/maintenance/medical,/turf/simulated/floor/wood,/area/vacant/vacant_site2) +"bdv" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/plating,/area/vacant/vacant_site2) +"bdw" = (/turf/simulated/floor/plating,/area/vacant/vacant_site2) +"bdx" = (/obj/machinery/light_switch{pixel_x = 25},/turf/simulated/floor/plating,/area/vacant/vacant_site2) +"bdy" = (/obj/machinery/disposal,/obj/effect/floor_decal/borderfloorwhite{tag = "icon-borderfloor_white (WEST)"; icon_state = "borderfloor_white"; dir = 8},/obj/effect/floor_decal/corner/paleblue/border{tag = "icon-bordercolor (WEST)"; icon_state = "bordercolor"; dir = 8},/obj/structure/disposalpipe/trunk,/turf/simulated/floor/tiled/white,/area/tether/surfacebase/medical/triage) +"bdz" = (/obj/effect/floor_decal/steeldecal/steel_decals10,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/tiled/white,/area/tether/surfacebase/medical/triage) +"bdA" = (/obj/machinery/sleeper{dir = 8},/obj/effect/floor_decal/corner_steel_grid{tag = "icon-steel_grid (SOUTHWEST)"; icon_state = "steel_grid"; dir = 10},/turf/simulated/floor/tiled/white,/area/tether/surfacebase/medical/triage) +"bdB" = (/obj/machinery/sleep_console,/obj/effect/floor_decal/corner_steel_grid{tag = "icon-steel_grid (SOUTHWEST)"; icon_state = "steel_grid"; dir = 10},/turf/simulated/floor/tiled/white,/area/tether/surfacebase/medical/triage) +"bdC" = (/obj/effect/floor_decal/borderfloorwhite{tag = "icon-borderfloor_white (EAST)"; icon_state = "borderfloor_white"; dir = 4},/obj/effect/floor_decal/corner/paleblue/border{tag = "icon-bordercolor (EAST)"; icon_state = "bordercolor"; dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals10{tag = "icon-steel_decals10 (WEST)"; icon_state = "steel_decals10"; dir = 8},/obj/item/device/radio/intercom{dir = 4; name = "Station Intercom (General)"; pixel_x = 21},/turf/simulated/floor/tiled/white,/area/tether/surfacebase/medical/triage) +"bdD" = (/obj/structure/lattice,/obj/structure/cable/green{icon_state = "32-4"},/obj/machinery/door/firedoor/glass,/turf/simulated/open,/area/vacant/vacant_site2) +"bdE" = (/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/decal/cleanable/dirt,/turf/simulated/floor/plating,/area/vacant/vacant_site2) +"bdF" = (/obj/machinery/vending/medical,/obj/effect/floor_decal/borderfloorwhite{tag = "icon-borderfloor_white (NORTHWEST)"; icon_state = "borderfloor_white"; dir = 9},/obj/effect/floor_decal/corner/paleblue/border{tag = "icon-bordercolor (NORTHWEST)"; icon_state = "bordercolor"; dir = 9},/turf/simulated/floor/tiled/white,/area/tether/surfacebase/medical/triage) +"bdG" = (/obj/effect/floor_decal/borderfloorwhite{tag = "icon-borderfloor_white (NORTH)"; icon_state = "borderfloor_white"; dir = 1},/obj/effect/floor_decal/corner/paleblue/border{tag = "icon-bordercolor (NORTH)"; icon_state = "bordercolor"; dir = 1},/obj/machinery/alarm{frequency = 1441; pixel_y = 22},/turf/simulated/floor/tiled/white,/area/tether/surfacebase/medical/triage) +"bdH" = (/obj/effect/floor_decal/borderfloorwhite/corner{tag = "icon-borderfloorcorner_white (NORTH)"; icon_state = "borderfloorcorner_white"; dir = 1},/obj/effect/floor_decal/corner/paleblue/bordercorner{tag = "icon-bordercolorcorner (NORTH)"; icon_state = "bordercolorcorner"; dir = 1},/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled/white,/area/tether/surfacebase/medical/triage) +"bdI" = (/obj/effect/floor_decal/steeldecal/steel_decals10{tag = "icon-steel_decals10 (EAST)"; icon_state = "steel_decals10"; dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/tiled/white,/area/tether/surfacebase/medical/triage) +"bdJ" = (/obj/effect/floor_decal/corner_steel_grid{tag = "icon-steel_grid (NORTHEAST)"; icon_state = "steel_grid"; dir = 5},/turf/simulated/floor/tiled/white,/area/tether/surfacebase/medical/triage) +"bdK" = (/obj/effect/floor_decal/borderfloorwhite{tag = "icon-borderfloor_white (EAST)"; icon_state = "borderfloor_white"; dir = 4},/obj/effect/floor_decal/corner/paleblue/border{tag = "icon-bordercolor (EAST)"; icon_state = "bordercolor"; dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals10{tag = "icon-steel_decals10 (NORTH)"; icon_state = "steel_decals10"; dir = 1},/turf/simulated/floor/tiled/white,/area/tether/surfacebase/medical/triage) +"bdL" = (/obj/structure/closet,/obj/item/weapon/reagent_containers/food/drinks/bottle/tequilla,/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/plating,/area/vacant/vacant_site2) +"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,/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/plating,/area/vacant/vacant_site2) +"bdN" = (/obj/structure/ladder,/obj/effect/floor_decal/industrial/outline/blue,/turf/simulated/floor/plating,/area/vacant/vacant_site2) +"bdO" = (/obj/structure/table/glass,/obj/item/weapon/reagent_containers/spray/cleaner{pixel_x = -1; pixel_y = -2},/obj/item/weapon/reagent_containers/spray/cleaner,/obj/effect/floor_decal/borderfloorwhite{tag = "icon-borderfloor_white (WEST)"; icon_state = "borderfloor_white"; dir = 8},/obj/effect/floor_decal/corner/paleblue/border{tag = "icon-bordercolor (WEST)"; icon_state = "bordercolor"; dir = 8},/obj/machinery/light_switch{pixel_x = -25},/turf/simulated/floor/tiled/white,/area/tether/surfacebase/medical/triage) +"bdP" = (/turf/simulated/floor/tiled/white,/area/tether/surfacebase/medical/triage) +"bdQ" = (/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled/white,/area/tether/surfacebase/medical/triage) +"bdR" = (/obj/machinery/bodyscanner{dir = 8},/obj/effect/floor_decal/corner_steel_grid{tag = "icon-steel_grid (SOUTHWEST)"; icon_state = "steel_grid"; dir = 10},/turf/simulated/floor/tiled/white,/area/tether/surfacebase/medical/triage) +"bdS" = (/obj/machinery/body_scanconsole,/obj/effect/floor_decal/corner_steel_grid{tag = "icon-steel_grid (SOUTHWEST)"; icon_state = "steel_grid"; dir = 10},/turf/simulated/floor/tiled/white,/area/tether/surfacebase/medical/triage) +"bdT" = (/obj/effect/floor_decal/borderfloorwhite{tag = "icon-borderfloor_white (EAST)"; icon_state = "borderfloor_white"; dir = 4},/obj/effect/floor_decal/corner/paleblue/border{tag = "icon-bordercolor (EAST)"; icon_state = "bordercolor"; dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals10{tag = "icon-steel_decals10 (WEST)"; icon_state = "steel_decals10"; dir = 8},/obj/machinery/camera/network/medbay{c_tag = "MED - Virology Airlock"; dir = 8},/turf/simulated/floor/tiled/white,/area/tether/surfacebase/medical/triage) +"bdU" = (/turf/simulated/wall,/area/tether/surfacebase/reading_room) +"bdV" = (/obj/structure/grille,/obj/structure/window/reinforced{dir = 5; icon_state = "fwindow"},/obj/machinery/door/firedoor,/obj/structure/window/reinforced{dir = 1},/turf/simulated/floor/plating,/area/tether/surfacebase/reading_room) +"bdW" = (/obj/machinery/camera/network/security{c_tag = "SEC - Equipment Storage"; dir = 9},/turf/simulated/floor/outdoors/grass/sif/virgo3b,/area/tether/surfacebase/outside/outside3) +"bdX" = (/turf/simulated/wall/r_wall,/area/tether/surfacebase/security/armory) +"bdY" = (/turf/simulated/wall/r_wall,/area/tether/surfacebase/security/common) +"bdZ" = (/obj/structure/grille,/obj/structure/window/reinforced{dir = 5; icon_state = "fwindow"},/obj/machinery/door/firedoor,/obj/structure/window/reinforced{dir = 1},/turf/simulated/floor/plating,/area/tether/surfacebase/security/common) +"bea" = (/turf/simulated/wall/r_wall,/area/tether/surfacebase/security/breakroom) +"beb" = (/obj/structure/grille,/obj/structure/window/reinforced{dir = 5; icon_state = "fwindow"},/obj/machinery/door/firedoor,/obj/structure/window/reinforced{dir = 1},/turf/simulated/floor/plating,/area/tether/surfacebase/security/breakroom) +"bec" = (/turf/simulated/wall/r_wall,/area/vacant/vacant_site2) +"bed" = (/obj/machinery/door/firedoor/glass,/obj/machinery/door/airlock/maintenance/engi,/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/techfloor/grid,/area/vacant/vacant_site2) +"bee" = (/obj/structure/table/glass,/obj/item/bodybag/cryobag,/obj/item/bodybag/cryobag,/obj/machinery/light{icon_state = "tube1"; dir = 8},/obj/effect/floor_decal/borderfloorwhite{tag = "icon-borderfloor_white (WEST)"; icon_state = "borderfloor_white"; dir = 8},/obj/effect/floor_decal/corner/paleblue/border{tag = "icon-bordercolor (WEST)"; icon_state = "bordercolor"; dir = 8},/turf/simulated/floor/tiled/white,/area/tether/surfacebase/medical/triage) +"bef" = (/obj/machinery/light{dir = 4; icon_state = "tube1"},/obj/effect/floor_decal/borderfloorwhite{tag = "icon-borderfloor_white (EAST)"; icon_state = "borderfloor_white"; dir = 4},/obj/effect/floor_decal/corner/paleblue/border{tag = "icon-bordercolor (EAST)"; icon_state = "bordercolor"; dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals10{tag = "icon-steel_decals10 (NORTH)"; icon_state = "steel_decals10"; dir = 1},/turf/simulated/floor/tiled/white,/area/tether/surfacebase/medical/triage) +"beg" = (/obj/structure/grille,/obj/structure/window/reinforced{dir = 5; icon_state = "fwindow"},/obj/machinery/door/firedoor,/obj/structure/window/reinforced{dir = 8},/turf/simulated/floor/plating,/area/tether/surfacebase/reading_room) +"beh" = (/obj/structure/table/glass,/obj/item/device/flashlight/lamp/green,/turf/simulated/floor/wood,/area/tether/surfacebase/reading_room) +"bei" = (/obj/machinery/light_switch{pixel_x = 25},/obj/structure/table/glass,/turf/simulated/floor/wood,/area/tether/surfacebase/reading_room) +"bej" = (/obj/structure/table/glass,/obj/machinery/light_switch{pixel_x = 25},/turf/simulated/floor/wood,/area/tether/surfacebase/reading_room) +"bek" = (/turf/simulated/open,/area/gateway) +"bel" = (/obj/structure/table/reinforced,/obj/machinery/recharger,/obj/machinery/light{dir = 8; icon_state = "tube1"; pixel_y = 0},/turf/simulated/floor/tiled,/area/gateway) +"bem" = (/obj/structure/table/reinforced,/obj/machinery/recharger,/obj/machinery/camera/network/command,/turf/simulated/floor/tiled,/area/gateway) +"ben" = (/obj/structure/table/reinforced,/obj/machinery/cell_charger,/obj/machinery/atmospherics/unary/vent_pump/on,/obj/item/device/radio/intercom{dir = 1; name = "Station Intercom (General)"; pixel_y = 21},/turf/simulated/floor/tiled,/area/gateway) +"beo" = (/obj/structure/table/reinforced,/obj/item/bodybag/cryobag,/obj/item/bodybag/cryobag,/obj/machinery/status_display{pixel_y = 30},/turf/simulated/floor/tiled,/area/gateway) +"bep" = (/obj/structure/closet/excavation,/obj/item/device/multitool,/obj/item/device/multitool,/turf/simulated/floor/tiled,/area/gateway) +"beq" = (/obj/structure/table/reinforced,/obj/item/roller,/obj/item/roller,/obj/machinery/atmospherics/unary/vent_scrubber/on,/obj/machinery/newscaster{pixel_x = 0; pixel_y = 30},/turf/simulated/floor/tiled,/area/gateway) +"ber" = (/obj/structure/table/reinforced,/obj/item/weapon/storage/firstaid/regular,/obj/item/weapon/storage/firstaid/regular,/turf/simulated/floor/tiled,/area/gateway) +"bes" = (/obj/structure/table/rack,/obj/item/weapon/gun/energy/stunrevolver,/obj/machinery/firealarm{dir = 2; layer = 3.3; pixel_x = 0; pixel_y = 26},/obj/item/weapon/gun/energy/stunrevolver,/turf/simulated/floor/holofloor/tiled/dark,/area/tether/surfacebase/security/armory) +"bet" = (/obj/machinery/light{dir = 1},/turf/simulated/floor/holofloor/tiled/dark,/area/tether/surfacebase/security/armory) +"beu" = (/obj/structure/closet/firecloset,/obj/item/device/radio/intercom{dir = 1; name = "Station Intercom (General)"; pixel_y = 21},/turf/simulated/floor/holofloor/tiled/dark,/area/tether/surfacebase/security/armory) +"bev" = (/obj/structure/closet/secure_closet/security/med,/obj/machinery/camera/network/security,/turf/simulated/floor/holofloor/tiled/dark,/area/tether/surfacebase/security/armory) +"bew" = (/obj/structure/closet/secure_closet/security/med,/turf/simulated/floor/holofloor/tiled/dark,/area/tether/surfacebase/security/armory) +"bex" = (/obj/structure/flora/pottedplant{icon_state = "plant-22"},/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (NORTHWEST)"; icon_state = "borderfloor"; dir = 9},/obj/effect/floor_decal/corner/red/border{tag = "icon-bordercolor (NORTHWEST)"; icon_state = "bordercolor"; dir = 9},/obj/effect/floor_decal/borderfloor/corner2{tag = "icon-borderfloorcorner2 (SOUTHWEST)"; icon_state = "borderfloorcorner2"; dir = 10},/obj/effect/floor_decal/corner/red/bordercorner2{tag = "icon-bordercolorcorner2 (SOUTHWEST)"; icon_state = "bordercolorcorner2"; dir = 10},/obj/machinery/firealarm{dir = 2; layer = 3.3; pixel_x = 0; pixel_y = 26},/turf/simulated/floor/tiled,/area/tether/surfacebase/security/common) +"bey" = (/obj/structure/reagent_dispensers/peppertank{pixel_y = 30},/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (NORTH)"; icon_state = "borderfloor"; dir = 1},/obj/effect/floor_decal/corner/red/border{tag = "icon-bordercolor (NORTH)"; icon_state = "bordercolor"; dir = 1},/turf/simulated/floor/tiled,/area/tether/surfacebase/security/common) +"bez" = (/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (NORTH)"; icon_state = "borderfloor"; dir = 1},/obj/effect/floor_decal/corner/red/border{tag = "icon-bordercolor (NORTH)"; icon_state = "bordercolor"; dir = 1},/turf/simulated/floor/tiled,/area/tether/surfacebase/security/common) +"beA" = (/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (NORTH)"; icon_state = "borderfloor"; dir = 1},/obj/effect/floor_decal/corner/red/border{tag = "icon-bordercolor (NORTH)"; icon_state = "bordercolor"; dir = 1},/obj/machinery/camera/network/security,/turf/simulated/floor/tiled,/area/tether/surfacebase/security/common) +"beB" = (/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (NORTHEAST)"; icon_state = "borderfloor"; dir = 5},/obj/effect/floor_decal/corner/red/border{tag = "icon-bordercolor (NORTHEAST)"; icon_state = "bordercolor"; dir = 5},/obj/effect/floor_decal/borderfloor/corner2{tag = "icon-borderfloorcorner2 (NORTHEAST)"; icon_state = "borderfloorcorner2"; dir = 5},/obj/effect/floor_decal/corner/red/bordercorner2{tag = "icon-bordercolorcorner2 (NORTHEAST)"; icon_state = "bordercolorcorner2"; dir = 5},/obj/structure/closet/firecloset,/obj/structure/extinguisher_cabinet{dir = 2; icon_state = "extinguisher_closed"; pixel_x = 30; tag = "icon-extinguisher_closed (WEST)"},/turf/simulated/floor/tiled,/area/tether/surfacebase/security/common) +"beC" = (/obj/structure/flora/pottedplant{icon_state = "plant-22"},/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (NORTHWEST)"; icon_state = "borderfloor"; dir = 9},/obj/effect/floor_decal/corner/red/border{tag = "icon-bordercolor (NORTHWEST)"; icon_state = "bordercolor"; dir = 9},/obj/effect/floor_decal/borderfloor/corner2{tag = "icon-borderfloorcorner2 (SOUTHWEST)"; icon_state = "borderfloorcorner2"; dir = 10},/obj/effect/floor_decal/corner/red/bordercorner2{tag = "icon-bordercolorcorner2 (SOUTHWEST)"; icon_state = "bordercolorcorner2"; dir = 10},/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/tiled,/area/tether/surfacebase/security/breakroom) +"beD" = (/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (NORTH)"; icon_state = "borderfloor"; dir = 1},/obj/effect/floor_decal/corner/red/border{tag = "icon-bordercolor (NORTH)"; icon_state = "bordercolor"; dir = 1},/obj/machinery/disposal,/obj/structure/disposalpipe/trunk{dir = 4},/turf/simulated/floor/tiled,/area/tether/surfacebase/security/breakroom) +"beE" = (/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (NORTH)"; icon_state = "borderfloor"; dir = 1},/obj/effect/floor_decal/corner/red/border{tag = "icon-bordercolor (NORTH)"; icon_state = "bordercolor"; dir = 1},/obj/structure/disposalpipe/segment{dir = 2; icon_state = "pipe-c"},/obj/effect/floor_decal/borderfloor/corner2{tag = "icon-borderfloorcorner2 (NORTH)"; icon_state = "borderfloorcorner2"; dir = 1},/obj/effect/floor_decal/corner/red/bordercorner2{tag = "icon-bordercolorcorner2 (NORTH)"; icon_state = "bordercolorcorner2"; dir = 1},/turf/simulated/floor/tiled,/area/tether/surfacebase/security/breakroom) +"beF" = (/obj/machinery/camera/network/security,/turf/simulated/floor/carpet/blue,/area/tether/surfacebase/security/breakroom) +"beG" = (/obj/structure/bed/chair,/turf/simulated/floor/carpet/blue,/area/tether/surfacebase/security/breakroom) +"beH" = (/obj/structure/bed/chair,/obj/machinery/firealarm{dir = 2; layer = 3.3; pixel_x = 0; pixel_y = 26},/turf/simulated/floor/carpet/blue,/area/tether/surfacebase/security/breakroom) +"beI" = (/obj/structure/flora/pottedplant{icon_state = "plant-22"},/obj/machinery/alarm{frequency = 1441; pixel_y = 22},/turf/simulated/floor/carpet/blue,/area/tether/surfacebase/security/breakroom) +"beJ" = (/obj/effect/floor_decal/techfloor{tag = "icon-techfloor_edges (WEST)"; icon_state = "techfloor_edges"; dir = 8},/obj/item/weapon/storage/box/lights/mixed,/obj/structure/table/steel,/turf/simulated/floor/tiled/techfloor/grid,/area/vacant/vacant_site2) +"beK" = (/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,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/tiled/techfloor/grid,/area/vacant/vacant_site2) +"beL" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/light_switch{pixel_y = 25},/turf/simulated/floor/tiled/techfloor/grid,/area/vacant/vacant_site2) +"beM" = (/obj/effect/floor_decal/techfloor/corner,/obj/effect/floor_decal/techfloor{tag = "icon-techfloor_edges (NORTH)"; icon_state = "techfloor_edges"; dir = 1},/obj/effect/floor_decal/techfloor/hole/right{tag = "icon-techfloor_hole_right (NORTH)"; icon_state = "techfloor_hole_right"; dir = 1},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 6},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 6},/turf/simulated/floor/tiled/techfloor/grid,/area/vacant/vacant_site2) +"beN" = (/obj/machinery/door/airlock/maintenance/medical{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) +"beO" = (/obj/effect/floor_decal/borderfloorwhite{tag = "icon-borderfloor_white (WEST)"; icon_state = "borderfloor_white"; dir = 8},/obj/effect/floor_decal/corner/paleblue/border{tag = "icon-bordercolor (WEST)"; icon_state = "bordercolor"; 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) +"beP" = (/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) +"beQ" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled/white,/area/tether/surfacebase/medical/triage) +"beR" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled/white,/area/tether/surfacebase/medical/triage) +"beS" = (/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/simple/hidden/scrubbers{dir = 10},/turf/simulated/floor/tiled/white,/area/tether/surfacebase/medical/triage) +"beT" = (/obj/machinery/atmospherics/unary/vent_pump/on{dir = 8},/turf/simulated/floor/tiled/white,/area/tether/surfacebase/medical/triage) +"beU" = (/obj/structure/table/glass,/obj/item/weapon/storage/firstaid/adv,/obj/effect/floor_decal/borderfloorwhite{tag = "icon-borderfloor_white (EAST)"; icon_state = "borderfloor_white"; dir = 4},/obj/effect/floor_decal/corner/paleblue/border{tag = "icon-bordercolor (EAST)"; icon_state = "bordercolor"; dir = 4},/turf/simulated/floor/tiled/white,/area/tether/surfacebase/medical/triage) +"beV" = (/turf/simulated/floor/wood,/area/tether/surfacebase/reading_room) +"beW" = (/obj/machinery/alarm{dir = 8; icon_state = "alarm0"; pixel_x = 24},/obj/structure/bed/chair/comfy/black{dir = 1},/turf/simulated/floor/wood,/area/tether/surfacebase/reading_room) +"beX" = (/obj/structure/table/reinforced,/obj/machinery/recharger,/obj/machinery/camera/network/command{c_tag = "Gateway Access"; dir = 4},/turf/simulated/floor/tiled,/area/gateway) +"beY" = (/turf/simulated/floor/tiled,/area/gateway) +"beZ" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 5},/turf/simulated/floor/tiled,/area/gateway) +"bfa" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 10},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 6},/turf/simulated/floor/tiled,/area/gateway) +"bfb" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/turf/simulated/floor/tiled,/area/gateway) +"bfc" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 9},/turf/simulated/floor/tiled,/area/gateway) +"bfd" = (/obj/structure/table/reinforced,/obj/item/weapon/storage/firstaid/adv,/obj/item/weapon/storage/firstaid/adv,/turf/simulated/floor/tiled,/area/gateway) +"bfe" = (/obj/structure/table/rack,/obj/item/weapon/gun/energy/taser,/obj/machinery/alarm{dir = 4; icon_state = "alarm0"; pixel_x = -22; pixel_y = 0},/obj/item/weapon/gun/energy/taser,/turf/simulated/floor/holofloor/tiled/dark,/area/tether/surfacebase/security/armory) +"bff" = (/turf/simulated/floor/holofloor/tiled/dark,/area/tether/surfacebase/security/armory) +"bfg" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 6},/turf/simulated/floor/holofloor/tiled/dark,/area/tether/surfacebase/security/armory) +"bfh" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 6},/turf/simulated/floor/holofloor/tiled/dark,/area/tether/surfacebase/security/armory) +"bfi" = (/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/holofloor/tiled/dark,/area/tether/surfacebase/security/armory) +"bfj" = (/obj/machinery/door/airlock/security{name = "Equipment Storage"; req_access = list(1)},/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/monotile,/area/tether/surfacebase/security/armory) +"bfk" = (/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,/area/tether/surfacebase/security/common) +"bfl" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 10},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 10},/turf/simulated/floor/tiled,/area/tether/surfacebase/security/common) +"bfm" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/tiled,/area/tether/surfacebase/security/common) +"bfn" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/cable/green{d1 = 2; d2 = 4; icon_state = "2-4"},/turf/simulated/floor/tiled,/area/tether/surfacebase/security/common) +"bfo" = (/obj/machinery/door/firedoor/glass,/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/door/airlock/glass_security{name = "Break Room"; req_access = list(1)},/turf/simulated/floor/tiled/monotile,/area/tether/surfacebase/security/breakroom) +"bfp" = (/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,/area/tether/surfacebase/security/breakroom) +"bfq" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/tiled,/area/tether/surfacebase/security/breakroom) +"bfr" = (/obj/structure/cable/green{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled,/area/tether/surfacebase/security/breakroom) +"bfs" = (/obj/structure/bed/chair{dir = 4},/turf/simulated/floor/carpet/blue,/area/tether/surfacebase/security/breakroom) +"bft" = (/obj/structure/table/glass,/turf/simulated/floor/carpet/blue,/area/tether/surfacebase/security/breakroom) +"bfu" = (/obj/structure/bed/chair{dir = 8},/obj/machinery/status_display{pixel_x = 32; pixel_y = 0},/turf/simulated/floor/carpet/blue,/area/tether/surfacebase/security/breakroom) +"bfv" = (/obj/effect/floor_decal/techfloor{tag = "icon-techfloor_edges (WEST)"; icon_state = "techfloor_edges"; dir = 8},/obj/structure/table/steel,/turf/simulated/floor/tiled/techfloor/grid,/area/vacant/vacant_site2) +"bfw" = (/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/manifold/hidden/supply{dir = 8},/turf/simulated/floor/tiled/techfloor/grid,/area/vacant/vacant_site2) +"bfx" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled/techfloor/grid,/area/vacant/vacant_site2) +"bfy" = (/obj/effect/floor_decal/techfloor{tag = "icon-techfloor_edges (EAST)"; icon_state = "techfloor_edges"; dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 9},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 9},/turf/simulated/floor/tiled/techfloor/grid,/area/vacant/vacant_site2) +"bfz" = (/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{tag = "icon-borderfloor_white (WEST)"; icon_state = "borderfloor_white"; dir = 8},/obj/effect/floor_decal/corner/paleblue/border{tag = "icon-bordercolor (WEST)"; icon_state = "bordercolor"; dir = 8},/obj/machinery/power/apc{cell_type = /obj/item/weapon/cell/super; dir = 8; name = "west bump"; pixel_x = -28},/obj/structure/cable/green,/turf/simulated/floor/tiled/white,/area/tether/surfacebase/medical/triage) +"bfA" = (/obj/structure/disposalpipe/segment{dir = 1; icon_state = "pipe-c"},/turf/simulated/floor/tiled/white,/area/tether/surfacebase/medical/triage) +"bfB" = (/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled/white,/area/tether/surfacebase/medical/triage) +"bfC" = (/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/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled/white,/area/tether/surfacebase/medical/triage) +"bfD" = (/obj/structure/disposalpipe/segment{dir = 2; icon_state = "pipe-c"},/turf/simulated/floor/tiled/white,/area/tether/surfacebase/medical/triage) +"bfE" = (/obj/structure/table/glass,/obj/item/weapon/storage/firstaid/fire,/obj/effect/floor_decal/borderfloorwhite{tag = "icon-borderfloor_white (EAST)"; icon_state = "borderfloor_white"; dir = 4},/obj/effect/floor_decal/corner/paleblue/border{tag = "icon-bordercolor (EAST)"; icon_state = "bordercolor"; dir = 4},/turf/simulated/floor/tiled/white,/area/tether/surfacebase/medical/triage) +"bfF" = (/obj/machinery/door/airlock{name = "Room 1"},/obj/machinery/door/firedoor/glass,/turf/simulated/floor/tiled,/area/tether/surfacebase/reading_room) +"bfG" = (/obj/machinery/door/airlock{name = "Room 2"},/obj/machinery/door/firedoor/glass,/turf/simulated/floor/tiled,/area/tether/surfacebase/reading_room) +"bfH" = (/obj/machinery/door/airlock{name = "Room 3"},/obj/machinery/door/firedoor/glass,/turf/simulated/floor/tiled,/area/tether/surfacebase/reading_room) +"bfI" = (/obj/structure/table/reinforced,/obj/item/device/communicator,/obj/item/device/communicator,/obj/item/device/communicator,/obj/item/device/communicator,/obj/machinery/light{dir = 8; icon_state = "tube1"; pixel_y = 0},/turf/simulated/floor/tiled,/area/gateway) +"bfJ" = (/obj/effect/floor_decal/industrial/hatch/yellow,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/tiled,/area/gateway) +"bfK" = (/obj/machinery/floodlight,/turf/simulated/floor/tiled,/area/gateway) +"bfL" = (/obj/structure/table/rack,/obj/item/weapon/gun/energy/taser,/obj/item/weapon/gun/energy/taser,/turf/simulated/floor/holofloor/tiled/dark,/area/tether/surfacebase/security/armory) +"bfM" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/holofloor/tiled/dark,/area/tether/surfacebase/security/armory) +"bfN" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/holofloor/tiled/dark,/area/tether/surfacebase/security/armory) +"bfO" = (/obj/structure/cable/green,/obj/machinery/power/apc{dir = 4; name = "east bump"; pixel_x = 28},/turf/simulated/floor/holofloor/tiled/dark,/area/tether/surfacebase/security/armory) +"bfP" = (/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (WEST)"; icon_state = "borderfloor"; dir = 8},/obj/effect/floor_decal/corner/red/border{tag = "icon-bordercolor (WEST)"; icon_state = "bordercolor"; dir = 8},/obj/effect/floor_decal/borderfloor/corner2{tag = "icon-borderfloorcorner2 (WEST)"; icon_state = "borderfloorcorner2"; dir = 8},/obj/effect/floor_decal/corner/red/bordercorner2{tag = "icon-bordercolorcorner2 (WEST)"; icon_state = "bordercolorcorner2"; dir = 8},/turf/simulated/floor/tiled,/area/tether/surfacebase/security/common) +"bfQ" = (/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 4},/turf/simulated/floor/tiled,/area/tether/surfacebase/security/common) +"bfR" = (/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) +"bfS" = (/turf/simulated/floor/tiled,/area/tether/surfacebase/security/common) +"bfT" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/tiled,/area/tether/surfacebase/security/common) +"bfU" = (/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (EAST)"; icon_state = "borderfloor"; dir = 4},/obj/effect/floor_decal/corner/red/border{tag = "icon-bordercolor (EAST)"; icon_state = "bordercolor"; dir = 4},/obj/effect/floor_decal/borderfloor/corner2{tag = "icon-borderfloorcorner2 (SOUTHEAST)"; icon_state = "borderfloorcorner2"; dir = 6},/obj/effect/floor_decal/corner/red/bordercorner2{tag = "icon-bordercolorcorner2 (SOUTHEAST)"; icon_state = "bordercolorcorner2"; dir = 6},/obj/machinery/computer/security{tag = "icon-computer (WEST)"; icon_state = "computer"; dir = 8},/turf/simulated/floor/tiled,/area/tether/surfacebase/security/common) +"bfV" = (/obj/machinery/vending/coffee,/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (WEST)"; icon_state = "borderfloor"; dir = 8},/obj/effect/floor_decal/corner/red/border{tag = "icon-bordercolor (WEST)"; icon_state = "bordercolor"; dir = 8},/obj/effect/floor_decal/borderfloor/corner2{tag = "icon-borderfloorcorner2 (WEST)"; icon_state = "borderfloorcorner2"; dir = 8},/obj/effect/floor_decal/corner/red/bordercorner2{tag = "icon-bordercolorcorner2 (WEST)"; icon_state = "bordercolorcorner2"; dir = 8},/turf/simulated/floor/tiled,/area/tether/surfacebase/security/breakroom) +"bfW" = (/turf/simulated/floor/tiled,/area/tether/surfacebase/security/breakroom) +"bfX" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled,/area/tether/surfacebase/security/breakroom) +"bfY" = (/obj/structure/table/glass,/obj/item/weapon/storage/box/donut,/turf/simulated/floor/carpet/blue,/area/tether/surfacebase/security/breakroom) +"bfZ" = (/obj/structure/bed/chair{dir = 8},/turf/simulated/floor/carpet/blue,/area/tether/surfacebase/security/breakroom) +"bga" = (/obj/effect/floor_decal/techfloor{tag = "icon-techfloor_edges (WEST)"; icon_state = "techfloor_edges"; dir = 8},/obj/machinery/alarm{dir = 4; icon_state = "alarm0"; pixel_x = -22; pixel_y = 0},/obj/structure/table/rack,/obj/random/maintenance/clean,/obj/random/maintenance/medical,/obj/random/maintenance/medical,/turf/simulated/floor/tiled/techfloor/grid,/area/vacant/vacant_site2) +"bgb" = (/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,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/tiled/techfloor/grid,/area/vacant/vacant_site2) +"bgc" = (/obj/structure/bed/chair{dir = 4},/obj/structure/cable/green{d2 = 8; icon_state = "0-8"},/obj/machinery/power/apc{dir = 2; name = "south bump"; pixel_y = -28},/turf/simulated/floor/tiled/techfloor/grid,/area/vacant/vacant_site2) +"bgd" = (/obj/effect/floor_decal/techfloor{tag = "icon-techfloor_edges (SOUTHEAST)"; icon_state = "techfloor_edges"; dir = 6},/obj/effect/decal/cleanable/vomit,/obj/structure/table,/turf/simulated/floor/tiled/techfloor/grid,/area/vacant/vacant_site2) +"bge" = (/obj/structure/table/glass,/obj/item/weapon/storage/box/syringes,/obj/effect/floor_decal/borderfloorwhite{tag = "icon-borderfloor_white (SOUTHWEST)"; icon_state = "borderfloor_white"; dir = 10},/obj/effect/floor_decal/corner/paleblue/border{tag = "icon-bordercolor (SOUTHWEST)"; icon_state = "bordercolor"; dir = 10},/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/triage) +"bgf" = (/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,/turf/simulated/floor/tiled/white,/area/tether/surfacebase/medical/triage) +"bgg" = (/obj/effect/floor_decal/borderfloorwhite,/obj/effect/floor_decal/corner/paleblue/border,/turf/simulated/floor/tiled/white,/area/tether/surfacebase/medical/triage) +"bgh" = (/obj/effect/floor_decal/borderfloorwhite,/obj/effect/floor_decal/corner/paleblue/border,/obj/effect/floor_decal/borderfloorwhite/corner2{tag = "icon-borderfloorcorner2_white (NORTHWEST)"; icon_state = "borderfloorcorner2_white"; dir = 9},/obj/effect/floor_decal/corner/paleblue/bordercorner2{tag = "icon-bordercolorcorner2 (NORTHWEST)"; icon_state = "bordercolorcorner2"; dir = 9},/turf/simulated/floor/tiled/white,/area/tether/surfacebase/medical/triage) +"bgi" = (/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/tether/surfacebase/medical/triage) +"bgj" = (/obj/structure/table/glass,/obj/item/weapon/storage/firstaid/regular,/obj/effect/floor_decal/borderfloorwhite{tag = "icon-borderfloor_white (SOUTHEAST)"; icon_state = "borderfloor_white"; dir = 6},/obj/effect/floor_decal/corner/paleblue/border{tag = "icon-bordercolor (SOUTHEAST)"; icon_state = "bordercolor"; dir = 6},/obj/effect/floor_decal/borderfloorwhite/corner2,/obj/effect/floor_decal/corner/paleblue/bordercorner2,/obj/machinery/firealarm{dir = 4; pixel_x = 24},/obj/random/firstaid,/turf/simulated/floor/tiled/white,/area/tether/surfacebase/medical/triage) +"bgk" = (/obj/machinery/firealarm{dir = 2; layer = 3.3; pixel_x = 0; pixel_y = 26},/turf/simulated/floor/wood,/area/tether/surfacebase/reading_room) +"bgl" = (/obj/machinery/newscaster{pixel_x = 0; pixel_y = 30},/turf/simulated/floor/wood,/area/tether/surfacebase/reading_room) +"bgm" = (/obj/machinery/light_switch{pixel_y = 25},/turf/simulated/floor/wood,/area/tether/surfacebase/reading_room) +"bgn" = (/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/wood,/area/tether/surfacebase/reading_room) +"bgo" = (/obj/structure/table/glass,/obj/machinery/photocopier/faxmachine,/obj/machinery/atmospherics/unary/vent_scrubber/on,/obj/machinery/status_display{pixel_y = 30},/turf/simulated/floor/wood,/area/tether/surfacebase/reading_room) +"bgp" = (/obj/structure/table/reinforced,/obj/item/device/communicator,/obj/item/device/communicator,/obj/item/device/communicator,/obj/item/device/communicator,/obj/item/device/radio/intercom{dir = 8; name = "Station Intercom (General)"; pixel_x = -28},/turf/simulated/floor/tiled,/area/gateway) +"bgq" = (/obj/structure/table/reinforced,/obj/item/weapon/cell/device/weapon,/obj/item/device/radio/headset/headset_sec,/obj/item/weapon/cell/device/weapon,/turf/simulated/floor/holofloor/tiled/dark,/area/tether/surfacebase/security/armory) +"bgr" = (/obj/structure/table/reinforced,/obj/item/weapon/reagent_containers/spray/pepper,/obj/item/weapon/reagent_containers/spray/pepper,/turf/simulated/floor/holofloor/tiled/dark,/area/tether/surfacebase/security/armory) +"bgs" = (/obj/structure/table/reinforced,/obj/item/weapon/cell/device/weapon,/obj/machinery/atmospherics/unary/vent_pump/on{dir = 1},/obj/item/weapon/cell/device/weapon,/turf/simulated/floor/holofloor/tiled/dark,/area/tether/surfacebase/security/armory) +"bgt" = (/obj/structure/table/reinforced,/obj/item/device/radio/headset/headset_sec,/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 1},/turf/simulated/floor/holofloor/tiled/dark,/area/tether/surfacebase/security/armory) +"bgu" = (/obj/structure/table/reinforced,/obj/item/device/radio/headset/headset_sec/alt,/obj/item/device/radio/headset/headset_sec/alt,/obj/machinery/light_switch{pixel_x = 25},/turf/simulated/floor/holofloor/tiled/dark,/area/tether/surfacebase/security/armory) +"bgv" = (/obj/structure/closet/secure_closet/brig,/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (WEST)"; icon_state = "borderfloor"; dir = 8},/obj/effect/floor_decal/corner/red/border{tag = "icon-bordercolor (WEST)"; icon_state = "bordercolor"; dir = 8},/turf/simulated/floor/tiled,/area/tether/surfacebase/security/common) +"bgw" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/tiled,/area/tether/surfacebase/security/common) +"bgx" = (/obj/structure/table/reinforced,/obj/machinery/recharger,/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (EAST)"; icon_state = "borderfloor"; dir = 4},/obj/effect/floor_decal/corner/red/border{tag = "icon-bordercolor (EAST)"; icon_state = "bordercolor"; dir = 4},/obj/machinery/light{dir = 4; icon_state = "tube1"},/turf/simulated/floor/tiled,/area/tether/surfacebase/security/common) +"bgy" = (/obj/machinery/vending/cola,/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (WEST)"; icon_state = "borderfloor"; dir = 8},/obj/effect/floor_decal/corner/red/border{tag = "icon-bordercolor (WEST)"; icon_state = "bordercolor"; dir = 8},/obj/machinery/light{dir = 8; icon_state = "tube1"; pixel_y = 0},/turf/simulated/floor/tiled,/area/tether/surfacebase/security/breakroom) +"bgz" = (/turf/simulated/floor/carpet/blue,/area/tether/surfacebase/security/breakroom) +"bgA" = (/obj/structure/bed/chair{dir = 1},/turf/simulated/floor/carpet/blue,/area/tether/surfacebase/security/breakroom) +"bgB" = (/obj/effect/floor_decal/techfloor{tag = "icon-techfloor_edges (WEST)"; icon_state = "techfloor_edges"; dir = 8},/obj/machinery/firealarm{dir = 8; pixel_x = -24},/obj/random/junk,/turf/simulated/floor/tiled/techfloor/grid,/area/vacant/vacant_site2) +"bgC" = (/obj/machinery/light/small{dir = 4; pixel_y = 0},/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/techfloor/grid,/area/vacant/vacant_site2) +"bgD" = (/obj/structure/grille,/obj/structure/window/reinforced{dir = 5; icon_state = "fwindow"},/obj/machinery/door/firedoor,/turf/simulated/floor/plating,/area/tether/surfacebase/medical/triage) +"bgE" = (/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,/obj/machinery/door/airlock/multi_tile/glass{name = "Emergency Treatment Centre"; req_access = list(5)},/turf/simulated/floor/tiled/white,/area/tether/surfacebase/medical/triage) +"bgF" = (/obj/machinery/door/firedoor/glass,/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled/white,/area/tether/surfacebase/medical/triage) +"bgG" = (/obj/machinery/camera/network/civilian{tag = "icon-camera (EAST)"; icon_state = "camera"; dir = 4},/turf/simulated/floor/wood,/area/tether/surfacebase/reading_room) +"bgH" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 6},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 6},/obj/structure/cable/green{d1 = 2; d2 = 4; icon_state = "2-4"},/turf/simulated/floor/wood,/area/tether/surfacebase/reading_room) +"bgI" = (/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/wood,/area/tether/surfacebase/reading_room) +"bgJ" = (/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 = 8; icon_state = "1-8"},/turf/simulated/floor/wood,/area/tether/surfacebase/reading_room) +"bgK" = (/obj/structure/bed/chair/office/light{tag = "icon-officechair_white (EAST)"; icon_state = "officechair_white"; dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/turf/simulated/floor/wood,/area/tether/surfacebase/reading_room) +"bgL" = (/obj/structure/table/glass,/obj/item/weapon/pen,/obj/machinery/alarm{dir = 8; icon_state = "alarm0"; pixel_x = 24},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 10},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 9},/turf/simulated/floor/wood,/area/tether/surfacebase/reading_room) +"bgM" = (/obj/machinery/door/blast/shutters{dir = 2; id = "PubPrep"; layer = 3.3; name = "Public Access Shutter"},/turf/simulated/floor/tiled,/area/gateway) +"bgN" = (/obj/machinery/recharge_station,/obj/effect/floor_decal/industrial/outline/yellow,/turf/simulated/floor/tiled,/area/gateway) +"bgO" = (/obj/machinery/suit_cycler/mining{req_access = null},/turf/simulated/floor/tiled,/area/gateway) +"bgP" = (/obj/machinery/vending/security,/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (WEST)"; icon_state = "borderfloor"; dir = 8},/obj/effect/floor_decal/corner/red/border{tag = "icon-bordercolor (WEST)"; icon_state = "bordercolor"; dir = 8},/turf/simulated/floor/tiled,/area/tether/surfacebase/security/common) +"bgQ" = (/obj/structure/cable/green{d1 = 1; d2 = 4; icon_state = "1-4"},/turf/simulated/floor/tiled,/area/tether/surfacebase/security/common) +"bgR" = (/obj/structure/table/reinforced,/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (EAST)"; icon_state = "borderfloor"; dir = 4},/obj/effect/floor_decal/corner/red/border{tag = "icon-bordercolor (EAST)"; icon_state = "bordercolor"; dir = 4},/obj/structure/cable/green{icon_state = "0-8"},/obj/machinery/power/apc{dir = 4; name = "east bump"; pixel_x = 28},/turf/simulated/floor/tiled,/area/tether/surfacebase/security/common) +"bgS" = (/obj/machinery/vending/snack,/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (SOUTHWEST)"; icon_state = "borderfloor"; dir = 10},/obj/effect/floor_decal/corner/red/border{tag = "icon-bordercolor (SOUTHWEST)"; icon_state = "bordercolor"; dir = 10},/turf/simulated/floor/tiled,/area/tether/surfacebase/security/breakroom) +"bgT" = (/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/corner/red/border,/obj/effect/floor_decal/borderfloor/corner2{tag = "icon-borderfloorcorner2 (NORTHWEST)"; icon_state = "borderfloorcorner2"; dir = 9},/obj/effect/floor_decal/corner/red/bordercorner2{tag = "icon-bordercolorcorner2 (NORTHWEST)"; icon_state = "bordercolorcorner2"; dir = 9},/obj/machinery/atmospherics/unary/vent_pump/on{dir = 4},/turf/simulated/floor/tiled,/area/tether/surfacebase/security/breakroom) +"bgU" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 10},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 6},/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled,/area/tether/surfacebase/security/breakroom) +"bgV" = (/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/corner/red/border,/obj/effect/floor_decal/borderfloor/corner2,/obj/effect/floor_decal/corner/red/bordercorner2,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/turf/simulated/floor/tiled,/area/tether/surfacebase/security/breakroom) +"bgW" = (/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/corner/red/border,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/turf/simulated/floor/tiled,/area/tether/surfacebase/security/breakroom) +"bgX" = (/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/corner/red/border,/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 8},/turf/simulated/floor/tiled,/area/tether/surfacebase/security/breakroom) +"bgY" = (/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (SOUTHEAST)"; icon_state = "borderfloor"; dir = 6},/obj/effect/floor_decal/corner/red/border{tag = "icon-bordercolor (SOUTHEAST)"; icon_state = "bordercolor"; dir = 6},/obj/machinery/light_switch{pixel_x = 25},/obj/item/device/radio/intercom{name = "Station Intercom (General)"; pixel_y = -21},/obj/effect/floor_decal/borderfloor/corner2{tag = "icon-borderfloorcorner2 (SOUTHEAST)"; icon_state = "borderfloorcorner2"; dir = 6},/obj/effect/floor_decal/corner/red/bordercorner2{tag = "icon-bordercolorcorner2 (SOUTHEAST)"; icon_state = "bordercolorcorner2"; dir = 6},/turf/simulated/floor/tiled,/area/tether/surfacebase/security/breakroom) +"bgZ" = (/obj/effect/floor_decal/techfloor{tag = "icon-techfloor_edges (WEST)"; icon_state = "techfloor_edges"; dir = 8},/obj/structure/cable/green{d1 = 2; d2 = 4; icon_state = "2-4"},/turf/simulated/floor/tiled/techfloor/grid,/area/vacant/vacant_site2) +"bha" = (/obj/structure/cable/green{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/tiled/techfloor/grid,/area/vacant/vacant_site2) +"bhb" = (/obj/structure/closet,/obj/random/maintenance/medical,/obj/random/maintenance/clean,/obj/random/maintenance/medical,/turf/simulated/floor/tiled/techfloor/grid,/area/vacant/vacant_site2) +"bhc" = (/obj/effect/floor_decal/techfloor{tag = "icon-techfloor_edges (NORTHEAST)"; icon_state = "techfloor_edges"; dir = 5},/obj/structure/closet/firecloset,/obj/random/maintenance/medical,/obj/random/maintenance/medical,/turf/simulated/floor/tiled/techfloor/grid,/area/vacant/vacant_site2) +"bhd" = (/turf/simulated/wall,/area/tether/surfacebase/medical/lobby) +"bhe" = (/obj/machinery/disposal,/obj/effect/floor_decal/borderfloorwhite{tag = "icon-borderfloor_white (NORTHWEST)"; icon_state = "borderfloor_white"; dir = 9},/obj/effect/floor_decal/corner/paleblue/border{tag = "icon-bordercolor (NORTHWEST)"; icon_state = "bordercolor"; dir = 9},/obj/machinery/alarm{dir = 4; icon_state = "alarm0"; pixel_x = -22; pixel_y = 0},/obj/structure/disposalpipe/trunk{dir = 4},/turf/simulated/floor/tiled/white,/area/tether/surfacebase/medical/lobby) +"bhf" = (/obj/effect/floor_decal/borderfloorwhite{tag = "icon-borderfloor_white (NORTH)"; icon_state = "borderfloor_white"; dir = 1},/obj/effect/floor_decal/corner/paleblue/border{tag = "icon-bordercolor (NORTH)"; icon_state = "bordercolor"; dir = 1},/obj/item/device/radio/intercom{dir = 1; name = "Station Intercom (General)"; pixel_y = 21},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled/white,/area/tether/surfacebase/medical/lobby) +"bhg" = (/obj/effect/floor_decal/borderfloorwhite{tag = "icon-borderfloor_white (NORTH)"; icon_state = "borderfloor_white"; dir = 1},/obj/effect/floor_decal/corner/paleblue/border{tag = "icon-bordercolor (NORTH)"; icon_state = "bordercolor"; dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals6{tag = "icon-steel_decals6 (NORTHWEST)"; icon_state = "steel_decals6"; dir = 9},/obj/machinery/camera/network/medbay,/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled/white,/area/tether/surfacebase/medical/lobby) +"bhh" = (/obj/effect/floor_decal/borderfloorwhite{tag = "icon-borderfloor_white (NORTH)"; icon_state = "borderfloor_white"; dir = 1},/obj/effect/floor_decal/corner/paleblue/border{tag = "icon-bordercolor (NORTH)"; icon_state = "bordercolor"; dir = 1},/obj/effect/floor_decal/borderfloorwhite/corner2{tag = "icon-borderfloorcorner2_white (NORTH)"; icon_state = "borderfloorcorner2_white"; dir = 1},/obj/effect/floor_decal/corner/paleblue/bordercorner2{tag = "icon-bordercolorcorner2 (NORTH)"; icon_state = "bordercolorcorner2"; dir = 1},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled/white,/area/tether/surfacebase/medical/lobby) +"bhi" = (/obj/structure/cable/green{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled/white,/area/tether/surfacebase/medical/lobby) +"bhj" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/disposalpipe/junction,/turf/simulated/floor/tiled/white,/area/tether/surfacebase/medical/lobby) +"bhk" = (/obj/structure/flora/pottedplant{icon_state = "plant-22"},/obj/effect/floor_decal/borderfloorwhite{tag = "icon-borderfloor_white (NORTHEAST)"; icon_state = "borderfloor_white"; dir = 5},/obj/effect/floor_decal/corner/paleblue/border{tag = "icon-bordercolor (NORTHEAST)"; icon_state = "bordercolor"; dir = 5},/obj/effect/floor_decal/borderfloorwhite/corner2{tag = "icon-borderfloorcorner2_white (EAST)"; icon_state = "borderfloorcorner2_white"; dir = 4},/obj/effect/floor_decal/corner/paleblue/bordercorner2{tag = "icon-bordercolorcorner2 (EAST)"; icon_state = "bordercolorcorner2"; dir = 4},/obj/machinery/power/apc{dir = 4; name = "east bump"; pixel_x = 28},/obj/structure/cable/green{icon_state = "0-8"},/obj/structure/extinguisher_cabinet{pixel_y = 30},/turf/simulated/floor/tiled/white,/area/tether/surfacebase/medical/lobby) +"bhl" = (/obj/machinery/disposal,/obj/structure/disposalpipe/trunk{dir = 4},/turf/simulated/floor/wood,/area/tether/surfacebase/reading_room) +"bhm" = (/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{dir = 2; icon_state = "pipe-c"},/turf/simulated/floor/wood,/area/tether/surfacebase/reading_room) +"bhn" = (/obj/structure/bookcase,/turf/simulated/floor/wood,/area/tether/surfacebase/reading_room) +"bho" = (/obj/structure/bookcase,/obj/machinery/light/small,/turf/simulated/floor/wood,/area/tether/surfacebase/reading_room) +"bhp" = (/obj/structure/table/glass,/obj/item/weapon/paper_bin,/turf/simulated/floor/wood,/area/tether/surfacebase/reading_room) +"bhq" = (/obj/structure/table/glass,/obj/item/weapon/book/codex,/turf/simulated/floor/wood,/area/tether/surfacebase/reading_room) +"bhr" = (/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) +"bhs" = (/obj/structure/grille,/obj/structure/window/reinforced{dir = 5; icon_state = "fwindow"},/obj/machinery/door/firedoor,/turf/simulated/floor/plating,/area/tether/surfacebase/reading_room) +"bht" = (/obj/machinery/light_switch{pixel_x = -25},/turf/simulated/floor/tiled,/area/gateway) +"bhu" = (/obj/machinery/button/remote/blast_door{id = "PubPrep"; name = "Public Access Shutter -control"; pixel_y = 22; req_access = list(62)},/turf/simulated/floor/tiled,/area/gateway) +"bhv" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/tiled,/area/gateway) +"bhw" = (/obj/machinery/suit_cycler/security{req_access = null},/turf/simulated/floor/tiled,/area/gateway) +"bhx" = (/turf/simulated/wall/r_wall,/area/crew_quarters/recreation_area_restroom) +"bhy" = (/obj/structure/toilet{pixel_y = 16},/obj/machinery/light/small{dir = 8},/turf/simulated/floor/tiled/white,/area/crew_quarters/recreation_area_restroom) +"bhz" = (/turf/simulated/wall,/area/crew_quarters/recreation_area_restroom) +"bhA" = (/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (WEST)"; icon_state = "borderfloor"; dir = 8},/obj/effect/floor_decal/corner/red/border{tag = "icon-bordercolor (WEST)"; icon_state = "bordercolor"; dir = 8},/obj/item/device/radio/intercom{dir = 8; name = "Station Intercom (General)"; pixel_x = -28},/obj/machinery/disposal,/obj/structure/disposalpipe/trunk{dir = 4},/turf/simulated/floor/tiled,/area/tether/surfacebase/security/common) +"bhB" = (/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled,/area/tether/surfacebase/security/common) +"bhC" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/disposalpipe/segment{dir = 2; icon_state = "pipe-c"},/turf/simulated/floor/tiled,/area/tether/surfacebase/security/common) +"bhD" = (/obj/structure/table/reinforced,/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (EAST)"; icon_state = "borderfloor"; dir = 4},/obj/effect/floor_decal/corner/red/border{tag = "icon-bordercolor (EAST)"; icon_state = "bordercolor"; dir = 4},/obj/machinery/light_switch{pixel_x = 25},/turf/simulated/floor/tiled,/area/tether/surfacebase/security/common) +"bhE" = (/obj/structure/grille,/obj/structure/window/reinforced{dir = 5; icon_state = "fwindow"},/obj/machinery/door/firedoor,/turf/simulated/floor/plating,/area/tether/surfacebase/security/breakroom) +"bhF" = (/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,/obj/machinery/door/airlock/glass_security{name = "Break Room"; req_access = list(1)},/turf/simulated/floor/tiled/monotile,/area/tether/surfacebase/security/breakroom) +"bhG" = (/obj/effect/floor_decal/techfloor{tag = "icon-techfloor_edges (WEST)"; icon_state = "techfloor_edges"; dir = 8},/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/tiled/techfloor/grid,/area/vacant/vacant_site2) +"bhH" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 5},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 5},/turf/simulated/floor/tiled/techfloor/grid,/area/vacant/vacant_site2) +"bhI" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 10},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 10},/turf/simulated/floor/tiled/techfloor/grid,/area/vacant/vacant_site2) +"bhJ" = (/obj/effect/floor_decal/techfloor{tag = "icon-techfloor_edges (EAST)"; icon_state = "techfloor_edges"; dir = 4},/obj/effect/floor_decal/techfloor/hole/right{tag = "icon-techfloor_hole_right (EAST)"; icon_state = "techfloor_hole_right"; dir = 4},/turf/simulated/floor/tiled/techfloor/grid,/area/vacant/vacant_site2) +"bhK" = (/obj/machinery/computer/crew{dir = 4},/obj/effect/floor_decal/borderfloorwhite{tag = "icon-borderfloor_white (WEST)"; icon_state = "borderfloor_white"; dir = 8},/obj/effect/floor_decal/corner/paleblue/border{tag = "icon-bordercolor (WEST)"; icon_state = "bordercolor"; dir = 8},/turf/simulated/floor/tiled/white,/area/tether/surfacebase/medical/lobby) +"bhL" = (/obj/structure/bed/chair/office/light,/obj/machinery/atmospherics/unary/vent_pump/on,/turf/simulated/floor/tiled/white,/area/tether/surfacebase/medical/lobby) +"bhM" = (/obj/structure/bed/chair/office/light,/obj/machinery/atmospherics/unary/vent_scrubber/on,/turf/simulated/floor/tiled/white,/area/tether/surfacebase/medical/lobby) +"bhN" = (/obj/structure/table/glass,/turf/simulated/floor/tiled/white,/area/tether/surfacebase/medical/lobby) +"bhO" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/tiled/white,/area/tether/surfacebase/medical/lobby) +"bhP" = (/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled/white,/area/tether/surfacebase/medical/lobby) +"bhQ" = (/obj/structure/reagent_dispensers/water_cooler/full,/obj/effect/floor_decal/borderfloorwhite{tag = "icon-borderfloor_white (EAST)"; icon_state = "borderfloor_white"; dir = 4},/obj/effect/floor_decal/corner/paleblue/border{tag = "icon-bordercolor (EAST)"; icon_state = "bordercolor"; dir = 4},/turf/simulated/floor/tiled/white,/area/tether/surfacebase/medical/lobby) +"bhR" = (/obj/structure/grille,/obj/structure/window/reinforced{dir = 5; icon_state = "fwindow"},/obj/machinery/door/firedoor,/obj/structure/window/reinforced{dir = 4},/turf/simulated/floor/plating,/area/tether/surfacebase/medical/lobby) +"bhS" = (/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,/area/tether/surfacebase/reading_room) +"bhT" = (/obj/machinery/power/apc{name = "west bump"; dir = 8; pixel_x = -25; cell_type = /obj/item/weapon/cell/super},/obj/structure/cable{icon_state = "0-4"},/obj/structure/cable{icon_state = "2-4"},/turf/simulated/floor/tiled,/area/gateway) +"bhU" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/tiled,/area/gateway) +"bhV" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/cable{d1 = 2; d2 = 8; icon_state = "2-8"},/turf/simulated/floor/tiled,/area/gateway) +"bhW" = (/obj/machinery/suit_cycler/medical{req_access = null},/turf/simulated/floor/tiled,/area/gateway) +"bhX" = (/obj/machinery/door/airlock{name = "Unit 1"},/turf/simulated/floor/tiled/white,/area/crew_quarters/recreation_area_restroom) +"bhY" = (/obj/machinery/door/airlock{name = "Unit 2"},/turf/simulated/floor/tiled/white,/area/crew_quarters/recreation_area_restroom) +"bhZ" = (/obj/machinery/door/airlock{name = "Unit 3"},/turf/simulated/floor/tiled/white,/area/crew_quarters/recreation_area_restroom) +"bia" = (/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (WEST)"; icon_state = "borderfloor"; dir = 8},/obj/effect/floor_decal/corner/red/border{tag = "icon-bordercolor (WEST)"; icon_state = "bordercolor"; dir = 8},/obj/machinery/camera/network/security{c_tag = "SEC - Interrogation Observation"; dir = 4},/turf/simulated/floor/tiled,/area/tether/surfacebase/security/common) +"bib" = (/obj/machinery/atmospherics/unary/vent_pump/on{dir = 4},/turf/simulated/floor/tiled,/area/tether/surfacebase/security/common) +"bic" = (/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled,/area/tether/surfacebase/security/common) +"bid" = (/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (EAST)"; icon_state = "borderfloor"; dir = 4},/obj/effect/floor_decal/corner/red/border{tag = "icon-bordercolor (EAST)"; icon_state = "bordercolor"; dir = 4},/obj/effect/floor_decal/borderfloor/corner2{tag = "icon-borderfloorcorner2 (NORTHEAST)"; icon_state = "borderfloorcorner2"; dir = 5},/obj/effect/floor_decal/corner/red/bordercorner2{tag = "icon-bordercolorcorner2 (NORTHEAST)"; icon_state = "bordercolorcorner2"; dir = 5},/turf/simulated/floor/tiled,/area/tether/surfacebase/security/common) +"bie" = (/obj/structure/grille,/obj/structure/window/reinforced{dir = 5; icon_state = "fwindow"},/obj/machinery/door/firedoor,/turf/simulated/floor/plating,/area/tether/surfacebase/security/lobby) +"bif" = (/obj/structure/flora/pottedplant{icon_state = "plant-22"},/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (NORTHWEST)"; icon_state = "borderfloor"; dir = 9},/obj/effect/floor_decal/corner/red/border{tag = "icon-bordercolor (NORTHWEST)"; icon_state = "bordercolor"; dir = 9},/obj/effect/floor_decal/borderfloor/corner2{tag = "icon-borderfloorcorner2 (SOUTHWEST)"; icon_state = "borderfloorcorner2"; dir = 10},/obj/effect/floor_decal/corner/red/bordercorner2{tag = "icon-bordercolorcorner2 (SOUTHWEST)"; icon_state = "bordercolorcorner2"; dir = 10},/obj/machinery/newscaster{pixel_x = 0; pixel_y = 30},/turf/simulated/floor/tiled,/area/tether/surfacebase/security/lobby) +"big" = (/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (NORTH)"; icon_state = "borderfloor"; dir = 1},/obj/effect/floor_decal/corner/red/border{tag = "icon-bordercolor (NORTH)"; icon_state = "bordercolor"; dir = 1},/obj/effect/floor_decal/borderfloor/corner2{tag = "icon-borderfloorcorner2 (NORTH)"; icon_state = "borderfloorcorner2"; dir = 1},/obj/effect/floor_decal/corner/red/bordercorner2{tag = "icon-bordercolorcorner2 (NORTH)"; icon_state = "bordercolorcorner2"; dir = 1},/obj/machinery/atmospherics/unary/vent_pump/on,/turf/simulated/floor/tiled,/area/tether/surfacebase/security/lobby) +"bih" = (/obj/structure/cable/green{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled,/area/tether/surfacebase/security/lobby) +"bii" = (/obj/structure/bed/chair,/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (NORTH)"; icon_state = "borderfloor"; dir = 1},/obj/effect/floor_decal/corner/red/border{tag = "icon-bordercolor (NORTH)"; icon_state = "bordercolor"; dir = 1},/obj/effect/floor_decal/borderfloor/corner2{tag = "icon-borderfloorcorner2 (EAST)"; icon_state = "borderfloorcorner2"; dir = 4},/obj/effect/floor_decal/corner/red/bordercorner2{tag = "icon-bordercolorcorner2 (EAST)"; icon_state = "bordercolorcorner2"; dir = 4},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/tiled,/area/tether/surfacebase/security/lobby) +"bij" = (/obj/structure/bed/chair,/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (NORTH)"; icon_state = "borderfloor"; dir = 1},/obj/effect/floor_decal/corner/red/border{tag = "icon-bordercolor (NORTH)"; icon_state = "bordercolor"; dir = 1},/obj/structure/cable/green{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/tiled,/area/tether/surfacebase/security/lobby) +"bik" = (/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (NORTH)"; icon_state = "borderfloor"; dir = 1},/obj/effect/floor_decal/corner/red/border{tag = "icon-bordercolor (NORTH)"; icon_state = "bordercolor"; dir = 1},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/unary/vent_scrubber/on,/turf/simulated/floor/tiled,/area/tether/surfacebase/security/lobby) +"bil" = (/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (NORTHEAST)"; icon_state = "borderfloor"; dir = 5},/obj/effect/floor_decal/corner/red/border{tag = "icon-bordercolor (NORTHEAST)"; icon_state = "bordercolor"; dir = 5},/obj/structure/cable/green{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/tiled,/area/tether/surfacebase/security/lobby) +"bim" = (/obj/machinery/door/airlock/maintenance/sec{req_access = list(1)},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/door/firedoor/glass,/turf/simulated/floor/tiled/techfloor/grid,/area/tether/surfacebase/security/lobby) +"bin" = (/obj/effect/floor_decal/techfloor{tag = "icon-techfloor_edges (WEST)"; icon_state = "techfloor_edges"; dir = 8},/obj/effect/floor_decal/techfloor/corner{tag = "icon-techfloor_corners (NORTH)"; icon_state = "techfloor_corners"; dir = 1},/obj/structure/cable/green{d1 = 1; d2 = 8; icon_state = "1-8"},/turf/simulated/floor/tiled/techfloor/grid,/area/vacant/vacant_site2) +"bio" = (/obj/effect/floor_decal/techfloor{tag = "icon-techfloor_edges (EAST)"; icon_state = "techfloor_edges"; dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 10},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 10},/turf/simulated/floor/tiled/techfloor/grid,/area/vacant/vacant_site2) +"bip" = (/obj/structure/table/glass,/obj/machinery/light{icon_state = "tube1"; dir = 8},/obj/effect/floor_decal/borderfloorwhite{tag = "icon-borderfloor_white (WEST)"; icon_state = "borderfloor_white"; dir = 8},/obj/effect/floor_decal/corner/paleblue/border{tag = "icon-bordercolor (WEST)"; icon_state = "bordercolor"; dir = 8},/turf/simulated/floor/tiled/white,/area/tether/surfacebase/medical/lobby) +"biq" = (/obj/structure/table/glass,/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 5},/turf/simulated/floor/tiled/white,/area/tether/surfacebase/medical/lobby) +"bir" = (/obj/structure/table/glass,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 5},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled/white,/area/tether/surfacebase/medical/lobby) +"bis" = (/obj/structure/table/glass,/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/lobby) +"bit" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 9},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 9},/turf/simulated/floor/tiled/white,/area/tether/surfacebase/medical/lobby) +"biu" = (/obj/structure/table/glass,/obj/item/weapon/storage/box/cups,/obj/item/weapon/storage/box/cups,/obj/machinery/light{dir = 4; icon_state = "tube1"},/obj/effect/floor_decal/borderfloorwhite{tag = "icon-borderfloor_white (EAST)"; icon_state = "borderfloor_white"; dir = 4},/obj/effect/floor_decal/corner/paleblue/border{tag = "icon-bordercolor (EAST)"; icon_state = "bordercolor"; dir = 4},/turf/simulated/floor/tiled/white,/area/tether/surfacebase/medical/lobby) +"biv" = (/obj/structure/grille,/obj/structure/window/reinforced{dir = 5; icon_state = "fwindow"},/obj/machinery/door/firedoor,/obj/structure/window/reinforced{dir = 8},/turf/simulated/floor/plating,/area/tether/surfacebase/atrium_three) +"biw" = (/turf/simulated/floor/tiled,/area/tether/surfacebase/atrium_three) +"bix" = (/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,/area/tether/surfacebase/atrium_three) +"biy" = (/obj/structure/grille,/obj/structure/window/reinforced{dir = 5; icon_state = "fwindow"},/obj/machinery/door/firedoor,/obj/structure/window/reinforced{dir = 4},/turf/simulated/floor/plating,/area/tether/surfacebase/atrium_three) +"biz" = (/obj/effect/floor_decal/industrial/warning,/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 6},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 6},/obj/machinery/camera/network/command{c_tag = "COM - Bridge Hallway"; dir = 4},/turf/simulated/floor/tiled,/area/gateway) +"biA" = (/obj/effect/floor_decal/industrial/warning,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled,/area/gateway) +"biB" = (/obj/effect/floor_decal/industrial/warning/corner{icon_state = "warningcorner"; dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled,/area/gateway) +"biC" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 4},/turf/simulated/floor/tiled,/area/gateway) +"biD" = (/obj/machinery/suit_cycler/engineering{req_access = null},/turf/simulated/floor/tiled,/area/gateway) +"biE" = (/obj/machinery/light_switch{pixel_x = -25},/turf/simulated/floor/tiled/white,/area/crew_quarters/recreation_area_restroom) +"biF" = (/obj/machinery/atmospherics/unary/vent_pump/on,/turf/simulated/floor/tiled/white,/area/crew_quarters/recreation_area_restroom) +"biG" = (/turf/simulated/floor/tiled/white,/area/crew_quarters/recreation_area_restroom) +"biH" = (/obj/machinery/atmospherics/unary/vent_scrubber/on,/turf/simulated/floor/tiled/white,/area/crew_quarters/recreation_area_restroom) +"biI" = (/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (WEST)"; icon_state = "borderfloor"; dir = 8},/obj/effect/floor_decal/corner/red/border{tag = "icon-bordercolor (WEST)"; icon_state = "bordercolor"; dir = 8},/turf/simulated/floor/tiled,/area/tether/surfacebase/security/common) +"biJ" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 5},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 5},/obj/structure/disposalpipe/segment{dir = 1; icon_state = "pipe-c"},/turf/simulated/floor/tiled,/area/tether/surfacebase/security/common) +"biK" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled,/area/tether/surfacebase/security/common) +"biL" = (/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 = null; layer = 2.8; name = "Security"; req_access = list(63)},/turf/simulated/floor/tiled/monotile,/area/tether/surfacebase/security/lobby) +"biM" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled,/area/tether/surfacebase/security/lobby) +"biN" = (/obj/machinery/atmospherics/pipe/manifold/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled,/area/tether/surfacebase/security/lobby) +"biO" = (/obj/machinery/atmospherics/pipe/manifold/hidden/supply,/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,/obj/structure/disposalpipe/junction{icon_state = "pipe-j2"; dir = 4},/turf/simulated/floor/tiled,/area/tether/surfacebase/security/lobby) +"biP" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 1},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 10},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled,/area/tether/surfacebase/security/lobby) +"biQ" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 9},/obj/structure/disposalpipe/segment{dir = 2; icon_state = "pipe-c"},/turf/simulated/floor/tiled,/area/tether/surfacebase/security/lobby) +"biR" = (/obj/structure/bed/chair{dir = 8},/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (EAST)"; icon_state = "borderfloor"; dir = 4},/obj/effect/floor_decal/corner/red/border{tag = "icon-bordercolor (EAST)"; icon_state = "bordercolor"; dir = 4},/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/extinguisher_cabinet{dir = 2; icon_state = "extinguisher_closed"; pixel_x = 30; tag = "icon-extinguisher_closed (WEST)"},/turf/simulated/floor/tiled,/area/tether/surfacebase/security/lobby) +"biS" = (/turf/simulated/wall/r_wall,/area/tether/surfacebase/security/lobby) +"biT" = (/obj/effect/floor_decal/techfloor{tag = "icon-techfloor_edges (WEST)"; icon_state = "techfloor_edges"; dir = 8},/turf/simulated/floor/tiled/techfloor/grid,/area/vacant/vacant_site2) +"biU" = (/obj/effect/floor_decal/techfloor{tag = "icon-techfloor_edges (EAST)"; icon_state = "techfloor_edges"; dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/tiled/techfloor/grid,/area/vacant/vacant_site2) +"biV" = (/obj/effect/floor_decal/borderfloorwhite{tag = "icon-borderfloor_white (WEST)"; icon_state = "borderfloor_white"; dir = 8},/obj/effect/floor_decal/corner/paleblue/border{tag = "icon-bordercolor (WEST)"; icon_state = "bordercolor"; dir = 8},/obj/machinery/firealarm{dir = 8; pixel_x = -24},/turf/simulated/floor/tiled/white,/area/tether/surfacebase/medical/lobby) +"biW" = (/turf/simulated/floor/tiled/white,/area/tether/surfacebase/medical/lobby) +"biX" = (/obj/structure/disposalpipe/junction{icon_state = "pipe-j2"; dir = 2},/turf/simulated/floor/tiled/white,/area/tether/surfacebase/medical/lobby) +"biY" = (/obj/machinery/disposal,/obj/effect/floor_decal/borderfloorwhite{tag = "icon-borderfloor_white (EAST)"; icon_state = "borderfloor_white"; dir = 4},/obj/effect/floor_decal/corner/paleblue/border{tag = "icon-bordercolor (EAST)"; icon_state = "bordercolor"; dir = 4},/obj/structure/disposalpipe/trunk{dir = 8},/turf/simulated/floor/tiled/white,/area/tether/surfacebase/medical/lobby) +"biZ" = (/obj/structure/lattice,/obj/machinery/door/firedoor/glass,/obj/structure/cable{icon_state = "32-4"},/obj/machinery/atmospherics/pipe/zpipe/down/supply{tag = "icon-down-supply (EAST)"; icon_state = "down-supply"; dir = 4},/obj/machinery/atmospherics/pipe/zpipe/down/scrubbers{tag = "icon-down-scrubbers (EAST)"; icon_state = "down-scrubbers"; dir = 4},/turf/simulated/open,/area/gateway) +"bja" = (/obj/structure/grille,/obj/structure/railing{dir = 4},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/turf/simulated/floor/plating,/area/gateway) +"bjb" = (/obj/structure/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 9},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 9},/turf/simulated/floor/bluegrid,/area/gateway) +"bjc" = (/obj/machinery/mech_recharger,/turf/simulated/floor/bluegrid,/area/gateway) +"bjd" = (/obj/machinery/alarm{dir = 1; pixel_y = -25},/turf/simulated/floor/bluegrid,/area/gateway) +"bje" = (/turf/simulated/floor/bluegrid,/area/gateway) +"bjf" = (/obj/effect/floor_decal/industrial/warning{dir = 8},/turf/simulated/floor/tiled,/area/gateway) +"bjg" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/disposalpipe/segment{dir = 4; icon_state = "pipe-c"},/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0},/turf/simulated/floor/tiled,/area/gateway) +"bjh" = (/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled,/area/gateway) +"bji" = (/obj/machinery/button/remote/blast_door{id = "PubPrepFront"; name = "Gateway Shutter"; pixel_y = -22; req_access = list(62)},/obj/structure/flora/pottedplant{tag = "icon-plant-24"; icon_state = "plant-24"},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled,/area/gateway) +"bjj" = (/obj/machinery/disposal,/obj/structure/disposalpipe/trunk{dir = 8},/turf/simulated/floor/tiled,/area/gateway) +"bjk" = (/obj/machinery/power/apc{name = "west bump"; dir = 8; pixel_x = -25; cell_type = /obj/item/weapon/cell/super},/obj/structure/cable{icon_state = "0-4"},/turf/simulated/floor/tiled/white,/area/crew_quarters/recreation_area_restroom) +"bjl" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 6},/obj/structure/cable{d1 = 2; d2 = 8; icon_state = "2-8"},/turf/simulated/floor/tiled/white,/area/crew_quarters/recreation_area_restroom) +"bjm" = (/obj/machinery/light,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/turf/simulated/floor/tiled/white,/area/crew_quarters/recreation_area_restroom) +"bjn" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 9},/obj/machinery/alarm{dir = 1; pixel_y = -25},/turf/simulated/floor/tiled/white,/area/crew_quarters/recreation_area_restroom) +"bjo" = (/obj/structure/sink{dir = 4; icon_state = "sink"; pixel_x = 11; pixel_y = 0},/turf/simulated/floor/tiled/white,/area/crew_quarters/recreation_area_restroom) +"bjp" = (/obj/structure/flora/pottedplant{icon_state = "plant-22"},/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (SOUTHWEST)"; icon_state = "borderfloor"; dir = 10},/obj/effect/floor_decal/corner/red/border{tag = "icon-bordercolor (SOUTHWEST)"; icon_state = "bordercolor"; dir = 10},/obj/machinery/alarm{dir = 4; icon_state = "alarm0"; pixel_x = -22; pixel_y = 0},/turf/simulated/floor/tiled,/area/tether/surfacebase/security/common) +"bjq" = (/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/corner/red/border,/turf/simulated/floor/tiled,/area/tether/surfacebase/security/common) +"bjr" = (/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/corner/red/border,/obj/machinery/light,/turf/simulated/floor/tiled,/area/tether/surfacebase/security/common) +"bjs" = (/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (SOUTHEAST)"; icon_state = "borderfloor"; dir = 6},/obj/effect/floor_decal/corner/red/border{tag = "icon-bordercolor (SOUTHEAST)"; icon_state = "bordercolor"; dir = 6},/obj/effect/floor_decal/borderfloor/corner2{tag = "icon-borderfloorcorner2 (SOUTHEAST)"; icon_state = "borderfloorcorner2"; dir = 6},/obj/effect/floor_decal/corner/red/bordercorner2{tag = "icon-bordercolorcorner2 (SOUTHEAST)"; icon_state = "bordercolorcorner2"; dir = 6},/turf/simulated/floor/tiled,/area/tether/surfacebase/security/common) +"bjt" = (/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (SOUTHWEST)"; icon_state = "borderfloor"; dir = 10},/obj/effect/floor_decal/corner/red/border{tag = "icon-bordercolor (SOUTHWEST)"; icon_state = "bordercolor"; dir = 10},/obj/effect/floor_decal/borderfloor/corner2{tag = "icon-borderfloorcorner2 (WEST)"; icon_state = "borderfloorcorner2"; dir = 8},/obj/effect/floor_decal/corner/red/bordercorner2{tag = "icon-bordercolorcorner2 (WEST)"; icon_state = "bordercolorcorner2"; dir = 8},/turf/simulated/floor/tiled,/area/tether/surfacebase/security/lobby) +"bju" = (/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/corner/red/border,/obj/machinery/alarm{dir = 1; pixel_y = -25},/turf/simulated/floor/tiled,/area/tether/surfacebase/security/lobby) +"bjv" = (/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/corner/red/border,/obj/machinery/camera/network/security{tag = "icon-camera (NORTH)"; icon_state = "camera"; dir = 1},/turf/simulated/floor/tiled,/area/tether/surfacebase/security/lobby) +"bjw" = (/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/corner/red/border,/obj/effect/floor_decal/borderfloor/corner2{tag = "icon-borderfloorcorner2 (NORTHWEST)"; icon_state = "borderfloorcorner2"; dir = 9},/obj/effect/floor_decal/corner/red/bordercorner2{tag = "icon-bordercolorcorner2 (NORTHWEST)"; icon_state = "bordercolorcorner2"; dir = 9},/obj/machinery/firealarm{dir = 1; pixel_x = 0; pixel_y = -25},/turf/simulated/floor/tiled,/area/tether/surfacebase/security/lobby) +"bjx" = (/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/tether/surfacebase/security/lobby) +"bjy" = (/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled,/area/tether/surfacebase/security/lobby) +"bjz" = (/obj/structure/bed/chair{dir = 8},/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (SOUTHEAST)"; icon_state = "borderfloor"; dir = 6},/obj/effect/floor_decal/corner/red/border{tag = "icon-bordercolor (SOUTHEAST)"; icon_state = "bordercolor"; dir = 6},/obj/effect/floor_decal/borderfloor/corner2,/obj/effect/floor_decal/corner/red/bordercorner2,/obj/machinery/power/apc{dir = 4; name = "east bump"; pixel_x = 28},/obj/structure/cable/green,/turf/simulated/floor/tiled,/area/tether/surfacebase/security/lobby) +"bjA" = (/obj/machinery/portable_atmospherics/powered/scrubber/huge/stationary{scrub_id = "atrium"},/turf/simulated/floor/tiled/techmaint,/area/tether/surfacebase/atrium_three) +"bjB" = (/obj/effect/floor_decal/techfloor{tag = "icon-techfloor_edges (SOUTHWEST)"; icon_state = "techfloor_edges"; dir = 10},/obj/effect/floor_decal/techfloor/hole{tag = "icon-techfloor_hole_left (WEST)"; icon_state = "techfloor_hole_left"; dir = 8},/obj/structure/closet/crate,/obj/random/maintenance/clean,/obj/random/maintenance/medical,/obj/random/maintenance/security,/obj/random/junk,/obj/random/maintenance/medical,/turf/simulated/floor/tiled/techfloor/grid,/area/vacant/vacant_site2) +"bjC" = (/obj/effect/floor_decal/techfloor/corner{tag = "icon-techfloor_corners (WEST)"; icon_state = "techfloor_corners"; dir = 8},/obj/effect/floor_decal/techfloor/corner,/obj/effect/floor_decal/techfloor{tag = "icon-techfloor_edges (EAST)"; icon_state = "techfloor_edges"; dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/tiled/techfloor/grid,/area/vacant/vacant_site2) +"bjD" = (/obj/structure/bed/chair{dir = 1},/obj/effect/floor_decal/borderfloorwhite{tag = "icon-borderfloor_white (SOUTHWEST)"; icon_state = "borderfloor_white"; dir = 10},/obj/effect/floor_decal/corner/paleblue/border{tag = "icon-bordercolor (SOUTHWEST)"; icon_state = "bordercolor"; dir = 10},/obj/machinery/computer/guestpass{dir = 4; pixel_x = -28; pixel_y = 0},/turf/simulated/floor/tiled/white,/area/tether/surfacebase/medical/lobby) +"bjE" = (/obj/structure/bed/chair{dir = 1},/obj/effect/floor_decal/borderfloorwhite,/obj/effect/floor_decal/corner/paleblue/border,/turf/simulated/floor/tiled/white,/area/tether/surfacebase/medical/lobby) +"bjF" = (/obj/structure/bed/chair{dir = 1},/obj/effect/floor_decal/borderfloorwhite,/obj/effect/floor_decal/corner/paleblue/border,/obj/effect/floor_decal/borderfloorwhite/corner2{tag = "icon-borderfloorcorner2_white (NORTHWEST)"; icon_state = "borderfloorcorner2_white"; dir = 9},/obj/effect/floor_decal/corner/paleblue/bordercorner2{tag = "icon-bordercolorcorner2 (NORTHWEST)"; icon_state = "bordercolorcorner2"; dir = 9},/turf/simulated/floor/tiled/white,/area/tether/surfacebase/medical/lobby) +"bjG" = (/obj/structure/flora/pottedplant{icon_state = "plant-22"},/obj/effect/floor_decal/borderfloorwhite{tag = "icon-borderfloor_white (SOUTHEAST)"; icon_state = "borderfloor_white"; dir = 6},/obj/effect/floor_decal/corner/paleblue/border{tag = "icon-bordercolor (SOUTHEAST)"; icon_state = "bordercolor"; dir = 6},/obj/effect/floor_decal/borderfloorwhite/corner2,/obj/effect/floor_decal/corner/paleblue/bordercorner2,/obj/effect/floor_decal/steeldecal/steel_decals9{tag = "icon-steel_decals9 (NORTH)"; icon_state = "steel_decals9"; dir = 1},/obj/machinery/newscaster{pixel_x = 25},/turf/simulated/floor/tiled/white,/area/tether/surfacebase/medical/lobby) +"bjH" = (/turf/simulated/wall,/area/tether/surfacebase/atrium_three) +"bjI" = (/obj/structure/extinguisher_cabinet{dir = 2; icon_state = "extinguisher_closed"; pixel_x = 30; tag = "icon-extinguisher_closed (WEST)"},/turf/simulated/floor/tiled,/area/tether/surfacebase/atrium_three) +"bjJ" = (/turf/simulated/wall/r_wall,/area/tether/surfacebase/atrium_three) +"bjK" = (/obj/machinery/door/airlock/multi_tile/metal{name = "Gateway Prep Room"},/obj/machinery/door/blast/shutters{dir = 2; id = "PubPrepFront"; layer = 3.3; name = "Gateway Prep Shutter"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/disposalpipe/segment,/obj/machinery/door/firedoor,/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0},/turf/simulated/floor/tiled,/area/gateway) +"bjL" = (/obj/machinery/door/blast/shutters{dir = 2; id = "PubPrepFront"; layer = 3.3; name = "Gateway Prep Shutter"},/obj/machinery/door/firedoor,/turf/simulated/floor/tiled,/area/gateway) +"bjM" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/door/firedoor,/obj/machinery/door/airlock{name = "Unisex Restrooms"},/obj/structure/cable{tag = "icon-1-2"; icon_state = "1-2"},/turf/simulated/floor/tiled/white,/area/crew_quarters/recreation_area_restroom) +"bjN" = (/obj/structure/grille,/obj/structure/window/reinforced{dir = 5; icon_state = "fwindow"},/obj/machinery/door/firedoor,/turf/simulated/floor/plating,/area/tether/surfacebase/security/common) +"bjO" = (/obj/structure/sign/directions/evac{dir = 4},/turf/simulated/wall/r_wall,/area/tether/surfacebase/security/lobby) +"bjP" = (/obj/machinery/door/airlock/multi_tile/glass{name = "Security Lobby"},/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/monotile,/area/tether/surfacebase/security/lobby) +"bjQ" = (/obj/machinery/door/firedoor/glass,/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled/monotile,/area/tether/surfacebase/security/lobby) +"bjR" = (/obj/structure/sign/directions/evac,/turf/simulated/wall/r_wall,/area/tether/surfacebase/security/lobby) +"bjS" = (/obj/structure/grille,/obj/structure/railing,/turf/simulated/floor/tiled/techmaint,/area/tether/surfacebase/atrium_three) +"bjT" = (/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/techfloor/grid,/area/vacant/vacant_site2) +"bjU" = (/obj/structure/sign/directions/evac{tag = "icon-direction_evac (WEST)"; icon_state = "direction_evac"; dir = 8},/turf/simulated/wall,/area/tether/surfacebase/medical/lobby) +"bjV" = (/obj/structure/sign/directions/medical{tag = "icon-direction_med (EAST)"; icon_state = "direction_med"; dir = 4; pixel_y = 8},/obj/structure/sign/directions/science{tag = "icon-direction_sci (WEST)"; icon_state = "direction_sci"; dir = 8; pixel_y = 3},/obj/structure/sign/directions/security{tag = "icon-direction_sec (WEST)"; icon_state = "direction_sec"; dir = 8; pixel_y = -4},/obj/structure/sign/directions/engineering{tag = "icon-direction_eng (WEST)"; icon_state = "direction_eng"; dir = 8; pixel_y = -10},/turf/simulated/wall,/area/tether/surfacebase/medical/lobby) +"bjW" = (/obj/structure/grille,/obj/structure/window/reinforced{dir = 5; icon_state = "fwindow"},/obj/machinery/door/firedoor,/turf/simulated/floor/plating,/area/tether/surfacebase/medical/lobby) +"bjX" = (/obj/machinery/door/airlock/multi_tile/glass{name = "Emergency Treatment Centre lobby"},/obj/machinery/door/firedoor/glass,/turf/simulated/floor/tiled/monotile,/area/tether/surfacebase/medical/lobby) +"bjY" = (/obj/machinery/door/firedoor/glass,/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled/monotile,/area/tether/surfacebase/medical/lobby) +"bjZ" = (/obj/structure/sign/greencross,/turf/simulated/wall,/area/tether/surfacebase/medical/lobby) +"bka" = (/obj/structure/grille,/obj/structure/window/reinforced{dir = 5; icon_state = "fwindow"},/obj/machinery/door/firedoor,/obj/structure/window/reinforced{dir = 1},/turf/simulated/floor/plating,/area/tether/surfacebase/atrium_three) +"bkb" = (/turf/simulated/wall/r_wall,/area/crew_quarters/panic_shelter) +"bkc" = (/obj/machinery/vending/snack,/turf/simulated/floor/tiled,/area/tether/surfacebase/atrium_three) +"bkd" = (/obj/machinery/atmospherics/unary/vent_pump/on,/turf/simulated/floor/tiled,/area/tether/surfacebase/atrium_three) +"bke" = (/obj/machinery/light{dir = 1},/turf/simulated/floor/tiled,/area/tether/surfacebase/atrium_three) +"bkf" = (/obj/machinery/alarm{frequency = 1441; pixel_y = 22},/turf/simulated/floor/tiled,/area/tether/surfacebase/atrium_three) +"bkg" = (/obj/machinery/firealarm{dir = 2; layer = 3.3; pixel_x = 0; pixel_y = 26},/turf/simulated/floor/tiled,/area/tether/surfacebase/atrium_three) +"bkh" = (/obj/machinery/atm{pixel_y = 31},/turf/simulated/floor/tiled,/area/tether/surfacebase/atrium_three) +"bki" = (/obj/structure/cable{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/machinery/camera/network/northern_star,/turf/simulated/floor/tiled,/area/tether/surfacebase/atrium_three) +"bkj" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/tiled,/area/tether/surfacebase/atrium_three) +"bkk" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/disposalpipe/segment,/obj/structure/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/tiled,/area/tether/surfacebase/atrium_three) +"bkl" = (/obj/machinery/button/remote/blast_door{id = "PubPrepFront"; name = "Gateway Shutter"; pixel_y = 22; req_access = list(62)},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/tiled,/area/tether/surfacebase/atrium_three) +"bkm" = (/obj/machinery/atmospherics/unary/vent_pump/on,/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/tiled,/area/tether/surfacebase/atrium_three) +"bkn" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/turf/simulated/floor/tiled,/area/tether/surfacebase/atrium_three) +"bko" = (/obj/machinery/camera/network/northern_star,/turf/simulated/floor/tiled,/area/tether/surfacebase/atrium_three) +"bkp" = (/obj/structure/bed/chair,/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (NORTH)"; icon_state = "borderfloor"; dir = 1},/obj/effect/floor_decal/corner/red/border{tag = "icon-bordercolor (NORTH)"; icon_state = "bordercolor"; dir = 1},/obj/effect/floor_decal/borderfloor/corner2{tag = "icon-borderfloorcorner2 (EAST)"; icon_state = "borderfloorcorner2"; dir = 4},/obj/effect/floor_decal/corner/red/bordercorner2{tag = "icon-bordercolorcorner2 (EAST)"; icon_state = "bordercolorcorner2"; dir = 4},/turf/simulated/floor/tiled,/area/tether/surfacebase/atrium_three) +"bkq" = (/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (NORTH)"; icon_state = "borderfloor"; dir = 1},/obj/effect/floor_decal/corner/red/border{tag = "icon-bordercolor (NORTH)"; icon_state = "bordercolor"; dir = 1},/obj/structure/bed/chair,/turf/simulated/floor/tiled,/area/tether/surfacebase/atrium_three) +"bkr" = (/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (NORTH)"; icon_state = "borderfloor"; dir = 1},/obj/effect/floor_decal/corner/red/border{tag = "icon-bordercolor (NORTH)"; icon_state = "bordercolor"; dir = 1},/obj/effect/floor_decal/borderfloor/corner2{tag = "icon-borderfloorcorner2 (NORTH)"; icon_state = "borderfloorcorner2"; dir = 1},/obj/effect/floor_decal/corner/red/bordercorner2{tag = "icon-bordercolorcorner2 (NORTH)"; icon_state = "bordercolorcorner2"; dir = 1},/obj/structure/bed/chair,/turf/simulated/floor/tiled,/area/tether/surfacebase/atrium_three) +"bks" = (/obj/machinery/door/firedoor/glass/hidden/steel,/obj/machinery/camera/network/northern_star,/turf/simulated/floor/tiled,/area/tether/surfacebase/atrium_three) +"bkt" = (/obj/effect/floor_decal/corner/red{dir = 1},/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (NORTH)"; icon_state = "borderfloor"; dir = 1},/obj/effect/floor_decal/corner/red/border{tag = "icon-bordercolor (NORTH)"; icon_state = "bordercolor"; dir = 1},/obj/effect/floor_decal/borderfloor/corner2{tag = "icon-borderfloorcorner2 (EAST)"; icon_state = "borderfloorcorner2"; dir = 4},/obj/effect/floor_decal/corner/red/bordercorner2{tag = "icon-bordercolorcorner2 (EAST)"; icon_state = "bordercolorcorner2"; dir = 4},/obj/machinery/power/apc{dir = 1; name = "north bump"; pixel_x = 0; pixel_y = 24},/obj/structure/cable/green{icon_state = "0-4"},/turf/simulated/floor/tiled,/area/tether/surfacebase/atrium_three) +"bku" = (/obj/machinery/light{dir = 1},/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (NORTH)"; icon_state = "borderfloor"; dir = 1},/obj/effect/floor_decal/corner/red/border{tag = "icon-bordercolor (NORTH)"; icon_state = "bordercolor"; dir = 1},/obj/effect/floor_decal/borderfloor/corner2{tag = "icon-borderfloorcorner2 (NORTH)"; icon_state = "borderfloorcorner2"; dir = 1},/obj/effect/floor_decal/corner/red/bordercorner2{tag = "icon-bordercolorcorner2 (NORTH)"; icon_state = "bordercolorcorner2"; dir = 1},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/tiled,/area/tether/surfacebase/atrium_three) +"bkv" = (/obj/structure/cable/green{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/tiled,/area/tether/surfacebase/atrium_three) +"bkw" = (/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled,/area/tether/surfacebase/atrium_three) +"bkx" = (/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (NORTH)"; icon_state = "borderfloor"; dir = 1},/obj/effect/floor_decal/corner/red/border{tag = "icon-bordercolor (NORTH)"; icon_state = "bordercolor"; dir = 1},/obj/effect/floor_decal/borderfloor/corner2{tag = "icon-borderfloorcorner2 (EAST)"; icon_state = "borderfloorcorner2"; dir = 4},/obj/effect/floor_decal/corner/red/bordercorner2{tag = "icon-bordercolorcorner2 (EAST)"; icon_state = "bordercolorcorner2"; dir = 4},/obj/machinery/status_display{pixel_y = 30},/turf/simulated/floor/tiled,/area/tether/surfacebase/atrium_three) +"bky" = (/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (NORTH)"; icon_state = "borderfloor"; dir = 1},/obj/effect/floor_decal/corner/red/border{tag = "icon-bordercolor (NORTH)"; icon_state = "bordercolor"; dir = 1},/obj/effect/floor_decal/borderfloor/corner2{tag = "icon-borderfloorcorner2 (NORTH)"; icon_state = "borderfloorcorner2"; dir = 1},/obj/effect/floor_decal/corner/red/bordercorner2{tag = "icon-bordercolorcorner2 (NORTH)"; icon_state = "bordercolorcorner2"; dir = 1},/obj/effect/floor_decal/industrial/warning/corner{dir = 4},/turf/simulated/floor/tiled,/area/tether/surfacebase/atrium_three) +"bkz" = (/obj/effect/floor_decal/industrial/warning{dir = 1},/turf/simulated/floor/tiled,/area/tether/surfacebase/atrium_three) +"bkA" = (/obj/effect/floor_decal/industrial/warning/corner{icon_state = "warningcorner"; dir = 1},/obj/machinery/newscaster{pixel_x = 0; pixel_y = 30},/turf/simulated/floor/tiled,/area/tether/surfacebase/atrium_three) +"bkB" = (/obj/item/device/radio/intercom{dir = 1; name = "Station Intercom (General)"; pixel_y = 21},/turf/simulated/floor/tiled,/area/tether/surfacebase/atrium_three) +"bkC" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/tiled,/area/tether/surfacebase/atrium_three) +"bkD" = (/obj/machinery/atmospherics/unary/vent_pump/on,/obj/machinery/camera/network/northern_star,/turf/simulated/floor/tiled,/area/tether/surfacebase/atrium_three) +"bkE" = (/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (NORTH)"; icon_state = "borderfloor"; dir = 1},/obj/effect/floor_decal/corner/paleblue/border{tag = "icon-bordercolor (NORTH)"; icon_state = "bordercolor"; dir = 1},/obj/effect/floor_decal/borderfloor/corner2{tag = "icon-borderfloorcorner2 (EAST)"; icon_state = "borderfloorcorner2"; dir = 4},/obj/effect/floor_decal/corner/paleblue/bordercorner2{tag = "icon-bordercolorcorner2 (EAST)"; icon_state = "bordercolorcorner2"; dir = 4},/turf/simulated/floor/tiled,/area/tether/surfacebase/atrium_three) +"bkF" = (/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (NORTH)"; icon_state = "borderfloor"; dir = 1},/obj/effect/floor_decal/corner/paleblue/border{tag = "icon-bordercolor (NORTH)"; icon_state = "bordercolor"; dir = 1},/obj/effect/floor_decal/borderfloor/corner2{tag = "icon-borderfloorcorner2 (NORTH)"; icon_state = "borderfloorcorner2"; dir = 1},/obj/effect/floor_decal/corner/paleblue/bordercorner2{tag = "icon-bordercolorcorner2 (NORTH)"; icon_state = "bordercolorcorner2"; dir = 1},/turf/simulated/floor/tiled,/area/tether/surfacebase/atrium_three) +"bkG" = (/obj/machinery/light{dir = 1},/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (NORTH)"; icon_state = "borderfloor"; dir = 1},/obj/effect/floor_decal/corner/paleblue/border{tag = "icon-bordercolor (NORTH)"; icon_state = "bordercolor"; dir = 1},/obj/effect/floor_decal/borderfloor/corner2{tag = "icon-borderfloorcorner2 (NORTH)"; icon_state = "borderfloorcorner2"; dir = 1},/obj/effect/floor_decal/corner/paleblue/bordercorner2{tag = "icon-bordercolorcorner2 (NORTH)"; icon_state = "bordercolorcorner2"; dir = 1},/turf/simulated/floor/tiled,/area/tether/surfacebase/atrium_three) +"bkH" = (/obj/structure/bed,/obj/effect/floor_decal/techfloor{tag = "icon-techfloor_edges (NORTHWEST)"; icon_state = "techfloor_edges"; dir = 9},/obj/machinery/firealarm{dir = 8; pixel_x = -24},/obj/machinery/status_display{pixel_y = 30},/turf/simulated/floor/tiled/techfloor,/area/crew_quarters/panic_shelter) +"bkI" = (/obj/effect/floor_decal/techfloor{tag = "icon-techfloor_edges (NORTH)"; icon_state = "techfloor_edges"; dir = 1},/obj/machinery/alarm{frequency = 1441; pixel_y = 22},/turf/simulated/floor/tiled/techfloor,/area/crew_quarters/panic_shelter) +"bkJ" = (/obj/machinery/light/small{dir = 1},/obj/effect/floor_decal/techfloor{tag = "icon-techfloor_edges (NORTH)"; icon_state = "techfloor_edges"; dir = 1},/turf/simulated/floor/tiled/techfloor,/area/crew_quarters/panic_shelter) +"bkK" = (/obj/structure/sign/nosmoking_2{pixel_y = 29},/obj/effect/floor_decal/techfloor{tag = "icon-techfloor_edges (NORTH)"; icon_state = "techfloor_edges"; dir = 1},/turf/simulated/floor/tiled/techfloor,/area/crew_quarters/panic_shelter) +"bkL" = (/obj/machinery/portable_atmospherics/powered/pump/filled,/obj/effect/floor_decal/techfloor{tag = "icon-techfloor_edges (NORTH)"; icon_state = "techfloor_edges"; dir = 1},/obj/item/device/radio/intercom{dir = 1; name = "Station Intercom (General)"; pixel_y = 21},/turf/simulated/floor/tiled/techfloor,/area/crew_quarters/panic_shelter) +"bkM" = (/obj/machinery/portable_atmospherics/powered/pump/filled,/obj/effect/floor_decal/techfloor{tag = "icon-techfloor_edges (NORTH)"; icon_state = "techfloor_edges"; dir = 1},/obj/machinery/newscaster{pixel_x = 0; pixel_y = 30},/turf/simulated/floor/tiled/techfloor,/area/crew_quarters/panic_shelter) +"bkN" = (/obj/effect/floor_decal/industrial/warning{icon_state = "warning"; dir = 4},/obj/machinery/portable_atmospherics/powered/pump/filled,/obj/effect/floor_decal/techfloor{tag = "icon-techfloor_edges (NORTH)"; icon_state = "techfloor_edges"; dir = 1},/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/tiled/techfloor,/area/crew_quarters/panic_shelter) +"bkO" = (/obj/machinery/portable_atmospherics/powered/scrubber/huge/stationary,/obj/effect/floor_decal/techfloor{tag = "icon-techfloor_edges (NORTHEAST)"; icon_state = "techfloor_edges"; dir = 5},/turf/simulated/floor/tiled/techfloor,/area/crew_quarters/panic_shelter) +"bkP" = (/obj/machinery/alarm{dir = 4; icon_state = "alarm0"; pixel_x = -22; pixel_y = 0},/obj/structure/flora/pottedplant{tag = "icon-plant-21"; icon_state = "plant-21"},/turf/simulated/floor/tiled,/area/tether/surfacebase/atrium_three) +"bkQ" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 6},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 5},/turf/simulated/floor/tiled,/area/tether/surfacebase/atrium_three) +"bkR" = (/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/atrium_three) +"bkS" = (/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 1},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 1},/turf/simulated/floor/tiled,/area/tether/surfacebase/atrium_three) +"bkT" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0},/turf/simulated/floor/tiled,/area/tether/surfacebase/atrium_three) +"bkU" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/disposalpipe/segment{dir = 4; icon_state = "pipe-c"},/turf/simulated/floor/tiled,/area/tether/surfacebase/atrium_three) +"bkV" = (/obj/machinery/atmospherics/pipe/manifold/hidden/supply,/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,/obj/structure/disposalpipe/segment{dir = 8; icon_state = "pipe-c"},/turf/simulated/floor/tiled,/area/tether/surfacebase/atrium_three) +"bkW" = (/obj/machinery/atmospherics/pipe/manifold/hidden/supply,/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 1},/turf/simulated/floor/tiled,/area/tether/surfacebase/atrium_three) +"bkX" = (/obj/machinery/atmospherics/pipe/manifold/hidden/supply,/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,/turf/simulated/floor/tiled,/area/tether/surfacebase/atrium_three) +"bkY" = (/obj/machinery/door/firedoor/glass/hidden/steel,/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/atrium_three) +"bkZ" = (/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/atrium_three) +"bla" = (/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,/obj/machinery/atmospherics/pipe/manifold/hidden/supply,/turf/simulated/floor/tiled,/area/tether/surfacebase/atrium_three) +"blb" = (/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 1},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 1},/obj/structure/disposalpipe/junction{icon_state = "pipe-j2"; dir = 2},/turf/simulated/floor/tiled,/area/tether/surfacebase/atrium_three) +"blc" = (/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/atrium_three) +"bld" = (/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,/obj/machinery/atmospherics/pipe/manifold/hidden/supply,/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled,/area/tether/surfacebase/atrium_three) +"ble" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 9},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 10},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled,/area/tether/surfacebase/atrium_three) +"blf" = (/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled,/area/tether/surfacebase/atrium_three) +"blg" = (/obj/structure/disposalpipe/junction{dir = 8},/turf/simulated/floor/tiled,/area/tether/surfacebase/atrium_three) +"blh" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 6},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 6},/obj/structure/disposalpipe/junction{dir = 8; icon_state = "pipe-j2"},/turf/simulated/floor/tiled,/area/tether/surfacebase/atrium_three) +"bli" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled,/area/tether/surfacebase/atrium_three) +"blj" = (/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},/obj/structure/disposalpipe/segment{dir = 8; icon_state = "pipe-c"},/turf/simulated/floor/tiled,/area/tether/surfacebase/atrium_three) +"blk" = (/obj/machinery/status_display{pixel_x = 32; pixel_y = 0},/obj/machinery/light{icon_state = "tube1"; dir = 4},/turf/simulated/floor/tiled,/area/tether/surfacebase/atrium_three) +"bll" = (/obj/structure/bed,/obj/effect/floor_decal/techfloor{tag = "icon-techfloor_edges (WEST)"; icon_state = "techfloor_edges"; dir = 8},/turf/simulated/floor/tiled/techfloor,/area/crew_quarters/panic_shelter) +"blm" = (/turf/simulated/floor/tiled/techfloor,/area/crew_quarters/panic_shelter) +"bln" = (/obj/machinery/atmospherics/unary/vent_pump/positive,/turf/simulated/floor/tiled/techfloor,/area/crew_quarters/panic_shelter) +"blo" = (/obj/effect/floor_decal/industrial/warning/corner{dir = 4},/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/tiled/techfloor,/area/crew_quarters/panic_shelter) +"blp" = (/obj/effect/floor_decal/industrial/warning{dir = 1},/obj/structure/extinguisher_cabinet{pixel_x = 27},/obj/effect/floor_decal/techfloor{tag = "icon-techfloor_edges (EAST)"; icon_state = "techfloor_edges"; dir = 4},/turf/simulated/floor/tiled/techfloor,/area/crew_quarters/panic_shelter) +"blq" = (/obj/machinery/camera/network/northern_star{tag = "icon-camera (EAST)"; icon_state = "camera"; dir = 4},/turf/simulated/floor/outdoors/grass/sif/virgo3b,/area/tether/surfacebase/outside/outside3) +"blr" = (/obj/machinery/vending/cola,/turf/simulated/floor/tiled,/area/tether/surfacebase/atrium_three) +"bls" = (/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 1},/turf/simulated/floor/tiled,/area/tether/surfacebase/atrium_three) +"blt" = (/obj/machinery/camera/network/civilian{tag = "icon-camera (NORTH)"; icon_state = "camera"; dir = 1},/turf/simulated/floor/tiled,/area/tether/surfacebase/atrium_three) +"blu" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/tiled,/area/tether/surfacebase/atrium_three) +"blv" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0},/turf/simulated/floor/tiled,/area/tether/surfacebase/atrium_three) +"blw" = (/obj/machinery/light,/turf/simulated/floor/tiled,/area/tether/surfacebase/atrium_three) +"blx" = (/obj/machinery/door/firedoor/glass/hidden/steel,/turf/simulated/floor/tiled,/area/tether/surfacebase/atrium_three) +"bly" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled,/area/tether/surfacebase/atrium_three) +"blz" = (/obj/effect/floor_decal/corner_steel_grid,/turf/simulated/floor/tiled,/area/tether/surfacebase/atrium_three) +"blA" = (/obj/effect/floor_decal/steeldecal/steel_decals7,/obj/effect/floor_decal/steeldecal/steel_decals7{tag = "icon-steel_decals7 (EAST)"; icon_state = "steel_decals7"; dir = 4},/turf/simulated/floor/tiled,/area/tether/surfacebase/atrium_three) +"blB" = (/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals7,/obj/effect/floor_decal/steeldecal/steel_decals7{tag = "icon-steel_decals7 (EAST)"; icon_state = "steel_decals7"; dir = 4},/turf/simulated/floor/tiled,/area/tether/surfacebase/atrium_three) +"blC" = (/obj/effect/floor_decal/corner_steel_grid{tag = "icon-steel_grid (WEST)"; icon_state = "steel_grid"; dir = 8},/turf/simulated/floor/tiled,/area/tether/surfacebase/atrium_three) +"blD" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/tiled,/area/tether/surfacebase/atrium_three) +"blE" = (/obj/structure/cable/green{d1 = 2; d2 = 4; icon_state = "2-4"},/turf/simulated/floor/tiled,/area/tether/surfacebase/atrium_three) +"blF" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/tiled,/area/tether/surfacebase/atrium_three) +"blG" = (/obj/structure/cable/green{d1 = 1; d2 = 8; icon_state = "1-8"},/turf/simulated/floor/tiled,/area/tether/surfacebase/atrium_three) +"blH" = (/obj/machinery/camera/network/northern_star{tag = "icon-camera (NORTHWEST)"; icon_state = "camera"; dir = 9},/turf/simulated/floor/tiled,/area/tether/surfacebase/atrium_three) +"blI" = (/obj/structure/closet,/obj/item/clothing/mask/gas,/obj/item/clothing/mask/gas,/obj/item/clothing/mask/gas,/obj/item/clothing/mask/gas,/obj/effect/floor_decal/techfloor{tag = "icon-techfloor_edges (WEST)"; icon_state = "techfloor_edges"; dir = 8},/turf/simulated/floor/tiled/techfloor,/area/crew_quarters/panic_shelter) +"blJ" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 5},/turf/simulated/floor/tiled/techfloor,/area/crew_quarters/panic_shelter) +"blK" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled/techfloor,/area/crew_quarters/panic_shelter) +"blL" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 10},/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/tiled/techfloor,/area/crew_quarters/panic_shelter) +"blM" = (/obj/effect/floor_decal/techfloor{tag = "icon-techfloor_edges (EAST)"; icon_state = "techfloor_edges"; dir = 4},/obj/effect/floor_decal/techfloor/hole{tag = "icon-techfloor_hole_left (EAST)"; icon_state = "techfloor_hole_left"; dir = 4},/obj/effect/floor_decal/techfloor/hole/right{tag = "icon-techfloor_hole_right (EAST)"; icon_state = "techfloor_hole_right"; dir = 4},/obj/machinery/shower{dir = 8; icon_state = "shower"; pixel_x = -2; pixel_y = 0},/obj/effect/floor_decal/industrial/outline/blue,/turf/simulated/floor/tiled/techfloor,/area/crew_quarters/panic_shelter) +"blN" = (/turf/simulated/wall,/area/crew_quarters/pool) +"blO" = (/obj/structure/grille,/obj/structure/window/reinforced{dir = 5; icon_state = "fwindow"},/obj/machinery/door/firedoor,/turf/simulated/floor/plating,/area/crew_quarters/pool) +"blP" = (/obj/machinery/door/airlock/multi_tile/glass{name = "Pool"},/obj/machinery/door/firedoor,/turf/simulated/floor/tiled,/area/crew_quarters/pool) +"blQ" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/door/firedoor,/turf/simulated/floor/tiled,/area/crew_quarters/pool) +"blR" = (/obj/structure/grille,/obj/structure/window/reinforced{dir = 5; icon_state = "fwindow"},/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0},/obj/machinery/door/firedoor,/turf/simulated/floor/plating,/area/crew_quarters/pool) +"blS" = (/obj/structure/disposalpipe/segment,/obj/structure/grille,/obj/structure/window/reinforced{dir = 5; icon_state = "fwindow"},/obj/machinery/door/firedoor,/turf/simulated/floor/plating,/area/crew_quarters/pool) +"blT" = (/turf/simulated/wall,/area/crew_quarters/recreation_area) +"blU" = (/obj/structure/grille,/obj/structure/window/reinforced{dir = 5; icon_state = "fwindow"},/obj/machinery/door/firedoor,/turf/simulated/floor/plating,/area/crew_quarters/recreation_area) +"blV" = (/obj/structure/bed/chair{dir = 1},/turf/simulated/floor/tiled,/area/tether/surfacebase/atrium_three) +"blW" = (/turf/simulated/wall,/area/tether/surfacebase/north_stairs_three) +"blX" = (/obj/structure/sign/directions/engineering{dir = 10; icon_state = "direction_eng"; pixel_y = -10; tag = "icon-direction_eng (WEST)"},/turf/simulated/wall,/area/tether/surfacebase/north_stairs_three) +"blY" = (/obj/structure/sign/directions/medical{tag = "icon-direction_med (EAST)"; icon_state = "direction_med"; dir = 4; pixel_y = 8},/obj/structure/sign/directions/science{dir = 2; icon_state = "direction_sci"; pixel_y = 3; tag = "icon-direction_sci (WEST)"},/obj/structure/sign/directions/security{dir = 1; icon_state = "direction_sec"; pixel_y = -4; tag = "icon-direction_sec (WEST)"},/turf/simulated/wall,/area/tether/surfacebase/north_stairs_three) +"blZ" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled,/area/tether/surfacebase/atrium_three) +"bma" = (/obj/effect/floor_decal/steeldecal/steel_decals7{tag = "icon-steel_decals7 (NORTHEAST)"; icon_state = "steel_decals7"; dir = 5},/obj/effect/floor_decal/steeldecal/steel_decals7{tag = "icon-steel_decals7 (SOUTHEAST)"; icon_state = "steel_decals7"; dir = 6},/turf/simulated/floor/tiled,/area/tether/surfacebase/atrium_three) +"bmb" = (/obj/structure/railing{dir = 8},/obj/structure/railing{dir = 1},/turf/simulated/open,/area/tether/surfacebase/atrium_three) +"bmc" = (/obj/structure/railing{dir = 1},/turf/simulated/open,/area/tether/surfacebase/atrium_three) +"bmd" = (/obj/structure/railing{dir = 4},/obj/structure/railing{dir = 1},/turf/simulated/open,/area/tether/surfacebase/atrium_three) +"bme" = (/obj/effect/floor_decal/steeldecal/steel_decals7{tag = "icon-steel_decals7 (SOUTHWEST)"; icon_state = "steel_decals7"; dir = 10},/obj/effect/floor_decal/steeldecal/steel_decals7{tag = "icon-steel_decals7 (NORTHWEST)"; icon_state = "steel_decals7"; dir = 9},/turf/simulated/floor/tiled,/area/tether/surfacebase/atrium_three) +"bmf" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/tiled,/area/tether/surfacebase/atrium_three) +"bmg" = (/obj/machinery/washing_machine,/obj/effect/floor_decal/techfloor{tag = "icon-techfloor_edges (WEST)"; icon_state = "techfloor_edges"; dir = 8},/turf/simulated/floor/tiled/techfloor,/area/crew_quarters/panic_shelter) +"bmh" = (/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 4},/turf/simulated/floor/tiled/techfloor,/area/crew_quarters/panic_shelter) +"bmi" = (/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) +"bmj" = (/obj/structure/extinguisher_cabinet{pixel_x = 27},/obj/effect/floor_decal/techfloor{tag = "icon-techfloor_edges (EAST)"; icon_state = "techfloor_edges"; dir = 4},/turf/simulated/floor/tiled/techfloor,/area/crew_quarters/panic_shelter) +"bmk" = (/obj/structure/grille,/obj/structure/window/reinforced{dir = 5; icon_state = "fwindow"},/obj/machinery/door/firedoor,/obj/structure/window/reinforced{dir = 8},/turf/simulated/floor/plating,/area/crew_quarters/pool) +"bml" = (/obj/structure/closet/secure_closet/personal,/obj/effect/floor_decal/spline/plain{dir = 9},/obj/machinery/atmospherics/unary/vent_scrubber/on,/turf/simulated/floor/tiled/kafel_full,/area/crew_quarters/pool) +"bmm" = (/obj/structure/closet/secure_closet/personal,/obj/effect/floor_decal/spline/plain{dir = 1},/obj/machinery/status_display{pixel_y = 30},/turf/simulated/floor/tiled/kafel_full,/area/crew_quarters/pool) +"bmn" = (/obj/structure/closet/secure_closet/personal,/obj/effect/floor_decal/spline/plain{dir = 1},/obj/machinery/atmospherics/unary/vent_pump/on,/obj/machinery/camera/network/civilian,/turf/simulated/floor/tiled/kafel_full,/area/crew_quarters/pool) +"bmo" = (/obj/effect/floor_decal/spline/plain{dir = 1},/obj/structure/closet{icon_closed = "cabinet_closed"; icon_opened = "cabinet_open"; icon_state = "cabinet_closed"; name = "Clothing Storage"},/turf/simulated/floor/tiled/kafel_full,/area/crew_quarters/pool) +"bmp" = (/obj/effect/floor_decal/spline/plain{dir = 1},/obj/machinery/firealarm{dir = 2; layer = 3.3; pixel_x = 0; pixel_y = 26},/turf/simulated/floor/tiled/kafel_full,/area/crew_quarters/pool) +"bmq" = (/obj/effect/floor_decal/spline/plain{dir = 1},/obj/machinery/light{dir = 1},/turf/simulated/floor/tiled/kafel_full,/area/crew_quarters/pool) +"bmr" = (/obj/effect/floor_decal/spline/plain{dir = 1},/obj/machinery/power/apc{dir = 1; name = "north bump"; pixel_x = 0; pixel_y = 24},/obj/structure/cable{tag = "icon-0-2"; icon_state = "0-2"},/turf/simulated/floor/tiled/kafel_full,/area/crew_quarters/pool) +"bms" = (/obj/effect/floor_decal/spline/plain{dir = 1},/turf/simulated/floor/tiled/kafel_full,/area/crew_quarters/pool) +"bmt" = (/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/kafel_full,/area/crew_quarters/pool) +"bmu" = (/obj/effect/floor_decal/spline/plain{dir = 1},/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0},/turf/simulated/floor/tiled/kafel_full,/area/crew_quarters/pool) +"bmv" = (/obj/effect/floor_decal/spline/plain{dir = 5},/obj/structure/disposalpipe/segment,/obj/structure/flora/pottedplant{tag = "icon-plant-10"; icon_state = "plant-10"},/turf/simulated/floor/tiled/kafel_full,/area/crew_quarters/pool) +"bmw" = (/obj/machinery/vending/fitness,/turf/simulated/floor/tiled,/area/crew_quarters/pool) +"bmx" = (/obj/structure/closet/athletic_mixed,/turf/simulated/floor/holofloor/wood,/area/crew_quarters/recreation_area) +"bmy" = (/obj/machinery/punching_clown,/turf/simulated/floor/holofloor/wood,/area/crew_quarters/recreation_area) +"bmz" = (/obj/machinery/camera/network/civilian,/turf/simulated/floor/holofloor/wood,/area/crew_quarters/recreation_area) +"bmA" = (/obj/machinery/workout,/turf/simulated/floor/holofloor/wood,/area/crew_quarters/recreation_area) +"bmB" = (/obj/structure/closet/athletic_mixed,/obj/structure/extinguisher_cabinet{pixel_x = 27},/turf/simulated/floor/holofloor/wood,/area/crew_quarters/recreation_area) +"bmC" = (/obj/structure/grille,/obj/structure/window/reinforced{dir = 5; icon_state = "fwindow"},/obj/machinery/door/firedoor,/obj/structure/window/reinforced,/turf/simulated/floor/plating,/area/tether/surfacebase/atrium_three) +"bmD" = (/obj/machinery/light_switch{pixel_y = 25},/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 4},/obj/structure/extinguisher_cabinet{dir = 4; icon_state = "extinguisher_closed"; pixel_x = -30; tag = "icon-extinguisher_closed (EAST)"},/turf/simulated/floor/tiled,/area/tether/surfacebase/north_stairs_three) +"bmE" = (/obj/machinery/alarm{frequency = 1441; pixel_y = 22},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 10},/turf/simulated/floor/tiled,/area/tether/surfacebase/north_stairs_three) +"bmF" = (/obj/machinery/firealarm{dir = 2; layer = 3.3; pixel_x = 0; pixel_y = 26},/turf/simulated/floor/tiled,/area/tether/surfacebase/north_stairs_three) +"bmG" = (/obj/item/device/radio/intercom{dir = 1; name = "Station Intercom (General)"; pixel_y = 21},/obj/machinery/atmospherics/unary/vent_pump/on,/turf/simulated/floor/tiled,/area/tether/surfacebase/north_stairs_three) +"bmH" = (/turf/simulated/floor/tiled,/area/tether/surfacebase/north_stairs_three) +"bmI" = (/obj/effect/floor_decal/spline/plain{dir = 4},/obj/machinery/door/firedoor/glass,/turf/simulated/floor/tiled/monotile,/area/tether/surfacebase/north_stairs_three) +"bmJ" = (/obj/structure/railing{dir = 8},/turf/simulated/open,/area/tether/surfacebase/atrium_three) +"bmK" = (/turf/simulated/open,/area/tether/surfacebase/atrium_three) +"bmL" = (/obj/structure/railing{dir = 4},/turf/simulated/open,/area/tether/surfacebase/atrium_three) +"bmM" = (/obj/machinery/vending/cigarette,/turf/simulated/floor/tiled,/area/tether/surfacebase/atrium_three) +"bmN" = (/obj/machinery/vending/coffee,/turf/simulated/floor/tiled,/area/tether/surfacebase/atrium_three) +"bmO" = (/obj/machinery/washing_machine,/obj/effect/floor_decal/techfloor{tag = "icon-techfloor_edges (SOUTHWEST)"; icon_state = "techfloor_edges"; dir = 10},/turf/simulated/floor/tiled/techfloor,/area/crew_quarters/panic_shelter) +"bmP" = (/obj/structure/ladder,/obj/effect/floor_decal/industrial/outline/blue,/turf/simulated/floor/tiled/techfloor,/area/crew_quarters/panic_shelter) +"bmQ" = (/obj/machinery/light/small,/obj/effect/floor_decal/techfloor,/turf/simulated/floor/tiled/techfloor,/area/crew_quarters/panic_shelter) +"bmR" = (/obj/machinery/space_heater,/obj/effect/floor_decal/techfloor,/obj/machinery/camera/network/civilian{tag = "icon-camera (NORTH)"; icon_state = "camera"; dir = 1},/turf/simulated/floor/tiled/techfloor,/area/crew_quarters/panic_shelter) +"bmS" = (/obj/machinery/space_heater,/obj/effect/floor_decal/techfloor,/obj/machinery/firealarm{dir = 1; pixel_x = 0; pixel_y = -25},/turf/simulated/floor/tiled/techfloor,/area/crew_quarters/panic_shelter) +"bmT" = (/obj/machinery/space_heater,/obj/effect/floor_decal/techfloor,/obj/effect/floor_decal/techfloor/hole/right,/turf/simulated/floor/tiled/techfloor,/area/crew_quarters/panic_shelter) +"bmU" = (/obj/effect/floor_decal/techfloor/corner,/obj/effect/floor_decal/techfloor/corner{tag = "icon-techfloor_corners (WEST)"; icon_state = "techfloor_corners"; dir = 8},/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/crew_quarters/panic_shelter) +"bmV" = (/obj/effect/floor_decal/techfloor{tag = "icon-techfloor_edges (SOUTHEAST)"; icon_state = "techfloor_edges"; dir = 6},/obj/effect/floor_decal/techfloor/hole,/obj/machinery/light_switch{pixel_x = 25},/turf/simulated/floor/tiled/techfloor,/area/crew_quarters/panic_shelter) +"bmW" = (/obj/effect/floor_decal/spline/plain{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 5},/turf/simulated/floor/tiled/kafel_full,/area/crew_quarters/pool) +"bmX" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/turf/simulated/floor/tiled/kafel_full,/area/crew_quarters/pool) +"bmY" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 5},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/turf/simulated/floor/tiled/kafel_full,/area/crew_quarters/pool) +"bmZ" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/turf/simulated/floor/tiled/kafel_full,/area/crew_quarters/pool) +"bna" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/turf/simulated/floor/tiled/kafel_full,/area/crew_quarters/pool) +"bnb" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/tiled/kafel_full,/area/crew_quarters/pool) +"bnc" = (/obj/machinery/atmospherics/pipe/manifold/hidden/supply,/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/tiled/kafel_full,/area/crew_quarters/pool) +"bnd" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 10},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 10},/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0},/obj/structure/cable{d1 = 2; d2 = 8; icon_state = "2-8"},/turf/simulated/floor/tiled/kafel_full,/area/crew_quarters/pool) +"bne" = (/obj/effect/floor_decal/spline/plain{dir = 4},/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled/kafel_full,/area/crew_quarters/pool) +"bnf" = (/turf/simulated/floor/tiled,/area/crew_quarters/pool) +"bng" = (/turf/simulated/floor/holofloor/wood,/area/crew_quarters/recreation_area) +"bnh" = (/obj/machinery/light_switch{pixel_x = 25},/turf/simulated/floor/holofloor/wood,/area/crew_quarters/recreation_area) +"bni" = (/obj/structure/grille,/obj/structure/window/reinforced{dir = 5; icon_state = "fwindow"},/obj/machinery/door/firedoor,/obj/structure/window/reinforced{dir = 8},/turf/simulated/floor/plating,/area/tether/surfacebase/north_stairs_three) +"bnj" = (/obj/structure/cable{icon_state = "0-4"},/obj/machinery/power/apc{dir = 2; name = "south bump"; pixel_y = -28},/turf/simulated/floor/tiled,/area/tether/surfacebase/north_stairs_three) +"bnk" = (/obj/structure/cable{tag = "icon-4-8"; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 5},/turf/simulated/floor/tiled,/area/tether/surfacebase/north_stairs_three) +"bnl" = (/obj/machinery/light/small,/obj/effect/floor_decal/industrial/warning/corner,/obj/structure/cable{tag = "icon-4-8"; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/turf/simulated/floor/tiled,/area/tether/surfacebase/north_stairs_three) +"bnm" = (/obj/effect/floor_decal/industrial/warning,/obj/structure/cable{tag = "icon-4-8"; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 5},/turf/simulated/floor/tiled,/area/tether/surfacebase/north_stairs_three) +"bnn" = (/obj/effect/floor_decal/industrial/warning,/obj/structure/cable{tag = "icon-4-8"; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled,/area/tether/surfacebase/north_stairs_three) +"bno" = (/obj/effect/floor_decal/spline/plain{dir = 4},/obj/machinery/door/firedoor/glass,/obj/structure/cable{tag = "icon-4-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/door/airlock/multi_tile/glass{dir = 1},/turf/simulated/floor/tiled/monotile,/area/tether/surfacebase/north_stairs_three) +"bnp" = (/obj/structure/cable{tag = "icon-4-8"; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled,/area/tether/surfacebase/atrium_three) +"bnq" = (/obj/structure/cable{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 4},/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled,/area/tether/surfacebase/atrium_three) +"bnr" = (/obj/machinery/light{dir = 4; icon_state = "tube1"; pixel_x = 0},/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/alarm{dir = 8; icon_state = "alarm0"; pixel_x = 24},/obj/machinery/atmospherics/unary/vent_scrubber/on,/turf/simulated/floor/tiled,/area/tether/surfacebase/atrium_three) +"bns" = (/obj/effect/wingrille_spawn/reinforced_phoron,/obj/machinery/door/firedoor/glass,/turf/simulated/floor/plating,/area/crew_quarters/panic_shelter) +"bnt" = (/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/hatch{name = "Fire/Phoron Shelter Secure Hatch"},/turf/simulated/floor/tiled/techfloor/grid,/area/crew_quarters/panic_shelter) +"bnu" = (/obj/effect/floor_decal/spline/plain{dir = 8},/turf/simulated/floor/tiled/kafel_full,/area/crew_quarters/pool) +"bnv" = (/turf/simulated/floor/tiled/kafel_full,/area/crew_quarters/pool) +"bnw" = (/obj/effect/floor_decal/spline/plain{dir = 9},/turf/simulated/floor/water/deep/pool,/area/crew_quarters/pool) +"bnx" = (/obj/effect/floor_decal/spline/plain{dir = 1},/turf/simulated/floor/water/deep/pool,/area/crew_quarters/pool) +"bny" = (/obj/effect/floor_decal/spline/plain{dir = 1},/turf/simulated/floor/water/pool,/area/crew_quarters/pool) +"bnz" = (/obj/effect/floor_decal/spline/plain{dir = 5},/turf/simulated/floor/water/pool,/area/crew_quarters/pool) +"bnA" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 5},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 5},/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0},/turf/simulated/floor/tiled/kafel_full,/area/crew_quarters/pool) +"bnB" = (/obj/effect/floor_decal/spline/plain{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled/kafel_full,/area/crew_quarters/pool) +"bnC" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/turf/simulated/floor/tiled,/area/crew_quarters/pool) +"bnD" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/camera/network/civilian{tag = "icon-camera (NORTHWEST)"; icon_state = "camera"; dir = 9},/turf/simulated/floor/tiled,/area/crew_quarters/pool) +"bnE" = (/obj/structure/grille,/obj/structure/window/reinforced{dir = 5; icon_state = "fwindow"},/obj/machinery/door/firedoor,/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/turf/simulated/floor/plating,/area/crew_quarters/recreation_area) +"bnF" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/turf/simulated/floor/holofloor/wood,/area/crew_quarters/recreation_area) +"bnG" = (/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 1},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 1},/turf/simulated/floor/holofloor/wood,/area/crew_quarters/recreation_area) +"bnH" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 10},/turf/simulated/floor/holofloor/wood,/area/crew_quarters/recreation_area) +"bnI" = (/obj/structure/table/woodentable,/obj/item/clothing/glasses/threedglasses,/obj/machinery/atmospherics/unary/vent_pump/on{dir = 8},/turf/simulated/floor/holofloor/wood,/area/crew_quarters/recreation_area) +"bnJ" = (/obj/structure/grille,/obj/structure/window/reinforced{dir = 5; icon_state = "fwindow"},/obj/machinery/door/firedoor,/obj/structure/window/reinforced{dir = 4},/turf/simulated/floor/plating,/area/crew_quarters/recreation_area) +"bnK" = (/obj/machinery/door/firedoor/glass,/obj/machinery/door/airlock{name = "Secondary Janitorial Closet"; req_access = list(26)},/turf/simulated/floor/tiled,/area/tether/surfacebase/north_stairs_three) +"bnL" = (/obj/machinery/camera/network/northern_star{tag = "icon-camera (EAST)"; icon_state = "camera"; dir = 4},/turf/simulated/floor/tiled,/area/tether/surfacebase/north_stairs_three) +"bnM" = (/obj/structure/sign/directions/evac{tag = "icon-direction_evac (WEST)"; icon_state = "direction_evac"; dir = 8},/turf/simulated/wall,/area/tether/surfacebase/north_stairs_three) +"bnN" = (/obj/machinery/camera/network/northern_star{tag = "icon-camera (EAST)"; icon_state = "camera"; dir = 4},/turf/simulated/floor/tiled,/area/tether/surfacebase/atrium_three) +"bnO" = (/obj/structure/cable{tag = "icon-1-2"; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled,/area/tether/surfacebase/atrium_three) +"bnP" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 5},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 5},/turf/simulated/floor/tiled,/area/tether/surfacebase/atrium_three) +"bnQ" = (/obj/structure/cable/green{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 1},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,/turf/simulated/floor/tiled,/area/tether/surfacebase/atrium_three) +"bnR" = (/obj/machinery/door/airlock/maintenance/int{name = "Fire/Phoron Shelter"},/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/crew_quarters/panic_shelter) +"bnS" = (/obj/structure/extinguisher_cabinet{pixel_y = 27},/obj/effect/floor_decal/techfloor{tag = "icon-techfloor_edges (NORTH)"; icon_state = "techfloor_edges"; dir = 1},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 10},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 10},/turf/simulated/floor/tiled/techfloor,/area/crew_quarters/panic_shelter) +"bnT" = (/obj/effect/floor_decal/techfloor{tag = "icon-techfloor_edges (NORTH)"; icon_state = "techfloor_edges"; dir = 1},/obj/effect/floor_decal/techfloor/hole/right{tag = "icon-techfloor_hole_right (NORTH)"; icon_state = "techfloor_hole_right"; dir = 1},/obj/machinery/alarm{frequency = 1441; pixel_y = 22},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/tiled/techfloor,/area/crew_quarters/panic_shelter) +"bnU" = (/obj/structure/sign/nosmoking_2{pixel_x = 29},/obj/structure/extinguisher_cabinet{pixel_y = 27},/obj/effect/floor_decal/techfloor{tag = "icon-techfloor_edges (NORTH)"; icon_state = "techfloor_edges"; dir = 1},/obj/structure/cable/green{d1 = 2; d2 = 8; icon_state = "2-8"},/turf/simulated/floor/tiled/techfloor,/area/crew_quarters/panic_shelter) +"bnV" = (/obj/machinery/light/small{dir = 1},/obj/effect/floor_decal/techfloor{tag = "icon-techfloor_edges (NORTH)"; icon_state = "techfloor_edges"; dir = 1},/obj/structure/closet/firecloset,/turf/simulated/floor/tiled/techfloor,/area/crew_quarters/panic_shelter) +"bnW" = (/obj/effect/floor_decal/techfloor{tag = "icon-techfloor_edges (NORTH)"; icon_state = "techfloor_edges"; dir = 1},/obj/structure/closet/firecloset,/obj/machinery/atmospherics/unary/vent_scrubber/on,/turf/simulated/floor/tiled/techfloor,/area/crew_quarters/panic_shelter) +"bnX" = (/obj/effect/floor_decal/techfloor{tag = "icon-techfloor_edges (NORTH)"; icon_state = "techfloor_edges"; dir = 1},/obj/structure/closet/firecloset,/obj/machinery/atmospherics/unary/vent_pump/on,/turf/simulated/floor/tiled/techfloor,/area/crew_quarters/panic_shelter) +"bnY" = (/obj/effect/floor_decal/techfloor{tag = "icon-techfloor_edges (NORTH)"; icon_state = "techfloor_edges"; dir = 1},/obj/structure/closet/firecloset,/obj/machinery/alarm{frequency = 1441; pixel_y = 22},/turf/simulated/floor/tiled/techfloor,/area/crew_quarters/panic_shelter) +"bnZ" = (/obj/machinery/computer/area_atmos{range = 8},/obj/effect/floor_decal/techfloor{tag = "icon-techfloor_edges (NORTH)"; icon_state = "techfloor_edges"; dir = 1},/turf/simulated/floor/tiled/techfloor,/area/crew_quarters/panic_shelter) +"boa" = (/obj/effect/floor_decal/techfloor/corner{tag = "icon-techfloor_corners (NORTH)"; icon_state = "techfloor_corners"; dir = 1},/obj/effect/floor_decal/techfloor/corner{tag = "icon-techfloor_corners (EAST)"; icon_state = "techfloor_corners"; dir = 4},/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/crew_quarters/panic_shelter) +"bob" = (/obj/effect/floor_decal/industrial/warning{icon_state = "warning"; dir = 4},/obj/effect/floor_decal/techfloor{tag = "icon-techfloor_edges (NORTH)"; icon_state = "techfloor_edges"; dir = 1},/turf/simulated/floor/tiled/techfloor,/area/crew_quarters/panic_shelter) +"boc" = (/obj/structure/bed/chair{dir = 4},/obj/effect/floor_decal/spline/plain{dir = 8},/obj/machinery/light{dir = 8; icon_state = "tube1"; pixel_y = 0},/turf/simulated/floor/tiled/kafel_full,/area/crew_quarters/pool) +"bod" = (/obj/effect/floor_decal/spline/plain{dir = 8},/turf/simulated/floor/water/deep/pool,/area/crew_quarters/pool) +"boe" = (/turf/simulated/floor/water/deep/pool,/area/crew_quarters/pool) +"bof" = (/turf/simulated/floor/water/pool,/area/crew_quarters/pool) +"bog" = (/obj/effect/floor_decal/spline/plain{dir = 4},/turf/simulated/floor/water/pool,/area/crew_quarters/pool) +"boh" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0},/turf/simulated/floor/tiled/kafel_full,/area/crew_quarters/pool) +"boi" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/glass{name = "Recreation Area"},/turf/simulated/floor/tiled,/area/crew_quarters/recreation_area) +"boj" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/holofloor/wood,/area/crew_quarters/recreation_area) +"bok" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 5},/turf/simulated/floor/holofloor/wood,/area/crew_quarters/recreation_area) +"bol" = (/obj/structure/table/woodentable,/obj/item/weapon/coin/silver,/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 8},/turf/simulated/floor/holofloor/wood,/area/crew_quarters/recreation_area) +"bom" = (/obj/structure/flora/tree/sif,/turf/simulated/floor/outdoors/grass/sif/virgo3b,/area/tether/surfacebase/outside/outside3) +"bon" = (/obj/structure/reagent_dispensers/watertank,/turf/simulated/floor/tiled,/area/tether/surfacebase/north_stairs_three) +"boo" = (/obj/structure/sign/directions/evac,/turf/simulated/wall,/area/tether/surfacebase/north_stairs_three) +"bop" = (/obj/machinery/computer/guestpass{dir = 4; pixel_x = -28; pixel_y = 0},/turf/simulated/floor/tiled,/area/tether/surfacebase/atrium_three) +"boq" = (/obj/structure/sign/fire{name = "\improper PHORON/FIRE SHELTER"; pixel_x = 33},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/tiled,/area/tether/surfacebase/atrium_three) +"bor" = (/obj/machinery/light/small{dir = 8; pixel_x = 0},/obj/effect/floor_decal/techfloor,/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 5},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 5},/turf/simulated/floor/tiled/techfloor,/area/crew_quarters/panic_shelter) +"bos" = (/obj/effect/floor_decal/techfloor,/obj/machinery/firealarm{dir = 1; pixel_x = 0; pixel_y = -25},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/turf/simulated/floor/tiled/techfloor,/area/crew_quarters/panic_shelter) +"bot" = (/obj/effect/floor_decal/techfloor,/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/scrubbers{dir = 1},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 1},/turf/simulated/floor/tiled/techfloor,/area/crew_quarters/panic_shelter) +"bou" = (/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"},/turf/simulated/floor/tiled/techfloor/grid,/area/crew_quarters/panic_shelter) +"bov" = (/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) +"bow" = (/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) +"box" = (/obj/effect/floor_decal/techfloor,/obj/effect/floor_decal/techfloor/hole/right,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/manifold/hidden/supply,/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/firealarm{dir = 1; pixel_x = 0; pixel_y = -25},/turf/simulated/floor/tiled/techfloor,/area/crew_quarters/panic_shelter) +"boy" = (/obj/effect/floor_decal/techfloor,/obj/machinery/shower{dir = 1},/obj/effect/floor_decal/techfloor/hole/right,/obj/effect/floor_decal/techfloor/hole,/obj/effect/floor_decal/industrial/outline/blue,/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) +"boz" = (/obj/machinery/door/airlock/hatch{name = "Fire/Phoron Shelter Secure Hatch"},/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"},/turf/simulated/floor/tiled/techfloor/grid,/area/crew_quarters/panic_shelter) +"boA" = (/obj/structure/extinguisher_cabinet{pixel_y = -31},/obj/effect/floor_decal/techfloor,/obj/effect/floor_decal/techfloor/hole,/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 9},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 9},/obj/structure/cable/green{d1 = 1; d2 = 8; icon_state = "1-8"},/turf/simulated/floor/tiled/techfloor,/area/crew_quarters/panic_shelter) +"boB" = (/obj/machinery/light/small,/obj/effect/floor_decal/industrial/warning/corner{dir = 4},/obj/effect/floor_decal/techfloor,/turf/simulated/floor/tiled/techfloor,/area/crew_quarters/panic_shelter) +"boC" = (/obj/effect/floor_decal/industrial/warning{dir = 1},/obj/machinery/portable_atmospherics/powered/pump/filled,/obj/effect/floor_decal/techfloor{tag = "icon-techfloor_edges (SOUTHEAST)"; icon_state = "techfloor_edges"; dir = 6},/obj/machinery/alarm{dir = 8; icon_state = "alarm0"; pixel_x = 24},/turf/simulated/floor/tiled/techfloor,/area/crew_quarters/panic_shelter) +"boD" = (/obj/structure/table/glass,/obj/item/weapon/inflatable_duck,/obj/effect/floor_decal/spline/plain{dir = 8},/obj/machinery/alarm{dir = 4; icon_state = "alarm0"; pixel_x = -22; pixel_y = 0},/turf/simulated/floor/tiled/kafel_full,/area/crew_quarters/pool) +"boE" = (/obj/item/weapon/stool/padded,/turf/simulated/floor/tiled,/area/crew_quarters/pool) +"boF" = (/obj/machinery/power/apc{name = "west bump"; dir = 8; pixel_x = -26; cell_type = /obj/item/weapon/cell/super},/obj/structure/cable{icon_state = "0-4"},/turf/simulated/floor/holofloor/wood,/area/crew_quarters/recreation_area) +"boG" = (/obj/structure/cable{tag = "icon-4-8"; icon_state = "4-8"},/turf/simulated/floor/holofloor/wood,/area/crew_quarters/recreation_area) +"boH" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/cable{tag = "icon-4-8"; icon_state = "4-8"},/turf/simulated/floor/holofloor/wood,/area/crew_quarters/recreation_area) +"boI" = (/obj/structure/cable{tag = "icon-2-8"; icon_state = "2-8"},/turf/simulated/floor/holofloor/wood,/area/crew_quarters/recreation_area) +"boJ" = (/obj/machinery/light{dir = 4; icon_state = "tube1"; pixel_x = 0},/turf/simulated/floor/holofloor/wood,/area/crew_quarters/recreation_area) +"boK" = (/obj/machinery/alarm{dir = 8; icon_state = "alarm0"; pixel_x = 24},/turf/simulated/floor/tiled,/area/tether/surfacebase/north_stairs_three) +"boL" = (/turf/simulated/open,/area/tether/surfacebase/north_stairs_three) +"boM" = (/obj/machinery/light{icon_state = "tube1"; dir = 8},/turf/simulated/floor/tiled,/area/tether/surfacebase/atrium_three) +"boN" = (/obj/item/device/radio/intercom{dir = 4; name = "Station Intercom (General)"; pixel_x = 21},/obj/machinery/atmospherics/unary/vent_pump/on{dir = 1},/turf/simulated/floor/tiled,/area/tether/surfacebase/atrium_three) +"boO" = (/turf/simulated/wall/r_wall,/area/vacant/vacant_shop) +"boP" = (/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) +"boQ" = (/turf/simulated/wall/r_wall,/area/crew_quarters/freezer) +"boR" = (/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/crew_quarters/freezer) +"boS" = (/turf/simulated/wall/r_wall,/area/hydroponics/cafegarden) +"boT" = (/obj/structure/bed/chair{dir = 4},/obj/effect/floor_decal/spline/plain{dir = 8},/obj/item/device/radio/intercom{dir = 8; name = "Station Intercom (General)"; pixel_x = -28},/turf/simulated/floor/tiled/kafel_full,/area/crew_quarters/pool) +"boU" = (/obj/effect/floor_decal/spline/plain{dir = 9},/obj/item/weapon/beach_ball,/turf/simulated/floor/tiled/freezer,/area/crew_quarters/pool) +"boV" = (/obj/effect/floor_decal/spline/plain{dir = 1},/turf/simulated/floor/tiled/freezer,/area/crew_quarters/pool) +"boW" = (/obj/effect/floor_decal/spline/plain{dir = 5},/turf/simulated/floor/tiled/freezer,/area/crew_quarters/pool) +"boX" = (/obj/structure/table/glass,/obj/machinery/light{dir = 4; icon_state = "tube1"; pixel_x = 0},/turf/simulated/floor/tiled,/area/crew_quarters/pool) +"boY" = (/obj/machinery/disposal,/obj/structure/disposalpipe/trunk{dir = 4},/turf/simulated/floor/holofloor/wood,/area/crew_quarters/recreation_area) +"boZ" = (/obj/machinery/scale,/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/alarm{dir = 1; pixel_y = -25},/turf/simulated/floor/holofloor/wood,/area/crew_quarters/recreation_area) +"bpa" = (/obj/machinery/scale,/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/holofloor/wood,/area/crew_quarters/recreation_area) +"bpb" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/disposalpipe/segment{dir = 2; icon_state = "pipe-c"},/turf/simulated/floor/holofloor/wood,/area/crew_quarters/recreation_area) +"bpc" = (/obj/structure/cable{tag = "icon-1-2"; icon_state = "1-2"},/turf/simulated/floor/holofloor/wood,/area/crew_quarters/recreation_area) +"bpd" = (/obj/structure/reagent_dispensers/water_cooler/full,/turf/simulated/floor/holofloor/wood,/area/crew_quarters/recreation_area) +"bpe" = (/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,/turf/simulated/floor/tiled,/area/tether/surfacebase/north_stairs_three) +"bpf" = (/obj/machinery/light/small,/obj/structure/mopbucket,/obj/item/weapon/reagent_containers/glass/bucket,/obj/item/weapon/mop,/turf/simulated/floor/tiled,/area/tether/surfacebase/north_stairs_three) +"bpg" = (/obj/machinery/status_display{pixel_x = -32},/turf/simulated/floor/tiled,/area/tether/surfacebase/atrium_three) +"bph" = (/obj/structure/sign/directions/evac{tag = "icon-direction_evac (NORTH)"; icon_state = "direction_evac"; dir = 1},/turf/simulated/wall,/area/vacant/vacant_shop) +"bpi" = (/obj/item/weapon/reagent_containers/food/drinks/bottle/orangejuice,/obj/effect/decal/cleanable/dirt,/obj/structure/closet,/obj/random/maintenance/clean,/obj/random/maintenance/medical,/obj/random/junk,/obj/random/contraband,/obj/random/maintenance/engineering,/turf/simulated/floor/plating,/area/vacant/vacant_shop) +"bpj" = (/obj/structure/table/rack,/obj/random/maintenance/clean,/obj/random/maintenance/clean,/obj/random/drinkbottle,/obj/random/cigarettes,/obj/random/maintenance/research,/turf/simulated/floor/plating,/area/vacant/vacant_shop) +"bpk" = (/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/plating,/area/vacant/vacant_shop) +"bpl" = (/obj/machinery/atmospherics/pipe/zpipe/down/scrubbers,/obj/machinery/atmospherics/pipe/zpipe/down/supply,/obj/structure/lattice,/obj/structure/disposalpipe/down,/turf/simulated/open,/area/vacant/vacant_shop) +"bpm" = (/turf/simulated/wall,/area/crew_quarters/freezer) +"bpn" = (/turf/simulated/floor/tiled/freezer,/area/crew_quarters/freezer) +"bpo" = (/obj/structure/closet/crate/freezer,/obj/machinery/camera/network/civilian,/turf/simulated/floor/tiled/freezer,/area/crew_quarters/freezer) +"bpp" = (/obj/structure/kitchenspike,/obj/machinery/alarm{frequency = 1441; pixel_y = 22; target_temperature = 273.15},/turf/simulated/floor/tiled/freezer,/area/crew_quarters/freezer) +"bpq" = (/obj/structure/kitchenspike,/turf/simulated/floor/tiled/freezer,/area/crew_quarters/freezer) +"bpr" = (/obj/structure/flora/ausbushes/grassybush,/turf/simulated/floor/grass,/area/hydroponics/cafegarden) +"bps" = (/obj/machinery/light{dir = 1},/turf/simulated/floor/grass,/area/hydroponics/cafegarden) +"bpt" = (/obj/machinery/camera/network/civilian,/turf/simulated/floor/grass,/area/hydroponics/cafegarden) +"bpu" = (/obj/structure/grille,/obj/structure/window/reinforced{dir = 5; icon_state = "fwindow"},/obj/machinery/door/firedoor,/obj/structure/window/reinforced{dir = 4},/turf/simulated/floor/plating,/area/hydroponics/cafegarden) +"bpv" = (/obj/effect/floor_decal/spline/plain{dir = 10},/turf/simulated/floor/tiled/freezer,/area/crew_quarters/pool) +"bpw" = (/obj/effect/floor_decal/spline/plain,/obj/machinery/hologram/holopad,/turf/simulated/floor/tiled/freezer,/area/crew_quarters/pool) +"bpx" = (/obj/effect/floor_decal/spline/plain{dir = 6},/turf/simulated/floor/tiled/freezer,/area/crew_quarters/pool) +"bpy" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/disposalpipe/segment,/obj/machinery/door/firedoor,/obj/machinery/door/airlock/glass{name = "Recreation Area"},/turf/simulated/floor/tiled,/area/crew_quarters/recreation_area) +"bpz" = (/obj/structure/grille,/obj/structure/window/reinforced{dir = 5; icon_state = "fwindow"},/obj/machinery/door/firedoor,/obj/structure/cable{tag = "icon-1-2"; icon_state = "1-2"},/turf/simulated/floor/plating,/area/crew_quarters/recreation_area) +"bpA" = (/obj/machinery/power/apc{cell_type = /obj/item/weapon/cell/super; dir = 8; name = "west bump"; pixel_x = -28},/obj/structure/cable{icon_state = "0-4"},/turf/simulated/floor/tiled,/area/tether/surfacebase/atrium_three) +"bpB" = (/obj/structure/cable{tag = "icon-1-2"; icon_state = "1-2"},/obj/structure/cable{tag = "icon-2-8"; icon_state = "2-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled,/area/tether/surfacebase/atrium_three) +"bpC" = (/obj/machinery/newscaster{pixel_x = 25},/turf/simulated/floor/tiled,/area/tether/surfacebase/atrium_three) +"bpD" = (/turf/simulated/wall,/area/vacant/vacant_shop) +"bpE" = (/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/plating,/area/vacant/vacant_shop) +"bpF" = (/obj/effect/decal/cleanable/dirt,/obj/random/junk,/turf/simulated/floor/plating,/area/vacant/vacant_shop) +"bpG" = (/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 8},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 8},/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/plating,/area/vacant/vacant_shop) +"bpH" = (/obj/effect/floor_decal/techfloor{tag = "icon-techfloor_edges (EAST)"; icon_state = "techfloor_edges"; dir = 4},/obj/effect/floor_decal/techfloor/hole/right{tag = "icon-techfloor_hole_right (EAST)"; icon_state = "techfloor_hole_right"; dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 9},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 9},/obj/structure/disposalpipe/segment,/turf/simulated/floor/plating,/area/vacant/vacant_shop) +"bpI" = (/obj/machinery/firealarm{dir = 8; pixel_x = -24},/turf/simulated/floor/tiled/freezer,/area/crew_quarters/freezer) +"bpJ" = (/obj/machinery/light_switch{pixel_x = 25},/turf/simulated/floor/tiled/freezer,/area/crew_quarters/freezer) +"bpK" = (/obj/machinery/alarm{dir = 4; icon_state = "alarm0"; pixel_x = -22; pixel_y = 0},/turf/simulated/floor/grass,/area/hydroponics/cafegarden) +"bpL" = (/turf/simulated/floor/grass,/area/hydroponics/cafegarden) +"bpM" = (/obj/structure/flora/ausbushes/ppflowers,/turf/simulated/floor/grass,/area/hydroponics/cafegarden) +"bpN" = (/obj/effect/floor_decal/spline/plain{dir = 8},/obj/machinery/disposal,/obj/structure/disposalpipe/trunk{dir = 4},/turf/simulated/floor/tiled/kafel_full,/area/crew_quarters/pool) +"bpO" = (/obj/structure/disposalpipe/segment{dir = 2; icon_state = "pipe-c"},/turf/simulated/floor/tiled/kafel_full,/area/crew_quarters/pool) +"bpP" = (/obj/structure/cable{tag = "icon-1-2"; icon_state = "1-2"},/turf/simulated/floor/tiled,/area/tether/surfacebase/atrium_three) +"bpQ" = (/obj/structure/disposalpipe/segment{dir = 4; icon_state = "pipe-c"},/obj/machinery/firealarm{dir = 2; layer = 3.3; pixel_x = 0; pixel_y = 26},/turf/simulated/floor/tiled,/area/tether/surfacebase/atrium_three) +"bpR" = (/obj/machinery/disposal,/obj/structure/disposalpipe/trunk{dir = 8},/turf/simulated/floor/tiled,/area/tether/surfacebase/atrium_three) +"bpS" = (/obj/machinery/shower{dir = 4; icon_state = "shower"; pixel_x = 5; pixel_y = 0},/obj/structure/curtain/open/shower,/turf/simulated/floor/tiled/white,/area/crew_quarters/recreation_area_restroom) +"bpT" = (/obj/machinery/light_switch{pixel_y = 25},/turf/simulated/floor/tiled/white,/area/crew_quarters/recreation_area_restroom) +"bpU" = (/obj/machinery/shower{dir = 8; icon_state = "shower"; pixel_x = -5; pixel_y = 0},/obj/structure/curtain/open/shower,/turf/simulated/floor/tiled/white,/area/crew_quarters/recreation_area_restroom) +"bpV" = (/obj/structure/table/rack,/obj/random/maintenance/engineering,/obj/random/maintenance/clean,/obj/random/maintenance/engineering,/turf/simulated/floor/plating,/area/tether/surfacebase/atrium_three) +"bpW" = (/turf/simulated/floor/plating,/area/tether/surfacebase/atrium_three) +"bpX" = (/obj/machinery/light{dir = 4; icon_state = "tube1"; pixel_x = 0},/turf/simulated/floor/tiled,/area/tether/surfacebase/atrium_three) +"bpY" = (/obj/effect/decal/cleanable/dirt,/obj/structure/disposalpipe/segment{dir = 4; icon_state = "pipe-c"},/turf/simulated/floor/plating,/area/vacant/vacant_shop) +"bpZ" = (/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/decal/cleanable/dirt,/obj/structure/disposalpipe/segment{dir = 4},/mob/living/simple_animal/mouse,/turf/simulated/floor/plating,/area/vacant/vacant_shop) +"bqa" = (/obj/machinery/light/small{dir = 4; pixel_y = 0},/obj/effect/floor_decal/techfloor{tag = "icon-techfloor_edges (EAST)"; icon_state = "techfloor_edges"; dir = 4},/obj/structure/disposalpipe/segment{dir = 8; icon_state = "pipe-c"},/turf/simulated/floor/plating,/area/vacant/vacant_shop) +"bqb" = (/obj/machinery/light{icon_state = "tube1"; dir = 8},/turf/simulated/floor/tiled/freezer,/area/crew_quarters/freezer) +"bqc" = (/obj/machinery/light{dir = 4; icon_state = "tube1"},/turf/simulated/floor/tiled/freezer,/area/crew_quarters/freezer) +"bqd" = (/obj/structure/flora/ausbushes/lavendergrass,/obj/structure/flora/ausbushes/ppflowers,/turf/simulated/floor/grass,/area/hydroponics/cafegarden) +"bqe" = (/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled/kafel_full,/area/crew_quarters/pool) +"bqf" = (/obj/structure/disposalpipe/segment{dir = 4; icon_state = "pipe-c"},/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0},/turf/simulated/floor/tiled/kafel_full,/area/crew_quarters/pool) +"bqg" = (/obj/effect/floor_decal/spline/plain{dir = 4},/obj/structure/disposalpipe/junction{icon_state = "pipe-j2"; dir = 4},/turf/simulated/floor/tiled/kafel_full,/area/crew_quarters/pool) +"bqh" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 6},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled,/area/crew_quarters/pool) +"bqi" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 6},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled,/area/crew_quarters/pool) +"bqj" = (/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,/turf/simulated/floor/tiled,/area/crew_quarters/pool) +"bqk" = (/obj/machinery/atmospherics/pipe/manifold/hidden/supply,/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,/obj/structure/disposalpipe/junction{icon_state = "pipe-j2"; dir = 4},/turf/simulated/floor/tiled,/area/tether/surfacebase/atrium_three) +"bql" = (/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{tag = "icon-1-2"; icon_state = "1-2"},/turf/simulated/floor/tiled,/area/tether/surfacebase/atrium_three) +"bqm" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 10},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 10},/obj/structure/disposalpipe/junction,/turf/simulated/floor/tiled,/area/tether/surfacebase/atrium_three) +"bqn" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 6},/obj/machinery/power/apc{name = "west bump"; dir = 8; pixel_x = -26; cell_type = /obj/item/weapon/cell/super},/obj/structure/cable{tag = "icon-0-2"; icon_state = "0-2"},/turf/simulated/floor/tiled/white,/area/crew_quarters/recreation_area_restroom) +"bqo" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/turf/simulated/floor/tiled/white,/area/crew_quarters/recreation_area_restroom) +"bqp" = (/obj/machinery/atmospherics/unary/vent_pump/on{dir = 8},/turf/simulated/floor/tiled/white,/area/crew_quarters/recreation_area_restroom) +"bqq" = (/obj/structure/cable{icon_state = "32-4"},/obj/structure/lattice,/obj/machinery/light/small{dir = 8; pixel_x = 0},/obj/machinery/door/firedoor/glass,/turf/simulated/open,/area/tether/surfacebase/atrium_three) +"bqr" = (/obj/structure/cable{tag = "icon-4-8"; icon_state = "4-8"},/turf/simulated/floor/plating,/area/tether/surfacebase/atrium_three) +"bqs" = (/obj/machinery/door/airlock/maintenance/engi,/obj/machinery/door/firedoor/glass,/obj/structure/cable{tag = "icon-4-8"; icon_state = "4-8"},/turf/simulated/floor/plating,/area/tether/surfacebase/atrium_three) +"bqt" = (/obj/structure/cable{tag = "icon-4-8"; icon_state = "4-8"},/turf/simulated/floor/tiled,/area/tether/surfacebase/atrium_three) +"bqu" = (/obj/structure/cable{tag = "icon-4-8"; icon_state = "4-8"},/obj/structure/cable{icon_state = "1-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled,/area/tether/surfacebase/atrium_three) +"bqv" = (/obj/structure/cable{tag = "icon-2-8"; icon_state = "2-8"},/obj/effect/floor_decal/steeldecal/steel_decals7{tag = "icon-steel_decals7 (NORTHEAST)"; icon_state = "steel_decals7"; dir = 5},/obj/effect/floor_decal/steeldecal/steel_decals7{tag = "icon-steel_decals7 (SOUTHEAST)"; icon_state = "steel_decals7"; dir = 6},/turf/simulated/floor/tiled,/area/tether/surfacebase/atrium_three) +"bqw" = (/obj/effect/floor_decal/steeldecal/steel_decals7{tag = "icon-steel_decals7 (SOUTHWEST)"; icon_state = "steel_decals7"; dir = 10},/obj/effect/floor_decal/steeldecal/steel_decals7{tag = "icon-steel_decals7 (NORTHWEST)"; icon_state = "steel_decals7"; dir = 9},/obj/structure/disposalpipe/segment{dir = 4; icon_state = "pipe-c"},/turf/simulated/floor/tiled,/area/tether/surfacebase/atrium_three) +"bqx" = (/obj/structure/disposalpipe/segment,/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled,/area/tether/surfacebase/atrium_three) +"bqy" = (/obj/structure/grille,/obj/structure/railing{dir = 8},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled/techmaint,/area/tether/surfacebase/atrium_three) +"bqz" = (/obj/machinery/portable_atmospherics/powered/scrubber/huge/stationary{scrub_id = "atrium"},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled/techmaint,/area/tether/surfacebase/atrium_three) +"bqA" = (/obj/effect/decal/cleanable/dirt,/obj/structure/disposalpipe/segment{dir = 8; icon_state = "pipe-c"},/turf/simulated/floor/plating,/area/vacant/vacant_shop) +"bqB" = (/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/structure/cable/green{d1 = 2; d2 = 4; icon_state = "2-4"},/turf/simulated/floor/plating,/area/vacant/vacant_shop) +"bqC" = (/obj/effect/floor_decal/techfloor{tag = "icon-techfloor_edges (EAST)"; icon_state = "techfloor_edges"; dir = 4},/obj/machinery/power/apc{dir = 4; name = "east bump"; pixel_x = 28},/obj/structure/cable/green{icon_state = "0-8"},/turf/simulated/floor/plating,/area/vacant/vacant_shop) +"bqD" = (/obj/machinery/power/apc{cell_type = /obj/item/weapon/cell/super; dir = 8; name = "west bump"; pixel_x = -28},/obj/structure/cable/green{icon_state = "0-4"},/turf/simulated/floor/tiled/freezer,/area/crew_quarters/freezer) +"bqE" = (/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) +"bqF" = (/obj/machinery/atmospherics/unary/vent_scrubber/on,/obj/structure/cable/green{d1 = 2; d2 = 8; icon_state = "2-8"},/turf/simulated/floor/tiled/freezer,/area/crew_quarters/freezer) +"bqG" = (/obj/machinery/gibber,/turf/simulated/floor/tiled/freezer,/area/crew_quarters/freezer) +"bqH" = (/obj/machinery/power/apc{cell_type = /obj/item/weapon/cell/super; dir = 8; name = "west bump"; pixel_x = -28},/obj/structure/cable/green{icon_state = "0-4"},/turf/simulated/floor/grass,/area/hydroponics/cafegarden) +"bqI" = (/obj/structure/cable/green{d1 = 2; d2 = 8; icon_state = "2-8"},/turf/simulated/floor/grass,/area/hydroponics/cafegarden) +"bqJ" = (/obj/effect/floor_decal/spline/plain{dir = 10},/turf/simulated/floor/water/deep/pool,/area/crew_quarters/pool) +"bqK" = (/obj/effect/floor_decal/spline/plain,/turf/simulated/floor/water/deep/pool,/area/crew_quarters/pool) +"bqL" = (/obj/effect/floor_decal/spline/plain,/turf/simulated/floor/water/pool,/area/crew_quarters/pool) +"bqM" = (/obj/effect/floor_decal/spline/plain{dir = 6},/turf/simulated/floor/water/pool,/area/crew_quarters/pool) +"bqN" = (/obj/structure/disposalpipe/segment,/obj/structure/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/turf/simulated/floor/tiled/kafel_full,/area/crew_quarters/pool) +"bqO" = (/obj/effect/floor_decal/spline/plain{dir = 4},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/tiled/kafel_full,/area/crew_quarters/pool) +"bqP" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/tiled,/area/crew_quarters/pool) +"bqQ" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/tiled,/area/crew_quarters/pool) +"bqR" = (/obj/structure/grille,/obj/structure/window/reinforced{dir = 5; icon_state = "fwindow"},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/door/firedoor,/turf/simulated/floor/plating,/area/crew_quarters/pool) +"bqS" = (/obj/machinery/light,/obj/structure/cable{tag = "icon-1-4"; icon_state = "1-4"},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/tiled,/area/tether/surfacebase/atrium_three) +"bqT" = (/obj/structure/cable{tag = "icon-4-8"; icon_state = "4-8"},/obj/machinery/alarm{dir = 1; pixel_y = -25},/turf/simulated/floor/tiled,/area/tether/surfacebase/atrium_three) +"bqU" = (/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 8},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 8},/obj/structure/disposalpipe/segment,/obj/structure/cable{tag = "icon-4-8"; icon_state = "4-8"},/turf/simulated/floor/tiled,/area/tether/surfacebase/atrium_three) +"bqV" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/cable{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/structure/cable{tag = "icon-4-8"; icon_state = "4-8"},/turf/simulated/floor/tiled,/area/tether/surfacebase/atrium_three) +"bqW" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/cable{tag = "icon-4-8"; icon_state = "4-8"},/turf/simulated/floor/tiled,/area/tether/surfacebase/atrium_three) +"bqX" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/door/firedoor,/obj/machinery/door/airlock{name = "Unisex Showers"},/obj/structure/cable{tag = "icon-4-8"; icon_state = "4-8"},/turf/simulated/floor/tiled/white,/area/crew_quarters/recreation_area_restroom) +"bqY" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 9},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/cable{icon_state = "1-8"},/turf/simulated/floor/tiled/white,/area/crew_quarters/recreation_area_restroom) +"bqZ" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled/white,/area/crew_quarters/recreation_area_restroom) +"bra" = (/obj/machinery/light{dir = 4; icon_state = "tube1"; pixel_x = 0},/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 8},/turf/simulated/floor/tiled/white,/area/crew_quarters/recreation_area_restroom) +"brb" = (/obj/structure/closet/crate,/obj/random/maintenance/engineering,/obj/random/maintenance/clean,/obj/random/maintenance/engineering,/turf/simulated/floor/plating,/area/tether/surfacebase/atrium_three) +"brc" = (/obj/structure/extinguisher_cabinet{dir = 4; icon_state = "extinguisher_closed"; pixel_x = -30; tag = "icon-extinguisher_closed (EAST)"},/turf/simulated/floor/tiled,/area/tether/surfacebase/atrium_three) +"brd" = (/obj/structure/cable{tag = "icon-1-2"; icon_state = "1-2"},/obj/effect/floor_decal/steeldecal/steel_decals7{tag = "icon-steel_decals7 (NORTHEAST)"; icon_state = "steel_decals7"; dir = 5},/obj/effect/floor_decal/steeldecal/steel_decals7{tag = "icon-steel_decals7 (SOUTHEAST)"; icon_state = "steel_decals7"; dir = 6},/turf/simulated/floor/tiled,/area/tether/surfacebase/atrium_three) +"bre" = (/obj/effect/floor_decal/steeldecal/steel_decals7{tag = "icon-steel_decals7 (SOUTHWEST)"; icon_state = "steel_decals7"; dir = 10},/obj/effect/floor_decal/steeldecal/steel_decals7{tag = "icon-steel_decals7 (NORTHWEST)"; icon_state = "steel_decals7"; dir = 9},/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled,/area/tether/surfacebase/atrium_three) +"brf" = (/obj/structure/sign/directions/medical{dir = 1; icon_state = "direction_med"; pixel_y = 8; tag = "icon-direction_med (EAST)"},/obj/structure/sign/directions/science{dir = 2; icon_state = "direction_sci"; pixel_y = 3; tag = "icon-direction_sci (WEST)"},/obj/structure/sign/directions/security{dir = 1; icon_state = "direction_sec"; pixel_y = -4; tag = "icon-direction_sec (WEST)"},/obj/structure/sign/directions/engineering{dir = 1; icon_state = "direction_eng"; pixel_y = -10; tag = "icon-direction_eng (WEST)"},/turf/simulated/wall,/area/tether/surfacebase/atrium_three) +"brg" = (/obj/machinery/alarm{dir = 1; pixel_y = -25},/obj/structure/table/rack,/obj/random/junk,/obj/random/maintenance/clean,/obj/random/drinkbottle,/obj/random/maintenance/research,/turf/simulated/floor/plating,/area/vacant/vacant_shop) +"brh" = (/obj/effect/floor_decal/techfloor{tag = "icon-techfloor_edges (EAST)"; icon_state = "techfloor_edges"; 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,/turf/simulated/floor/plating,/area/vacant/vacant_shop) +"bri" = (/obj/structure/closet/secure_closet/freezer/meat,/turf/simulated/floor/tiled/freezer,/area/crew_quarters/freezer) +"brj" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 5},/obj/machinery/icecream_vat,/turf/simulated/floor/tiled/freezer,/area/crew_quarters/freezer) +"brk" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 10},/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/tiled/freezer,/area/crew_quarters/freezer) +"brl" = (/obj/machinery/chem_master,/turf/simulated/floor/tiled/freezer,/area/crew_quarters/freezer) +"brm" = (/obj/structure/flora/ausbushes/sparsegrass,/obj/structure/flora/ausbushes/ywflowers,/turf/simulated/floor/grass,/area/hydroponics/cafegarden) +"brn" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/grass,/area/hydroponics/cafegarden) +"bro" = (/obj/structure/flora/ausbushes/pointybush,/turf/simulated/floor/grass,/area/hydroponics/cafegarden) +"brp" = (/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/kafel_full,/area/crew_quarters/pool) +"brq" = (/obj/structure/disposalpipe/segment{dir = 1; icon_state = "pipe-c"},/turf/simulated/floor/tiled/kafel_full,/area/crew_quarters/pool) +"brr" = (/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled/kafel_full,/area/crew_quarters/pool) +"brs" = (/obj/structure/disposalpipe/segment{dir = 8; icon_state = "pipe-c"},/turf/simulated/floor/tiled/kafel_full,/area/crew_quarters/pool) +"brt" = (/obj/effect/floor_decal/spline/plain{dir = 4},/turf/simulated/floor/tiled/kafel_full,/area/crew_quarters/pool) +"bru" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/tiled,/area/crew_quarters/pool) +"brv" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/extinguisher_cabinet{pixel_x = 27},/turf/simulated/floor/tiled,/area/crew_quarters/pool) +"brw" = (/obj/structure/extinguisher_cabinet{pixel_x = 27},/turf/simulated/floor/tiled,/area/tether/surfacebase/atrium_three) +"brx" = (/obj/item/weapon/bikehorn/rubberducky,/turf/simulated/floor/tiled/white,/area/crew_quarters/recreation_area_restroom) +"bry" = (/obj/machinery/alarm{dir = 1; pixel_y = -25},/turf/simulated/floor/tiled/white,/area/crew_quarters/recreation_area_restroom) +"brz" = (/obj/machinery/firealarm{dir = 4; pixel_x = 24},/turf/simulated/floor/tiled,/area/tether/surfacebase/atrium_three) +"brA" = (/obj/machinery/door/airlock/maintenance/common,/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"},/turf/simulated/floor/plating,/area/vacant/vacant_shop) +"brB" = (/obj/structure/grille,/obj/structure/window/reinforced{dir = 5; icon_state = "fwindow"},/obj/machinery/door/firedoor,/turf/simulated/floor/plating,/area/crew_quarters/freezer) +"brC" = (/obj/machinery/door/firedoor/glass,/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/airlock/freezer{name = "Kitchen cold room"; req_access = list(28)},/turf/simulated/floor/tiled/freezer,/area/crew_quarters/freezer) +"brD" = (/obj/structure/grille,/obj/structure/window/reinforced{dir = 5; icon_state = "fwindow"},/obj/machinery/door/firedoor,/turf/simulated/floor/plating,/area/crew_quarters/kitchen) +"brE" = (/obj/machinery/door/firedoor/glass,/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/door/airlock/glass{name = "Garden"; req_access = list(28)},/turf/simulated/floor/tiled/white,/area/crew_quarters/kitchen) +"brF" = (/turf/simulated/wall,/area/crew_quarters/kitchen) +"brG" = (/obj/structure/bed/chair{dir = 4},/obj/effect/floor_decal/spline/plain{dir = 10},/turf/simulated/floor/tiled/kafel_full,/area/crew_quarters/pool) +"brH" = (/obj/effect/floor_decal/spline/plain,/turf/simulated/floor/tiled/kafel_full,/area/crew_quarters/pool) +"brI" = (/obj/effect/floor_decal/spline/plain,/obj/machinery/camera/network/civilian{tag = "icon-camera (NORTH)"; icon_state = "camera"; dir = 1},/turf/simulated/floor/tiled/kafel_full,/area/crew_quarters/pool) +"brJ" = (/obj/effect/floor_decal/spline/plain,/obj/machinery/light,/turf/simulated/floor/tiled/kafel_full,/area/crew_quarters/pool) +"brK" = (/obj/effect/floor_decal/spline/plain,/obj/structure/flora/pottedplant{icon_state = "plant-22"},/turf/simulated/floor/tiled/kafel_full,/area/crew_quarters/pool) +"brL" = (/obj/effect/floor_decal/spline/plain{dir = 6},/obj/structure/undies_wardrobe,/turf/simulated/floor/tiled/kafel_full,/area/crew_quarters/pool) +"brM" = (/obj/structure/closet/lasertag/red,/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 1},/turf/simulated/floor/tiled,/area/crew_quarters/pool) +"brN" = (/obj/structure/closet/lasertag/blue,/obj/machinery/atmospherics/unary/vent_pump/on{dir = 1},/turf/simulated/floor/tiled,/area/crew_quarters/pool) +"brO" = (/obj/structure/grille,/obj/structure/window/reinforced{dir = 5; icon_state = "fwindow"},/obj/machinery/door/firedoor,/obj/structure/window/reinforced{dir = 4},/turf/simulated/floor/plating,/area/crew_quarters/pool) +"brP" = (/obj/machinery/vending/fitness,/turf/simulated/floor/tiled,/area/tether/surfacebase/atrium_three) +"brQ" = (/obj/structure/bed/chair/wood,/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (NORTH)"; icon_state = "borderfloor"; dir = 1},/obj/effect/floor_decal/corner/beige/border{tag = "icon-bordercolor (NORTH)"; icon_state = "bordercolor"; dir = 1},/obj/effect/floor_decal/borderfloor/corner2{tag = "icon-borderfloorcorner2 (EAST)"; icon_state = "borderfloorcorner2"; dir = 4},/obj/effect/floor_decal/corner/beige/bordercorner2{tag = "icon-bordercolorcorner2 (EAST)"; icon_state = "bordercolorcorner2"; dir = 4},/turf/simulated/floor/tiled,/area/tether/surfacebase/atrium_three) +"brR" = (/obj/machinery/light/flamp/noshade{pixel_x = -8; pixel_y = 6},/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (NORTHEAST)"; icon_state = "borderfloor"; dir = 5},/obj/effect/floor_decal/corner/beige/border{tag = "icon-bordercolor (NORTHEAST)"; icon_state = "bordercolor"; dir = 5},/turf/simulated/floor/tiled,/area/tether/surfacebase/atrium_three) +"brS" = (/turf/simulated/wall,/area/crew_quarters/bar) +"brT" = (/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/item/device/radio/intercom{dir = 8; name = "Station Intercom (General)"; pixel_x = -28},/obj/machinery/light/small{dir = 8},/turf/simulated/floor/wood,/area/crew_quarters/bar) +"brU" = (/obj/structure/table/bench/wooden,/obj/machinery/firealarm{dir = 2; layer = 3.3; pixel_x = 0; pixel_y = 26},/turf/simulated/floor/wood,/area/crew_quarters/bar) +"brV" = (/obj/structure/table/bench/wooden,/obj/machinery/alarm{frequency = 1441; pixel_y = 22},/turf/simulated/floor/wood,/area/crew_quarters/bar) +"brW" = (/obj/effect/floor_decal/corner/grey/diagonal,/obj/structure/closet/chefcloset,/obj/item/glass_jar,/obj/item/device/retail_scanner/civilian,/obj/item/weapon/soap/nanotrasen,/obj/item/device/destTagger{pixel_x = 4; pixel_y = 3},/obj/item/weapon/packageWrap,/obj/item/weapon/packageWrap,/obj/item/weapon/packageWrap,/obj/machinery/light_switch{pixel_x = -25},/turf/simulated/floor/tiled/white,/area/crew_quarters/kitchen) +"brX" = (/obj/effect/floor_decal/corner/grey/diagonal,/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/white,/area/crew_quarters/kitchen) +"brY" = (/obj/structure/table/standard,/obj/machinery/microwave,/obj/machinery/newscaster{pixel_x = 0; pixel_y = 30},/turf/simulated/floor/tiled/white,/area/crew_quarters/kitchen) +"brZ" = (/obj/structure/table/standard,/obj/machinery/microwave,/obj/effect/floor_decal/corner/grey/diagonal,/obj/machinery/firealarm{dir = 2; layer = 3.3; pixel_x = 0; pixel_y = 26},/turf/simulated/floor/tiled/white,/area/crew_quarters/kitchen) +"bsa" = (/obj/effect/floor_decal/corner/grey/diagonal,/obj/machinery/disposal,/obj/structure/disposalpipe/trunk,/turf/simulated/floor/tiled/white,/area/crew_quarters/kitchen) +"bsb" = (/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) +"bsc" = (/obj/effect/floor_decal/corner/grey/diagonal,/obj/structure/closet/secure_closet/freezer/meat,/obj/machinery/light{dir = 4; icon_state = "tube1"},/turf/simulated/floor/tiled/white,/area/crew_quarters/kitchen) +"bsd" = (/obj/structure/grille,/obj/structure/window/reinforced{dir = 5; icon_state = "fwindow"},/obj/machinery/door/firedoor,/obj/structure/window/reinforced,/obj/structure/window/reinforced{dir = 8},/turf/simulated/floor/plating,/area/crew_quarters/pool) +"bse" = (/obj/structure/grille,/obj/structure/window/reinforced{dir = 5; icon_state = "fwindow"},/obj/machinery/door/firedoor,/obj/structure/window/reinforced,/turf/simulated/floor/plating,/area/crew_quarters/pool) +"bsf" = (/obj/structure/flora/pottedplant{icon_state = "plant-22"},/turf/simulated/floor/tiled,/area/tether/surfacebase/atrium_three) +"bsg" = (/obj/structure/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/turf/simulated/floor/tiled,/area/tether/surfacebase/atrium_three) +"bsh" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/newscaster{pixel_x = 0; pixel_y = 30},/turf/simulated/floor/tiled,/area/tether/surfacebase/atrium_three) +"bsi" = (/obj/machinery/light{dir = 1},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/tiled,/area/tether/surfacebase/atrium_three) +"bsj" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/camera/network/northern_star,/turf/simulated/floor/tiled,/area/tether/surfacebase/atrium_three) +"bsk" = (/obj/machinery/door/firedoor/glass/hidden/steel,/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/tiled,/area/hallway/lower/third_south) +"bsl" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/disposalpipe/segment,/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/tiled,/area/tether/surfacebase/atrium_three) +"bsm" = (/obj/structure/cable{tag = "icon-1-2"; icon_state = "1-2"},/obj/effect/floor_decal/steeldecal/steel_decals7{tag = "icon-steel_decals7 (NORTHEAST)"; icon_state = "steel_decals7"; dir = 5},/obj/effect/floor_decal/steeldecal/steel_decals7{tag = "icon-steel_decals7 (SOUTHEAST)"; icon_state = "steel_decals7"; dir = 6},/obj/structure/cable{d1 = 2; d2 = 8; icon_state = "2-8"},/turf/simulated/floor/tiled,/area/tether/surfacebase/atrium_three) +"bsn" = (/obj/structure/bed/chair/wood,/obj/effect/floor_decal/steeldecal/steel_decals7{tag = "icon-steel_decals7 (SOUTHWEST)"; icon_state = "steel_decals7"; dir = 10},/obj/effect/floor_decal/steeldecal/steel_decals7{tag = "icon-steel_decals7 (NORTHWEST)"; icon_state = "steel_decals7"; dir = 9},/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled,/area/tether/surfacebase/atrium_three) +"bso" = (/obj/structure/table/woodentable,/turf/simulated/floor/tiled,/area/tether/surfacebase/atrium_three) +"bsp" = (/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (EAST)"; icon_state = "borderfloor"; dir = 4},/obj/effect/floor_decal/corner/beige/border{tag = "icon-bordercolor (EAST)"; icon_state = "bordercolor"; dir = 4},/turf/simulated/floor/tiled,/area/tether/surfacebase/atrium_three) +"bsq" = (/obj/machinery/atm{pixel_x = -30},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 8},/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/bar) +"bsr" = (/obj/structure/table/woodentable,/obj/machinery/atmospherics/unary/vent_pump/on{dir = 8},/turf/simulated/floor/wood,/area/crew_quarters/bar) +"bss" = (/obj/structure/table/woodentable,/obj/item/weapon/reagent_containers/food/drinks/glass2/pint,/obj/machinery/camera/network/civilian{tag = "icon-camera (NORTHWEST)"; icon_state = "camera"; dir = 9},/turf/simulated/floor/wood,/area/crew_quarters/bar) +"bst" = (/obj/effect/floor_decal/corner/grey/diagonal,/obj/structure/closet/secure_closet/freezer/fridge,/turf/simulated/floor/tiled/white,/area/crew_quarters/kitchen) +"bsu" = (/obj/effect/floor_decal/corner/grey/diagonal,/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/structure/cable/green{d1 = 2; d2 = 4; icon_state = "2-4"},/turf/simulated/floor/tiled/white,/area/crew_quarters/kitchen) +"bsv" = (/obj/effect/floor_decal/corner/grey/diagonal,/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/tiled/white,/area/crew_quarters/kitchen) +"bsw" = (/obj/effect/floor_decal/corner/grey/diagonal,/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled/white,/area/crew_quarters/kitchen) +"bsx" = (/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) +"bsy" = (/obj/effect/floor_decal/corner/grey/diagonal,/obj/structure/closet/secure_closet/freezer/kitchen,/obj/machinery/camera/network/civilian{tag = "icon-camera (NORTHWEST)"; icon_state = "camera"; dir = 9},/turf/simulated/floor/tiled/white,/area/crew_quarters/kitchen) +"bsz" = (/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/atrium_three) +"bsA" = (/obj/machinery/atmospherics/pipe/manifold/hidden/supply,/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 1},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled,/area/tether/surfacebase/atrium_three) +"bsB" = (/obj/machinery/door/firedoor/glass/hidden/steel,/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/hallway/lower/third_south) +"bsC" = (/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/atrium_three) +"bsD" = (/obj/structure/table/woodentable,/obj/effect/floor_decal/steeldecal/steel_decals7{tag = "icon-steel_decals7 (SOUTHWEST)"; icon_state = "steel_decals7"; dir = 10},/obj/effect/floor_decal/steeldecal/steel_decals7{tag = "icon-steel_decals7 (NORTHWEST)"; icon_state = "steel_decals7"; dir = 9},/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled,/area/tether/surfacebase/atrium_three) +"bsE" = (/obj/structure/disposalpipe/sortjunction{dir = 1; icon_state = "pipe-j1s"; name = "Kitchen"; sortType = "Kitchen"},/turf/simulated/floor/tiled,/area/tether/surfacebase/atrium_three) +"bsF" = (/obj/structure/bed/chair/wood{dir = 1},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled,/area/tether/surfacebase/atrium_three) +"bsG" = (/obj/structure/flora/pottedplant{icon_state = "plant-22"},/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (EAST)"; icon_state = "borderfloor"; dir = 4},/obj/effect/floor_decal/corner/beige/border{tag = "icon-bordercolor (EAST)"; icon_state = "bordercolor"; dir = 4},/obj/effect/floor_decal/borderfloor/corner2{tag = "icon-borderfloorcorner2 (NORTHEAST)"; icon_state = "borderfloorcorner2"; dir = 5},/obj/effect/floor_decal/corner/beige/bordercorner2{tag = "icon-bordercolorcorner2 (NORTHEAST)"; icon_state = "bordercolorcorner2"; dir = 5},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled,/area/tether/surfacebase/atrium_three) +"bsH" = (/obj/structure/grille,/obj/structure/window/reinforced{dir = 5; icon_state = "fwindow"},/obj/machinery/door/firedoor,/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/plating,/area/crew_quarters/bar) +"bsI" = (/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/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/wood,/area/crew_quarters/bar) +"bsJ" = (/obj/structure/table/bench/wooden,/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/wood,/area/crew_quarters/bar) +"bsK" = (/obj/structure/grille,/obj/structure/window/reinforced{dir = 5; icon_state = "fwindow"},/obj/machinery/door/firedoor,/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/door/blast/shutters{dir = 8; id = "kitchen"; layer = 3.1; name = "Kitchen Shutters"},/turf/simulated/floor/plating,/area/crew_quarters/kitchen) +"bsL" = (/obj/effect/floor_decal/corner/grey/diagonal{dir = 4},/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/table/standard,/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled/white,/area/crew_quarters/kitchen) +"bsM" = (/obj/effect/floor_decal/corner/grey/diagonal,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 8},/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled/white,/area/crew_quarters/kitchen) +"bsN" = (/obj/structure/table/standard,/obj/effect/floor_decal/corner/grey/diagonal,/obj/item/weapon/book/manual/chef_recipes,/obj/machinery/atmospherics/unary/vent_pump/on{dir = 8},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled/white,/area/crew_quarters/kitchen) +"bsO" = (/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,/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled/white,/area/crew_quarters/kitchen) +"bsP" = (/obj/structure/table/standard,/obj/effect/floor_decal/corner/grey/diagonal,/obj/structure/disposalpipe/segment{dir = 8; icon_state = "pipe-c"},/turf/simulated/floor/tiled/white,/area/crew_quarters/kitchen) +"bsQ" = (/obj/effect/floor_decal/corner/grey/diagonal,/turf/simulated/floor/tiled/white,/area/crew_quarters/kitchen) +"bsR" = (/obj/machinery/cooker/grill,/obj/effect/floor_decal/industrial/warning/dust{tag = "icon-warning_dust (NORTHWEST)"; icon_state = "warning_dust"; dir = 9},/turf/simulated/floor/tiled/white,/area/crew_quarters/kitchen) +"bsS" = (/obj/structure/grille,/obj/structure/window/reinforced{dir = 5; icon_state = "fwindow"},/obj/machinery/door/firedoor,/obj/structure/window/reinforced{dir = 4},/turf/simulated/floor/plating,/area/crew_quarters/kitchen) +"bsT" = (/obj/machinery/door/firedoor/glass/hidden/steel,/turf/simulated/floor/tiled,/area/hallway/lower/third_south) +"bsU" = (/obj/structure/bed/chair/wood{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals7{tag = "icon-steel_decals7 (SOUTHWEST)"; icon_state = "steel_decals7"; dir = 10},/obj/effect/floor_decal/steeldecal/steel_decals7{tag = "icon-steel_decals7 (NORTHWEST)"; icon_state = "steel_decals7"; dir = 9},/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled,/area/tether/surfacebase/atrium_three) +"bsV" = (/obj/machinery/door/airlock/glass,/obj/machinery/door/firedoor/glass,/turf/simulated/floor/tiled/monotile,/area/crew_quarters/bar) +"bsW" = (/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/wood,/area/crew_quarters/bar) +"bsX" = (/turf/simulated/floor/wood,/area/crew_quarters/bar) +"bsY" = (/obj/structure/grille,/obj/structure/window/reinforced{dir = 5; icon_state = "fwindow"},/obj/machinery/door/firedoor,/obj/machinery/door/blast/shutters{dir = 8; id = "kitchen"; layer = 3.1; name = "Kitchen Shutters"},/turf/simulated/floor/plating,/area/crew_quarters/kitchen) +"bsZ" = (/obj/effect/floor_decal/corner/grey/diagonal,/obj/structure/table/standard,/obj/item/weapon/material/kitchen/rollingpin,/turf/simulated/floor/tiled/white,/area/crew_quarters/kitchen) +"bta" = (/obj/structure/table/standard,/obj/machinery/reagentgrinder,/turf/simulated/floor/tiled/white,/area/crew_quarters/kitchen) +"btb" = (/obj/structure/table/standard,/obj/effect/floor_decal/corner/grey/diagonal,/turf/simulated/floor/tiled/white,/area/crew_quarters/kitchen) +"btc" = (/obj/machinery/cooker/candy,/obj/effect/floor_decal/industrial/warning/dust{tag = "icon-warning_dust (WEST)"; icon_state = "warning_dust"; dir = 8},/turf/simulated/floor/tiled/white,/area/crew_quarters/kitchen) +"btd" = (/turf/simulated/wall,/area/hallway/lower/third_south) +"bte" = (/obj/structure/flora/pottedplant{icon_state = "plant-22"},/obj/effect/floor_decal/steeldecal/steel_decals7{tag = "icon-steel_decals7 (SOUTHWEST)"; icon_state = "steel_decals7"; dir = 10},/obj/effect/floor_decal/steeldecal/steel_decals7{tag = "icon-steel_decals7 (NORTHWEST)"; icon_state = "steel_decals7"; dir = 9},/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled,/area/tether/surfacebase/atrium_three) +"btf" = (/obj/structure/disposalpipe/junction{dir = 1},/turf/simulated/floor/tiled,/area/tether/surfacebase/atrium_three) +"btg" = (/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (EAST)"; icon_state = "borderfloor"; dir = 4},/obj/effect/floor_decal/corner/beige/border{tag = "icon-bordercolor (EAST)"; icon_state = "bordercolor"; dir = 4},/obj/effect/floor_decal/borderfloor/corner2{tag = "icon-borderfloorcorner2 (NORTHEAST)"; icon_state = "borderfloorcorner2"; dir = 5},/obj/effect/floor_decal/borderfloor/corner2{tag = "icon-borderfloorcorner2 (SOUTHEAST)"; icon_state = "borderfloorcorner2"; dir = 6},/obj/effect/floor_decal/corner/beige/bordercorner2{tag = "icon-bordercolorcorner2 (NORTHEAST)"; icon_state = "bordercolorcorner2"; dir = 5},/obj/effect/floor_decal/corner/beige/bordercorner2{tag = "icon-bordercolorcorner2 (SOUTHEAST)"; icon_state = "bordercolorcorner2"; dir = 6},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled,/area/tether/surfacebase/atrium_three) +"bth" = (/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/wood,/area/crew_quarters/bar) +"bti" = (/obj/machinery/disposal,/obj/structure/disposalpipe/trunk{dir = 8},/turf/simulated/floor/wood,/area/crew_quarters/bar) +"btj" = (/obj/effect/floor_decal/corner/grey/diagonal,/obj/structure/table/standard,/obj/item/weapon/material/knife/butch,/turf/simulated/floor/tiled/white,/area/crew_quarters/kitchen) +"btk" = (/obj/effect/floor_decal/corner/grey/diagonal,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 8},/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/tiled/white,/area/crew_quarters/kitchen) +"btl" = (/obj/structure/table/standard,/obj/effect/floor_decal/corner/grey/diagonal,/obj/item/weapon/packageWrap,/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 8},/turf/simulated/floor/tiled/white,/area/crew_quarters/kitchen) +"btm" = (/obj/structure/table/standard,/obj/effect/floor_decal/corner/grey/diagonal,/obj/item/weapon/storage/box/donkpockets{pixel_x = 3; pixel_y = 3},/obj/item/weapon/reagent_containers/glass/beaker{pixel_x = 5},/obj/structure/extinguisher_cabinet{pixel_x = -4; pixel_y = 30},/obj/machinery/button/remote/blast_door{id = "kitchen"; name = "Kitchen shutters"; pixel_x = 8; pixel_y = 25},/turf/simulated/floor/tiled/white,/area/crew_quarters/kitchen) +"btn" = (/obj/structure/table/standard,/obj/effect/floor_decal/corner/grey/diagonal,/obj/effect/floor_decal/corner/grey/diagonal,/obj/item/weapon/reagent_containers/food/snacks/mint,/turf/simulated/floor/tiled/white,/area/crew_quarters/kitchen) +"bto" = (/obj/effect/floor_decal/corner/grey/diagonal,/obj/effect/floor_decal/corner/grey/diagonal,/turf/simulated/floor/tiled/white,/area/crew_quarters/kitchen) +"btp" = (/obj/machinery/cooker/cereal,/obj/effect/floor_decal/industrial/warning/dust{tag = "icon-warning_dust (WEST)"; icon_state = "warning_dust"; dir = 8},/turf/simulated/floor/tiled/white,/area/crew_quarters/kitchen) +"btq" = (/obj/structure/disposalpipe/segment{dir = 4; icon_state = "pipe-c"},/turf/simulated/floor/outdoors/grass/sif/virgo3b,/area/tether/surfacebase/outside/outside3) +"btr" = (/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/outdoors/grass/sif/virgo3b,/area/tether/surfacebase/outside/outside3) +"bts" = (/obj/structure/disposalpipe/segment{dir = 2; icon_state = "pipe-c"},/turf/simulated/floor/outdoors/grass/sif/virgo3b,/area/tether/surfacebase/outside/outside3) +"btt" = (/obj/machinery/door/airlock/glass,/obj/machinery/door/firedoor/glass,/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/tiled/monotile,/area/crew_quarters/bar) +"btu" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/cable/green{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/structure/cable/green{d1 = 2; d2 = 8; icon_state = "2-8"},/turf/simulated/floor/wood,/area/crew_quarters/bar) +"btv" = (/obj/machinery/smartfridge,/turf/simulated/wall,/area/crew_quarters/kitchen) +"btw" = (/obj/machinery/cooker/fryer,/obj/effect/floor_decal/industrial/warning/dust{tag = "icon-warning_dust (WEST)"; icon_state = "warning_dust"; dir = 8},/turf/simulated/floor/tiled/white,/area/crew_quarters/kitchen) +"btx" = (/turf/simulated/wall,/area/rnd/breakroom) +"bty" = (/obj/structure/grille,/obj/structure/window/reinforced{dir = 5; icon_state = "fwindow"},/obj/machinery/door/firedoor,/obj/structure/window/reinforced{dir = 1},/turf/simulated/floor/plating,/area/rnd/breakroom) +"btz" = (/obj/structure/grille,/obj/structure/window/reinforced{dir = 5; icon_state = "fwindow"},/obj/machinery/door/firedoor,/obj/structure/window/reinforced{dir = 1},/obj/structure/disposalpipe/segment,/turf/simulated/floor/plating,/area/rnd/breakroom) +"btA" = (/turf/simulated/wall/r_wall,/area/rnd/breakroom) +"btB" = (/obj/machinery/door/firedoor,/obj/structure/grille,/obj/structure/window/reinforced{dir = 5; icon_state = "fwindow"},/obj/structure/window/reinforced{dir = 1},/obj/structure/disposalpipe/segment,/turf/simulated/floor/plating,/area/rnd/breakroom) +"btC" = (/turf/simulated/wall/r_wall,/area/hallway/lower/third_south) +"btD" = (/obj/structure/grille,/obj/structure/window/reinforced{dir = 5; icon_state = "fwindow"},/obj/machinery/door/firedoor,/obj/structure/window/reinforced{dir = 1},/turf/simulated/floor/plating,/area/hallway/lower/third_south) +"btE" = (/obj/structure/disposalpipe/sortjunction{dir = 1; icon_state = "pipe-j1s"; name = "Bar"; sortType = "Bar"},/turf/simulated/floor/tiled,/area/tether/surfacebase/atrium_three) +"btF" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled,/area/tether/surfacebase/atrium_three) +"btG" = (/obj/structure/bed/chair/wood,/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled,/area/tether/surfacebase/atrium_three) +"btH" = (/obj/structure/flora/pottedplant{icon_state = "plant-22"},/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (EAST)"; icon_state = "borderfloor"; dir = 4},/obj/effect/floor_decal/corner/beige/border{tag = "icon-bordercolor (EAST)"; icon_state = "bordercolor"; dir = 4},/obj/effect/floor_decal/borderfloor/corner2{tag = "icon-borderfloorcorner2 (SOUTHEAST)"; icon_state = "borderfloorcorner2"; dir = 6},/obj/effect/floor_decal/corner/beige/bordercorner2{tag = "icon-bordercolorcorner2 (SOUTHEAST)"; icon_state = "bordercolorcorner2"; dir = 6},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled,/area/tether/surfacebase/atrium_three) +"btI" = (/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 8},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 8},/obj/structure/cable/green{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/structure/disposalpipe/segment{dir = 2; icon_state = "pipe-c"},/turf/simulated/floor/wood,/area/crew_quarters/bar) +"btJ" = (/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/wood,/area/crew_quarters/bar) +"btK" = (/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/firedoor/glass,/obj/machinery/door/airlock/freezer{name = "Kitchen"; req_access = list(28)},/turf/simulated/floor/tiled/white,/area/crew_quarters/kitchen) +"btL" = (/obj/effect/floor_decal/corner/grey/diagonal,/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/white,/area/crew_quarters/kitchen) +"btM" = (/obj/effect/floor_decal/corner/grey/diagonal,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 9},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 9},/obj/structure/cable/green{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/machinery/power/apc{dir = 2; name = "south bump"; pixel_y = -28},/obj/structure/cable/green{icon_state = "0-8"},/turf/simulated/floor/tiled/white,/area/crew_quarters/kitchen) +"btN" = (/obj/machinery/cooker/oven,/obj/effect/floor_decal/industrial/warning/dust{tag = "icon-warning_dust (SOUTHWEST)"; icon_state = "warning_dust"; dir = 10},/turf/simulated/floor/tiled/white,/area/crew_quarters/kitchen) +"btO" = (/obj/structure/bookcase/manuals/research_and_development,/obj/machinery/light/small{dir = 8},/turf/simulated/floor/wood,/area/rnd/breakroom) +"btP" = (/turf/simulated/floor/wood,/area/rnd/breakroom) +"btQ" = (/obj/machinery/camera/network/research,/turf/simulated/floor/wood,/area/rnd/breakroom) +"btR" = (/obj/structure/bed/chair,/obj/machinery/alarm{frequency = 1441; pixel_y = 22},/turf/simulated/floor/wood,/area/rnd/breakroom) +"btS" = (/obj/structure/bed/chair,/obj/machinery/light_switch{pixel_y = 25},/turf/simulated/floor/wood,/area/rnd/breakroom) +"btT" = (/obj/structure/bed/chair,/obj/machinery/power/apc{dir = 1; name = "north bump"; pixel_x = 0; pixel_y = 24},/obj/structure/cable/green{icon_state = "0-4"},/turf/simulated/floor/wood,/area/rnd/breakroom) +"btU" = (/obj/structure/bed/chair,/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/item/device/radio/intercom{dir = 1; name = "Station Intercom (General)"; pixel_y = 21},/turf/simulated/floor/wood,/area/rnd/breakroom) +"btV" = (/obj/structure/cable/green{d1 = 2; d2 = 8; icon_state = "2-8"},/turf/simulated/floor/wood,/area/rnd/breakroom) +"btW" = (/obj/machinery/vending/snack,/obj/structure/disposalpipe/segment,/turf/simulated/floor/wood,/area/rnd/breakroom) +"btX" = (/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{tag = "icon-16-0"; icon_state = "16-0"},/obj/structure/cable{tag = "icon-0-2"; icon_state = "0-2"},/obj/effect/decal/cleanable/dirt,/obj/structure/disposalpipe/up{tag = "icon-pipe-u (NORTH)"; icon_state = "pipe-u"; dir = 1},/turf/simulated/floor/plating,/area/rnd/breakroom) +"btY" = (/turf/simulated/shuttle/wall/voidcraft/green{hard_corner = 1},/area/hallway/lower/third_south) +"btZ" = (/obj/machinery/camera/network/northern_star{tag = "icon-camera (EAST)"; icon_state = "camera"; dir = 4},/turf/simulated/floor/tiled,/area/hallway/lower/third_south) +"bua" = (/obj/machinery/firealarm{dir = 2; layer = 3.3; pixel_x = 0; pixel_y = 26},/obj/machinery/atmospherics/unary/vent_scrubber/on,/turf/simulated/floor/tiled,/area/hallway/lower/third_south) +"bub" = (/turf/simulated/floor/tiled,/area/hallway/lower/third_south) +"buc" = (/obj/machinery/light{dir = 1},/turf/simulated/floor/tiled,/area/hallway/lower/third_south) +"bud" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/computer/guestpass{dir = 4; pixel_x = -28; pixel_y = 0},/obj/structure/disposalpipe/segment,/turf/simulated/floor/wood,/area/crew_quarters/bar) +"bue" = (/obj/structure/table/bench/wooden,/turf/simulated/floor/wood,/area/crew_quarters/bar) +"buf" = (/obj/structure/table/bench/wooden,/obj/machinery/camera/network/civilian{tag = "icon-camera (NORTHWEST)"; icon_state = "camera"; dir = 9},/turf/simulated/floor/wood,/area/crew_quarters/bar) +"bug" = (/obj/effect/floor_decal/corner/grey/diagonal,/obj/machinery/door/blast/shutters{dir = 2; id = "kitchen"; layer = 3.3; name = "Kitchen Shutters"},/obj/machinery/door/firedoor/glass,/turf/simulated/floor/tiled/white,/area/crew_quarters/kitchen) +"buh" = (/obj/structure/table/reinforced,/obj/effect/floor_decal/corner/grey/diagonal,/obj/machinery/chemical_dispenser/bar_soft/full,/obj/machinery/door/blast/shutters{dir = 2; id = "kitchen"; layer = 3.3; name = "Kitchen Shutters"},/obj/machinery/door/firedoor/glass,/turf/simulated/floor/tiled/white,/area/crew_quarters/kitchen) +"bui" = (/obj/machinery/door/blast/shutters{dir = 2; id = "kitchen"; layer = 3.3; name = "Kitchen Shutters"},/obj/effect/floor_decal/corner/grey/diagonal,/obj/machinery/door/firedoor/glass,/turf/simulated/floor/tiled/white,/area/crew_quarters/kitchen) +"buj" = (/obj/structure/table/reinforced,/obj/effect/floor_decal/corner/grey/diagonal,/obj/machinery/door/blast/shutters{dir = 2; id = "kitchen"; layer = 3.3; name = "Kitchen Shutters"},/obj/machinery/door/firedoor/glass,/turf/simulated/floor/tiled/white,/area/crew_quarters/kitchen) +"buk" = (/obj/structure/grille,/obj/structure/window/reinforced{dir = 5; icon_state = "fwindow"},/obj/machinery/door/firedoor,/obj/structure/window/reinforced{dir = 8},/turf/simulated/floor/plating,/area/rnd/breakroom) +"bul" = (/obj/structure/bed/chair/comfy,/turf/simulated/floor/wood,/area/rnd/breakroom) +"bum" = (/obj/structure/table/glass,/turf/simulated/floor/wood,/area/rnd/breakroom) +"bun" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/disposalpipe/segment{dir = 4; icon_state = "pipe-c"},/turf/simulated/floor/wood,/area/rnd/breakroom) +"buo" = (/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/wood,/area/rnd/breakroom) +"bup" = (/obj/machinery/vending/cola,/obj/structure/disposalpipe/segment{dir = 8; icon_state = "pipe-c"},/turf/simulated/floor/wood,/area/rnd/breakroom) +"buq" = (/obj/machinery/atmospherics/pipe/simple/visible/supply,/obj/machinery/atmospherics/pipe/simple/visible/scrubbers,/obj/machinery/atmospherics/pipe/simple/visible,/obj/structure/cable{tag = "icon-1-2"; icon_state = "1-2"},/obj/effect/decal/cleanable/dirt,/obj/effect/floor_decal/rust,/turf/simulated/floor/plating,/area/rnd/breakroom) +"bur" = (/turf/simulated/floor/holofloor/tiled/dark,/area/hallway/lower/third_south) +"bus" = (/obj/machinery/status_display{pixel_y = 30},/turf/simulated/floor/tiled,/area/hallway/lower/third_south) +"but" = (/obj/structure/disposalpipe/segment{dir = 4; icon_state = "pipe-c"},/turf/simulated/floor/tiled,/area/hallway/lower/third_south) +"buu" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled,/area/hallway/lower/third_south) +"buv" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 6},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 6},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled,/area/hallway/lower/third_south) +"buw" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled,/area/hallway/lower/third_south) +"bux" = (/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/hallway/lower/third_south) +"buy" = (/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 4},/obj/structure/disposalpipe/segment{dir = 8; icon_state = "pipe-c"},/turf/simulated/floor/tiled,/area/tether/surfacebase/atrium_three) +"buz" = (/obj/structure/railing{dir = 8},/obj/structure/railing,/turf/simulated/open,/area/tether/surfacebase/atrium_three) +"buA" = (/obj/structure/railing,/turf/simulated/open,/area/tether/surfacebase/atrium_three) +"buB" = (/obj/structure/railing,/obj/structure/railing{dir = 4},/turf/simulated/open,/area/tether/surfacebase/atrium_three) +"buC" = (/obj/structure/bed/chair/wood{dir = 1},/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/corner/beige/border,/obj/effect/floor_decal/borderfloor/corner2,/obj/effect/floor_decal/corner/beige/bordercorner2,/turf/simulated/floor/tiled,/area/tether/surfacebase/atrium_three) +"buD" = (/obj/machinery/light/flamp/noshade{pixel_x = -8; pixel_y = 22},/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (SOUTHEAST)"; icon_state = "borderfloor"; dir = 6},/obj/effect/floor_decal/corner/beige/border{tag = "icon-bordercolor (SOUTHEAST)"; icon_state = "bordercolor"; dir = 6},/obj/item/device/radio/intercom{dir = 4; name = "Station Intercom (General)"; pixel_x = 21},/turf/simulated/floor/tiled,/area/tether/surfacebase/atrium_three) +"buE" = (/obj/machinery/light{icon_state = "tube1"; dir = 8},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/disposalpipe/segment,/turf/simulated/floor/wood,/area/crew_quarters/bar) +"buF" = (/obj/structure/table/woodentable,/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 8},/turf/simulated/floor/wood,/area/crew_quarters/bar) +"buG" = (/obj/structure/table/woodentable,/turf/simulated/floor/wood,/area/crew_quarters/bar) +"buH" = (/obj/structure/table/marble,/obj/effect/floor_decal/spline/plain{dir = 8},/turf/simulated/floor/tiled/white,/area/crew_quarters/bar) +"buI" = (/turf/simulated/floor/tiled/white,/area/crew_quarters/bar) +"buJ" = (/obj/machinery/computer/security/telescreen/entertainment{icon_state = "frame"; pixel_x = 0; pixel_y = 32},/turf/simulated/floor/tiled/white,/area/crew_quarters/bar) +"buK" = (/obj/machinery/light{dir = 4; icon_state = "tube1"},/turf/simulated/floor/tiled/white,/area/crew_quarters/bar) +"buL" = (/obj/structure/bed/chair/comfy{tag = "icon-comfychair_preview (WEST)"; icon_state = "comfychair_preview"; dir = 8},/turf/simulated/floor/wood,/area/rnd/breakroom) +"buM" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/disposalpipe/segment,/turf/simulated/floor/wood,/area/rnd/breakroom) +"buN" = (/obj/machinery/vending/coffee,/turf/simulated/floor/wood,/area/rnd/breakroom) +"buO" = (/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{tag = "icon-32-1"; icon_state = "32-1"},/obj/structure/disposalpipe/down,/obj/machinery/door/firedoor/glass,/turf/simulated/open,/area/rnd/breakroom) +"buP" = (/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled,/area/hallway/lower/third_south) +"buQ" = (/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 6},/turf/simulated/floor/tiled,/area/hallway/lower/third_south) +"buR" = (/obj/machinery/atmospherics/pipe/manifold/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 9},/obj/structure/disposalpipe/segment{dir = 4; icon_state = "pipe-c"},/turf/simulated/floor/tiled,/area/hallway/lower/third_south) +"buS" = (/obj/machinery/atmospherics/unary/vent_pump/on{dir = 8},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled,/area/hallway/lower/third_south) +"buT" = (/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled,/area/hallway/lower/third_south) +"buU" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled,/area/tether/surfacebase/atrium_three) +"buV" = (/obj/structure/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/effect/floor_decal/corner_steel_grid{tag = "icon-steel_grid (EAST)"; icon_state = "steel_grid"; dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled,/area/tether/surfacebase/atrium_three) +"buW" = (/obj/structure/cable{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/effect/floor_decal/steeldecal/steel_decals7{tag = "icon-steel_decals7 (NORTH)"; icon_state = "steel_decals7"; dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals7{tag = "icon-steel_decals7 (WEST)"; icon_state = "steel_decals7"; dir = 8},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled,/area/tether/surfacebase/atrium_three) +"buX" = (/obj/effect/floor_decal/steeldecal/steel_decals7{tag = "icon-steel_decals7 (NORTH)"; icon_state = "steel_decals7"; dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals7{tag = "icon-steel_decals7 (WEST)"; icon_state = "steel_decals7"; dir = 8},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled,/area/tether/surfacebase/atrium_three) +"buY" = (/obj/effect/floor_decal/corner_steel_grid{tag = "icon-steel_grid (NORTH)"; icon_state = "steel_grid"; dir = 1},/obj/structure/disposalpipe/segment{dir = 8; icon_state = "pipe-c"},/turf/simulated/floor/tiled,/area/tether/surfacebase/atrium_three) +"buZ" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 6},/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled,/area/tether/surfacebase/atrium_three) +"bva" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/unary/vent_pump/on{dir = 8},/turf/simulated/floor/tiled,/area/tether/surfacebase/atrium_three) +"bvb" = (/obj/structure/sign/directions/evac{tag = "icon-direction_evac (WEST)"; icon_state = "direction_evac"; dir = 8},/turf/simulated/wall,/area/crew_quarters/bar) +"bvc" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/disposalpipe/segment,/turf/simulated/floor/wood,/area/crew_quarters/bar) +"bvd" = (/obj/structure/table/marble,/turf/simulated/floor/tiled/white,/area/crew_quarters/bar) +"bve" = (/obj/structure/table/marble,/obj/item/device/radio/intercom{dir = 4; name = "Station Intercom (General)"; pixel_x = 21},/turf/simulated/floor/tiled/white,/area/crew_quarters/bar) +"bvf" = (/obj/structure/bed/chair/comfy{tag = "icon-comfychair_preview (NORTH)"; icon_state = "comfychair_preview"; dir = 1},/turf/simulated/floor/wood,/area/rnd/breakroom) +"bvg" = (/obj/structure/bed/chair{dir = 1},/turf/simulated/floor/wood,/area/rnd/breakroom) +"bvh" = (/obj/machinery/vending/fitness,/turf/simulated/floor/wood,/area/rnd/breakroom) +"bvi" = (/obj/effect/decal/cleanable/dirt,/obj/effect/floor_decal/rust,/obj/structure/railing,/obj/structure/disposalpipe/segment,/turf/simulated/floor/plating,/area/rnd/breakroom) +"bvj" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/tiled,/area/hallway/lower/third_south) +"bvk" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 5},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 5},/turf/simulated/floor/tiled,/area/tether/surfacebase/atrium_three) +"bvl" = (/obj/structure/cable{tag = "icon-1-2"; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/disposalpipe/segment{dir = 4; icon_state = "pipe-c"},/turf/simulated/floor/tiled,/area/tether/surfacebase/atrium_three) +"bvm" = (/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 1},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 1},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled,/area/tether/surfacebase/atrium_three) +"bvn" = (/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/atrium_three) +"bvo" = (/obj/effect/landmark{name = "JoinLateElevator"},/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/atrium_three) +"bvp" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 9},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 10},/obj/structure/disposalpipe/junction{dir = 1; icon_state = "pipe-j2"},/turf/simulated/floor/tiled,/area/tether/surfacebase/atrium_three) +"bvq" = (/obj/structure/grille,/obj/structure/window/reinforced{dir = 5; icon_state = "fwindow"},/obj/machinery/door/firedoor,/turf/simulated/floor/plating,/area/crew_quarters/bar) +"bvr" = (/obj/structure/table/bench/wooden,/obj/machinery/light{dir = 1},/turf/simulated/floor/wood,/area/crew_quarters/bar) +"bvs" = (/obj/structure/table/bench/wooden,/obj/machinery/status_display{pixel_y = 30},/turf/simulated/floor/wood,/area/crew_quarters/bar) +"bvt" = (/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/bar) +"bvu" = (/obj/item/weapon/stool/padded,/turf/simulated/floor/tiled/white,/area/crew_quarters/bar) +"bvv" = (/obj/structure/grille,/obj/structure/window/reinforced{dir = 5; icon_state = "fwindow"},/obj/machinery/door/firedoor,/obj/structure/window/reinforced{dir = 4},/turf/simulated/floor/plating,/area/crew_quarters/bar) +"bvw" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 6},/turf/simulated/floor/wood,/area/rnd/breakroom) +"bvx" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 6},/turf/simulated/floor/wood,/area/rnd/breakroom) +"bvy" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/turf/simulated/floor/wood,/area/rnd/breakroom) +"bvz" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 10},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 10},/obj/structure/disposalpipe/segment,/turf/simulated/floor/wood,/area/rnd/breakroom) +"bvA" = (/obj/structure/disposalpipe/segment{dir = 4; icon_state = "pipe-c"},/turf/simulated/floor/wood,/area/rnd/breakroom) +"bvB" = (/obj/machinery/door/airlock/maintenance/rnd,/obj/machinery/door/firedoor/glass,/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/plating,/area/rnd/breakroom) +"bvC" = (/obj/effect/decal/cleanable/dirt,/obj/structure/disposalpipe/segment{dir = 8; icon_state = "pipe-c"},/turf/simulated/floor/plating,/area/rnd/breakroom) +"bvD" = (/obj/machinery/light,/turf/simulated/floor/tiled,/area/hallway/lower/third_south) +"bvE" = (/obj/item/device/radio/intercom{name = "Station Intercom (General)"; pixel_y = -21},/turf/simulated/floor/tiled,/area/hallway/lower/third_south) +"bvF" = (/obj/machinery/camera/network/northern_star{tag = "icon-camera (NORTH)"; icon_state = "camera"; dir = 1},/turf/simulated/floor/tiled,/area/tether/surfacebase/atrium_three) +"bvG" = (/obj/structure/cable{tag = "icon-1-2"; icon_state = "1-2"},/obj/structure/cable{icon_state = "2-4"},/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled,/area/tether/surfacebase/atrium_three) +"bvH" = (/obj/machinery/computer/guestpass{dir = 1; icon_state = "guest"; pixel_y = -28; tag = "icon-guest (NORTH)"},/obj/structure/cable{tag = "icon-4-8"; icon_state = "4-8"},/turf/simulated/floor/tiled,/area/tether/surfacebase/atrium_three) +"bvI" = (/obj/effect/floor_decal/industrial/warning/corner,/obj/structure/cable{tag = "icon-4-8"; icon_state = "4-8"},/turf/simulated/floor/tiled,/area/tether/surfacebase/atrium_three) +"bvJ" = (/obj/effect/floor_decal/industrial/warning,/obj/structure/cable{tag = "icon-4-8"; icon_state = "4-8"},/turf/simulated/floor/tiled,/area/tether/surfacebase/atrium_three) +"bvK" = (/obj/effect/floor_decal/industrial/warning/corner{dir = 8},/obj/structure/cable{tag = "icon-4-8"; icon_state = "4-8"},/turf/simulated/floor/tiled,/area/tether/surfacebase/atrium_three) +"bvL" = (/obj/structure/cable{tag = "icon-2-8"; icon_state = "2-8"},/turf/simulated/floor/tiled,/area/tether/surfacebase/atrium_three) +"bvM" = (/obj/item/device/radio/intercom{name = "Station Intercom (General)"; pixel_y = -21},/turf/simulated/floor/tiled,/area/tether/surfacebase/atrium_three) +"bvN" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 5},/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled,/area/tether/surfacebase/atrium_three) +"bvO" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 8},/turf/simulated/floor/tiled,/area/tether/surfacebase/atrium_three) +"bvP" = (/obj/structure/table/woodentable,/obj/item/weapon/reagent_containers/food/drinks/glass2/pint,/turf/simulated/floor/wood,/area/crew_quarters/bar) +"bvQ" = (/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/bar) +"bvR" = (/obj/effect/floor_decal/corner/beige{dir = 10},/obj/effect/floor_decal/spline/plain,/turf/simulated/floor/tiled/white,/area/crew_quarters/bar) +"bvS" = (/obj/structure/flora/pottedplant{icon_state = "plant-22"},/obj/machinery/requests_console{department = "Science"; departmentType = 2; name = "Science Requests Console"; pixel_x = -30; pixel_y = 0},/turf/simulated/floor/wood,/area/rnd/breakroom) +"bvT" = (/obj/structure/table/glass,/obj/machinery/microwave,/obj/machinery/atmospherics/unary/vent_pump/on{dir = 1},/turf/simulated/floor/wood,/area/rnd/breakroom) +"bvU" = (/obj/machinery/light,/obj/structure/table/glass,/obj/item/weapon/storage/box/donkpockets,/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 1},/turf/simulated/floor/wood,/area/rnd/breakroom) +"bvV" = (/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/wood,/area/rnd/breakroom) +"bvW" = (/obj/machinery/light,/obj/structure/disposalpipe/segment,/turf/simulated/floor/wood,/area/rnd/breakroom) +"bvX" = (/obj/structure/disposalpipe/segment{dir = 4; icon_state = "pipe-c"},/obj/machinery/vending/cigarette,/turf/simulated/floor/wood,/area/rnd/breakroom) +"bvY" = (/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{dir = 5; icon_state = "fwindow"},/obj/machinery/door/firedoor/glass,/turf/simulated/floor/plating,/area/rnd/breakroom) +"bvZ" = (/obj/effect/decal/cleanable/dirt,/obj/structure/disposalpipe/up{tag = "icon-pipe-u (WEST)"; icon_state = "pipe-u"; dir = 8},/obj/effect/floor_decal/industrial/outline/yellow,/obj/structure/railing{dir = 1},/turf/simulated/floor/plating,/area/rnd/breakroom) +"bwa" = (/obj/structure/flora/pottedplant{icon_state = "plant-22"},/turf/simulated/floor/tiled,/area/hallway/lower/third_south) +"bwb" = (/obj/structure/sign/directions/evac{tag = "icon-direction_evac (NORTH)"; icon_state = "direction_evac"; dir = 1},/turf/simulated/wall,/area/maintenance/lower/atrium) +"bwc" = (/turf/simulated/wall,/area/maintenance/lower/atrium) +"bwd" = (/obj/machinery/door/firedoor/glass,/obj/structure/cable{tag = "icon-1-2"; icon_state = "1-2"},/obj/structure/disposalpipe/segment,/obj/machinery/door/airlock/maintenance/common,/turf/simulated/floor/plating,/area/maintenance/lower/atrium) +"bwe" = (/obj/structure/grille,/obj/structure/railing{dir = 1},/turf/simulated/floor/tiled/techmaint,/area/tether/surfacebase/atrium_three) +"bwf" = (/obj/machinery/door/airlock/maintenance/int{name = "Emergency Storage"},/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0},/turf/simulated/floor/plating,/area/maintenance/lower/atrium) +"bwg" = (/obj/structure/sign/directions/medical{tag = "icon-direction_med (EAST)"; icon_state = "direction_med"; dir = 4; pixel_y = 8},/obj/structure/sign/directions/science{tag = "icon-direction_sci (WEST)"; icon_state = "direction_sci"; dir = 8; pixel_y = 3},/obj/structure/sign/directions/security{tag = "icon-direction_sec (WEST)"; icon_state = "direction_sec"; dir = 8; pixel_y = -4},/obj/structure/sign/directions/engineering{tag = "icon-direction_eng (WEST)"; icon_state = "direction_eng"; dir = 8; pixel_y = -10},/turf/simulated/wall,/area/maintenance/lower/atrium) +"bwh" = (/obj/machinery/door/airlock/maintenance/common,/obj/machinery/door/firedoor/glass,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/plating,/area/maintenance/lower/atrium) +"bwi" = (/turf/simulated/wall,/area/hydroponics) +"bwj" = (/obj/structure/grille,/obj/structure/window/reinforced{dir = 5; icon_state = "fwindow"},/obj/machinery/door/firedoor,/obj/structure/disposalpipe/segment,/turf/simulated/floor/plating,/area/hydroponics) +"bwk" = (/obj/structure/grille,/obj/structure/window/reinforced{dir = 5; icon_state = "fwindow"},/obj/machinery/door/firedoor,/turf/simulated/floor/plating,/area/hydroponics) +"bwl" = (/obj/structure/extinguisher_cabinet{dir = 4; icon_state = "extinguisher_closed"; pixel_x = -30; tag = "icon-extinguisher_closed (EAST)"},/turf/simulated/floor/tiled,/area/hallway/lower/third_south) +"bwm" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/tiled,/area/hallway/lower/third_south) +"bwn" = (/obj/structure/closet/firecloset,/turf/simulated/floor/wood,/area/crew_quarters/bar) +"bwo" = (/obj/structure/grille,/obj/structure/window/reinforced{dir = 5; icon_state = "fwindow"},/obj/machinery/door/firedoor,/turf/simulated/floor/plating,/area/rnd/breakroom) +"bwp" = (/obj/machinery/door/firedoor/glass,/obj/machinery/door/airlock/glass_research{name = "Research Lounge"; req_access = list(47)},/turf/simulated/floor/tiled,/area/rnd/breakroom) +"bwq" = (/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,/obj/machinery/door/airlock/glass_research{name = "Research Lounge"; req_access = list(47)},/turf/simulated/floor/tiled,/area/rnd/breakroom) +"bwr" = (/obj/structure/grille,/obj/structure/window/reinforced{dir = 5; icon_state = "fwindow"},/obj/machinery/door/firedoor,/obj/structure/disposalpipe/segment,/turf/simulated/floor/plating,/area/rnd/breakroom) +"bws" = (/turf/simulated/wall/r_wall,/area/rnd/reception_desk) +"bwt" = (/turf/simulated/wall,/area/rnd/reception_desk) +"bwu" = (/obj/machinery/door/firedoor/glass/hidden/steel{dir = 2},/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled,/area/hallway/lower/third_south) +"bwv" = (/obj/machinery/door/firedoor/glass/hidden/steel{dir = 2},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/tiled,/area/hallway/lower/third_south) +"bww" = (/obj/structure/table/rack,/obj/item/weapon/reagent_containers/food/drinks/bottle/gin,/obj/random/action_figure,/obj/random/maintenance/research,/obj/random/maintenance/research,/turf/simulated/floor/plating,/area/maintenance/lower/atrium) +"bwx" = (/obj/machinery/alarm{frequency = 1441; pixel_y = 22},/turf/simulated/floor/plating,/area/maintenance/lower/atrium) +"bwy" = (/obj/effect/decal/cleanable/blood/splatter,/turf/simulated/floor/plating,/area/maintenance/lower/atrium) +"bwz" = (/obj/structure/closet,/obj/random/maintenance/research,/obj/random/maintenance/clean,/obj/random/maintenance/research,/turf/simulated/floor/plating,/area/maintenance/lower/atrium) +"bwA" = (/obj/machinery/light/small{dir = 4},/turf/simulated/floor/plating,/area/maintenance/lower/atrium) +"bwB" = (/obj/structure/cable{tag = "icon-1-2"; icon_state = "1-2"},/obj/effect/decal/cleanable/dirt,/obj/structure/disposalpipe/segment,/turf/simulated/floor/plating,/area/maintenance/lower/atrium) +"bwC" = (/obj/effect/decal/cleanable/dirt,/obj/structure/closet/crate,/obj/random/maintenance/clean,/obj/random/maintenance/medical,/obj/random/maintenance/engineering,/turf/simulated/floor/plating,/area/maintenance/lower/atrium) +"bwD" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0},/turf/simulated/floor/plating,/area/maintenance/lower/atrium) +"bwE" = (/obj/effect/decal/cleanable/dirt,/obj/structure/closet/crate,/obj/random/maintenance/clean,/obj/random/maintenance/cargo,/obj/random/maintenance/engineering,/turf/simulated/floor/plating,/area/maintenance/lower/atrium) +"bwF" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/plating,/area/maintenance/lower/atrium) +"bwG" = (/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (NORTHWEST)"; icon_state = "borderfloor"; dir = 9},/obj/structure/closet/secure_closet/hydroponics,/obj/effect/floor_decal/corner/lime/border{tag = "icon-bordercolor (NORTHWEST)"; icon_state = "bordercolor"; dir = 9},/turf/simulated/floor/tiled,/area/hydroponics) +"bwH" = (/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (NORTH)"; icon_state = "borderfloor"; dir = 1},/obj/effect/floor_decal/corner/lime/border{tag = "icon-bordercolor (NORTH)"; icon_state = "bordercolor"; dir = 1},/obj/structure/disposalpipe/segment,/obj/machinery/smartfridge,/turf/simulated/floor/tiled,/area/hydroponics) +"bwI" = (/obj/machinery/honey_extractor,/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (NORTH)"; icon_state = "borderfloor"; dir = 1},/obj/effect/floor_decal/corner/lime/border{tag = "icon-bordercolor (NORTH)"; icon_state = "bordercolor"; dir = 1},/turf/simulated/floor/tiled,/area/hydroponics) +"bwJ" = (/obj/machinery/smartfridge/drying_rack,/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (NORTH)"; icon_state = "borderfloor"; dir = 1},/obj/effect/floor_decal/corner/lime/border{tag = "icon-bordercolor (NORTH)"; icon_state = "bordercolor"; dir = 1},/turf/simulated/floor/tiled,/area/hydroponics) +"bwK" = (/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/crowbar,/obj/item/bee_smoker,/obj/item/beehive_assembly,/obj/structure/closet/crate/hydroponics{desc = "All you need to start your own honey farm."; name = "beekeeping crate"},/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (NORTH)"; icon_state = "borderfloor"; dir = 1},/obj/effect/floor_decal/corner/lime/border{tag = "icon-bordercolor (NORTH)"; icon_state = "bordercolor"; dir = 1},/turf/simulated/floor/tiled,/area/hydroponics) +"bwL" = (/obj/machinery/vending/hydronutrients,/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (NORTHEAST)"; icon_state = "borderfloor"; dir = 5},/obj/effect/floor_decal/corner/lime/border{tag = "icon-bordercolor (NORTHEAST)"; icon_state = "bordercolor"; dir = 5},/turf/simulated/floor/tiled,/area/hydroponics) +"bwM" = (/obj/structure/sign/directions/evac{tag = "icon-direction_evac (NORTH)"; icon_state = "direction_evac"; dir = 1},/turf/simulated/wall,/area/hydroponics) +"bwN" = (/obj/structure/flora/pottedplant{icon_state = "plant-22"},/turf/simulated/floor/wood,/area/crew_quarters/bar) +"bwO" = (/obj/structure/flora/pottedplant{icon_state = "plant-22"},/obj/machinery/status_display{pixel_y = 30},/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (NORTHWEST)"; icon_state = "borderfloor"; dir = 9},/obj/effect/floor_decal/corner/mauve/border{tag = "icon-bordercolor (NORTHWEST)"; icon_state = "bordercolor"; dir = 9},/turf/simulated/floor/tiled,/area/rnd/research) +"bwP" = (/obj/machinery/atmospherics/unary/vent_pump/on,/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (NORTH)"; icon_state = "borderfloor"; dir = 1},/obj/effect/floor_decal/corner/mauve/border{tag = "icon-bordercolor (NORTH)"; icon_state = "bordercolor"; dir = 1},/turf/simulated/floor/tiled,/area/rnd/research) +"bwQ" = (/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (NORTH)"; icon_state = "borderfloor"; dir = 1},/obj/effect/floor_decal/corner/mauve/border{tag = "icon-bordercolor (NORTH)"; icon_state = "bordercolor"; dir = 1},/obj/effect/floor_decal/borderfloor/corner2{tag = "icon-borderfloorcorner2 (NORTH)"; icon_state = "borderfloorcorner2"; dir = 1},/obj/effect/floor_decal/corner/mauve/bordercorner2{tag = "icon-bordercolorcorner2 (NORTH)"; icon_state = "bordercolorcorner2"; dir = 1},/turf/simulated/floor/tiled,/area/rnd/research) +"bwR" = (/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (NORTH)"; icon_state = "borderfloor"; dir = 1},/obj/effect/floor_decal/corner/mauve/border{tag = "icon-bordercolor (NORTH)"; icon_state = "bordercolor"; dir = 1},/obj/effect/floor_decal/borderfloor/corner2{tag = "icon-borderfloorcorner2 (EAST)"; icon_state = "borderfloorcorner2"; dir = 4},/obj/effect/floor_decal/corner/mauve/bordercorner2{tag = "icon-bordercolorcorner2 (EAST)"; icon_state = "bordercolorcorner2"; dir = 4},/turf/simulated/floor/tiled,/area/rnd/research) +"bwS" = (/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (NORTH)"; icon_state = "borderfloor"; dir = 1},/obj/effect/floor_decal/corner/mauve/border{tag = "icon-bordercolor (NORTH)"; icon_state = "bordercolor"; dir = 1},/obj/machinery/camera/network/research,/turf/simulated/floor/tiled,/area/rnd/research) +"bwT" = (/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (NORTH)"; icon_state = "borderfloor"; dir = 1},/obj/effect/floor_decal/corner/mauve/border{tag = "icon-bordercolor (NORTH)"; icon_state = "bordercolor"; dir = 1},/turf/simulated/floor/tiled,/area/rnd/research) +"bwU" = (/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,/area/rnd/research) +"bwV" = (/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (NORTH)"; icon_state = "borderfloor"; dir = 1},/obj/effect/floor_decal/corner/mauve/border{tag = "icon-bordercolor (NORTH)"; icon_state = "bordercolor"; dir = 1},/obj/effect/floor_decal/borderfloor/corner2{tag = "icon-borderfloorcorner2 (EAST)"; icon_state = "borderfloorcorner2"; dir = 4},/obj/effect/floor_decal/corner/mauve/bordercorner2{tag = "icon-bordercolorcorner2 (EAST)"; icon_state = "bordercolorcorner2"; dir = 4},/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled,/area/rnd/research) +"bwW" = (/obj/machinery/atmospherics/unary/vent_scrubber/on,/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (NORTH)"; icon_state = "borderfloor"; dir = 1},/obj/effect/floor_decal/corner/mauve/border{tag = "icon-bordercolor (NORTH)"; icon_state = "bordercolor"; dir = 1},/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled,/area/rnd/research) +"bwX" = (/obj/structure/flora/pottedplant{icon_state = "plant-22"},/obj/machinery/newscaster{pixel_x = 0; pixel_y = 30},/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (NORTHEAST)"; icon_state = "borderfloor"; dir = 5},/obj/effect/floor_decal/corner/mauve/border{tag = "icon-bordercolor (NORTHEAST)"; icon_state = "bordercolor"; dir = 5},/turf/simulated/floor/tiled,/area/rnd/research) +"bwY" = (/obj/structure/grille,/obj/structure/window/reinforced{dir = 5; icon_state = "fwindow"},/obj/machinery/door/firedoor,/turf/simulated/floor/plating,/area/rnd/research) +"bwZ" = (/obj/structure/table/glass,/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (NORTHWEST)"; icon_state = "borderfloor"; dir = 9},/obj/effect/floor_decal/corner/mauve/border{tag = "icon-bordercolor (NORTHWEST)"; icon_state = "bordercolor"; dir = 9},/obj/machinery/camera/network/research,/turf/simulated/floor/tiled,/area/rnd/reception_desk) +"bxa" = (/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (NORTH)"; icon_state = "borderfloor"; dir = 1},/obj/effect/floor_decal/corner/mauve/border{tag = "icon-bordercolor (NORTH)"; icon_state = "bordercolor"; dir = 1},/obj/machinery/power/apc{dir = 1; name = "north bump"; pixel_x = 0; pixel_y = 28},/obj/structure/cable/green{d2 = 2; icon_state = "0-2"},/turf/simulated/floor/tiled,/area/rnd/reception_desk) +"bxb" = (/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (NORTH)"; icon_state = "borderfloor"; dir = 1},/obj/effect/floor_decal/corner/mauve/border{tag = "icon-bordercolor (NORTH)"; icon_state = "bordercolor"; dir = 1},/obj/machinery/firealarm{dir = 2; layer = 3.3; pixel_x = 0; pixel_y = 26},/turf/simulated/floor/tiled,/area/rnd/reception_desk) +"bxc" = (/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (NORTH)"; icon_state = "borderfloor"; dir = 1},/obj/effect/floor_decal/corner/mauve/border{tag = "icon-bordercolor (NORTH)"; icon_state = "bordercolor"; dir = 1},/obj/machinery/light_switch{pixel_y = 25},/turf/simulated/floor/tiled,/area/rnd/reception_desk) +"bxd" = (/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (NORTH)"; icon_state = "borderfloor"; dir = 1},/obj/effect/floor_decal/corner/mauve/border{tag = "icon-bordercolor (NORTH)"; icon_state = "bordercolor"; dir = 1},/obj/machinery/alarm{frequency = 1441; pixel_y = 22},/turf/simulated/floor/tiled,/area/rnd/reception_desk) +"bxe" = (/obj/structure/table/glass,/obj/item/weapon/storage/firstaid/regular,/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (NORTHEAST)"; icon_state = "borderfloor"; dir = 5},/obj/effect/floor_decal/corner/mauve/border{tag = "icon-bordercolor (NORTHEAST)"; icon_state = "bordercolor"; dir = 5},/obj/structure/extinguisher_cabinet{pixel_y = 30},/turf/simulated/floor/tiled,/area/rnd/reception_desk) +"bxf" = (/obj/machinery/door/airlock/maintenance/rnd,/obj/machinery/door/firedoor/glass,/turf/simulated/floor/plating,/area/maintenance/lower/atrium) +"bxg" = (/turf/simulated/floor/plating,/area/maintenance/lower/atrium) +"bxh" = (/obj/machinery/door/airlock/maintenance/common,/obj/machinery/door/firedoor/glass,/turf/simulated/floor/plating,/area/maintenance/lower/atrium) +"bxi" = (/obj/effect/decal/cleanable/dirt,/obj/structure/closet,/obj/random/maintenance/clean,/obj/random/maintenance/clean,/obj/random/junk,/obj/random/maintenance/engineering,/turf/simulated/floor/plating,/area/maintenance/lower/atrium) +"bxj" = (/obj/effect/decal/cleanable/dirt,/obj/structure/closet,/obj/random/maintenance/clean,/obj/random/maintenance/medical,/obj/random/junk,/obj/random/maintenance/medical,/turf/simulated/floor/plating,/area/maintenance/lower/atrium) +"bxk" = (/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (WEST)"; icon_state = "borderfloor"; dir = 8},/obj/effect/floor_decal/corner/lime/border{tag = "icon-bordercolor (WEST)"; icon_state = "bordercolor"; dir = 8},/obj/machinery/alarm{dir = 4; icon_state = "alarm0"; pixel_x = -22; pixel_y = 0},/turf/simulated/floor/tiled,/area/hydroponics) +"bxl" = (/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled,/area/hydroponics) +"bxm" = (/turf/simulated/floor/tiled,/area/hydroponics) +"bxn" = (/obj/machinery/seed_storage/garden,/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (EAST)"; icon_state = "borderfloor"; dir = 4},/obj/effect/floor_decal/corner/lime/border{tag = "icon-bordercolor (EAST)"; icon_state = "bordercolor"; dir = 4},/turf/simulated/floor/tiled,/area/hydroponics) +"bxo" = (/obj/machinery/door/firedoor/glass/hidden/steel{dir = 1},/turf/simulated/floor/tiled,/area/hallway/lower/third_south) +"bxp" = (/obj/machinery/door/firedoor/glass/hidden/steel{dir = 1},/obj/structure/disposalpipe/segment{dir = 1; icon_state = "pipe-c"},/turf/simulated/floor/tiled,/area/hallway/lower/third_south) +"bxq" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/door/firedoor/glass/hidden/steel{dir = 1},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled,/area/hallway/lower/third_south) +"bxr" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 8},/obj/structure/disposalpipe/segment,/turf/simulated/floor/wood,/area/crew_quarters/bar) +"bxs" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/wood,/area/crew_quarters/bar) +"bxt" = (/obj/structure/table/bench/wooden,/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/wood,/area/crew_quarters/bar) +"bxu" = (/obj/structure/table/woodentable,/obj/item/weapon/reagent_containers/food/drinks/glass2/pint,/obj/machinery/atmospherics/unary/vent_pump/on{dir = 8},/turf/simulated/floor/wood,/area/crew_quarters/bar) +"bxv" = (/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 4},/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (WEST)"; icon_state = "borderfloor"; dir = 8},/obj/effect/floor_decal/corner/mauve/border{tag = "icon-bordercolor (WEST)"; icon_state = "bordercolor"; dir = 8},/turf/simulated/floor/tiled,/area/rnd/research) +"bxw" = (/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 1},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 8},/obj/structure/disposalpipe/segment{dir = 4; icon_state = "pipe-c"},/turf/simulated/floor/tiled,/area/rnd/research) +"bxx" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled,/area/rnd/research) +"bxy" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/manifold/hidden/supply,/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,/obj/structure/disposalpipe/sortjunction{name = "Research"; sortType = "Research"},/turf/simulated/floor/tiled,/area/rnd/research) +"bxz" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled,/area/rnd/research) +"bxA" = (/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 1},/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled,/area/rnd/research) +"bxB" = (/obj/machinery/atmospherics/unary/vent_pump/on{dir = 8},/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (EAST)"; icon_state = "borderfloor"; dir = 4},/obj/effect/floor_decal/corner/mauve/border{tag = "icon-bordercolor (EAST)"; icon_state = "bordercolor"; dir = 4},/turf/simulated/floor/tiled,/area/rnd/research) +"bxC" = (/obj/structure/table/glass,/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (WEST)"; icon_state = "borderfloor"; dir = 8},/obj/effect/floor_decal/corner/mauve/border{tag = "icon-bordercolor (WEST)"; icon_state = "bordercolor"; dir = 8},/obj/effect/floor_decal/borderfloor/corner2{tag = "icon-borderfloorcorner2 (SOUTHWEST)"; icon_state = "borderfloorcorner2"; dir = 10},/obj/effect/floor_decal/corner/mauve/bordercorner2{tag = "icon-bordercolorcorner2 (SOUTHWEST)"; icon_state = "bordercolorcorner2"; dir = 10},/turf/simulated/floor/tiled,/area/rnd/reception_desk) +"bxD" = (/obj/machinery/atmospherics/unary/vent_scrubber/on,/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/tiled,/area/rnd/reception_desk) +"bxE" = (/turf/simulated/floor/tiled,/area/rnd/reception_desk) +"bxF" = (/obj/machinery/atmospherics/unary/vent_pump/on,/turf/simulated/floor/tiled,/area/rnd/reception_desk) +"bxG" = (/obj/structure/table/glass,/obj/machinery/recharger,/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (EAST)"; icon_state = "borderfloor"; dir = 4},/obj/effect/floor_decal/corner/mauve/border{tag = "icon-bordercolor (EAST)"; icon_state = "bordercolor"; dir = 4},/obj/item/device/radio/intercom{dir = 4; name = "Station Intercom (General)"; pixel_x = 21},/turf/simulated/floor/tiled,/area/rnd/reception_desk) +"bxH" = (/obj/structure/disposalpipe/segment,/obj/machinery/camera/network/northern_star{tag = "icon-camera (NORTHWEST)"; icon_state = "camera"; dir = 9},/turf/simulated/floor/tiled,/area/hallway/lower/third_south) +"bxI" = (/turf/simulated/wall,/area/maintenance/engineering/pumpstation) +"bxJ" = (/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/plating,/area/maintenance/lower/atrium) +"bxK" = (/obj/machinery/firealarm{dir = 2; layer = 3.3; pixel_x = 0; pixel_y = 26},/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/plating,/area/maintenance/lower/atrium) +"bxL" = (/obj/machinery/alarm{frequency = 1441; pixel_y = 22},/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/plating,/area/maintenance/lower/atrium) +"bxM" = (/obj/machinery/power/apc{dir = 4; name = "east bump"; pixel_x = 24},/obj/structure/cable,/turf/simulated/floor/plating,/area/maintenance/lower/atrium) +"bxN" = (/obj/machinery/light{icon_state = "tube1"; dir = 8},/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (WEST)"; icon_state = "borderfloor"; dir = 8},/obj/effect/floor_decal/corner/lime/border{tag = "icon-bordercolor (WEST)"; icon_state = "bordercolor"; dir = 8},/turf/simulated/floor/tiled,/area/hydroponics) +"bxO" = (/obj/machinery/portable_atmospherics/hydroponics,/obj/machinery/portable_atmospherics/hydroponics,/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled,/area/hydroponics) +"bxP" = (/obj/machinery/portable_atmospherics/hydroponics,/turf/simulated/floor/tiled,/area/hydroponics) +"bxQ" = (/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (EAST)"; icon_state = "borderfloor"; dir = 4},/obj/effect/floor_decal/corner/lime/border{tag = "icon-bordercolor (EAST)"; icon_state = "bordercolor"; dir = 4},/turf/simulated/floor/tiled,/area/hydroponics) +"bxR" = (/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (WEST)"; icon_state = "borderfloor"; dir = 8},/obj/effect/floor_decal/corner/lime/border{tag = "icon-bordercolor (WEST)"; icon_state = "bordercolor"; dir = 8},/obj/effect/floor_decal/borderfloor/corner2{tag = "icon-borderfloorcorner2 (WEST)"; icon_state = "borderfloorcorner2"; dir = 8},/obj/effect/floor_decal/corner/lime/bordercorner2{tag = "icon-bordercolorcorner2 (WEST)"; icon_state = "bordercolorcorner2"; dir = 8},/turf/simulated/floor/tiled,/area/hallway/lower/third_south) +"bxS" = (/obj/machinery/vending/snack,/turf/simulated/floor/wood,/area/crew_quarters/bar) +"bxT" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 8},/obj/structure/disposalpipe/segment,/turf/simulated/floor/wood,/area/crew_quarters/bar) +"bxU" = (/obj/item/weapon/tank/oxygen,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/turf/simulated/floor/wood,/area/crew_quarters/bar) +"bxV" = (/obj/structure/table/bench/wooden,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/turf/simulated/floor/wood,/area/crew_quarters/bar) +"bxW" = (/obj/structure/table/woodentable,/obj/machinery/computer/security/telescreen/entertainment{icon_state = "frame"; pixel_x = 32; pixel_y = 0},/turf/simulated/floor/wood,/area/crew_quarters/bar) +"bxX" = (/obj/machinery/alarm{dir = 4; icon_state = "alarm0"; pixel_x = -22; pixel_y = 0},/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (WEST)"; icon_state = "borderfloor"; dir = 8},/obj/effect/floor_decal/corner/mauve/border{tag = "icon-bordercolor (WEST)"; icon_state = "bordercolor"; dir = 8},/turf/simulated/floor/tiled,/area/rnd/research) +"bxY" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled,/area/rnd/research) +"bxZ" = (/obj/structure/railing{dir = 8},/obj/structure/railing{dir = 1},/turf/simulated/open,/area/rnd/research) +"bya" = (/obj/structure/railing{dir = 1},/turf/simulated/open,/area/rnd/research) +"byb" = (/obj/structure/railing{dir = 4},/obj/structure/railing{dir = 1},/turf/simulated/open,/area/rnd/research) +"byc" = (/obj/structure/cable/green{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled,/area/rnd/research) +"byd" = (/obj/structure/cable/green{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/structure/cable/green{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/structure/disposalpipe/segment{dir = 1; icon_state = "pipe-c"},/turf/simulated/floor/tiled,/area/rnd/research) +"bye" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 8},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 8},/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled,/area/rnd/research) +"byf" = (/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/effect/floor_decal/borderfloor{tag = "icon-borderfloor (EAST)"; icon_state = "borderfloor"; dir = 4},/obj/effect/floor_decal/corner/mauve/border{tag = "icon-bordercolor (EAST)"; icon_state = "bordercolor"; dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled,/area/rnd/research) +"byg" = (/obj/machinery/door/firedoor/glass,/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/structure/disposalpipe/segment{dir = 4},/obj/machinery/door/airlock/glass_research{name = "Front Desk"},/turf/simulated/floor/tiled,/area/rnd/research) +"byh" = (/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/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled,/area/rnd/reception_desk) +"byi" = (/obj/structure/cable/green{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 9},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled,/area/rnd/reception_desk) +"byj" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled,/area/rnd/reception_desk) +"byk" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 9},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled,/area/rnd/reception_desk) +"byl" = (/obj/structure/disposalpipe/segment{dir = 2; icon_state = "pipe-c"},/turf/simulated/floor/tiled,/area/rnd/reception_desk) +"bym" = (/obj/structure/table/glass,/obj/machinery/cell_charger,/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (EAST)"; icon_state = "borderfloor"; dir = 4},/obj/effect/floor_decal/corner/mauve/border{tag = "icon-bordercolor (EAST)"; icon_state = "bordercolor"; dir = 4},/obj/machinery/requests_console{department = "Science"; departmentType = 2; name = "Science Requests Console"; pixel_x = 30; pixel_y = 0},/turf/simulated/floor/tiled,/area/rnd/reception_desk) +"byn" = (/obj/machinery/newscaster{pixel_x = 25},/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled,/area/hallway/lower/third_south) +"byo" = (/obj/machinery/portable_atmospherics/powered/scrubber,/obj/machinery/atmospherics/portables_connector,/turf/simulated/floor/plating,/area/maintenance/engineering/pumpstation) +"byp" = (/obj/machinery/portable_atmospherics/powered/scrubber,/obj/machinery/atmospherics/portables_connector,/obj/machinery/camera/network/engineering,/turf/simulated/floor/plating,/area/maintenance/engineering/pumpstation) +"byq" = (/obj/machinery/light/small{dir = 1},/obj/machinery/portable_atmospherics/powered/scrubber,/obj/machinery/atmospherics/portables_connector,/turf/simulated/floor/plating,/area/maintenance/engineering/pumpstation) +"byr" = (/obj/machinery/portable_atmospherics/powered/scrubber,/obj/machinery/atmospherics/portables_connector,/obj/item/device/radio/intercom{dir = 1; name = "Station Intercom (General)"; pixel_y = 21},/turf/simulated/floor/plating,/area/maintenance/engineering/pumpstation) +"bys" = (/obj/structure/cable{tag = "icon-1-4"; icon_state = "1-4"},/obj/structure/disposalpipe/segment{dir = 1; icon_state = "pipe-c"},/turf/simulated/floor/plating,/area/maintenance/lower/atrium) +"byt" = (/obj/machinery/alarm{dir = 8; icon_state = "alarm0"; pixel_x = 24},/obj/structure/cable{tag = "icon-2-8"; icon_state = "2-8"},/obj/effect/decal/cleanable/dirt,/obj/structure/disposalpipe/segment{dir = 2; icon_state = "pipe-c"},/turf/simulated/floor/plating,/area/maintenance/lower/atrium) +"byu" = (/obj/machinery/portable_atmospherics/powered/pump/filled,/obj/machinery/light/small{dir = 8},/turf/simulated/floor/tiled/techfloor,/area/maintenance/lower/atrium) +"byv" = (/obj/effect/decal/cleanable/dirt,/mob/living/simple_animal/mouse,/turf/simulated/floor/plating,/area/maintenance/lower/atrium) +"byw" = (/obj/machinery/space_heater,/turf/simulated/floor/tiled/techfloor,/area/maintenance/lower/atrium) +"byx" = (/obj/structure/cable/green{d2 = 2; icon_state = "0-2"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/plating,/area/maintenance/lower/atrium) +"byy" = (/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (WEST)"; icon_state = "borderfloor"; dir = 8},/obj/effect/floor_decal/corner/lime/border{tag = "icon-bordercolor (WEST)"; icon_state = "bordercolor"; dir = 8},/obj/machinery/camera/network/civilian{tag = "icon-camera (EAST)"; icon_state = "camera"; dir = 4},/turf/simulated/floor/tiled,/area/hydroponics) +"byz" = (/obj/machinery/portable_atmospherics/hydroponics,/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled,/area/hydroponics) +"byA" = (/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (EAST)"; icon_state = "borderfloor"; dir = 4},/obj/effect/floor_decal/corner/lime/border{tag = "icon-bordercolor (EAST)"; icon_state = "bordercolor"; dir = 4},/obj/effect/floor_decal/borderfloor/corner2{tag = "icon-borderfloorcorner2 (NORTHEAST)"; icon_state = "borderfloorcorner2"; dir = 5},/obj/effect/floor_decal/corner/lime/bordercorner2{tag = "icon-bordercolorcorner2 (NORTHEAST)"; icon_state = "bordercolorcorner2"; dir = 5},/turf/simulated/floor/tiled,/area/hydroponics) +"byB" = (/obj/structure/sign/botany,/turf/simulated/wall,/area/hydroponics) +"byC" = (/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (WEST)"; icon_state = "borderfloor"; dir = 8},/obj/effect/floor_decal/corner/lime/border{tag = "icon-bordercolor (WEST)"; icon_state = "bordercolor"; dir = 8},/obj/effect/floor_decal/borderfloor/corner2{tag = "icon-borderfloorcorner2 (SOUTHWEST)"; icon_state = "borderfloorcorner2"; dir = 10},/obj/effect/floor_decal/corner/lime/bordercorner2{tag = "icon-bordercolorcorner2 (SOUTHWEST)"; icon_state = "bordercolorcorner2"; dir = 10},/obj/machinery/camera/network/civilian{tag = "icon-camera (EAST)"; icon_state = "camera"; dir = 4},/turf/simulated/floor/tiled,/area/hallway/lower/third_south) +"byD" = (/obj/structure/sign/double/barsign{dir = 8},/turf/simulated/wall,/area/crew_quarters/bar) +"byE" = (/obj/machinery/vending/cola,/turf/simulated/floor/wood,/area/crew_quarters/bar) +"byF" = (/obj/item/clothing/mask/gas,/turf/simulated/floor/wood,/area/crew_quarters/bar) +"byG" = (/obj/structure/table/bench/wooden,/obj/machinery/light{dir = 4; icon_state = "tube1"},/obj/structure/extinguisher_cabinet{dir = 2; icon_state = "extinguisher_closed"; pixel_x = 30; tag = "icon-extinguisher_closed (WEST)"},/turf/simulated/floor/wood,/area/crew_quarters/bar) +"byH" = (/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (WEST)"; icon_state = "borderfloor"; dir = 8},/obj/effect/floor_decal/corner/mauve/border{tag = "icon-bordercolor (WEST)"; icon_state = "bordercolor"; dir = 8},/obj/structure/extinguisher_cabinet{dir = 4; icon_state = "extinguisher_closed"; pixel_x = -30; tag = "icon-extinguisher_closed (EAST)"},/turf/simulated/floor/tiled,/area/rnd/research) +"byI" = (/obj/structure/railing{dir = 8},/turf/simulated/open,/area/rnd/research) +"byJ" = (/turf/simulated/open,/area/rnd/research) +"byK" = (/obj/structure/railing{dir = 4},/turf/simulated/open,/area/rnd/research) +"byL" = (/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled,/area/rnd/research) +"byM" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/tiled,/area/rnd/research) +"byN" = (/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (EAST)"; icon_state = "borderfloor"; dir = 4},/obj/effect/floor_decal/corner/mauve/border{tag = "icon-bordercolor (EAST)"; icon_state = "bordercolor"; dir = 4},/turf/simulated/floor/tiled,/area/rnd/research) +"byO" = (/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (SOUTHWEST)"; icon_state = "borderfloor"; dir = 10},/obj/effect/floor_decal/corner/mauve/border{tag = "icon-bordercolor (SOUTHWEST)"; icon_state = "bordercolor"; dir = 10},/obj/effect/floor_decal/borderfloor/corner2{tag = "icon-borderfloorcorner2 (WEST)"; icon_state = "borderfloorcorner2"; dir = 8},/obj/effect/floor_decal/corner/mauve/bordercorner2{tag = "icon-bordercolorcorner2 (WEST)"; icon_state = "bordercolorcorner2"; dir = 8},/obj/structure/flora/pottedplant{icon_state = "plant-22"},/turf/simulated/floor/tiled,/area/rnd/reception_desk) +"byP" = (/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/corner/mauve/border,/turf/simulated/floor/tiled,/area/rnd/reception_desk) +"byQ" = (/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/corner/mauve/border,/obj/effect/floor_decal/borderfloor/corner2{tag = "icon-borderfloorcorner2 (NORTHWEST)"; icon_state = "borderfloorcorner2"; dir = 9},/obj/effect/floor_decal/corner/mauve/bordercorner2{tag = "icon-bordercolorcorner2 (NORTHWEST)"; icon_state = "bordercolorcorner2"; dir = 9},/obj/machinery/light,/turf/simulated/floor/tiled,/area/rnd/reception_desk) +"byR" = (/obj/structure/bed/chair/office/dark,/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled,/area/rnd/reception_desk) +"byS" = (/obj/structure/table/glass,/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (SOUTHEAST)"; icon_state = "borderfloor"; dir = 6},/obj/effect/floor_decal/corner/mauve/border{tag = "icon-bordercolor (SOUTHEAST)"; icon_state = "bordercolor"; dir = 6},/obj/effect/floor_decal/borderfloor/corner2,/obj/effect/floor_decal/corner/mauve/bordercorner2,/turf/simulated/floor/tiled,/area/rnd/reception_desk) +"byT" = (/obj/structure/sign/directions/evac{tag = "icon-direction_evac (NORTH)"; icon_state = "direction_evac"; dir = 1},/turf/simulated/wall,/area/rnd/reception_desk) +"byU" = (/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (WEST)"; icon_state = "borderfloor"; dir = 8},/obj/effect/floor_decal/corner/mauve/border{tag = "icon-bordercolor (WEST)"; icon_state = "bordercolor"; dir = 8},/obj/effect/floor_decal/borderfloor/corner2{tag = "icon-borderfloorcorner2 (WEST)"; icon_state = "borderfloorcorner2"; dir = 8},/obj/effect/floor_decal/corner/mauve/bordercorner2{tag = "icon-bordercolorcorner2 (WEST)"; icon_state = "bordercolorcorner2"; dir = 8},/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled,/area/hallway/lower/third_south) +"byV" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 8},/turf/simulated/floor/tiled,/area/hallway/lower/third_south) +"byW" = (/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 8},/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled,/area/hallway/lower/third_south) +"byX" = (/obj/machinery/atmospherics/pipe/simple/visible/red{tag = "icon-intact (NORTHEAST)"; icon_state = "intact"; dir = 5},/obj/machinery/firealarm{dir = 8; pixel_x = -24},/turf/simulated/floor/plating,/area/maintenance/engineering/pumpstation) +"byY" = (/obj/machinery/atmospherics/pipe/manifold/visible/red,/turf/simulated/floor/plating,/area/maintenance/engineering/pumpstation) +"byZ" = (/obj/machinery/atmospherics/pipe/manifold/visible/red{tag = "icon-map (EAST)"; icon_state = "map"; dir = 4},/obj/machinery/light_switch{pixel_x = 25},/turf/simulated/floor/plating,/area/maintenance/engineering/pumpstation) +"bza" = (/obj/structure/closet/crate,/obj/random/maintenance/clean,/obj/random/maintenance/clean,/obj/random/junk,/obj/random/toolbox,/obj/random/maintenance/engineering,/turf/simulated/floor/plating,/area/maintenance/lower/atrium) +"bzb" = (/obj/structure/cable{tag = "icon-1-2"; icon_state = "1-2"},/obj/structure/disposalpipe/segment,/turf/simulated/floor/plating,/area/maintenance/lower/atrium) +"bzc" = (/obj/machinery/floodlight,/turf/simulated/floor/tiled/techfloor,/area/maintenance/lower/atrium) +"bzd" = (/obj/structure/table/rack{dir = 1},/obj/item/clothing/suit/fire/firefighter,/obj/item/weapon/tank/oxygen,/obj/item/clothing/mask/gas,/obj/item/weapon/extinguisher,/obj/item/clothing/head/hardhat/red,/obj/item/clothing/glasses/meson,/obj/random/maintenance/clean,/turf/simulated/floor/tiled/techfloor,/area/maintenance/lower/atrium) +"bze" = (/obj/structure/table/standard,/obj/item/device/t_scanner,/obj/item/weapon/storage/box/lights/mixed,/obj/item/weapon/storage/box/lights/mixed,/obj/item/weapon/storage/briefcase/inflatable,/obj/random/maintenance/clean,/turf/simulated/floor/tiled/techfloor,/area/maintenance/lower/atrium) +"bzf" = (/obj/machinery/light/small{dir = 4; pixel_y = 0},/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/plating,/area/maintenance/lower/atrium) +"bzg" = (/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (WEST)"; icon_state = "borderfloor"; dir = 8},/obj/effect/floor_decal/corner/lime/border{tag = "icon-bordercolor (WEST)"; icon_state = "bordercolor"; dir = 8},/obj/machinery/light_switch{pixel_x = -25},/turf/simulated/floor/tiled,/area/hydroponics) +"bzh" = (/obj/machinery/atmospherics/unary/vent_pump/on,/turf/simulated/floor/tiled,/area/hydroponics) +"bzi" = (/obj/structure/cable/green{d1 = 2; d2 = 4; icon_state = "2-4"},/turf/simulated/floor/tiled,/area/hydroponics) +"bzj" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/tiled,/area/hydroponics) +"bzk" = (/obj/machinery/door/firedoor/glass,/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/door/airlock/glass{name = "Hydroponics"; req_access = newlist(); req_one_access = list(35,28)},/turf/simulated/floor/tiled/monotile,/area/hydroponics) +"bzl" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/tiled,/area/hallway/lower/third_south) +"bzm" = (/obj/structure/cable/green{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/structure/cable/green{d1 = 2; d2 = 8; icon_state = "2-8"},/turf/simulated/floor/tiled,/area/hallway/lower/third_south) +"bzn" = (/obj/machinery/light{icon_state = "tube1"; dir = 8},/obj/machinery/firealarm{pixel_x = -30},/turf/simulated/floor/wood,/area/crew_quarters/bar) +"bzo" = (/obj/item/clothing/suit/storage/hooded/wintercoat/captain,/turf/simulated/floor/wood,/area/crew_quarters/bar) +"bzp" = (/obj/item/clothing/suit/storage/hooded/wintercoat/science,/turf/simulated/floor/wood,/area/crew_quarters/bar) +"bzq" = (/obj/item/clothing/suit/storage/hooded/wintercoat/medical,/turf/simulated/floor/wood,/area/crew_quarters/bar) +"bzr" = (/obj/effect/landmark{name = "Observer-Start"},/turf/simulated/floor/wood,/area/crew_quarters/bar) +"bzs" = (/obj/structure/flora/pottedplant{icon_state = "plant-22"},/obj/machinery/camera/network/civilian{tag = "icon-camera (NORTHWEST)"; icon_state = "camera"; dir = 9},/turf/simulated/floor/wood,/area/crew_quarters/bar) +"bzt" = (/obj/machinery/computer/guestpass{dir = 4; pixel_x = -28; pixel_y = 0},/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (WEST)"; icon_state = "borderfloor"; dir = 8},/obj/effect/floor_decal/corner/mauve/border{tag = "icon-bordercolor (WEST)"; icon_state = "bordercolor"; dir = 8},/turf/simulated/floor/tiled,/area/rnd/research) +"bzu" = (/obj/item/device/radio/intercom{dir = 4; name = "Station Intercom (General)"; pixel_x = 21},/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (EAST)"; icon_state = "borderfloor"; dir = 4},/obj/effect/floor_decal/corner/mauve/border{tag = "icon-bordercolor (EAST)"; icon_state = "bordercolor"; dir = 4},/turf/simulated/floor/tiled,/area/rnd/research) +"bzv" = (/obj/structure/grille,/obj/structure/window/reinforced{dir = 5; icon_state = "fwindow"},/obj/machinery/door/firedoor,/turf/simulated/floor/plating,/area/rnd/reception_desk) +"bzw" = (/obj/structure/table/reinforced,/obj/machinery/door/window/brigdoor/southleft,/obj/structure/disposalpipe/segment,/obj/machinery/door/firedoor/glass,/turf/simulated/floor/tiled/monotile,/area/rnd/reception_desk) +"bzx" = (/obj/structure/sign/science,/turf/simulated/wall,/area/rnd/reception_desk) +"bzy" = (/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (WEST)"; icon_state = "borderfloor"; dir = 8},/obj/effect/floor_decal/corner/mauve/border{tag = "icon-bordercolor (WEST)"; icon_state = "bordercolor"; dir = 8},/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled,/area/hallway/lower/third_south) +"bzz" = (/obj/machinery/alarm{dir = 8; icon_state = "alarm0"; pixel_x = 24},/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled,/area/hallway/lower/third_south) +"bzA" = (/obj/structure/table/rack,/obj/random/maintenance/clean,/obj/random/maintenance/engineering,/obj/random/maintenance/engineering,/turf/simulated/floor/plating,/area/maintenance/engineering/pumpstation) +"bzB" = (/obj/machinery/atmospherics/pipe/simple/visible/red{tag = "icon-intact (SOUTHEAST)"; icon_state = "intact"; dir = 6},/turf/simulated/floor/plating,/area/maintenance/engineering/pumpstation) +"bzC" = (/obj/machinery/atmospherics/pipe/simple/visible/red{tag = "icon-intact (EAST)"; icon_state = "intact"; dir = 4},/turf/simulated/floor/plating,/area/maintenance/engineering/pumpstation) +"bzD" = (/obj/machinery/atmospherics/binary/pump{tag = "icon-map_off (WEST)"; icon_state = "map_off"; dir = 8},/turf/simulated/floor/plating,/area/maintenance/engineering/pumpstation) +"bzE" = (/obj/machinery/atmospherics/pipe/simple/visible/red{tag = "icon-intact (NORTHWEST)"; icon_state = "intact"; dir = 9},/turf/simulated/floor/plating,/area/maintenance/engineering/pumpstation) +"bzF" = (/obj/machinery/door/airlock/maintenance/engi,/obj/machinery/door/firedoor/glass,/turf/simulated/floor/plating,/area/maintenance/engineering/pumpstation) +"bzG" = (/turf/simulated/wall,/area/maintenance/substation/bar) +"bzH" = (/obj/structure/table/rack,/obj/item/clothing/mask/gas,/obj/item/clothing/mask/gas,/obj/item/clothing/mask/gas,/obj/random/maintenance/research,/obj/random/maintenance/research,/turf/simulated/floor/plating,/area/maintenance/lower/atrium) +"bzI" = (/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/simple/hidden/supply{dir = 5},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 5},/turf/simulated/floor/plating,/area/maintenance/lower/atrium) +"bzJ" = (/obj/machinery/door/airlock/maintenance/common{name = "Hydroponics Maintenance"; req_access = list(35)},/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/plating,/area/hydroponics) +"bzK" = (/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (WEST)"; icon_state = "borderfloor"; dir = 8},/obj/effect/floor_decal/corner/lime/border{tag = "icon-bordercolor (WEST)"; icon_state = "bordercolor"; dir = 8},/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 = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/turf/simulated/floor/tiled,/area/hydroponics) +"bzL" = (/obj/machinery/portable_atmospherics/hydroponics,/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled,/area/hydroponics) +"bzM" = (/obj/machinery/portable_atmospherics/hydroponics,/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,/area/hydroponics) +"bzN" = (/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/scrubbers{dir = 10},/turf/simulated/floor/tiled,/area/hydroponics) +"bzO" = (/obj/structure/cable/green{d1 = 1; d2 = 8; icon_state = "1-8"},/turf/simulated/floor/tiled,/area/hydroponics) +"bzP" = (/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (EAST)"; icon_state = "borderfloor"; dir = 4},/obj/effect/floor_decal/corner/lime/border{tag = "icon-bordercolor (EAST)"; icon_state = "bordercolor"; dir = 4},/obj/effect/floor_decal/borderfloor/corner2{tag = "icon-borderfloorcorner2 (NORTHEAST)"; icon_state = "borderfloorcorner2"; dir = 5},/obj/effect/floor_decal/borderfloor/corner2{tag = "icon-borderfloorcorner2 (SOUTHEAST)"; icon_state = "borderfloorcorner2"; dir = 6},/obj/effect/floor_decal/corner/lime/bordercorner2{tag = "icon-bordercolorcorner2 (NORTHEAST)"; icon_state = "bordercolorcorner2"; dir = 5},/obj/effect/floor_decal/corner/lime/bordercorner2{tag = "icon-bordercolorcorner2 (SOUTHEAST)"; icon_state = "bordercolorcorner2"; dir = 6},/turf/simulated/floor/tiled,/area/hydroponics) +"bzQ" = (/obj/machinery/light{icon_state = "tube1"; dir = 8},/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (WEST)"; icon_state = "borderfloor"; dir = 8},/obj/effect/floor_decal/corner/lime/border{tag = "icon-bordercolor (WEST)"; icon_state = "bordercolor"; dir = 8},/obj/effect/floor_decal/borderfloor/corner2{tag = "icon-borderfloorcorner2 (SOUTHWEST)"; icon_state = "borderfloorcorner2"; dir = 10},/obj/effect/floor_decal/borderfloor/corner2{tag = "icon-borderfloorcorner2 (WEST)"; icon_state = "borderfloorcorner2"; dir = 8},/obj/effect/floor_decal/corner/lime/bordercorner2{tag = "icon-bordercolorcorner2 (WEST)"; icon_state = "bordercolorcorner2"; dir = 8},/obj/effect/floor_decal/corner/lime/bordercorner2{tag = "icon-bordercolorcorner2 (SOUTHWEST)"; icon_state = "bordercolorcorner2"; dir = 10},/turf/simulated/floor/tiled,/area/hallway/lower/third_south) +"bzR" = (/obj/structure/bed/chair/wood,/turf/simulated/floor/wood,/area/crew_quarters/bar) +"bzS" = (/obj/structure/bed/chair/wood,/obj/structure/bed/chair/wood,/turf/simulated/floor/wood,/area/crew_quarters/bar) +"bzT" = (/obj/item/clothing/shoes/boots/winter,/turf/simulated/floor/wood,/area/crew_quarters/bar) +"bzU" = (/obj/structure/table/woodentable,/obj/item/device/flashlight/color,/turf/simulated/floor/wood,/area/crew_quarters/bar) +"bzV" = (/obj/machinery/newscaster{pixel_x = 0; pixel_y = 30},/turf/simulated/floor/wood,/area/crew_quarters/bar) +"bzW" = (/obj/machinery/camera/network/northern_star{tag = "icon-camera (NORTHWEST)"; icon_state = "camera"; dir = 9},/turf/simulated/floor/outdoors/grass/sif/virgo3b,/area/tether/surfacebase/outside/outside3) +"bzX" = (/obj/machinery/light{icon_state = "tube1"; dir = 8},/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (WEST)"; icon_state = "borderfloor"; dir = 8},/obj/effect/floor_decal/corner/mauve/border{tag = "icon-bordercolor (WEST)"; icon_state = "bordercolor"; dir = 8},/turf/simulated/floor/tiled,/area/rnd/research) +"bzY" = (/obj/structure/railing,/obj/structure/railing{dir = 8},/turf/simulated/open,/area/rnd/research) +"bzZ" = (/obj/structure/railing,/turf/simulated/open,/area/rnd/research) +"bAa" = (/obj/structure/railing{dir = 4},/obj/structure/railing,/turf/simulated/open,/area/rnd/research) +"bAb" = (/obj/structure/disposalpipe/segment{dir = 4; icon_state = "pipe-c"},/turf/simulated/floor/tiled,/area/rnd/research) +"bAc" = (/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled,/area/rnd/research) +"bAd" = (/obj/structure/disposalpipe/sortjunction{name = "RD Office"; sortType = "RD Office"},/turf/simulated/floor/tiled,/area/rnd/research) +"bAe" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/disposalpipe/segment{dir = 1; icon_state = "pipe-c"},/turf/simulated/floor/tiled,/area/rnd/research) +"bAf" = (/obj/machinery/light_switch{pixel_x = 25},/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (EAST)"; icon_state = "borderfloor"; dir = 4},/obj/effect/floor_decal/corner/mauve/border{tag = "icon-bordercolor (EAST)"; icon_state = "bordercolor"; dir = 4},/obj/effect/floor_decal/borderfloor/corner2{tag = "icon-borderfloorcorner2 (NORTHEAST)"; icon_state = "borderfloorcorner2"; dir = 5},/obj/effect/floor_decal/corner/mauve/bordercorner2{tag = "icon-bordercolorcorner2 (NORTHEAST)"; icon_state = "bordercolorcorner2"; dir = 5},/obj/structure/disposalpipe/segment{dir = 2; icon_state = "pipe-c"},/turf/simulated/floor/tiled,/area/rnd/research) +"bAg" = (/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (NORTHWEST)"; icon_state = "borderfloor"; dir = 9},/obj/effect/floor_decal/corner/mauve/border{tag = "icon-bordercolor (NORTHWEST)"; icon_state = "bordercolor"; dir = 9},/obj/effect/floor_decal/borderfloor/corner2{tag = "icon-borderfloorcorner2 (SOUTHWEST)"; icon_state = "borderfloorcorner2"; dir = 10},/obj/effect/floor_decal/corner/mauve/bordercorner2{tag = "icon-bordercolorcorner2 (SOUTHWEST)"; icon_state = "bordercolorcorner2"; dir = 10},/obj/structure/table/reinforced,/obj/machinery/atmospherics/unary/vent_pump/on,/obj/structure/cable/green{d2 = 2; icon_state = "0-2"},/obj/machinery/power/apc{cell_type = /obj/item/weapon/cell/super; dir = 8; name = "west bump"; pixel_x = -28},/turf/simulated/floor/tiled,/area/rnd/research_foyer) +"bAh" = (/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (NORTH)"; icon_state = "borderfloor"; dir = 1},/obj/effect/floor_decal/corner/mauve/border{tag = "icon-bordercolor (NORTH)"; icon_state = "bordercolor"; dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals5,/obj/effect/floor_decal/steeldecal/steel_decals3{tag = "icon-steel_decals3 (NORTHWEST)"; icon_state = "steel_decals3"; dir = 9},/obj/effect/floor_decal/steeldecal/steel_decals3{tag = "icon-steel_decals3 (WEST)"; icon_state = "steel_decals3"; dir = 8},/obj/structure/table/reinforced,/obj/machinery/camera/network/research,/turf/simulated/floor/tiled,/area/rnd/research_foyer) +"bAi" = (/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (NORTHEAST)"; icon_state = "borderfloor"; dir = 5},/obj/effect/floor_decal/corner/mauve/border{tag = "icon-bordercolor (NORTHEAST)"; icon_state = "bordercolor"; dir = 5},/obj/effect/floor_decal/borderfloor/corner2{tag = "icon-borderfloorcorner2 (NORTHEAST)"; icon_state = "borderfloorcorner2"; dir = 5},/obj/effect/floor_decal/corner/mauve/bordercorner2{tag = "icon-bordercolorcorner2 (NORTHEAST)"; icon_state = "bordercolorcorner2"; dir = 5},/obj/machinery/atmospherics/unary/vent_scrubber/on,/obj/machinery/light_switch{pixel_x = 25},/obj/structure/closet/firecloset,/turf/simulated/floor/tiled,/area/rnd/research_foyer) +"bAj" = (/turf/simulated/wall,/area/rnd/research_foyer) +"bAk" = (/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (NORTHWEST)"; icon_state = "borderfloor"; dir = 9},/obj/effect/floor_decal/corner/mauve/border{tag = "icon-bordercolor (NORTHWEST)"; icon_state = "bordercolor"; dir = 9},/obj/effect/floor_decal/borderfloor/corner2{tag = "icon-borderfloorcorner2 (SOUTHWEST)"; icon_state = "borderfloorcorner2"; dir = 10},/obj/effect/floor_decal/corner/mauve/bordercorner2{tag = "icon-bordercolorcorner2 (SOUTHWEST)"; icon_state = "bordercolorcorner2"; dir = 10},/obj/structure/disposalpipe/segment{dir = 1; icon_state = "pipe-c"},/turf/simulated/floor/tiled,/area/rnd/research_foyer) +"bAl" = (/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (NORTH)"; icon_state = "borderfloor"; dir = 1},/obj/effect/floor_decal/corner/mauve/border{tag = "icon-bordercolor (NORTH)"; icon_state = "bordercolor"; dir = 1},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled,/area/rnd/research_foyer) +"bAm" = (/obj/effect/floor_decal/borderfloor/corner{tag = "icon-borderfloorcorner (NORTH)"; icon_state = "borderfloorcorner"; dir = 1},/obj/effect/floor_decal/corner/mauve/bordercorner{tag = "icon-bordercolorcorner (NORTH)"; icon_state = "bordercolorcorner"; dir = 1},/obj/structure/disposalpipe/segment{dir = 8; icon_state = "pipe-c"},/turf/simulated/floor/tiled,/area/hallway/lower/third_south) +"bAn" = (/obj/structure/extinguisher_cabinet{dir = 2; icon_state = "extinguisher_closed"; pixel_x = 30; tag = "icon-extinguisher_closed (WEST)"},/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled,/area/hallway/lower/third_south) +"bAo" = (/obj/machinery/atmospherics/pipe/tank{tag = "icon-air_map (EAST)"; icon_state = "air_map"; dir = 4},/turf/simulated/floor/plating,/area/maintenance/engineering/pumpstation) +"bAp" = (/obj/machinery/atmospherics/tvalve/digital/bypass{tag = "icon-map_tvalve1 (WEST)"; icon_state = "map_tvalve1"; dir = 8},/turf/simulated/floor/plating,/area/maintenance/engineering/pumpstation) +"bAq" = (/obj/machinery/atmospherics/pipe/simple/visible/universal{tag = "icon-map_universal (EAST)"; icon_state = "map_universal"; dir = 4},/turf/simulated/floor/plating,/area/maintenance/engineering/pumpstation) +"bAr" = (/obj/machinery/atmospherics/pipe/simple/visible/scrubbers{tag = "icon-intact-scrubbers (SOUTHWEST)"; icon_state = "intact-scrubbers"; dir = 10},/turf/simulated/floor/plating,/area/maintenance/engineering/pumpstation) +"bAs" = (/obj/structure/railing,/obj/machinery/computer/area_atmos/tag{dir = 8; scrub_id = "atrium"},/turf/simulated/floor/plating,/area/maintenance/engineering/pumpstation) +"bAt" = (/obj/machinery/light/small{dir = 8; pixel_x = 0},/turf/simulated/floor/plating,/area/maintenance/lower/atrium) +"bAu" = (/obj/structure/cable{tag = "icon-1-4"; icon_state = "1-4"},/obj/structure/disposalpipe/segment,/turf/simulated/floor/plating,/area/maintenance/lower/atrium) +"bAv" = (/obj/machinery/door/firedoor/glass,/obj/structure/cable{tag = "icon-4-8"; icon_state = "4-8"},/obj/machinery/door/airlock/maintenance/engi,/turf/simulated/floor/plating,/area/maintenance/substation/bar) +"bAw" = (/obj/structure/cable{tag = "icon-2-8"; icon_state = "2-8"},/obj/machinery/camera/network/engineering,/obj/structure/cable{tag = "icon-4-8"; icon_state = "4-8"},/turf/simulated/floor/plating,/area/maintenance/substation/bar) +"bAx" = (/obj/machinery/light/small{dir = 1},/obj/structure/cable{tag = "icon-4-8"; icon_state = "4-8"},/turf/simulated/floor/plating,/area/maintenance/substation/bar) +"bAy" = (/obj/machinery/alarm{frequency = 1441; pixel_y = 22},/obj/effect/decal/cleanable/blood/splatter,/obj/structure/cable{tag = "icon-2-8"; icon_state = "2-8"},/turf/simulated/floor/plating,/area/maintenance/substation/bar) +"bAz" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/plating,/area/maintenance/lower/atrium) +"bAA" = (/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (WEST)"; icon_state = "borderfloor"; dir = 8},/obj/effect/floor_decal/corner/lime/border{tag = "icon-bordercolor (WEST)"; icon_state = "bordercolor"; dir = 8},/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/computer/guestpass{dir = 4; pixel_x = -28; pixel_y = 0},/turf/simulated/floor/tiled,/area/hydroponics) +"bAB" = (/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 1},/turf/simulated/floor/tiled,/area/hydroponics) +"bAC" = (/obj/machinery/door/firedoor/glass,/obj/machinery/door/airlock/glass{name = "Hydroponics"; req_access = newlist(); req_one_access = list(35,28)},/turf/simulated/floor/tiled/monotile,/area/hydroponics) +"bAD" = (/obj/structure/table/gamblingtable,/obj/machinery/camera/network/civilian{tag = "icon-camera (EAST)"; icon_state = "camera"; dir = 4},/turf/simulated/floor/wood,/area/crew_quarters/bar) +"bAE" = (/obj/structure/table/gamblingtable,/turf/simulated/floor/wood,/area/crew_quarters/bar) +"bAF" = (/obj/structure/bed/chair/wood{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 8},/obj/structure/disposalpipe/segment,/turf/simulated/floor/wood,/area/crew_quarters/bar) +"bAG" = (/obj/structure/table/woodentable,/obj/item/device/flashlight/color,/obj/machinery/atmospherics/unary/vent_pump/on{dir = 8},/turf/simulated/floor/wood,/area/crew_quarters/bar) +"bAH" = (/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (WEST)"; icon_state = "borderfloor"; dir = 8},/obj/effect/floor_decal/corner/mauve/border{tag = "icon-bordercolor (WEST)"; icon_state = "bordercolor"; dir = 8},/obj/machinery/camera/network/research{c_tag = "SCI - Research Hallway Center"; dir = 4},/turf/simulated/floor/tiled,/area/rnd/research) +"bAI" = (/obj/effect/floor_decal/steeldecal/steel_decals9{tag = "icon-steel_decals9 (NORTH)"; icon_state = "steel_decals9"; dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals9{tag = "icon-steel_decals9 (EAST)"; icon_state = "steel_decals9"; dir = 4},/turf/simulated/floor/tiled,/area/rnd/research) +"bAJ" = (/obj/structure/cable/green{d1 = 2; d2 = 4; icon_state = "2-4"},/turf/simulated/floor/tiled,/area/rnd/research) +"bAK" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled,/area/rnd/research) +"bAL" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 1; icon_state = "pipe-c"},/turf/simulated/floor/tiled,/area/rnd/research) +"bAM" = (/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/structure/cable/green{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/structure/disposalpipe/sortjunction{dir = 4; icon_state = "pipe-j1s"; name = "Robotics"; sortType = "Robotics"},/turf/simulated/floor/tiled,/area/rnd/research) +"bAN" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 8},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 8},/obj/structure/disposalpipe/segment{dir = 2; icon_state = "pipe-c"},/turf/simulated/floor/tiled,/area/rnd/research) +"bAO" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/disposalpipe/segment{dir = 1; icon_state = "pipe-c"},/turf/simulated/floor/tiled,/area/rnd/research) +"bAP" = (/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/structure/disposalpipe/segment{dir = 4},/obj/machinery/door/airlock/research{id_tag = "researchdoor"; name = "Research Division Access"; req_access = list(47)},/turf/simulated/floor/tiled,/area/rnd/research) +"bAQ" = (/obj/effect/floor_decal/steeldecal/steel_decals7,/obj/effect/floor_decal/steeldecal/steel_decals7{tag = "icon-steel_decals7 (EAST)"; icon_state = "steel_decals7"; dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals7{tag = "icon-steel_decals7 (NORTH)"; icon_state = "steel_decals7"; dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals7{tag = "icon-steel_decals7 (WEST)"; icon_state = "steel_decals7"; dir = 8},/obj/structure/cable/green{d1 = 1; d2 = 8; icon_state = "1-8"},/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_foyer) +"bAR" = (/obj/effect/floor_decal/steeldecal/steel_decals7,/obj/effect/floor_decal/steeldecal/steel_decals7{tag = "icon-steel_decals7 (EAST)"; icon_state = "steel_decals7"; dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals7{tag = "icon-steel_decals7 (NORTH)"; icon_state = "steel_decals7"; dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals7{tag = "icon-steel_decals7 (WEST)"; icon_state = "steel_decals7"; dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled,/area/rnd/research_foyer) +"bAS" = (/obj/effect/floor_decal/steeldecal/steel_decals7,/obj/effect/floor_decal/steeldecal/steel_decals7{tag = "icon-steel_decals7 (EAST)"; icon_state = "steel_decals7"; dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals7{tag = "icon-steel_decals7 (NORTH)"; icon_state = "steel_decals7"; dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals7{tag = "icon-steel_decals7 (WEST)"; icon_state = "steel_decals7"; dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled,/area/rnd/research_foyer) +"bAT" = (/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/research{id_tag = "researchdoor"; name = "Research Division Access"; req_access = list(47)},/turf/simulated/floor/tiled,/area/rnd/research_foyer) +"bAU" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled,/area/rnd/research_foyer) +"bAV" = (/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled,/area/hallway/lower/third_south) +"bAW" = (/obj/item/device/radio/intercom{dir = 4; name = "Station Intercom (General)"; pixel_x = 21},/obj/structure/disposalpipe/segment{dir = 8; icon_state = "pipe-c"},/turf/simulated/floor/tiled,/area/hallway/lower/third_south) +"bAX" = (/obj/machinery/atmospherics/tvalve/mirrored/digital/bypass{tag = "icon-map_tvalvem1 (WEST)"; icon_state = "map_tvalvem1"; dir = 8},/turf/simulated/floor/plating,/area/maintenance/engineering/pumpstation) +"bAY" = (/obj/machinery/atmospherics/pipe/simple/visible/scrubbers{tag = "icon-intact-scrubbers (NORTHEAST)"; icon_state = "intact-scrubbers"; dir = 5},/obj/structure/railing{dir = 4},/obj/machinery/atmospherics/pipe/simple/visible/supply{tag = "icon-intact-supply (EAST)"; icon_state = "intact-supply"; dir = 4},/turf/simulated/floor/plating,/area/maintenance/engineering/pumpstation) +"bAZ" = (/obj/machinery/atmospherics/pipe/zpipe/down/scrubbers{tag = "icon-down-scrubbers (WEST)"; icon_state = "down-scrubbers"; dir = 8},/obj/machinery/atmospherics/pipe/zpipe/down/supply{tag = "icon-down-supply (WEST)"; icon_state = "down-supply"; dir = 8},/obj/structure/cable/cyan{d1 = 32; d2 = 2; icon_state = "32-2"},/obj/machinery/camera/network/engineering{c_tag = "ENG - Workshop Starboard"; dir = 8},/obj/machinery/door/firedoor/glass,/turf/simulated/open,/area/maintenance/engineering/pumpstation) +"bBa" = (/obj/effect/decal/cleanable/dirt,/obj/structure/disposalpipe/segment,/turf/simulated/floor/plating,/area/maintenance/lower/atrium) +"bBb" = (/obj/structure/sign/warning/high_voltage,/turf/simulated/wall,/area/maintenance/substation/bar) +"bBc" = (/obj/structure/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/effect/floor_decal/industrial/warning,/turf/simulated/floor/plating,/area/maintenance/substation/bar) +"bBd" = (/obj/machinery/power/terminal,/obj/structure/cable{icon_state = "0-8"},/obj/effect/floor_decal/industrial/warning,/turf/simulated/floor/plating,/area/maintenance/substation/bar) +"bBe" = (/obj/machinery/power/apc{dir = 4; name = "east bump"; pixel_x = 28},/obj/effect/floor_decal/industrial/warning/corner{dir = 8},/obj/structure/cable,/turf/simulated/floor/plating,/area/maintenance/substation/bar) +"bBf" = (/obj/structure/closet/firecloset,/obj/structure/sign/warning/high_voltage{pixel_x = -32},/obj/random/maintenance/clean,/obj/random/maintenance/research,/obj/random/maintenance/research,/turf/simulated/floor/plating,/area/maintenance/lower/atrium) +"bBg" = (/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (WEST)"; icon_state = "borderfloor"; dir = 8},/obj/effect/floor_decal/corner/lime/border{tag = "icon-bordercolor (WEST)"; icon_state = "bordercolor"; dir = 8},/obj/machinery/power/apc{cell_type = /obj/item/weapon/cell/super; dir = 8; name = "west bump"; pixel_x = -28},/obj/structure/cable/green,/turf/simulated/floor/tiled,/area/hydroponics) +"bBh" = (/obj/machinery/biogenerator,/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (EAST)"; icon_state = "borderfloor"; dir = 4},/obj/effect/floor_decal/corner/lime/border{tag = "icon-bordercolor (EAST)"; icon_state = "bordercolor"; dir = 4},/obj/effect/floor_decal/borderfloor/corner2{tag = "icon-borderfloorcorner2 (SOUTHEAST)"; icon_state = "borderfloorcorner2"; dir = 6},/obj/effect/floor_decal/corner/lime/bordercorner2{tag = "icon-bordercolorcorner2 (SOUTHEAST)"; icon_state = "bordercolorcorner2"; dir = 6},/turf/simulated/floor/tiled,/area/hydroponics) +"bBi" = (/obj/structure/bed/chair/wood{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 8},/obj/structure/disposalpipe/segment,/turf/simulated/floor/wood,/area/crew_quarters/bar) +"bBj" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/turf/simulated/floor/wood,/area/crew_quarters/bar) +"bBk" = (/obj/structure/table/woodentable,/obj/item/device/flashlight/color,/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 8},/turf/simulated/floor/wood,/area/crew_quarters/bar) +"bBl" = (/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (WEST)"; icon_state = "borderfloor"; dir = 8},/obj/effect/floor_decal/corner/mauve/border{tag = "icon-bordercolor (WEST)"; icon_state = "bordercolor"; dir = 8},/obj/machinery/disposal,/obj/structure/disposalpipe/trunk{dir = 4},/turf/simulated/floor/tiled,/area/rnd/research) +"bBm" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/disposalpipe/segment{dir = 8; icon_state = "pipe-c"},/turf/simulated/floor/tiled,/area/rnd/research) +"bBn" = (/obj/effect/floor_decal/borderfloor/corner,/obj/effect/floor_decal/corner/mauve/bordercorner,/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled,/area/rnd/research) +"bBo" = (/obj/machinery/light,/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/corner/mauve/border,/turf/simulated/floor/tiled,/area/rnd/research) +"bBp" = (/obj/machinery/firealarm{dir = 1; pixel_x = 0; pixel_y = -25},/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/corner/mauve/border,/obj/effect/floor_decal/borderfloor/corner2{tag = "icon-borderfloorcorner2 (NORTHWEST)"; icon_state = "borderfloorcorner2"; dir = 9},/obj/effect/floor_decal/corner/mauve/bordercorner2{tag = "icon-bordercolorcorner2 (NORTHWEST)"; icon_state = "bordercolorcorner2"; dir = 9},/turf/simulated/floor/tiled,/area/rnd/research) +"bBq" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled,/area/rnd/research) +"bBr" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 5},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 5},/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/corner/mauve/border,/obj/effect/floor_decal/borderfloor/corner2,/obj/effect/floor_decal/borderfloor/corner2{tag = "icon-borderfloorcorner2 (NORTHWEST)"; icon_state = "borderfloorcorner2"; dir = 9},/obj/effect/floor_decal/corner/mauve/bordercorner2,/obj/effect/floor_decal/corner/mauve/bordercorner2{tag = "icon-bordercolorcorner2 (NORTHWEST)"; icon_state = "bordercolorcorner2"; dir = 9},/obj/structure/disposalpipe/segment{dir = 1; icon_state = "pipe-c"},/turf/simulated/floor/tiled,/area/rnd/research) +"bBs" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 10},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 10},/obj/structure/disposalpipe/segment{dir = 2; icon_state = "pipe-c"},/turf/simulated/floor/tiled,/area/rnd/research) +"bBt" = (/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (SOUTHWEST)"; icon_state = "borderfloor"; dir = 10},/obj/effect/floor_decal/corner/mauve/border{tag = "icon-bordercolor (SOUTHWEST)"; icon_state = "bordercolor"; dir = 10},/obj/effect/floor_decal/borderfloor/corner2{tag = "icon-borderfloorcorner2 (WEST)"; icon_state = "borderfloorcorner2"; dir = 8},/obj/effect/floor_decal/corner/mauve/bordercorner2{tag = "icon-bordercolorcorner2 (WEST)"; icon_state = "bordercolorcorner2"; dir = 8},/obj/machinery/shower{dir = 4; icon_state = "shower"; pixel_x = 2; pixel_y = 0},/obj/effect/floor_decal/steeldecal/steel_decals10{tag = "icon-steel_decals10 (NORTHEAST)"; icon_state = "steel_decals10"; dir = 5},/turf/simulated/floor/tiled,/area/rnd/research_foyer) +"bBu" = (/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/corner/mauve/border,/obj/machinery/light,/obj/effect/floor_decal/steeldecal/steel_decals5{tag = "icon-steel_decals5 (NORTH)"; icon_state = "steel_decals5"; dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals3{tag = "icon-steel_decals3 (SOUTHWEST)"; icon_state = "steel_decals3"; dir = 10},/obj/effect/floor_decal/steeldecal/steel_decals3{tag = "icon-steel_decals3 (NORTH)"; icon_state = "steel_decals3"; dir = 1},/turf/simulated/floor/tiled,/area/rnd/research_foyer) +"bBv" = (/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (SOUTHEAST)"; icon_state = "borderfloor"; dir = 6},/obj/effect/floor_decal/corner/mauve/border{tag = "icon-bordercolor (SOUTHEAST)"; icon_state = "bordercolor"; dir = 6},/obj/effect/floor_decal/borderfloor/corner2{tag = "icon-borderfloorcorner2 (SOUTHEAST)"; icon_state = "borderfloorcorner2"; dir = 6},/obj/effect/floor_decal/corner/mauve/bordercorner2{tag = "icon-bordercolorcorner2 (SOUTHEAST)"; icon_state = "bordercolorcorner2"; dir = 6},/obj/structure/sink{dir = 4; icon_state = "sink"; pixel_x = 11; pixel_y = 0},/turf/simulated/floor/tiled,/area/rnd/research_foyer) +"bBw" = (/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (SOUTHWEST)"; icon_state = "borderfloor"; dir = 10},/obj/effect/floor_decal/corner/mauve/border{tag = "icon-bordercolor (SOUTHWEST)"; icon_state = "bordercolor"; dir = 10},/obj/effect/floor_decal/borderfloor/corner2{tag = "icon-borderfloorcorner2 (WEST)"; icon_state = "borderfloorcorner2"; dir = 8},/obj/effect/floor_decal/corner/mauve/bordercorner2{tag = "icon-bordercolorcorner2 (WEST)"; icon_state = "bordercolorcorner2"; dir = 8},/turf/simulated/floor/tiled,/area/rnd/research_foyer) +"bBx" = (/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/corner/mauve/border,/obj/machinery/computer/guestpass{dir = 1; icon_state = "guest"; pixel_y = -28; tag = "icon-guest (NORTH)"},/turf/simulated/floor/tiled,/area/rnd/research_foyer) +"bBy" = (/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/corner/mauve/border,/obj/effect/floor_decal/steeldecal/steel_decals4,/obj/machinery/camera/network/northern_star{tag = "icon-camera (NORTH)"; icon_state = "camera"; dir = 1},/turf/simulated/floor/tiled,/area/rnd/research_foyer) +"bBz" = (/obj/effect/floor_decal/borderfloor/corner{tag = "icon-borderfloorcorner (WEST)"; icon_state = "borderfloorcorner"; dir = 8},/obj/effect/floor_decal/corner/mauve/bordercorner{tag = "icon-bordercolorcorner (WEST)"; icon_state = "bordercolorcorner"; dir = 8},/turf/simulated/floor/tiled,/area/hallway/lower/third_south) +"bBA" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/tiled,/area/hallway/lower/third_south) +"bBB" = (/obj/structure/ladder,/obj/effect/floor_decal/industrial/outline/yellow,/turf/simulated/floor/plating,/area/maintenance/engineering/pumpstation) +"bBC" = (/obj/machinery/atmospherics/pipe/simple/visible/blue{tag = "icon-intact (NORTHEAST)"; icon_state = "intact"; dir = 5},/turf/simulated/floor/plating,/area/maintenance/engineering/pumpstation) +"bBD" = (/obj/machinery/atmospherics/pipe/simple/visible/blue{tag = "icon-intact (EAST)"; icon_state = "intact"; dir = 4},/turf/simulated/floor/plating,/area/maintenance/engineering/pumpstation) +"bBE" = (/obj/machinery/atmospherics/binary/pump{tag = "icon-map_off (EAST)"; icon_state = "map_off"; dir = 4},/turf/simulated/floor/plating,/area/maintenance/engineering/pumpstation) +"bBF" = (/obj/machinery/atmospherics/pipe/simple/visible/blue{tag = "icon-intact (SOUTHWEST)"; icon_state = "intact"; dir = 10},/obj/structure/railing{dir = 1},/obj/structure/cable/cyan{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/plating,/area/maintenance/engineering/pumpstation) +"bBG" = (/obj/machinery/power/breakerbox/activated{RCon_tag = "Cargo Substation Bypass"},/turf/simulated/floor/plating,/area/maintenance/substation/bar) +"bBH" = (/obj/machinery/power/smes/buildable{charge = 0; RCon_tag = "Substation - Surface Civilian"},/obj/structure/cable/green{d2 = 4; icon_state = "0-4"},/obj/structure/cable/green{d2 = 8; icon_state = "0-8"},/turf/simulated/floor/plating,/area/maintenance/substation/bar) +"bBI" = (/obj/machinery/power/sensor{name = "Powernet Sensor - Surface Civilian Subgrid"; name_tag = "Surface Civilian Subgrid"},/obj/structure/cable/green{d2 = 8; icon_state = "0-8"},/obj/structure/cable/green{d2 = 4; icon_state = "0-4"},/obj/effect/floor_decal/industrial/warning{icon_state = "warning"; dir = 8},/turf/simulated/floor/plating,/area/maintenance/substation/bar) +"bBJ" = (/obj/machinery/door/firedoor/glass,/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/door/airlock/maintenance/engi,/turf/simulated/floor/plating,/area/maintenance/substation/bar) +"bBK" = (/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/effect/decal/cleanable/dirt,/turf/simulated/floor/plating,/area/maintenance/lower/atrium) +"bBL" = (/obj/structure/cable/green{d1 = 1; d2 = 8; icon_state = "1-8"},/turf/simulated/floor/plating,/area/maintenance/lower/atrium) +"bBM" = (/obj/machinery/seed_extractor,/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (EAST)"; icon_state = "borderfloor"; dir = 4},/obj/effect/floor_decal/corner/lime/border{tag = "icon-bordercolor (EAST)"; icon_state = "bordercolor"; dir = 4},/turf/simulated/floor/tiled,/area/hydroponics) +"bBN" = (/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (WEST)"; icon_state = "borderfloor"; dir = 8},/obj/effect/floor_decal/corner/lime/border{tag = "icon-bordercolor (WEST)"; icon_state = "bordercolor"; dir = 8},/obj/effect/floor_decal/borderfloor/corner2{tag = "icon-borderfloorcorner2 (SOUTHWEST)"; icon_state = "borderfloorcorner2"; dir = 10},/obj/effect/floor_decal/corner/lime/bordercorner2{tag = "icon-bordercolorcorner2 (SOUTHWEST)"; icon_state = "bordercolorcorner2"; dir = 10},/turf/simulated/floor/tiled,/area/hallway/lower/third_south) +"bBO" = (/obj/structure/bed/chair/wood{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/disposalpipe/segment,/turf/simulated/floor/wood,/area/crew_quarters/bar) +"bBP" = (/obj/machinery/firealarm{dir = 8; pixel_x = -24},/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (WEST)"; icon_state = "borderfloor"; dir = 8},/obj/effect/floor_decal/corner/mauve/border{tag = "icon-bordercolor (WEST)"; icon_state = "bordercolor"; dir = 8},/turf/simulated/floor/tiled,/area/rnd/research) +"bBQ" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/tiled,/area/rnd/research) +"bBR" = (/obj/machinery/light_switch{pixel_x = 25},/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (EAST)"; icon_state = "borderfloor"; dir = 4},/obj/effect/floor_decal/corner/mauve/border{tag = "icon-bordercolor (EAST)"; icon_state = "bordercolor"; dir = 4},/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled,/area/rnd/research) +"bBS" = (/turf/simulated/wall,/area/assembly/robotics) +"bBT" = (/obj/machinery/door/firedoor/glass,/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/disposalpipe/segment,/obj/machinery/door/airlock/glass_research{name = "Robotics Lab"; req_access = list(29,47)},/turf/simulated/floor/tiled,/area/assembly/robotics) +"bBU" = (/obj/structure/grille,/obj/structure/window/reinforced{dir = 5; icon_state = "fwindow"},/obj/machinery/door/firedoor,/turf/simulated/floor/plating,/area/assembly/robotics) +"bBV" = (/obj/machinery/door/firedoor/glass,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/disposalpipe/segment,/obj/machinery/door/airlock/glass_research{name = "Robotics Lab"; req_access = list(29,47)},/turf/simulated/floor/tiled,/area/assembly/robotics) +"bBW" = (/turf/simulated/wall,/area/assembly/chargebay) +"bBX" = (/obj/structure/sign/science,/turf/simulated/wall,/area/assembly/chargebay) +"bBY" = (/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (WEST)"; icon_state = "borderfloor"; dir = 8},/obj/effect/floor_decal/corner/mauve/border{tag = "icon-bordercolor (WEST)"; icon_state = "bordercolor"; dir = 8},/turf/simulated/floor/tiled,/area/hallway/lower/third_south) +"bBZ" = (/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/tiled,/area/hallway/lower/third_south) +"bCa" = (/obj/machinery/atmospherics/unary/vent_pump/on{dir = 8},/turf/simulated/floor/tiled,/area/hallway/lower/third_south) +"bCb" = (/obj/machinery/atmospherics/pipe/simple/visible/blue{tag = "icon-intact (SOUTHEAST)"; icon_state = "intact"; dir = 6},/obj/machinery/alarm{dir = 4; icon_state = "alarm0"; pixel_x = -22; pixel_y = 0},/turf/simulated/floor/plating,/area/maintenance/engineering/pumpstation) +"bCc" = (/obj/machinery/atmospherics/pipe/manifold/visible/blue{tag = "icon-map (NORTH)"; icon_state = "map"; dir = 1},/turf/simulated/floor/plating,/area/maintenance/engineering/pumpstation) +"bCd" = (/obj/machinery/atmospherics/pipe/manifold/visible/blue{tag = "icon-map (NORTH)"; icon_state = "map"; dir = 1},/mob/living/simple_animal/mouse,/turf/simulated/floor/plating,/area/maintenance/engineering/pumpstation) +"bCe" = (/obj/machinery/atmospherics/pipe/manifold/visible/blue{tag = "icon-map (EAST)"; icon_state = "map"; dir = 4},/obj/machinery/power/apc{dir = 4; name = "east bump"; pixel_x = 28},/obj/structure/cable/cyan,/turf/simulated/floor/plating,/area/maintenance/engineering/pumpstation) +"bCf" = (/obj/effect/decal/cleanable/dirt,/obj/structure/closet,/obj/random/maintenance/clean,/obj/random/maintenance/engineering,/obj/random/junk,/obj/random/cigarettes,/obj/random/maintenance/cargo,/turf/simulated/floor/plating,/area/maintenance/lower/atrium) +"bCg" = (/obj/machinery/alarm{dir = 4; icon_state = "alarm0"; pixel_x = -22; pixel_y = 0},/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/plating,/area/maintenance/lower/atrium) +"bCh" = (/obj/effect/decal/cleanable/dirt,/obj/structure/closet/crate,/obj/random/maintenance/clean,/obj/random/maintenance/clean,/obj/random/junk,/obj/random/maintenance/research,/turf/simulated/floor/plating,/area/maintenance/lower/atrium) +"bCi" = (/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (WEST)"; icon_state = "borderfloor"; dir = 8},/obj/effect/floor_decal/corner/lime/border{tag = "icon-bordercolor (WEST)"; icon_state = "bordercolor"; dir = 8},/obj/item/device/radio/intercom{dir = 8; name = "Station Intercom (General)"; pixel_x = -28},/turf/simulated/floor/tiled,/area/hydroponics) +"bCj" = (/obj/structure/bed/chair/wood{dir = 1},/turf/simulated/floor/wood,/area/crew_quarters/bar) +"bCk" = (/obj/machinery/firealarm{dir = 1; pixel_x = 0; pixel_y = -25},/turf/simulated/floor/wood,/area/crew_quarters/bar) +"bCl" = (/obj/machinery/camera/network/civilian{tag = "icon-camera (NORTH)"; icon_state = "camera"; dir = 1},/turf/simulated/floor/wood,/area/crew_quarters/bar) +"bCm" = (/obj/machinery/light,/turf/simulated/floor/wood,/area/crew_quarters/bar) +"bCn" = (/obj/machinery/alarm{dir = 1; pixel_y = -25},/turf/simulated/floor/wood,/area/crew_quarters/bar) +"bCo" = (/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (WEST)"; icon_state = "borderfloor"; dir = 8},/obj/effect/floor_decal/corner/mauve/border{tag = "icon-bordercolor (WEST)"; icon_state = "bordercolor"; dir = 8},/obj/effect/floor_decal/borderfloor/corner2{tag = "icon-borderfloorcorner2 (SOUTHWEST)"; icon_state = "borderfloorcorner2"; dir = 10},/obj/effect/floor_decal/corner/mauve/bordercorner2{tag = "icon-bordercolorcorner2 (SOUTHWEST)"; icon_state = "bordercolorcorner2"; dir = 10},/turf/simulated/floor/tiled,/area/rnd/research) +"bCp" = (/obj/machinery/recharge_station,/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (EAST)"; icon_state = "borderfloor"; dir = 4},/obj/effect/floor_decal/corner/mauve/border{tag = "icon-bordercolor (EAST)"; icon_state = "bordercolor"; dir = 4},/obj/structure/extinguisher_cabinet{dir = 2; icon_state = "extinguisher_closed"; pixel_x = 30; tag = "icon-extinguisher_closed (WEST)"},/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled,/area/rnd/research) +"bCq" = (/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (NORTHWEST)"; icon_state = "borderfloor"; dir = 9},/obj/effect/floor_decal/corner/mauve/border{tag = "icon-bordercolor (NORTHWEST)"; icon_state = "bordercolor"; dir = 9},/obj/effect/floor_decal/borderfloor/corner2{tag = "icon-borderfloorcorner2 (NORTH)"; icon_state = "borderfloorcorner2"; dir = 1},/obj/effect/floor_decal/corner/mauve/bordercorner2{tag = "icon-bordercolorcorner2 (NORTH)"; icon_state = "bordercolorcorner2"; dir = 1},/obj/structure/closet/firecloset,/turf/simulated/floor/tiled/steel_grid,/area/assembly/robotics) +"bCr" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled/steel_grid,/area/assembly/robotics) +"bCs" = (/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (NORTH)"; icon_state = "borderfloor"; dir = 1},/obj/effect/floor_decal/corner/mauve/border{tag = "icon-bordercolor (NORTH)"; icon_state = "bordercolor"; dir = 1},/obj/effect/floor_decal/borderfloor/corner2{tag = "icon-borderfloorcorner2 (EAST)"; icon_state = "borderfloorcorner2"; dir = 4},/obj/effect/floor_decal/borderfloor/corner2{tag = "icon-borderfloorcorner2 (NORTH)"; icon_state = "borderfloorcorner2"; dir = 1},/obj/effect/floor_decal/corner/mauve/bordercorner2{tag = "icon-bordercolorcorner2 (NORTH)"; icon_state = "bordercolorcorner2"; dir = 1},/obj/effect/floor_decal/corner/mauve/bordercorner2{tag = "icon-bordercolorcorner2 (EAST)"; icon_state = "bordercolorcorner2"; dir = 4},/turf/simulated/floor/tiled/steel_grid,/area/assembly/robotics) +"bCt" = (/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/assembly/robotics) +"bCu" = (/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (NORTHEAST)"; icon_state = "borderfloor"; dir = 5},/obj/effect/floor_decal/corner/mauve/border{tag = "icon-bordercolor (NORTHEAST)"; icon_state = "bordercolor"; dir = 5},/obj/effect/floor_decal/borderfloor/corner2{tag = "icon-borderfloorcorner2 (EAST)"; icon_state = "borderfloorcorner2"; dir = 4},/obj/effect/floor_decal/corner/mauve/bordercorner2{tag = "icon-bordercolorcorner2 (EAST)"; icon_state = "bordercolorcorner2"; dir = 4},/obj/structure/sink{dir = 4; icon_state = "sink"; pixel_x = 11; pixel_y = 0},/obj/machinery/light_switch{pixel_y = 25},/turf/simulated/floor/tiled/steel_grid,/area/assembly/robotics) +"bCv" = (/obj/machinery/recharge_station,/turf/simulated/floor/tiled/steel_grid,/area/assembly/chargebay) +"bCw" = (/obj/machinery/recharge_station,/obj/machinery/power/apc{dir = 1; name = "north bump"; pixel_x = 0; pixel_y = 28},/obj/structure/cable/green{d2 = 2; icon_state = "0-2"},/turf/simulated/floor/tiled/steel_grid,/area/assembly/chargebay) +"bCx" = (/obj/machinery/computer/cryopod/robot{pixel_y = 30},/turf/simulated/floor/tiled/steel_grid,/area/assembly/chargebay) +"bCy" = (/obj/machinery/cryopod/robot,/obj/machinery/camera/network/research{c_tag = "SCI - Xenoflora"; dir = 2},/turf/simulated/floor/tiled/steel_grid,/area/assembly/chargebay) +"bCz" = (/obj/machinery/cryopod/robot,/turf/simulated/floor/tiled/steel_grid,/area/assembly/chargebay) +"bCA" = (/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (WEST)"; icon_state = "borderfloor"; dir = 8},/obj/effect/floor_decal/corner/mauve/border{tag = "icon-bordercolor (WEST)"; icon_state = "bordercolor"; dir = 8},/obj/effect/floor_decal/borderfloor/corner2{tag = "icon-borderfloorcorner2 (SOUTHWEST)"; icon_state = "borderfloorcorner2"; dir = 10},/obj/effect/floor_decal/corner/mauve/bordercorner2{tag = "icon-bordercolorcorner2 (SOUTHWEST)"; icon_state = "bordercolorcorner2"; dir = 10},/turf/simulated/floor/tiled,/area/hallway/lower/third_south) +"bCB" = (/obj/machinery/atmospherics/portables_connector{dir = 1},/obj/machinery/portable_atmospherics/powered/pump/filled,/turf/simulated/floor/plating,/area/maintenance/engineering/pumpstation) +"bCC" = (/obj/machinery/light/small,/obj/machinery/atmospherics/portables_connector{dir = 1},/obj/machinery/portable_atmospherics/powered/pump/filled,/turf/simulated/floor/plating,/area/maintenance/engineering/pumpstation) +"bCD" = (/obj/effect/decal/cleanable/dirt,/obj/structure/table/rack,/obj/random/maintenance/clean,/obj/random/maintenance/clean,/obj/random/junk,/obj/random/maintenance/engineering,/turf/simulated/floor/plating,/area/maintenance/lower/atrium) +"bCE" = (/obj/machinery/portable_atmospherics/powered/scrubber/huge/stationary{scrub_id = "atrium"},/turf/simulated/floor/tiled/techmaint,/area/hallway/lower/third_south) +"bCF" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/plating,/area/maintenance/lower/atrium) +"bCG" = (/obj/structure/closet,/obj/item/clothing/mask/gas,/obj/effect/decal/cleanable/dirt,/obj/random/maintenance/clean,/obj/random/maintenance/clean,/obj/random/maintenance/research,/turf/simulated/floor/plating,/area/maintenance/lower/atrium) +"bCH" = (/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (SOUTHWEST)"; icon_state = "borderfloor"; dir = 10},/obj/structure/closet/secure_closet/hydroponics,/obj/effect/floor_decal/corner/lime/border{tag = "icon-bordercolor (SOUTHWEST)"; icon_state = "bordercolor"; dir = 10},/turf/simulated/floor/tiled,/area/hydroponics) +"bCI" = (/obj/machinery/disposal,/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/corner/lime/border,/obj/structure/disposalpipe/trunk{dir = 1},/turf/simulated/floor/tiled,/area/hydroponics) +"bCJ" = (/obj/structure/reagent_dispensers/watertank,/obj/item/weapon/reagent_containers/glass/bucket,/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/corner/lime/border,/turf/simulated/floor/tiled,/area/hydroponics) +"bCK" = (/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/effect/floor_decal/corner/lime/border,/turf/simulated/floor/tiled,/area/hydroponics) +"bCL" = (/obj/structure/table/standard{name = "plastic table frame"},/obj/item/weapon/material/hatchet,/obj/item/weapon/material/minihoe,/obj/item/weapon/material/minihoe,/obj/item/weapon/material/hatchet,/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/corner/lime/border,/turf/simulated/floor/tiled,/area/hydroponics) +"bCM" = (/obj/machinery/seed_storage/garden,/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (SOUTHEAST)"; icon_state = "borderfloor"; dir = 6},/obj/effect/floor_decal/corner/lime/border{tag = "icon-bordercolor (SOUTHEAST)"; icon_state = "bordercolor"; dir = 6},/turf/simulated/floor/tiled,/area/hydroponics) +"bCN" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/status_display{pixel_x = 32; pixel_y = 0},/turf/simulated/floor/tiled,/area/hallway/lower/third_south) +"bCO" = (/obj/machinery/light{icon_state = "tube1"; dir = 8},/obj/structure/disposalpipe/segment{dir = 4; icon_state = "pipe-c"},/turf/simulated/floor/wood,/area/crew_quarters/bar) +"bCP" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/disposalpipe/segment{dir = 8; icon_state = "pipe-c"},/turf/simulated/floor/wood,/area/crew_quarters/bar) +"bCQ" = (/obj/structure/grille,/obj/structure/window/reinforced{dir = 5; icon_state = "fwindow"},/obj/machinery/door/firedoor,/obj/structure/window/reinforced,/turf/simulated/floor/plating,/area/crew_quarters/bar) +"bCR" = (/obj/structure/lattice,/obj/structure/cable/green{icon_state = "32-4"},/obj/machinery/atmospherics/pipe/zpipe/down/supply{tag = "icon-down-supply (EAST)"; icon_state = "down-supply"; dir = 4},/obj/machinery/atmospherics/pipe/zpipe/up/scrubbers{tag = "icon-up-scrubbers (EAST)"; icon_state = "up-scrubbers"; dir = 4},/obj/machinery/door/firedoor/glass,/turf/simulated/open,/area/rnd/research) +"bCS" = (/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/machinery/door/firedoor/glass,/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/door/airlock/maintenance/rnd,/turf/simulated/floor/tiled/steel_dirty,/area/rnd/research) +"bCT" = (/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,/area/rnd/research) +"bCU" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/manifold/hidden/supply,/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,/turf/simulated/floor/tiled,/area/rnd/research) +"bCV" = (/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,/area/rnd/research) +"bCW" = (/obj/structure/cable/green{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/structure/cable/green{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 10},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 10},/turf/simulated/floor/tiled,/area/rnd/research) +"bCX" = (/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (EAST)"; icon_state = "borderfloor"; dir = 4},/obj/effect/floor_decal/corner/mauve/border{tag = "icon-bordercolor (EAST)"; icon_state = "bordercolor"; dir = 4},/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled,/area/rnd/research) +"bCY" = (/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (WEST)"; icon_state = "borderfloor"; dir = 8},/obj/effect/floor_decal/corner/mauve/border{tag = "icon-bordercolor (WEST)"; icon_state = "bordercolor"; dir = 8},/obj/structure/table/standard,/obj/machinery/cell_charger,/turf/simulated/floor/tiled/steel_grid,/area/assembly/robotics) +"bCZ" = (/turf/simulated/floor/tiled/steel_grid,/area/assembly/robotics) +"bDa" = (/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (EAST)"; icon_state = "borderfloor"; dir = 4},/obj/effect/floor_decal/corner/mauve/border{tag = "icon-bordercolor (EAST)"; icon_state = "bordercolor"; dir = 4},/obj/effect/floor_decal/borderfloor/corner2{tag = "icon-borderfloorcorner2 (NORTHEAST)"; icon_state = "borderfloorcorner2"; dir = 5},/obj/effect/floor_decal/corner/mauve/bordercorner2{tag = "icon-bordercolorcorner2 (NORTHEAST)"; icon_state = "bordercolorcorner2"; dir = 5},/obj/effect/floor_decal/industrial/warning/corner,/obj/item/device/radio/intercom{dir = 4; name = "Station Intercom (General)"; pixel_x = 21},/turf/simulated/floor/tiled/steel_grid,/area/assembly/robotics) +"bDb" = (/obj/effect/floor_decal/industrial/warning/corner{dir = 8},/turf/simulated/floor/bluegrid,/area/assembly/chargebay) +"bDc" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/bluegrid,/area/assembly/chargebay) +"bDd" = (/turf/simulated/floor/bluegrid,/area/assembly/chargebay) +"bDe" = (/obj/effect/landmark{name = "JoinLateCyborg"},/turf/simulated/floor/bluegrid,/area/assembly/chargebay) +"bDf" = (/obj/effect/floor_decal/industrial/warning/corner,/obj/effect/landmark{name = "JoinLateCyborg"},/obj/machinery/light_switch{pixel_x = 25},/obj/machinery/button/remote/blast_door{id = "mechbay"; name = "Blast Doors"; pixel_x = 34; pixel_y = 0},/turf/simulated/floor/bluegrid,/area/assembly/chargebay) +"bDg" = (/obj/effect/floor_decal/industrial/warning/corner{dir = 8},/obj/machinery/light{icon_state = "tube1"; dir = 8},/turf/simulated/floor/tiled,/area/hallway/lower/third_south) +"bDh" = (/obj/structure/sign/directions/medical{dir = 1; icon_state = "direction_med"; pixel_y = 8; tag = "icon-direction_med (EAST)"},/obj/structure/sign/directions/science{tag = "icon-direction_sci (WEST)"; icon_state = "direction_sci"; dir = 8; pixel_y = 3},/obj/structure/sign/directions/security{dir = 1; icon_state = "direction_sec"; pixel_y = -4; tag = "icon-direction_sec (WEST)"},/obj/structure/sign/directions/engineering{dir = 1; icon_state = "direction_eng"; pixel_y = -10; tag = "icon-direction_eng (WEST)"},/turf/simulated/wall,/area/maintenance/engineering/pumpstation) +"bDi" = (/obj/structure/sign/directions/evac{tag = "icon-direction_evac (WEST)"; icon_state = "direction_evac"; dir = 8},/turf/simulated/wall,/area/maintenance/engineering/pumpstation) +"bDj" = (/obj/machinery/door/firedoor/glass,/obj/structure/disposalpipe/segment,/obj/machinery/door/airlock/maintenance/common,/turf/simulated/floor/plating,/area/maintenance/lower/atrium) +"bDk" = (/obj/structure/grille,/obj/structure/railing,/turf/simulated/floor/tiled/techmaint,/area/hallway/lower/third_south) +"bDl" = (/obj/machinery/door/airlock/maintenance/common,/obj/machinery/door/firedoor/glass,/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/plating,/area/maintenance/lower/atrium) +"bDm" = (/obj/structure/sign/directions/medical{tag = "icon-direction_med (EAST)"; icon_state = "direction_med"; dir = 4; pixel_y = 8},/obj/structure/sign/directions/science{tag = "icon-direction_sci (WEST)"; icon_state = "direction_sci"; dir = 8; pixel_y = 3},/obj/structure/sign/directions/security{tag = "icon-direction_sec (WEST)"; icon_state = "direction_sec"; dir = 8; pixel_y = -4},/obj/structure/sign/directions/engineering{tag = "icon-direction_eng (WEST)"; icon_state = "direction_eng"; dir = 8; pixel_y = -10},/turf/simulated/wall,/area/hydroponics) +"bDn" = (/obj/machinery/atmospherics/unary/vent_pump/on,/turf/simulated/floor/tiled,/area/hallway/lower/third_south) +"bDo" = (/obj/structure/cable/green{d2 = 2; icon_state = "0-2"},/obj/machinery/power/apc{cell_type = /obj/item/weapon/cell/super; dir = 8; name = "west bump"; pixel_x = -28},/obj/structure/disposalpipe/segment,/turf/simulated/floor/wood,/area/crew_quarters/bar) +"bDp" = (/obj/effect/floor_decal/spline/plain{tag = "icon-spline_plain (NORTHWEST)"; icon_state = "spline_plain"; dir = 9},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/lino,/area/crew_quarters/bar) +"bDq" = (/obj/effect/floor_decal/spline/plain{dir = 1},/obj/item/weapon/stool/padded,/turf/simulated/floor/lino,/area/crew_quarters/bar) +"bDr" = (/obj/item/weapon/stool/padded,/obj/effect/floor_decal/spline/plain{dir = 1},/turf/simulated/floor/lino,/area/crew_quarters/bar) +"bDs" = (/obj/effect/floor_decal/spline/plain{dir = 1},/turf/simulated/floor/lino,/area/crew_quarters/bar) +"bDt" = (/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/structure/cable/green{d2 = 2; icon_state = "0-2"},/obj/machinery/power/apc{dir = 1; name = "north bump"; pixel_x = 0; pixel_y = 24},/obj/machinery/light_switch{pixel_x = -25},/turf/simulated/floor/wood,/area/crew_quarters/bar) +"bDu" = (/obj/structure/closet/secure_closet/bar{req_access = list(25)},/obj/item/weapon/storage/secure/safe{pixel_z = 30},/obj/machinery/camera/network/civilian,/turf/simulated/floor/wood,/area/crew_quarters/bar) +"bDv" = (/obj/structure/flora/pottedplant{icon_state = "plant-22"},/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (SOUTHWEST)"; icon_state = "borderfloor"; dir = 10},/obj/effect/floor_decal/corner/mauve/border{tag = "icon-bordercolor (SOUTHWEST)"; icon_state = "bordercolor"; dir = 10},/obj/effect/floor_decal/borderfloor/corner2{tag = "icon-borderfloorcorner2 (WEST)"; icon_state = "borderfloorcorner2"; dir = 8},/obj/effect/floor_decal/corner/mauve/bordercorner2{tag = "icon-bordercolorcorner2 (WEST)"; icon_state = "bordercolorcorner2"; dir = 8},/turf/simulated/floor/tiled,/area/rnd/research) +"bDw" = (/obj/item/device/radio/intercom{name = "Station Intercom (General)"; pixel_y = -21},/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/corner/mauve/border,/turf/simulated/floor/tiled,/area/rnd/research) +"bDx" = (/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/corner/mauve/border,/turf/simulated/floor/tiled,/area/rnd/research) +"bDy" = (/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/structure/disposalpipe/segment{dir = 4; icon_state = "pipe-c"},/turf/simulated/floor/tiled,/area/rnd/research) +"bDz" = (/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/corner/mauve/border,/obj/effect/floor_decal/borderfloor/corner2,/obj/effect/floor_decal/corner/mauve/bordercorner2,/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled,/area/rnd/research) +"bDA" = (/obj/structure/flora/pottedplant{icon_state = "plant-22"},/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (SOUTHEAST)"; icon_state = "borderfloor"; dir = 6},/obj/effect/floor_decal/corner/mauve/border{tag = "icon-bordercolor (SOUTHEAST)"; icon_state = "bordercolor"; dir = 6},/obj/structure/disposalpipe/segment{dir = 8; icon_state = "pipe-c"},/turf/simulated/floor/tiled,/area/rnd/research) +"bDB" = (/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (WEST)"; icon_state = "borderfloor"; dir = 8},/obj/effect/floor_decal/corner/mauve/border{tag = "icon-bordercolor (WEST)"; icon_state = "bordercolor"; dir = 8},/obj/structure/table/standard,/obj/item/clothing/glasses/omnihud/rnd,/obj/machinery/camera/network/research{c_tag = "SCI - Research Hallway Center"; dir = 4},/turf/simulated/floor/tiled/steel_grid,/area/assembly/robotics) +"bDC" = (/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/structure/disposalpipe/segment,/turf/simulated/floor/tiled/steel_grid,/area/assembly/robotics) +"bDD" = (/obj/effect/floor_decal/industrial/outline/yellow,/obj/effect/decal/cleanable/dirt,/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/tiled/techfloor,/area/assembly/robotics) +"bDE" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/disposalpipe/segment{dir = 1; icon_state = "pipe-c"},/turf/simulated/floor/tiled/steel_grid,/area/assembly/robotics) +"bDF" = (/obj/effect/floor_decal/industrial/warning{icon_state = "warning"; dir = 4},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled/steel_grid,/area/assembly/robotics) +"bDG" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled/steel_grid,/area/assembly/robotics) +"bDH" = (/obj/effect/floor_decal/industrial/warning{dir = 8},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/bluegrid,/area/assembly/chargebay) +"bDI" = (/obj/machinery/mech_recharger,/obj/structure/cable/green{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled/techmaint,/area/assembly/chargebay) +"bDJ" = (/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/bluegrid,/area/assembly/chargebay) +"bDK" = (/obj/machinery/mech_recharger,/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled/techmaint,/area/assembly/chargebay) +"bDL" = (/obj/effect/floor_decal/industrial/warning{icon_state = "warning"; dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/bluegrid,/area/assembly/chargebay) +"bDM" = (/obj/machinery/door/blast/regular{id = "mechbay"; name = "Mech Bay"},/obj/machinery/door/firedoor/glass,/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled/steel_grid,/area/assembly/chargebay) +"bDN" = (/obj/effect/floor_decal/industrial/warning{dir = 8},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled,/area/hallway/lower/third_south) +"bDO" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled,/area/hallway/lower/third_south) +"bDP" = (/obj/machinery/door/firedoor/glass/hidden/steel,/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled,/area/hallway/lower/third_south) +"bDQ" = (/obj/machinery/newscaster{pixel_x = 0; pixel_y = 30},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled,/area/hallway/lower/third_south) +"bDR" = (/obj/machinery/firealarm{dir = 2; layer = 3.3; pixel_x = 0; pixel_y = 26},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled,/area/hallway/lower/third_south) +"bDS" = (/obj/machinery/alarm{frequency = 1441; pixel_y = 22},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled,/area/hallway/lower/third_south) +"bDT" = (/obj/structure/extinguisher_cabinet{pixel_y = 30},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled,/area/hallway/lower/third_south) +"bDU" = (/obj/machinery/atmospherics/unary/vent_pump/on,/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled,/area/hallway/lower/third_south) +"bDV" = (/obj/machinery/light{dir = 1},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled,/area/hallway/lower/third_south) +"bDW" = (/obj/structure/disposalpipe/segment{dir = 8; icon_state = "pipe-c"},/turf/simulated/floor/tiled,/area/hallway/lower/third_south) +"bDX" = (/obj/effect/floor_decal/industrial/warning/corner{dir = 4},/obj/machinery/status_display{pixel_y = 30},/turf/simulated/floor/tiled,/area/hallway/lower/third_south) +"bDY" = (/obj/effect/floor_decal/industrial/warning{dir = 1},/turf/simulated/floor/tiled,/area/hallway/lower/third_south) +"bDZ" = (/obj/effect/floor_decal/industrial/warning/corner{icon_state = "warningcorner"; dir = 1},/obj/machinery/door/firedoor/glass/hidden/steel,/turf/simulated/floor/tiled,/area/hallway/lower/third_south) +"bEa" = (/obj/structure/cable/green{d2 = 2; icon_state = "0-2"},/obj/machinery/power/apc{dir = 1; name = "north bump"; pixel_x = 0; pixel_y = 24},/turf/simulated/floor/tiled,/area/hallway/lower/third_south) +"bEb" = (/obj/machinery/camera/network/northern_star,/turf/simulated/floor/tiled,/area/hallway/lower/third_south) +"bEc" = (/obj/structure/extinguisher_cabinet{pixel_y = 30},/turf/simulated/floor/tiled,/area/hallway/lower/third_south) +"bEd" = (/obj/machinery/newscaster{pixel_x = 0; pixel_y = 30},/turf/simulated/floor/tiled,/area/hallway/lower/third_south) +"bEe" = (/obj/machinery/firealarm{dir = 2; layer = 3.3; pixel_x = 0; pixel_y = 26},/turf/simulated/floor/tiled,/area/hallway/lower/third_south) +"bEf" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/tiled,/area/hallway/lower/third_south) +"bEg" = (/obj/machinery/door/firedoor/glass,/turf/simulated/floor/tiled/monotile,/area/crew_quarters/bar) +"bEh" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/disposalpipe/segment,/turf/simulated/floor/wood,/area/crew_quarters/bar) +"bEi" = (/obj/item/weapon/stool/padded,/obj/effect/floor_decal/spline/plain{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/lino,/area/crew_quarters/bar) +"bEj" = (/obj/structure/table/marble,/obj/machinery/door/blast/shutters{dir = 8; id = "bar"; layer = 3.3; name = "Bar Shutters"},/turf/simulated/floor/lino,/area/crew_quarters/bar) +"bEk" = (/obj/structure/table/marble,/obj/item/weapon/reagent_containers/food/drinks/glass2/pint,/obj/machinery/door/blast/shutters{dir = 1; id = "bar"; layer = 3.3; name = "Bar Shutters"},/turf/simulated/floor/lino,/area/crew_quarters/bar) +"bEl" = (/obj/structure/table/marble,/obj/machinery/door/blast/shutters{dir = 1; id = "bar"; layer = 3.3; name = "Bar Shutters"},/turf/simulated/floor/lino,/area/crew_quarters/bar) +"bEm" = (/obj/structure/table/marble,/obj/item/weapon/reagent_containers/food/drinks/glass2/shot,/obj/machinery/door/blast/shutters{dir = 1; id = "bar"; layer = 3.3; name = "Bar Shutters"},/turf/simulated/floor/lino,/area/crew_quarters/bar) +"bEn" = (/obj/machinery/door/window/brigdoor/northleft,/obj/structure/extinguisher_cabinet{dir = 2; icon_state = "extinguisher_closed"; pixel_x = 30; tag = "icon-extinguisher_closed (WEST)"},/turf/simulated/floor/lino,/area/crew_quarters/bar) +"bEo" = (/obj/machinery/atmospherics/unary/vent_pump/on,/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/alarm{dir = 4; icon_state = "alarm0"; pixel_x = -22; pixel_y = 0},/turf/simulated/floor/wood,/area/crew_quarters/bar) +"bEp" = (/obj/structure/sink{dir = 4; icon_state = "sink"; pixel_x = 11; pixel_y = 0},/obj/structure/sign/securearea{desc = "Under the painting a plaque reads: 'While the meat grinder may not have spared you, fear not. Not one part of you has gone to waste... You were delicious.'"; icon_state = "monkey_painting"; name = "Mr. Deempisi portrait"; pixel_x = 28; pixel_y = 4},/turf/simulated/floor/wood,/area/crew_quarters/bar) +"bEq" = (/turf/simulated/wall,/area/rnd/rdoffice) +"bEr" = (/obj/structure/grille,/obj/structure/window/reinforced{dir = 5; icon_state = "fwindow"},/obj/machinery/door/firedoor,/turf/simulated/floor/plating,/area/rnd/rdoffice) +"bEs" = (/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,/obj/structure/disposalpipe/segment,/obj/machinery/door/airlock/command{id_tag = "researchdoor"; name = "Research Director"; req_access = list(30)},/turf/simulated/floor/tiled,/area/rnd/rdoffice) +"bEt" = (/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (WEST)"; icon_state = "borderfloor"; dir = 8},/obj/effect/floor_decal/corner/mauve/border{tag = "icon-bordercolor (WEST)"; icon_state = "bordercolor"; dir = 8},/obj/structure/table/standard,/obj/machinery/cell_charger,/obj/machinery/power/apc{cell_type = /obj/item/weapon/cell/super; dir = 8; name = "west bump"; pixel_x = -28},/obj/structure/cable/green{icon_state = "0-4"},/turf/simulated/floor/tiled/steel_grid,/area/assembly/robotics) +"bEu" = (/obj/structure/cable/green{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled/steel_grid,/area/assembly/robotics) +"bEv" = (/obj/effect/floor_decal/industrial/outline/yellow,/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/tiled/techfloor,/area/assembly/robotics) +"bEw" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/tiled/steel_grid,/area/assembly/robotics) +"bEx" = (/obj/effect/floor_decal/industrial/warning{icon_state = "warning"; dir = 4},/turf/simulated/floor/tiled/steel_grid,/area/assembly/robotics) +"bEy" = (/obj/effect/floor_decal/industrial/warning{dir = 8},/turf/simulated/floor/bluegrid,/area/assembly/chargebay) +"bEz" = (/obj/effect/floor_decal/industrial/warning{icon_state = "warning"; dir = 4},/turf/simulated/floor/bluegrid,/area/assembly/chargebay) +"bEA" = (/obj/machinery/door/firedoor/glass,/obj/machinery/door/blast/regular{id = "mechbay"; name = "Mech Bay"},/turf/simulated/floor/tiled/steel_grid,/area/assembly/chargebay) +"bEB" = (/obj/effect/floor_decal/industrial/warning{dir = 8},/turf/simulated/floor/tiled,/area/hallway/lower/third_south) +"bEC" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 5},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 5},/turf/simulated/floor/tiled,/area/hallway/lower/third_south) +"bED" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled,/area/hallway/lower/third_south) +"bEE" = (/obj/machinery/door/firedoor/glass/hidden/steel,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled,/area/hallway/lower/third_south) +"bEF" = (/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 1},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 1},/turf/simulated/floor/tiled,/area/hallway/lower/third_south) +"bEG" = (/obj/machinery/atmospherics/pipe/manifold/hidden/supply,/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 1},/turf/simulated/floor/tiled,/area/hallway/lower/third_south) +"bEH" = (/obj/structure/cable/green{d1 = 2; d2 = 4; 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/tiled,/area/hallway/lower/third_south) +"bEI" = (/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,/area/hallway/lower/third_south) +"bEJ" = (/obj/machinery/door/firedoor/glass/hidden/steel,/obj/machinery/door/firedoor/glass/hidden/steel,/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,/area/hallway/lower/third_south) +"bEK" = (/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/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled,/area/hallway/lower/third_south) +"bEL" = (/obj/structure/cable/green{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled,/area/hallway/lower/third_south) +"bEM" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 10},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 9},/turf/simulated/floor/tiled,/area/hallway/lower/third_south) +"bEN" = (/obj/structure/cable/green{d1 = 1; d2 = 4; icon_state = "1-4"},/turf/simulated/floor/tiled,/area/hallway/lower/third_south) +"bEO" = (/obj/machinery/door/airlock/multi_tile/glass{dir = 1},/obj/machinery/door/firedoor/glass,/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/tiled/monotile,/area/crew_quarters/bar) +"bEP" = (/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/structure/disposalpipe/segment,/turf/simulated/floor/wood,/area/crew_quarters/bar) +"bEQ" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/wood,/area/crew_quarters/bar) +"bER" = (/obj/item/weapon/stool/padded,/obj/effect/floor_decal/spline/plain{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 5},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 5},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/lino,/area/crew_quarters/bar) +"bES" = (/obj/structure/table/marble,/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/door/blast/shutters{dir = 8; id = "bar"; layer = 3.3; name = "Bar Shutters"},/turf/simulated/floor/lino,/area/crew_quarters/bar) +"bET" = (/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/lino,/area/crew_quarters/bar) +"bEU" = (/obj/machinery/door/airlock{name = "Bar Backroom"; req_access = list(25)},/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/wood,/area/crew_quarters/bar) +"bEV" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 10},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 9},/obj/structure/cable/green{d1 = 1; d2 = 8; icon_state = "1-8"},/turf/simulated/floor/wood,/area/crew_quarters/bar) +"bEW" = (/obj/structure/table/woodentable,/obj/machinery/reagentgrinder,/obj/item/weapon/reagent_containers/food/drinks/shaker,/obj/item/weapon/packageWrap,/turf/simulated/floor/wood,/area/crew_quarters/bar) +"bEX" = (/obj/machinery/disposal,/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (NORTHWEST)"; icon_state = "borderfloor"; dir = 9},/obj/effect/floor_decal/corner/mauve/border{tag = "icon-bordercolor (NORTHWEST)"; icon_state = "bordercolor"; dir = 9},/obj/machinery/firealarm{dir = 8; pixel_x = -24},/obj/structure/disposalpipe/trunk{dir = 4},/turf/simulated/floor/tiled,/area/rnd/rdoffice) +"bEY" = (/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (NORTH)"; icon_state = "borderfloor"; dir = 1},/obj/effect/floor_decal/corner/mauve/border{tag = "icon-bordercolor (NORTH)"; icon_state = "bordercolor"; dir = 1},/obj/effect/floor_decal/borderfloor/corner2{tag = "icon-borderfloorcorner2 (NORTH)"; icon_state = "borderfloorcorner2"; dir = 1},/obj/effect/floor_decal/corner/mauve/bordercorner2{tag = "icon-bordercolorcorner2 (NORTH)"; icon_state = "bordercolorcorner2"; dir = 1},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled,/area/rnd/rdoffice) +"bEZ" = (/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/structure/disposalpipe/segment{dir = 8; icon_state = "pipe-c"},/turf/simulated/floor/tiled,/area/rnd/rdoffice) +"bFa" = (/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (NORTH)"; icon_state = "borderfloor"; dir = 1},/obj/effect/floor_decal/corner/mauve/border{tag = "icon-bordercolor (NORTH)"; icon_state = "bordercolor"; dir = 1},/obj/effect/floor_decal/borderfloor/corner2{tag = "icon-borderfloorcorner2 (EAST)"; icon_state = "borderfloorcorner2"; dir = 4},/obj/effect/floor_decal/corner/mauve/bordercorner2{tag = "icon-bordercolorcorner2 (EAST)"; icon_state = "bordercolorcorner2"; dir = 4},/obj/machinery/camera/network/research{c_tag = "SCI - Xenoflora"; dir = 2},/turf/simulated/floor/tiled,/area/rnd/rdoffice) +"bFb" = (/obj/structure/table/standard,/obj/item/device/taperecorder{pixel_x = -3},/obj/item/device/paicard{pixel_x = 4},/obj/item/weapon/circuitboard/teleporter,/obj/item/weapon/circuitboard/aicore{pixel_x = -2; pixel_y = 4},/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (NORTHEAST)"; icon_state = "borderfloor"; dir = 5},/obj/effect/floor_decal/corner/mauve/border{tag = "icon-bordercolor (NORTHEAST)"; icon_state = "bordercolor"; dir = 5},/obj/machinery/requests_console{announcementConsole = 1; department = "Research Director's Desk"; departmentType = 5; name = "Research Director RC"; pixel_x = 30; pixel_y = -2},/turf/simulated/floor/tiled,/area/rnd/rdoffice) +"bFc" = (/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (WEST)"; icon_state = "borderfloor"; dir = 8},/obj/effect/floor_decal/corner/mauve/border{tag = "icon-bordercolor (WEST)"; icon_state = "bordercolor"; dir = 8},/obj/machinery/light{icon_state = "tube1"; dir = 8},/obj/structure/table/rack{dir = 8; layer = 2.9},/obj/item/weapon/storage/toolbox/mechanical,/obj/item/weapon/storage/toolbox/mechanical,/obj/item/device/multitool{pixel_x = 3},/obj/item/weapon/crowbar,/obj/item/weapon/crowbar,/obj/item/weapon/storage/belt/utility,/obj/item/weapon/storage/toolbox/electrical{pixel_x = 1; pixel_y = 6},/turf/simulated/floor/tiled/steel_grid,/area/assembly/robotics) +"bFd" = (/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled/steel_grid,/area/assembly/robotics) +"bFe" = (/obj/effect/floor_decal/industrial/warning{dir = 8},/obj/machinery/firealarm{dir = 1; pixel_x = 0; pixel_y = -25},/turf/simulated/floor/bluegrid,/area/assembly/chargebay) +"bFf" = (/obj/machinery/mech_recharger,/turf/simulated/floor/tiled/techmaint,/area/assembly/chargebay) +"bFg" = (/obj/machinery/light,/turf/simulated/floor/bluegrid,/area/assembly/chargebay) +"bFh" = (/obj/effect/floor_decal/industrial/warning{icon_state = "warning"; dir = 4},/obj/machinery/alarm{dir = 1; pixel_y = -25},/turf/simulated/floor/bluegrid,/area/assembly/chargebay) +"bFi" = (/obj/machinery/camera/network/northern_star{tag = "icon-camera (NORTH)"; icon_state = "camera"; dir = 1},/turf/simulated/floor/tiled,/area/hallway/lower/third_south) +"bFj" = (/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 1},/turf/simulated/floor/tiled,/area/hallway/lower/third_south) +"bFk" = (/obj/machinery/computer/guestpass{dir = 1; icon_state = "guest"; pixel_y = -28; tag = "icon-guest (NORTH)"},/turf/simulated/floor/tiled,/area/hallway/lower/third_south) +"bFl" = (/obj/machinery/alarm{dir = 1; pixel_y = -25},/turf/simulated/floor/tiled,/area/hallway/lower/third_south) +"bFm" = (/obj/machinery/disposal,/obj/structure/disposalpipe/trunk{dir = 1},/turf/simulated/floor/wood,/area/crew_quarters/bar) +"bFn" = (/obj/machinery/light,/obj/machinery/recharge_station,/turf/simulated/floor/wood,/area/crew_quarters/bar) +"bFo" = (/obj/effect/floor_decal/spline/plain{dir = 4},/obj/effect/floor_decal/spline/plain{dir = 8},/obj/item/device/radio/intercom{name = "Station Intercom (General)"; pixel_y = -21},/turf/simulated/floor/lino,/area/crew_quarters/bar) +"bFp" = (/obj/machinery/vending/boozeomat,/turf/simulated/floor/lino,/area/crew_quarters/bar) +"bFq" = (/obj/machinery/smartfridge/drinks,/turf/simulated/floor/lino,/area/crew_quarters/bar) +"bFr" = (/obj/structure/table/marble,/obj/machinery/chemical_dispenser/bar_alc/full,/turf/simulated/floor/lino,/area/crew_quarters/bar) +"bFs" = (/obj/structure/table/marble,/obj/machinery/chemical_dispenser/bar_soft/full,/turf/simulated/floor/lino,/area/crew_quarters/bar) +"bFt" = (/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,/obj/machinery/camera/network/civilian{tag = "icon-camera (NORTH)"; icon_state = "camera"; dir = 1},/turf/simulated/floor/lino,/area/crew_quarters/bar) +"bFu" = (/obj/structure/table/marble,/obj/item/weapon/flame/lighter/zippo,/obj/item/weapon/screwdriver,/obj/item/clothing/head/that{pixel_x = 4; pixel_y = 6},/obj/machinery/light,/obj/machinery/computer/guestpass{dir = 8; pixel_x = 25},/obj/machinery/button/remote/blast_door{dir = 1; id = "bar"; name = "Bar shutters"; pixel_x = 0; pixel_y = -25},/turf/simulated/floor/lino,/area/crew_quarters/bar) +"bFv" = (/obj/machinery/light/small{dir = 8; pixel_x = 0},/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 1},/turf/simulated/floor/wood,/area/crew_quarters/bar) +"bFw" = (/obj/structure/closet/gmcloset{icon_closed = "black"; icon_state = "black"; name = "formal wardrobe"},/obj/item/glass_jar,/obj/item/device/retail_scanner/civilian,/obj/item/device/retail_scanner/civilian,/turf/simulated/floor/wood,/area/crew_quarters/bar) +"bFx" = (/obj/structure/bed/chair{dir = 4},/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (WEST)"; icon_state = "borderfloor"; dir = 8},/obj/effect/floor_decal/corner/mauve/border{tag = "icon-bordercolor (WEST)"; icon_state = "bordercolor"; dir = 8},/obj/machinery/power/apc{cell_type = /obj/item/weapon/cell/super; dir = 8; name = "west bump"; pixel_x = -28},/obj/structure/cable/green{icon_state = "0-4"},/turf/simulated/floor/tiled,/area/rnd/rdoffice) +"bFy" = (/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 4},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/tiled,/area/rnd/rdoffice) +"bFz" = (/obj/structure/cable/green{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 9},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 5},/turf/simulated/floor/tiled,/area/rnd/rdoffice) +"bFA" = (/obj/machinery/atmospherics/unary/vent_pump/on{dir = 8},/turf/simulated/floor/tiled,/area/rnd/rdoffice) +"bFB" = (/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (EAST)"; icon_state = "borderfloor"; dir = 4},/obj/effect/floor_decal/corner/mauve/border{tag = "icon-bordercolor (EAST)"; icon_state = "bordercolor"; dir = 4},/obj/structure/table/standard,/obj/item/weapon/cartridge/signal/science,/obj/item/weapon/cartridge/signal/science,/obj/item/clothing/glasses/welding/superior,/obj/machinery/light_switch{pixel_x = 25},/turf/simulated/floor/tiled,/area/rnd/rdoffice) +"bFC" = (/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (WEST)"; icon_state = "borderfloor"; dir = 8},/obj/effect/floor_decal/corner/mauve/border{tag = "icon-bordercolor (WEST)"; icon_state = "bordercolor"; dir = 8},/obj/structure/bed/chair{dir = 4},/obj/machinery/requests_console{department = "Robotics"; departmentType = 2; name = "Robotics RC"; pixel_x = -30; pixel_y = 0},/turf/simulated/floor/tiled/steel_grid,/area/assembly/robotics) +"bFD" = (/obj/effect/floor_decal/industrial/loading{tag = "icon-loadingarea (WEST)"; icon_state = "loadingarea"; dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/tiled/steel_grid,/area/assembly/robotics) +"bFE" = (/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (EAST)"; icon_state = "borderfloor"; dir = 4},/obj/effect/floor_decal/corner/mauve/border{tag = "icon-bordercolor (EAST)"; icon_state = "bordercolor"; dir = 4},/obj/effect/floor_decal/borderfloor/corner2{tag = "icon-borderfloorcorner2 (SOUTHEAST)"; icon_state = "borderfloorcorner2"; dir = 6},/obj/effect/floor_decal/corner/mauve/bordercorner2{tag = "icon-bordercolorcorner2 (SOUTHEAST)"; icon_state = "bordercolorcorner2"; dir = 6},/obj/effect/floor_decal/industrial/warning/corner{icon_state = "warningcorner"; dir = 4},/obj/machinery/mecha_part_fabricator{dir = 8},/turf/simulated/floor/tiled/steel_grid,/area/assembly/robotics) +"bFF" = (/obj/machinery/door/firedoor/glass,/obj/machinery/door/airlock/glass_research{name = "Robotics Lab"; req_access = list(29,47)},/turf/simulated/floor/tiled,/area/assembly/robotics) +"bFG" = (/obj/structure/grille,/obj/structure/window/reinforced{dir = 5; icon_state = "fwindow"},/obj/machinery/door/firedoor,/obj/structure/window/reinforced,/turf/simulated/floor/plating,/area/hallway/lower/third_south) +"bFH" = (/obj/structure/grille,/obj/structure/window/reinforced{dir = 5; icon_state = "fwindow"},/obj/machinery/door/firedoor,/turf/simulated/floor/plating,/area/hallway/lower/third_south) +"bFI" = (/obj/structure/grille,/obj/structure/window/reinforced{dir = 5; icon_state = "fwindow"},/obj/machinery/door/firedoor,/obj/structure/window/reinforced,/obj/structure/window/reinforced{dir = 4},/turf/simulated/floor/plating,/area/crew_quarters/bar) +"bFJ" = (/obj/structure/grille,/obj/structure/window/reinforced{dir = 5; icon_state = "fwindow"},/obj/machinery/door/firedoor,/obj/structure/window/reinforced{dir = 8},/turf/simulated/floor/plating,/area/rnd/rdoffice) +"bFK" = (/obj/structure/table/glass,/obj/item/weapon/paper_bin{pixel_x = 1; pixel_y = 9},/obj/item/device/megaphone,/obj/item/weapon/paper/monitorkey,/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (WEST)"; icon_state = "borderfloor"; dir = 8},/obj/effect/floor_decal/corner/mauve/border{tag = "icon-bordercolor (WEST)"; icon_state = "bordercolor"; dir = 8},/turf/simulated/floor/tiled,/area/rnd/rdoffice) +"bFL" = (/obj/structure/table/glass,/obj/item/weapon/folder/white_rd,/turf/simulated/floor/tiled,/area/rnd/rdoffice) +"bFM" = (/obj/structure/table/glass,/obj/machinery/computer/skills,/turf/simulated/floor/tiled,/area/rnd/rdoffice) +"bFN" = (/turf/simulated/floor/tiled,/area/rnd/rdoffice) +"bFO" = (/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (EAST)"; icon_state = "borderfloor"; dir = 4},/obj/effect/floor_decal/corner/mauve/border{tag = "icon-bordercolor (EAST)"; icon_state = "bordercolor"; dir = 4},/turf/simulated/floor/tiled,/area/rnd/rdoffice) +"bFP" = (/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (WEST)"; icon_state = "borderfloor"; dir = 8},/obj/effect/floor_decal/corner/mauve/border{tag = "icon-bordercolor (WEST)"; icon_state = "bordercolor"; dir = 8},/obj/structure/bed/chair{dir = 4},/obj/effect/floor_decal/borderfloor/corner2{tag = "icon-borderfloorcorner2 (SOUTHWEST)"; icon_state = "borderfloorcorner2"; dir = 10},/obj/effect/floor_decal/corner/mauve/bordercorner2{tag = "icon-bordercolorcorner2 (SOUTHWEST)"; icon_state = "bordercolorcorner2"; dir = 10},/turf/simulated/floor/tiled/steel_grid,/area/assembly/robotics) +"bFQ" = (/obj/structure/disposalpipe/segment{dir = 1; icon_state = "pipe-c"},/turf/simulated/floor/tiled/steel_grid,/area/assembly/robotics) +"bFR" = (/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled/steel_grid,/area/assembly/robotics) +"bFS" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled/steel_grid,/area/assembly/robotics) +"bFT" = (/obj/effect/floor_decal/borderfloor/corner{tag = "icon-borderfloorcorner (EAST)"; icon_state = "borderfloorcorner"; dir = 4},/obj/effect/floor_decal/corner/mauve/bordercorner{tag = "icon-bordercolorcorner (EAST)"; icon_state = "bordercolorcorner"; dir = 4},/obj/machinery/computer/rdconsole/robotics{dir = 2},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled/steel_grid,/area/assembly/robotics) +"bFU" = (/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (NORTH)"; icon_state = "borderfloor"; dir = 1},/obj/effect/floor_decal/corner/mauve/border{tag = "icon-bordercolor (NORTH)"; icon_state = "bordercolor"; dir = 1},/obj/machinery/pros_fabricator,/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled/steel_grid,/area/assembly/robotics) +"bFV" = (/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (NORTH)"; icon_state = "borderfloor"; dir = 1},/obj/effect/floor_decal/corner/mauve/border{tag = "icon-bordercolor (NORTH)"; icon_state = "bordercolor"; dir = 1},/obj/machinery/autolathe,/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled/steel_grid,/area/assembly/robotics) +"bFW" = (/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (NORTH)"; icon_state = "borderfloor"; dir = 1},/obj/effect/floor_decal/corner/mauve/border{tag = "icon-bordercolor (NORTH)"; icon_state = "bordercolor"; dir = 1},/obj/machinery/r_n_d/circuit_imprinter,/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled/steel_grid,/area/assembly/robotics) +"bFX" = (/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (NORTH)"; icon_state = "borderfloor"; dir = 1},/obj/effect/floor_decal/corner/mauve/border{tag = "icon-bordercolor (NORTH)"; icon_state = "bordercolor"; dir = 1},/obj/structure/table/standard{name = "plastic table frame"},/obj/item/weapon/book/manual/robotics_cyborgs{pixel_x = 2; pixel_y = 5},/obj/machinery/light{dir = 1},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled/steel_grid,/area/assembly/robotics) +"bFY" = (/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (NORTH)"; icon_state = "borderfloor"; dir = 1},/obj/effect/floor_decal/corner/mauve/border{tag = "icon-bordercolor (NORTH)"; icon_state = "bordercolor"; dir = 1},/obj/structure/table/standard{name = "plastic table frame"},/obj/machinery/camera/network/research{c_tag = "SCI - Xenoflora"; dir = 2},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled/steel_grid,/area/assembly/robotics) +"bFZ" = (/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (NORTH)"; icon_state = "borderfloor"; dir = 1},/obj/effect/floor_decal/corner/mauve/border{tag = "icon-bordercolor (NORTH)"; icon_state = "bordercolor"; dir = 1},/obj/structure/table/standard{name = "plastic table frame"},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled/steel_grid,/area/assembly/robotics) +"bGa" = (/obj/structure/closet{name = "materials"},/obj/item/stack/material/steel{amount = 50},/obj/item/stack/material/steel{amount = 50},/obj/item/stack/material/steel{amount = 50},/obj/item/stack/material/steel{amount = 50},/obj/item/stack/material/steel{amount = 50},/obj/item/stack/material/glass{amount = 50; pixel_x = -2; pixel_y = 2},/obj/item/stack/material/glass{amount = 50; pixel_x = -2; pixel_y = 2},/obj/item/stack/material/glass{amount = 50; pixel_x = -2; pixel_y = 2},/obj/item/stack/material/glass{amount = 50; pixel_x = -2; pixel_y = 2},/obj/item/stack/material/plasteel{amount = 10},/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (NORTH)"; icon_state = "borderfloor"; dir = 1},/obj/effect/floor_decal/corner/mauve/border{tag = "icon-bordercolor (NORTH)"; icon_state = "bordercolor"; dir = 1},/obj/machinery/status_display{pixel_y = 30},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled/steel_grid,/area/assembly/robotics) +"bGb" = (/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (NORTH)"; icon_state = "borderfloor"; dir = 1},/obj/effect/floor_decal/corner/mauve/border{tag = "icon-bordercolor (NORTH)"; icon_state = "bordercolor"; dir = 1},/obj/effect/floor_decal/borderfloor/corner2{tag = "icon-borderfloorcorner2 (NORTH)"; icon_state = "borderfloorcorner2"; dir = 1},/obj/effect/floor_decal/corner/mauve/bordercorner2{tag = "icon-bordercolorcorner2 (NORTH)"; icon_state = "bordercolorcorner2"; dir = 1},/obj/structure/sink{pixel_y = 24},/obj/effect/floor_decal/steeldecal/steel_decals4{tag = "icon-steel_decals4 (NORTH)"; icon_state = "steel_decals4"; dir = 1},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled/steel_grid,/area/assembly/robotics) +"bGc" = (/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (NORTHEAST)"; icon_state = "borderfloor"; dir = 5},/obj/effect/floor_decal/corner/mauve/border{tag = "icon-bordercolor (NORTHEAST)"; icon_state = "bordercolor"; dir = 5},/obj/effect/floor_decal/borderfloor/corner2{tag = "icon-borderfloorcorner2 (EAST)"; icon_state = "borderfloorcorner2"; dir = 4},/obj/effect/floor_decal/corner/mauve/bordercorner2{tag = "icon-bordercolorcorner2 (EAST)"; icon_state = "bordercolorcorner2"; dir = 4},/obj/machinery/light_switch{pixel_x = 25},/obj/machinery/disposal,/obj/structure/disposalpipe/trunk{dir = 8},/turf/simulated/floor/tiled/steel_grid,/area/assembly/robotics) +"bGd" = (/obj/structure/grille,/obj/structure/window/reinforced{dir = 5; icon_state = "fwindow"},/obj/machinery/door/firedoor,/obj/structure/window/reinforced{dir = 8},/turf/simulated/floor/plating,/area/hallway/lower/third_south) +"bGe" = (/obj/structure/grille,/obj/structure/window/reinforced{dir = 5; icon_state = "fwindow"},/obj/machinery/door/firedoor,/obj/structure/window/reinforced{dir = 4},/turf/simulated/floor/plating,/area/hallway/lower/third_south) +"bGf" = (/obj/structure/filingcabinet/chestdrawer,/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (WEST)"; icon_state = "borderfloor"; dir = 8},/obj/effect/floor_decal/corner/mauve/border{tag = "icon-bordercolor (WEST)"; icon_state = "bordercolor"; dir = 8},/turf/simulated/floor/tiled,/area/rnd/rdoffice) +"bGg" = (/obj/structure/bed/chair/office/light{dir = 1},/turf/simulated/floor/tiled,/area/rnd/rdoffice) +"bGh" = (/obj/structure/table/glass,/obj/machinery/photocopier/faxmachine{department = "Research Director's Office"},/turf/simulated/floor/tiled,/area/rnd/rdoffice) +"bGi" = (/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (EAST)"; icon_state = "borderfloor"; dir = 4},/obj/effect/floor_decal/corner/mauve/border{tag = "icon-bordercolor (EAST)"; icon_state = "bordercolor"; dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals4{tag = "icon-steel_decals4 (NORTHEAST)"; icon_state = "steel_decals4"; dir = 5},/turf/simulated/floor/tiled,/area/rnd/rdoffice) +"bGj" = (/obj/structure/ladder,/obj/effect/floor_decal/industrial/outline/blue,/obj/machinery/camera/network/research{c_tag = "SCI - Research Hallway Center"; dir = 4},/turf/simulated/floor/tiled/steel_grid,/area/assembly/robotics) +"bGk" = (/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 4},/turf/simulated/floor/tiled/steel_grid,/area/assembly/robotics) +"bGl" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 5},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 9},/turf/simulated/floor/tiled/steel_grid,/area/assembly/robotics) +"bGm" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled/steel_grid,/area/assembly/robotics) +"bGn" = (/obj/effect/floor_decal/industrial/loading,/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled/steel_grid,/area/assembly/robotics) +"bGo" = (/obj/machinery/atmospherics/unary/vent_pump/on{dir = 8},/turf/simulated/floor/tiled/steel_grid,/area/assembly/robotics) +"bGp" = (/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (EAST)"; icon_state = "borderfloor"; dir = 4},/obj/effect/floor_decal/corner/mauve/border{tag = "icon-bordercolor (EAST)"; icon_state = "bordercolor"; dir = 4},/obj/machinery/light{icon_state = "tube1"; dir = 4},/obj/structure/extinguisher_cabinet{dir = 2; icon_state = "extinguisher_closed"; pixel_x = 30; tag = "icon-extinguisher_closed (WEST)"},/turf/simulated/floor/tiled/steel_grid,/area/assembly/robotics) +"bGq" = (/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (WEST)"; icon_state = "borderfloor"; dir = 8},/obj/effect/floor_decal/corner/mauve/border{tag = "icon-bordercolor (WEST)"; icon_state = "bordercolor"; dir = 8},/turf/simulated/floor/tiled,/area/rnd/rdoffice) +"bGr" = (/mob/living/simple_animal/slime/science,/turf/simulated/floor/tiled,/area/rnd/rdoffice) +"bGs" = (/obj/structure/table/rack,/obj/item/weapon/rig/hazmat/equipped,/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (EAST)"; icon_state = "borderfloor"; dir = 4},/obj/effect/floor_decal/corner/mauve/border{tag = "icon-bordercolor (EAST)"; icon_state = "bordercolor"; dir = 4},/turf/simulated/floor/tiled,/area/rnd/rdoffice) +"bGt" = (/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (WEST)"; icon_state = "borderfloor"; dir = 8},/obj/effect/floor_decal/corner/mauve/border{tag = "icon-bordercolor (WEST)"; icon_state = "bordercolor"; dir = 8},/obj/structure/bed/chair,/obj/effect/floor_decal/borderfloor/corner2{tag = "icon-borderfloorcorner2 (WEST)"; icon_state = "borderfloorcorner2"; dir = 8},/obj/effect/floor_decal/corner/mauve/bordercorner2{tag = "icon-bordercolorcorner2 (WEST)"; icon_state = "bordercolorcorner2"; dir = 8},/turf/simulated/floor/tiled/steel_grid,/area/assembly/robotics) +"bGu" = (/obj/effect/floor_decal/industrial/warning/corner,/turf/simulated/floor/tiled/steel_grid,/area/assembly/robotics) +"bGv" = (/obj/effect/floor_decal/industrial/warning,/turf/simulated/floor/tiled/steel_grid,/area/assembly/robotics) +"bGw" = (/obj/effect/floor_decal/industrial/warning/corner{dir = 8},/turf/simulated/floor/tiled/steel_grid,/area/assembly/robotics) +"bGx" = (/obj/structure/bed/chair/office/light,/turf/simulated/floor/tiled/steel_grid,/area/assembly/robotics) +"bGy" = (/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (EAST)"; icon_state = "borderfloor"; dir = 4},/obj/effect/floor_decal/corner/mauve/border{tag = "icon-bordercolor (EAST)"; icon_state = "bordercolor"; dir = 4},/obj/structure/table/standard,/obj/item/weapon/paper_bin{pixel_x = -3; pixel_y = 7},/obj/machinery/newscaster{pixel_x = 25},/turf/simulated/floor/tiled/steel_grid,/area/assembly/robotics) +"bGz" = (/obj/machinery/door/firedoor/glass/hidden/steel{dir = 2},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/camera/network/northern_star{tag = "icon-camera (EAST)"; icon_state = "camera"; dir = 4},/turf/simulated/floor/tiled,/area/hallway/lower/third_south) +"bGA" = (/obj/machinery/door/firedoor/glass/hidden/steel{dir = 2},/turf/simulated/floor/tiled,/area/hallway/lower/third_south) +"bGB" = (/obj/machinery/door/firedoor/glass/hidden/steel{dir = 2},/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/tiled,/area/hallway/lower/third_south) +"bGC" = (/obj/machinery/computer/aifixer{dir = 1},/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (SOUTHWEST)"; icon_state = "borderfloor"; dir = 10},/obj/effect/floor_decal/corner/mauve/border{tag = "icon-bordercolor (SOUTHWEST)"; icon_state = "bordercolor"; dir = 10},/obj/machinery/alarm{dir = 1; pixel_y = -25},/turf/simulated/floor/tiled,/area/rnd/rdoffice) +"bGD" = (/obj/machinery/computer/robotics{dir = 1},/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/corner/mauve/border,/turf/simulated/floor/tiled,/area/rnd/rdoffice) +"bGE" = (/obj/machinery/computer/mecha{dir = 1},/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/corner/mauve/border,/obj/machinery/light,/turf/simulated/floor/tiled,/area/rnd/rdoffice) +"bGF" = (/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/corner/mauve/border,/obj/machinery/camera/network/research{c_tag = "SCI - Research Dock Hallway Starboard"; dir = 1},/turf/simulated/floor/tiled,/area/rnd/rdoffice) +"bGG" = (/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (SOUTHEAST)"; icon_state = "borderfloor"; dir = 6},/obj/effect/floor_decal/corner/mauve/border{tag = "icon-bordercolor (SOUTHEAST)"; icon_state = "bordercolor"; dir = 6},/obj/structure/closet/secure_closet/RD,/obj/item/clothing/glasses/omnihud/rnd,/obj/item/device/radio/intercom{name = "Station Intercom (General)"; pixel_y = -21},/turf/simulated/floor/tiled,/area/rnd/rdoffice) +"bGH" = (/obj/machinery/computer/transhuman/resleeving{dir = 1},/obj/item/weapon/book/manual/resleeving,/obj/item/weapon/storage/box/backup_kit,/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (SOUTHWEST)"; icon_state = "borderfloor"; dir = 10},/obj/effect/floor_decal/corner/mauve/border{tag = "icon-bordercolor (SOUTHWEST)"; icon_state = "bordercolor"; dir = 10},/turf/simulated/floor/tiled/steel_grid,/area/assembly/robotics) +"bGI" = (/obj/machinery/transhuman/synthprinter,/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/corner/mauve/border,/turf/simulated/floor/tiled/steel_grid,/area/assembly/robotics) +"bGJ" = (/obj/machinery/light,/obj/machinery/transhuman/resleever,/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/corner/mauve/border,/turf/simulated/floor/tiled/steel_grid,/area/assembly/robotics) +"bGK" = (/obj/structure/closet{name = "robotics parts"},/obj/item/weapon/cell/high{charge = 100; maxcharge = 15000; pixel_x = 5; pixel_y = -5},/obj/item/device/assembly/prox_sensor{pixel_x = -8; pixel_y = 4},/obj/item/device/assembly/prox_sensor{pixel_x = -8; pixel_y = 4},/obj/item/weapon/cell/high{charge = 100; maxcharge = 15000; pixel_x = 5; pixel_y = -5},/obj/item/weapon/cell/high{charge = 100; maxcharge = 15000; pixel_x = 5; pixel_y = -5},/obj/item/weapon/cell/high{charge = 100; maxcharge = 15000; pixel_x = 5; pixel_y = -5},/obj/item/weapon/storage/firstaid/regular{empty = 1; name = "First-Aid (empty)"},/obj/item/weapon/storage/firstaid/regular{empty = 1; name = "First-Aid (empty)"},/obj/item/weapon/storage/firstaid/regular{empty = 1; name = "First-Aid (empty)"},/obj/item/device/healthanalyzer,/obj/item/device/healthanalyzer,/obj/item/device/healthanalyzer,/obj/item/device/flash/synthetic,/obj/item/device/flash/synthetic,/obj/item/device/flash/synthetic,/obj/item/device/flash/synthetic,/obj/item/device/flash/synthetic,/obj/item/device/flash/synthetic,/obj/item/stack/cable_coil,/obj/item/stack/cable_coil,/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/corner/mauve/border,/turf/simulated/floor/tiled/steel_grid,/area/assembly/robotics) +"bGL" = (/obj/structure/closet{name = "welding equipment"},/obj/item/clothing/head/welding{pixel_x = -3; pixel_y = 5},/obj/item/clothing/head/welding{pixel_x = -3; pixel_y = 5},/obj/item/clothing/glasses/welding,/obj/item/clothing/glasses/welding,/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/corner/mauve/border,/turf/simulated/floor/tiled/steel_grid,/area/assembly/robotics) +"bGM" = (/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/corner/mauve/border,/obj/effect/floor_decal/industrial/warning{dir = 4},/obj/structure/closet/secure_closet/medical_wall{name = "anesthetic closet"; pixel_x = 0; pixel_y = -32; req_access = list(29)},/obj/item/weapon/tank/anesthetic,/obj/item/weapon/tank/anesthetic,/obj/item/weapon/tank/anesthetic,/obj/item/clothing/mask/breath/medical,/obj/item/clothing/mask/breath/medical,/obj/item/clothing/mask/breath/medical,/turf/simulated/floor/tiled/steel_grid,/area/assembly/robotics) +"bGN" = (/obj/structure/table/standard,/obj/item/device/defib_kit/jumper_kit,/obj/item/weapon/storage/box/gloves,/obj/item/weapon/storage/box/bodybags{pixel_x = -1; pixel_y = -2},/turf/simulated/floor/tiled/white,/area/assembly/robotics) +"bGO" = (/obj/structure/table/standard,/obj/item/weapon/storage/firstaid/surgery,/turf/simulated/floor/tiled/white,/area/assembly/robotics) +"bGP" = (/obj/machinery/optable{name = "Robotics Operating Table"},/turf/simulated/floor/tiled/white,/area/assembly/robotics) +"bGQ" = (/obj/structure/table/standard,/obj/item/device/robotanalyzer,/obj/item/device/robotanalyzer,/turf/simulated/floor/tiled/white,/area/assembly/robotics) +"bGR" = (/obj/structure/table/standard,/obj/item/device/mmi/digital/posibrain,/obj/item/device/mmi,/turf/simulated/floor/tiled/white,/area/assembly/robotics) +"bGS" = (/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/corner/mauve/border,/obj/effect/floor_decal/industrial/warning{icon_state = "warning"; dir = 8},/obj/structure/reagent_dispensers/fueltank,/turf/simulated/floor/tiled/steel_grid,/area/assembly/robotics) +"bGT" = (/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/corner/mauve/border,/obj/structure/filingcabinet/chestdrawer,/turf/simulated/floor/tiled/steel_grid,/area/assembly/robotics) +"bGU" = (/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/corner/mauve/border,/obj/structure/table/standard,/obj/machinery/computer/med_data/laptop,/turf/simulated/floor/tiled/steel_grid,/area/assembly/robotics) +"bGV" = (/obj/effect/floor_decal/borderfloor{tag = "icon-borderfloor (SOUTHEAST)"; icon_state = "borderfloor"; dir = 6},/obj/effect/floor_decal/corner/mauve/border{tag = "icon-bordercolor (SOUTHEAST)"; icon_state = "bordercolor"; dir = 6},/obj/structure/table/standard,/obj/item/weapon/pen,/obj/item/weapon/pen,/obj/item/weapon/pen,/obj/machinery/firealarm{dir = 4; pixel_x = 24},/turf/simulated/floor/tiled/steel_grid,/area/assembly/robotics) +"bGW" = (/obj/machinery/light{icon_state = "tube1"; dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/tiled,/area/hallway/lower/third_south) +"bGX" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/item/device/radio/intercom{dir = 4; name = "Station Intercom (General)"; pixel_x = 21},/turf/simulated/floor/tiled,/area/hallway/lower/third_south) +"bGY" = (/turf/simulated/wall,/area/tether/surfacebase/shuttle_pad) +"bGZ" = (/obj/structure/grille,/obj/structure/window/reinforced{dir = 5; icon_state = "fwindow"},/obj/machinery/door/firedoor,/obj/structure/window/reinforced{dir = 1},/turf/simulated/floor/plating,/area/tether/surfacebase/shuttle_pad) +"bHa" = (/obj/structure/grille,/obj/structure/window/reinforced{dir = 5; icon_state = "fwindow"},/obj/machinery/door/firedoor,/obj/structure/window/reinforced,/turf/simulated/floor/plating,/area/rnd/rdoffice) +"bHb" = (/obj/structure/grille,/obj/structure/window/reinforced{dir = 5; icon_state = "fwindow"},/obj/machinery/door/firedoor,/obj/structure/window/reinforced,/turf/simulated/floor/plating,/area/assembly/robotics) +"bHc" = (/obj/machinery/firealarm{dir = 8; pixel_x = -24},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/tiled,/area/hallway/lower/third_south) +"bHd" = (/obj/structure/closet/firecloset,/turf/simulated/floor/reinforced,/area/tether/surfacebase/shuttle_pad) +"bHe" = (/turf/simulated/floor/reinforced,/area/tether/surfacebase/shuttle_pad) +"bHf" = (/obj/machinery/computer/shuttle_control/tether_backup,/obj/machinery/airlock_sensor{frequency = 1380; id_tag = "tether_pad_sensor"; pixel_x = -11; pixel_y = 28},/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"},/turf/simulated/floor/reinforced,/area/tether/surfacebase/shuttle_pad) +"bHg" = (/obj/machinery/light{dir = 1},/turf/simulated/floor/reinforced,/area/tether/surfacebase/shuttle_pad) +"bHh" = (/obj/structure/frame/computer,/turf/simulated/floor/reinforced,/area/tether/surfacebase/shuttle_pad) +"bHi" = (/obj/structure/grille,/obj/structure/window/reinforced{dir = 5; icon_state = "fwindow"},/obj/machinery/door/firedoor,/obj/structure/window/reinforced{dir = 8},/turf/simulated/floor/plating,/area/tether/surfacebase/shuttle_pad) +"bHj" = (/obj/effect/floor_decal/industrial/warning/corner,/turf/simulated/floor/reinforced,/area/tether/surfacebase/shuttle_pad) +"bHk" = (/obj/effect/floor_decal/industrial/warning,/turf/simulated/floor/reinforced,/area/tether/surfacebase/shuttle_pad) +"bHl" = (/obj/effect/floor_decal/industrial/warning/corner{icon_state = "warningcorner"; dir = 8},/turf/simulated/floor/reinforced,/area/tether/surfacebase/shuttle_pad) +"bHm" = (/obj/structure/grille,/obj/structure/window/reinforced{dir = 5; icon_state = "fwindow"},/obj/machinery/door/firedoor,/obj/structure/window/reinforced{dir = 4},/turf/simulated/floor/plating,/area/tether/surfacebase/shuttle_pad) +"bHn" = (/obj/effect/floor_decal/industrial/warning{dir = 4},/turf/simulated/floor/reinforced,/area/tether/surfacebase/shuttle_pad) +"bHo" = (/turf/simulated/shuttle/wall,/area/shuttle/tether/surface) +"bHp" = (/obj/structure/shuttle/window,/obj/structure/grille,/turf/unsimulated/shuttle/plating,/area/shuttle/tether/surface) +"bHq" = (/obj/effect/floor_decal/industrial/warning{icon_state = "warning"; dir = 8},/turf/simulated/floor/reinforced,/area/tether/surfacebase/shuttle_pad) +"bHr" = (/obj/effect/floor_decal/industrial/warning{dir = 4},/obj/machinery/camera/network/civilian{tag = "icon-camera (EAST)"; icon_state = "camera"; dir = 4},/turf/simulated/floor/reinforced,/area/tether/surfacebase/shuttle_pad) +"bHs" = (/obj/structure/closet/firecloset,/turf/simulated/shuttle/floor/black,/area/shuttle/tether/surface) +"bHt" = (/obj/machinery/computer/shuttle_control/tether_backup,/turf/simulated/shuttle/floor/black,/area/shuttle/tether/surface) +"bHu" = (/obj/structure/closet/emcloset,/turf/simulated/shuttle/floor/black,/area/shuttle/tether/surface) +"bHv" = (/obj/structure/bed/chair/shuttle{tag = "icon-shuttle_chair (EAST)"; icon_state = "shuttle_chair"; dir = 4},/turf/simulated/shuttle/floor/black,/area/shuttle/tether/surface) +"bHw" = (/turf/simulated/shuttle/floor/black,/area/shuttle/tether/surface) +"bHx" = (/obj/structure/bed/chair/shuttle{tag = "icon-shuttle_chair (WEST)"; icon_state = "shuttle_chair"; dir = 8},/obj/machinery/embedded_controller/radio/simple_docking_controller{frequency = 1380; id_tag = "tether_shuttle"; pixel_x = 25; pixel_y = 0; tag_door = "tether_shuttle_hatch"},/turf/simulated/shuttle/floor/black,/area/shuttle/tether/surface) +"bHy" = (/obj/machinery/light{dir = 8; icon_state = "tube1"; pixel_y = 0},/turf/simulated/shuttle/floor/black,/area/shuttle/tether/surface) +"bHz" = (/obj/machinery/door/airlock/external{frequency = 1380; icon_state = "door_locked"; id_tag = "tether_shuttle_hatch"; locked = 1; name = "Shuttle Hatch"; req_access = newlist()},/turf/simulated/floor/plating,/area/shuttle/tether/surface) +"bHA" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/camera/network/northern_star{tag = "icon-camera (NORTHWEST)"; icon_state = "camera"; dir = 9},/turf/simulated/floor/tiled,/area/hallway/lower/third_south) +"bHB" = (/obj/machinery/firealarm{dir = 8; pixel_x = -24},/obj/effect/floor_decal/industrial/warning{dir = 4},/turf/simulated/floor/reinforced,/area/tether/surfacebase/shuttle_pad) +"bHC" = (/obj/structure/bed/chair/shuttle{tag = "icon-shuttle_chair (NORTH)"; icon_state = "shuttle_chair"; dir = 1},/turf/simulated/shuttle/floor/black,/area/shuttle/tether/surface) +"bHD" = (/obj/machinery/alarm{dir = 4; icon_state = "alarm0"; pixel_x = -22; pixel_y = 0},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/tiled,/area/hallway/lower/third_south) +"bHE" = (/obj/machinery/light{dir = 4; icon_state = "tube1"},/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/extinguisher_cabinet{dir = 2; icon_state = "extinguisher_closed"; pixel_x = 30; tag = "icon-extinguisher_closed (WEST)"},/turf/simulated/floor/tiled,/area/hallway/lower/third_south) +"bHF" = (/obj/machinery/light{icon_state = "tube1"; dir = 8},/obj/effect/floor_decal/industrial/warning{dir = 4},/obj/structure/extinguisher_cabinet{dir = 4; icon_state = "extinguisher_closed"; pixel_x = -30; tag = "icon-extinguisher_closed (EAST)"},/turf/simulated/floor/reinforced,/area/tether/surfacebase/shuttle_pad) +"bHG" = (/obj/structure/shuttle/engine/heater,/obj/structure/window/reinforced{dir = 1; health = 1e+006},/turf/simulated/shuttle/plating/airless,/area/shuttle/tether/surface) +"bHH" = (/obj/machinery/light{dir = 4; icon_state = "tube1"},/obj/effect/floor_decal/industrial/warning{icon_state = "warning"; dir = 8},/turf/simulated/floor/reinforced,/area/tether/surfacebase/shuttle_pad) +"bHI" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/newscaster{pixel_x = 25},/turf/simulated/floor/tiled,/area/hallway/lower/third_south) +"bHJ" = (/obj/machinery/power/apc{cell_type = /obj/item/weapon/cell/super; dir = 8; name = "west bump"; pixel_x = -28},/obj/structure/cable/green{d2 = 2; icon_state = "0-2"},/obj/effect/floor_decal/industrial/warning{dir = 4},/turf/simulated/floor/reinforced,/area/tether/surfacebase/shuttle_pad) +"bHK" = (/turf/simulated/floor/reinforced,/obj/structure/shuttle/engine/propulsion,/turf/simulated/shuttle/plating/carry,/area/shuttle/tether/surface) +"bHL" = (/obj/machinery/atmospherics/unary/vent_scrubber/on,/turf/simulated/floor/tiled,/area/hallway/lower/third_south) +"bHM" = (/obj/structure/grille,/obj/structure/window/reinforced{dir = 5; icon_state = "fwindow"},/obj/machinery/door/firedoor,/turf/simulated/floor/plating,/area/tether/surfacebase/shuttle_pad) +"bHN" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/unary/vent_scrubber/on,/obj/effect/floor_decal/industrial/warning/corner{icon_state = "warningcorner"; dir = 4},/turf/simulated/floor/reinforced,/area/tether/surfacebase/shuttle_pad) +"bHO" = (/obj/effect/floor_decal/industrial/warning{dir = 1},/turf/simulated/floor/reinforced,/area/tether/surfacebase/shuttle_pad) +"bHP" = (/obj/effect/floor_decal/industrial/warning/corner{dir = 1},/turf/simulated/floor/reinforced,/area/tether/surfacebase/shuttle_pad) +"bHQ" = (/obj/effect/floor_decal/industrial/warning/corner{icon_state = "warningcorner"; dir = 4},/turf/simulated/floor/reinforced,/area/tether/surfacebase/shuttle_pad) +"bHR" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 5},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 5},/turf/simulated/floor/tiled,/area/hallway/lower/third_south) +"bHS" = (/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 1},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,/turf/simulated/floor/tiled,/area/hallway/lower/third_south) +"bHT" = (/obj/structure/cable/green{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/turf/simulated/floor/tiled,/area/hallway/lower/third_south) +"bHU" = (/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,/area/hallway/lower/third_south) +"bHV" = (/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/external{req_one_access = list()},/turf/simulated/floor/tiled,/area/tether/surfacebase/shuttle_pad) +"bHW" = (/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,/area/tether/surfacebase/shuttle_pad) +"bHX" = (/obj/structure/cable/green{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 10},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 4},/turf/simulated/floor/reinforced,/area/tether/surfacebase/shuttle_pad) +"bHY" = (/obj/structure/extinguisher_cabinet{dir = 2; icon_state = "extinguisher_closed"; pixel_x = 30; tag = "icon-extinguisher_closed (WEST)"},/turf/simulated/floor/reinforced,/area/tether/surfacebase/shuttle_pad) +"bHZ" = (/obj/effect/wingrille_spawn/reinforced,/obj/structure/sign/warning/internals_required,/obj/machinery/door/firedoor/glass,/turf/simulated/floor/plating,/area/tether/surfacebase/shuttle_pad) +"bIa" = (/turf/simulated/floor/tiled,/area/tether/surfacebase/shuttle_pad) +"bIb" = (/obj/effect/wingrille_spawn/reinforced,/obj/structure/sign/warning/nosmoking_1,/obj/machinery/door/firedoor/glass,/turf/simulated/floor/plating,/area/tether/surfacebase/shuttle_pad) +"bIc" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/reinforced,/area/tether/surfacebase/shuttle_pad) +"bId" = (/obj/machinery/camera/network/civilian{tag = "icon-camera (NORTH)"; icon_state = "camera"; dir = 1},/turf/simulated/floor/reinforced,/area/tether/surfacebase/shuttle_pad) +"bIe" = (/obj/machinery/atmospherics/unary/vent_pump/on{dir = 1},/turf/simulated/floor/tiled,/area/hallway/lower/third_south) +"bIf" = (/obj/machinery/door/firedoor/glass,/obj/machinery/door/airlock/external{req_one_access = list()},/turf/simulated/floor/tiled,/area/tether/surfacebase/shuttle_pad) +"bIg" = (/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 5},/turf/simulated/floor/reinforced,/area/tether/surfacebase/shuttle_pad) +"bIh" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/turf/simulated/floor/reinforced,/area/tether/surfacebase/shuttle_pad) +"bIi" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 10},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 10},/turf/simulated/floor/reinforced,/area/tether/surfacebase/shuttle_pad) +"bIj" = (/obj/structure/grille,/obj/structure/window/reinforced{dir = 5; icon_state = "fwindow"},/obj/machinery/door/firedoor,/obj/structure/window/reinforced,/obj/structure/window/reinforced{dir = 8},/turf/simulated/floor/plating,/area/hallway/lower/third_south) +"bIk" = (/obj/structure/grille,/obj/structure/window/reinforced{dir = 5; icon_state = "fwindow"},/obj/machinery/door/firedoor,/obj/structure/window/reinforced,/turf/simulated/floor/plating,/area/tether/surfacebase/shuttle_pad) +"bIl" = (/obj/machinery/atmospherics/unary/vent_pump/on{dir = 1},/turf/simulated/floor/reinforced,/area/tether/surfacebase/shuttle_pad) +"bIm" = (/turf/simulated/floor/tiled/techfloor,/area/tether/surfacebase/shuttle_pad) +"bIn" = (/obj/machinery/light{dir = 1},/turf/simulated/floor/tiled/techfloor,/area/tether/surfacebase/shuttle_pad) +"bIo" = (/obj/structure/shuttle/engine/propulsion,/turf/simulated/floor/tiled/techfloor,/area/tether/surfacebase/shuttle_pad) +"bIp" = (/obj/item/device/radio/intercom{dir = 8; name = "Station Intercom (General)"; pixel_x = -28},/turf/simulated/floor/reinforced,/area/tether/surfacebase/shuttle_pad) +"bIq" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 5},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 5},/turf/simulated/floor/reinforced,/area/tether/surfacebase/shuttle_pad) +"bIr" = (/obj/machinery/door/airlock/glass,/obj/machinery/door/firedoor/glass,/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/turf/simulated/floor/tiled/techfloor,/area/tether/surfacebase/shuttle_pad) +"bIs" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 10},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 10},/turf/simulated/floor/tiled/techfloor,/area/tether/surfacebase/shuttle_pad) +"bIt" = (/obj/structure/table/steel,/obj/item/weapon/storage/toolbox/mechanical,/obj/machinery/atmospherics/unary/vent_pump/on,/turf/simulated/floor/tiled/techfloor,/area/tether/surfacebase/shuttle_pad) +"bIu" = (/obj/machinery/alarm{dir = 4; icon_state = "alarm0"; pixel_x = -22; pixel_y = 0},/turf/simulated/floor/reinforced,/area/tether/surfacebase/shuttle_pad) +"bIv" = (/obj/structure/extinguisher_cabinet{dir = 4; icon_state = "extinguisher_closed"; pixel_x = -30; tag = "icon-extinguisher_closed (EAST)"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 5},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 5},/turf/simulated/floor/tiled/techfloor,/area/tether/surfacebase/shuttle_pad) +"bIw" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/turf/simulated/floor/tiled/techfloor,/area/tether/surfacebase/shuttle_pad) +"bIx" = (/obj/structure/bed/chair,/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/turf/simulated/floor/tiled/techfloor,/area/tether/surfacebase/shuttle_pad) +"bIy" = (/obj/structure/table/steel,/obj/item/weapon/storage/toolbox/electrical,/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 9},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 10},/turf/simulated/floor/tiled/techfloor,/area/tether/surfacebase/shuttle_pad) +"bIz" = (/obj/structure/extinguisher_cabinet{dir = 4; icon_state = "extinguisher_closed"; pixel_x = -30; tag = "icon-extinguisher_closed (EAST)"},/turf/simulated/floor/reinforced,/area/tether/surfacebase/shuttle_pad) +"bIA" = (/obj/machinery/light,/turf/simulated/floor/reinforced,/area/tether/surfacebase/shuttle_pad) +"bIB" = (/obj/structure/kitchenspike{name = "engine hoist"},/turf/simulated/floor/tiled/techfloor,/area/tether/surfacebase/shuttle_pad) +"bIC" = (/obj/machinery/camera/network/engineering{c_tag = "ENG - Pump Station"; dir = 1},/turf/simulated/floor/tiled/techfloor,/area/tether/surfacebase/shuttle_pad) +"bID" = (/obj/structure/table/steel,/turf/simulated/floor/tiled/techfloor,/area/tether/surfacebase/shuttle_pad) +"bIE" = (/obj/structure/table/steel,/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 1},/turf/simulated/floor/tiled/techfloor,/area/tether/surfacebase/shuttle_pad) +"bIF" = (/obj/machinery/camera/network/northern_star,/turf/simulated/floor/outdoors/grass/sif/virgo3b,/area/tether/surfacebase/outside/outside3) (1,1,1) = {" aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabaabaabaabaabaabaabaabaabaabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa @@ -4503,91 +4518,91 @@ aaaaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaagaagaagaagaagaagaagaagaagaagaa aaaaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaaoaauaavaawaaxaaraayaazaaraagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaacaacaagaagaagaagaagaagaagaagaacaacaacaacaacaacaacaacaacaacaaa aaaaacaacaacaacaacaacaacaacaacaacaacaacaacaacaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaaoaauaaAaawaaBaaCaaDaaEaaraaraaraaraaraaraaraaraaraaraaraaraaraaraaraaraaraaraaraaraagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaacaacaacaacaacaacaacaacaacaacaaa aaaaacaacaacaacaacaacaacaacaacaacaacaacaacaacaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaaoaauaaFaaGaaHaaCaaDaaEaaraaIaaJaaKaaIaaJaaraaLaaMaaMaaNaaOaaPaaMaaMaaMaaNaaQaaRaaraagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaacaacaacaacaacaacaacaacaacaacaaa -aaaaacaacaacaacaacaacaacaacaacaacaacaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaaoaauaaSaaTaaUaaraayaazaaraaraaraaraaraaraaraaVaaWaaWaaWaaXaaraaraaWaaWaaWaaYaaZaarabaabaabaabaaagaagaagaagaagaagaagaagaagaagaagaagaagaagaacaacaacaacaacaacaacaacaacaacaaa -aaaaacaacaacaacaacaacaacaacaacaacaacaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaaoaaoaaoabbabcaaraaDabdabeabeabeabeabfabeabeabgaaWabhabiabjabkablabmabnaboabpabqaarabrabrabsabaaagaagaagaagaagaagaagaagaagaagaagaagaagaagaacaacaacaacaacaacaacaacaacaacaaa -aaaaacaacaacaacaacaacaacaacaacaacaacaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagabtabuabvabwaarabxabyabyabyabyabyabzabyabyabAabBabnabCabDabEabFabGabGabHabIabJabKabLabMabNabaaagaagaagaagaagaagaagaagaagaagaagaagaagaagaacaacaacaacaacaacaacaacaacaacaaa -aaaaacaacaacaacaacaacaacaacaacaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagabtabtabOabPaaraaraaraaCaaraaraaCaaraarabQabQabRabRabQabQabRabSabTabRabQabUabUabUabVabWabXabaaagaagaagaagaagaagaagaagaagaagaagaagaagaacaacaacaacaacaacaacaacaacaacaacaaa -aaaaacaacaacaacaacaacaacaacaacaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagabtabYabZacaacbaccacdaceacfacgachaciabQacjackackaclabQacmacnacoacpabQacqacqabUacracsactabaaagaagaagaagaagaagaagaagaagaagaagaagaagaacaacaacaacaacaacaacaacaacaacaacaaa -aaaaacaacaacaacaacaacaacaacaacaacaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagabtacuacvacwacxacyaczacyacyacAacBacBacCacDacEacDacFacGacHacIacJacKabRacLacMabUacNacsacOabaabaabaabaabaaagaagaagaagaagaagaagaagaagaacaacaacaacaacaacaacaacaacaacaacaaa -aaaaacaacaacaacaacaacaacaacaacaacaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagabtacPabtacQacRacSacTacSacUacVacSacSacWacXacYacXacXacZacXadaadbadcaddadeadfabUacNadgabMabMabMabMabMabaaagaagaagaagaagaagaagaagaagaacaacaacaacaacaacaacaacaacaacaacaaa -aaaaacaacaacaacaacaacaacaacaacaacaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagadhadiabtadjacyacyadkacyadladmacyadnabRadoadpadpadqadradsadtadpadpaduadvadwabUadxadyadzadzadzadAabMabaaagaagaagaagaagaagaagaagaagaacaacaacaacaacaacaacaacaacaacaacaaa -aaaaacaacaacaacaacaacaacaacaacaacaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagadhadiabtadBadCadDadkadEadFadmadGadHabQadIadJadJadKabQadLadtadpadMabQadNadOabUadPadQadRadSadTadUabMabaaagaagaagaagaagaagaagaagaagaacaacaacaacaacaacaacaacaacaacaacaaa -aaaaacaacaacaacaacaacaacaacaacaacaacaacaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagadhadiabtabtadVadVadWadVadVadXadVadVabQabQabRabRabQabQabRadYadZabRabQabUabUabUabaabaabaabaabaabaabMabaaagaagaagaagaagaagaacaacaacaacaacaacaacaacaacaacaacaacaacaacaaa -aaaaacaacaacaacaacaacaacaacaacaacaacaacaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaeaaeaaeaaeaaebaecaedaeeadVaefaegaehaeiaejaekaelaemaenaeoaeoaepaeqaeraesaetaeuaevaewaexaemaagaagaagaagaagabaabMabaaagaagaagaagaagaagaacaacaacaacaacaacaacaacaacaacaacaacaacaacaaa -aaaaacaacaacaacaacaacaacaacaacaacaacaacaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaeaaeyaezaeAaeBaeCaeDaeEadVaeFaeGaeHaeHaejaeHaeHaeIaeJaeKaeLaeMaeNaeNaeOaeJaeJaeJaeJaePaemaagaagaagaagaagabaabMabaaagaagaagaagaagaagaacaacaacaacaacaacaacaacaacaacaacaacaacaacaaa -aaaaacaacaacaacaacaacaacaacaacaacaacaacaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaeaaeQaeRaeSaeaaeTaeUaeVadVaeFaeWaeHaeHaeXaeYaeYaeZafaafaafaafbafaafaafcafdafdafeaeJaffaemaagaagaagaagaagabaabMabaaagaagaagaagaagaagaacaacaacaacaacaacaacaacaacaacaacaacaacaacaaa -aaaaacaacaacaacaacaacaacaacaacaacaacaacaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaeaafgafhafiafjafkaflafmadVafnafoaeHafpaeHafqafraemafsaftaetafuafvafwafxafyafyafyafzafAaemaagaagaagaagaagabaabMabaaagaagaagaagaagaagaacaacaacaacaacaacaacaacaacaacaacaacaacaacaaa -aaaaacaacaacaacaacaacaacaacaacaacaacaacaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaeaaeaaeaaeaaebafBadhadhadVadVadVadVadVadVadVadVaemaemaemafCafDaemaemaemaemaemaemaemaemaemaagaagaagabaabaabaafEabaabaabaaagaagaagaagaacaacaacaacaacaacaacaacaacaacaacaacaacaacaaa -aaaaacaacaacaacaacaacaacaacaacaacaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagadhafBadhaagaagaagaagaagaagaagaagaagaagaagaemafFafGaemaagaagaagaagaagaagaagaagaagaagaagabaafHafIafJafKafJabaaagaagaagaagaagaacaacaacaacaacaacaacaacaacaacaacaacaacaaa -aaaaacaacaacaacaacaacaacaacaacaacaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagadhadhadhadhadhadhadhadhaeTadhaagaagaagaagaagaagafLafLafLaagaagaemafMafNaemaagaagaagaagaagaagaagaagaagaagaagabaabMafOafPafQafRabaaagaagaagaagaagaacaacaacaacaacaacaacaacaacaacaacaacaacaaa -aaaaacaacaacaacaacaacaacaacaacaacaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagadhaeTaeTaeTafSaeTaeTaeTaeTadhaagaagaagaagaagaagafLafTafLaagaagaemafUafVaemaagaagaagaagaagaagaagaagaagaagaagabaafWafXafYafZabMabaaagaagaagaagaagaacaacaacaacaacaacaacaacaacaacaacaacaacaaa -aaaaacaacaacaacaacaacaacaacaacaacaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagadhaeTagaagbagcagdageagfaggadhaagafLafLafLafLafLafLaghafLafLafLafLagiagjafLafLafLafLafLafLagkagkagkagkaagaagabaaglagmagnagoagpabaaagaagaagaagaagaacaacaacaacaacaacaacaacaacaacaacaacaacaaa -aaaaacaacaacaacaacaacaacaacaacaacaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagadhaeTagqagqagqagqagragqagsagqagqafLagtaguagvagwagxagyagzagAagBagCagDagEagFagGagHagIagJafLagKagLagMagkaagaagabaagNaglabMafEafJabaaagaagaagaagaagaacaacaacaacaacaacaacaacaacaacaacaacaacaaa -aaaaacaacaacaacaacaacaacaacaacaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagadhaeTagqagOagPagQagRagSagTagUagVagWagXagYagZagZagZagZagZagZagZagZagZagZagZagZagZahaahbahcahdaheahfagkaagaagabaabaabaabaabaabaabaaagaagaagaagaagaacaacaacaacaacaacaacaacaacaacaacaacaacaaa -aaaaacaacaacaacaacaacaacaacaacaacaacaacaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagadhaeTagqahgahhahiahjahjahkahlahlahmahnahoahpahpahpahpahpahpahpahpahpahpahpahpahpagXahqafLahrahsahtagkaagaagaagaagaagaagaagaagaagaagaagaagaagaagaacaacaacaacaacaacaacaacaacaacaacaacaacaaa -aaaaacaacaacaacaacaacaacaacaacaacaacaacaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagadhaeTagqahuagRahvahwagqagqagqagqafLahxahyahpahzahAahAahAahAahAahAahAahAahAahzahpagXahqafLagkahBagkagkaagaagaagaagaagaagaagaagaagaagaagaagaagaagaacaacaacaacaacaacaacaacaacaacaacaacaacaaa -aaaaacaacaacaacaacaacaacaacaacaacaacaacaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagadhahCagqahDahDagqagRahEagqaagaagafLahFahyahpahGahHahHahHahHahHahHahHahHahHahGahpagXahIafLahJahKahLahJaagaagaagaagaagaagaagaagaagahJahJahJahJahJaagaacaacaacaacaacaacaacaacaacaacaacaacaaa -aaaaacaacaacaacaacaacaacaacaacaacaacaacaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagadhaeTagqagqagqagqagRahMagqaagaagafLahNahyahpahGahHahHahHahHahHahHahHahHahHahGahpagXahOafLahJahJahPahJahJahJahJahJahJahJahJahJahJahJahQahRahSahJaagaacaacaacaacaacaacaacaacaacaacaacaacaaa -aaaaacaacaacaacaacaacaacaacaacaacaacaacaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagadhaeTagqagqagqagqahTahUagqaagaagafLahNahyahpahGahHahHahHahHahHahHahHahHahHahGahpagXahVahWafTahXahYahZahZahZahZaiaahSahSahSahSahSahSahSaibahSahJaagaagaagaacaacaacaacaacaacaacaacaacaacaaa -aaaaacaacaacaacaacaacaacaacaacaacaacaacaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagadhaeTagqagqagqagqagqagqagqaagaagafLaicahyahpaidahHahHahHahHahHahHahHahHahHaidahpagXaieafLahJahJahJahJahJaifaifaigaifaihaifaiiaijaikahSahSahSahJaagaagaagaacaacaacaacaacaacaacaacaacaacaaa -aaaaacaacaacaacaacaacaacaacaacaacaacaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagadhaeTaeTaeTadhaagaagaagaagaagaagafLailahyahpaidahHahHahHahHahHahHahHahHahHaidahpagXaimafLaagaagaagahJainainahJahJahJahJahJahJahJahJahJahJahJahJaagaagaagaacaacaacaacaacaacaacaacaacaacaaa -aaaaacaacaacaacaacaacaacaacaacaacaacaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagadhagdaioaeTadhaagaagaagaagaagaagafLaipahyahpaidahHahHahHaiqaiqairahHahHahHaidahpagXahqafLaagaagaagahJaisahJahJaagaagaagaagaagaagaagaagaagaagaagaagaagaagaacaacaacaacaacaacaacaacaacaacaaa -aaaaacaacaacaacaacaacaacaacaacaacaacaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagadhaitaiuaivadhaagaagaagaagaagaagaiwahNahyahpaidahHahHahHaiqahzaiqahHahHahHaidahpagXahqaiwaixaixaixaixaiyaixaizaizaizaizaizaagaagaagaagaagaagaagaagaagaagaacaacaacaacaacaacaacaacaacaacaaa -aaaaacaacaacaacaacaacaacaacaacaacaacaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagadhadhadhadhadhadhadhadhadhadhadhadhadhaiAadhadhadhadhadhadhadhafLahNahyahpaidahHahHahHairaiqairahHahHahHaidahpagXaiBafLaizaizaiCaiDaiEaiEaiFaizaizaizaizaagaagaagaagaagaagaagaagaagaagaacaacaacaacaacaacaacaacaacaacaaa -aaaaacaacaacaacaacaacaacaacaacaacaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagadhaiGaiHaiIaeTaeTaiJaeTaeTaeTaeTaeTaeTaiKaiLaiLaiLaiLaiLaiLaiLaiMaiNahyahpaidahHahHahHahHahHahHahHahHahHaidahpagXaiOafLaizaiPaiQaiEaiEaiEaiEaizaizaizaizaagaagaagaagaagaagaagaagaacaacaacaacaacaacaacaacaacaacaacaacaaa -aaaaacaacaacaacaacaacaacaacaacaacaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagadhaiRaeTaiSaiTaggaggagdagdagdaiUaiVaiWadhadhadhadhadhadhadhadhafLaiXahyahpaidahHahHahHahHahHahHahHahHahHaidahpagXaiYafLaizaiEaiEaiDaiDaiZaiEaizaizaizaizaagajaajaajaajaajaajaajaajbajcajcajdajeajeajeajeajdajcajcajfaaa -aaaaacaacaacaacaacaacaacaacaacaacaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagadhajgaeTajhajiadhadhadhadhadhadhadhadhadhaagaagaagaagaagaagaagafLajjahyahpahGahHahHahHahHahHahHahHahHahHahGahpagXajkafLaizaiEaiEaiEaiDaiDaiEaiEaizaizaizaagajaajlajmajnajoajpajqajrajsajtajuajtajtajtajtajuajtajvajaaaa -aaaaacaacaacaacaacaacaacaacaacaacaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagadhajwajxajyajzadhaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagafLaiXahyahpahGahHahHahHahHahHahHahHahHahHahGahpagXahqafLaizaiEaiEaiEaiDaiDaiEaiEajAajBaixaagajaajCajDajDajDajEajDajrajsajtajuajtajtajtajtajuajtajFajaaaa -aaaaacaacaacaacaacaacaacaacaacaacaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagadhajGaeTadhadhadhaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagafLajHahyahpahGahHahHahHahHahHahHahHahHahHahGahpagXahIafLaizaiEajIaiDaiDaiEaiEaiDaiDajAaixaagajaajJajDajKajDajLajDajrajsajtajMajNajNajNajNajMajtajvajaaaa -aaaaacaacaacaacaacaacaacaacaacaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagadhajOaeTadhaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagafLajPahyahpahzahAahAahAahAahAahAahAahAahAahzahpagXahqajQaiEaiEaiDaiEaiEaiEaiEaiEajRajSaixaagajaajTajDajUajVajWajDajrajsajNajMajNajNajNajNajMajNajXajaaaa -aaaaacaacaacaacaacaacaacaacaacaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagajYajYajYajYajYajYajYajYajYajYajGafBajZajZakaakaakaakaakaakaafLafLaagaagaagaagaagaagaagaagafLakbahyahpahpahpahpahpahpahpahpahpahpahpahpahpagXahqakcaiEaiDaiDaiEaiEaiEaiEaiDaiDakdaixaagajaajlakeakeajDakfajDajrajsajNajMajNajNajNajNajMajNajFakgaaa -aaaaacaacaacaacaacaacaacaacaacaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagajYakhakiakjakkaklaklaklakmajYaknakoajZakpakqakqakqakqakqakqafLafLafLaagaagaagaagaagaagaagafLakraksaktagDagDagDagDagDagDagDagDagDagDagDagDakuakvafLaizajAaiEaiEakwaiDakxaizaizaizaixaagajaajaajaajaakyakfajDajrajsajNajMajNajNajNajNajMajNajvajaaaa -aaaaacaacaacaacaacaacaacaacaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagakzakzakzakzakzajYakAakBakCakDakEakEakEakFajYakGakHakIakJakqakKakKakKakKakqakLakMafLafLafLafLakNafLafLafLafLakOahyakPakQakRakSakSakTakUakVakWakSakSakSakXagXahqafLaizaizaizaiDakYaizaizaizaizaizaixaagajaakZakZajaalaakfajDajrajsajNajMajNajNajNajNajMajNajvajaaaa -aaaaacaacaacaacaacaacaacaacaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagakzalbalcaldalealfalgalhalialjalkalkalkallajYalmalnajZaloakqakKakKakKakKakKalpalpalqalralsaltaltalualvalwalxalyalzalAafLafLalBalBalBalBalBalBalCalBalBakOagXahqafLafLafLafLalDalEafLafLafLafLafLakNafLajaalFalFajaalGalHajDajrajsajNajMajNajNajNajNajMajNajFajaaaa -aaaaacaacaacaacaacaacaacaacaacaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagakzakzakzakzakzakzakzakzalIalJalKalLalMalNalOalPalQalQalQalRalSajYalTalnajZaloakqakKakKakKakKakKalpalpalpalUalpalpalValpalWagDalXalYalZamaahWafTalBambamcamdameamfamgamhalBamiamjamkalxaluamlalraltammamnalqamoalwaltaltaluampamqamramsamtakfajDajrajsajNajMajNajNajNajNajMajNajvajaaaa -aaaaacaacaacaacaacaacaacaacaacaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagakzamuamvamwamxamyamzamAamBamCamDamEalfamFamGamHamIamJamKamLamMamNamOamPajZaloakqamQakKakKakKakqalpalpamRamSamTamUamVamWamXamYamZanaanbancafLafLalBandaneanfanganganganganhanianjalYankagDagDanlagDanmagDagDagDalYagDagDagDannanoanpanqannanrajDajrajsajNajMajNajNajNajNajMajNajvakgaaa -aaaaacaacaacaacaacaacaacaacaacaagaagaagaagaagaagaagaagaagaagaagaagaagaagansansansakzantanuanvanwanwanwanwanwanwanxanyalfanzanAanBanCanDanEanFanGajYadhanHajZanIakqakqakqakqakqakqalpanJafLafLafLafLafLafLanKafLafLafLafLafLafLaagalBanLanManNanNanOanNanPanQanRanSanTanUamWanVanWamWanXanYanYanZaoaaobanYanYaocaodaoeaofaogaohajDajrajsajNajMajNajNajNajNajMajNajvajaaaa -aaaaacaacaacaacaacaacaacaacaacaagaagaagaagaoiaoiaoiaoiaoiaojaojaojaojaojaojaokaolakzaomamCaonamCaooaooaooamCaopaoqaorajYajYajYalfalfaosajYajYajYajYaagaotajZajZakaakaakaakaakaakaafLafLafLaagaagaagaagaouaovaouaagaagaagaagaagaagalBaowaoxaoyaoyalBaozaoAalBafLafLaoBafLafLafLafLafLaoCafLafLafLafLafLakNafLajaaoDaoDajaalGaoEajDajrajsajNajMajNajNajNajNajMajNajFajaaaa -aaaaacaacaacaacaacaacaacaacaacaagaagaagaagaoiaoFaoFaoFaoiaoGaoHaoHaoIaoJaoKaoLaoMaoNaoOamCamCaooaoPaoPaoPaooamCamDaoQakzaoRaoSaoTaoUaoVaoWaoXaoYansaagaoZapaapbapbapbapbapcapcapcapcapaapaapdapaapcapcapeapfaouaouaouaouaagaagaagalBapgaphapiapjalBapkaplalBaagafLafTapmapmapmaagapmapnapmaagaagaagaagaagaagajaakZakZajaapoappajDajrajsajNajMajNajNajNajNajMajNajvajaaaa -aaaaacaacaacaacaacaacaacaacaacaacaagaagaagaoiaoFaoFaoFaoiapqaprapraprapsaptapuapvapwapxamCamCaooaoPaoPaoPaooamCamDapyakzapzapAapBapCapDapEapCapFansapGapGapGapGaagaagaagaagaagaagaagaagaagaagaagaagaagaouapHapIapJapKaouaagaagaagalBapLapMapNapOalBapPapQalBaagafLapRapSapTapmaagapmapnapmaagaagaagaagaagaagajaajaajaajaapUappajDajrajsajNajMajNajNajNajNajMajNajvajaaaa -aaaaacaacaacaacaacaacaacaacaacaacaagaagaagaoiapVapWapWaoiapXapYapZapraqaaojaqbaqcapwaqdamCaqeamCaooaooaooamCaqfaqgamCaqhapCaqiapCapCaqjaqkaqlaqmansaqnaqoaqpapGaagaagaagaagaagaagaagaagaagaagaagaagaagaouaqqaqraqsaqtaouaagaagapmalBalBaqualBalBalBalBalBalBaagafLafLapmaqvapmaagapmaqwapmaagaagaagaagaagaagajaajlajmajoajDappajDajrajsajNajMajNajNajNajNajMajNajFakgaaa -aaaaacaacaacaacaacaacaacaacaacaacaagaagaagaoiapWapWapWaoKaqxaqyapraprapraqzapCaqAapwaqdamCaqBaqCaqCaqCaqDaqEaqEaqFaqGakzaqHaqiapCapCaqjapCaqIaqJaqKaqLaqMaqNapGaagaagaagaagaagaagaagaagaagaagaagaagaagaouaqOaqPaqQaqRaouapmapmapmaqSaqTapnapmaagaagaagaagaagaagaagaagapmaqUapmaagapmapnapmaagaagaagaagaagaagajaajTajDaqVaqWaqXajDajrajsajNajMajNajNajNajNajMajNajXajaaaa -aaaaacaacaacaacaacaacaacaacaacaacaagaagaagaoiaqYaqZaraarbarcardareaprarfargarhariakzarjarkarlarmarnaroarparqarrarrarsapwartaqiapCapCapDaruarvarwansarxaryarzapGaagaagaagaagaagaagaagaagaagaagaouaouaouaouarAarBarCarDarEarFarFarFarGarFarHapmapmapmaagaagaagaagaagaagapmarIapmaagapmapnapmaagaagaagaagaagaagajaajJajDarJajDarKajDajrajsajNajMajNajNajNajNajMajNajvajaaaa -aaaaacaacaacaacaacaacaacaacaacaacaacaacaagaoiarLarMapWarNarOarPapraprarQaoKarRarSakzakzakzakzapwapwakzarTakzapwapwapwapwartaqiapCapCapDapCarvarUansapGapGapGapGaagaagaagaagaagaagaouaouaouaouaouarVarWaouarXarYarZasaaouapmapmapmapmapmapnapmasbapmaagaagaagaagaagaagapmaqvapmaagapmapnapmaagaagaagaagaagaagajaajCajDajDajDascajDajrajsajtajMajNajNajNajNajMajtajFajaaaa -aaaaacaacaacaacaacaacaacaacaacaacaacaacaagaoiasdaseasfarNarOarPapraprasgaoKartashasiasjaskaslasmasnasoaspasqasrasrasrassastasuasvaswasxasyaszasAansaagaagaagaagaagaagaagaagaagaagaouasBasCasDaouaouaouaouasEasaasaasFaouaagaagaagaagapmapnapmapmapmapmapmapmapmapmapmapmapSapmapmapmapnapmaagaagaagaagaagaagajaajlakeasGakeasHasIajrajsajtajuajtajtajtajtajuajtajvajaaaa -aaaaacaacaacaacaacaacaacaacaacaacaacaacaagaoiapWapWasJasKasLasMapraprasNaojasOasPasQasRasRasSasTasRasUasVasRasRasWasXasYasQasZataatbatcatbatdateansaagatfatfatfatfatfatfatfatfatfaouatgathatiaouatjaouasaatkaouaouaouaouaagaagaagaagapmatlatmarFarFarFarFarFarFatnarFarFarFarFarFatoatpapmaagaagaagaagaagaagajaajaajaajaajaajaajaajbajcajcajdajeajeajeajeajdajcajcajfaaa -aaaaacaacaacaacaacaacaacaacaacaacaacaacaagaoiapWapWatqaoKatrarPaprapratsaojaojattargaojaojatuatvansansansatwatwatwatwatxatyatwatwatwansansatzansansaagatfatAatBatBatBatCatBatDatBatEatFatGatHaouatIaouasaatkaouaagaagaagaagaagaagaagapmapmapmapmapmapmapmapmapmapmapmapmapmapmapmapmapmapmaagaagaagaagaagaagaagaagaagaagaagaagaagaagaacaacaacaacaacaacaacaacaacaacaacaaa -aaaaacaacaacaacaacaacaacaacaacaacaacaacaagaoiaqYapWapWatJarOatKatLatLatMatNatOatPatQatRaojatuatSansaagaagatwatTatUatVatWatXatYatYatwaagatfatZatfaagaagatfauaatBatfatfatfatfatfatfaouaubaucaudaueaufaugaufauhaouaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaacaacaacaacaacaacaacaacaacaacaacaaa -aaaaacaacaacaacaacaacaacaacaacaacaacaagaagaoiapWapWapWaoiauiarPapraprapraujaukaulareaumaptaunatvansaagaagatwatwatwatwatxatyatYatYatwaagatfauoatfaagaagatfaupatDatBatfaagaagaagaagaouaouaouauqauraouaouaouaouaouaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaacaacaacaacaacaacaacaacaacaacaacaaa -aaaaacaacaacaacaacaacaacaacaacaacaacaagaagaoiapWapWapWaoKausautauuauuauuautauuauvauwauxaoKauyauzauAauBauCauBauDatwauEauFauGauHauIatwaagatfatZatfaagaagatfatfatfatBatfaagaagaagaagaagaagaouauJatgaouaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaacaacaacaacaacaacaacaacaacaacaacaaa -aaaaacaacaacaacaacaacaacaacaacaacaacaagaagaoiauKapWapWaoKaoKauLaoKaoKaoKauLaoKaoiauMauNaojauOauPansaagaagaagaagatwauQauRauSauTauUatwaagatfatZatfatfaagaagaagatfatBatfaagaagaagaagaagaagaouauJatgaouaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaacaacaacaacaacaacaacaacaacaacaacaacaacaaa -aaaaacaacaacaacaacaacaacaacaacaacaacaagaagaoiapWapWapWauVapWauWapWauVapWauWaoFaoiauXauXauXauYauZauXauXauXauXauXatwavaavbavcavdavdatwaagatfaveavfatfaagaagaagatfatBatfaagaagaagaagaagaagaouavgavhaouaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaacaacaacaacaacaacaacaacaacaacaacaacaacaaa -aaaaacaacaacaacaacaacaacaacaacaacaacaagaagaoiapWapWapWaoKaviavjavkaoKaviavlavmaoiavnavoavpavqavravsavtavnauXaagatwavuavuavcavvavvatwavwatfatfavxatfatfatfaagatfatBatfaagaagaagaagaagaagaouauJasaaouaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaacaacaacaacaacaacaacaacaacaacaacaacaacaaa -aaaaacaacaacaacaacaacaacaacaacaacaacaagaagaoiaoiaoiaoiaoiaoiavyaoiaoiaoiavzaoiaoiauXauXavAavBavCavDauXauXauXaagatwavuavuavEavvavvatwavwavwavwavFavFavGatfatfatfatDatfaagaagaagaagaagaagaouauJasaaouaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaacaacaacaacaacaacaacaacaacaacaacaacaacaaa -aaaaacaacaacaacaacaacaacaacaacaacaacaacaagaagaagaagaagaagavHavIavHavJavKavIavHaagaagauXauXavLavMauXauXaagaagaagatwatwavNatwavNatwatwavwavwavxavFavOavFavPatBatDatDatfaagaagaagaagaagaagaouauJasaaouaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaacaacaacaacaacaacaacaacaacaacaacaacaacaaa -aaaaacaacaacaacaacaacaacaacaacaacaacaacaacaagaagaagaagaagaacaacaacaacaacaacaacaacaacaacavQavRavRavSaagaagaagaagaagatwatTatwatTatwaagavwavTavFavFavxavUatfatfatfatfatfaagaagavVavVavVavVavVavWavXavVavVavVavVavVavVavVavVavVavVavVavVavVavVaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaacaacaacaacaacaacaacaacaacaacaacaacaacaaa -aaaaacaacaacaacaacaacaacaacaacaacaacaacaacaagaagaagaagaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaagaagaagaagaagatwatwatwatwatwaagatfatfatfatfatfatfatfaagaagaagaagaagaagavVavYavZawaawbawcawdaweawfawgawhawiawjawkawlawbawmavZawnawoavVaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaacaacaacaacaacaacaacaacaacaacaacaacaacaaa -aaaaacaacaacaacaacaacaacaacaacaacaacaacaacaagaagaagaagaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagavVawpawqawrawsawtawsawuawvawwawxawxawxawyawsawsawsawzawAawBavVaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaacaacaacaacaacaacaacaacaacaacaacaacaacaaa -aaaaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagavVawCawDawDawDawEawDawDawFawGawHawHawHawIawDawDawDawJawKawLavVaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaacaacaacaacaacaacaacaacaacaacaacaacaacaaa -aaaaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagavVawpawDavVavVawMawDawDawNawOawPawQawHawIawDawDawDawJawKawRavVaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaacaacaacaacaacaacaacaacaacaacaacaacaacaaa -aaaaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagavVawpawDavVawSawTawDawDawNawOawPawQawUawVawDawDawDawJawWawWavVaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaacaacaacaacaacaacaacaacaacaacaacaacaaa -aaaaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacawXawXawXawXawXawXawXawXawXawXawXawXawXawXawXawXavVawYawDavVawDawTawDawDawNawOawPawQawHawIawDawDawDawJawWawWavVaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaacaacaacaacaacaacaacaacaacaacaacaacaaa -aaaaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacawXawZawZaxaaxaaxaaxaaxaaxaaxaaxaaxaaxaaxaaxaaxaavVaxbawDawDaxcaxdawDawDawNawOawPawQawHawIawDawDawDaxeawDaxfavVaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaacaacaacaacaacaacaacaacaacaacaacaacaaa -aaaaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaxgawZawZaxaaxaaxaaxaaxaaxaaxaaxaaxaaxaaxaaxaaxaavVawpawDawDawDawEawDawDawFawGawHawHawHawIawDawDawDaxhawDaxfavVaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaacaacaacaacaacaacaacaacaacaacaacaacaacaacaaa -aaaaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacawXawZawZaxaaxaaxaaxaaxaaxaaxaaxaaxaaxaaxaaxaaxaavVawpawDawDawDawEawDawDawFawGaxiaxiaxiawIawDawDawDaxhawDaxjavVaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaacaacaacaacaacaacaacaacaacaacaacaacaacaacaaa -aaaaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacawXawZawZaxaaxaaxaaxaaxaaxaaxaaxaaxaaxaaxaaxaaxaavVawpawDawDawDawEawDawDaxkaxlaxmaxmaxnaxoawDawDawDaxhawDaxfavVaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaacaacaacaacaacaacaacaacaacaacaacaacaacaacaaa -aaaaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacawXawZawZawZawZaxaaxaaxaaxaaxaaxaaxaaxaaxpaxpaxqavVawCawDawDawDawEawDawDawDawDawDawDawDawFawDawDawDaxhawDaxravVaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaacaacaacaacaacaacaacaacaacaacaacaacaacaacaaa -aaaaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacawXawZawZawZawZaxaaxaawZawZawZawZaxpaxsaxtaxtaxtaxuaxvaxwaxxaxyaxzawDawDawDawDawDawDawDawFawDawDawDaxAaxBaxCavVaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaacaacaacaacaacaacaacaacaacaacaacaacaacaacaaa -aaaaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacawXawZawZawZawZaxaaxaawZawZawZawZaxpaxpaxpaxDaxEaxFaxGaxHaxIaxJaxKaxLaxLaxLaxMaxLaxNaxLaxOaxPaxQaxRaxSaxTaxUavVaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaacaacaacaacaacaacaacaacaacaacaacaacaacaacaaa -aaaaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacawXawZawZawZawZawZawZawZawZawZawZaxpaxpaxpaxVaxWavVavVavVavVavVavVavVavVavVavVavVavVavVavVavVavVavVavVavVavVavVaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaaa -aaaaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaxgawZawZawZawZawZawZawZawZawZawZaxpaxsaxtaxXaxpaxaaxaaxaaxaawXaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaaa -aaaaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacawXawZawZawZawZawZawZawZawZaxaawZawZawZaxaaxaaxaaxaaxaaxaaxaawXaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaaa -aaaaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacawXawZawZawZawZawZawZawZawZaxaaxaaxaaxaaxaaxaaxaaxaaxaaxaaxaawXaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaaa -aaaaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacawXawZawZawZawZawZawZawZawZawZaxaaxaaxaaxaaxaaxaaxaaxaaxaaxaawXaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaaa -aaaaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacawXawZawZawZawZawZawZawZawZawZaxaaxaaxaaxaaxaaxaaxaaxaaxaaxaawXaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaacaacaacaacaacaacaacaacaacaacaacaacaacaaa -aaaaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacawXawZawZawZawZawZawZawZawZawZaxaaxaaxaaxaaxaaxaaxaaxaaxaaxaawXaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaacaacaacaacaacaacaacaacaacaacaacaacaacaaa -aaaaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacawXawZawZawZawZawZawZawZawZawZaxaaxaaxaaxaaxaaxaaxaaxaaxaaxaawXaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaacaacaacaacaacaacaacaacaacaacaacaacaacaaa -aaaaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaxgawXawXawXawXawXawXaxgawXawXawXawXawXawXawXawXawXawXawXawXawXaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaacaacaacaacaacaacaacaacaacaacaacaacaacaaa +aaaaacaacaacaacaacaacaacaacaacaacaacaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaaoaauaaSaaTaaUaaraayaazaaraaraaraaraaraaraaraaVaaWaaWaaWaaWaaraaraaWaaWaaWaaWaaXaaraaYaaYaaYaaYaagaagaagaagaagaagaagaagaagaagaagaagaagaagaacaacaacaacaacaacaacaacaacaacaaa +aaaaacaacaacaacaacaacaacaacaacaacaacaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaaoaaoaaoaaZabaaaraaDabbabcabcabcabcabdabcabcabeaaWabfabgabhabiabjabkablabmabnaboaarabpabpabqaaYaagaagaagaagaagaagaagaagaagaagaagaagaagaagaacaacaacaacaacaacaacaacaacaacaaa +aaaaacaacaacaacaacaacaacaacaacaacaacaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagabrabsabtabuaarabvabwabwabwabwabwabxabwabwabyabzablabAabBabCabDabEabEabFabGabHabIabJabKabLaaYaagaagaagaagaagaagaagaagaagaagaagaagaagaagaacaacaacaacaacaacaacaacaacaacaaa +aaaaacaacaacaacaacaacaacaacaacaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagabrabrabMabNaaraaraaraaCaaraaraaCaaraarabOabOabPabPabOabOabPabQabRabPabOabSabSabSabTabUabVaaYaagaagaagaagaagaagaagaagaagaagaagaagaagaacaacaacaacaacaacaacaacaacaacaacaaa +aaaaacaacaacaacaacaacaacaacaacaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagabrabWabXabYabZacaacbaccacdaceacfacgabOachaciaciacjabOackaclacmacnabOacoacoabSacpacqacraaYaagaagaagaagaagaagaagaagaagaagaagaagaagaacaacaacaacaacaacaacaacaacaacaacaaa +aaaaacaacaacaacaacaacaacaacaacaacaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagabracsactacuacvacwacxacwacwacyaczaczacAacBacCacBacDacEacFacGacHacIabPacJacKabSacLacqacMaaYaaYaaYaaYaaYaagaagaagaagaagaagaagaagaagaacaacaacaacaacaacaacaacaacaacaacaaa +aaaaacaacaacaacaacaacaacaacaacaacaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagabracNabracOacPacQacRacQacSacTacQacQacUacVacWacVacVacXacVacYacZadaadbadcaddabSacLadeabKabKabKabKabKaaYaagaagaagaagaagaagaagaagaagaacaacaacaacaacaacaacaacaacaacaacaaa +aaaaacaacaacaacaacaacaacaacaacaacaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagadfadgabradhacwacwadiacwadjadkacwadlabPadmadnadnadoadpadqadradnadnadsadtaduabSadvadwadxadxadxadyabKaaYaagaagaagaagaagaagaagaagaagaacaacaacaacaacaacaacaacaacaacaacaaa +aaaaacaacaacaacaacaacaacaacaacaacaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagadfadgabradzadAadBadiadCadDadkadEadFabOadGadHadHadIabOadJadradnadKabOadLadMabSadNadOadPadQadRadSabKaaYaagaagaagaagaagaagaagaagaagaacaacaacaacaacaacaacaacaacaacaacaaa +aaaaacaacaacaacaacaacaacaacaacaacaacaacaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagadfadgabrabradTadTadUadTadTadVadTadTabOabOabPabPabOabOabPadWadXabPabOabSabSabSaaYaaYaaYaaYaaYaaYabKaaYaagaagaagaagaagaagaacaacaacaacaacaacaacaacaacaacaacaacaacaacaaa +aaaaacaacaacaacaacaacaacaacaacaacaacaacaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagadYadYadYadYadZaeaaebaecadTaedaeeaefaegaehaeiaejaekaelaemaemaenaeoaepaeqaeraesaetaeuaevaekaagaagaagaagaagaaYabKaaYaagaagaagaagaagaagaacaacaacaacaacaacaacaacaacaacaacaacaacaacaaa +aaaaacaacaacaacaacaacaacaacaacaacaacaacaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagadYaewaexaeyaezaeAaeBaeCadTaeDaeEaeFaeFaehaeFaeFaeGaeHaeIaeJaeKaeLaeLaeMaeHaeHaeHaeHaeNaekaagaagaagaagaagaaYabKaaYaagaagaagaagaagaagaacaacaacaacaacaacaacaacaacaacaacaacaacaacaaa +aaaaacaacaacaacaacaacaacaacaacaacaacaacaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagadYaeOaePaeQadYaeRaeSaeTadTaeDaeUaeFaeFaeVaeWaeWaeXaeYaeYaeYaeZaeYaeYafaafbafbafcaeHafdaekaagaagaagaagaagaaYabKaaYaagaagaagaagaagaagaacaacaacaacaacaacaacaacaacaacaacaacaacaacaaa +aaaaacaacaacaacaacaacaacaacaacaacaacaacaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagadYafeaffafgafhafiafjafkadTaflafmaeFafnaeFafoafpaekafqafraerafsaftafuafvafwafwafwafxafyaekaagaagaagaagaagaaYabKaaYaagaagaagaagaagaagaacaacaacaacaacaacaacaacaacaacaacaacaacaacaaa +aaaaacaacaacaacaacaacaacaacaacaacaacaacaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagadYadYadYadYadZafzadfadfadTadTadTadTadTadTadTadTaekaekaekafAafBaekaekaekaekaekaekaekaekaekaagaagaagaaYaaYaaYafCaaYaaYaaYaagaagaagaagaacaacaacaacaacaacaacaacaacaacaacaacaacaacaaa +aaaaacaacaacaacaacaacaacaacaacaacaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagadfafzadfaagaagaagaagaagaagaagaagaagaagaagaekafDafEaekaagaagaagaagaagaagaagaagaagaagaagaaYafFafGafHafIafHaaYaagaagaagaagaagaacaacaacaacaacaacaacaacaacaacaacaacaacaaa +aaaaacaacaacaacaacaacaacaacaacaacaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagadfadfadfadfadfadfadfadfaeRadfaagaagaagaagaagaagafJafJafJaagaagaekafKafLaekaagaagaagaagaagaagaagaagaagaagaagaaYabKafMafNafOafPaaYaagaagaagaagaagaacaacaacaacaacaacaacaacaacaacaacaacaacaaa +aaaaacaacaacaacaacaacaacaacaacaacaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagadfaeRaeRaeRafQaeRaeRaeRaeRadfaagaagaagaagaagaagafJafRafJaagaagaekafSafTaekaagaagaagaagaagaagaagaagaagaagaagaaYafUafVafWafXabKaaYaagaagaagaagaagaacaacaacaacaacaacaacaacaacaacaacaacaacaaa +aaaaacaacaacaacaacaacaacaacaacaacaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagadfaeRafYafZagaagbagcagdageadfaagafJafJafJafJafJafJagfafJafJafJafJaggaghafJafJafJafJafJafJagiagiagiagiaagaagaaYagjagkaglagmagnaaYaagaagaagaagaagaacaacaacaacaacaacaacaacaacaacaacaacaacaaa +aaaaacaacaacaacaacaacaacaacaacaacaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagadfaeRagoagoagoagoagpagoagqagoagoafJagragsagtaguagvagwagxagyagzagAagBagCagDagEagFagGagHafJagIagJagKagiaagaagaaYagLagjabKafCafHaaYaagaagaagaagaagaacaacaacaacaacaacaacaacaacaacaacaacaacaaa +aaaaacaacaacaacaacaacaacaacaacaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagadfaeRagoagMagNagOagPagQagRagSagTagUagVagWagXagXagXagXagXagXagXagXagXagXagXagXagXagYagZahaahbahcahdagiaagaagaaYaaYaaYaaYaaYaaYaaYaagaagaagaagaagaacaacaacaacaacaacaacaacaacaacaacaacaacaaa +aaaaacaacaacaacaacaacaacaacaacaacaacaacaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagadfaeRagoaheahfahgahhahhahiahjahjahkahlahmahnahnahnahnahnahnahnahnahnahnahnahnahnagVahoafJahpahqahragiaagaagaagaagaagaagaagaagaagaagaagaagaagaagaacaacaacaacaacaacaacaacaacaacaacaacaacaaa +aaaaacaacaacaacaacaacaacaacaacaacaacaacaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagadfaeRagoahsagPahtahuagoagoagoagoafJahvahwahnahxahyahyahyahyahyahyahyahyahyahxahnagVahoafJagiahzagiagiaagaagaagaagaagaagaagaagaagaagaagaagaagaagaacaacaacaacaacaacaacaacaacaacaacaacaacaaa +aaaaacaacaacaacaacaacaacaacaacaacaacaacaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagadfahAagoahBahBagoagPahCagoaagaagafJahDahwahnahEahFahFahFahFahFahFahFahFahFahEahnagVahGafJahHahIahJahHaagaagaagaagaagaagaagaagaagahHahHahHahHahHaagaacaacaacaacaacaacaacaacaacaacaacaacaaa +aaaaacaacaacaacaacaacaacaacaacaacaacaacaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagadfaeRagoagoagoagoagPahKagoaagaagafJahLahwahnahEahFahFahFahFahFahFahFahFahFahEahnagVahMafJahHahHahNahHahHahHahHahHahHahHahHahHahHahHahOahPahQahHaagaacaacaacaacaacaacaacaacaacaacaacaacaaa +aaaaacaacaacaacaacaacaacaacaacaacaacaacaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagadfaeRagoagoagoagoahRahSagoaagaagafJahLahwahnahEahFahFahFahFahFahFahFahFahFahEahnagVahTahUafRahVahWahXahXahXahXahYahQahQahQahQahQahQahQahZahQahHaagaagaagaacaacaacaacaacaacaacaacaacaacaaa +aaaaacaacaacaacaacaacaacaacaacaacaacaacaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagadfaeRagoagoagoagoagoagoagoaagaagafJaiaahwahnaibahFahFahFahFahFahFahFahFahFaibahnagVaicafJahHahHahHahHahHaidaidaieaidaifaidaigaihaiiahQahQahQahHaagaagaagaacaacaacaacaacaacaacaacaacaacaaa +aaaaacaacaacaacaacaacaacaacaacaacaacaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagadfaeRaeRaeRadfaagaagaagaagaagaagafJaijahwahnaibahFahFahFahFahFahFahFahFahFaibahnagVaikafJaagaagaagahHailailahHahHahHahHahHahHahHahHahHahHahHahHaagaagaagaacaacaacaacaacaacaacaacaacaacaaa +aaaaacaacaacaacaacaacaacaacaacaacaacaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagadfagbaimaeRadfaagaagaagaagaagaagafJainahwahnaibahFahFahFaioaioaipahFahFahFaibahnagVahoafJaagaagaagahHaiqahHahHaagaagaagaagaagaagaagaagaagaagaagaagaagaagaacaacaacaacaacaacaacaacaacaacaaa +aaaaacaacaacaacaacaacaacaacaacaacaacaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagadfairaisaitadfaagaagaagaagaagaagaiuahLahwahnaibahFahFahFaioahxaioahFahFahFaibahnagVahoaiuaivaivaivaivaiwaivaixaixaixaixaixaagaagaagaagaagaagaagaagaagaagaacaacaacaacaacaacaacaacaacaacaaa +aaaaacaacaacaacaacaacaacaacaacaacaacaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagadfadfadfadfadfadfadfadfadfadfadfadfadfaiyadfadfadfadfadfadfadfafJahLahwahnaibahFahFahFaipaioaipahFahFahFaibahnagVaizafJaixaixaiAaiBaiCaiCaiDaixaixaixaixaagaagaagaagaagaagaagaagaagaagaacaacaacaacaacaacaacaacaacaacaaa +aaaaacaacaacaacaacaacaacaacaacaacaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagadfaiEaiFaiGaeRaeRaiHaeRaeRaeRaeRaeRaeRaiIaiJaiJaiJaiJaiJaiJaiJaiKaiLahwahnaibahFahFahFahFahFahFahFahFahFaibahnagVaiMafJaixaiNaiOaiCaiCaiCaiCaixaixaixaixaagaagaagaagaagaagaagaagaacaacaacaacaacaacaacaacaacaacaacaacaaa +aaaaacaacaacaacaacaacaacaacaacaacaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagadfaiPaeRaiQaiRageageagbagbagbaiSaiTaiUadfadfadfadfadfadfadfadfafJaiVahwahnaibahFahFahFahFahFahFahFahFahFaibahnagVaiWafJaixaiCaiCaiBaiBaiXaiCaixaixaixaixaagaiYaiYaiYaiYaiYaiYaiYaiZajaajaajbajcajcajcajcajbajaajaajdaaa +aaaaacaacaacaacaacaacaacaacaacaacaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagadfajeaeRajfajgadfadfadfadfadfadfadfadfadfaagaagaagaagaagaagaagafJajhahwahnahEahFahFahFahFahFahFahFahFahFahEahnagVajiafJaixaiCaiCaiCaiBaiBaiCaiCaixaixaixaagaiYajjajkajlajmajnajoajpajqajrajsajrajrajrajrajsajrajtaiYaaa +aaaaacaacaacaacaacaacaacaacaacaacaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagadfajuajvajwajxadfaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagafJaiVahwahnahEahFahFahFahFahFahFahFahFahFahEahnagVahoafJaixaiCaiCaiCaiBaiBaiCaiCajyajzaivaagaiYajAajBajBajBajCajBajpajqajrajsajrajrajrajrajsajrajDaiYaaa +aaaaacaacaacaacaacaacaacaacaacaacaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagadfajEaeRadfadfadfaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagafJajFahwahnahEahFahFahFahFahFahFahFahFahFahEahnagVahGafJaixaiCajGaiBaiBaiCaiCaiBaiBajyaivaagaiYajHajBajIajBajJajBajpajqajrajKajLajLajLajLajKajrajtaiYaaa +aaaaacaacaacaacaacaacaacaacaacaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagadfajMaeRadfaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagafJajNahwahnahxahyahyahyahyahyahyahyahyahyahxahnagVahoajOaiCaiCaiBaiCaiCaiCaiCaiCajPajQaivaagaiYajRajBajSajTajUajBajpajqajLajKajLajLajLajLajKajLajVaiYaaa +aaaaacaacaacaacaacaacaacaacaacaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagajWajWajWajWajWajWajWajWajWajWajEafzajXajXajYajYajYajYajYajYafJafJaagaagaagaagaagaagaagaagafJajZahwahnahnahnahnahnahnahnahnahnahnahnahnahnagVahoakaaiCaiBaiBaiCaiCaiCaiCaiBaiBakbaivaagaiYajjakcakcajBakdajBajpajqajLajKajLajLajLajLajKajLajDakeaaa +aaaaacaacaacaacaacaacaacaacaacaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagajWakfakgakhakiakjakjakjakkajWaklakmajXaknakoakoakoakoakoakoafJafJafJaagaagaagaagaagaagaagafJakpakqakragBagBagBagBagBagBagBagBagBagBagBagBaksaktafJaixajyaiCaiCakuaiBakvaixaixaixaivaagaiYaiYaiYaiYakwakdajBajpajqajLajKajLajLajLajLajKajLajtaiYaaa +aaaaacaacaacaacaacaacaacaacaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagakxakxakxakxakxajWakyakzakAakBakCakCakCakDajWakEakFakGakHakoakIakIakIakIakoakJakKafJafJafJafJakLafJafJafJafJakMahwakNakOakPakQakQakRakSakTakUakQakQakQakVagVahoafJaixaixaixaiBakWaixaixaixaixaixaivaagaiYakXakXaiYakYakdajBajpajqajLajKajLajLajLajLajKajLajtaiYaaa +aaaaacaacaacaacaacaacaacaacaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagakxakZalaalbalcaldalealfalgalhalialialialjajWalkallajXalmakoakIakIakIakIakIalnalnaloalpalqalralralsaltalualvalwalxalyafJafJalzalzalzalzalzalzalAalzalzakMagVahoafJafJafJafJalBalCafJafJafJafJafJakLafJaiYalDalDaiYalEalFajBajpajqajLajKajLajLajLajLajKajLajDaiYaaa +aaaaacaacaacaacaacaacaacaacaacaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagakxakxakxakxakxakxakxakxalGalHalIalJalKalLalMalNalOalOalOalPalQajWalRallajXalmakoakIakIakIakIakIalnalnalnalSalnalnalTalnalUagBalValWalXalYahUafRalzalZamaambamcamdameamfalzamgamhamialvalsamjalpalramkamlaloammalualralralsamnamoampamqamrakdajBajpajqajLajKajLajLajLajLajKajLajtaiYaaa +aaaaacaacaacaacaacaacaacaacaacaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagakxamsamtamuamvamwamxamyamzamAamBamCaldamDamEamFamGamHamIamJamKamLamMamNajXalmakoamOakIakIakIakoalnalnamPamQamRamSamTamUamVamWamXamYamZanaafJafJalzanbancandaneaneaneaneanfanganhalWaniagBagBanjagBankagBagBagBalWagBagBagBanlanmannanoanlanpajBajpajqajLajKajLajLajLajLajKajLajtakeaaa +aaaaacaacaacaacaacaacaacaacaacaagaagaagaagaagaagaagaagaagaagaagaagaagaaganqanqanqakxanransantanuanuanuanuanuanuanvanwaldanxanyanzanAanBanCanDanEajWadfanFajXanGakoakoakoakoakoakoalnanHafJafJafJafJafJafJanIafJafJafJafJafJafJaagalzanJanKanLanLanManLanNanOanPanQanRanSamUanTanUamUanVanWanWanXanYanZanWanWaoaaobaocaodaoeaofajBajpajqajLajKajLajLajLajLajKajLajtaiYaaa +aaaaacaacaacaacaacaacaacaacaacaagaagaagaagaogaogaogaogaogaohaohaohaohaohaohaoiaojakxaokamAaolamAaomaomaomamAaonaooaopajWajWajWaldaldaoqajWajWajWajWaagaorajXajXajYajYajYajYajYajYafJafJafJaagaagaagaagaosaotaosaagaagaagaagaagaagalzaouaovaowaowalzaoxaoyalzafJafJaozafJafJafJafJafJaoAafJafJafJafJafJakLafJaiYaoBaoBaiYalEaoCajBajpajqajLajKajLajLajLajLajKajLajDaiYaaa +aaaaacaacaacaacaacaacaacaacaacaagaagaagaagaogaoDaoDaoDaogaoEaoFaoFaoGaoHaoIaoJaoKaoLaoMamAamAaomaoNaoNaoNaomamAamBaoOakxaoPaoQaoRaoSaoTaoUaoVaoWanqaagaoXaoYaoZaoZaoZaoZapaapaapaapaaoYaoYapbaoYapaapaapcapdaosaosaosaosaagaagaagalzapeapfapgaphalzapiapjalzaagafJafRapkapkapkaagapkaplapkaagaagaagaagaagaagaiYakXakXaiYapmapnajBajpajqajLajKajLajLajLajLajKajLajtaiYaaa +aaaaacaacaacaacaacaacaacaacaacaacaagaagaagaogaoDaoDaoDaogapoappappappapqaprapsaptapuapvamAamAaomaoNaoNaoNaomamAamBapwakxapxapyapzapAapBapCapAapDanqapEapEapEapEaagaagaagaagaagaagaagaagaagaagaagaagaagaosapFapGapHapIaosaagaagaagalzapJapKapLapMalzapNapOalzaagafJapPapQapRapkaagapkaplapkaagaagaagaagaagaagaiYaiYaiYaiYapSapnajBajpajqajLajKajLajLajLajLajKajLajtaiYaaa +aaaaacaacaacaacaacaacaacaacaacaacaagaagaagaogapTapUapUaogapVapWapXappapYaohapZaqaapuaqbamAaqcamAaomaomaomamAaqdaqeamAaqfapAaqgapAapAaqhaqiaqjaqkanqaqlaqmaqnapEaagaagaagaagaagaagaagaagaagaagaagaagaagaosaqoaqpaqqaqraosaagaagapkalzalzaqsalzalzalzalzalzalzaagafJafJapkaqtapkaagapkaquapkaagaagaagaagaagaagaiYajjajkajmajBapnajBajpajqajLajKajLajLajLajLajKajLajDakeaaa +aaaaacaacaacaacaacaacaacaacaacaacaagaagaagaogapUapUapUaoIaqvaqwappappappaqxapAaqyapuaqbamAaqzaqAaqAaqAaqBaqCaqCaqDaqEakxaqFaqgapAapAaqhapAaqGaqHaqIaqJaqKaqLapEaagaagaagaagaagaagaagaagaagaagaagaagaagaosaqMaqNaqOaqPaosapkapkapkaqQaqRaplapkaagaagaagaagaagaagaagaagapkaqSapkaagapkaplapkaagaagaagaagaagaagaiYajRajBaqTaqUaqVajBajpajqajLajKajLajLajLajLajKajLajVaiYaaa +aaaaacaacaacaacaacaacaacaacaacaacaagaagaagaogaqWaqXaqYaqZaraarbarcappardarearfargakxarhariarjarkarlarmarnaroarparparqapuarraqgapAapAapBarsartaruanqarvarwarxapEaagaagaagaagaagaagaagaagaagaagaosaosaosaosaryarzarAarBarCarDarDarDarEarDarFapkapkapkaagaagaagaagaagaagapkarGapkaagapkaplapkaagaagaagaagaagaagaiYajHajBarHajBarIajBajpajqajLajKajLajLajLajLajKajLajtaiYaaa +aaaaacaacaacaacaacaacaacaacaacaacaacaacaagaogarJarKapUarLarMarNappapparOaoIarParQakxakxakxakxapuapuakxarRakxapuapuapuapuarraqgapAapAapBapAartarSanqapEapEapEapEaagaagaagaagaagaagaosaosaosaosaosarTarUaosarVarWarXarYaosapkapkapkapkapkaplapkarZapkaagaagaagaagaagaagapkaqtapkaagapkaplapkaagaagaagaagaagaagaiYajAajBajBajBasaajBajpajqajrajKajLajLajLajLajKajrajDaiYaaa +aaaaacaacaacaacaacaacaacaacaacaacaacaacaagaogasbascasdarLarMarNappappaseaoIarrasfasgashasiasjaskaslasmasnasoaspaspaspasqasrassastasuasvaswasxasyanqaagaagaagaagaagaagaagaagaagaagaosaszasAasBaosaosaosaosasCarYarYasDaosaagaagaagaagapkaplapkapkapkapkapkapkapkapkapkapkapQapkapkapkaplapkaagaagaagaagaagaagaiYajjakcasEakcasFasGajpajqajrajsajrajrajrajrajsajrajtaiYaaa +aaaaacaacaacaacaacaacaacaacaacaacaacaacaagaogapUapUasHasIasJasKappappasLaohasMasNasOasPasPasQasRasPasSasTasPasPasUasVasWasOasXasYasZataasZatbatcanqaagatdatdatdatdatdatdatdatdatdaosateatfatgaosathaosarYatiaosaosaosaosaagaagaagaagapkatjatkarDarDarDarDarDarDatlarDarDarDarDarDatmatnapkaagaagaagaagaagaagaiYaiYaiYaiYaiYaiYaiYaiZajaajaajbajcajcajcajcajbajaajaajdaaa +aaaaacaacaacaacaacaacaacaacaacaacaacaacaagaogapUapUatoaoIatparNappappatqaohaohatrareaohaohatsattanqanqanqatuatuatuatuatvatwatuatuatuanqanqatxanqanqaagatdatyatzatzatzatAatzatBatzatCatDatEatFaosatGaosarYatiaosaagaagaagaagaagaagaagapkapkapkapkapkapkapkapkapkapkapkapkapkapkapkapkapkapkaagaagaagaagaagaagaagaagaagaagaagaagaagaagaacaacaacaacaacaacaacaacaacaacaacaaa +aaaaacaacaacaacaacaacaacaacaacaacaacaacaagaogaqWapUapUatHarMatIatJatJatKatLatMatNatOatPaohatsatQanqaagaagatuatRatSatTatUatVatWatWatuaagatdatXatdaagaagatdatYatzatdatdatdatdatdatdaosatZauaaubaucaudaueaudaufaosaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaacaacaacaacaacaacaacaacaacaacaacaaa +aaaaacaacaacaacaacaacaacaacaacaacaacaagaagaogapUapUapUaogaugarNappappappauhauiaujarcaukapraulattanqaagaagatuatuatuatuatvatwatWatWatuaagatdaumatdaagaagatdaunatBatzatdaagaagaagaagaosaosaosauoaupaosaosaosaosaosaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaacaacaacaacaacaacaacaacaacaacaacaaa +aaaaacaacaacaacaacaacaacaacaacaacaacaagaagaogapUapUapUaoIauqaurausausausaurausautauuauvaoIauwauxauyauzauAauzauBatuauCauDauEauFauGatuaagatdatXatdaagaagatdatdatdatzatdaagaagaagaagaagaagaosauHateaosaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaacaacaacaacaacaacaacaacaacaacaacaaa +aaaaacaacaacaacaacaacaacaacaacaacaacaagaagaogauIapUapUaoIaoIauJaoIaoIaoIauJaoIaogauKauLaohauMauNanqaagaagaagaagatuauOauPauQauRauSatuaagatdatXatdatdaagaagaagatdatzatdaagaagaagaagaagaagaosauHateaosaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaacaacaacaacaacaacaacaacaacaacaacaacaacaaa +aaaaacaacaacaacaacaacaacaacaacaacaacaagaagaogapUapUapUauTapUauUapUauTapUauUaoDaogauVauVauVauWauXauVauVauVauVauVatuauYauZavaavbavbatuaagatdavcavdatdaagaagaagatdatzatdaagaagaagaagaagaagaosaveavfaosaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaacaacaacaacaacaacaacaacaacaacaacaacaacaaa +aaaaacaacaacaacaacaacaacaacaacaacaacaagaagaogapUapUapUaoIavgavhaviaoIavgavjavkaogavlavmavnavoavpavqavravlauVaagatuavsavsavaavtavtatuavuatdatdavvatdatdatdaagatdatzatdaagaagaagaagaagaagaosauHarYaosaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaacaacaacaacaacaacaacaacaacaacaacaacaacaaa +aaaaacaacaacaacaacaacaacaacaacaacaacaagaagaogaogaogaogaogaogavwaogaogaogavxaogaogauVauVavyavzavAavBauVauVauVaagatuavsavsavCavtavtatuavuavuavuavDavDavEatdatdatdatBatdaagaagaagaagaagaagaosauHarYaosaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaacaacaacaacaacaacaacaacaacaacaacaacaacaaa +aaaaacaacaacaacaacaacaacaacaacaacaacaacaagaagaagaagaagaagavFavGavFavHavIavGavFaagaagauVauVavJavKauVauVaagaagaagatuatuavLatuavLatuatuavuavuavvavDavMavDavNatzatBatBatdaagaagaagaagaagaagaosauHarYaosaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaacaacaacaacaacaacaacaacaacaacaacaacaacaaa +aaaaacaacaacaacaacaacaacaacaacaacaacaacaacaagaagaagaagaagaacaacaacaacaacaacaacaacaacaacavOavPavPavQaagaagaagaagaagatuatRatuatRatuaagavuavRavDavDavvavSatdatdatdatdatdaagaagavTavTavTavTavTavUavVavTavTavTavTavTavTavTavTavTavTavTavTavTavTaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaacaacaacaacaacaacaacaacaacaacaacaacaacaaa +aaaaacaacaacaacaacaacaacaacaacaacaacaacaacaagaagaagaagaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaagaagaagaagaagatuatuatuatuatuaagatdatdatdatdatdatdatdaagaagaagaagaagaagavTavWavXavYavZawaawbawcawdaweawfawgawhawiawjavZawkavXawlawmavTaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaacaacaacaacaacaacaacaacaacaacaacaacaacaaa +aaaaacaacaacaacaacaacaacaacaacaacaacaacaacaagaagaagaagaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagavTawnawoawpawqawrawqawsawtawuawvawvawvawwawqawqawqawxawyawzavTaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaacaacaacaacaacaacaacaacaacaacaacaacaacaaa +aaaaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagavTawAawBawBawBawCawBawBawDawEawFawFawFawGawHawIawJawKawLawMavTaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaacaacaacaacaacaacaacaacaacaacaacaacaacaaa +aaaaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagavTawnawBavTavTawNawBawBawOawPawQawRawFawGawSawTawUawKawLawVavTaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaacaacaacaacaacaacaacaacaacaacaacaacaacaaa +aaaaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagavTawnawBavTawWawXawBawBawOawPawQawRawYawZaxaawTaxbawKaxcaxcavTaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaacaacaacaacaacaacaacaacaacaacaacaacaaa +aaaaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaxdaxdaxdaxdaxdaxdaxdaxdaxdaxdaxdaxdaxdaxdaxdaxdavTaxeawBavTawBawXawBawBawOawPawQawRawFawGaxaawTaxbawKaxcaxcavTaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaacaacaacaacaacaacaacaacaacaacaacaacaaa +aaaaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaxdaxfaxfaxgaxgaxgaxgaxgaxgaxgaxgaxgaxgaxgaxgaxgavTaxhawBawBaxiaxjawBawBawOawPawQawRawFawGaxaawTaxbaxkawBaxlavTaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaacaacaacaacaacaacaacaacaacaacaacaacaaa +aaaaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaxmaxfaxfaxgaxgaxgaxgaxgaxgaxgaxgaxgaxgaxgaxgaxgavTawnawBawBawBawCawBawBawDawEawFawFawFaxnaxoaxpaxqaxrawBaxlavTaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaacaacaacaacaacaacaacaacaacaacaacaacaacaacaaa +aaaaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaxdaxfaxfaxgaxgaxgaxgaxgaxgaxgaxgaxgaxgaxgaxgaxgavTawnawBawBawBawCawBawBawDawEaxsaxsaxsawGawBawBawBaxrawBaxtavTaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaacaacaacaacaacaacaacaacaacaacaacaacaacaacaaa +aaaaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaxdaxfaxfaxgaxgaxgaxgaxgaxgaxgaxgaxgaxgaxgaxgaxgavTawnawBawBawBawCawBawBaxuaxvaxwaxwaxxaxyawBawBawBaxrawBaxlavTaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaacaacaacaacaacaacaacaacaacaacaacaacaacaacaaa +aaaaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaxdaxfaxfaxfaxfaxgaxgaxgaxgaxgaxgaxgaxgaxzaxzaxAavTawAawBawBawBawCawBawBawBawBawBawBawBawDawBawBawBaxrawBaxBavTaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaacaacaacaacaacaacaacaacaacaacaacaacaacaacaaa +aaaaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaxdaxfaxfaxfaxfaxgaxgaxfaxfaxfaxfaxzaxCaxDaxDaxDaxEaxFaxGaxHaxIaxJawBawBawBawBawBawBawBawDawBawBawBaxKaxLaxMavTaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaacaacaacaacaacaacaacaacaacaacaacaacaacaacaaa +aaaaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaxdaxfaxfaxfaxfaxgaxgaxfaxfaxfaxfaxzaxzaxzaxNaxOaxPaxQaxRaxSaxTaxUaxVaxVaxVaxWaxVaxXaxVaxYaxZayaaybaycaydayeavTaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaacaacaacaacaacaacaacaacaacaacaacaacaacaacaaa +aaaaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaxdaxfaxfaxfaxfaxfaxfaxfaxfaxfaxfaxzaxzaxzayfaygavTavTavTavTavTavTavTavTavTavTavTavTavTavTavTavTavTavTavTavTavTaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaaa +aaaaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaxmaxfaxfaxfaxfaxfaxfaxfaxfaxfaxfaxzaxCaxDayhaxzaxgaxgaxgaxgaxdaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaaa +aaaaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaxdaxfaxfaxfaxfaxfaxfaxfaxfaxgaxfaxfaxfaxgaxgaxgaxgaxgaxgaxgaxdaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaaa +aaaaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaxdaxfaxfaxfaxfaxfaxfaxfaxfaxgaxgaxgaxgaxgaxgaxgaxgaxgaxgaxgaxdaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaaa +aaaaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaxdaxfaxfaxfaxfaxfaxfaxfaxfaxfaxgaxgaxgaxgaxgaxgaxgaxgaxgaxgaxdaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaaa +aaaaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaxdaxfaxfaxfaxfaxfaxfaxfaxfaxfaxgaxgaxgaxgaxgaxgaxgaxgaxgaxgaxdaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaacaacaacaacaacaacaacaacaacaacaacaacaacaaa +aaaaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaxdaxfaxfaxfaxfaxfaxfaxfaxfaxfaxgaxgaxgaxgaxgaxgaxgaxgaxgaxgaxdaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaacaacaacaacaacaacaacaacaacaacaacaacaacaaa +aaaaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaxdaxfaxfaxfaxfaxfaxfaxfaxfaxfaxgaxgaxgaxgaxgaxgaxgaxgaxgaxgaxdaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaacaacaacaacaacaacaacaacaacaacaacaacaacaaa +aaaaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaxmaxdaxdaxdaxdaxdaxdaxmaxdaxdaxdaxdaxdaxdaxdaxdaxdaxdaxdaxdaxdaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaacaacaacaacaacaacaacaacaacaacaacaacaacaaa aaaaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaacaacaacaacaacaacaacaacaacaacaacaacaacaaa aaaaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaacaacaacaacaacaacaacaacaacaacaacaacaacaaa aaaaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaagaacaacaacaacaacaacaacaacaacaacaacaacaacaaa @@ -4612,247 +4627,247 @@ aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa "} (1,1,2) = {" -axYaxYaxYaxYaxYaxYaxYaxYaxYaxYaxYaxYaxYaxYaxYaxYaxYaxYaxYaxYaxYaxYaxYaxYaxYaxYaxYaxYaxYaxYaxYaxYaxYaxYaxYaxYaxYaxYaxYaxYaxYaxYaxYaxYaxYaxYaxYaxYaxYaxYaxYaxYaxYaxYaxYaxYaxYaxYaxYaxYaxYaxYaxYaxYaxYaxYaxYaxYaxYaxYaxYaxYaxYaxYaxYaxYaxYaxYaxYaxYaxYaxYaxYaxYaxYaxYaxYaxYaxYaxYaxYaxYaxYaxYaxYaxYaxYaxYaxYaxYaxYaxYaxYaxYaxYaxYaxYaxYaxYaxYaxYaxYaxYaxYaxYaxYaxYaxYaxYaxY -axYaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxY -axYaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxY -axYaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxY -axYaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxY -axYaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxY -axYaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxY -axYaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxY -axYaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZayaaxZayaayaayaaxZaxZaxZaxZaxZayaayaayaaxZaxZaxZayaaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZayaayaayaayaayaayaayaaxZaxZaxZaxZaxZaxZaxZaxZaxZayaaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxY -axYaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaaxZayaaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZayaayaayaayaayaayaayaayaayaayaayaayaayaaxZaxZaxZaxZayaayaaxZaxZaxZayaayaaxZaxZaxZaxZaxZayaayaayaaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxY -axYaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaaxZaxZayaayaayaayaayaayaaxZayaayaayaayaayaayaaxZayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaaxZaxZaxZayaayaayaayaayaayaayaaxZayaayaayaayaayaayaayaayaayaayaaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxY -axYaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxY -axYaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaaybaybaybaybaybaybaybayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxY -axYaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaaycaycaycaycaycayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaaybaydayeayfaygayhaybayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxY -axYaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaaycayiayjaykaycayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaaylaylaylaylaylaymaymaymaybaynayoayoaypayqaybayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxY -axYaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaaycayraysaytaycayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaaylayuayvaywayxayyayzayAayBayCayDayEayFayGaybayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxY -axYaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaaycayHayIayJaycayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaaylayKayLayMaylayNayOayPaybaybaybaybaybaybaybaybaybaybaybaybaybaybaybaybaybaybaybaybaybayaayaayaayaayaayaayaayaayaayaayaaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxY -axYaxZaxZaxZaxZaxZaxZaxZaxZaxZayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaaycayQayQayQaycaycaycayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaaylayRaySayTayUayNayOayVaymayaayaaybayWayWayWayWayWayWayWayWayWayWayWayWaybayXayYayZaybayaayaayaayaayaayaayaayaayaayaaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxY -axYaxZaxZaxZaxZaxZaxZaxZaxZaxZayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaaycaycaycazaazbazbazcazdaycayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaaymaymaymaymaymaylaylaylaylazeayOaymaymayaayaaybayWayWayWayWayWayWayWayWayWayWayWayWaybazfazgazhaybayaayaayaayaayaayaayaayaayaayaaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxY -axYaxZaxZaxZaxZaxZaxZaxZaxZaxZayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaaycaziazjazkazkazkazkazlaycayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaaymazmaznazoazpazqazrazsaymaymaztaymayaayaayaaybayWayWayWazuazuazuazuazuazuazuazuazuaybazvazwayXaybayaayaayaayaayaayaayaayaayaayaaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxY -axYaxZaxZaxZaxZaxZaxZaxZaxZaxZayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaaycazxaycazyazbazbazbazzaycayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaaymazAazBazCazDazEazFazGazHazIazJaymayaayaayaaybayWayWazKazLazLazLazLazLazLazLazLazLazMazwayXazwaybayaayaayaayaayaayaayaayaayaayaaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxY -axYaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaaycazNaycazOazPazQazbazRaycayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaaymazAazSazCazTaymayaayaayaazUazVaymayaayaayaaybayWayWazKazLazLazLazWazLazLazXazLazLaybazYazwazwaybayaayaayaayaayaayaayaayaayaayaaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxY -axYaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaaycazxaycazZazZaycaAaaAbaycayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaaymazAazSaAcaAdaymayaayaayaaAeaztaymayaayaayaaybazuazuaAfazLazLaybaybaybaybaybaybaybaybaybaybaybaybayaayaayaayaayaayaayaayaayaayaaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxY -axYaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaaycazxaycaAgaAgaycaAhaAiaycayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaaymazAazSazCazTaymayaayaayaaAjaztaAkaAkaAkaAkaAlazLazLazLazLaAmaybayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxY -axYaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaaycazNaycaycaycaycaycaycaycayaayaayaayaayaayaayaayaayaayaayaayaayaayaaymaymaymaymaymaymaymazAaAnaAoaApaymayaayaayaaAqaArazHazHazHazHaAsaAtaAtaAtaAuaAvaybayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxY -axYaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaaycazxaycayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaaAwaAwaAkaAkaAxaAyaAzaAAaABazCaACaymayaayaayaayaayaayaayaayaayaaybaADaADaAEaAFazLaybaybaybaybaybaybaybaybaAGaAGaAGaAGaAGaAGaAGaAGaAGaAGayaayaaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxY -axYaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaaycazxaycayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaaAHaAIaAJaAKaAKaALaAKaAMaANaAOaAPaAQaymayaayaayaayaayaayaayaayaayaaybayWayWazKaAFazLazLaARaASaATaAUaATaATaATaAVaAVaAWaAVaAVaAVaAVaAXaAYaAGayaayaaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxY -axYaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaaycaAZaycayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaaymaAwaAwaBaaBaazCazCazCazCaBbazCazCazCaBcaymayaayaaBdaBdaBdayaayaayaayaaybayWayWazKaBeaAtaBfaBgaAtaBhaAtaAtaAtaAtaBiaBiaBiaBjaBkaBkaBkaBkaBlaAGayaayaaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxY -axYaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaaycaBmaycayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaaymaBnaBaaBaazCazCazCazCazCaBoaBpaBqaBraACaymayaayaaBdaBsaBdayaayaayaayaaybayWayWayWaADaBtaBuaBvaBwaBxaybaybaybaybaAGaByaBzaBAaBBaBCaBDaBkaBlaAGayaayaaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxY -axYaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaaycaycaycayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaaymaymaymaBEaBFaBGaBFaBHaymaBIaBdaBdaBJaBKaBdaBdaBdaBdaBLaBdaBdaBdaBdaBdaBdaBdaBdaBdaBdaBdaBMaBNaBdaBdaBdaBOaBOaBOaAGaBPaBQaBRaBSaBTaBUaBkaBlaAGayaayaaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxY -axYaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaaymaBVaBWaBXaBXaBYaymaBZaBdaCaaCbaCcaCdaCeaCfaCgaChaCiaCjaCkaClaCmaCnaCoaCpaCqaCraCsaCtaCuaCvaCwaBdayaaBOaBOaAGaCxaCyaCzaCAaCBaCCaBkaBlaAGayaayaaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxY -axYaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaaymaymaymaymaymaymaymaCDaBdaCEaCFaCGaCHaCIaCJaCJaCJaCJaCJaCJaCJaCJaCJaCJaCJaCJaCJaCKaCLaCMaCNaCOaBdayaayaaBOaAGaCPaCyaCQaCAaCRaCCaBkaBlaAGayaayaaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxY -axYaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaaymaCSaCTaCUaCUaCUaCVaCWaBdaCXaCYaCZaDaaDaaDaaDaaDaaDaaDaaDaaDaaDaaDaaDaaDaaDaaDaaDaaDaaDbaDcaCOaBdayaayaayaaAGaDdaCyaDeaCAaCRaCCaBkaBlaAGayaayaaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxY -axYaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaaymaDfaDgaDgaDgaDgaDgaDgaBdaDhaDiaDjaDkaDlaDlaDlaDlaDlaDlaDlaDlaDlaDlaDlaDlaDlaDlaDlaDmaDnaDoaCOaBdayaayaayaaAGaDpaDqaDraDsaDtaCCaBkaBlaAGayaayaaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxY -axYaxZaxZaxZaxZaxZaxZaxZaxZaxZayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaaymaDfaDgaDuaDuaDgaDgaDgaBdaCXaDiaDjaDvaDwaDwaDwaDwaDwaDwaDwaDwaDwaDwaDwaDwaDwaDwaDwaDxaDnaDyaDzaBdayaayaayaaAGaDAaDBaDCaBkaDDaCCaBkaBlaAGayaayaaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxY -axYaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaaymaDEaDgaDuaDuaDgaDgaDgaBdaDFaDiaDjaDvaDwaDwaDwaDwaDwaDwaDwaDwaDwaDwaDwaDwaDwaDwaDwaDxaDnaDoaDGaBdaAGaAGaAGaAGaAGaAGaDCaBkaDHaDIaBkaBlaAGayaayaayaayaayaaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxY -axYaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaaymaDJaDgaDKaDLaDgaDMaDMaBdaCXaDiaDjaDvaDwaDwaDwaDwaDwaDwaDwaDwaDwaDwaDwaDwaDwaDwaDwaDxaDnaDoaCbaDNaDOaDOaDPaDQaDOaDRaDSaDTaDUaBkaBkaBlaAGayaayaayaayaayaaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxY -axYaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaaymaDJaDVaDWaDKaDXaDKaDKaBdaDYaDiaDjaDvaDwaDwaDwaDwaDwaDwaDwaDwaDwaDwaDwaDwaDwaDwaDwaDxaDnaDoaDZaBdaAGaAGaAGaAGaAGaAGaEaaEbaAVaAVaAVaEcaAGayaayaayaayaayaaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxY -axYaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaaymaDJaDgaEdaEeaEfaEgaEgaEhaCJaDiaDjaDvaDwaDwaDwaDwaDwaDwaDwaDwaDwaDwaDwaDwaDwaDwaDwaDxaDnaDoaCOaBdaEiaEjaEkaElaEmaAGaEnaEoaAGaAGaAGaAGaAGaAGaAGayaayaayaaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxY -axYaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaaymaEpaDgaEqaEraEsaEtaEuaEvaEwaExaEyaDvaDwaDwaDwaDwaDwaDwaDwaDwaDwaDwaDwaDwaDwaDwaDwaDxaDnaDoaEzaBdaEAaEBaEBaECaEDaAGaEEaBlaEFaEGaAGaEHaEIaEJaAGayaayaayaaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxY -axYaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaaymaEpaDgaDgaDgaDgaDgaEKaBdaELaDoaEMaDvaDwaDwaDwaDwaDwaDwaDwaDwaDwaDwaDwaDwaDwaDwaDwaDxaDnaDoaENaBdaEAaEBaEBaEOaEPaAGaEQaBlaERaEDaAGaEBaEBaESaAGaAGayaayaaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxY -axYaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaaETaEUaETaEVaEWaEWaEWaEXaBdaCXaDoaEMaDvaDwaDwaDwaDwaDwaDwaDwaDwaDwaDwaDwaDwaDwaDwaDwaDxaDnaDoaEYaBdaEZaFaaFbaFcaFdaAGaFeaBlaERaFfaAGaEBaEBaEBaEBaAGayaayaaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxY -axYaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaaFgaFhaFiaFjaFkaFlaFmaFnaBdaCXaDoaFoaDwaDwaDwaDwaDwaDwaDwaDwaDwaDwaDwaDwaDwaDwaDwaDwaDwaFpaDoaFqaFraAGaAGaFsaAGaAGaAGaFtaFuaFvaFwaFxaEBaFyaEBaFzaAGayaayaaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxY -axYaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaaFAaFkaFlaFBaFlaFCaFDaFEaFFaFGaFHaEWaEWaFraCXaDoaFoaDwaDwaDwaDwaDwaDwaDwaDwaDwaDwaDwaDwaDwaDwaDwaDwaDwaFpaFIaFJaFKaFLaFLaFMaFNaFNaFOaFPaBlaAGaAGaAGaAGaAGaAGaAGaAGayaayaaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxY -axYaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaaFQaFFaFFaFFaFRaFSaFTaFUaEWaEWaFVaFFaFFaFWaFXaFYaFoaDwaDwaDwaDwaDwaDwaDwaDwaDwaDwaDwaDwaDwaDwaDwaDwaDwaFpaFZaGaaBdaBkaBkaBkaBkaBkaAGaGbaBlaAGaGcaGdaGeaGfaAGayaayaayaayaaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxY -axYaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaaGgayaayaayaayaayaayaayaaGhaGiayaayaayaaBdaDFaGjaEMaDvaDwaDwaDwaDwaDwaDwaDwaDwaDwaDwaDwaDwaDwaDwaDwaDxaDnaFZaENaBdaGkaAGaAGaAGaAGaAGaGbaBlaAGaAGaAGaGlaAGaAGayaayaaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxY -axYaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaaGgayaayaayaayaayaayaayaayaayaayaayaayaaBdaCEaGjaEMaDvaDwaDwaDwaDwaDwaDwaDwaDwaDwaDwaDwaDwaDwaDwaDwaDxaDnaFZaGmaBdaEDaAGaGnaBkaBkaBkaGbaBlaFxaBkaDUaBkaBkaAGayaayaaGoaGoaGoaGoaGoaGoaGoaGoaGoaGoaGoaGoaxY -axYaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaaGpayaayaayaaGgayaayaayaayaayaayaayaayaayaayaayaayaaBdaCXaGjaEMaDvaDwaDwaDwaDwaDwaDwaDwaDwaDwaDwaDwaDwaDwaDwaDwaDxaDnaGqaCOaBdaFfaAGaGraGsaGtaGuaGvaGwaAGaAGaAGaAGaBkaAGayaayaaGoaGoaGoaGoaGoaGoaGoaGoaGoaGoaGoaGoaxY -axYaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaaGxayaayaayaayaaGxayaayaayaayaayaayaayaayaayaayaayaayaaGyaGzayaayaayaaGgayaayaayaayaayaayaayaayaayaayaaBdaBdaBdaGAaGjaEMaDvaDwaDwaDwaDwaDwaDwaDwaDwaDwaDwaDwaDwaDwaDwaDwaDxaDnaCJaGBaBdaEDaAGaGraGCaDTaGDaGEaGFaAGaGGaGHaAGaGIaAGayaayaaGoaGoaGoaGoaGoaGoaGoaGoaGoaGoaGoaGoaxY -axYaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaaGxaGJayaaGKayaaGxayaayaayaayaaGLaGMaGMaGMaGNaGNaEWaEWaEWaEWaGOaGPaGPaGQayaayaayaayaayaayaayaayaayaayaaBdaBsaGRaGSaGjaEMaDvaDwaDwaDwaDwaDwaDwaDwaDwaDwaDwaDwaDwaDwaDwaDwaDxaDnaGTaCOaBdaGUaAGaGVaGCaBkaGWaGXaGYaAGaGZaHaaAGaHbaAGayaayaaGoaGoaGoaGoaGoaGoaGoaGoaGoaGoaGoaGoaxY -axYaxZaxZaxZaxZaxZaxZaxZaxZayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaaGxaHcaHdaHdaHeaGxayaayaayaayaaHfaHgayaayaayaayaayaayaayaayaaGgayaayaayaayaayaayaayaayaayaayaayaayaayaaBdaBdaBdaHhaGjaEMaDvaDwaDwaDwaDwaDwaDwaDwaDwaDwaDwaDwaDwaDwaDwaDwaDxaDnaHiaENaBdaEDaAGaHjaGCaBkaHkaHlaHmaAGaHnaHoaAGaBkaAGayaayaaGoaGoaGoaGoaGoaGoaGoaGoaGoaGoaGoaGoaxY -axYaxZaxZaxZaxZaxZaxZaxZaxZayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaaGxaHpaHqaHdaHraGxayaayaayaayaayaaGNayaayaayaayaayaayaayaayaaHsaHtaHtaHuaHuaHuaHuaHuaHuaBdayaayaayaayaayaayaaBdaCXaGjaEMaDvaDwaDwaDwaDwaDwaDwaDwaDwaDwaDwaDwaDwaDwaDwaDwaDxaDnaHiaCOaBdaEDaAGaGraGCaBkaHvaEoaBkaAGaHnaHnaAGaBkaAGayaayaaGoaGoaGoaGoaGoaGoaGoaGoaGoaGoaGoaGoaxY -axYaxZaxZaxZaxZaxZaxZaxZaxZaxZayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaaGxaHwaHxaHyaHzaGxayaayaayaayaayaaGMayaayaayaaHAaHAaHAaHAaHBaHCaHDaHEaHFaHFaHFaHFaHFaHFaBdaBdaBdayaayaayaayaaBdaCXaGjaEMaDvaDwaDwaDwaDwaDwaDwaDwaDwaDwaDwaDwaDwaDwaDwaDwaDxaDnaHiaCOaBdaHGaHHaHIaHJaFNaHKaHLaBkaAGaAGaAGaAGaBkaAGayaayaaGoaGoaGoaGoaGoaGoaGoaGoaGoaGoaGoaGoaxY -axYaxZaxZaxZaxZaxZaxZaxZaxZayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaaGxaHpaHMaHNaHOaGxayaayaayaayaayaaGMayaayaayaaHAaHPaHQaHRaHSaHTaHUaHVaHFaHWaHWaHWaHWaHFaHXaHYaHZaBdaBdaBdaBdaBdaCXaGjaEMaIaaIbaIbaIbaIbaIbaIbaIbaIbaIbaIbaIbaIbaIbaIbaIbaIcaDnaHiaFqaBdaAGaAGaAGaAGaAGaAGaIdaBkaFxaBkaBkaBkaBkaAGayaayaaGoaGoaGoaGoaGoaGoaGoaGoaGoaGoaGoaGoaxY -axYaxZaxZaxZaxZaxZaxZaxZaxZayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaaGxaHpaHdaHdaHraETaETaETaETaETaETaHgaETayaayaaHAaIeaIfaIgaHAaIhaHDaIiaHFaHWaHWaHWaHWaHWaCJaIjaHXaIkaIlaImaInaIoaIpaGjaIqaIraIraIraIraIraIraIraIraIraIraIraIraIraIraIraIraIraIsaHiaCJaItaIuaIvaIwaIxaBkaIyaIdaBkaAGaAGaAGaAGaAGaAGayaayaayaayaayaaGoaGoaGoaGoaGoaGoaGoaGoaGoaxY -axYaxZaxZaxZaxZaxZaxZaxZaxZaxZayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaaGxaIzaHdaHyaIAaETaIBaHgaGMaGMaGMaICaETayaayaaHAaIDaIEaIFaIGaIHaIIaIJaHFaHWaHWaHWaHWaHWaCJaCJaCJaCJaCJaCJaCJaCFaIKaILaIMaINaINaINaINaINaINaINaINaINaINaINaINaINaINaINaINaIOaIPaIQaIPaIRaISaISaITaISaISaIUaIVaBkaAGayaayaayaayaayaayaayaayaayaayaaGoaGoaGoaGoaGoaGoaGoaGoaGoaxY -axYaxZaxZaxZaxZaxZaxZaxZaxZaxZayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaaGxaHpaIWaHdaIXaIYaIBaETaETaETaETaETaETaIZaIZaIZaIZaIZaJaaJaaJbaJcaJdaHFaHWaHWaHWaHWaHFaCJaJeaJfaJgaJgaJgaJgaJhaJiaGqaDiaJjaJkaJfaJgaJgaJlaJgaJmaJnaJoaJpaJqaJraJgaJgaJhaJsaJtaJgaJuaBdaAGaAGaAGaAGaAGaAGaJvaBkaAGayaayaayaayaayaayaayaayaayaayaaGoaGoaGoaGoaGoaGoaGoaGoaGoaxY -axYaxZaxZaxZaxZaxZaxZaxZaxZaxZayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaaGxaHpaHdaHdaJwaJxaJxaJxaJxaJxaIZaIZaIZaIZaIZaIZaIZaIZaJaaJyaJzaJcaJAaHFaHFaHFaHFaHFaHFaJgaJBaHZaBdaBdaJCaJCaJCaJDaJEaJFaJCaJCaJGaJGaJGaJGaJGaJGaJGaJGaJHaJIaJIaJIaJIaJIaJJaJIaJKaJIaJIaJLaJMaBkaBkaJNaAGaJvaBkaAGayaayaayaayaayaayaayaayaayaaGoaGoaGoaGoaGoaGoaGoaGoaGoaGoaxY -axYaxZaxZaxZaxZaxZaxZaxZaxZaxZayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaaGxaJOaHdaHdaHraJxaJPaJQaJRaJxaJSaJTaJUaJVaJWaJUaJXaJYaJaaJZaKaaJcaKbaKcaKcaKcaKcaKdaHuaBdaBdaBdaKeaKeaJCaKfaKgaKhaKiaKjaKkaKlaKmaKnaKoaKpaKqaKraKsaJGaBsaJIaKtaKuaKvaKwaKxaKyaKzaKAaJIaKBaKCaBkaDUaBkaKDaJvaBkaAGayaayaayaayaayaayaayaayaayaaGoaGoaGoaGoaGoaGoaGoaGoaGoaGoaxY -axYaxZaxZaxZaxZaxZaxZaxZaxZaxZayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaaGxaKEaKFaHdaHraJxaKGaKHaKIaJxaKJaKKaKLaKMaKNaKLaKOaKPaJaaKQaKaaJcaJcaJcaJcaJcaJcaKRaKSaETayaayaayaayaaJCaKTaKUaKVaKWaKXaKYaKZaLaaLbaLcaLcaLbaLdaLeaJGaBdaJIaLfaLgaLhaLhaLiaLhaLhaLjaJIaLkaKCaBkaBkaBkaAGaJvaBkaAGayaayaayaayaayaayaayaayaayaaGoaGoaGoaGoaGoaGoaGoaGoaGoaGoaxY -axYaxZaxZaxZaxZaxZaxZaxZaxZayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaaGxaKEaHdaIWaHraJxaLlaLmaLnaJxaLoaLpaLqaLqaLqaLqaLpaLraJaaLsaLtaLuaLvaLwaLxaLyaJcaLzaLAaLBayaayaayaayaaJCaKTaLCaLDaLEaLFaLGaLHaLaaLIaLJaLKaLLaLdaLMaJGaLNaJIaLOaLhaLhaLhaLPaLQaLQaLRaJIaLSaKCaDTaBkaLTaAGaJvaBkaAGayaayaayaayaayaayaayaayaaGoaGoaGoaGoaGoaGoaGoaGoaGoaGoaGoaxY -axYaxZaxZaxZaxZaxZaxZaxZaxZayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaaGxaHpaHdaHdaLUaJxaLVaLWaLXaLYaKLaLZaMaaMbaMbaMcaMdaKLaMeaMfaMgaMfaMhaMiaMiaMjaJcaMkaMlaETayaayaayaayaaJCaMmaKYaMnaMoaMpaLGaMqaKmaMraLJaLJaLLaLdaMsaJGaMtaJIaMuaMvaMvaMwaMxaMyaLhaMzaJIaLkaMAaDTaDTaMBaMBaMCaMDaMBaMBayaayaayaayaayaayaayaayaaGoaGoaGoaGoaGoaGoaGoaGoaGoaGoaxY -axYaxZaxZaxZaxZaxZaxZaxZaxZaxZayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaaGxaMEaHyaHdaHraJxaMFaMGaMHaMIaMJaLqaMKaMLaMMaMcaLpaMNaMOaMPaMQaMRaMSaMTaMiaMUaJcaMVaMWaETayaayaayaayaaJCaMXaMYaMZaKYaNaaKYaNbaLaaNcaNdaNdaLbaNeaNfaJGaMtaJIaJIaJIaJIaJIaJIaJIaNgaJIaJIaNhaNiaBkaBkaMBaNjaNkaNlaNmaMBayaayaayaayaayaayaayaayaaGoaGoaGoaGoaGoaGoaGoaGoaGoaGoaxY -axYaxZaxZaxZaxZaxZaxZaxZaxZaxZayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaaGxaHpaNnaHNaHOaJxaNoaMGaNpaNqaNraNsaLqaMLaMMaMcaLpaNtaNuaNvaNwaNxaNyaNxaNzaNAaJcaNBaNCaETayaayaayaayaaJCaMXaNDaNEaNFaNGaNHaNIaNJaNKaNLaNMaNNaNOaNPaJGaNQaNQaNQaNRaMtaMtaMtaMtaMtaNSaMBaMBaMBaMBaMBaMBaNTaNUaNVaNWaMBayaayaayaayaayaayaayaayaaGoaGoaGoaGoaGoaGoaGoaGoaGoaGoaxY -axYaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaaGxaNXaIWaHdaHraJxaNYaNZaOaaJxaObaOcaOdaOeaOfaOgaLpaOhaJaaOiaOjaOkaOlaOmaOnaOoaJcaOpaOqaETaOraOraOraOraJCaMXaOsaOtaOuaOvaOwaOxaJGaOyaOzaOAaOBaOCaODaJGagkagkagkagkaMBaMBaMBaMBaMBaOEaOFaMBaOGaOHaOIaOIaOJaOKaNVaOLaMBayaayaayaayaayaayaayaaGoaGoaGoaGoaGoaGoaGoaGoaGoaGoaGoaxY -axYaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaaGxaOMaHdaHNaONaJxaOOaMHaOPaJxaOQaORaOSaOTaOTaOTaOUaOVaJaaOWaOjaOXaOYaOZaOnaPaaJcaPbaOraOraOraPcaOraOraOraOraOraPdaPeaPfaOraOraPgaPhaPiaPjaPgaPgaPgaPgaPkagLaPlagkayaayaayaayaaMBaNQaNRaMBaPmaPnaPoaMtaPpaPqaPraOLaMBayaayaayaayaayaayaayaaGoaGoaGoaGoaGoaGoaGoaGoaGoaGoaGoaxY -axYaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaaGxaHpaHdaHdaPsaJxaPtaPuaPvaJxaPwaPxaPyaPzaPAaPBaPyaPCaJaaPDaPEaPFaPGaPHaPIaPJaJcaPKaPLaPMaPNaPOaPPaPQaPRaPSaPTaPUaPVaPWaPXaPYaPgaPZaQaaQbaQcaQdaQeaQfaQgaQhaQiagkayaayaayaayaaMBaNQaOEaQjaPmaQkaQlaQmaQnaPqaNVaOLaMBayaayaayaayaayaayaayaaGoaGoaGoaGoaGoaGoaGoaGoaGoaGoaGoaxY -axYaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaaGxaQoaHdaHdaQpaJxaQqaQraQsaJxaIZaQtaIZaIZaIZaIZaIZaIZaJaaQuaQvaQwaQxaQyaQzaQAaJcaQBaQCaQDaQEaQFaQGaQHaQIaQJaQKaQLaQMaQNaQOaQPaPiaQQaQQaQQaQQaQQaQRaPgahraQSahtagkayaayaayaayaaMBaQTaQUaMBaPmaQkaQVaQWaQWaQXaNVaOLaMBayaayaayaayaayaayaayaaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxY -axYaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaaGxaHpaHdaHdaQpaJxaJxaJxaJxaJxaIZaQYaQZaIZaIZaIZaIZaIZaJaaRaaRaaRbaRcaRbaRaaRaaRaaRdaReaOraOraRfaRfaRfaRfaRfaRgaRhaRiaRjaQOaRkaPiaRlaRmaRnaRoaRmaRpaPgagkagkagkagkaMBaMBaMBaMBaMBaQTaNVaMBaRqaRraRsaNVaPraNVaNVaOLaMBayaayaayaayaayaayaayaaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxY -axYaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaaGxaHpaHdaHdaRtaGxaRuauBaRvaRwaRxaRyaRzaGxayaayaayaayaayaaRaaRAaRBaRCaRDaREaRFaRaaRGaRHaOraRIaRfaRJaRKaRLaRfaRfaRfaRMaRjaQOaRNaPgaROaRPaRQaRRaRSaRTaPgaRUaRVaRWaRXaRXaRYaRXaQTaQTaQTaRZaMBaSaaSbaScaNVaSdaSeaSfaSgaMBayaayaayaayaayaayaayaaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxY -axYaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaaGxaHpaHyaIWaHdaGxaShaGxaGxaGxaGxaSiaSjaGxayaayaayaayaayaaRaaSkaSlaSmaSnaSoaSpaRaaSqaSraOraSsaRfaStaSuaSvaSwaSxaRfaSyaSzaSAaSBaPgaPgaPiaPiaPiaPiaPgaPgaSCaSCaSCaSCaSCaSCaMBaMBaMBaMBaMBaMBaMBaMBaSDaSEaSFaSGaSHaMBaMBayaayaayaayaayaayaayaaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxY -axYaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaaGxaSIaHdaHdaSJaGxaGxaGxayaayaaGxaSiaSjaGxayaayaayaayaayaaRaaSKaSLaSMaSNaSOaSPaRaaSQaSRaOraSsaRfaSSaSTaSUaSVaSWaSXaSYaSZaTaaTbaTcaTdaTeaTeaTeaTeaTeaTfaSCaTgaThaTiaTiaSCayaayaayaayaayaayaayaaMBaTjaMDaMBaMBaMBaMBayaayaayaayaayaayaaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxY -axYaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaaGxaTkaTlaTmaTmaGxayaayaayaayaaGxaSiaSjaGxayaayaayaayaayaaRaaTnaToaTpaTqaTraTsaRaaTtaTuaOraSsaRfaTvaTwaTxaTyaTzaRfaTAaTBaQOaTCaRhaTDaRhaRhaRhaRhaTEaTFaTGaTHaTIaTJaTKaSCayaayaayaayaayaayaayaaMBaTLaNVaMBayaayaayaayaayaayaayaayaayaaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxY -axYaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaaGxaGxaGxaGxaGxaGxayaayaayaayaaGxaSiaSjaTMaTMaTMaTMaTMaTMaRaaRaaRaaRaaRaaRaaRaaRaaTNaTOaTPaTPaTPaTPaTPaTPaTPaTPaTPaTPaTQaTRaTSaTPaTPaTPaTPaTPaTPaTPaOraSCaTTaTIaTJaTUaSCayaayaayaayaayaayaayaaMBaTLaMBaMBayaayaayaayaayaayaayaayaayaaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxY -axYaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaaGxaSiaSjaTMaTVaTWaTXaTYaTZaTMayaaTPaUaaUbaUcaUdaUeaUfaUgaUhaUiaUjaUkaUlaUmaUnaUoaUpaUqaUraUsaUtaUuaUvaUwaUxaUyaUzaTPayaaSCaUAaTIaUBaUCaSCayaayaayaayaayaayaayaaMBaTLaMBaUDayaayaayaayaayaayaayaayaayaaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxY -axYaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaaGxaUEaUFaTMaUGaUHaUIaUIaUJaTMayaaTPaUKaULaUMaUMaUNaUOaUPaUQaURaUSaUSaUSaUSaUTaUQaUQaUSaUTaUUaUVaUVaUMaUWaUXaUWaUYaTPayaaSCaSCaUZaVaaSCaSCayaayaayaayaayaayaayaaMBaTLaMBaUDayaayaayaayaayaayaayaayaayaaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxY -axYaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZayaayaayaayaayaayaaxZaxZaxZaxZayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaaGxaVbaVcaVdaVeaVfaVgaUIaVhaTMayaaTPaViaVjaVkaVlaVmaVlaVnaVoaVpaVqaVqaVqaVraVsaVtaVuaUMaVvaVwaVsaUsaUMaVxaVxaVtaVyaTPayaayaaSCaSCaSCaSCayaayaayaayaayaayaayaayaaMBaTLaMBaMBayaayaayaayaayaayaayaayaayaaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxY -axYaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZayaayaayaayaaxZaxZaxZaxZaxZaxZayaayaayaayaaxZaxZayaayaayaayaayaayaayaayaayaayaaGxaGxaGxaTMaVzaVAaVBaVCaVDaTMayaaTPaVEaVFaVGaVHaVHaVHaVIaVJaVKaVLaVLaVMaVMaVMaVNaUXaUMaUMaVOaUSaURaVPaVQaVRaVSaVTaTPayaayaayaayaayaayaayaayaayaayaayaayaayaayaaMBaTLaVUaMBayaayaayaayaayaayaayaayaayaaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxY -axYaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZayaayaayaayaaxZaxZaxZaxZaxZaxZayaayaaxZayaaxZaxZaxZaxZayaayaayaayaayaayaayaayaayaayaayaaTMaTMaTMaTMaTMaTMaTMayaaTPaVVaVFaVWaVXaVYaVZaWaaUsaWbaUMaWcaWdaWdaWdaWdaVRaVLaVLaVLaVLaVMaWeaWfaWgaWhaWiaTPayaayaayaayaayaayaayaayaayaayaayaayaayaayaaMBaWjaQlaMBayaayaayaayaayaayaayaayaayaaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxY -axYaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaaTPaWkaWlaWmaWnaWoaWpaWqaUsaWbaUMaWraWsaWsaWsaWsaWsaWsaWtaWuaWvaVQaWwaWxaWyaWzaWAaTPayaayaayaayaayaayaayaayaayaayaayaayaayaayaaMBaWjaQlaMBayaayaayaayaayaayaayaayaayaaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxY -axYaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZayaayaaxZaxZaxZayaayaayaayaayaayaayaayaayaayaaTPaWBaWCaWqaWDaWEaWmaWxaWFaWGaWHaWIaWJaWJaWJaWJaWJaWJaWKaWLaWMaUWaWNaWOaWPaWQaWAaTPayaayaayaayaayaayaayaayaayaayaayaayaayaayaaMBaWRaWSaMBayaayaayaayaayaayaayaayaayaaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxY -axYaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZayaayaaxZaxZaxZayaayaayaayaayaayaayaayaayaayaaTPaWBaWTaWPaWUaWVaWWaWWaWXaWYaWZaWIaWJaWJaWJaWJaWJaWJaXaaXbaXcaXdaUsaXeaWqaXfaXgaTPayaayaayaayaayaayaayaayaayaayaayaayaayaayaaMBaXhaNVaMBayaayaayaayaayaayaayaayaayaayaaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxY -axYaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaXiaxZaxZayaayaayaayaayaayaayaaTPaWBaWCaWqaWDaWEaXjaWxaWFaXkaWZaWIaWJaWJaWJaWJaWJaWJaWKaUsaXcaXdaUsaUMaWqaXlaXmaTPayaayaayaayaayaayaayaayaayaayaayaayaayaayaaMBaXnaXoaMBayaayaayaayaayaayaayaayaayaayaaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxY -axYaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaXiaxZaxZayaayaayaayaayaayaayaaTPaXpaXqaXjaXraWpaWoaWqaUsaXsaWraWJaWJaWJaWJaWJaWJaWJaWKaUsaXcaXtaXuaXvaWPaXwaXxaTPayaayaayaayaayaayaayaayaayaayaayaayaayaaMBaMBaMBaTLaMBayaayaayaayaayaayaayaayaayaayaaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxY -axYaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaXiaxZaxZayaayaayaayaayaayaayaaTPaVVaWoaXyaXzaXAaXBaXCaUsaXDaXEaXFaXFaXFaXFaXFaXFaXFaXGaUsaXcaUMaXHaWxaXIaXJaXxaTPayaayaayaayaayaayaaMBaMBaMBaMBaMBaMBaMBaMBaXKaMBaTLaMBayaayaayaayaayaayaayaayaaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxY -axYaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaXiaxZaxZayaayaayaayaayaayaayaaTPaXLaWdaXMaXNaXNaXNaVIaVOaUPaUSaUSaUSaUSaUSaUSaUSaUSaUSaXOaXPaXQaXRaXSaXTaXUaXVaTPayaayaayaayaayaayaaMBaXWaNVaXXaNVaNVaNVaMBaXYaMBaTLaMBayaayaayaayaayaayaayaayaaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxY -axYaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaXiaxZaxZayaayaayaayaayaayaayaaTPaXZaYaaXfaYbaYbaYbaYcaUMaXDaUMaYdaWHaWHaWHaWHaWHaWHaYeaVuaYfaYgaYhaYiaYjaYaaYkaTPayaayaayaayaayaayaaMBaNVaYlaSeaYmaYnaNVaMBaXYaMBaTLaMBayaayaayaayaayaayaayaayaaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxY -axYaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaXiaxZaxZaxZaxZayaayaayaayaayaaTPaYoaUMaUMaUMaUMaUMaUMaUMaXDaUMaYpaYqaYraYsaYtaYuaYvaYwaYxaYyaTPaTPaYzaTPaTPaTPaTPaMBaMBaMBaMBaMBaMBaMBaYAaYBaYCaYCaYDaYEaMBaMBaMBaTLaMBayaayaayaayaayaayaayaayaaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxY -axYaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaXiaxZaxZaxZaxZayaayaayaayaayaaTPaYoaUMaUMaUMaUMaUMaUMaUMaYFaYGaYpaYqaYraYsaYtaYuaYvaYwaYxaYHaTPaYIaYJaYKaYLaYLaYMaYNaYLaYOaYPaYQaYRaYRaYSaYTaYUaYVaYWaYXaYRaYRaYRaYYaMBayaayaayaayaayaayaayaayaaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxY -axYaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaXiaxZaxZaxZaxZayaayaayaayaayaaTPaYZaZaaZbaZcaYgaZdaZeaZfaZgaZhaZiaYqaYraYsaZjaYuaYvaYwaZkaZlaTPaNVaZmaNVaNVaNVaNVaNVaZnaZoaNVaNVaMBaMBaMBaMBaMBaMBaMBaMBaMBaMBaMBaMBaMBayaayaayaayaayaayaayaayaaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxY -axYaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaXiaxZaxZaxZaxZaxZaxZayaayaayaaTPaTPaTPaTPaTPaTPaTPaTPaTPaTPaTPaTPaTPaTPaTPaTPaTPaTPaTPaTPaTPaMBaNVaZpaMBaMBaMBaMBaZqaZraZsaZtaZtaZtayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxY -axYaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaXiaxZaxZaxZaxZaxZaxZayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaaMBaNVaZuaMBayaayaayaaZtaZvaZwaZxaZyaZtayaayaayaaZzaZzaZzaZzaZzaZzaZzaZzayaayaayaayaayaayaayaayaaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxY -axYaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaXiaxZaxZaxZaxZaxZaxZaxZaxZayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaaMBaNVaZuaMBayaayaayaaZtaZAaZBaZCaZDaZEaZFaZFaZFaZzaZGaZHaZIaZJaZKaZLaZzayaayaayaayaayaayaayaayaaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxY -axYaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaXiaxZaxZaxZaxZaxZaxZaxZaxZayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaaMBaNVaZuaZFaZFaZFaZFaZFaZFaZFaZMaZNaZFaZOaZPaZQaZzaZRaZSaZTaZUaZVaZWaZzayaayaayaayaayaayaayaayaaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxY -axYaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaXiaxZaxZaxZaxZaxZaxZaxZaxZaxZayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaaMBaNVaZXaZYaZZbaababaZFbacbadbaebafbagbahbahbaiaZzbajbakbalbambanbaoaZzayaayaayaayaayaayaayaayaaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxY -axYaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaXiaxZaxZaxZaxZaxZaxZaxZaxZaxZayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaaMBbapbaqbarbasbatbaubavbawbaubaxbaybazbaAbaBbaCbaDbaEbaFbaGbaHbaIbaJbaJbaJbaJayaayaayaayaayaayaayaayaaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxY -axYaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaXiaxZaxZaxZaxZaxZaxZaxZaxZaxZayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaaMBbaKbaLaZNbaMbaNbaOaZFbaPbahbaQbahbaRbaSbaTbaUaZzbaVbaWbaXbalbaYbaZbbabbbbaJayaayaayaayaayaayaayaayaaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxY -axYaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaXiaxZaxZaxZaxZaxZaxZaxZaxZaxZayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaaMBaMBaMBaZFaZFaZFaZFaZFbbcbbdbbebbfbaJbaJbaJbaJbaJbbgbbhbbibbjbbkbaJbaJbblbaJbaJayaayaayaayaayaayaayaaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxY -axYaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZbbmbbnbbnbbnbbnbbnbbnbbnbbnbbnayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaaZFbbobbobbpbbobaJbbqbbqbbqbbrbbsbbtbbubbvbbwbbxbbybbzbbAbaJayaayaayaayaayaayaayaaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxY -axYaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaaZFbbBbbCbbDbbEbaJbbqbbzbbzbbzbbFbbzbbGbbzbbFbbzbbzbbzbbqbaJayaayaayaayaayaayaayaaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxY -axYaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaaZFbbHbbIbbJbbKbaJbbqbbLbbMbbNbbFbbzbbqbbzbbFbbzbbObbPbbqbaJayaayaayaayaayaayaayaaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxY -axYaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaaZFbbQbbRbbRbbSbaJbbTbbzbbzbbzbbFbbzbbUbbzbbFbbzbbzbbzbbVbaJayaayaayaayaayaayaayaaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxY -axYaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaaZFbbWbbXbbYaZFbaJbbZbcabcbbccbbwbcdbcebcfbbwbcgbchbcibcjbaJayaayaayaayaayaayaayaaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxY -axYaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaaZFaZFaZFaZFaZFbaJbbqbckbclbbzbbFbbzbbqbbzbbFbbzbcmbcnbbqbaJayaayaayaayaayaayaayaaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxY -axYaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayabaJbbqbbzbbzbbzbbFbbzbcobbzbbFbbzbbzbbzbbqbaJayaayaayaayaayaaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxY -axYaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayabaJbbqbcpbcqbcrbcsbbzbctbbzbcubcvbcwbcxbbqbaJayaayaayaayaayaayaaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxY -axYaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayabaJbbvbcybbqbczbbqbbqbcAbbqbbqbcBbbqbcybbvbaJayaayaayaayaayaaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxY -axYaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayabaJbaJbaJbaJbaJbaJbaJbaJbaJbaJbaJbaJbaJbaJbaJayaayaayaayaaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxY -axYaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZayaayaayaayaayaayaayaayaayaayaayaaxZaxZaxZaxZayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxY -axYaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZayaayaayaayaayaayaayaayaayaayaaxZaxZaxZaxZayaayaayaayaayaaxZaxZaxZayaaxZaxZayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaayaaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxY -axYaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZayaayaayaayaayaayaaxZayaayaaxZaxZaxZaxZaxZaxZayaayaayaayaaxZaxZaxZaxZaxZaxZayaayaayaayaaxZaxZaxZayaayaayaayaaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxY -axYaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZayaaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZayaaxZaxZaxZayaayaaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxY -axYaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxY -axYaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxY -axYaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxY -axYaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxY -axYaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxY -axYaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxY -axYaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxZaxY -axYaxYaxYaxYaxYaxYaxYaxYaxYaxYaxYaxYaxYaxYaxYaxYaxYaxYaxYaxYaxYaxYaxYaxYaxYaxYaxYaxYaxYaxYaxYaxYaxYaxYaxYaxYaxYaxYaxYaxYaxYaxYaxYaxYaxYaxYaxYaxYaxYaxYaxYaxYaxYaxYaxYaxYaxYaxYaxYaxYaxYaxYaxYaxYaxYaxYaxYaxYaxYaxYaxYaxYaxYaxYaxYaxYaxYaxYaxYaxYaxYaxYaxYaxYaxYaxYaxYaxYaxYaxYaxYaxYaxYaxYaxYaxYaxYaxYaxYaxYaxYaxYaxYaxYaxYaxYaxYaxYaxYaxYaxYaxYaxYaxYaxYaxYaxYaxYaxYaxY +ayiayiayiayiayiayiayiayiayiayiayiayiayiayiayiayiayiayiayiayiayiayiayiayiayiayiayiayiayiayiayiayiayiayiayiayiayiayiayiayiayiayiayiayiayiayiayiayiayiayiayiayiayiayiayiayiayiayiayiayiayiayiayiayiayiayiayiayiayiayiayiayiayiayiayiayiayiayiayiayiayiayiayiayiayiayiayiayiayiayiayiayiayiayiayiayiayiayiayiayiayiayiayiayiayiayiayiayiayiayiayiayiayiayiayiayiayiayiayiayi +ayiayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayi +ayiayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayi +ayiayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayi +ayiayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayi +ayiayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayi +ayiayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayi +ayiayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayi +ayiayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjaykayjaykaykaykayjayjayjayjayjaykaykaykayjayjayjaykayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjaykaykaykaykaykaykaykayjayjayjayjayjayjayjayjayjaykayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayi +ayiayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykayjaykayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjaykaykaykaykaykaykaykaykaykaykaykaykaykayjayjayjayjaykaykayjayjayjaykaykayjayjayjayjayjaykaykaykayjayjayjayjayjayjayjayjayjayjayjayjayjayi +ayiayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykayjayjaykaykaykaykaykaykayjaykaykaykaykaykaykayjaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykayjayjayjaykaykaykaykaykaykaykayjaykaykaykaykaykaykaykaykaykaykayjayjayjayjayjayjayjayjayjayjayi +ayiayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykayjayjayjayjayjayjayjayjayjayjayi +ayiayjayjayjayjayjayjayjayjayjayjayjayjayjayjaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaylaylaylaylaylaylaylaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykayjayjayjayjayjayjayjayjayjayjayi +ayiayjayjayjayjayjayjayjayjayjayjayjayjayjayjaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaymaymaymaymaymaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaylaynayoaypayqayraylaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykayjayjayjayjayjayjayjayjayjayjayi +ayiayjayjayjayjayjayjayjayjayjayjayjaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaymaysaytayuaymaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykayvayvayvayvayvaywaywaywaylayxayyayyayzayAaylaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykayjayjayjayjayjayjayjayjayjayjayi +ayiayjayjayjayjayjayjayjayjayjayjayjaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaymayBayCayDaymaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykayvayEayFayGayHayIayJayKayLayMayNayOayPayQaylaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykayjayjayjayjayjayjayjayjayjayjayi +ayiayjayjayjayjayjayjayjayjayjayjayjaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaymayRaySayTaymaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykayvayUayVayWayvayXayYayZaylaylaylaylaylaylaylaylaylaylaylaylaylaylaylaylaylaylaylaylaylaykaykaykaykaykaykaykaykaykaykaykayjayjayjayjayjayjayjayjayjayjayi +ayiayjayjayjayjayjayjayjayjayjaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaymazaazaazaaymaymaymaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykayvazbazcazdazeayXayYazfaywaykaykaylazgazgazgazgazgazgazgazgazgazgazgazgaylazhaziazjaylaykaykaykaykaykaykaykaykaykaykayjayjayjayjayjayjayjayjayjayjayjayi +ayiayjayjayjayjayjayjayjayjayjaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaymaymaymazkazlazlazmaznaymaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaywaywaywaywaywayvayvayvayvazoayYaywaywaykaykaylazgazgazgazgazgazgazgazgazgazgazgazgaylazpazqazraylaykaykaykaykaykaykaykaykaykaykayjayjayjayjayjayjayjayjayjayjayjayi +ayiayjayjayjayjayjayjayjayjayjaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaymazsaztazuazuazuazuazvaymaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaywazwazxazyazzazAazBazCaywaywazDaywaykaykaykaylazgazgazgazEazEazEazEazEazEazEazEazEaylazFazGazhaylaykaykaykaykaykaykaykaykaykaykayjayjayjayjayjayjayjayjayjayjayjayi +ayiayjayjayjayjayjayjayjayjayjaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaymazHaymazIazlazlazlazJaymaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaywazKazLazMazNazOazPazQazRazSazTaywaykaykaykaylazgazgazUazVazVazVazVazVazVazVazVazVazWazGazhazGaylaykaykaykaykaykaykaykaykaykaykayjayjayjayjayjayjayjayjayjayjayjayi +ayiayjayjayjayjayjayjayjayjayjayjaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaymazXaymazYazZaAaazlaAbaymaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaywazKaAcazMaAdaywaykaykaykaAeaAfaywaykaykaykaylazgazgazUazVazVazVaAgazVazVaAhazVazVaylaAiazGazGaylaykaykaykaykaykaykaykaykaykaykayjayjayjayjayjayjayjayjayjayjayjayi +ayiayjayjayjayjayjayjayjayjayjayjaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaymazHaymaAjaAjaymaAkaAlaymaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaywazKaAcaAmaAnaywaykaykaykaAoazDaywaykaykaykaylazEazEaApazVazVaylaylaylaylaylaylaylaylaylaylaylaylaykaykaykaykaykaykaykaykaykaykayjayjayjayjayjayjayjayjayjayjayjayi +ayiayjayjayjayjayjayjayjayjayjayjaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaymazHaymaAqaAqaymaAraAsaymaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaywazKaAcazMaAdaywaykaykaykaAtazDaAuaAuaAuaAuaAvazVazVazVazVaAwaylaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykayjayjayjayjayjayjayjayjayjayjayjayjayjayjayi +ayiayjayjayjayjayjayjayjayjayjayjaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaymazXaymaymaymaymaymaymaymaykaykaykaykaykaykaykaykaykaykaykaykaykaykaywaywaywaywaywaywaywazKaAxaAyaAzaywaykaykaykaAAaABazRazRazRazRaACaADaADaADaAEaAFaylaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykayjayjayjayjayjayjayjayjayjayjayjayjayjayjayi +ayiayjayjayjayjayjayjayjayjayjayjayjayjaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaymazHaymaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaAGaAGaAuaAuaAHaAIaAJaAKaALazMaAMaywaykaykaykaykaykaykaykaykaykaylaANaANaAOaAPazVaylaylaylaylaylaylaylaylaAQaAQaAQaAQaAQaAQaAQaAQaAQaAQaykaykayjayjayjayjayjayjayjayjayjayjayjayjayjayi +ayiayjayjayjayjayjayjayjayjayjayjayjayjaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaymazHaymaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaARaASaATaAUaAUaAVaAUaAWaAXaAYaAZaBaaywaykaykaykaykaykaykaykaykaykaylazgazgazUaAPazVazVaBbaBcaBdaBeaBdaBdaBdaBfaBfaBgaBfaBfaBfaBfaBhaBiaAQaykaykayjayjayjayjayjayjayjayjayjayjayjayjayjayi +ayiayjayjayjayjayjayjayjayjayjayjayjayjaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaymaBjaymaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaywaAGaAGaBkaBkazMazMazMazMaBlazMazMazMaBmaywaykaykaBnaBnaBnaykaykaykaykaylazgazgazUaBoaADaBpaBqaADaBraADaADaADaADaBsaBsaBsaBtaBuaBuaBuaBuaBvaAQaykaykayjayjayjayjayjayjayjayjayjayjayjayjayjayi +ayiayjayjayjayjayjayjayjayjayjayjayjayjaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaymaBwaymaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaywaBxaBkaBkazMazMazMazMazMaByaBzaBAaBBaAMaywaykaykaBnaBCaBnaykaykaykaykaylazgazgazgaANaBDaBEaBFaBGaBHaylaylaylaylaAQaBIaBJaBKaBLaBMaBNaBuaBvaAQaykaykayjayjayjayjayjayjayjayjayjayjayjayjayjayi +ayiayjayjayjayjayjayjayjayjayjayjaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaymaymaymaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaywaywaywaBOaBPaBQaBPaBRaywaBSaBnaBnaBTaBUaBnaBnaBnaBnaBVaBnaBnaBnaBnaBnaBnaBnaBnaBnaBnaBnaBWaBXaBnaBnaBnaBYaBYaBYaAQaBZaCaaCbaCcaCdaCeaBuaBvaAQaykaykayjayjayjayjayjayjayjayjayjayjayjayjayjayi +ayiayjayjayjayjayjayjayjayjayjayjaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaywaCfaCgaChaChaCiaywaCjaBnaCkaClaCmaCnaCoaCpaCqaCraCsaCtaCuaCvaCwaCxaCyaCzaCAaCBaCCaCDaCEaCFaCGaBnaykaBYaBYaAQaCHaCIaCJaCKaCLaCMaBuaBvaAQaykaykayjayjayjayjayjayjayjayjayjayjayjayjayjayi +ayiayjayjayjayjayjayjayjayjayjayjaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaywaywaywaywaywaywaywaCNaBnaCOaCPaCQaCRaCSaCTaCTaCTaCTaCTaCTaCTaCTaCTaCTaCTaCTaCTaCUaCVaCWaCXaCYaBnaykaykaBYaAQaCZaCIaDaaCKaDbaCMaBuaBvaAQaykaykayjayjayjayjayjayjayjayjayjayjayjayjayjayi +ayiayjayjayjayjayjayjayjayjayjayjaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaywaDcaDdaDeaDeaDeaDfaDgaBnaDhaDiaDjaDkaDkaDkaDkaDkaDkaDkaDkaDkaDkaDkaDkaDkaDkaDkaDkaDkaDlaDmaCYaBnaykaykaykaAQaDnaCIaDoaCKaDbaCMaBuaBvaAQaykaykayjayjayjayjayjayjayjayjayjayjayjayjayjayi +ayiayjayjayjayjayjayjayjayjayjayjaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaywaDpaDqaDqaDqaDqaDqaDqaBnaDraDsaDtaDuaDvaDvaDvaDvaDvaDvaDvaDvaDvaDvaDvaDvaDvaDvaDvaDwaDxaDyaCYaBnaykaykaykaAQaDzaDAaDBaDCaDDaCMaBuaBvaAQaykaykayjayjayjayjayjayjayjayjayjayjayjayjayjayi +ayiayjayjayjayjayjayjayjayjayjaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaywaDpaDqaDEaDEaDqaDqaDqaBnaDhaDsaDtaDFaDGaDGaDGaDGaDGaDGaDGaDGaDGaDGaDGaDGaDGaDGaDGaDHaDxaDIaDJaBnaykaykaykaAQaDKaDLaDMaBuaDNaCMaBuaBvaAQaykaykayjayjayjayjayjayjayjayjayjayjayjayjayjayi +ayiayjayjayjayjayjayjayjayjayjayjaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaywaDOaDqaDEaDEaDqaDqaDqaBnaDPaDsaDtaDFaDGaDGaDGaDGaDGaDGaDGaDGaDGaDGaDGaDGaDGaDGaDGaDHaDxaDyaDQaBnaAQaAQaAQaAQaAQaAQaDMaBuaDRaDSaBuaBvaAQaykaykaykaykaykayjayjayjayjayjayjayjayjayjayjayi +ayiayjayjayjayjayjayjayjayjayjayjaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaywaDTaDqaDUaDVaDqaDWaDWaBnaDhaDsaDtaDFaDGaDGaDGaDGaDGaDGaDGaDGaDGaDGaDGaDGaDGaDGaDGaDHaDxaDyaClaDXaDYaDYaDZaEaaDYaEbaEcaEdaEeaBuaBuaBvaAQaykaykaykaykaykayjayjayjayjayjayjayjayjayjayjayi +ayiayjayjayjayjayjayjayjayjayjayjaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaywaDTaEfaEgaDUaEhaDUaDUaBnaEiaDsaDtaDFaDGaDGaDGaDGaDGaDGaDGaDGaDGaDGaDGaDGaDGaDGaDGaDHaDxaDyaEjaBnaAQaAQaAQaAQaAQaAQaEkaElaBfaBfaBfaEmaAQaykaykaykaykaykayjayjayjayjayjayjayjayjayjayjayi +ayiayjayjayjayjayjayjayjayjayjayjaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaywaDTaDqaEnaEoaEpaEqaEqaEraCTaDsaDtaDFaDGaDGaDGaDGaDGaDGaDGaDGaDGaDGaDGaDGaDGaDGaDGaDHaDxaDyaCYaBnaEsaEtaEuaEvaEwaAQaExaEyaAQaAQaAQaAQaAQaAQaAQaykaykaykayjayjayjayjayjayjayjayjayjayjayi +ayiayjayjayjayjayjayjayjayjayjayjaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaywaEzaDqaEAaEBaECaEDaEEaEFaEGaEHaEIaDFaDGaDGaDGaDGaDGaDGaDGaDGaDGaDGaDGaDGaDGaDGaDGaDHaDxaDyaEJaBnaEKaELaELaEMaENaAQaEOaBvaEPaEQaAQaERaESaETaAQaykaykaykayjayjayjayjayjayjayjayjayjayjayi +ayiayjayjayjayjayjayjayjayjayjayjayjayjaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaywaEzaDqaDqaDqaDqaDqaEUaBnaEVaDyaEWaDFaDGaDGaDGaDGaDGaDGaDGaDGaDGaDGaDGaDGaDGaDGaDGaDHaDxaDyaEXaBnaEKaELaELaEYaEZaAQaFaaBvaFbaENaAQaELaELaFcaAQaAQaykaykayjayjayjayjayjayjayjayjayjayjayi +ayiayjayjayjayjayjayjayjayjayjayjayjaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaFdaFeaFdaFfaFgaFgaFgaFhaBnaDhaDyaEWaDFaDGaDGaDGaDGaDGaDGaDGaDGaDGaDGaDGaDGaDGaDGaDGaDHaDxaDyaFiaBnaFjaFkaFlaFmaFnaAQaFoaBvaFbaFpaAQaELaELaELaELaAQaykaykayjayjayjayjayjayjayjayjayjayjayi +ayiayjayjayjayjayjayjayjayjayjayjayjaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaFqaFraFsaFtaFuaFvaFwaFxaBnaDhaDyaFyaDGaDGaDGaDGaDGaDGaDGaDGaDGaDGaDGaDGaDGaDGaDGaDGaDGaFzaDyaFAaFBaAQaAQaFCaAQaAQaAQaFDaFEaFFaFGaFHaELaFIaELaFJaAQaykaykayjayjayjayjayjayjayjayjayjayjayi +ayiayjayjayjayjayjayjayjayjayjayjayjaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaFKaFuaFvaFLaFvaFMaFNaFOaFPaFQaFRaFgaFgaFBaDhaDyaFyaDGaDGaDGaDGaDGaDGaDGaDGaDGaDGaDGaDGaDGaDGaDGaDGaDGaFzaFSaFTaFUaFVaFVaFWaFXaFXaFYaFZaBvaAQaAQaAQaAQaAQaAQaAQaAQaykaykayjayjayjayjayjayjayjayjayjayjayi +ayiayjayjayjayjayjayjayjayjayjayjayjaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaGaaFPaFPaFPaGbaGcaGdaGeaFgaFgaGfaFPaFPaGgaGhaGiaFyaDGaDGaDGaDGaDGaDGaDGaDGaDGaDGaDGaDGaDGaDGaDGaDGaDGaFzaGjaGkaBnaBuaBuaBuaBuaBuaAQaGlaBvaAQaGmaGnaGoaGpaAQaykaykaykaykayjayjayjayjayjayjayjayjayjayjayi +ayiayjayjayjayjayjayjayjayjayjayjaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaGqaykaykaykaykaykaykaykaGraGsaykaykaykaBnaDPaGtaEWaDFaDGaDGaDGaDGaDGaDGaDGaDGaDGaDGaDGaDGaDGaDGaDGaDHaDxaGjaEXaBnaGuaAQaAQaAQaAQaAQaGlaBvaAQaAQaAQaGvaAQaAQaykaykayjayjayjayjayjayjayjayjayjayjayjayjayi +ayiayjayjayjayjayjayjayjayjayjayjaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaGqaykaykaykaykaykaykaykaykaykaykaykaykaBnaCOaGtaEWaDFaDGaDGaDGaDGaDGaDGaDGaDGaDGaDGaDGaDGaDGaDGaDGaDHaDxaGjaGwaBnaENaAQaGxaBuaBuaBuaGlaBvaFHaBuaEeaBuaBuaAQaykaykaGyaGyaGyaGyaGyaGyaGyaGyaGyaGyaGyaGyayi +ayiayjayjayjayjayjayjayjayjayjayjaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaGzaykaykaykaGqaykaykaykaykaykaykaykaykaykaykaykaykaBnaDhaGtaEWaDFaDGaDGaDGaDGaDGaDGaDGaDGaDGaDGaDGaDGaDGaDGaDGaDHaDxaGAaCYaBnaFpaAQaGBaGCaGDaGEaGFaGGaAQaAQaAQaAQaBuaAQaykaykaGyaGyaGyaGyaGyaGyaGyaGyaGyaGyaGyaGyayi +ayiayjayjayjayjayjayjayjayjayjayjaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaGHaykaykaykaykaGHaykaykaykaykaykaykaykaykaykaykaykaykaGIaGJaykaykaykaGqaykaykaykaykaykaykaykaykaykaykaBnaBnaBnaGKaGtaEWaDFaDGaDGaDGaDGaDGaDGaDGaDGaDGaDGaDGaDGaDGaDGaDGaDHaDxaCTaGLaBnaENaAQaGBaGMaEdaGNaGOaGPaAQaGQaGRaAQaGSaAQaykaykaGyaGyaGyaGyaGyaGyaGyaGyaGyaGyaGyaGyayi +ayiayjayjayjayjayjayjayjayjayjayjaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaGHaGTaykaGUaykaGHaykaykaykaykaGVaGWaGWaGWaGXaGXaFgaFgaFgaFgaGYaGZaGZaHaaykaykaykaykaykaykaykaykaykaykaBnaBCaHbaHcaGtaEWaDFaDGaDGaDGaDGaDGaDGaDGaDGaDGaDGaDGaDGaDGaDGaDGaDHaDxaHdaCYaBnaHeaAQaHfaGMaBuaHgaHhaHiaAQaHjaHkaAQaHlaAQaykaykaGyaGyaGyaGyaGyaGyaGyaGyaGyaGyaGyaGyayi +ayiayjayjayjayjayjayjayjayjaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaGHaHmaHnaHnaHoaGHaykaykaykaykaHpaHqaykaykaykaykaykaykaykaykaGqaykaykaykaykaykaykaykaykaykaykaykaykaykaBnaBnaBnaHraGtaEWaDFaDGaDGaDGaDGaDGaDGaDGaDGaDGaDGaDGaDGaDGaDGaDGaDHaDxaHsaEXaBnaENaAQaHtaGMaBuaHuaHvaHwaAQaHxaHyaAQaBuaAQaykaykaGyaGyaGyaGyaGyaGyaGyaGyaGyaGyaGyaGyayi +ayiayjayjayjayjayjayjayjayjaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaGHaHzaHAaHnaHBaGHaykaykaykaykaykaGXaykaykaykaykaykaykaykaykaHCaHDaHDaHEaHEaHEaHEaHEaHEaBnaykaykaykaykaykaykaBnaDhaGtaEWaDFaDGaDGaDGaDGaDGaDGaDGaDGaDGaDGaDGaDGaDGaDGaDGaDHaDxaHsaCYaBnaENaAQaGBaGMaBuaHFaEyaBuaAQaHxaHxaAQaBuaAQaykaykaGyaGyaGyaGyaGyaGyaGyaGyaGyaGyaGyaGyayi +ayiayjayjayjayjayjayjayjayjayjaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaGHaHGaHHaHIaHJaGHaykaykaykaykaykaGWaykaykaykaHKaHKaHKaHKaHLaHMaHNaHOaHPaHPaHPaHPaHPaHPaBnaBnaBnaykaykaykaykaBnaDhaGtaEWaDFaDGaDGaDGaDGaDGaDGaDGaDGaDGaDGaDGaDGaDGaDGaDGaDHaDxaHsaCYaBnaHQaHRaHSaHTaFXaHUaHVaBuaAQaAQaAQaAQaBuaAQaykaykaGyaGyaGyaGyaGyaGyaGyaGyaGyaGyaGyaGyayi +ayiayjayjayjayjayjayjayjayjaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaGHaHzaHWaHXaHYaGHaykaykaykaykaykaGWaykaykaykaHKaHZaIaaIbaIcaIdaIeaIfaHPaIgaIgaIgaIgaHPaIhaIiaIjaBnaBnaBnaBnaBnaDhaGtaEWaIkaIlaIlaIlaIlaIlaIlaIlaIlaIlaIlaIlaIlaIlaIlaIlaImaDxaHsaFAaBnaAQaAQaAQaAQaAQaAQaInaBuaFHaBuaBuaBuaBuaAQaykaykaGyaGyaGyaGyaGyaGyaGyaGyaGyaGyaGyaGyayi +ayiayjayjayjayjayjayjayjayjaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaGHaHzaHnaHnaHBaFdaFdaFdaFdaFdaFdaHqaFdaykaykaHKaIoaIpaIqaHKaIraHNaIsaHPaIgaIgaIgaIgaIgaCTaItaIhaIuaIvaIwaIxaIyaIzaGtaIAaIBaIBaIBaIBaIBaIBaIBaIBaIBaIBaIBaIBaIBaIBaIBaIBaIBaICaHsaCTaIDaIEaIFaIGaIHaBuaIIaInaBuaAQaAQaAQaAQaAQaAQaykaykaykaykaykaGyaGyaGyaGyaGyaGyaGyaGyaGyayi +ayiayjayjayjayjayjayjayjayjayjaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaGHaIJaHnaHIaIKaFdaILaHqaGWaGWaGWaIMaFdaykaykaHKaINaIOaIPaIQaIRaISaITaHPaIgaIgaIgaIgaIgaCTaCTaCTaCTaCTaCTaCTaCPaIUaIVaIWaIXaIXaIXaIXaIXaIXaIXaIXaIXaIXaIXaIXaIXaIXaIXaIXaIYaIZaJaaIZaJbaJcaJcaJdaJcaJcaJeaJfaBuaAQaykaykaykaykaykaykaykaykaykaykaGyaGyaGyaGyaGyaGyaGyaGyaGyayi +ayiayjayjayjayjayjayjayjayjayjaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaGHaHzaJgaHnaJhaJiaILaFdaFdaFdaFdaFdaFdaJjaJjaJjaJjaJjaJkaJkaJlaJmaJnaHPaIgaIgaIgaIgaHPaCTaJoaJpaJqaJqaJqaJqaJraJsaGAaDsaJtaJuaJpaJqaJqaJvaJqaJwaJxaJyaJzaJAaJBaJqaJqaJraJCaJDaJqaJEaBnaAQaAQaAQaAQaAQaAQaJFaBuaAQaykaykaykaykaykaykaykaykaykaykaGyaGyaGyaGyaGyaGyaGyaGyaGyayi +ayiayjayjayjayjayjayjayjayjayjaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaGHaHzaHnaHnaJGaJHaJHaJHaJHaJHaJjaJjaJjaJjaJjaJjaJjaJjaJkaJIaJJaJmaJKaHPaHPaHPaHPaHPaHPaJqaJLaIjaBnaBnaJMaJMaJMaJNaJOaJPaJMaJMaJQaJQaJQaJQaJQaJQaJQaJQaJRaJSaJSaJSaJSaJSaJTaJSaJUaJSaJSaJVaJWaBuaBuaJXaAQaJFaBuaAQaykaykaykaykaykaykaykaykaykaGyaGyaGyaGyaGyaGyaGyaGyaGyaGyayi +ayiayjayjayjayjayjayjayjayjayjaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaGHaJYaHnaHnaHBaJHaJZaKaaKbaJHaKcaKdaKeaKfaKgaKeaKhaKiaJkaKjaKkaJmaKlaKmaKmaKmaKmaKnaHEaBnaBnaBnaKoaKoaJMaKpaKqaKraKsaKtaKuaKvaKwaKxaKyaKzaKAaKBaKCaJQaBCaJSaKDaKEaKFaKGaKHaKIaKJaKKaJSaKLaKMaBuaEeaBuaKNaJFaBuaAQaykaykaykaykaykaykaykaykaykaGyaGyaGyaGyaGyaGyaGyaGyaGyaGyayi +ayiayjayjayjayjayjayjayjayjayjaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaGHaKOaKPaHnaHBaJHaKQaKRaKSaJHaKTaKUaKVaKWaKXaKVaKYaKZaJkaLaaKkaJmaJmaJmaJmaJmaJmaLbaLcaFdaykaykaykaykaJMaLdaLeaLfaLgaLhaLiaLjaLkaLlaLmaLmaLlaLnaLoaJQaBnaJSaLpaLqaLraLraLsaLraLraLtaJSaLuaKMaBuaBuaBuaAQaJFaBuaAQaykaykaykaykaykaykaykaykaykaGyaGyaGyaGyaGyaGyaGyaGyaGyaGyayi +ayiayjayjayjayjayjayjayjayjaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaGHaKOaHnaJgaHBaJHaLvaLwaLxaJHaLyaLzaLAaLAaLAaLAaLzaLBaJkaLCaLDaLEaLFaLGaLHaLIaJmaLJaLKaLLaykaykaykaykaJMaLdaLMaLNaLOaLPaLQaLRaLkaLSaLTaLUaLVaLnaLWaJQaLXaJSaLYaLraLraLraLZaMaaMaaMbaJSaMcaKMaEdaBuaMdaAQaJFaBuaAQaykaykaykaykaykaykaykaykaGyaGyaGyaGyaGyaGyaGyaGyaGyaGyaGyayi +ayiayjayjayjayjayjayjayjayjaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaGHaHzaHnaHnaMeaJHaMfaMgaMhaMiaKVaMjaMkaMlaMlaMmaMnaKVaMoaMpaMqaMpaMraMsaMsaMtaJmaMuaMvaFdaykaykaykaykaJMaMwaLiaMxaMyaMzaLQaMAaKwaMBaLTaLTaLVaLnaMCaJQaMDaJSaMEaMFaMFaMGaMHaMIaLraMJaJSaLuaMKaEdaEdaMLaMLaMMaMNaMLaMLaykaykaykaykaykaykaykaykaGyaGyaGyaGyaGyaGyaGyaGyaGyaGyayi +ayiayjayjayjayjayjayjayjayjayjaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaGHaMOaHIaHnaHBaJHaMPaMQaMRaMSaMTaLAaMUaMVaMWaMmaLzaMXaMYaMZaNaaNbaNcaNdaMsaNeaJmaNfaNgaFdaykaykaykaykaJMaNhaNiaNjaLiaNkaLiaNlaLkaNmaNnaNnaLlaNoaNpaJQaMDaJSaJSaJSaJSaJSaJSaJSaNqaJSaJSaNraNsaBuaBuaMLaNtaNuaNvaNwaMLaykaykaykaykaykaykaykaykaGyaGyaGyaGyaGyaGyaGyaGyaGyaGyayi +ayiayjayjayjayjayjayjayjayjayjaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaGHaHzaNxaHXaHYaJHaNyaMQaNzaNAaNBaNCaLAaMVaMWaMmaLzaNDaNEaNFaNGaNHaNIaNHaNJaNKaJmaNLaNMaFdaykaykaykaykaJMaNhaNNaNOaNPaNQaNRaNSaNTaNUaNVaNWaNXaNYaNZaJQaOaaOaaOaaObaMDaMDaMDaMDaMDaOcaMLaMLaMLaMLaMLaMLaOdaOeaOfaOgaMLaykaykaykaykaykaykaykaykaGyaGyaGyaGyaGyaGyaGyaGyaGyaGyayi +ayiayjayjayjayjayjayjayjayjayjayjaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaGHaOhaJgaHnaHBaJHaOiaOjaOkaJHaOlaOmaOnaOoaOpaOqaLzaOraJkaOsaOtaOuaOvaOwaOxaOyaJmaOzaOAaFdaOBaOBaOBaOBaJMaNhaOCaODaOEaOFaOGaOHaJQaOIaOJaOKaOLaOMaONaJQagiagiagiagiaMLaMLaMLaMLaMLaOOaOPaMLaOQaORaOSaOSaOTaOUaOfaOVaMLaykaykaykaykaykaykaykaGyaGyaGyaGyaGyaGyaGyaGyaGyaGyaGyayi +ayiayjayjayjayjayjayjayjayjayjayjaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaGHaOWaHnaHXaOXaJHaOYaMRaOZaJHaPaaPbaPcaPdaPdaPdaPeaPfaJkaPgaOtaPhaPiaPjaOxaPkaJmaPlaOBaOBaOBaPmaOBaOBaOBaOBaOBaPnaPoaPpaOBaOBaPqaPraPsaPtaPqaPqaPqaPqaPuagJaPvagiaykaykaykaykaMLaOaaObaMLaPwaPxaPyaMDaPzaPAaPBaOVaMLaykaykaykaykaykaykaykaGyaGyaGyaGyaGyaGyaGyaGyaGyaGyaGyayi +ayiayjayjayjayjayjayjayjayjayjayjayjayjaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaGHaHzaHnaHnaPCaJHaPDaPEaPFaJHaPGaPHaPIaPJaPKaPLaPIaPMaJkaPNaPOaPPaPQaPRaPSaPTaJmaPUaPVaPWaPXaPYaPZaQaaQbaQcaQdaQeaQfaQgaQhaQiaPqaQjaQkaQlaQmaQnaQoaQpaQqaQraQsagiaykaykaykaykaMLaOaaOOaQtaPwaQuaQvaQwaQxaPAaOfaOVaMLaykaykaykaykaykaykaykaGyaGyaGyaGyaGyaGyaGyaGyaGyaGyaGyayi +ayiayjayjayjayjayjayjayjayjayjayjayjayjaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaGHaQyaHnaHnaQzaJHaQAaQBaQCaJHaJjaQDaJjaJjaJjaJjaJjaJjaJkaQEaQFaQGaQHaQIaQJaQKaJmaQLaQMaQNaQOaQPaQQaQRaQSaQTaQUaQVaQWaQXaQYaQZaPsaRaaRaaRaaRaaRaaRbaPqahpaRcahragiaykaykaykaykaMLaRdaReaMLaPwaQuaRfaRgaRgaRhaOfaOVaMLaykaykaykaykaykaykaykayjayjayjayjayjayjayjayjayjayjayjayi +ayiayjayjayjayjayjayjayjayjayjayjayjaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaGHaHzaHnaHnaQzaJHaJHaJHaJHaJHaJjaRiaRjaJjaJjaJjaJjaJjaJkaRkaRkaRlaRmaRlaRkaRkaRkaRnaRoaOBaOBaRpaRpaRpaRpaRpaRqaRraRsaRtaQYaRuaPsaRvaRwaRxaRyaRwaRzaPqagiagiagiagiaMLaMLaMLaMLaMLaRdaOfaMLaRAaRBaRCaOfaPBaOfaOfaOVaMLaykaykaykaykaykaykaykayjayjayjayjayjayjayjayjayjayjayjayi +ayiayjayjayjayjayjayjayjayjayjayjayjaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaGHaHzaHnaHnaRDaGHaREauzaRFaRGaRHaRIaRJaGHaykaykaykaykaykaRkaRKaRLaRMaRNaROaRPaRkaRQaRRaOBaRSaRpaRTaRUaRVaRpaRpaRpaRWaRtaQYaRXaPqaRYaRZaSaaSbaScaSdaPqaSeaSfaSgaShaShaSiaShaRdaRdaRdaSjaMLaSkaSlaSmaOfaSnaSoaSpaSqaMLaykaykaykaykaykaykaykayjayjayjayjayjayjayjayjayjayjayjayi +ayiayjayjayjayjayjayjayjayjayjayjayjaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaGHaHzaHIaJgaHnaGHaSraGHaGHaGHaGHaSsaStaGHaykaykaykaykaykaRkaSuaSvaSwaSxaSyaSzaRkaSAaSBaOBaSCaRpaSDaSEaSFaSGaSHaRpaSIaSJaSKaSLaPqaPqaPsaPsaPsaPsaPqaPqaSMaSMaSMaSMaSMaSMaMLaMLaMLaMLaMLaMLaMLaMLaSNaSOaSPaSQaSRaMLaMLaykaykaykaykaykaykaykayjayjayjayjayjayjayjayjayjayjayjayi +ayiayjayjayjayjayjayjayjayjayjayjayjayjayjayjaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaGHaSSaHnaHnaSTaGHaGHaGHaykaykaGHaSsaStaGHaykaykaykaykaykaRkaSUaSVaSWaSXaSYaSZaRkaTaaTbaOBaSCaRpaTcaTdaTeaTfaTgaThaTiaTjaTkaTlaTmaTnaToaToaToaToaToaTpaSMaTqaTraTsaTsaSMaykaykaykaykaykaykaykaMLaTtaMNaMLaMLaMLaMLaykaykaykaykaykaykayjayjayjayjayjayjayjayjayjayjayjayjayjayi +ayiayjayjayjayjayjayjayjayjayjayjayjayjayjayjaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaGHaTuaTvaTwaTwaGHaykaykaykaykaGHaSsaStaGHaykaykaykaykaykaRkaTxaTyaTzaTAaTBaTCaRkaTDaTEaOBaSCaRpaTFaTGaTHaTIaTJaRpaTKaTLaQYaTMaRraTNaRraRraRraRraTOaTPaTQaTRaTSaTTaTUaSMaykaykaykaykaykaykaykaMLaTVaOfaMLaykaykaykaykaykaykaykaykaykayjayjayjayjayjayjayjayjayjayjayjayjayjayi +ayiayjayjayjayjayjayjayjayjayjayjayjayjayjayjaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaGHaGHaGHaGHaGHaGHaykaykaykaykaGHaSsaStaTWaTWaTWaTWaTWaTWaRkaRkaRkaRkaRkaRkaRkaRkaTXaTYaTZaTZaTZaTZaTZaTZaTZaTZaTZaTZaUaaUbaUcaTZaTZaTZaTZaTZaTZaTZaOBaSMaUdaTSaTTaUeaSMaykaykaykaykaykaykaykaMLaTVaMLaMLaykaykaykaykaykaykaykaykaykayjayjayjayjayjayjayjayjayjayjayjayjayjayi +ayiayjayjayjayjayjayjayjayjayjayjayjayjayjayjaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaGHaSsaStaTWaUfaUgaUhaUiaUjaTWaykaTZaUkaUlaUmaUnaUoaUpaUqaUraUsaUtaUuaUvaUwaUxaUyaUzaUAaUBaUCaUDaUEaUFaUGaUHaUIaUJaTZaykaSMaUKaTSaULaUMaSMaykaykaykaykaykaykaykaMLaTVaMLaUNaykaykaykaykaykaykaykaykaykayjayjayjayjayjayjayjayjayjayjayjayjayjayi +ayiayjayjayjayjayjayjayjayjayjayjayjayjayjayjaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaGHaUOaUPaTWaUQaURaUSaUSaUTaTWaykaTZaUUaUVaUWaUWaUXaUYaUZaVaaVbaVcaVcaVcaVcaVdaVaaVaaVcaVdaVeaVfaVfaUWaVgaVhaVgaViaTZaykaSMaSMaVjaVkaSMaSMaykaykaykaykaykaykaykaMLaTVaMLaUNaykaykaykaykaykaykaykaykaykayjayjayjayjayjayjayjayjayjayjayjayjayjayi +ayiayjayjayjayjayjayjayjayjayjayjayjayjayjaykaykaykaykaykaykayjayjayjayjaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaGHaVlaVmaVnaVoaVpaVqaUSaVraTWaykaTZaVsaVtaVuaVvaVwaVvaVxaVyaVzaVAaVAaVAaVBaVCaVDaVEaUWaVFaVGaVCaUCaUWaVHaVHaVDaVIaTZaykaykaSMaSMaSMaSMaykaykaykaykaykaykaykaykaMLaTVaMLaMLaykaykaykaykaykaykaykaykaykayjayjayjayjayjayjayjayjayjayjayjayjayjayi +ayiayjayjayjayjayjayjayjayjayjayjayjayjayjaykaykaykaykayjayjayjayjayjayjaykaykaykaykayjayjaykaykaykaykaykaykaykaykaykaykaGHaGHaGHaTWaVJaVKaVLaVMaVNaTWaykaTZaVOaVPaVQaVRaVRaVRaVSaVTaVUaVVaVVaVWaVWaVWaVXaVhaUWaUWaVYaVcaVbaVZaWaaWbaWcaWdaTZaykaykaykaykaykaykaykaykaykaykaykaykaykaykaMLaTVaWeaMLaykaykaykaykaykaykaykaykaykayjayjayjayjayjayjayjayjayjayjayjayjayjayi +ayiayjayjayjayjayjayjayjayjayjayjayjayjayjaykaykaykaykayjayjayjayjayjayjaykaykayjaykayjayjayjayjaykaykaykaykaykaykaykaykaykaykaykaTWaTWaTWaTWaTWaTWaTWaykaTZaWfaVPaWgaWhaWiaWjaWkaUCaWlaUWaWmaWnaWnaWnaWnaWbaVVaVVaVVaVVaVWaWoaWpaWqaWraWsaTZaykaykaykaykaykaykaykaykaykaykaykaykaykaykaMLaWtaQvaMLaykaykaykaykaykaykaykaykaykayjayjayjayjayjayjayjayjayjayjayjayjayjayi +ayiayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaTZaWuaWvaWwaWxaWyaWzaWAaUCaWlaUWaWBaWCaWCaWCaWCaWCaWCaWDaWEaWFaWaaWGaWHaWIaWJaWKaTZaykaykaykaykaykaykaykaykaykaykaykaykaykaykaMLaWtaQvaMLaykaykaykaykaykaykaykaykaykayjayjayjayjayjayjayjayjayjayjayjayjayjayi +ayiayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjaykaykayjayjayjaykaykaykaykaykaykaykaykaykaykaTZaWLaWMaWAaWNaWOaWwaWHaWPaWQaWRaWSaWTaWTaWTaWTaWTaWTaWUaWVaWWaVgaWXaWYaWZaXaaWKaTZaykaykaykaykaykaykaykaykaykaykaykaykaykaykaMLaXbaXcaMLaykaykaykaykaykaykaykaykaykayjayjayjayjayjayjayjayjayjayjayjayjayjayi +ayiayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjaykaykayjayjayjaykaykaykaykaykaykaykaykaykaykaTZaWLaXdaXeaXfaXgaXhaXhaXiaXjaXkaWSaWTaWTaWTaWTaWTaWTaXlaXmaXnaXoaUCaXpaWAaXqaXraTZaykaykaykaykaykaykaykaykaykaykaykaykaykaykaMLaXsaOfaMLaykaykaykaykaykaykaykaykaykaykayjayjayjayjayjayjayjayjayjayjayjayjayi +ayiayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjaXtayjayjaykaykaykaykaykaykaykaTZaWLaWMaWAaWNaWOaXuaWHaXvaXwaXkaWSaWTaWTaWTaWTaWTaWTaWUaUCaXnaXoaUCaUWaWAaXxaXyaTZaykaykaykaykaykaykaykaykaykaykaykaykaykaykaMLaXzaXAaMLaykaykaykaykaykaykaykaykaykaykayjayjayjayjayjayjayjayjayjayjayjayjayi +ayiayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjaXtayjayjaykaykaykaykaykaykaykaTZaXBaXCaXuaXDaXEaXFaWAaUCaXGaWBaWTaWTaWTaWTaWTaWTaWTaWUaUCaXnaXHaXIaXJaWZaXKaXLaTZaykaykaykaykaykaykaykaykaykaykaykaykaykaMLaMLaMLaTVaMLaykaykaykaykaykaykaykaykaykaykayjayjayjayjayjayjayjayjayjayjayjayjayi +ayiayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjaXtayjayjaykaykaykaykaykaykaykaTZaWfaWyaXMaXNaXOaXPaXQaUCaXRaXSaXTaXTaXTaXTaXTaXTaXTaXUaUCaXnaUWaXVaWHaXWaXXaXLaTZaykaykaykaykaykaykaMLaMLaMLaMLaMLaMLaMLaMLaXYaMLaTVaMLaykaykaykaykaykaykaykaykayjayjayjayjayjayjayjayjayjayjayjayjayjayjayi +ayiayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjaXtayjayjaykaykaykaykaykaykaykaTZaXZaWnaYaaYbaYbaYbaVSaVYaUZaVcaVcaVcaVcaVcaVcaVcaVcaVcaYcaYdaYeaYfaYgaYhaYiaYjaTZaykaykaykaykaykaykaMLaYkaOfaYlaOfaOfaOfaMLaYmaMLaTVaMLaykaykaykaykaykaykaykaykayjayjayjayjayjayjayjayjayjayjayjayjayjayjayi +ayiayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjaXtayjayjaykaykaykaykaykaykaykaTZaYnaYoaXqaYpaYpaYpaYqaUWaXRaUWaYraWRaWRaWRaWRaWRaWRaYsaVEaYtaYuaYvaYwaYxaYoaYyaTZaykaykaykaykaykaykaMLaOfaYzaSoaYAaYBaOfaMLaYmaMLaTVaMLaykaykaykaykaykaykaykaykayjayjayjayjayjayjayjayjayjayjayjayjayjayjayi +ayiayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjaXtayjayjayjayjaykaykaykaykaykaTZaYCaUWaUWaUWaUWaUWaUWaUWaXRaUWaYDaYEaYFaYGaYHaYIaYJaYKaYLaYMaTZaTZaYNaTZaTZaTZaTZaMLaMLaMLaMLaMLaMLaMLaYOaYPaYQaYQaYRaYSaMLaMLaMLaTVaMLaykaykaykaykaykaykaykaykayjayjayjayjayjayjayjayjayjayjayjayjayjayjayi +ayiayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjaXtayjayjayjayjaykaykaykaykaykaTZaYCaUWaUWaUWaUWaUWaUWaUWaYTaYUaYDaYEaYFaYGaYHaYIaYJaYKaYLaYVaTZaYWaYXaYYaYZaYZaZaaZbaYZaZcaZdaZeaZfaZfaZgaZhaZiaZjaZkaZlaZfaZfaZfaZmaMLaykaykaykaykaykaykaykaykayjayjayjayjayjayjayjayjayjayjayjayjayjayjayi +ayiayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjaXtayjayjayjayjaykaykaykaykaykaTZaZnaZoaZpaZqaYuaZraZsaZtaZuaZvaZwaYEaYFaYGaZxaYIaYJaYKaZyaZzaTZaOfaZAaOfaOfaOfaOfaOfaZBaZCaOfaOfaMLaMLaMLaMLaMLaMLaMLaMLaMLaMLaMLaMLaMLaykaykaykaykaykaykaykaykayjayjayjayjayjayjayjayjayjayjayjayjayjayjayi +ayiayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjaXtayjayjayjayjayjayjaykaykaykaTZaTZaTZaTZaTZaTZaTZaTZaTZaTZaTZaTZaTZaTZaTZaTZaTZaTZaTZaTZaTZaMLaOfaZDaMLaMLaMLaMLaZEaZFaZGaZHaZHaZHaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayi +ayiayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjaXtayjayjayjayjayjayjaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaMLaOfaZIaMLaykaykaykaZHaZJaZKaZLaZMaZHaykaykaykaZNaZNaZNaZNaZNaZNaZNaZNaykaykaykaykaykaykaykaykayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayi +ayiayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjaXtayjayjayjayjayjayjayjayjaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaMLaOfaZIaMLaykaykaykaZHaZOaZPaZQaZRaZSaZTaZTaZTaZNaZUaZVaZWaZXaZYaZZaZNaykaykaykaykaykaykaykaykayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayi +ayiayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjaXtayjayjayjayjayjayjayjayjaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaMLaOfaZIaZTaZTaZTaZTaZTaZTaZTbaababaZTbacbadbaeaZNbafbagbahbaibajbakaZNaykaykaykaykaykaykaykaykayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayi +ayiayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjaXtayjayjayjayjayjayjayjayjayjaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaMLaOfbalbambanbaobapaZTbaqbarbasbatbaubavbavbawaZNbaxbaybazbaAbaBbaCaZNaykaykaykaykaykaykaykaykayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayi +ayiayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjaXtayjayjayjayjayjayjayjayjayjaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaMLbaDbaEbaFbaGbaHbaIbaJbaKbaIbaLbaMbaNbaObaPbaQbaRbaSbaTbaUbaVbaWbaXbaXbaXbaXaykaykaykaykaykaykaykaykayjayjayjayjayjayjayjayjayjayjayjayjayjayi +ayiayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjaXtayjayjayjayjayjayjayjayjayjaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaMLbaYbaZbabbbabbbbbcaZTbbdbavbbebavbbfbbgbbhbbiaZNbbjbbkbblbazbbmbbnbbobbpbaXaykaykaykaykaykaykaykaykayjayjayjayjayjayjayjayjayjayjayjayjayjayi +ayiayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjaXtayjayjayjayjayjayjayjayjayjaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaMLaMLaMLaZTaZTaZTaZTaZTbbqbbrbbsbbtbaXbaXbaXbaXbaXbbubbvbbwbbxbbybaXbaXbbzbaXbaXaykaykaykaykaykaykaykayjayjayjayjayjayjayjayjayjayjayjayjayjayi +ayiayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjbbAbbBbbBbbBbbBbbBbbBbbBbbBbbBaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaZTbbCbbCbbDbbCbaXbbEbbEbbEbbFbbGbbHbbIbbJbbKbbLbbMbbNbbObaXaykaykaykaykaykaykaykayjayjayjayjayjayjayjayjayjayjayjayjayjayi +ayiayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaZTbbPbbQbbRbbSbaXbbEbbNbbNbbNbbTbbNbbUbbNbbTbbNbbNbbNbbEbaXaykaykaykaykaykaykaykayjayjayjayjayjayjayjayjayjayjayjayjayjayi +ayiayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaZTbbVbbWbbXbbYbaXbbEbbZbcabcbbbTbbNbbEbbNbbTbbNbccbcdbbEbaXaykaykaykaykaykaykaykayjayjayjayjayjayjayjayjayjayjayjayjayjayi +ayiayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaZTbcebcfbcfbcgbaXbchbbNbbNbbNbbTbbNbcibbNbbTbbNbbNbbNbcjbaXaykaykaykaykaykaykaykayjayjayjayjayjayjayjayjayjayjayjayjayjayi +ayiayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaZTbckbclbcmaZTbaXbcnbcobcpbcqbbKbcrbcsbctbbKbcubcvbcwbcxbaXaykaykaykaykaykaykaykayjayjayjayjayjayjayjayjayjayjayjayjayjayi +ayiayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaZTaZTaZTaZTaZTbaXbbEbcybczbbNbbTbbNbbEbbNbbTbbNbcAbcBbbEbaXaykaykaykaykaykaykaykayjayjayjayjayjayjayjayjayjayjayjayjayjayi +ayiayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykbaXbbEbbNbbNbbNbbTbbNbcCbbNbbTbbNbbNbbNbbEbaXaykaykaykaykaykayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayi +ayiayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykbaXbbEbcDbcEbcFbcGbbNbcHbbNbcIbcJbcKbcLbbEbaXaykaykaykaykaykaykayjayjayjayjayjayjayjayjayjayjayjayjayjayjayi +ayiayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykbaXbbJbcMbbEbcNbbEbbEbcObbEbbEbcPbbEbcMbbJbaXaykaykaykaykaykayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayi +ayiayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykbaXbaXbaXbaXbaXbaXbaXbaXbaXbaXbaXbaXbaXbaXbaXaykaykaykaykayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayi +ayiayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjaykaykaykaykaykaykaykaykaykaykaykayjayjayjayjaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayi +ayiayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjaykaykaykaykaykaykaykaykaykaykayjayjayjayjaykaykaykaykaykayjayjayjaykayjayjaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykaykayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayi +ayiayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjaykaykaykaykaykaykayjaykaykayjayjayjayjayjayjaykaykaykaykayjayjayjayjayjayjaykaykaykaykayjayjayjaykaykaykaykayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayi +ayiayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjaykayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjaykayjayjayjaykaykayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayi +ayiayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayi +ayiayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayi +ayiayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayi +ayiayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayi +ayiayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayi +ayiayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayi +ayiayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayjayi +ayiayiayiayiayiayiayiayiayiayiayiayiayiayiayiayiayiayiayiayiayiayiayiayiayiayiayiayiayiayiayiayiayiayiayiayiayiayiayiayiayiayiayiayiayiayiayiayiayiayiayiayiayiayiayiayiayiayiayiayiayiayiayiayiayiayiayiayiayiayiayiayiayiayiayiayiayiayiayiayiayiayiayiayiayiayiayiayiayiayiayiayiayiayiayiayiayiayiayiayiayiayiayiayiayiayiayiayiayiayiayiayiayiayiayiayiayiayiayiayi "} (1,1,3) = {" -bcCbcCbcCbcCbcCbcCbcCbcCbcCbcCbcCbcCbcCbcCbcCbcCbcCbcCbcCbcCbcCbcCbcCbcCbcCbcCbcCbcCbcCbcCbcCbcCbcCbcCbcCbcCbcCbcCbcCbcCbcCbcCbcCbcCbcCbcCbcCbcCbcCbcCbcCbcCbcCbcCbcCbcCbcCbcCbcCbcCbcCbcCbcCbcCbcCbcCbcCbcCbcCbcCbcCbcCbcCbcCbcCbcCbcCbcCbcCbcCbcCbcCbcCbcCbcCbcCbcCbcCbcCbcCbcCbcCbcCbcCbcCbcCbcCbcCbcCbcCbcCbcCbcCbcCbcCbcCbcCbcCbcCbcCbcCbcCbcCbcCbcCbcCbcCbcCbcCbcC -bcCbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcC -bcCbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcC -bcCbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcC -bcCbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcC -bcCbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcC -bcCbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcC -bcCbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcC -bcCbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcEbcDbcEbcEbcEbcDbcDbcDbcDbcDbcEbcDbcEbcDbcDbcDbcEbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcEbcEbcEbcEbcEbcEbcEbcDbcDbcDbcDbcDbcDbcDbcDbcDbcEbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcC -bcCbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcDbcEbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcDbcDbcDbcDbcEbcEbcDbcDbcDbcEbcEbcDbcDbcDbcDbcDbcEbcEbcEbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcC -bcCbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcDbcEbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcEbcEbcEbcDbcDbcDbcDbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcDbcDbcDbcEbcEbcEbcEbcEbcEbcEbcDbcDbcDbcDbcDbcEbcEbcEbcEbcEbcEbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcC -bcCbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcDbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcDbcDbcEbcEbcEbcEbcEbcEbcEbcEbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcC -bcCbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcFbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcC -bcCbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcGbcGbcHbcHbcHbcHbcGbcIbcJbcJbcIbcJbcJbcIbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcC -bcCbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcGbcKbcLbcMbcNbcObcPbcIbcQbcRbcSbcTbcUbcVbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcC -bcCbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcGbcWbcXbcYbcZbcZbdabcIbdbbdcbddbdebdfbcVbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcC -bcCbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcGbdgbdhbdibdjbcIbcIbcIbdkbdlbdmbdnbdobcIbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcC -bcCbcDbcDbcDbcDbcDbcDbcDbcDbcDbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcGbdpbdqbdibdibcIbdrbdsbdtbdubdvbdvbdwbcVbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcFbcEbcEbcEbcEbcEbcEbcEbcEbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcC -bcCbcDbcDbcDbcDbcDbcDbcDbcDbcDbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcFbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcGbdxbdybcZbdzbcIbdAbdBbdCbdlbdDbdEbdFbcVbcEbcEbcEbcEbcEbcEbdGbdHbdHbdGbdHbdHbdGbdHbdHbdGbcEbcEbcEbcEbcEbcEbcEbcEbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcC -bcCbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbdIaycaycaycaycaycaycaycaycaycaycaycbdJbdJbdJbdJbdJbdJbdJbdKbdKbdLbdLbdLbdLbdMbdMbdNbdNbdNbdNbdMbdMbdMbdObdPbcGbcGbcIbdQbdBbdCbdubdvbdvbdRbcIbcEbcEbcEbcEbcEbcEbdSbdTbdUbdGbdTbdVbdGbdTbdUbdGbcEbcEbcEbcEbcEbcEbcEbcEbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcC -bcCbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEaycbdWbdWaycbdXbdYbdZbeabebbecbedbdJbeebefbegbehbeibdJbejbekbelbembelbenbdMbeobepbeqberbesbetbeubdMbevbewbexbeybezbeAbeBbeCbeDbeEbeFbeGbcVbcEbcEbcEbcEbcEbcEbdSbeHbeIbdGbeHbeIbdGbeHbeIbdGbcEbcEbcEbcEbcEbcEbcEbcEbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcC -bcCbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEaycbdWbdWaycbeJbeKbeLbeMbeNbeObePbdJbeQbeRbeSbeTbeUbeVbeWbeWbeXbeYbeZbeYbfabfbbfcbfdbfebffbffbfgbdMbfhbfibfjbfkbcIbflbdBbfmbfnbfobfpbfqbcVbcEbcEbcEbcEbcEbcEbdGbfrbdGbdGbfsbdGbdGbftbdGbdGbcEbcEbcEbcEbcEbcEbcEbcEbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcC -bcCbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEaycbeKbeKaycbfubeKbeKbfvbeKbeKbfwbdJbfxbeRbfybfzbfAbdJbfBbfCbfDbfEbfFbfGbdMbfHbfIbfJbfebfKbffbfLbdMbfMbfNbfObfPbcIbfQbfRbfSbfTbfUbdCbfVbcIbcEbcEbcEbcEbcEbcEbdSbeHbfWbfXbeHbfYbfZbeHbgabdGbcEbcEbcEbcEbcEbcEbcEbcEbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcC -bcCbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEaycbeKbeKaycbgbbeKbeKbfvbeKbeKbfwbdJbgcbgdbgebgfbggbdJbghbfEbgibfEbfFbgjbdMbgkbfIbfJbglbgmbgmbglbdMbgnbgobcGbcGbcIbcIbcIbgpbgpbgqbgrbcIbcIbcEbcEbcEbcEbcEbcEbdSbgsbgtbgubgubgubgvbgwbgxbdGbcEbcEbcEbcEbcEbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcC -bcCbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEaycbgybgyaycbgzbeKbeKbfvbeKbeKbgAbdJbdJbdJbdJbdJbdJbdJbgBbfEbgibfEbgCbgDbdMbgEbgFbgGbgHbgIbgJbgKbdMbgLbgMbgNbgObgPbgQbgRbgSbgTbgUbgVbgWbgPbcEbcEbcEbcEbcEbcEbdSbgXbgYbeHbgZbhabhbbhcbhdbhebcEbcEbcEbcEbcEbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcC -bcCbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEaycbhfbeKbhgbeKbeKbeKbhhbeKbeKbhibhjbhkbhlbhkbhlbhkbdKbhmbhnbhobfEbfEbhpbdMbdMbhqbhrbhqbhqbhqbdMbdMbhsbhtbhubhvbgPbhwbhxbhybhzbhAbhBbhCbhDbcEbcEbcEbcEbcEbcEbdGbhebhEbhebdGbdGbdGbdGbhebhebcEbcEbcEbcEbcEbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcC -bcCbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEaycbhFbhGbhGbhGbhGbhGbhHbeKbeKbhIbhjbhJbhlbhKbhlbhLbdKbhMbhNbhObfEbfEbhPbhQbhRbhSbhTbhUbhVbhWbhXbhYbhZbcGbhtbiabgPbibbicbidbiebifbhBbigbhDbcEbcEbcEbcEbcEbcEbihbiibijbiibikbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcC -bcCbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEaycaycaycbilbimbimbimbimbinbiobeKbeKbipbhjbiqbirbisbitbisbdKbiubfEbivbiwbiwbiwbixbiybizbiAbiybiBbiCbiDbiEbcGbcGbiFbiGbgPbiHbiIbiIbiIbiIbiJbiKbhDbcEbcEbcEbcEbcEbcEbihbiibijbiibikbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcC -bcCbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcFbcEbcEaycbiLbiMbiNbiObiPbiObiQbiRbiSbiTbiUbiVbhjbiWbiXbiYbiZbjabdKbjbbjcbjcbjcbjdbjebhQbjfbjgbjhbjibjjbjkbjlbiEbjmbcGbjnbjobgPbjpbjqbjqbjrbiIbhBbjsbgPbcEbcEbcEbcEbcEbcEbjtbiibijbjubjtbcEbcEbcEbcEbcFbcEbcEbcEbcEbcEbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcC -bcCbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbjtbjtbjtbjtbjtbjvbjvaycaycaycaycaycaycaycbjwbjxaycaycbhjbhlbjybhlbhlbhlbdKbjzbjzbjzbjzbdKbdKbjAbiEbiEbiEbiEbjBbjCbiEbjDbjEbcGbcGbjFbjGbjHbgPbjIbjIbjJbjKbjLbgPbjtbjMbjMbjMbjMbjtbjtbiibijbiibjNbjNbjNbjNbjNbjNbjNbjNbjNbjNbcEbcEbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcC -bcCbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbjtbjObjPbiibjQbiibiibjRbiibjSbiibjTbjUbjVbjWbjVbjXbjVbjYbjVbjZbiibjQbkabiibkbbkcbkcbkdbjRbjSbjPbkebiibkfbkgbkhbkibkjbkkbklbkmbknbkobjQbiibkpbkqbkrbiibkibkqbksbjTbiibiibiibiibjSbiibiibijbiibjNbktbkubkvbkwbkxbkybkzbkAbjNbcEbcEbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcC -bcCbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbjtbkBbkCbkDbkDbkDbkDbkDbkDbkDbkDbkEbkFbkGbkHbkDbkDbkDbkIbkDbkJbkDbkDbkDbkDbkDbkDbkDbkDbkDbkDbkIbkKbkLbkLbkLbkMbkNbkObkObkObkObkObkPbkObkObkQbkRbkRbkRbkSbkRbkRbkRbkRbkRbkRbkTbkUbkUbkUbkVbkWbjNbkXbkYbkZbkYbkYbkYblablbbjNblcbcEbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcC -bcCbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbjtbldblebiiblfbiibiibiibiibiibiiblgblhbkibiiblibiibiiblebiibiibiibiibiibiibiibiibiibiiblibiiblebljbiibiibiibiiblkbllblmblmblmblmblmblmblmblnblmblmblmblmblmblmblmblmblmbloblpblqblrblrblsbltbjNblubkYblvblwblwblwblxblybjNbcEbcEbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcC -bcCbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEblzblzblzblzblzblzblzblzblAblAblBblCblDblEblzblzblFblFblGblGblGblGblGblFblFblHblHblHblHblIblIblIblIblIblJblKbiiblLblMblNblOblOblOblOblOblOblOblOblOblOblOblOblOblOblOblPblQblpblRbiibiibiibiibjNblSbkYbkYbkYbkYblTblUblVbjNbcEbcEbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcC -bcCbcDbcDbcDbcDbcDbcDbcDbcDbcDbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEblWblXblYblZbmabmbbmcbmdbmebmebmebmfbmgbmhbmibmiblFbmjbmkbmkbmlbmmbmmbmnblFbjtbmobmobjtblIbmpbmqbmrbmsbmtbmubiiblLblMbmvbmwbmwbmwbmwbmwbmwbmwbmwbmwbmwbmwbmwbmwbmwbmwbmxblQblpblRbmybmzbldbjObjNbmAbmBbmCbmDbmEbmFbmGbmHbjNbcEbcEbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcC -bcCbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEblWbmIbmJbmKbmLbmLbmLbmMbmNbmNbmNbmObmPbmQbmRbmRblGbmSbmSbmSbmSbmSbmSbmTblFbcEbcEbcEbcEbmUbmVbmWbmXbmYbmZbnabnbbncblMbmvbmwbmwbmwbmwbmwbmwbmwbmwbmwbmwbmwbmwbmwbmwbmwbmxblQblpbndbjNbjNbjNbjNbjNbjNbnebjNbjNbjNbnebnfbnebjNbjNbcEbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcC -bcCbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEblWbngbnhbnibnjbnjbnkbnkbnkbnkbnkbnlbnmbnnbnobnpbnqbnrbnrbnrbnsbnrbntbnubnvbcEbcEbcEbcEblIblIbnwblIbnxbmtbnybnzbnAblMbmvbmwbmwbmwbmwbmwbmwbmwbmwbmwbmwbmwbmwbmwbmwbmwbmxblQbnBbnCbnDbnEbnFbnGbjNbnHbnIbnJbnKbjNbnLbnMbnNbkAbjNbcEbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcC -bcCbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEblzbnObnhbnPbnQbnQbnRbnRbnRbnRbnRbnSbnTbmQbmRbmRbnUbmSbmSbmSbnVbmSbnWbnXbnvbcEbcEbnYbcEblIbnZbmtboabmtbmtblIbobbnAblMbmvbmwbmwbmwbmwbmwbmwbmwbmwbmwbmwbmwbmwbmwbmwbmwbmxblQbkibocbjNbodboebofbogbohboibojbokbolbokbombonboobjNbcEbcEbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcC -bcCbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbdIblzbopbnhbnPbnQbnQbnRbnRbnRbnRbnRbnSbnTbmQbmRboqblFborbosbosbotboubmSbovblFbcEbcEbcEbcEblIbmtbowblIboxboxblIboybnAblMbmvbmwbmwbmwbmwbmwbmwbmwbmwbmwbmwbmwbmwbmwbmwbmwbmxblQbkibozboAboAboAboBboAboCboDboCboCboCboCboEboEboEboEbcEbcEbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcC -bcCbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEblzboFbnhbnPbnQbnQboGboHboIbnRbnRbnSbnTbmQbmRboJblFboKboLboMboNboObmSboPblFbcEbcEbcEbcEblIboQboRblIboxboxblIboSbnAblMbmvbmwbmwbmwbmwbmwbmwbmwbmwbmwbmwbmwbmwbmwbmwbmwbmxblQbkibiiboTboUboVboWboXboYboZbpabpbbpcboYbpdbpebpfbpgbcEbcEbcEbcEbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcC -bcCbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEblWbngbnhbnPbnQbnQbphbpibpjbnRbnRbnSbnTbmQbmRboqblFblFblFblFbpkbplblGblFblFbjMbjtbhlbhlblIblIblIblIblIblIblIbpmbpnblMbmvbmwbmwbmwbmwbmwbmwbmwbmwbmwbmwbmwbmwbmwbmwbmwbmxblQbkibpobppbpqbprbpsbptboYbpuboZboZbpvboYbpwbpxbpybpgbcEbcEbcEbcEbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcC -bcCbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEblWbpzbpAbnPbnQbnQbnQbnQbnQbnRbnRbnSbnTbmQbmRbmRblAbiibiibjTblkbpBbiibkabpCbkRbpDbhlbpEbisbpFbpGbjtbpHbpIbjtbiibnAblMbmvbmwbmwbmwbmwbmwbmwbmwbmwbmwbmwbmwbmwbmwbmwbmwbmxblQbkibpJbjtbjtbpKbpLbpMboYbpNboZboZbpOboYbpxbpxbpPbpgbcEbcEbcEbcEbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcC -bcCbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEblWbngbpQbnPbnQbnQbnQbnQbnQbnRbnRbnSbpRbpSbpTbpUbpVbkObkObkObpWbpXbkUbkUbpYbiibiibhlbpZbqabqabqbbjtbqcbqdbqebqfbqgbqhbmvbmwbmwbmwbmwbmwbmwbmwbmwbmwbmwbmwbmwbmwbmwbmwbmxbqibqjbkRbqkbqlbqmbqnbqoboYbqpbqqbqrbqsboYbqtbqubpxbpgbcEbcEbcEbcEbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcC -bcCbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEblzbnObpQbqvbqwbqwbqwbqwbqwbqxbqxbqybqzbqAbqBbqCbqDbjVbjVbjVbjVbqEbqFbqfbqGbqHbqIbqJbqKbqLbqLbqMbjtbqNbpIbjtbqOblLbqPbmvbmwbmwbmwbmwbmwbmwbmwbmwbmwbmwbmwbmwbmwbmwbmwbmxbqQbkibltbqRbjtbqSboWbqTboYbqUbqVbqWbqXboYbqYbqZbrabpgbcEbcEbcEbcEbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcC -bcCbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEblzbrbbrcbrdbrdbrdbrdbrdbrdbrdbrdbrdbrebrfbrgbrhblzbjtbmobmobmobjtbjtbiiblkblhbribhlbpEbrjbrkbpGbjtbjtbjtbjtbnzblLbqPbmvbmwbmwbmwbmwbmwbmwbmwbmwbmwbmwbmwbmwbmwbmwbmwbmxbqQbkibrlbppbppbppbrmbppboYboYbrnbroboYboYbrpbrqbrpbrrbcEbcEbcEbcEbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcC -bcCbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEblzbrsbrtbrtbrtbrtbrubrtbrtbrtbrvbrtbrwbrxbrybrzbrAbcEbcEbcEbcEbcEbihbiiblkblhbiibhlbhlbhlbhlbhlbhlbldbrBbjtboyblLbqPbmvbmwbmwbmwbmwbmwbmwbmwbmwbmwbmwbmwbmwbmwbmwbmwbmxbqQbkibiibrCbrDbrEbrFbrGbrHbrrbrIbrJbrKbrLbrMbrNbrObrrbcEbcEbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcC -bcCbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbrPbrQblzblzblzbrQbrQbrQblzblzblzbrQbrQbrQblzblzblzbcEbcEbcEbcEbcEbihbrRblkbrSbjVbrTbjYbrUbrVbjVbjVbjVbjVbrWbjVbrXbrYbmvbmwbmwbmwbmwbmwbmwbmwbmwbmwbmwbmwbmwbmwbmwbmwbmxbrZbkibiibsabsbbrEbscbsdbsebrrbsfbsgbshbshbsibsjbskbrrbcEbcEbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcC -bcCbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbjtbmzbslbkObkObkObsmbkObkObkObkObkObkObsnbkObsobqPbmvbmwbmwbmwbmwbmwbmwbmwbmwbmwbmwbmwbmwbmwbmwbmwbmxbspbsqbkRbsrbssbstbsubsvbsvbswbsxbsybszbsAbsBbsCbsDbsEbcEbcEbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcC -bcCbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbjtbjObiibiibiibiiblebiibiibiibiibiibiibsFbiiblLbqPbmvbmwbmwbmwbmwbmwbmwbmwbmwbmwbmwbmwbmwbmwbmwbmwbmxbsGbkibiibiibiibsHbsIbsJbsJbsKbsLbrJbsMbrrbsNbsCbsObsEbcEbcEbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcC -bcCbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbjtbjtbmobmobjtbjtbjtbmobmobmobmobmobjtbsPbiiblLbqPbmvbmwbmwbmwbmwbmwbmwbmwbmwbmwbmwbmwbmwbmwbmwbmwbmxbsQbsRbkRbkRbsSbstbsubsTbsUbsKbsVbsWbsXbsYbsZbtabtbbsEbcEbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcC -bcCbcDbcDbcDbcDbcDbcDbcDbcDbcDbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcFbcEbcEbcEbtcbtdbtebcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbsPbiiblLbqPbmvbmwbmwbmwbmwbmwbmwbmwbmwbmwbmwbmwbmwbmwbmwbmwbmxbrZbkiblqblrblrbtfbtgbsJbsJbthbsCbrJbsCbsCbsCbsCbtibsEbcEbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcC -bcCbcDbcDbcDbcDbcDbcDbcDbcDbcDbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbtjbtjbtkbtkbtkbtjbtjbtjbtjbtkbtkbtlbtmbtnbtobtobtobtobtobtobtobtobtobtpbtpbtpbsPbsPbiiblLbqPbmvbmwbmwbmwbmwbmwbmwbmwbmwbmwbmwbmwbmwbmwbmwbmwbmxbspbtqbtrbtsbttbstbtubtvbtvbtwbtxbtybsCbsCbsCbsCbtzbsEbcEbcEbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcC -bcCbcDbcDbcDbcDbcDbcDbcDbcDbcDbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbtjbtAbtBbtCbtBbtDbtEbtFbtGbtHbtBbtIbtmbtJbtKbtKbtKbtKbtKbtKbsPbtLbtMbtNbtObtNbtNbtNbiiblLbqPbmvbmwbmwbmwbmwbmwbmwbmwbmwbmwbmwbmwbmwbmwbmwbmwbmxbsGbkiblRbsabsbbrEbtPbtQbtRbrrbtSbrrbtTbtUbtVbtVbtVbrrbcEbcEbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcC -bcCbcDbcDbcDbcDbcDbcDbcDbcDbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbtWbtXbtBbtBbtBbtYbtYbtYbtYbtZbuabubbtmbucbtKbudbudbudbudbtKbuebufbugbuhbuibujbujbujbkObukbqPbulbumbumbumbumbumbumbumbumbumbumbumbumbumbumbumbunbqQbkiblRbuobupbrEbuqburbusbutbuubuvbuubuubuubuubuwbrEblcbcEbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcC -bcCbcDbcDbcDbcDbcDbcDbcDbcDbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbtWbtYbuxbtBbtBbtYbtYbtYbtYbuybtBbuzbtmbuAbtKbudbudbudbudbudbtNbuBbuCbuDbuEbuFbuFbuFbkRbuGbuHbuIbuJbuJbuJbuJbuJbuJbuJbuJbuJbuJbuJbuJbuJbuJbuJbuJbuKbuLbuMbuNbrEbrEbuObtQbtQbutbuPbuPbuPbuPbuPbuPbuQbrEbcEbcEbcEbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcC -bcCbcDbcDbcDbcDbcDbcDbcDbcDbcDbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbtWbuRbtBbtBbtBbuSbuSbuSbuSbuybtBbuTbtmbuUbtKbudbudbudbudbudbtNbuBbuVbuBbtNbtNbtNbtNbiibuWbkLbuXbkUbkUbkUbkUbkUbkUbkUbuYbkObkObuZbkObkObkObkObkObvabvbblRbvcbvdbvebuObsJbsJbvfbvgbvgbvgbvgbvgbvgbvgbvhbcEbcEbcEbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcC -bcCbcDbcDbcDbcDbcDbcDbcDbcDbcDbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbtWbtBbvibvjbvkbvkbvkbvkbvkbvlbvmbuabvnbvobtKbudbudbudbudbtKbtNbuBbuVbuBbvpbtNbtNbvqbiibvrblibvsbvtbvubvvbvwbvxbiibvyblgbvrblibkibiibiibiiblibvrbiibvzbvAbvcbvBbusbuObsJbsJbvCbvDbvDbvDbvDbvDbvDbvDbvhbcEbcEbcEbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcC -bcCbcDbcDbcDbcDbcDbcDbcDbcDbcDbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbtjbvEbvFbvGbtBbtBbtBbtBbtBbvHbvIbvJbvKbvLbtKbtKbtKbtKbtKbtKbvMbuBbuVbuBbvNbvObvObvObvObvObvObvPbvObvObvQbvObvRbvSbvObvTbvUbvUbvVbvWbvWbvWbvUbvUbvXbuBbvYbvcbtQbtQbuObsJbsJbsJbsJbsJbsJbsJbsJbsJbvZbvhbcEbcEbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcC -bcCbcDbcDbcDbcDbcDbcDbcDbcDbcDbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbtjbtjbwabwabwbbwabwabwabwabwcbwdbwdbtmbtmbwebwebwebwebwebwebwfbwgbwhbwgbvObwibwjbwkbwlbwmbvObwnbwobvObjmbvObwpbvObwqbwrbvUbwsbwtbwubwvbwwbwxbwybtNbuBbvYbvcbsJbsJbuObsJbsJbsJbtQbusbtQbsJbsJbsJbwzbvhbcEbcEbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcC -bcCbcDbcDbcDbcDbcDbcDbcDbcDbcDbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEaJabwAbwBbwCaMibwDbwEbwFbwCbwGbwHbwIbwJbwKbwLbwMbwNbwObwPbwQbwfbuBbuVbuBbwRbwSbwSbwSbwSbwSbwTbwnbwUbvObvObvObwpbvObwVbwrbvUbwWbwXbwYbwYbwYbwZbvWbxabxbbxcbstbsUbsJbxdbxebxebxebxfbxgbtQbsJbsJbsJbtQbvhbcEbcEbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcC -bcCbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEaJabxhbxibxjbxjbxjbxjbxjbxjbxkbxlbxmbxnbwKbxobxpbxqbxrbxqbxsbwfbuBbuVbxtbxubxubxubxubxubxubxubwnbxvbvObxwbxxbxybvObwSbwrbvUbxzbxAbxBbwYbwYbxCbvWbxDbtNbvYbrEbxEbsJbxFbxGbxGbxGbxHburbtQbsJbsJbsJbxIbrEbcEbcEbcEbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcC -bcCbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEaJabxJbxKbxLbxMbxMbxNaMiaMibxObxPbxQbxRbxSbxTbxUbxVbxWbxXbxYbwfbuBbuVbxZbxubyabybbycbydbyabxubyebyfbvObygbyhbyibvObwSbyjbvUbykbylbxBbwYbwYbymbynbyobtNbvYbypbyqbsJbuObyrbyrbyrbtQbusbtQbsJbsJbsJbysbrEbcEbcEbcEbcEbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcC -bcCbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEaJabytbxKbyubyvbyvbywaMiaMibyxbyybxKbyzaJabyAbyBbyBbyCbyDbyEbyFbyGbyHbyIbxubyJbyKbyKbyKbyLbxubyMbyNbvObyObyPbyQbvObwSbyRbvUbySbylbxBbyTbyUbyVbyWbyXbyXbyYbrEbyZbsJbuObzabzbbzcbsJbzdbsJbsJbsJbsJbzebrEbvcbrEbcEbcEbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcC -bcCbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEaJabzfbxKaMibyvbyvbywaMiaMibyxbyybxKbzgaJabzhbzhbzhbwfbzibzhbzjbzkbuVbzlbxubzmbznbzobzpbzqbzrbwSbyNbzsbzsbzsbzsbzsbztbzubzvbzwbzxbzybzzbzAbzBbvWbzCbtNbvYbvcbzDbzEbuObzFbzFbzFbtQbzGbtQbsJbsJbsJbsJbzHbwzbvhbcEbcEbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcC -bcCbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbzIaJabzJbxKaMibzKbzLbzMbzNbzObzPbyybzQbzRaJabzSbzTbzUbzVbzWbzXbzXbzYbuVbzZbxubAabAbbAcbAdbAebxubAfbAgbAhbAibAjbAkbzsbvObAlbvUbAmbylbxBbAnbwYbwYbAobtNbtNbvYbvcbApbAqbArbxebxebxebxfbAsbtQbsJbsJbsJbsJbtQbvBbvhbcEbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcC -bcCbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEaJabAtbxKbAuaMibAvaNvbAwaNvbAxbAybAzbAAbABbACbADbAEbAFbAGbAGbAGbuibAHbAIbxubAabAJbAcbAKbALbxubwSbAMbANbAObAPbAQbzsbARbAlbvUbASbylbxBbwYbwYbATbynbxDbtNbvYbvcbAqbAqbAUbAVbAVbAVbxHbAWbtQbsJbsJbsJbsJbtQbusbvhbcEbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcC -bcCbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEaJabAXbAYaMiaMibyyaMibAZbBabBbbBcbBdbBeaJabBfbBgbBhbzVbBibBjbBkbBlbBmbtNbxubBnbBobBpbBqbBrbzrbwSbAMbzsbBsbBtbBubBvbBwbBxbvUbxzbylbxBbwYbwYbBybvWbBzbtNbvYbvcbAqbAqbBAbsJbsJbsJbtQbvBbtQbsJbsJbsJbsJbtQbusbvhbcEbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcC -bcCbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEaJabBBbBCaMiaMibyyaMibBDbBEbBEbBFbBGbBHbBEbBEbBIbBIbBIbBIbBIbBJbBKbBLbBMbxubBNbBObBPbBObBQbxubBRbAMbzsbzsbzsbzsbzsbBSbBTbvUbBUbwXbwYbwYbwYbxCbvWbtNbtNbvYbvcbBVbBVbuObsJbsJbsJbsJbsJbsJbsJbBWbBXbBYbBZbwzbvhbcEbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcC -bcCbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEaJaaJaaJabCabBCaMiaMibyyaMibCbbBEbCcbCdbCebCfbCgbBEbChbCibCjbCkbClbBIbCmbBmbtNbxubCnbCnbCobCnbCnbxubCpbAMbvObCqbvObwSbvObCrbCsbvUbCtbCubCvbCwbCxbCybvUbvXbtNbCzbrEbCAbsTbCBbsJbsJbsJbsJbsJbsJbsJbrEbrEbrEbrEbCCbrEbcEbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcC -bcCbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEaJabCDbCEbCFbCGbCHbCHbCIaMibCJbBGbCKbCdbCLbCfbCMbBEbCNbCObCPbCQbCRbBIbCSbBmbtNbCTbxubxubxubxubxubCUbvObCVbvObCWbvObvObvObCXbvObCYbvUbvWbvWbvWbvWbvUbvUbtNbCZbvYbrEbDabsJbDbbDcbDdbDdbDdbDdbDdbDebrEbDfbDgbrEbcEbcEbcEbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcC -bcCbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEaJaaJaaJabDhbDibDjaQwbDkbDlbDmbBGbDnbDobDpbDqbDrbDsbDtbDubDvbDwbDxbDybDzbDAbuFbuFbDBbDCbDDbDEbDFbDGbDHbDIbDJbDKbDLbDMbDNbvYbtNbtObDObtNbtNbtNbtNbDPbDQbtNbDRbvYbDSbDTbsJbDUbDVbDWbDVbDVbDVbDXbDYbrEbDZbEabrEbcEbcEbcEbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcC -bcCbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEaJaaJabEbbEcbEcbEdbEcbEcbEbbEebEfbEgbEhbEibCLbEjbCPbCPbCPbEkbElbEmbEnbEobEobEpbEobEobEobEqbErbEsbEtbEtbEtbEubEvbEtbEwbEobEobEobEobEobEobEobEobEobEobExbEybEzbEAbEBbECbEDbEEbEEbEEbEEbEEbEEbEFbEGbEHbvhbcEbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcC -bcCbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbEbbEIbEJbEKbELbEMbEbbENbEObEgbEhbEibCLbEPbEQbERbEQbESbElbEmbtNbtNbETbsFbtNbtNbtNbuVbEUbvYbtNbtNbtNbsFbvpbEVbtNbtNbtNbtNbtNbEWbvpbETbtNbtNbtNbEUbvMbrEbEXbEYbEZbDVbFabFbbFcbFdbFebFfbrEbFgbFhbvhbcEbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcC -bcCbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbEbbFibFjbFkbFlbFmbEbbFnbEObCLbFobFpbBEbBEbBGbBGbBGbBEbBEbBEbFqbBGbBEbsPbFrbFrbFsbuVbtNbvYbFsbFrbFrbsPbsPbsPbFrbFrbFrbFrbFrbsPbsPbsPbFrbFrbFrbFrbFrbrEbrEbrEbrEbCCbCCbCCbCCbCCbrEbrEbrEbCCbCCbFtbcEbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcC -bcCbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbFubFvbFwbFxbFybFzbEcbFAbFBbFCbFDbFEbFFbFGbFHbFIbFJbFKbFLbFMbFCbFNbBEbcEbcEbcEbFObuVbtNbvYbFPbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcC -bcCbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbFubFQbFRbFSbFybFTbEcbFUbCLbFVbFWbFXbFYbFXbFXbFXbFXbFXbFZbCLbCLbGabBEbcEbcEbcEbFObuVbtNbvYbFPbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcC -bcCbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcEbcEbcEbcEbcEbcEbcDbcDbcDbcDbcEbcEbcEbcEbcEbcEbcDbcDbcDbcEbcEbcEbcEbcEbcEbcEbcEbFubGbbGcbFybFybGdbEcbGebCLbCLbCLbCLbGfbGgbGgbGgbGgbGgbGhbCLbGibGjbBEbcEbcEbcEbsPbGkbGlbGmbsPbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcFbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcC -bcCbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcEbcEbcEbcEbcDbcDbcDbcDbcDbcDbcEbcEbcEbcEbcDbcDbcDbcDbcDbcEbcEbcEbcEbcEbcEbcEbcEbEbbGnbGobGpbGqbGrbEbbGsbGtbGubGvbGwbGxbGybGzbGAbGBbGCbGDbGEbGFbGGbBEbcEbcEbcEbsPbGHbtNbGIbsPbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbGJbGJbGKbGKbGKbGKbGKbGJbGJbGJbGKbGKbGKbGKbGKbGJbGJbcEbcEbcEbcEbcEbcEbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcC -bcCbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcEbcEbcEbcEbcDbcDbcDbcDbcDbcDbcEbcEbcDbcEbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcEbcEbcEbEbbEbbGLbGLbGLbEbbEbbBEbGMbGMbGMbBEbBEbGMbGMbGMbBEbBEbGMbGMbGMbBEbBEbcEbcEbcEbsPbGNbtNbCzbsPbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbGJbGObGPbGPbGPbGPbGPbGQbGRbGSbGPbGPbGPbGPbGPbGObGJbcEbcEbcEbcEbcEbcEbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcC -bcCbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbFObuVbtNbvYbFPbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbGTbGUbGVbGVbGVbGVbGVbGWbGPbGUbGVbGVbGVbGVbGVbGWbGXbcEbcEbcEbcEbcEbcEbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcC -bcCbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbFObuVbtNbvYbFPbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbGTbGYbGZbHabHabHabGZbHbbGPbGYbGPbGPbGPbGPbGPbHbbGXbcEbcEbcEbcEbcEbcEbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcC -bcCbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbFObuVbtNbvYbFPbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbGTbHcbGZbHdbHebHfbGZbHbbGPbGYbGPbGPbGPbGPbGPbHbbGXbcEbcEbcEbcEbcEbcEbcEbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcC -bcCbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbFObuVbtNbvYbFPbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbGTbGYbGZbHgbHhbHibGZbHbbGPbGYbGPbGPbGPbGPbGPbHbbGXbcEbcEbcEbcEbcEbcEbcEbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcC -bcCbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbFObuVbtNbvYbFPbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbGTbGYbGZbHjbHhbHhbHkbHbbGPbGYbGPbGPbGPbGPbGPbHbbGXbcEbcEbcEbcEbcEbcEbcEbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcC -bcCbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbsPbuVbtNbHlbsPbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbGJbHmbGZbHnbHnbHnbGZbHbbGPbGYbGPbGPbGPbGPbGPbHbbGJbcEbcEbcEbcEbcEbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcC -bcCbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbzIbsPbHobtNbHpbsPbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbGJbHqbGZbHrbHrbHrbGZbHbbGPbGYbGPbGPbGPbGPbGPbHsbGJbcEbcEbcEbcEbcEbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcC -bcCbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbsPbuVbtNbHtbsPbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbGJbHubGZbHvbHvbHvbGZbHbbGPbGYbGPbGPbGPbGPbGPbHbbGJbcEbcEbcEbcEbcEbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcC -bcCbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbFObuVbHwbvYbFsbGKbGKbGKbGKbsPbsPbsPbGKbGKbGKbGKbHxbHybHzbHzbHzbHzbHzbHAbGPbHBbHzbHzbHzbHzbHzbHAbGJbcEbcEbcEbcEbcEbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcC -bcCbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbFObHCbHDbHEbHFbHFbHFbHFbHFbHFbHFbHFbHFbHGbHHbHHbHGbHIbGPbGPbGPbGPbGPbGPbGPbGPbGPbGPbGPbGPbGPbHJbGJbcEbcEbcEbcEbcEbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcC -bcCbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbFObtNbDRbtNbtNbtNbtNbtNbtNbtNbtNbtNbtNbHKbHLbHLbHMbHNbGPbGPbGPbGPbGPbGPbGPbGPbGPbGPbGPbHObGPbGPbGJbcEbcEbcEbcEbcEbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcC -bcCbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbFObvMbHPbETbtNbtNbtNbtNbtNbtNbtNbtNbtNbHQbHLbHLbHQbHRbHSbHSbHSbHSbHSbHSbHSbHTbGJbGJbGJbGJbGJbGJbGJbcEbcEbcEbcEbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcC -bcCbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbHUbsPbsPbsPbFrbFrbFrbFrbFrbsPbsPbsPbFrbHVbHVbHVbHxbHWbGPbGPbGPbGPbGPbGPbGPbHNbGJbHXbHXbHYbHXbHZbGJbcEbcEbcEbcEbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcC -bcCbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbGJbIabGPbGPbGPbGPbGPbGPbGPbIbbIcbIdbHXbHXbHXbIebGJbcEbcEbcEbcEbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcC -bcCbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbGJbIfbGPbGPbGPbGPbGPbGPbGPbGPbGJbIgbIhbIhbIibIjbGJbcEbcEbcEbcEbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcC -bcCbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbGJbIkbGPbGPbGPbHObGPbGPbIlbGObGJbImbInbIobIobIpbGJbcEbcEbcEbcEbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcC -bcCbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbGJbGJbGJbGJbGJbGJbGJbGJbGJbGJbGJbGJbGJbGJbGJbGJbGJbcEbcEbcEbcEbcEbcEbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcC -bcCbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbIqbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbIqbcEbcEbcEbcEbcEbcEbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcC -bcCbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcC -bcCbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcC -bcCbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcC -bcCbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcC -bcCbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcC -bcCbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcC -bcCbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcC -bcCbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcC -bcCbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcC -bcCbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcC -bcCbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcC -bcCbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcDbcDbcDbcDbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcC -bcCbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcDbcDbcDbcDbcEbcEbcEbcEbcEbcDbcDbcDbcEbcDbcDbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcEbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcC -bcCbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcEbcEbcEbcEbcEbcEbcDbcEbcEbcDbcDbcDbcDbcDbcDbcEbcEbcEbcEbcDbcDbcDbcDbcDbcDbcEbcEbcEbcEbcDbcDbcDbcEbcEbcEbcEbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcC -bcCbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcEbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcEbcDbcDbcDbcEbcEbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcC -bcCbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcC -bcCbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcC -bcCbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcC -bcCbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcC -bcCbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcC -bcCbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcC -bcCbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcDbcC -bcCbcCbcCbcCbcCbcCbcCbcCbcCbcCbcCbcCbcCbcCbcCbcCbcCbcCbcCbcCbcCbcCbcCbcCbcCbcCbcCbcCbcCbcCbcCbcCbcCbcCbcCbcCbcCbcCbcCbcCbcCbcCbcCbcCbcCbcCbcCbcCbcCbcCbcCbcCbcCbcCbcCbcCbcCbcCbcCbcCbcCbcCbcCbcCbcCbcCbcCbcCbcCbcCbcCbcCbcCbcCbcCbcCbcCbcCbcCbcCbcCbcCbcCbcCbcCbcCbcCbcCbcCbcCbcCbcCbcCbcCbcCbcCbcCbcCbcCbcCbcCbcCbcCbcCbcCbcCbcCbcCbcCbcCbcCbcCbcCbcCbcCbcCbcCbcCbcCbcC +bcQbcQbcQbcQbcQbcQbcQbcQbcQbcQbcQbcQbcQbcQbcQbcQbcQbcQbcQbcQbcQbcQbcQbcQbcQbcQbcQbcQbcQbcQbcQbcQbcQbcQbcQbcQbcQbcQbcQbcQbcQbcQbcQbcQbcQbcQbcQbcQbcQbcQbcQbcQbcQbcQbcQbcQbcQbcQbcQbcQbcQbcQbcQbcQbcQbcQbcQbcQbcQbcQbcQbcQbcQbcQbcQbcQbcQbcQbcQbcQbcQbcQbcQbcQbcQbcQbcQbcQbcQbcQbcQbcQbcQbcQbcQbcQbcQbcQbcQbcQbcQbcQbcQbcQbcQbcQbcQbcQbcQbcQbcQbcQbcQbcQbcQbcQbcQbcQbcQbcQ +bcQbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcQ +bcQbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcQ +bcQbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcQ +bcQbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcQ +bcQbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcQ +bcQbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcQ +bcQbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcQ +bcQbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcSbcRbcSbcSbcSbcRbcRbcRbcRbcRbcSbcRbcSbcRbcRbcRbcSbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcSbcSbcSbcSbcSbcSbcSbcRbcRbcRbcRbcRbcRbcRbcRbcRbcSbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcQ +bcQbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcRbcSbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcRbcRbcRbcRbcSbcSbcRbcRbcRbcSbcSbcRbcRbcRbcRbcRbcSbcSbcSbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcQ +bcQbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcRbcSbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcSbcSbcSbcRbcRbcRbcRbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcRbcRbcRbcSbcSbcSbcSbcSbcSbcSbcRbcRbcRbcRbcRbcSbcSbcSbcSbcSbcSbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcQ +bcQbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcRbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcRbcRbcSbcSbcSbcSbcSbcSbcSbcSbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcQ +bcQbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcTbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcQ +bcQbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcUbcUbcVbcVbcVbcVbcUbcWbcXbcXbcWbcXbcXbcWbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcQ +bcQbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcUbcYbcZbdabdbbdcbddbcWbdebdfbdgbdhbdibdjbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcQ +bcQbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcUbdkbdlbdmbdnbdnbdobcWbdpbdqbdrbdsbdtbdjbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcQ +bcQbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcUbdubdvbdwbdxbcWbcWbcWbdybdzbdAbdBbdCbcWbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcQ +bcQbcRbcRbcRbcRbcRbcRbcRbcRbcRbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcUbdDbdEbdwbdwbcWbdFbdGbdHbdIbdJbdJbdKbdjbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcTbcSbcSbcSbcSbcSbcSbcSbcSbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcQ +bcQbcRbcRbcRbcRbcRbcRbcRbcRbcRbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcTbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcUbdLbdMbdnbdNbcWbdObdPbdQbdzbdRbdSbdTbdjbcSbcSbcSbcSbcSbcSbdUbdVbdVbdUbdVbdVbdUbdVbdVbdUbcSbcSbcSbcSbcSbcSbcSbcSbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcQ +bcQbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbdWaymaymaymaymaymaymaymaymaymaymaymbdXbdXbdXbdXbdXbdXbdXbdYbdYbdZbdZbdZbdZbeabeabebbebbebbebbeabeabeabecbedbcUbcUbcWbeebdPbdQbdIbdJbdJbefbcWbcSbcSbcSbcSbcSbcSbegbehbeibdUbehbejbdUbehbeibdUbcSbcSbcSbcSbcSbcSbcSbcSbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcQ +bcQbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSaymbekbekaymbelbembenbeobepbeqberbdXbesbetbeubevbewbdXbexbeybezbeAbezbeBbeabeCbeDbeEbeFbeGbeHbeIbeabeJbeKbeLbeMbeNbeObePbeQbeRbeSbeTbeUbdjbcSbcSbcSbcSbcSbcSbegbeVbeWbdUbeVbeWbdUbeVbeWbdUbcSbcSbcSbcSbcSbcSbcSbcSbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcQ +bcQbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSaymbekbekaymbeXbeYbeZbfabfbbfcbfdbdXbfebffbfgbfhbfibfjbfkbfkbflbfmbfnbfmbfobfpbfqbfrbfsbftbftbfubeabfvbfwbfxbfybcWbfzbdPbfAbfBbfCbfDbfEbdjbcSbcSbcSbcSbcSbcSbdUbfFbdUbdUbfGbdUbdUbfHbdUbdUbcSbcSbcSbcSbcSbcSbcSbcSbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcQ +bcQbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSaymbeYbeYaymbfIbeYbeYbfJbeYbeYbfKbdXbfLbffbfMbfNbfObdXbfPbfQbfRbfSbfTbfUbeabfVbfWbfXbfsbfYbftbfZbeabgabgbbgcbgdbcWbgebgfbggbghbgibdQbgjbcWbcSbcSbcSbcSbcSbcSbegbeVbgkbglbeVbgmbgnbeVbgobdUbcSbcSbcSbcSbcSbcSbcSbcSbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcQ +bcQbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSaymbeYbeYaymbgpbeYbeYbfJbeYbeYbfKbdXbgqbgrbgsbgtbgubdXbgvbfSbgwbfSbfTbgxbeabgybfWbfXbgzbgAbgAbgzbeabgBbgCbcUbcUbcWbcWbcWbgDbgDbgEbgFbcWbcWbcSbcSbcSbcSbcSbcSbegbgGbgHbgIbgIbgIbgJbgKbgLbdUbcSbcSbcSbcSbcSbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcQ +bcQbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSaymbgMbgMaymbgNbeYbeYbfJbeYbeYbgObdXbdXbdXbdXbdXbdXbdXbgPbfSbgwbfSbgQbgRbeabgSbgTbgUbgVbgWbgXbgYbeabgZbhabhbbhcbhdbhebhfbhgbhhbhibhjbhkbhdbcSbcSbcSbcSbcSbcSbegbhlbhmbeVbhnbhobhpbhqbhrbhsbcSbcSbcSbcSbcSbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcQ +bcQbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSaymbhtbeYbhubeYbeYbeYbhvbeYbeYbhwbhxbhybhzbhybhzbhybdYbhAbhBbhCbfSbfSbhDbeabeabhEbhFbhEbhEbhEbeabeabhGbhHbhIbhJbhdbhKbhLbhMbhNbhObhPbhQbhRbcSbcSbcSbcSbcSbcSbdUbhsbhSbhsbdUbdUbdUbdUbhsbhsbcSbcSbcSbcSbcSbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcQ +bcQbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSaymbhTbhUbhUbhUbhUbhUbhVbeYbeYbhWbhxbhXbhzbhYbhzbhZbdYbiabibbicbfSbfSbidbiebifbigbihbiibijbikbilbimbinbcUbhHbiobhdbipbiqbirbisbitbhPbiubhRbcSbcSbcSbcSbcSbcSbivbiwbixbiwbiybcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcQ +bcQbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSaymaymaymbizbiAbiAbiAbiAbiBbiCbeYbeYbiDbhxbiEbiFbiGbiHbiGbdYbiIbfSbiJbiKbiKbiKbiLbiMbiNbiObiMbiPbiQbiRbiSbcUbcUbiTbiUbhdbiVbiWbiWbiWbiWbiXbiYbhRbcSbcSbcSbcSbcSbcSbivbiwbixbiwbiybcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcQ +bcQbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcTbcSbcSaymbiZbjabjbbjcbjdbjcbjebjfbjgbjhbjibjjbhxbjkbjlbjmbjnbjobdYbjpbjqbjqbjqbjrbjsbiebjtbjubjvbjwbjxbjybjzbiSbjAbcUbjBbjCbhdbjDbjEbjEbjFbiWbhPbjGbhdbcSbcSbcSbcSbcSbcSbjHbiwbixbjIbjHbcSbcSbcSbcSbcTbcSbcSbcSbcSbcSbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcQ +bcQbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbjHbjHbjHbjHbjHbjJbjJaymaymaymaymaymaymaymbjKbjLaymaymbhxbhzbjMbhzbhzbhzbdYbjNbjNbjNbjNbdYbdYbjObiSbiSbiSbiSbjPbjQbiSbjRbjSbcUbcUbjTbjUbjVbhdbjWbjWbjXbjYbjZbhdbjHbkabkabkabkabjHbjHbiwbixbiwbkbbkbbkbbkbbkbbkbbkbbkbbkbbkbbcSbcSbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcQ +bcQbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbjHbkcbkdbiwbkebiwbiwbkfbiwbkgbiwbkhbkibkjbkkbkjbklbkjbkmbkjbknbiwbkebkobiwbkpbkqbkqbkrbkfbkgbkdbksbiwbktbkubkvbkwbkxbkybkzbkAbkBbkCbkebiwbkDbkEbkFbiwbkwbkEbkGbkhbiwbiwbiwbiwbkgbiwbiwbixbiwbkbbkHbkIbkJbkKbkLbkMbkNbkObkbbcSbcSbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcQ +bcQbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbjHbkPbkQbkRbkRbkRbkRbkRbkRbkRbkRbkSbkTbkUbkVbkRbkRbkRbkWbkRbkXbkRbkRbkRbkRbkRbkRbkRbkRbkRbkRbkWbkYbkZbkZbkZblablbblcblcblcblcblcbldblcblcbleblfblfblfblgblfblfblfblfblfblfblhblibliblibljblkbkbbllblmblnblmblmblmbloblpbkbblqbcSbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcQ +bcQbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbjHblrblsbiwbltbiwbiwbiwbiwbiwbiwblublvbkwbiwblwbiwbiwblsbiwbiwbiwbiwbiwbiwbiwbiwbiwbiwblwbiwblsblxbiwbiwbiwbiwblyblzblAblAblAblAblAblAblAblBblAblAblAblAblAblAblAblAblAblCblDblEblFblFblGblHbkbblIblmblJblKblKblKblLblMbkbbcSbcSbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcQ +bcQbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSblNblNblNblNblNblNblNblNblOblOblPblQblRblSblNblNblTblTblUblUblUblUblUblTblTblVblVblVblVblWblWblWblWblWblXblYbiwblZbmabmbbmcbmcbmcbmcbmcbmcbmcbmcbmcbmcbmcbmcbmcbmcbmcbmdbmeblDbmfbiwbiwbiwbiwbkbbmgblmblmblmblmbmhbmibmjbkbbcSbcSbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcQ +bcQbcRbcRbcRbcRbcRbcRbcRbcRbcRbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbmkbmlbmmbmnbmobmpbmqbmrbmsbmsbmsbmtbmubmvbmwbmwblTbmxbmybmybmzbmAbmAbmBblTbjHbmCbmCbjHblWbmDbmEbmFbmGbmHbmIbiwblZbmabmJbmKbmKbmKbmKbmKbmKbmKbmKbmKbmKbmKbmKbmKbmKbmKbmLbmeblDbmfbmMbmNblrbkcbkbbmObmPbmQbmRbmSbmTbmUbmVbkbbcSbcSbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcQ +bcQbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbmkbmWbmXbmYbmZbmZbmZbnabnbbnbbnbbncbndbnebnfbnfblUbngbngbngbngbngbngbnhblTbcSbcSbcSbcSbnibnjbnkbnlbnmbnnbnobnpbnqbmabmJbmKbmKbmKbmKbmKbmKbmKbmKbmKbmKbmKbmKbmKbmKbmKbmLbmeblDbnrbkbbkbbkbbkbbkbbkbbnsbkbbkbbkbbnsbntbnsbkbbkbbcSbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcQ +bcQbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbmkbnubnvbnwbnxbnxbnybnybnybnybnybnzbnAbnBbnCbnDbnEbnFbnFbnFbnGbnFbnHbnIbnJbcSbcSbcSbcSblWblWbnKblWbnLbmHbnMbnNbnObmabmJbmKbmKbmKbmKbmKbmKbmKbmKbmKbmKbmKbmKbmKbmKbmKbmLbmebnPbnQbnRbnSbnTbnUbkbbnVbnWbnXbnYbkbbnZboabobbkObkbbcSbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcQ +bcQbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSblNbocbnvbodboeboebofbofbofbofbofbogbohbnebnfbnfboibngbngbngbojbngbokbolbnJbcSbcSbombcSblWbonbmHboobmHbmHblWbopbnObmabmJbmKbmKbmKbmKbmKbmKbmKbmKbmKbmKbmKbmKbmKbmKbmKbmLbmebkwboqbkbborbosbotboubovbowboxboybozboyboAboBboCbkbbcSbcSbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcQ +bcQbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbdWblNboDbnvbodboeboebofbofbofbofbofbogbohbnebnfboEblTboFboGboGboHboIbngboJblTbcSbcSbcSbcSblWbmHboKblWboLboLblWboMbnObmabmJbmKbmKbmKbmKbmKbmKbmKbmKbmKbmKbmKbmKbmKbmKbmKbmLbmebkwboNboOboOboOboPboOboQboRboQboQboQboQboSboSboSboSbcSbcSbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcQ +bcQbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSblNboTbnvbodboeboeboUboVboWbofbofbogbohbnebnfboXblTboYboZbpabpbbpcbngbpdblTbcSbcSbcSbcSblWbpebpfblWboLboLblWbpgbnObmabmJbmKbmKbmKbmKbmKbmKbmKbmKbmKbmKbmKbmKbmKbmKbmKbmLbmebkwbiwbphbpibpjbpkbplbpmbpnbpobppbpqbpmbprbpsbptbpubcSbcSbcSbcSbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcQ +bcQbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbmkbnubnvbodboeboebpvbpwbpxbofbofbogbohbnebnfboEblTblTblTblTbpybpzblUblTblTbkabjHbhzbhzblWblWblWblWblWblWblWbpAbpBbmabmJbmKbmKbmKbmKbmKbmKbmKbmKbmKbmKbmKbmKbmKbmKbmKbmLbmebkwbpCbpDbpEbpFbpGbpHbpmbpIbpnbpnbpJbpmbpKbpLbpMbpubcSbcSbcSbcSbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcQ +bcQbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbmkbpNbpObodboeboeboeboeboebofbofbogbohbnebnfbnfblObiwbiwbkhblybpPbiwbkobpQblfbpRbhzbpSbiGbpTbpUbjHbpVbpWbjHbiwbnObmabmJbmKbmKbmKbmKbmKbmKbmKbmKbmKbmKbmKbmKbmKbmKbmKbmLbmebkwbpXbjHbjHbpYbpZbqabpmbqbbpnbpnbqcbpmbpLbpLbqdbpubcSbcSbcSbcSbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcQ +bcQbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbmkbnubqebodboeboeboeboeboebofbofbogbqfbqgbqhbqibqjblcblcblcbqkbqlbliblibqmbiwbiwbhzbqnbqobqobqpbjHbqqbqrbqsbqtbqubqvbmJbmKbmKbmKbmKbmKbmKbmKbmKbmKbmKbmKbmKbmKbmKbmKbmLbqwbqxblfbqybqzbqAbqBbqCbpmbqDbqEbqFbqGbpmbqHbqIbpLbpubcSbcSbcSbcSbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcQ +bcQbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSblNbocbqebqJbqKbqKbqKbqKbqKbqLbqLbqMbqNbqObqPbqQbqRbkjbkjbkjbkjbqSbqTbqtbqUbqVbqWbqXbqYbqZbqZbrabjHbrbbpWbjHbrcblZbrdbmJbmKbmKbmKbmKbmKbmKbmKbmKbmKbmKbmKbmKbmKbmKbmKbmLbrebkwblHbrfbjHbrgbpkbrhbpmbribrjbrkbrlbpmbrmbrnbrobpubcSbcSbcSbcSbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcQ +bcQbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSblNbrpbrqbrrbrrbrrbrrbrrbrrbrrbrrbrrbrsbrtbrubrvblNbjHbmCbmCbmCbjHbjHbiwblyblvbrwbhzbpSbrxbrybpUbjHbjHbjHbjHbnNblZbrdbmJbmKbmKbmKbmKbmKbmKbmKbmKbmKbmKbmKbmKbmKbmKbmKbmLbrebkwbrzbpDbpDbpDbrAbpDbpmbpmbrBbrCbpmbpmbrDbrEbrDbrFbcSbcSbcSbcSbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcQ +bcQbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSblNbrGbrHbrHbrHbrHbrIbrHbrHbrHbrJbrHbrKbrLbrMbrNbrObcSbcSbcSbcSbcSbivbiwblyblvbiwbhzbhzbhzbhzbhzbhzblrbrPbjHboMblZbrdbmJbmKbmKbmKbmKbmKbmKbmKbmKbmKbmKbmKbmKbmKbmKbmKbmLbrebkwbiwbrQbrRbrSbrTbrUbrVbrFbrWbrXbrYbrZbsabsbbscbrFbcSbcSbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcQ +bcQbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbsdbseblNblNblNbsebsebseblNblNblNbsebsebseblNblNblNbcSbcSbcSbcSbcSbivbsfblybsgbkjbshbkmbsibsjbkjbkjbkjbkjbskbkjbslbsmbmJbmKbmKbmKbmKbmKbmKbmKbmKbmKbmKbmKbmKbmKbmKbmKbmLbsnbkwbiwbsobspbrSbsqbsrbssbrFbstbsubsvbsvbswbsxbsybrFbcSbcSbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcQ +bcQbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbjHbmNbszblcblcblcbsAblcblcblcblcblcblcbsBblcbsCbrdbmJbmKbmKbmKbmKbmKbmKbmKbmKbmKbmKbmKbmKbmKbmKbmKbmLbsDbsEblfbsFbsGbsHbsIbsJbsJbsKbsLbsMbsNbsObsPbsQbsRbsSbcSbcSbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcQ +bcQbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbjHbkcbiwbiwbiwbiwblsbiwbiwbiwbiwbiwbiwbsTbiwblZbrdbmJbmKbmKbmKbmKbmKbmKbmKbmKbmKbmKbmKbmKbmKbmKbmKbmLbsUbkwbiwbiwbiwbsVbsWbsXbsXbsYbsZbrXbtabrFbtbbsQbtcbsSbcSbcSbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcQ +bcQbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbjHbjHbmCbmCbjHbjHbjHbmCbmCbmCbmCbmCbjHbtdbiwblZbrdbmJbmKbmKbmKbmKbmKbmKbmKbmKbmKbmKbmKbmKbmKbmKbmKbmLbtebtfblfblfbtgbsHbsIbthbtibsYbtjbtkbtlbtmbtnbtobtpbsSbcSbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcQ +bcQbcRbcRbcRbcRbcRbcRbcRbcRbcRbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcTbcSbcSbcSbtqbtrbtsbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbtdbiwblZbrdbmJbmKbmKbmKbmKbmKbmKbmKbmKbmKbmKbmKbmKbmKbmKbmKbmLbsnbkwblEblFblFbttbtubsXbsXbtvbsQbrXbsQbsQbsQbsQbtwbsSbcSbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcQ +bcQbcRbcRbcRbcRbcRbcRbcRbcRbcRbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbtxbtxbtybtybtybtxbtxbtxbtxbtybtybtzbtAbtBbtCbtCbtCbtCbtCbtCbtCbtCbtCbtDbtDbtDbtdbtdbiwblZbrdbmJbmKbmKbmKbmKbmKbmKbmKbmKbmKbmKbmKbmKbmKbmKbmKbmLbsDbtEbtFbtGbtHbsHbtIbtJbtJbtKbtLbtMbsQbsQbsQbsQbtNbsSbcSbcSbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcQ +bcQbcRbcRbcRbcRbcRbcRbcRbcRbcRbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbtxbtObtPbtQbtPbtRbtSbtTbtUbtVbtPbtWbtAbtXbtYbtYbtYbtYbtYbtYbtdbtZbuabubbucbubbubbubbiwblZbrdbmJbmKbmKbmKbmKbmKbmKbmKbmKbmKbmKbmKbmKbmKbmKbmKbmLbsUbkwbmfbsobspbrSbudbuebufbrFbugbrFbuhbuibujbujbujbrFbcSbcSbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcQ +bcQbcRbcRbcRbcRbcRbcRbcRbcRbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbukbulbtPbtPbtPbumbumbumbumbunbuobupbtAbuqbtYburburburburbtYbusbutbuubuvbuwbuxbuxbuxblcbuybrdbuzbuAbuAbuAbuAbuAbuAbuAbuAbuAbuAbuAbuAbuAbuAbuAbuBbrebkwbmfbuCbuDbrSbuEbuFbuGbuHbuIbuJbuIbuIbuIbuIbuKbrSblqbcSbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcQ +bcQbcRbcRbcRbcRbcRbcRbcRbcRbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbukbumbuLbtPbtPbumbumbumbumbuMbtPbuNbtAbuObtYburburburburburbubbuPbuQbuRbuSbuTbuTbuTblfbuUbuVbuWbuXbuXbuXbuXbuXbuXbuXbuXbuXbuXbuXbuXbuXbuXbuXbuXbuYbuZbvabvbbrSbrSbvcbuebuebuHbvdbvdbvdbvdbvdbvdbvebrSbcSbcSbcSbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcQ +bcQbcRbcRbcRbcRbcRbcRbcRbcRbcRbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbukbvfbtPbtPbtPbvgbvgbvgbvgbuMbtPbvhbtAbvibtYburburburburburbubbuPbvjbuPbubbubbubbubbiwbvkbkZbvlblibliblibliblibliblibvmblcblcbvnblcblcblcblcblcbvobvpbmfbvqbvrbvsbvcbsXbsXbvtbvubvubvubvubvubvubvubvvbcSbcSbcSbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcQ +bcQbcRbcRbcRbcRbcRbcRbcRbcRbcRbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbukbtPbvwbvxbvybvybvybvybvybvzbvAbuobvBbvCbtYburburburburbtYbubbuPbvjbuPbvDbubbubbvEbiwbvFblwbvGbvHbvIbvJbvKbvLbiwbvMblubvFblwbkwbiwbiwbiwblwbvFbiwbvNbvObvqbvPbuGbvcbsXbsXbvQbvRbvRbvRbvRbvRbvRbvRbvvbcSbcSbcSbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcQ +bcQbcRbcRbcRbcRbcRbcRbcRbcRbcRbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbtxbvSbvTbvUbtPbtPbtPbtPbtPbvVbvWbvXbvYbvZbtYbtYbtYbtYbtYbtYbwabuPbvjbuPbwbbwcbwcbwcbwcbwcbwcbwdbwcbwcbwebwcbwfbwgbwcbwhbwibwibwjbwkbwkbwkbwibwibwlbuPbwmbvqbuebuebvcbsXbsXbsXbsXbsXbsXbsXbsXbsXbwnbvvbcSbcSbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcQ +bcQbcRbcRbcRbcRbcRbcRbcRbcRbcRbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbtxbtxbwobwobwpbwobwobwobwobwqbwrbwrbtAbtAbwsbwsbwsbwsbwsbwsbwtbwubwvbwubwcbwwbwxbwybwzbwAbwcbwBbwCbwcbjAbwcbwDbwcbwEbwFbwibwGbwHbwIbwJbwKbwLbwMbubbuPbwmbvqbsXbsXbvcbsXbsXbsXbuebuGbuebsXbsXbsXbwNbvvbcSbcSbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcQ +bcQbcRbcRbcRbcRbcRbcRbcRbcRbcRbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSaJkbwObwPbwQaMsbwRbwSbwTbwQbwUbwVbwWbwXbwYbwZbxabxbbxcbxdbxebwtbuPbvjbuPbxfbxgbxgbxgbxgbxgbxhbwBbxibwcbwcbwcbwDbwcbxjbwFbwibxkbxlbxmbxmbxmbxnbwkbxobxpbxqbsHbtibsXbxrbxsbxsbxsbxtbxubuebsXbsXbsXbuebvvbcSbcSbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcQ +bcQbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSaJkbxvbxwbxxbxxbxxbxxbxxbxxbxybxzbxAbxBbwYbxCbxDbxEbxFbxEbxGbwtbuPbvjbxHbxIbxIbxIbxIbxIbxIbxIbwBbxJbwcbxKbxLbxMbwcbxgbwFbwibxNbxObxPbxmbxmbxQbwkbxRbubbwmbrSbxSbsXbxTbxUbxUbxUbxVbuFbuebsXbsXbsXbxWbrSbcSbcSbcSbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcQ +bcQbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSaJkbxXbxYbxZbyabyabybaMsaMsbycbydbyebyfbygbyhbyibyjbykbylbymbwtbuPbvjbynbxIbyobypbyqbyrbyobxIbysbytbwcbyubyvbywbwcbxgbyxbwibyybyzbxPbxmbxmbyAbyBbyCbubbwmbyDbyEbsXbvcbyFbyFbyFbuebuGbuebsXbsXbsXbyGbrSbcSbcSbcSbcSbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcQ +bcQbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSaJkbyHbxYbyIbyJbyJbyKaMsaMsbyLbyMbxYbyNaJkbyObyPbyPbyQbyRbySbyTbyUbyVbyWbxIbyXbyYbyYbyYbyZbxIbzabzbbwcbzcbzdbzebwcbxgbzfbwibzgbyzbxPbzhbzibzjbzkbzlbzlbzmbrSbznbsXbvcbzobzpbzqbsXbzrbsXbsXbsXbsXbzsbrSbvqbrSbcSbcSbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcQ +bcQbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSaJkbztbxYaMsbyJbyJbyKaMsaMsbyLbyMbxYbzuaJkbzvbzvbzvbwtbzwbzvbzxbzybvjbzzbxIbzAbzBbzCbzDbzEbzFbxgbzbbzGbzGbzGbzGbzGbzHbzIbzJbzKbzLbzMbzNbzObzPbwkbzQbubbwmbvqbzRbzSbvcbzTbzTbzTbuebzUbuebsXbsXbsXbsXbzVbwNbvvbcSbcSbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcQ +bcQbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbzWaJkbzXbxYaMsbzYbzZbAabAbbAcbAdbyMbAebAfaJkbAgbAhbAibAjbAkbAlbAlbAmbvjbAnbxIbAobApbAqbArbAsbxIbAtbAubAvbAwbAxbAybzGbwcbAzbwibAAbyzbxPbABbxmbxmbACbubbubbwmbvqbADbAEbAFbxsbxsbxsbxtbAGbuebsXbsXbsXbsXbuebvPbvvbcSbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcQ +bcQbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSaJkbAHbxYbAIaMsbAJaNFbAKaNFbALbAMbANbAObAPbAQbARbASbATbAUbAUbAUbuwbAVbAWbxIbAobAXbAqbAYbAZbxIbxgbBabBbbBcbBdbBebzGbBfbAzbwibBgbyzbxPbxmbxmbBhbyBbxRbubbwmbvqbAEbAEbBibBjbBjbBjbxVbBkbuebsXbsXbsXbsXbuebuGbvvbcSbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcQ +bcQbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSaJkbBlbBmaMsaMsbyMaMsbBnbBobBpbBqbBrbBsaJkbBtbBubBvbAjbBwbBxbBybBzbBAbubbxIbBBbBCbBDbBEbBFbzFbxgbBabzGbBGbBHbBIbBJbBKbBLbwibxNbyzbxPbxmbxmbBMbwkbBNbubbwmbvqbAEbAEbBObsXbsXbsXbuebvPbuebsXbsXbsXbsXbuebuGbvvbcSbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcQ +bcQbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSaJkbBPbBQaMsaMsbyMaMsbBRbBSbBSbBTbBUbBVbBSbBSbBWbBWbBWbBWbBWbBXbBYbBZbCabxIbCbbCcbCdbCcbCebxIbCfbBabzGbzGbzGbzGbzGbCgbChbwibCibxlbxmbxmbxmbxQbwkbubbubbwmbvqbCjbCjbvcbsXbsXbsXbsXbsXbsXbsXbCkbClbCmbCnbwNbvvbcSbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcQ +bcQbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSaJkaJkaJkbCobBQaMsaMsbyMaMsbCpbBSbCqbCrbCsbCtbCubBSbCvbCwbCxbCybCzbBWbCAbBAbubbxIbCBbCBbCCbCBbCBbxIbCDbBabwcbCEbwcbxgbwcbCFbCGbwibCHbCIbCJbCKbCLbCMbwibwlbubbCNbrSbCObthbCPbsXbsXbsXbsXbsXbsXbsXbrSbrSbrSbrSbCQbrSbcSbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcQ +bcQbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSaJkbCRbCSbCTbCUbCVbCVbCWaMsbCXbBUbCYbCrbCZbCtbDabBSbDbbDcbDdbDebDfbBWbDgbBAbubbDhbxIbxIbxIbxIbxIbDibwcbDjbwcbDkbwcbwcbwcbDlbwcbDmbwibwkbwkbwkbwkbwibwibubbDnbwmbrSbDobsXbDpbDqbDrbDrbDrbDrbDrbDsbrSbDtbDubrSbcSbcSbcSbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcQ +bcQbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSaJkaJkaJkbDvbDwbDxaQGbDybDzbDAbBUbDBbDCbDDbDEbDFbDGbDHbDIbDJbDKbDLbDMbDNbDObuTbuTbDPbDQbDRbDSbDTbDUbDVbDWbDXbDYbDZbEabEbbwmbubbucbEcbubbubbubbubbEdbEebubbEfbwmbEgbEhbsXbEibEjbEkbElbElbElbEmbEnbrSbEobEpbrSbcSbcSbcSbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcQ +bcQbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSaJkaJkbEqbErbErbEsbErbErbEqbEtbEubEvbEwbExbCZbEybDdbDdbDdbEzbEAbEBbECbEDbEDbEEbEDbEDbEDbEFbEGbEHbEIbEIbEIbEJbEKbEIbELbEDbEDbEDbEDbEDbEDbEDbEDbEDbEDbEMbENbEObEPbEQbERbESbETbETbETbETbETbETbEUbEVbEWbvvbcSbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcQ +bcQbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbEqbEXbEYbEZbFabFbbEqbFcbFdbEvbEwbExbCZbFebFfbFgbFfbFhbEAbEBbubbubbFibsTbubbubbubbvjbFjbwmbubbubbubbsTbvDbFkbubbubbubbubbubbFlbvDbFibubbubbubbFjbwabrSbFmbFnbFobEjbFpbFqbFrbFsbFtbFubrSbFvbFwbvvbcSbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcQ +bcQbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbEqbFxbFybFzbFAbFBbEqbFCbFdbCZbFDbFEbBSbBSbBUbBUbBUbBSbBSbBSbFFbBUbBSbtdbFGbFGbFHbvjbubbwmbFHbFGbFGbtdbtdbtdbFGbFGbFGbFGbFGbtdbtdbtdbFGbFGbFGbFGbFGbrSbrSbrSbrSbCQbCQbCQbCQbCQbrSbrSbrSbCQbCQbFIbcSbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcQ +bcQbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbFJbFKbFLbFMbFNbFObErbFPbFQbFRbFSbFTbFUbFVbFWbFXbFYbFZbGabGbbFRbGcbBSbcSbcSbcSbGdbvjbubbwmbGebcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcQ +bcQbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbFJbGfbGgbGhbFNbGibErbGjbCZbGkbGlbGmbGnbGmbGmbGmbGmbGmbGobCZbCZbGpbBSbcSbcSbcSbGdbvjbubbwmbGebcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcQ +bcQbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcSbcSbcSbcSbcSbcSbcRbcRbcRbcRbcSbcSbcSbcSbcSbcSbcRbcRbcRbcSbcSbcSbcSbcSbcSbcSbcSbFJbGqbGrbFNbFNbGsbErbGtbCZbCZbCZbCZbGubGvbGvbGvbGvbGvbGwbCZbGxbGybBSbcSbcSbcSbtdbGzbGAbGBbtdbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcTbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcQ +bcQbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcSbcSbcSbcSbcRbcRbcRbcRbcRbcRbcSbcSbcSbcSbcRbcRbcRbcRbcRbcSbcSbcSbcSbcSbcSbcSbcSbEqbGCbGDbGEbGFbGGbEqbGHbGIbGJbGKbGLbGMbGNbGObGPbGQbGRbGSbGTbGUbGVbBSbcSbcSbcSbtdbGWbubbGXbtdbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbGYbGYbGZbGZbGZbGZbGZbGYbGYbGYbGZbGZbGZbGZbGZbGYbGYbcSbcSbcSbcSbcSbcSbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcQ +bcQbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcSbcSbcSbcSbcRbcRbcRbcRbcRbcRbcSbcSbcRbcSbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcSbcSbcSbEqbEqbHabHabHabEqbEqbBSbHbbHbbHbbBSbBSbHbbHbbHbbBSbBSbHbbHbbHbbBSbBSbcSbcSbcSbtdbHcbubbCNbtdbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbGYbHdbHebHebHebHebHebHfbHgbHhbHebHebHebHebHebHdbGYbcSbcSbcSbcSbcSbcSbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcQ +bcQbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbGdbvjbubbwmbGebcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbHibHjbHkbHkbHkbHkbHkbHlbHebHjbHkbHkbHkbHkbHkbHlbHmbcSbcSbcSbcSbcSbcSbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcQ +bcQbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbGdbvjbubbwmbGebcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbHibHnbHobHpbHpbHpbHobHqbHebHnbHebHebHebHebHebHqbHmbcSbcSbcSbcSbcSbcSbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcQ +bcQbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbGdbvjbubbwmbGebcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbHibHrbHobHsbHtbHubHobHqbHebHnbHebHebHebHebHebHqbHmbcSbcSbcSbcSbcSbcSbcSbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcQ +bcQbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbGdbvjbubbwmbGebcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbHibHnbHobHvbHwbHxbHobHqbHebHnbHebHebHebHebHebHqbHmbcSbcSbcSbcSbcSbcSbcSbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcQ +bcQbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbGdbvjbubbwmbGebcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbHibHnbHobHybHwbHwbHzbHqbHebHnbHebHebHebHebHebHqbHmbcSbcSbcSbcSbcSbcSbcSbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcQ +bcQbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbtdbvjbubbHAbtdbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbGYbHBbHobHCbHCbHCbHobHqbHebHnbHebHebHebHebHebHqbGYbcSbcSbcSbcSbcSbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcQ +bcQbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbzWbtdbHDbubbHEbtdbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbGYbHFbHobHGbHGbHGbHobHqbHebHnbHebHebHebHebHebHHbGYbcSbcSbcSbcSbcSbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcQ +bcQbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbtdbvjbubbHIbtdbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbGYbHJbHobHKbHKbHKbHobHqbHebHnbHebHebHebHebHebHqbGYbcSbcSbcSbcSbcSbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcQ +bcQbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbGdbvjbHLbwmbFHbGZbGZbGZbGZbtdbtdbtdbGZbGZbGZbGZbHMbHNbHObHObHObHObHObHPbHebHQbHObHObHObHObHObHPbGYbcSbcSbcSbcSbcSbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcQ +bcQbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbGdbHRbHSbHTbHUbHUbHUbHUbHUbHUbHUbHUbHUbHVbHWbHWbHVbHXbHebHebHebHebHebHebHebHebHebHebHebHebHebHYbGYbcSbcSbcSbcSbcSbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcQ +bcQbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbGdbubbEfbubbubbubbubbubbubbubbubbubbubbHZbIabIabIbbIcbHebHebHebHebHebHebHebHebHebHebHebIdbHebHebGYbcSbcSbcSbcSbcSbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcQ +bcQbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbGdbwabIebFibubbubbubbubbubbubbvDbubbubbIfbIabIabIfbIgbIhbIhbIhbIhbIhbIhbIhbIibGYbGYbGYbGYbGYbGYbGYbcSbcSbcSbcSbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcQ +bcQbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbIjbtdbtdbtdbFGbFGbFGbFGbFGbtdbtdbtdbFGbIkbIkbIkbHMbIlbHebHebHebHebHebHebHebIcbGYbImbImbInbImbIobGYbcSbcSbcSbcSbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcQ +bcQbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbGYbIpbHebHebHebHebHebHebHebIqbIrbIsbImbImbImbItbGYbcSbcSbcSbcSbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcQ +bcQbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbGYbIubHebHebHebHebHebHebHebHebGYbIvbIwbIwbIxbIybGYbcSbcSbcSbcSbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcQ +bcQbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbGYbIzbHebHebHebIdbHebHebIAbHdbGYbIBbICbIDbIDbIEbGYbcSbcSbcSbcSbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcQ +bcQbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbGYbGYbGYbGYbGYbGYbGYbGYbGYbGYbGYbGYbGYbGYbGYbGYbGYbcSbcSbcSbcSbcSbcSbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcQ +bcQbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbIFbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbIFbcSbcSbcSbcSbcSbcSbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcQ +bcQbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcQ +bcQbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcQ +bcQbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcQ +bcQbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcQ +bcQbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcQ +bcQbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcQ +bcQbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcQ +bcQbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcQ +bcQbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcQ +bcQbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcQ +bcQbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcQ +bcQbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcRbcRbcRbcRbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcQ +bcQbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcRbcRbcRbcRbcSbcSbcSbcSbcSbcRbcRbcRbcSbcRbcRbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcQ +bcQbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcSbcSbcSbcSbcSbcSbcRbcSbcSbcRbcRbcRbcRbcRbcRbcSbcSbcSbcSbcRbcRbcRbcRbcRbcRbcSbcSbcSbcSbcRbcRbcRbcSbcSbcSbcSbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcQ +bcQbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcSbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcSbcRbcRbcRbcSbcSbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcQ +bcQbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcQ +bcQbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcQ +bcQbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcQ +bcQbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcQ +bcQbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcQ +bcQbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcQ +bcQbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcRbcQ +bcQbcQbcQbcQbcQbcQbcQbcQbcQbcQbcQbcQbcQbcQbcQbcQbcQbcQbcQbcQbcQbcQbcQbcQbcQbcQbcQbcQbcQbcQbcQbcQbcQbcQbcQbcQbcQbcQbcQbcQbcQbcQbcQbcQbcQbcQbcQbcQbcQbcQbcQbcQbcQbcQbcQbcQbcQbcQbcQbcQbcQbcQbcQbcQbcQbcQbcQbcQbcQbcQbcQbcQbcQbcQbcQbcQbcQbcQbcQbcQbcQbcQbcQbcQbcQbcQbcQbcQbcQbcQbcQbcQbcQbcQbcQbcQbcQbcQbcQbcQbcQbcQbcQbcQbcQbcQbcQbcQbcQbcQbcQbcQbcQbcQbcQbcQbcQbcQbcQbcQ "} diff --git a/nano/templates/algae_farm_vr.tmpl b/nano/templates/algae_farm_vr.tmpl new file mode 100644 index 0000000000..86a6357b52 --- /dev/null +++ b/nano/templates/algae_farm_vr.tmpl @@ -0,0 +1,63 @@ + +{{if data.errorText }} +