diff --git a/aurorastation.dme b/aurorastation.dme index 87d086782fe..98e98e20c58 100644 --- a/aurorastation.dme +++ b/aurorastation.dme @@ -3965,6 +3965,11 @@ #include "maps\away\away_site\pirate_base\pirate_base_areas.dm" #include "maps\away\away_site\pirate_base\pirate_base_ghostroles.dm" #include "maps\away\away_site\pirate_base\pirate_base_items.dm" +#include "maps\away\away_site\quarantined_outpost\quarantined_outpost.dm" +#include "maps\away\away_site\quarantined_outpost\quarantined_outpost_areas.dm" +#include "maps\away\away_site\quarantined_outpost\quarantined_outpost_holopads.dm" +#include "maps\away\away_site\quarantined_outpost\quarantined_outpost_landmarks.dm" +#include "maps\away\away_site\quarantined_outpost\quarantined_outpost_objects.dm" #include "maps\away\away_site\racers\racers.dm" #include "maps\away\away_site\romanovich\grand_romanovich.dm" #include "maps\away\away_site\romanovich\grand_romanovich_ghostroles.dm" diff --git a/code/__DEFINES/access.dm b/code/__DEFINES/access.dm index 4227934b6f1..b62a4fad38d 100644 --- a/code/__DEFINES/access.dm +++ b/code/__DEFINES/access.dm @@ -886,3 +886,7 @@ #define ACCESS_HIMEO_PATROL_SHIP 253 id = ACCESS_HIMEO_PATROL_SHIP desc = "Himean Military Patrol Vessel" + +#define ACCESS_QUARANTINED_OUTPOST_ENGINEER 254 + id = ACCESS_QUARANTINED_OUTPOST_ENGINEER + desc = "Outpost Nemora, Engineering Clearance" diff --git a/code/__DEFINES/is_helpers.dm b/code/__DEFINES/is_helpers.dm index 6a2d0c9009e..54903e7ea00 100644 --- a/code/__DEFINES/is_helpers.dm +++ b/code/__DEFINES/is_helpers.dm @@ -37,6 +37,8 @@ #define isspaceturf(A) istype(A, /turf/space) +#define ischasm(A) (istype(A, /turf/simulated/floor/exoplanet/abyss) || istype(A, /turf/simulated/abyss)) + #define isghost(A) istype(A, /mob/abstract/ghost) #define isobserver(A) istype(A, /mob/abstract/ghost/observer) diff --git a/code/__HELPERS/global_lists.dm b/code/__HELPERS/global_lists.dm index f4108f0d662..58cc8132421 100644 --- a/code/__HELPERS/global_lists.dm +++ b/code/__HELPERS/global_lists.dm @@ -114,6 +114,9 @@ GLOBAL_LIST_INIT(primary_radio_slot_choice, list("Left Ear", "Right Ear", "Wrist // Used to track fauna spawners on the phoron deposit away site. GLOBAL_LIST_INIT(fauna_spawners, list()) +/// List of spawn points associated with '/obj/effect/organized_fauna_spawner'. It will automatically assign the spawn points in the same Z level as spawner. +GLOBAL_LIST_EMPTY(organized_spawn_points) + /// Visual nets. GLOBAL_LIST_EMPTY_TYPED(visual_nets, /datum/visualnet) /// Camera visualnet. diff --git a/code/game/machinery/computer/computer.dm b/code/game/machinery/computer/computer.dm index 687939b6e53..af0c9eb4295 100644 --- a/code/game/machinery/computer/computer.dm +++ b/code/game/machinery/computer/computer.dm @@ -2,6 +2,7 @@ name = "computer" icon = 'icons/obj/machinery/modular_console.dmi' icon_state = "computer" + layer = ABOVE_HUMAN_LAYER density = 1 anchored = 1.0 idle_power_usage = 300 @@ -76,15 +77,9 @@ set_broken() /obj/machinery/computer/update_icon() - switch(dir) - if(NORTH) - layer = ABOVE_HUMAN_LAYER - if(SOUTH) - reset_plane_and_layer() - if(EAST) - layer = ABOVE_HUMAN_LAYER - if(WEST) - layer = ABOVE_HUMAN_LAYER + + if(dir != SOUTH) + layer = BELOW_WINDOW_LAYER ClearOverlays() if(stat & NOPOWER) set_light(0) diff --git a/code/game/objects/effects/decals/Cleanable/tracks.dm b/code/game/objects/effects/decals/Cleanable/tracks.dm index e29e6754114..52d44a8b422 100644 --- a/code/game/objects/effects/decals/Cleanable/tracks.dm +++ b/code/game/objects/effects/decals/Cleanable/tracks.dm @@ -214,3 +214,39 @@ drydesc = "A dried trail left by someone crawling." coming_state = "trail1" going_state = "trail2" + +/// Spawns footprints, a mapping helper. An example of its use can be seen at: `quarantined_outpost.dmm`. +/obj/abstract/footprint_spawner + name = "blood footprint" + icon = 'icons/effects/map_effects.dmi' + icon_state = "footprint_helper" + /// String. Object path for the track type the spawner will use. + var/trail_path = "footprints" + var/going_dir + /// Blood colour by default. + var/trail_color = COLOR_HUMAN_BLOOD + +/obj/abstract/footprint_spawner/Initialize() + . = ..() + var/turf/T = get_turf(src) + for(var/obj/abstract/footprint_spawner_turn_helper/TH in T) + going_dir = TH.dir // if we have a turn_helper, we will use its direction + if(!going_dir) + going_dir = src.dir + T.add_tracks(text2path("/obj/effect/decal/cleanable/blood/tracks/[trail_path]"), null, src.dir, 0, trail_color) + T.add_tracks(text2path("/obj/effect/decal/cleanable/blood/tracks/[trail_path]"), null, 0, going_dir, trail_color) + qdel(src) + +/obj/abstract/footprint_spawner/oil + name = "oil footprints" + trail_color = COLOR_OIL + +/obj/abstract/footprint_spawner/body + name = "dragged body print" + trail_path = "body" + +/// Used for footprints that take 90 degree turns. This object leads the position of the footprints take a turn to. Place it onto the spawner. +/obj/abstract/footprint_spawner_turn_helper + name = "footprint turn helper" + icon = 'icons/effects/map_effects.dmi' + icon_state = "portal_side_b" diff --git a/code/game/objects/effects/step_triggers.dm b/code/game/objects/effects/step_triggers.dm index a772b4dea44..b60d28e3b2f 100644 --- a/code/game/objects/effects/step_triggers.dm +++ b/code/game/objects/effects/step_triggers.dm @@ -4,6 +4,8 @@ var/affect_ghosts = 0 var/stopper = 1 // stops throwers var/mobs_only = FALSE + /// If true, excludes clientless mobs. + var/players_only = FALSE invisibility = INVISIBILITY_ABSTRACT // nope cant see this shit anchored = TRUE @@ -25,6 +27,10 @@ return if(!ismob(H) && mobs_only) return + if(ismob(H)) + var/mob/living/L = H + if(!L.client && players_only) + return INVOKE_ASYNC(src, PROC_REF(Trigger), H) diff --git a/code/game/objects/structures/barricades/wood.dm b/code/game/objects/structures/barricades/wood.dm index f4bcfb9bdc9..87e3238b716 100644 --- a/code/game/objects/structures/barricades/wood.dm +++ b/code/game/objects/structures/barricades/wood.dm @@ -35,3 +35,11 @@ return . = ..() + +/obj/structure/barricade/wooden/road + name = "road barrier" + desc = "A barrier made of wood. Someone didn't want you crossing this without thought." + icon_state = "roadbarrierwood" + barricade_type = "roadbarrierwood" + health = 50 + maxhealth = 50 diff --git a/code/game/objects/structures/flags_banners.dm b/code/game/objects/structures/flags_banners.dm index c90ef2ef8cd..72c4f0bd7c4 100644 --- a/code/game/objects/structures/flags_banners.dm +++ b/code/game/objects/structures/flags_banners.dm @@ -95,7 +95,7 @@ icon = flag_icon return for(var/obj/A in T) - if(istype(A, /obj/structure/window)) + if(istype(A, /obj/structure/window) || istype(A, /obj/effect/map_effect/window_spawner)) icon = flag_icon return banner_icon = new('icons/obj/structure/flags.dmi', stand_icon) diff --git a/code/game/objects/structures/signs.dm b/code/game/objects/structures/signs.dm index 31606f9c0d0..e2dc20c6e55 100644 --- a/code/game/objects/structures/signs.dm +++ b/code/game/objects/structures/signs.dm @@ -750,3 +750,8 @@ /obj/structure/sign/floor_plaque/peoples_station name = "People's Station Plaque" desc = "A plaque commemorating the founding of the People's Space Station." + +/obj/structure/sign/floor_plaque/quarantined_outpost + name = "SSF Nemora plaque" + desc = "On the plaque's bronze surface, the old emblem of the Alliance of Sovereign Solarian Nations is engraved. Just below it, the text reads: 'SSF Nemora: Research Rooted in Discovery'." + desc_extended = "At the bottom, there is an engraved text stained in dried blood that reads: 'Department of Colonization. Taking necessary steps today, charting the future.'." diff --git a/code/game/objects/structures/urban.dm b/code/game/objects/structures/urban.dm index 59fa21ca9c7..02862770124 100644 --- a/code/game/objects/structures/urban.dm +++ b/code/game/objects/structures/urban.dm @@ -203,7 +203,7 @@ desc = "A stop sign to direct traffic. Sometimes a demand." icon = 'icons/obj/structure/urban/road_signs.dmi' icon_state = "stop" - layer = 9 + layer = STRUCTURE_LAYER anchored = TRUE /obj/structure/road_sign/yield @@ -393,6 +393,12 @@ ABSTRACT_TYPE(/obj/structure/stairs/urban/road_ramp) icon_state = "divider1" anchored = TRUE +/obj/structure/dressing_divider/hospital + name = "hospital curtain" + desc = "Usually comes with hospital beds." + icon_state = "hospitalcurtain" + layer = ABOVE_HUMAN_LAYER + /obj/structure/neon_sign name = "large neon sign" desc = "A bright neon sign, an advertisement of some dystopian sort." @@ -515,6 +521,26 @@ ABSTRACT_TYPE(/obj/structure/stairs/urban/road_ramp) return FALSE return TRUE +/obj/structure/bunk_bed + name = "bunk bed" + desc = "A space-saving solution for living space problems. A symbol of roommate concept." + icon = 'icons/obj/structure/urban/bunk_beds.dmi' + icon_state = "zbunkbed" + density = TRUE + anchored = TRUE + +/obj/structure/bunk_bed/blue + icon_state = "zbunkbed2" + +/obj/structure/bunk_bed/green + icon_state = "zbunkbed3" + +/obj/structure/bunk_bed/black + icon_state = "zbunkbed4" + +/obj/structure/bunk_bed/prison + icon_state = "prisonbed" + /obj/structure/chainlink_fence name = "chainlink industrial fencing" desc = "A tall, imposing metal fence. Not to be confused with the slightly more popular Chainlink of recent years." diff --git a/code/game/objects/structures/window.dm b/code/game/objects/structures/window.dm index f50e4f31f9f..d3a44bb630d 100644 --- a/code/game/objects/structures/window.dm +++ b/code/game/objects/structures/window.dm @@ -607,12 +607,14 @@ smoothing_flags = SMOOTH_MORE canSmoothWith = list( /obj/structure/window/shuttle/scc_space_ship, - /turf/simulated/wall/shuttle/scc_space_ship + /turf/simulated/wall/shuttle/scc_space_ship, + /turf/unsimulated/wall/shuttle/scc_space_ship ) blend_overlay = "-wall" attach_overlay = "attach" can_blend_with = list( /turf/simulated/wall/shuttle/scc_space_ship, + /turf/unsimulated/wall/shuttle/scc_space_ship, /obj/structure/window/shuttle/scc_space_ship ) diff --git a/code/game/sound.dm b/code/game/sound.dm index f24a73f43a5..9a59a56fa57 100644 --- a/code/game/sound.dm +++ b/code/game/sound.dm @@ -1040,3 +1040,17 @@ 'sound/machines/steam_pipe3.ogg', 'sound/machines/steam_pipe4.ogg' ) + +/singleton/sound_category/bear_loud + sounds = list( + 'sound/effects/creatures/bear_loud_1.ogg', + 'sound/effects/creatures/bear_loud_2.ogg', + 'sound/effects/creatures/bear_loud_3.ogg', + 'sound/effects/creatures/bear_loud_4.ogg' + ) + +/singleton/sound_category/robot_talk + sounds = list( + 'sound/effects/creatures/robot_talk_1.ogg', + 'sound/effects/creatures/robot_talk_2.ogg' + ) diff --git a/code/game/turfs/flooring/flooring_.dm b/code/game/turfs/flooring/flooring_.dm index f4c1a6c90ae..11c27aa01d7 100644 --- a/code/game/turfs/flooring/flooring_.dm +++ b/code/game/turfs/flooring/flooring_.dm @@ -274,6 +274,15 @@ color = COLOR_TILED build_type = null +/singleton/flooring/tiling/bitile/middle + icon_base = "bitile_middle" + +/singleton/flooring/tiling/bitile/light + color = COLOR_GRAY70 + +/singleton/flooring/tiling/bitile/light/middle + icon_base = "bitile_middle" + /singleton/flooring/tiling/gridded icon_base = "grid" color = COLOR_GRAY40 diff --git a/code/game/turfs/flooring/flooring_premade_.dm b/code/game/turfs/flooring/flooring_premade_.dm index 35a5778a098..8fd45b8ec98 100644 --- a/code/game/turfs/flooring/flooring_premade_.dm +++ b/code/game/turfs/flooring/flooring_premade_.dm @@ -123,6 +123,10 @@ /turf/simulated/floor/plating/asteroid icon_state = "asteroidplating" +/turf/simulated/floor/plating/asteroid/airless + initial_gas = null + temperature = TCMB + /turf/simulated/floor/tiled/white name = "white floor" icon_state = "white" @@ -320,6 +324,20 @@ tile_decal_state = "bitile_light" color = COLOR_TILED +/turf/simulated/floor/tiled/bitile/middle + icon_state = "bitile_middle" + initial_flooring = /singleton/flooring/tiling/bitile/middle + tile_decal_state = "bitile_light_middle" + +/turf/simulated/floor/tiled/bitile/light + initial_flooring = /singleton/flooring/tiling/bitile/light + color = COLOR_GRAY70 + +/turf/simulated/floor/tiled/bitile/light/middle + icon_state = "bitile_middle" + initial_flooring = /singleton/flooring/tiling/bitile/light/middle + tile_decal_state = "bitile_light_middle" + // ------------------------------- gridded/ridged /turf/simulated/floor/tiled/gridded diff --git a/code/game/turfs/simulated/abyss.dm b/code/game/turfs/simulated/abyss.dm index b4df3595dec..28a83c6bcd3 100644 --- a/code/game/turfs/simulated/abyss.dm +++ b/code/game/turfs/simulated/abyss.dm @@ -9,7 +9,15 @@ /obj/singularity, /obj/structure/lattice, /obj/projectile, - /obj/effect + /obj/effect, + /obj/machinery/light, + /obj/structure/railing, + /obj/structure/stairs_railing, + /obj/structure/platform, + /obj/structure/platform_deco, + /obj/structure/extinguisher_cabinet, + /obj/structure/sign, + /obj/machinery/atmospherics/pipe )) /turf/simulated/abyss/Initialize() @@ -17,7 +25,7 @@ icon_state = "Fill" /turf/simulated/abyss/Entered(atom/movable/AM, atom/oldloc) - if(is_type_in_typecache(forbidden_types)) + if(is_type_in_typecache(AM, forbidden_types)) return TRUE else if(istype(AM, /mob/living)) @@ -34,13 +42,19 @@ return TRUE - else if(istype(AM, /obj/item)) - var/obj/item/I = AM - I.visible_message(SPAN_DANGER("\The [I] falls into \the [src].")) - qdel(I) + else if(istype(AM, /obj/item) || istype(AM, /obj/structure) || istype(AM, /obj/machinery)) + if(locate(/obj/structure/lattice, src)) // Should be safe to be placed upon. + return TRUE + var/obj/O = AM + O.visible_message(SPAN_DANGER("\The [O] falls into \the [src].")) + qdel(O) else ..() /turf/simulated/abyss/is_open() return TRUE + +/turf/simulated/abyss/airless + initial_gas = null + temperature = TCMB diff --git a/code/game/turfs/unsimulated/walls.dm b/code/game/turfs/unsimulated/walls.dm index 1b071c02357..14173f99fe1 100644 --- a/code/game/turfs/unsimulated/walls.dm +++ b/code/game/turfs/unsimulated/walls.dm @@ -87,3 +87,18 @@ smoothing_flags = SMOOTH_MORE icon_state = "map_white" +/turf/unsimulated/wall/shuttle/scc_space_ship/cardinal + name = "reinforced plastitanium alloy wall" + desc = "Effectively impervious to conventional methods of destruction." + icon = 'icons/turf/smooth/scc_ship/scc_ship_exterior.dmi' + icon_state = "map-wall" + smoothing_flags = SMOOTH_MORE + canSmoothWith = list( + /turf/simulated/wall, + /turf/simulated/wall/r_wall, + /turf/unsimulated/wall/shuttle/scc_space_ship, + /turf/simulated/wall/shuttle/scc_space_ship, + /obj/structure/window/shuttle/scc_space_ship, + /obj/machinery/door/airlock + ) + diff --git a/code/modules/effects/map_effects/mob_spawner.dm b/code/modules/effects/map_effects/mob_spawner.dm index f2b79adc9ba..63ddf00f451 100644 --- a/code/modules/effects/map_effects/mob_spawner.dm +++ b/code/modules/effects/map_effects/mob_spawner.dm @@ -14,6 +14,11 @@ var/list/active_mobs = list() var/max_active_mobs = 5 var/list/mob_choices = list() // List of mobs it'll spawn + + /// Cooldown for spawning mobs. A value between min and max will be defined as seconds. + var/min_spawn_cooldown = 5 + var/max_spawn_cooldown = 10 + var/obj/effect/landmark/mob_waypoint/waypoint = null // The spawner automatically detects a waypoint on the same z-level, no need to set this manually /obj/effect/fauna_spawner/Initialize() @@ -44,7 +49,7 @@ active_mobs.Cut(i, i+1) if (length(active_mobs) < max_active_mobs) spawn_mob() - sleep(rand(5 SECONDS, 10 SECONDS)) + sleep(rand(min_spawn_cooldown, max_spawn_cooldown) SECONDS) /obj/effect/fauna_spawner/proc/spawn_mob() if (!mob_choices || !length(mob_choices)) @@ -103,5 +108,101 @@ list(type = /mob/living/simple_animal/hostile/carp, speed = 2) ) +/** + * Opposed to `fauna_spawner`, this spawner allows further customization and checks over spawned mobs, such as: + * * Having multiple spawn points, randomly chosen to spawn mobs. + * * Keeping track of total mob counts inside a single object. + * + * How does it work? + * * This type serves as a single spawner, it detects the spawn points in the same Z level and randomly chooses + */ +/obj/effect/fauna_spawner/organized + name = "Organized mob spawner" + desc = "You are not supposed to see this!" + icon_state = "master_spawner" + + anchored = TRUE + unacidable = TRUE + simulated = FALSE + invisibility = 101 + + min_spawn_cooldown = 20 + max_spawn_cooldown = 25 + max_active_mobs = 15 + + /// Integer, fixed number of mobs that'll be spawned before spawner enters cooldown. + var/spawn_points_to_pick + + /// The number range of mobs that can spawn before spawner enters cooldown. Ignored if 'spawn_points_to_pick' isn't null. + var/min_spawn = 2 + var/max_spawn = 3 + + /// If true, object will avoid spawning multiple mobs on the same point. + var/one_spawn_per_point = FALSE + +/obj/effect/fauna_spawner/organized/spawn_mob() + if (!mob_choices || !length(mob_choices)) + return + var/obj/effect/landmark/organized_spawn_point/SP + var/list/available_points = GLOB.organized_spawn_points.Copy() // we make a copy so 'pick_n_take()' doesn't get rid of instances in global list + var/list/chosen_group = list() + if(LAZYLEN(available_points)) + var/loop_amount + var/obj/effect/spawn_point + loop_amount = !spawn_points_to_pick ? rand(min_spawn, max_spawn) : spawn_points_to_pick // if no value is set we will randomly pick a number for each spawn time + for(var/i in 1 to loop_amount) + spawn_point = one_spawn_per_point ? pick_n_take(available_points) : pick(available_points) + if(spawn_point.z == src.z) + chosen_group += spawn_point + + for(SP in chosen_group) //---- spawning mobs on chosen points + if(length(active_mobs) >= max_active_mobs) // double check if we exceeded the threshold + return + var/turf/T = get_turf(SP) + var/mob_type + var/move_speed = 5 + var/choice + choice = pick(mob_choices) + if (islist(choice)) + mob_type = choice["type"] + move_speed = choice["speed"] + else + mob_type = choice + var/mob/living/new_mob = new mob_type(T) + active_mobs += new_mob + + RegisterSignal(new_mob, COMSIG_GLOB_MOB_DEATH, PROC_REF(mob_died)) + if(src.waypoint && istype(new_mob, /mob/living/simple_animal/hostile)) + var/mob/living/simple_animal/hostile/H = new_mob + H.target_waypoint = src.waypoint + INVOKE_ASYNC(src, PROC_REF(lead_the_mob), H, waypoint, move_speed) + +/obj/effect/fauna_spawner/organized/proc/lead_the_mob(H, waypoint, move_speed) + if(isturf(src.waypoint.loc)) + GLOB.move_manager.move_towards(H, src.waypoint.loc, move_speed, TRUE) + +// ---- Put your subtypes here + +/obj/effect/fauna_spawner/organized/quarantined_outpost + name = "Quarantined Outpost Spawner" + mob_choices = list( + list(type = /mob/living/simple_animal/hostile/revivable/husked_creature/quarantined_outpost/horde, speed = 5), + list(type = /mob/living/simple_animal/hostile/revivable/abomination/quarantined_outpost/horde, speed = 5) + ) + one_spawn_per_point = TRUE + +/obj/effect/landmark/organized_spawn_point + name = "spawn point" + icon = 'icons/effects/map_effects.dmi' + icon_state = "spawner_spawnpoint" + +/obj/effect/landmark/organized_spawn_point/Initialize() + . = ..() + GLOB.organized_spawn_points += src + +/obj/effect/landmark/organized_spawn_point/Destroy() + GLOB.organized_spawn_points -= src + return ..() + /obj/effect/landmark/mob_waypoint name = "mob waypoint" diff --git a/code/modules/effects/map_effects/screen_shaker.dm b/code/modules/effects/map_effects/screen_shaker.dm index de2f520b376..753b4b5211d 100644 --- a/code/modules/effects/map_effects/screen_shaker.dm +++ b/code/modules/effects/map_effects/screen_shaker.dm @@ -9,10 +9,14 @@ var/shake_radius = 7 // How far the shaking effect extends to. By default it is one screen length. var/shake_duration = 2 // How long the shaking lasts. var/shake_strength = 1 // How much it shakes. + /// If true, each time screen is shaken an earthquake sound will play. + var/play_rumble_sound = FALSE /obj/effect/map_effect/interval/screen_shaker/trigger() for(var/A in GLOB.player_list) var/mob/M = A if(M.z == src.z && get_dist(src, M) <= shake_radius) shake_camera(M, shake_duration, shake_strength) + if(play_rumble_sound) + playsound(M, 'sound/effects/earthquake_rumble.ogg', 80) ..() diff --git a/code/modules/mining/mine_turf_types.dm b/code/modules/mining/mine_turf_types.dm index 750d8844558..c6684439104 100644 --- a/code/modules/mining/mine_turf_types.dm +++ b/code/modules/mining/mine_turf_types.dm @@ -98,6 +98,10 @@ footstep_sound = /singleton/sound_category/asteroid_footstep +/turf/simulated/floor/exoplanet/basalt/airless + initial_gas = null + temperature = TCMB + /turf/simulated/floor/exoplanet/basalt/cave name = "dense basalt" diff --git a/code/modules/mob/living/simple_animal/simple_animal.dm b/code/modules/mob/living/simple_animal/simple_animal.dm index 149ab11c7e8..af6ecb08243 100644 --- a/code/modules/mob/living/simple_animal/simple_animal.dm +++ b/code/modules/mob/living/simple_animal/simple_animal.dm @@ -33,6 +33,8 @@ var/blood_overlay_icon = 'icons/mob/npc/blood_overlay.dmi' var/blood_state = BLOOD_NONE var/image/blood_overlay + /// If true, `handle_blood()` will run without handling blood overlays. Useful for the cases if Byond unable to handle overlay shenanigans happening in your mob. + var/bypass_blood_overlay = FALSE /// If the animal is bleeding. var/bleeding = FALSE @@ -255,6 +257,11 @@ GC_TEMPORARY_HARDDEL /mob/living/simple_animal/Move(NewLoc, direct) + // this is a janky way to prevent mobs wandering into chasms, but allows them to be thrown into it by someone else if the mob is dead + if(ischasm(NewLoc)) + var/obj/structure/lattice/L = locate(/obj/structure/lattice) in NewLoc + if(!L && stat != DEAD) + return . = ..() if(.) if(src.nutrition && src.stat != DEAD && hunger_enabled) @@ -430,7 +437,7 @@ purge -= 1 /mob/living/simple_animal/proc/handle_blood(var/force_reset = FALSE) - if(!blood_overlay_icon) + if(!blood_overlay_icon && !bypass_blood_overlay) return if(blood_amount <= 0 && stat != DEAD) @@ -459,7 +466,7 @@ blood_splatter(src, null, TRUE, sourceless_color = blood_type) blood_amount -= 3 - if(force_reset || current_blood_state != blood_state) + if((force_reset || current_blood_state != blood_state) && !bypass_blood_overlay) if(blood_overlay) CutOverlays(blood_overlay) if(blood_state == BLOOD_NONE) diff --git a/code/modules/overmap/exoplanets/decor/flora/_rock.dm b/code/modules/overmap/exoplanets/decor/flora/_rock.dm index 9a154ad8f62..fac37261015 100644 --- a/code/modules/overmap/exoplanets/decor/flora/_rock.dm +++ b/code/modules/overmap/exoplanets/decor/flora/_rock.dm @@ -19,6 +19,22 @@ . = ..() icon_state = "lavarocks[rand(1,3)]" +/obj/structure/flora/rock/stalagmite + name = "stalagmite" + desc = "A pointy pile of rocks." + icon_state = "stalagmite1" + +/obj/structure/flora/rock/stalagmite/random/Initialize(mapload) + . = ..() + icon_state = "stalagmite[rand(1,4)]" + +/obj/structure/flora/rock/stalagmite/brown + icon = 'icons/obj/flora/rocks_brown.dmi' + +/obj/structure/flora/rock/stalagmite/brown/random/Initialize(mapload) + . = ..() + icon_state = "stalagmite[rand(1,6)]" + /obj/structure/flora/rock/ice name = "ice" desc = "A large formation made of ice." diff --git a/code/modules/overmap/exoplanets/decor/turfs/abyss.dm b/code/modules/overmap/exoplanets/decor/turfs/abyss.dm index 249ba14979b..7b2bbb9dedf 100644 --- a/code/modules/overmap/exoplanets/decor/turfs/abyss.dm +++ b/code/modules/overmap/exoplanets/decor/turfs/abyss.dm @@ -9,7 +9,15 @@ /obj/singularity, /obj/structure/lattice, /obj/projectile, - /obj/effect + /obj/effect, + /obj/machinery/light, + /obj/structure/railing, + /obj/structure/stairs_railing, + /obj/structure/platform, + /obj/structure/platform_deco, + /obj/structure/extinguisher_cabinet, + /obj/structure/sign, + /obj/machinery/atmospherics/pipe )) has_resources = FALSE @@ -18,7 +26,7 @@ icon_state = "Fill" /turf/simulated/floor/exoplanet/abyss/Entered(atom/movable/AM, atom/oldloc) - if(is_type_in_typecache(forbidden_types)) + if(is_type_in_typecache(AM, forbidden_types)) return TRUE else if(istype(AM, /mob/living)) @@ -35,10 +43,12 @@ return TRUE - else if(istype(AM, /obj/item)) - var/obj/item/I = AM - I.visible_message(SPAN_DANGER("\The [I] falls into \the [src].")) - qdel(I) + else if(istype(AM, /obj/item) || istype(AM, /obj/structure) || istype(AM, /obj/machinery)) + if(locate(/obj/structure/lattice, src)) // Should be safe to be placed upon. + return TRUE + var/obj/O = AM + O.visible_message(SPAN_DANGER("\The [O] falls into \the [src].")) + qdel(O) else ..() diff --git a/code/modules/power/lights/fixtures.dm b/code/modules/power/lights/fixtures.dm index ce662d1469c..cc337b8b451 100644 --- a/code/modules/power/lights/fixtures.dm +++ b/code/modules/power/lights/fixtures.dm @@ -33,6 +33,8 @@ var/obj/item/light/inserted_light = /obj/item/light/tube var/fitting = "tube" var/must_start_working = FALSE // Whether the bulb can break during Initialize or not + /// If true, light sources have 50% chance to be broken instead after Initialize. + var/maybe_broken = FALSE var/switchcount = 0 // count of number of times switched on/off // this is used to calc the probability the light burns out @@ -78,108 +80,6 @@ if(cell) . += "The charge meter reads [round((cell.charge / cell.maxcharge) * 100, 0.1)]%." -/obj/machinery/light/skrell - base_state = "skrell" - icon_state = "skrell_empty" - supports_nightmode = FALSE - fitting = "skrell" - bulb_is_noisy = FALSE - light_type = /obj/item/light/tube - inserted_light = /obj/item/light/tube - brightness_power = 0.45 - brightness_color = LIGHT_COLOR_PURPLE - -/obj/machinery/light/floor - name = "floor lighting fixture" - icon_state = "floortube_example" - base_state = "floortube" - desc = "A lighting fixture. This one is set into the floor." - layer = ABOVE_TILE_LAYER - fitting_has_empty_icon = TRUE - fitting_is_on_floor = TRUE - -// the smaller bulb light fixture - -/obj/machinery/light/small - icon_state = "bulb_preview" - base_state = "bulb" - fitting = "bulb" - brightness_range = 5 - brightness_power = 0.45 - brightness_color = LIGHT_COLOR_TUNGSTEN - desc = "A small lighting fixture." - light_type = /obj/item/light/bulb - inserted_light = /obj/item/light/bulb - supports_nightmode = FALSE - bulb_is_noisy = FALSE - -/obj/machinery/light/small/floor - name = "small floor lighting fixture" - icon_state = "floor_example" - base_state = "floor" - desc = "A small lighting fixture. This one is set into the floor." - fitting_is_on_floor = TRUE - layer = ABOVE_TILE_LAYER - -/obj/machinery/light/small/emergency - icon_state = "bulb_emergency_preview" - brightness_range = 6 - brightness_power = 0.45 - brightness_color = LIGHT_COLOR_EMERGENCY_SOFT - randomize_color = FALSE - -/obj/machinery/light/small/broken - status = LIGHT_BROKEN - icon_state = "bulb_broken_preview" - -/obj/machinery/light/small/red - brightness_range = 2.5 - brightness_power = 0.45 - brightness_color = LIGHT_COLOR_RED - randomize_color = FALSE - -/obj/machinery/light/colored/blue - brightness_color = LIGHT_COLOR_BLUE - randomize_color = FALSE - -/obj/machinery/light/colored/red - brightness_color = LIGHT_COLOR_RED - randomize_color = FALSE - icon_state = "tube_red_preview" - -/obj/machinery/light/colored/violet - brightness_color = LIGHT_COLOR_VIOLET - randomize_color = FALSE - icon_state = "tube_violet_preview" - -/obj/machinery/light/colored/decayed - brightness_color = LIGHT_COLOR_DECAYED - randomize_color = FALSE - icon_state = "tube_decayed_preview" - -/obj/machinery/light/colored/dying - brightness_color = LIGHT_COLOR_DYING - randomize_color = FALSE - icon_state = "tube_decayed_preview" - -/obj/machinery/light/broken - status = LIGHT_BROKEN - icon_state = "tube_broken_preview" - -/obj/machinery/light/spot - name = "spotlight fixture" - icon_state = "tube_empty" - desc = "An extremely powerful lighting fixture." - fitting = "large tube" - light_type = /obj/item/light/tube/large - inserted_light = /obj/item/light/tube/large - brightness_range = 12 - brightness_power = 3.5 - supports_nightmode = FALSE - -/obj/machinery/light/built - start_with_cell = FALSE - /obj/machinery/light/built/Initialize() status = LIGHT_EMPTY stat |= MAINT @@ -217,13 +117,13 @@ if (!must_start_working && mapload && loc && isNotAdminLevel(z)) switch(fitting) if("tube") - if(prob(2)) + if(prob(2) || (maybe_broken && prob(50))) broken(1) if("bulb") - if(prob(5)) + if(prob(5) || (maybe_broken && prob(50))) broken(1) if("large tube") - if(prob(1)) + if(prob(1) || (maybe_broken && prob(50))) broken(1) if(randomize_color) @@ -739,3 +639,175 @@ . = ..() brightness_color = initial(brightness_color) update() + +/* +############################## + LIGHT SUBTYPES +############################## +*/ + +//---- Tube lights + +/obj/machinery/light/built + start_with_cell = FALSE + +/obj/machinery/light/broken + status = LIGHT_BROKEN + icon_state = "tube_broken_preview" + +/obj/machinery/light/maybe_broken + maybe_broken = TRUE + icon_state = "tube_maybe_broken_preview" + +/obj/machinery/light/maybe_broken/decayed + brightness_color = LIGHT_COLOR_DECAYED + randomize_color = FALSE + +/obj/machinery/light/skrell + base_state = "skrell" + icon_state = "skrell_empty" + supports_nightmode = FALSE + fitting = "skrell" + bulb_is_noisy = FALSE + light_type = /obj/item/light/tube + inserted_light = /obj/item/light/tube + brightness_power = 0.45 + brightness_color = LIGHT_COLOR_PURPLE + +/obj/machinery/light/spot + name = "spotlight fixture" + icon_state = "tube_empty" + desc = "An extremely powerful lighting fixture." + fitting = "large tube" + light_type = /obj/item/light/tube/large + inserted_light = /obj/item/light/tube/large + brightness_range = 12 + brightness_power = 3.5 + supports_nightmode = FALSE + +/obj/machinery/light/colored/blue + brightness_color = LIGHT_COLOR_BLUE + randomize_color = FALSE + +/obj/machinery/light/colored/red + brightness_color = LIGHT_COLOR_RED + randomize_color = FALSE + icon_state = "tube_red_preview" + +/obj/machinery/light/colored/violet + brightness_color = LIGHT_COLOR_VIOLET + randomize_color = FALSE + icon_state = "tube_violet_preview" + +/obj/machinery/light/colored/decayed + brightness_color = LIGHT_COLOR_DECAYED + randomize_color = FALSE + icon_state = "tube_decayed_preview" + +/obj/machinery/light/colored/dying + brightness_color = LIGHT_COLOR_DYING + randomize_color = FALSE + icon_state = "tube_decayed_preview" + +/obj/machinery/light/colored/decayed/dimmed + brightness_power = 0.2 + +//---- Floor lights + +/obj/machinery/light/floor + name = "floor lighting fixture" + icon_state = "floortube_example" + base_state = "floortube" + desc = "A lighting fixture. This one is set into the floor." + layer = ABOVE_TILE_LAYER + fitting_has_empty_icon = TRUE + fitting_is_on_floor = TRUE + +/obj/machinery/light/floor/broken + status = LIGHT_BROKEN + icon_state = "floortube" + +/obj/machinery/light/floor/maybe_broken + maybe_broken = TRUE + icon_state = "floortube_maybe_broken_preview" + +/obj/machinery/light/floor/maybe_broken/decayed + brightness_color = LIGHT_COLOR_DECAYED + randomize_color = FALSE + +/obj/machinery/light/floor/maybe_broken + maybe_broken = TRUE + icon_state = "floortube_maybe_broken" + +/obj/machinery/light/floor/decayed + brightness_color = "#fabd6d" + randomize_color = FALSE + brightness_power = 0.3 + +/obj/machinery/light/floor/decayed/brighter + brightness_power = 0.45 + +/obj/machinery/light/floor/decayed/brighter/broken + status = LIGHT_BROKEN + icon_state = "floortube" + +//---- Small bulb lights + +/obj/machinery/light/small + icon_state = "bulb_preview" + base_state = "bulb" + fitting = "bulb" + brightness_range = 5 + brightness_power = 0.45 + brightness_color = LIGHT_COLOR_TUNGSTEN + desc = "A small lighting fixture." + light_type = /obj/item/light/bulb + inserted_light = /obj/item/light/bulb + supports_nightmode = FALSE + bulb_is_noisy = FALSE + +/obj/machinery/light/small/broken + status = LIGHT_BROKEN + icon_state = "bulb_broken_preview" + +/obj/machinery/light/small/maybe_broken + maybe_broken = TRUE + icon_state = "bulb_maybe_broken_preview" + +/obj/machinery/light/small/maybe_broken/decayed + brightness_color = LIGHT_COLOR_DECAYED + randomize_color = FALSE + +/obj/machinery/light/small/floor + name = "small floor lighting fixture" + icon_state = "floor_example" + base_state = "floor" + desc = "A small lighting fixture. This one is set into the floor." + fitting_is_on_floor = TRUE + layer = ABOVE_TILE_LAYER + +/obj/machinery/light/small/floor/emergency + icon_state = "floor_emergency" + brightness_range = 6 + brightness_power = 0.45 + brightness_color = LIGHT_COLOR_EMERGENCY_SOFT + randomize_color = FALSE + +/obj/machinery/light/small/emergency + icon_state = "bulb_emergency_preview" + brightness_range = 6 + brightness_power = 0.45 + brightness_color = LIGHT_COLOR_EMERGENCY_SOFT + randomize_color = FALSE + +/obj/machinery/light/small/red + brightness_range = 2.5 + brightness_power = 0.45 + brightness_color = LIGHT_COLOR_RED + randomize_color = FALSE + +/obj/machinery/light/small/decayed + brightness_range = 6 + brightness_power = 0.45 + brightness_color = LIGHT_COLOR_DECAYED + randomize_color = FALSE diff --git a/code/modules/power/smes_construction.dm b/code/modules/power/smes_construction.dm index 596524c7d3a..050e79cf504 100644 --- a/code/modules/power/smes_construction.dm +++ b/code/modules/power/smes_construction.dm @@ -117,6 +117,11 @@ . = ..() charge = 0 +/obj/machinery/power/smes/buildable/third_party_shuttle/low_charge/Initialize() + . = ..() + output_level = 0 + charge = 10.55e+005 + //for third parties that have their solars autostart, It's slightly upgraded for them /obj/machinery/power/smes/buildable/autosolars/Initialize() . = ..() diff --git a/code/modules/tables/presets.dm b/code/modules/tables/presets.dm index 6c51f193a46..022f2b15fca 100644 --- a/code/modules/tables/presets.dm +++ b/code/modules/tables/presets.dm @@ -4,6 +4,15 @@ icon_state = "solid_preview" table_mat = DEFAULT_TABLE_MATERIAL +/obj/structure/table/standard/flipped + icon_state = "solid_flip0" + flipped = TRUE + +/obj/structure/table/standard/flipped/Initialize() + . = ..() + if(dir != NORTH) + layer = ABOVE_HUMAN_LAYER + /obj/structure/table/steel icon = 'icons/obj/structure/tables/steel_table.dmi' icon_state = "steel_preview" diff --git a/html/changelogs/kano-dot-outpost_nemora.yml b/html/changelogs/kano-dot-outpost_nemora.yml new file mode 100644 index 00000000000..b0130bbc885 --- /dev/null +++ b/html/changelogs/kano-dot-outpost_nemora.yml @@ -0,0 +1,7 @@ +author: Kano + +delete-after: True + +changes: + - rscadd: "Added an interactive away site, Outpost Nemora. Lot's of traps, horde cleaning and some story!" + - rscadd: "Ported storytelling holopads from Paradise Station." diff --git a/icons/effects/map_effects.dmi b/icons/effects/map_effects.dmi index ec51858732b..66a117128ea 100644 Binary files a/icons/effects/map_effects.dmi and b/icons/effects/map_effects.dmi differ diff --git a/icons/mob/AI.dmi b/icons/mob/AI.dmi index 1f4dee2e049..f9275f02d11 100644 Binary files a/icons/mob/AI.dmi and b/icons/mob/AI.dmi differ diff --git a/icons/mob/npc/animal.dmi b/icons/mob/npc/animal.dmi index b38b00a3072..5f9927c4842 100644 Binary files a/icons/mob/npc/animal.dmi and b/icons/mob/npc/animal.dmi differ diff --git a/icons/mob/npc/human.dmi b/icons/mob/npc/human.dmi index 0add7234b23..6f712ebf445 100644 Binary files a/icons/mob/npc/human.dmi and b/icons/mob/npc/human.dmi differ diff --git a/icons/obj/barricades.dmi b/icons/obj/barricades.dmi index 91c75639c9e..bb4283ae9fb 100644 Binary files a/icons/obj/barricades.dmi and b/icons/obj/barricades.dmi differ diff --git a/icons/obj/flora/rocks_brown.dmi b/icons/obj/flora/rocks_brown.dmi new file mode 100644 index 00000000000..48bc04a54a4 Binary files /dev/null and b/icons/obj/flora/rocks_brown.dmi differ diff --git a/icons/obj/flora/rocks_grey.dmi b/icons/obj/flora/rocks_grey.dmi index 3e7ea031266..7aa305aa4c0 100644 Binary files a/icons/obj/flora/rocks_grey.dmi and b/icons/obj/flora/rocks_grey.dmi differ diff --git a/icons/obj/machinery/light.dmi b/icons/obj/machinery/light.dmi index 97111fb43c7..af92130921c 100644 Binary files a/icons/obj/machinery/light.dmi and b/icons/obj/machinery/light.dmi differ diff --git a/icons/obj/structure/bluespace_portal.dmi b/icons/obj/structure/bluespace_portal.dmi new file mode 100644 index 00000000000..75c2066d2b4 Binary files /dev/null and b/icons/obj/structure/bluespace_portal.dmi differ diff --git a/icons/obj/structure/industrial/cranes.dmi b/icons/obj/structure/industrial/cranes.dmi index 8546ffe86aa..2d53e0fad4b 100644 Binary files a/icons/obj/structure/industrial/cranes.dmi and b/icons/obj/structure/industrial/cranes.dmi differ diff --git a/icons/obj/structure/urban/bunk_beds.dmi b/icons/obj/structure/urban/bunk_beds.dmi new file mode 100644 index 00000000000..85485b97927 Binary files /dev/null and b/icons/obj/structure/urban/bunk_beds.dmi differ diff --git a/icons/obj/structure/urban/tailoring.dmi b/icons/obj/structure/urban/tailoring.dmi index 4c203d13b78..dae71ccb074 100644 Binary files a/icons/obj/structure/urban/tailoring.dmi and b/icons/obj/structure/urban/tailoring.dmi differ diff --git a/icons/turf/flooring/tiles.dmi b/icons/turf/flooring/tiles.dmi index f175a7e38a3..62c59281aa7 100644 Binary files a/icons/turf/flooring/tiles.dmi and b/icons/turf/flooring/tiles.dmi differ diff --git a/maps/away/away_site/quarantined_outpost/quarantined_outpost.dm b/maps/away/away_site/quarantined_outpost/quarantined_outpost.dm new file mode 100644 index 00000000000..8fcb0d389de --- /dev/null +++ b/maps/away/away_site/quarantined_outpost/quarantined_outpost.dm @@ -0,0 +1,59 @@ + +// map_template and archetype + +/datum/map_template/ruin/away_site/quarantined_outpost + name = "quarantined outpost" + description = "quarantined outpost." + + prefix = "away_site/quarantined_outpost/" + suffix = "quarantined_outpost.dmm" + + sectors = list(ALL_CRESCENT_EXPANSE_SECTORS, ALL_VOID_SECTORS, SECTOR_WEEPING_STARS, SECTOR_BADLANDS, SECTOR_VALLEY_HALE) + spawn_weight = 1 + spawn_cost = 2 // chonky ruin + id = "quarantined_outpost" + + unit_test_groups = list(1) + +/singleton/submap_archetype/quarantined_outpost + map = "quarantined outpost" + descriptor = "quarantined outpost." + +// overmap visitable + +/obj/effect/overmap/visitable/sector/quarantined_outpost + name = "Degraded Distress Signal" + desc = "\ + Scans reveal a facility carved inside a large asteroid, not registered in the current starmap. Systems indicate minimal power activity. \ + Handshake protocols are unresponsive. Failed to communicate with docking hangar subsystems. \ + Outpost transponders are connected to an auxiliary power source and are transmitting a corrupted distress signal, details unknown. \ + The facility has been under quarantine protocols for \[unknown\] amount of time. \ + Multiple unidentified life forms are detected within. \ + " + + static_vessel = TRUE + generic_object = FALSE + icon = 'icons/obj/overmap/overmap_stationary.dmi' + icon_state = "outpost2" + color = "#D6D9DD" + + initial_generic_waypoints = list( + // asteroid landing marks + "nav_quarantined_outpost_asteroid_1a", + "nav_quarantined_outpost_asteroid_1b", + "nav_quarantined_outpost_asteroid_1c", + "nav_quarantined_outpost_asteroid_1d", + "nav_quarantined_outpost_asteroid_2a", + "nav_quarantined_outpost_asteroid_2b", + "nav_quarantined_outpost_asteroid_2c", + "nav_quarantined_outpost_asteroid_2d", + // space + "nav_quarantined_outpost_space_1a", + "nav_quarantined_outpost_space_1b", + "nav_quarantined_outpost_space_1c", + "nav_quarantined_outpost_space_1d", + "nav_quarantined_outpost_space_2a", + "nav_quarantined_outpost_space_2b", + "nav_quarantined_outpost_space_2c", + "nav_quarantined_outpost_space_2d" + ) diff --git a/maps/away/away_site/quarantined_outpost/quarantined_outpost.dmm b/maps/away/away_site/quarantined_outpost/quarantined_outpost.dmm new file mode 100644 index 00000000000..7fbb3311645 --- /dev/null +++ b/maps/away/away_site/quarantined_outpost/quarantined_outpost.dmm @@ -0,0 +1,102094 @@ +//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE +"aad" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/universal, +/obj/effect/floor_decal/industrial/loading/yellow{ + dir = 1 + }, +/turf/simulated/floor/tiled/dark, +/area/quarantined_outpost/engineering/atmospherics) +"abz" = ( +/obj/random/dirt_75, +/obj/random/dirt_75, +/obj/structure/cable{ + icon_state = "1-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/quarantined_outpost/dorm_hallway) +"abK" = ( +/obj/effect/floor_decal/corner/yellow{ + dir = 10 + }, +/obj/random/dirt_75, +/turf/simulated/floor/tiled/gunmetal, +/area/quarantined_outpost/engineering/winch_room) +"acv" = ( +/obj/structure/lattice/catwalk/indoor/grate/dark, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/obj/structure/cable{ + icon_state = "1-8" + }, +/turf/simulated/floor/plating, +/area/quarantined_outpost/engineering) +"adU" = ( +/obj/machinery/vending/lavatory, +/obj/effect/floor_decal/industrial/outline/grey, +/obj/random/dirt_75, +/turf/simulated/floor/marble, +/area/quarantined_outpost/gym) +"adW" = ( +/obj/machinery/door/firedoor, +/obj/effect/floor_decal/industrial/hatch_door/yellow{ + dir = 1 + }, +/obj/machinery/door/airlock/glass, +/turf/simulated/floor/tiled/full, +/area/quarantined_outpost/reception) +"aek" = ( +/obj/effect/floor_decal/corner_wide/paleblue{ + dir = 9 + }, +/obj/effect/landmark/quarantined_outpost/canister_spawn, +/turf/simulated/floor/tiled/airless, +/area/quarantined_outpost/security) +"aes" = ( +/obj/random/dirt_75, +/obj/random/dirt_75, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 + }, +/obj/abstract/footprint_spawner/body{ + dir = 4 + }, +/turf/simulated/floor/tiled/rust, +/area/quarantined_outpost/reception) +"aew" = ( +/obj/effect/floor_decal/corner/dark_blue{ + dir = 4 + }, +/obj/random/dirt_75, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/quarantined_outpost/dorm_hallway) +"aeR" = ( +/obj/effect/floor_decal/corner/dark_green{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/quarantined_outpost/gym) +"aeV" = ( +/obj/random/dirt_75, +/obj/random/dirt_75, +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/simulated/floor/plating, +/area/quarantined_outpost/cafeteria/maintenance) +"aeW" = ( +/obj/random/dirt_75, +/turf/simulated/floor/tiled/white, +/area/quarantined_outpost/medbay) +"afx" = ( +/obj/effect/floor_decal/corner/dark_blue{ + dir = 5 + }, +/obj/structure/sign/urban/restroom{ + pixel_y = 44; + pixel_x = 2 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/effect/landmark/maybe_cut_cable, +/turf/simulated/floor/tiled/rust, +/area/quarantined_outpost/dorm_hallway) +"afH" = ( +/obj/machinery/door/airlock/hatch{ + dir = 4 + }, +/obj/random/dirt_75, +/turf/simulated/floor/airless, +/area/quarantined_outpost/auxiliary_power) +"agk" = ( +/obj/effect/floor_decal/corner/yellow{ + dir = 10 + }, +/obj/random/dirt_75, +/obj/machinery/light/small/broken, +/obj/structure/table/standard, +/turf/simulated/floor/tiled, +/area/quarantined_outpost/engineering) +"ahx" = ( +/obj/abstract/footprint_spawner/body{ + dir = 1 + }, +/obj/structure/extinguisher_cabinet/east, +/obj/effect/floor_decal/corner/yellow{ + dir = 4 + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 8 + }, +/turf/simulated/floor/tiled/gunmetal, +/area/quarantined_outpost/engineering) +"ahJ" = ( +/obj/effect/floor_decal/spline/plain/purple{ + dir = 4 + }, +/obj/effect/decal/cleanable/floor_damage/rust, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled/light, +/area/quarantined_outpost/research) +"ahN" = ( +/obj/effect/floor_decal/industrial/outline_door/yellow{ + dir = 4 + }, +/obj/random/dirt_75, +/obj/structure/cable{ + icon_state = "1-4" + }, +/obj/effect/decal/cleanable/floor_damage/rust, +/turf/simulated/floor/tiled, +/area/quarantined_outpost/engineering) +"aio" = ( +/obj/structure/railing/mapped{ + dir = 4 + }, +/obj/structure/table/reinforced/steel, +/obj/random/dirt_75, +/turf/simulated/floor/tiled/dark/full, +/area/quarantined_outpost/engineering/atmospherics) +"aix" = ( +/obj/effect/floor_decal/industrial/hatch_door/medical, +/obj/machinery/door/firedoor{ + dir = 4 + }, +/obj/effect/decal/cleanable/floor_damage/random_broken, +/obj/effect/decal/cleanable/molten_item, +/obj/structure/cable{ + 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/dark/full, +/area/quarantined_outpost/research) +"aiI" = ( +/obj/machinery/door/firedoor, +/obj/effect/decal/cleanable/floor_damage/random_broken, +/obj/effect/decal/cleanable/molten_item, +/obj/item/stack/material/steel{ + pixel_y = -4; + pixel_x = -8 + }, +/obj/random/dirt_75, +/obj/abstract/footprint_spawner{ + dir = 1 + }, +/turf/simulated/floor/tiled/dark/full, +/area/quarantined_outpost/cafeteria) +"aiK" = ( +/obj/effect/floor_decal/industrial/hatch/yellow, +/obj/machinery/door/firedoor{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark/full, +/area/quarantined_outpost/engineering/atmospherics) +"ajq" = ( +/obj/structure/bed/stool/chair{ + dir = 1 + }, +/obj/effect/floor_decal/corner/yellow{ + dir = 10 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/effect/decal/cleanable/floor_damage/rust, +/turf/simulated/floor/tiled/gunmetal, +/area/quarantined_outpost/engineering) +"aju" = ( +/obj/structure/closet/body_bag, +/obj/random/dirt_75, +/turf/simulated/floor/tiled/white, +/area/quarantined_outpost/medbay) +"ajN" = ( +/obj/effect/floor_decal/corner_wide/lime/diagonal, +/obj/structure/cable{ + icon_state = "2-8" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 1 + }, +/turf/simulated/floor/tiled/white, +/area/quarantined_outpost/medbay) +"ajX" = ( +/obj/structure/lattice/catwalk/indoor/grate/light, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/structure/cable{ + icon_state = "2-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 1 + }, +/turf/simulated/floor/plating, +/area/quarantined_outpost/research) +"ake" = ( +/obj/effect/floor_decal/corner_wide/paleblue{ + dir = 6 + }, +/obj/random/dirt_75, +/obj/random/dirt_75, +/turf/simulated/floor/tiled/airless, +/area/quarantined_outpost/security) +"akq" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, +/obj/structure/lattice/catwalk/indoor/grate/dark, +/turf/simulated/floor/plating, +/area/quarantined_outpost/engineering/atmospherics) +"akt" = ( +/obj/structure/lattice/catwalk/indoor/grate/dark, +/obj/abstract/footprint_spawner{ + dir = 8 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/simulated/floor/plating, +/area/quarantined_outpost/north_east_hallway/maintenance) +"alm" = ( +/obj/structure/girder, +/turf/simulated/floor/plating, +/area/quarantined_outpost/elevator_hallway) +"aly" = ( +/obj/effect/floor_decal/corner/black{ + dir = 9 + }, +/obj/structure/table/standard, +/obj/random/dirt_75, +/turf/simulated/floor/tiled, +/area/quarantined_outpost/dorm_hallway) +"alB" = ( +/obj/effect/floor_decal/corner_wide/paleblue{ + dir = 6 + }, +/obj/random/dirt_75, +/obj/machinery/light/small/maybe_broken/decayed{ + dir = 4 + }, +/turf/simulated/floor/tiled/airless, +/area/quarantined_outpost/security) +"alM" = ( +/obj/machinery/computer/terminal/inactive{ + dir = 8 + }, +/obj/effect/floor_decal/industrial/outline/research, +/obj/random/dirt_75, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled/bitile{ + dir = 1 + }, +/area/quarantined_outpost/research) +"ame" = ( +/turf/simulated/wall/shuttle/dark/cardinal/coalition, +/area/quarantined_outpost/cargo_bay) +"aml" = ( +/obj/effect/floor_decal/corner/yellow, +/obj/machinery/light/maybe_broken/decayed, +/turf/simulated/floor/tiled/gunmetal, +/area/quarantined_outpost/engineering) +"amn" = ( +/obj/effect/floor_decal/corner_wide/lime{ + dir = 10 + }, +/obj/structure/bed/stool/chair{ + dir = 1 + }, +/obj/random/dirt_75, +/turf/simulated/floor/tiled/white, +/area/quarantined_outpost/medbay) +"anj" = ( +/obj/effect/decal/cleanable/molten_item, +/obj/effect/decal/cleanable/floor_damage/random_broken, +/turf/simulated/floor/plating, +/area/quarantined_outpost/research/containment) +"anU" = ( +/obj/effect/floor_decal/spline/plain/black{ + dir = 4 + }, +/obj/random/dirt_75, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/turf/simulated/floor/tiled, +/area/quarantined_outpost/gym) +"aoe" = ( +/obj/effect/floor_decal/spline/plain/black{ + dir = 8 + }, +/obj/effect/floor_decal/industrial/outline_door/yellow{ + dir = 1 + }, +/obj/effect/decal/cleanable/floor_damage/rust, +/obj/effect/decal/cleanable/blood, +/turf/simulated/floor/tiled/rust, +/area/quarantined_outpost/cargo_bay) +"aog" = ( +/obj/random/loot, +/obj/structure/bed/sleeping_bag{ + color = "#5C4F3E" + }, +/turf/simulated/floor/exoplanet/basalt, +/area/quarantined_outpost/engineering/atmospherics) +"aoq" = ( +/obj/effect/floor_decal/corner_wide/paleblue{ + dir = 10 + }, +/obj/machinery/computer/operating, +/obj/random/dirt_75, +/turf/simulated/floor/tiled/white, +/area/quarantined_outpost/medbay) +"apa" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/quarantined_outpost/entrance_lobby) +"api" = ( +/turf/simulated/mineral/lava, +/area/quarantined_outpost/cafeteria) +"apN" = ( +/obj/random/dirt_75, +/obj/effect/floor_decal/industrial/warning{ + dir = 4 + }, +/obj/effect/landmark/quarantined_outpost/canister_spawn, +/turf/simulated/floor/tiled/dark/full, +/area/quarantined_outpost/engineering/winch_room) +"aqJ" = ( +/obj/random/dirt_75, +/obj/random/dirt_75, +/turf/simulated/floor/tiled/bitile/middle, +/area/quarantined_outpost/cafeteria) +"aqZ" = ( +/obj/effect/floor_decal/industrial/outline_straight/yellow{ + dir = 8 + }, +/obj/effect/decal/cleanable/floor_damage/rust, +/turf/simulated/floor/tiled/ridged, +/area/quarantined_outpost/server_relay/north_west) +"arn" = ( +/obj/effect/floor_decal/corner/yellow{ + dir = 5 + }, +/obj/random/dirt_75, +/obj/machinery/door/window/brigdoor/northright, +/obj/effect/decal/cleanable/floor_damage/rust, +/turf/simulated/floor/tiled/dark, +/area/quarantined_outpost/engineering/winch_room) +"arq" = ( +/obj/machinery/door/airlock/maintenance_hatch{ + dir = 1; + name = "Operating Room (DANGER. KEEP AWAY)"; + frequency = 1515; + id_tag = "quarantined_outpost_portal_airlock_interior"; + locked = 1 + }, +/obj/abstract/footprint_spawner/body{ + dir = 1 + }, +/obj/random/dirt_75, +/obj/machinery/embedded_controller/radio/airlock/access_controller{ + id_tag = "quarantined_outpost_portal_airlock_control"; + name = "Operating Room Airlock Access Console"; + pixel_x = 38; + tag_exterior_door = "quarantined_outpost_portal_airlock_exterior"; + tag_interior_door = "quarantined_outpost_portal_airlock_interior"; + frequency = 1515 + }, +/obj/machinery/access_button{ + command = "cycle_interior"; + frequency = 1515; + master_tag = "quarantined_outpost_portal_airlock_control"; + name = "Operating Room Airlock Access"; + pixel_x = 23 + }, +/obj/effect/floor_decal/industrial/hatch_door/yellow{ + dir = 1 + }, +/turf/simulated/floor/tiled/dark/full, +/area/quarantined_outpost/research) +"arE" = ( +/obj/effect/floor_decal/corner_wide/lime/full{ + dir = 1 + }, +/obj/structure/flora/pottedplant/dead{ + pixel_y = 9 + }, +/turf/simulated/floor/tiled/white, +/area/quarantined_outpost/medbay) +"asb" = ( +/obj/effect/floor_decal/spline/plain/black, +/obj/random/dirt_75, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/gunmetal, +/area/quarantined_outpost/north_east_hallway) +"ati" = ( +/obj/effect/floor_decal/industrial/outline_door/yellow{ + dir = 1 + }, +/obj/effect/floor_decal/industrial/outline_segment/yellow{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/quarantined_outpost/entrance_lobby) +"atq" = ( +/obj/random/dirt_75, +/obj/effect/floor_decal/corner/yellow{ + dir = 1 + }, +/turf/simulated/floor/tiled/gunmetal, +/area/quarantined_outpost/engineering) +"atC" = ( +/obj/machinery/door/airlock/glass_security{ + dir = 4; + welded = 1 + }, +/turf/simulated/floor/tiled/dark/full, +/area/quarantined_outpost/entrance_lobby) +"auf" = ( +/obj/random/dirt_75, +/obj/effect/floor_decal/corner/yellow{ + dir = 8 + }, +/turf/simulated/floor/tiled/gunmetal, +/area/quarantined_outpost/engineering/tunnel) +"aui" = ( +/obj/random/dirt_75, +/obj/structure/cable/orange{ + icon_state = "1-2" + }, +/turf/simulated/floor/plating, +/area/quarantined_outpost/engineering) +"aup" = ( +/obj/machinery/light/small/emergency{ + dir = 1 + }, +/obj/structure/cable/orange{ + icon_state = "4-8" + }, +/obj/random/dirt_75, +/turf/simulated/floor/plating/asteroid/airless, +/area/quarantined_outpost/exterior/powered) +"auA" = ( +/obj/structure/table/reinforced, +/obj/machinery/door/firedoor, +/obj/machinery/door/window/southright, +/turf/simulated/floor/tiled/dark/full, +/area/quarantined_outpost/cargo_bay) +"auU" = ( +/obj/effect/floor_decal/spline/plain/black{ + dir = 5 + }, +/obj/random/dirt_75, +/obj/random/dirt_75, +/turf/simulated/floor/lino, +/area/quarantined_outpost/reception) +"avj" = ( +/obj/effect/floor_decal/spline/plain/grey{ + dir = 5 + }, +/obj/structure/railing/mapped{ + dir = 4 + }, +/obj/structure/table/reinforced/steel, +/obj/item/storage/toolbox/mechanical{ + pixel_x = 1; + pixel_y = 9 + }, +/obj/item/ammo_display{ + pixel_x = -9; + pixel_y = -1 + }, +/obj/item/ammo_display{ + pixel_x = -2; + pixel_y = -1 + }, +/obj/random/dirt_75, +/turf/simulated/floor/reinforced, +/area/quarantined_outpost/security) +"avm" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/obj/effect/landmark/quarantined_outpost/canister_spawn, +/turf/simulated/floor/plating, +/area/quarantined_outpost/north_east_hallway/maintenance) +"avM" = ( +/obj/structure/platform_stairs/full/east_west_cap{ + dir = 8 + }, +/obj/structure/platform/cutout, +/obj/structure/platform{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/dark, +/area/quarantined_outpost/north_east_hallway) +"awa" = ( +/obj/effect/floor_decal/industrial/outline_door/custodial{ + dir = 8 + }, +/obj/effect/floor_decal/industrial/outline_segment/research, +/obj/effect/decal/cleanable/floor_damage/rust, +/turf/simulated/floor/tiled/white, +/area/quarantined_outpost/extraction_lab) +"awi" = ( +/obj/structure/railing/mapped, +/obj/structure/lattice/catwalk/indoor/grate/dark, +/obj/structure/shuttle/engine/heater{ + dir = 1 + }, +/turf/simulated/floor/plating, +/area/quarantined_outpost/cargo_bay) +"awj" = ( +/obj/structure/lattice/catwalk/indoor/grate/dark, +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/simulated/floor/plating, +/area/quarantined_outpost/engineering) +"awp" = ( +/obj/effect/floor_decal/corner/dark_blue{ + dir = 10 + }, +/obj/item/paper/crumpled{ + pixel_x = -1; + pixel_y = -7 + }, +/obj/machinery/light/small/broken, +/turf/simulated/floor/tiled, +/area/quarantined_outpost/entrance_lobby) +"awr" = ( +/obj/random/dirt_75, +/obj/effect/floor_decal/corner/yellow{ + dir = 6 + }, +/turf/simulated/floor/tiled/gunmetal, +/area/quarantined_outpost/engineering) +"aww" = ( +/obj/structure/table/reinforced/steel, +/obj/machinery/door/window/desk/northright, +/turf/simulated/floor/tiled/full, +/area/quarantined_outpost/engineering/tunnel) +"axn" = ( +/obj/effect/floor_decal/corner_wide/lime{ + dir = 10 + }, +/obj/structure/table/standard, +/turf/simulated/floor/tiled/white, +/area/quarantined_outpost/medbay) +"axo" = ( +/obj/machinery/door/airlock, +/obj/machinery/door/firedoor, +/obj/effect/floor_decal/industrial/hatch_door/yellow{ + dir = 1 + }, +/turf/simulated/floor/tiled/white, +/area/quarantined_outpost/gym) +"axt" = ( +/obj/effect/floor_decal/spline/plain/black{ + dir = 8 + }, +/obj/random/dirt_75, +/turf/simulated/floor/tiled, +/area/quarantined_outpost/gym) +"axJ" = ( +/obj/effect/floor_decal/corner/dark_blue{ + dir = 5 + }, +/turf/simulated/floor/tiled, +/area/quarantined_outpost/dorm_hallway) +"axY" = ( +/obj/structure/bed/handrail, +/obj/structure/lattice, +/turf/simulated/floor/plating, +/area/quarantined_outpost/research) +"ayh" = ( +/obj/effect/floor_decal/corner/dark_blue{ + dir = 4 + }, +/obj/structure/bed/stool/chair/folding, +/obj/random/dirt_75, +/obj/effect/decal/cleanable/cobweb2, +/obj/machinery/alarm/north, +/turf/simulated/floor/tiled, +/area/quarantined_outpost/entrance_lobby) +"ayt" = ( +/obj/random/dirt_75, +/obj/random/dirt_75, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/quarantined_outpost/reception) +"ayG" = ( +/obj/structure/tank_wall/oxygen{ + density = 0; + icon_state = "o2-11"; + opacity = 0 + }, +/obj/machinery/atmospherics/portables_connector{ + dir = 8 + }, +/obj/machinery/portable_atmospherics/canister/oxygen, +/turf/simulated/floor/reinforced, +/area/quarantined_outpost/engineering/atmospherics) +"azd" = ( +/obj/effect/floor_decal/corner/dark_blue{ + dir = 9 + }, +/obj/random/dirt_75, +/obj/random/dirt_75, +/obj/abstract/footprint_spawner{ + dir = 8 + }, +/obj/structure/cable{ + icon_state = "1-8" + }, +/turf/simulated/floor/tiled, +/area/quarantined_outpost/north_east_hallway) +"aze" = ( +/obj/structure/lattice/catwalk/indoor/grate/old, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 1 + }, +/turf/simulated/floor/plating, +/area/quarantined_outpost/entrance_lobby) +"azq" = ( +/obj/random/dirt_75, +/obj/random/dirt_75, +/obj/effect/floor_decal/corner_wide/paleblue{ + dir = 4 + }, +/obj/machinery/light/small/maybe_broken/decayed{ + dir = 1 + }, +/turf/simulated/floor/tiled/airless, +/area/quarantined_outpost/security) +"azM" = ( +/obj/structure/lattice/catwalk/indoor/grate/dark, +/turf/simulated/floor/plating, +/area/quarantined_outpost/gym) +"aAi" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/random/dirt_75, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/quarantined_outpost/engineering/atmospherics) +"aAL" = ( +/obj/effect/floor_decal/corner_wide/paleblue{ + dir = 5 + }, +/obj/random/dirt_75, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled/airless, +/area/quarantined_outpost/security) +"aBp" = ( +/obj/effect/decal/cleanable/cobweb, +/obj/effect/floor_decal/corner/dark_blue{ + dir = 9 + }, +/obj/effect/decal/cleanable/floor_damage/rust, +/turf/simulated/floor/tiled/dark, +/area/quarantined_outpost/research) +"aBE" = ( +/obj/effect/floor_decal/corner/grey/diagonal, +/obj/structure/table/stone/marble, +/obj/item/material/knife{ + pixel_x = -9 + }, +/obj/item/storage/box/produce{ + pixel_y = 9; + pixel_x = 6 + }, +/obj/item/reagent_containers/food/condiment/enzyme{ + pixel_y = 3 + }, +/obj/random/dirt_75, +/turf/simulated/floor/tiled/white, +/area/quarantined_outpost/cafeteria) +"aBK" = ( +/obj/machinery/door/firedoor{ + dir = 4 + }, +/obj/effect/floor_decal/industrial/hatch_door/yellow{ + dir = 4 + }, +/obj/machinery/door/airlock/glass_security{ + dir = 4; + locked = 1; + name = "Armoury" + }, +/turf/simulated/floor/tiled/dark/full/airless, +/area/quarantined_outpost/security) +"aBO" = ( +/obj/effect/floor_decal/corner/brown{ + dir = 10 + }, +/obj/random/dirt_75, +/obj/random/dirt_75, +/turf/simulated/floor/tiled, +/area/quarantined_outpost/cargo_bay) +"aBT" = ( +/obj/effect/floor_decal/corner/dark_blue{ + dir = 10 + }, +/obj/random/dirt_75, +/obj/structure/cable{ + icon_state = "1-4" + }, +/turf/simulated/floor/tiled, +/area/quarantined_outpost/elevator_hallway) +"aCI" = ( +/obj/effect/floor_decal/industrial/hatch/yellow, +/obj/machinery/door/firedoor, +/obj/random/dirt_75, +/turf/simulated/floor/tiled/full, +/area/quarantined_outpost/cargo_bay) +"aCX" = ( +/obj/effect/floor_decal/corner_wide/paleblue{ + dir = 4 + }, +/obj/random/dirt_75, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 1 + }, +/turf/simulated/floor/tiled/airless, +/area/quarantined_outpost/security) +"aDw" = ( +/obj/structure/platform/dark{ + dir = 4 + }, +/obj/random/dirt_75, +/turf/simulated/floor/plating, +/area/quarantined_outpost/engineering/atmospherics) +"aDF" = ( +/obj/effect/floor_decal/corner/mauve/diagonal, +/obj/random/dirt_75, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 1 + }, +/turf/simulated/floor/tiled/white, +/area/quarantined_outpost/extraction_lab) +"aEl" = ( +/obj/abstract/footprint_spawner/body{ + dir = 4 + }, +/obj/structure/grille/broken, +/obj/random/dirt_75, +/turf/simulated/floor/plating, +/area/quarantined_outpost/elevator_hallway/maintenance) +"aEq" = ( +/obj/effect/floor_decal/spline/plain/black{ + dir = 4 + }, +/obj/effect/decal/cleanable/floor_damage/rust, +/obj/effect/decal/cleanable/blood, +/turf/simulated/floor/tiled/rust, +/area/quarantined_outpost/cargo_bay) +"aEU" = ( +/obj/random/dirt_75, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/effect/decal/cleanable/floor_damage/rust, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled/gunmetal/full, +/area/quarantined_outpost/engineering/tunnel) +"aFe" = ( +/obj/random/dirt_75, +/obj/machinery/light/small/maybe_broken/decayed{ + dir = 8 + }, +/turf/simulated/floor/marble, +/area/quarantined_outpost/gym) +"aFl" = ( +/obj/structure/lattice/catwalk/indoor/grate/dark, +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/simulated/floor/plating, +/area/quarantined_outpost/north_east_hallway/maintenance) +"aFn" = ( +/obj/structure/table/standard, +/turf/simulated/floor/tiled, +/area/quarantined_outpost/medbay) +"aFG" = ( +/obj/random/dirt_75, +/turf/simulated/floor/tiled/dark, +/area/quarantined_outpost/research) +"aFO" = ( +/obj/random/dirt_75, +/obj/random/dirt_75, +/obj/random/dirt_75, +/turf/simulated/floor/tiled/rust, +/area/quarantined_outpost/dorm_hallway) +"aGm" = ( +/obj/structure/table/rack, +/obj/effect/floor_decal/corner/dark_blue, +/obj/effect/floor_decal/corner/yellow{ + dir = 8 + }, +/obj/effect/floor_decal/corner/yellow{ + dir = 4 + }, +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/item/stack/material/steel{ + amount = 50; + pixel_y = 5; + pixel_x = -3 + }, +/turf/simulated/floor/tiled/dark, +/area/quarantined_outpost/engineering/atmospherics) +"aGL" = ( +/obj/random/dirt_75, +/turf/simulated/floor/tiled/gunmetal, +/area/quarantined_outpost/engineering/tunnel) +"aHN" = ( +/turf/simulated/floor/tiled/white, +/area/quarantined_outpost/medbay) +"aHQ" = ( +/obj/effect/floor_decal/corner/dark_blue{ + dir = 1 + }, +/obj/random/dirt_75, +/obj/random/dirt_75, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/structure/cable{ + icon_state = "1-8" + }, +/turf/simulated/floor/tiled/rust, +/area/quarantined_outpost/elevator_hallway) +"aHT" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/yellow, +/turf/simulated/floor/exoplanet/abyss, +/area/quarantined_outpost/research/containment) +"aIc" = ( +/obj/structure/lattice/catwalk/indoor/grate/dark, +/turf/simulated/floor/plating, +/area/quarantined_outpost/cargo_bay) +"aIy" = ( +/obj/effect/floor_decal/spline/plain/black{ + dir = 1 + }, +/obj/random/dirt_75, +/obj/abstract/footprint_spawner{ + dir = 1 + }, +/obj/machinery/light/small/maybe_broken/decayed{ + dir = 4 + }, +/turf/simulated/floor/tiled/gunmetal, +/area/quarantined_outpost/engineering/tunnel) +"aIU" = ( +/obj/machinery/door/blast/regular{ + dir = 4; + id = "quarantined_outpost_combustion_vent" + }, +/obj/effect/floor_decal/industrial/hatch/yellow, +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/obj/effect/floor_decal/industrial/warning, +/turf/simulated/floor/airless, +/area/quarantined_outpost/engineering/atmospherics) +"aJo" = ( +/obj/effect/decal/cleanable/cobweb, +/obj/machinery/light/small/decayed{ + dir = 1 + }, +/obj/structure/lattice/catwalk/indoor, +/turf/simulated/floor/plating, +/area/quarantined_outpost/cargo_bay) +"aKx" = ( +/obj/effect/floor_decal/spline/plain/black{ + dir = 10 + }, +/obj/structure/bed/stool/chair/padded/brown{ + dir = 1 + }, +/obj/random/dirt_75, +/turf/simulated/floor/lino, +/area/quarantined_outpost/reception) +"aKJ" = ( +/turf/simulated/floor/tiled, +/area/quarantined_outpost/cafeteria) +"aKK" = ( +/obj/structure/cable/orange, +/obj/random/dirt_75, +/obj/random/dirt_75, +/turf/simulated/floor/plating/asteroid/airless, +/area/quarantined_outpost/exterior) +"aLN" = ( +/obj/effect/floor_decal/corner/brown{ + dir = 9 + }, +/obj/structure/bed/stool/padded/red{ + dir = 4 + }, +/obj/random/dirt_75, +/turf/simulated/floor/tiled/dark, +/area/quarantined_outpost/cargo_bay) +"aMQ" = ( +/obj/structure/railing/mapped{ + dir = 8 + }, +/obj/structure/lattice/catwalk/indoor/grate/dark, +/obj/machinery/light/small/decayed, +/obj/effect/decal/rolling_fog, +/turf/simulated/floor/plating, +/area/quarantined_outpost/research) +"aMS" = ( +/obj/effect/floor_decal/corner_wide/lime{ + dir = 4 + }, +/obj/effect/decal/cleanable/floor_damage/rust, +/obj/random/dirt_75, +/turf/simulated/floor/tiled/white, +/area/quarantined_outpost/medbay) +"aNh" = ( +/obj/machinery/atmospherics/portables_connector{ + dir = 8 + }, +/obj/machinery/portable_atmospherics/canister/air, +/turf/simulated/floor/reinforced, +/area/quarantined_outpost/engineering/atmospherics) +"aNy" = ( +/obj/effect/floor_decal/corner/mauve/diagonal, +/obj/random/dirt_75, +/obj/effect/decal/cleanable/blood, +/turf/simulated/floor/tiled/white, +/area/quarantined_outpost/extraction_lab) +"aNX" = ( +/obj/structure/table/reinforced/steel, +/obj/machinery/door/window/desk/northright, +/turf/simulated/floor/tiled/dark/full, +/area/quarantined_outpost/medbay) +"aNY" = ( +/obj/effect/floor_decal/industrial/hatch_door/yellow, +/obj/machinery/door/firedoor{ + dir = 8 + }, +/obj/machinery/door/airlock/service{ + dir = 4; + name = "Custodial Closet" + }, +/turf/simulated/floor/tiled/full, +/area/quarantined_outpost/dorm_hallway) +"aNZ" = ( +/obj/structure/flora/pottedplant/dead{ + pixel_y = 14 + }, +/obj/effect/floor_decal/corner/dark_blue{ + dir = 5 + }, +/obj/effect/floor_decal/spline/plain/black{ + dir = 5 + }, +/turf/simulated/floor/tiled/rust, +/area/quarantined_outpost/reception) +"aOj" = ( +/obj/effect/floor_decal/corner/grey/diagonal, +/obj/random/dirt_75, +/turf/simulated/floor/tiled/white, +/area/quarantined_outpost/cafeteria) +"aOp" = ( +/obj/effect/floor_decal/corner_wide/paleblue/full{ + dir = 4 + }, +/obj/structure/sign/securearea{ + pixel_y = -32 + }, +/turf/simulated/floor/tiled, +/area/quarantined_outpost/security) +"aOr" = ( +/obj/effect/floor_decal/corner/black{ + dir = 9 + }, +/obj/random/dirt_75, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 1 + }, +/obj/machinery/alarm/west, +/turf/simulated/floor/tiled/dark, +/area/quarantined_outpost/entrance_lobby) +"aOQ" = ( +/obj/effect/decal/rolling_fog, +/turf/simulated/floor/tiled/ramp{ + dir = 4 + }, +/area/quarantined_outpost/research) +"aOR" = ( +/obj/effect/floor_decal/corner_wide/lime{ + dir = 6 + }, +/obj/effect/floor_decal/corner_wide/lime{ + dir = 1 + }, +/obj/structure/sink{ + pixel_x = 13; + pixel_y = 1; + dir = 4 + }, +/obj/effect/decal/cleanable/floor_damage/rust, +/obj/random/dirt_75, +/turf/simulated/floor/tiled/white, +/area/quarantined_outpost/medbay) +"aOS" = ( +/obj/random/dirt_75, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 + }, +/turf/simulated/floor/tiled/bitile/light/middle, +/area/quarantined_outpost/research) +"aPD" = ( +/obj/effect/floor_decal/corner/lime{ + dir = 10 + }, +/obj/structure/sign/poster{ + pixel_y = -32 + }, +/obj/random/dirt_75, +/turf/simulated/floor/tiled, +/area/quarantined_outpost/cafeteria) +"aPS" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark/full, +/area/quarantined_outpost/engineering/atmospherics) +"aRf" = ( +/obj/structure/bed/stool/chair/folding, +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 6 + }, +/turf/simulated/floor/wood, +/area/quarantined_outpost/cargo_bay) +"aRp" = ( +/obj/machinery/door/firedoor, +/obj/effect/floor_decal/industrial/hatch_door/yellow{ + dir = 1 + }, +/obj/machinery/door/airlock/glass_security, +/turf/simulated/floor/tiled/full/airless, +/area/quarantined_outpost/security) +"aRH" = ( +/obj/structure/railing/mapped{ + dir = 4 + }, +/obj/effect/floor_decal/industrial/outline_straight/yellow, +/obj/random/dirt_75, +/turf/simulated/floor/tiled/dark/full, +/area/quarantined_outpost/research/containment) +"aSg" = ( +/obj/effect/floor_decal/industrial/warning, +/obj/structure/closet, +/obj/random/dirt_75, +/turf/simulated/floor/plating, +/area/quarantined_outpost/research) +"aSh" = ( +/obj/item/material/stool/chair{ + dir = 1; + pixel_y = -6; + pixel_x = -7 + }, +/obj/effect/floor_decal/corner/yellow{ + dir = 10 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/light/small/maybe_broken/decayed, +/obj/machinery/alarm/south, +/turf/simulated/floor/tiled/gunmetal, +/area/quarantined_outpost/engineering) +"aSj" = ( +/obj/structure/flora/rock/stalagmite/random, +/turf/simulated/floor/exoplanet/basalt, +/area/quarantined_outpost/north_east_hallway) +"aSn" = ( +/obj/effect/shuttle_landmark/quarantined_outpost/shuttle_transit, +/turf/space/transit/north, +/area/space) +"aTe" = ( +/obj/machinery/door/firedoor, +/obj/random/dirt_75, +/turf/simulated/floor/tiled/dark/full, +/area/quarantined_outpost/extraction_lab) +"aTf" = ( +/obj/effect/floor_decal/corner/dark_blue{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/quarantined_outpost/cafeteria) +"aTk" = ( +/obj/machinery/light/floor/maybe_broken/decayed, +/obj/random/dirt_75, +/obj/effect/floor_decal/industrial/outline_straight/yellow{ + dir = 4 + }, +/obj/effect/floor_decal/industrial/outline_straight/yellow{ + dir = 8 + }, +/turf/simulated/floor/tiled/dark/full, +/area/quarantined_outpost/research/containment) +"aTz" = ( +/obj/effect/floor_decal/industrial/outline_door/yellow, +/obj/random/dirt_75, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/quarantined_outpost/reception) +"aTI" = ( +/obj/structure/table/standard, +/obj/item/trash/snack_bowl{ + pixel_y = 6; + pixel_x = -5 + }, +/obj/item/material/kitchen/utensil/spoon/plastic{ + pixel_x = 10; + pixel_y = 3 + }, +/obj/item/reagent_containers/food/drinks/drinkingglass/newglass/coffeecup/sol{ + pixel_x = 6; + pixel_y = -2 + }, +/obj/machinery/light/small{ + dir = 4 + }, +/turf/simulated/floor/tiled/gunmetal, +/area/quarantined_outpost/engineering) +"aTP" = ( +/obj/effect/floor_decal/corner/green/diagonal, +/obj/random/dirt_75, +/obj/random/dirt_75, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 1 + }, +/turf/simulated/floor/tiled/white, +/area/quarantined_outpost/dorm_hallway) +"aUe" = ( +/obj/machinery/papershredder{ + pixel_x = -7 + }, +/obj/structure/filingcabinet/filingcabinet{ + pixel_x = 7 + }, +/obj/effect/floor_decal/industrial/outline/research, +/obj/machinery/light/maybe_broken/decayed, +/turf/simulated/floor/tiled/white, +/area/quarantined_outpost/research) +"aUi" = ( +/obj/effect/floor_decal/corner/dark_blue{ + dir = 10 + }, +/obj/random/dirt_75, +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/simulated/floor/tiled, +/area/quarantined_outpost/elevator_hallway) +"aUB" = ( +/obj/effect/floor_decal/spline/plain/black, +/obj/structure/railing/mapped, +/obj/abstract/footprint_spawner{ + dir = 8 + }, +/turf/simulated/floor/tiled/gunmetal, +/area/quarantined_outpost/engineering/tunnel) +"aUX" = ( +/obj/random/dirt_75, +/obj/effect/floor_decal/corner_wide/paleblue{ + dir = 6 + }, +/turf/simulated/floor/tiled, +/area/quarantined_outpost/elevator_hallway) +"aVi" = ( +/obj/effect/floor_decal/corner/dark_blue{ + dir = 5 + }, +/obj/random/dirt_75, +/turf/simulated/floor/tiled, +/area/quarantined_outpost/dorm_hallway) +"aVj" = ( +/obj/structure/railing/mapped{ + dir = 4 + }, +/obj/structure/lattice/catwalk/indoor/grate/dark, +/obj/structure/reagent_dispensers/watertank, +/obj/effect/decal/rolling_fog, +/turf/simulated/floor/plating, +/area/quarantined_outpost/research) +"aVS" = ( +/obj/structure/lattice/catwalk/indoor/grate/dark, +/obj/structure/bed/stool/chair/office/dark{ + dir = 1 + }, +/turf/simulated/floor/plating, +/area/quarantined_outpost/engineering/atmospherics) +"aWb" = ( +/obj/structure/lattice, +/obj/machinery/atmospherics/pipe/manifold/hidden/yellow, +/turf/simulated/floor/exoplanet/abyss, +/area/quarantined_outpost/research/containment) +"aWF" = ( +/obj/structure/railing/mapped{ + dir = 4 + }, +/turf/simulated/floor/exoplanet/basalt, +/area/quarantined_outpost/cavern/east_cavern) +"aWY" = ( +/obj/effect/floor_decal/spline/plain/black, +/obj/effect/floor_decal/industrial/outline_segment/grey{ + dir = 4 + }, +/obj/machinery/light/small/maybe_broken/decayed, +/obj/random/dirt_75, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled/gunmetal, +/area/quarantined_outpost/north_east_hallway) +"aXH" = ( +/obj/effect/floor_decal/corner_wide/lime/diagonal, +/obj/random/dirt_75, +/obj/random/dirt_75, +/turf/simulated/floor/tiled/white, +/area/quarantined_outpost/medbay) +"aYm" = ( +/obj/effect/floor_decal/corner/mauve/full{ + dir = 4 + }, +/obj/effect/floor_decal/corner/mauve{ + dir = 1 + }, +/obj/structure/filingcabinet/chestdrawer{ + pixel_x = 7 + }, +/obj/structure/filingcabinet{ + pixel_x = -7 + }, +/obj/machinery/light/small/floor/emergency, +/obj/random/dirt_75, +/obj/effect/decal/cleanable/cobweb, +/obj/effect/decal/cleanable/floor_damage/rust, +/turf/simulated/floor/tiled/white, +/area/quarantined_outpost/extraction_lab) +"aYu" = ( +/obj/structure/girder, +/turf/simulated/floor/plating, +/area/quarantined_outpost/gym) +"aYv" = ( +/obj/structure/railing/mapped{ + dir = 4 + }, +/obj/structure/lattice/catwalk/indoor/grate/dark, +/obj/machinery/portable_atmospherics/canister/empty/hydrogen/tritium, +/obj/machinery/light/small/decayed, +/obj/effect/decal/rolling_fog, +/turf/simulated/floor/plating, +/area/quarantined_outpost/research) +"aZg" = ( +/obj/effect/floor_decal/corner/mauve{ + dir = 9 + }, +/turf/simulated/floor/tiled/light, +/area/quarantined_outpost/research) +"aZm" = ( +/obj/structure/table/standard, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/effect/floor_decal/industrial/outline_straight/custodial{ + dir = 4 + }, +/turf/simulated/floor/tiled/light, +/area/quarantined_outpost/research) +"aZp" = ( +/obj/effect/floor_decal/corner/dark_blue{ + dir = 10 + }, +/obj/random/dirt_75, +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/simulated/floor/tiled, +/area/quarantined_outpost/dorm_hallway) +"aZA" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/yellow{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled/ramp{ + dir = 4 + }, +/area/quarantined_outpost/extraction_lab) +"aZT" = ( +/obj/effect/floor_decal/corner_wide/lime{ + dir = 5 + }, +/obj/structure/bed/stool/chair, +/obj/effect/decal/cleanable/floor_damage/rust, +/obj/random/dirt_75, +/turf/simulated/floor/tiled/white, +/area/quarantined_outpost/medbay) +"baO" = ( +/obj/random/dirt_75, +/obj/machinery/door/firedoor{ + dir = 4 + }, +/obj/effect/floor_decal/industrial/hatch_door/yellow, +/obj/effect/decal/cleanable/floor_damage/random_broken, +/obj/effect/decal/cleanable/molten_item, +/obj/abstract/footprint_spawner{ + dir = 4 + }, +/turf/simulated/floor/tiled/full, +/area/quarantined_outpost/cafeteria) +"bbe" = ( +/obj/machinery/atmospherics/pipe/simple/hidden, +/obj/effect/floor_decal/industrial/warning{ + dir = 5 + }, +/obj/structure/filler, +/obj/effect/decal/rolling_fog, +/turf/simulated/floor/reinforced, +/area/quarantined_outpost/research) +"bbk" = ( +/obj/structure/railing/mapped{ + dir = 1; + pixel_y = 8 + }, +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/machinery/computer/terminal/inactive, +/obj/structure/railing/mapped{ + dir = 8; + pixel_y = 8 + }, +/obj/effect/decal/rolling_fog, +/turf/simulated/floor/tiled/dark/full, +/area/quarantined_outpost/research) +"bbF" = ( +/obj/effect/floor_decal/industrial/warning/dust{ + dir = 4 + }, +/obj/random/dirt_75, +/turf/simulated/floor/plating/asteroid/airless, +/area/quarantined_outpost/exterior) +"bbG" = ( +/obj/structure/platform/dark{ + dir = 4 + }, +/obj/structure/structural_support, +/obj/effect/decal/rolling_fog, +/turf/simulated/floor/plating, +/area/quarantined_outpost/research) +"bbO" = ( +/obj/effect/floor_decal/corner/black{ + dir = 6 + }, +/turf/simulated/floor/tiled/dark, +/area/quarantined_outpost/entrance_lobby) +"bcd" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/obj/structure/structural_support, +/turf/simulated/floor/plating, +/area/quarantined_outpost/engineering/atmospherics) +"bcr" = ( +/obj/structure/structural_support, +/obj/effect/floor_decal/industrial/outline/yellow, +/turf/simulated/floor/tiled/gunmetal, +/area/quarantined_outpost/engineering/atmospherics) +"bdb" = ( +/obj/effect/floor_decal/corner/dark_blue{ + dir = 6 + }, +/obj/random/dirt_75, +/obj/structure/extinguisher_cabinet/east, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/quarantined_outpost/entrance_lobby) +"bdq" = ( +/obj/structure/grille/broken, +/obj/random/dirt_75, +/turf/simulated/floor/plating, +/area/quarantined_outpost/cafeteria/maintenance) +"bdN" = ( +/obj/effect/floor_decal/spline/plain/black{ + dir = 8 + }, +/obj/random/dirt_75, +/turf/simulated/floor/tiled, +/area/quarantined_outpost/reception) +"bdX" = ( +/obj/item/ammo_casing/rifle/used{ + pixel_y = 6; + pixel_x = 10 + }, +/obj/item/ammo_casing/rifle/used{ + pixel_y = -1; + pixel_x = 2 + }, +/obj/item/ammo_casing/rifle/used{ + pixel_y = 4; + pixel_x = -5 + }, +/obj/random/dirt_75, +/obj/machinery/light/maybe_broken/decayed{ + dir = 8 + }, +/turf/simulated/floor/tiled/dark/airless, +/area/quarantined_outpost/security) +"bec" = ( +/obj/effect/floor_decal/corner/mauve{ + dir = 5 + }, +/obj/effect/decal/cleanable/floor_damage/rust, +/turf/simulated/floor/tiled/white, +/area/quarantined_outpost/extraction_lab) +"bei" = ( +/obj/effect/floor_decal/corner/dark_blue/diagonal, +/obj/effect/floor_decal/spline/plain/black{ + dir = 4 + }, +/obj/random/dirt_75, +/obj/random/dirt_75, +/turf/simulated/floor/tiled/dark/airless, +/area/quarantined_outpost/security) +"beK" = ( +/obj/structure/platform_deco/dark{ + dir = 8 + }, +/obj/effect/floor_decal/industrial/outline_straight/yellow{ + dir = 10 + }, +/obj/random/dirt_75, +/obj/effect/decal/rolling_fog, +/turf/simulated/floor/plating, +/area/quarantined_outpost/research) +"beP" = ( +/obj/structure/bed/stool/chair/office/dark{ + dir = 8 + }, +/obj/effect/floor_decal/corner_wide/paleblue, +/obj/effect/floor_decal/industrial/outline_segment/emergency_closet{ + dir = 8 + }, +/turf/simulated/floor/tiled/airless, +/area/quarantined_outpost/security) +"beQ" = ( +/obj/effect/floor_decal/corner/brown{ + dir = 6 + }, +/obj/structure/railing/mapped{ + dir = 8 + }, +/obj/random/dirt_75, +/obj/random/dirt_75, +/obj/effect/decal/cleanable/floor_damage/rust, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/quarantined_outpost/cargo_bay) +"beZ" = ( +/obj/structure/closet/crate/trashcart, +/obj/item/storage/bag/trash, +/obj/item/storage/bag/trash{ + pixel_y = -5; + pixel_x = -5 + }, +/obj/item/storage/bag/trash{ + pixel_y = -3; + pixel_x = 2 + }, +/obj/effect/floor_decal/industrial/hatch/yellow, +/obj/effect/floor_decal/industrial/warning{ + dir = 9 + }, +/turf/simulated/floor/tiled/dark/full, +/area/quarantined_outpost/dorm_hallway) +"bfr" = ( +/obj/structure/table/standard, +/obj/item/crowbar/red, +/obj/item/material/hatchet/butch, +/obj/item/material/hook, +/obj/item/material/hook, +/turf/simulated/floor/tiled/freezer{ + name = "cooled tiles"; + temperature = 253.15 + }, +/area/quarantined_outpost/cafeteria) +"bfx" = ( +/obj/structure/cable/orange{ + icon_state = "1-2" + }, +/obj/random/dirt_75, +/obj/random/dirt_75, +/turf/simulated/floor/tiled/dark/airless, +/area/quarantined_outpost/auxiliary_power) +"bfV" = ( +/obj/random/dirt_75, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 8 + }, +/turf/simulated/floor/tiled/airless, +/area/quarantined_outpost/security) +"bfW" = ( +/obj/structure/railing/mapped{ + dir = 1 + }, +/obj/effect/floor_decal/corner/brown{ + dir = 5 + }, +/turf/simulated/floor/tiled, +/area/quarantined_outpost/cargo_bay) +"bgg" = ( +/obj/effect/floor_decal/spline/plain/black{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 1 + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/gunmetal, +/area/quarantined_outpost/north_east_hallway) +"bgD" = ( +/obj/structure/lattice/catwalk/indoor/grate, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/quarantined_outpost/cafeteria) +"bgY" = ( +/obj/structure/lattice/catwalk/indoor/grate/dark, +/obj/abstract/footprint_spawner/oil{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/quarantined_outpost/engineering/atmospherics) +"bhK" = ( +/obj/effect/floor_decal/spline/plain/black{ + dir = 1 + }, +/obj/random/dirt_75, +/turf/simulated/floor/tiled/gunmetal, +/area/quarantined_outpost/engineering/tunnel) +"biP" = ( +/obj/structure/table/standard, +/obj/effect/floor_decal/corner/mauve{ + dir = 5 + }, +/obj/random/dirt_75, +/turf/simulated/floor/tiled/white, +/area/quarantined_outpost/extraction_lab) +"bkl" = ( +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 8 + }, +/obj/structure/platform, +/obj/structure/platform{ + dir = 8 + }, +/obj/structure/platform_deco{ + dir = 9 + }, +/turf/simulated/floor/reinforced, +/area/quarantined_outpost/extraction_lab) +"bkm" = ( +/obj/effect/floor_decal/corner/grey/full, +/obj/machinery/computer/terminal/inactive{ + dir = 1 + }, +/obj/structure/railing/mapped{ + dir = 4 + }, +/obj/effect/floor_decal/industrial/outline/research, +/turf/simulated/floor/tiled/dark, +/area/quarantined_outpost/research) +"bkw" = ( +/obj/machinery/light/floor/maybe_broken/decayed{ + dir = 1 + }, +/obj/random/dirt_75, +/obj/effect/floor_decal/industrial/outline_segment/grey{ + dir = 10 + }, +/turf/simulated/floor/tiled/dark/full, +/area/quarantined_outpost/research) +"bkz" = ( +/obj/random/dirt_75, +/obj/abstract/footprint_spawner/body{ + dir = 1 + }, +/turf/simulated/floor/tiled/gunmetal, +/area/quarantined_outpost/engineering) +"bkN" = ( +/obj/effect/floor_decal/corner/mauve{ + dir = 9 + }, +/obj/effect/floor_decal/spline/plain/purple{ + dir = 8 + }, +/obj/random/dirt_75, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled/light, +/area/quarantined_outpost/research) +"bkT" = ( +/obj/structure/table/standard, +/obj/effect/floor_decal/corner/yellow/full, +/obj/random/tech_supply, +/turf/simulated/floor/tiled/gunmetal, +/area/quarantined_outpost/engineering) +"bkZ" = ( +/obj/effect/floor_decal/corner/mauve/full{ + dir = 8 + }, +/obj/effect/floor_decal/spline/plain/purple{ + dir = 8 + }, +/turf/simulated/floor/tiled/light, +/area/quarantined_outpost/research) +"bli" = ( +/obj/effect/floor_decal/corner/dark_blue{ + dir = 10 + }, +/obj/structure/bed/stool/chair{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/quarantined_outpost/elevator_hallway) +"blJ" = ( +/obj/effect/floor_decal/corner_wide/paleblue/full{ + dir = 4 + }, +/obj/random/dirt_75, +/obj/structure/table/standard, +/turf/simulated/floor/tiled/airless, +/area/quarantined_outpost/security) +"bmm" = ( +/obj/effect/floor_decal/industrial/hatch/yellow, +/turf/simulated/floor/tiled/dark/full, +/area/quarantined_outpost/entrance_lobby) +"bmA" = ( +/obj/effect/floor_decal/asteroid, +/turf/simulated/floor/exoplanet/asteroid/ash/rocky, +/area/quarantined_outpost/exterior) +"bmH" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/simulated/floor/plating, +/area/quarantined_outpost/cafeteria/maintenance) +"bnC" = ( +/obj/structure/platform_stairs/full{ + dir = 1 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 4 + }, +/obj/effect/decal/cleanable/floor_damage/rust, +/turf/simulated/floor/tiled/dark, +/area/quarantined_outpost/research) +"bnT" = ( +/obj/structure/lattice/catwalk, +/turf/simulated/floor/exoplanet/abyss, +/area/quarantined_outpost/engineering/atmospherics) +"boi" = ( +/obj/machinery/computer/terminal/mob_tracker/quarantined_outpost, +/obj/effect/floor_decal/industrial/outline/red, +/obj/random/dirt_75, +/turf/simulated/floor/tiled/ridged, +/area/quarantined_outpost/server_relay/north_east) +"boo" = ( +/obj/machinery/door/blast/regular{ + dir = 8 + }, +/obj/effect/floor_decal/industrial/hatch/yellow, +/turf/simulated/floor/plating, +/area/quarantined_outpost/cargo_bay) +"boN" = ( +/obj/effect/floor_decal/corner/dark_blue{ + dir = 10 + }, +/obj/random/dirt_75, +/obj/random/dirt_75, +/turf/simulated/floor/tiled/rust, +/area/quarantined_outpost/reception) +"bpb" = ( +/obj/structure/table/standard, +/obj/effect/floor_decal/corner/dark_blue/full{ + dir = 1 + }, +/obj/effect/decal/cleanable/cobweb2, +/turf/simulated/floor/tiled/dark, +/area/quarantined_outpost/research/containment) +"bpu" = ( +/obj/structure/railing/mapped{ + dir = 8 + }, +/obj/effect/floor_decal/industrial/outline/operations, +/obj/random/dirt_75, +/turf/simulated/floor/tiled/dark/full, +/area/quarantined_outpost/reception) +"bqr" = ( +/obj/effect/floor_decal/corner/brown{ + dir = 5 + }, +/obj/structure/railing/mapped{ + dir = 4 + }, +/obj/structure/closet/walllocker/medical/firstaid{ + pixel_y = 32 + }, +/obj/random/dirt_75, +/turf/simulated/floor/tiled, +/area/quarantined_outpost/cargo_bay) +"bre" = ( +/obj/effect/floor_decal/corner/black{ + dir = 9 + }, +/obj/structure/bunk_bed{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/quarantined_outpost/dorm_hallway) +"bro" = ( +/obj/structure/lattice/catwalk/indoor/grate/old, +/obj/effect/map_effect/marker/airlock/quarantined_outpost/entrance, +/obj/structure/bed/handrail{ + dir = 8 + }, +/obj/machinery/light/small/maybe_broken/decayed{ + dir = 1 + }, +/turf/simulated/floor/plating, +/area/quarantined_outpost/entrance_lobby) +"bsm" = ( +/obj/structure/flora/rock/stalagmite/random, +/turf/simulated/floor/exoplanet/asteroid/ash/rocky, +/area/quarantined_outpost/exterior) +"bsw" = ( +/obj/structure/sink{ + dir = 8; + pixel_x = -12; + pixel_y = 6 + }, +/obj/effect/floor_decal/corner/red{ + dir = 9 + }, +/obj/effect/decal/cleanable/floor_damage/rust, +/obj/machinery/light/maybe_broken/decayed{ + dir = 8 + }, +/turf/simulated/floor/tiled/dark, +/area/quarantined_outpost/research) +"bsT" = ( +/obj/random/dirt_75, +/obj/structure/structural_support, +/turf/simulated/floor/plating/asteroid/airless, +/area/quarantined_outpost/exterior) +"bsU" = ( +/obj/random/dirt_75, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/turf/simulated/floor/tiled/full/airless, +/area/quarantined_outpost/security) +"btw" = ( +/obj/effect/floor_decal/corner/dark_blue{ + dir = 10 + }, +/obj/random/dirt_75, +/obj/random/dirt_75, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/turf/simulated/floor/tiled/rust, +/area/quarantined_outpost/elevator_hallway) +"btz" = ( +/obj/structure/lattice/catwalk/indoor/grate/old, +/obj/machinery/light/small/maybe_broken/decayed{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/quarantined_outpost/entrance_lobby) +"bua" = ( +/obj/effect/floor_decal/corner_wide/paleblue/diagonal, +/obj/random/dirt_75, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled/airless, +/area/quarantined_outpost/security) +"bui" = ( +/obj/effect/floor_decal/corner/dark_blue{ + dir = 1 + }, +/obj/effect/floor_decal/corner/yellow{ + dir = 4 + }, +/obj/random/dirt_75, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, +/obj/structure/cable{ + icon_state = "2-4" + }, +/turf/simulated/floor/tiled/dark, +/area/quarantined_outpost/north_east_hallway) +"buG" = ( +/turf/unsimulated/mineral/konyang, +/area/space) +"bvp" = ( +/obj/effect/floor_decal/corner/brown{ + dir = 10 + }, +/obj/random/dirt_75, +/obj/random/dirt_75, +/obj/random/loot, +/obj/structure/table/standard, +/turf/simulated/floor/tiled/dark, +/area/quarantined_outpost/cargo_bay) +"bvJ" = ( +/obj/effect/floor_decal/corner/brown{ + dir = 5 + }, +/obj/random/dirt_75, +/turf/simulated/floor/tiled, +/area/quarantined_outpost/elevator_hallway) +"bvL" = ( +/obj/effect/floor_decal/corner_wide/lime{ + dir = 10 + }, +/obj/structure/flora/pottedplant/dead, +/obj/machinery/alarm/south, +/turf/simulated/floor/tiled/white, +/area/quarantined_outpost/medbay) +"bvW" = ( +/turf/simulated/floor/exoplanet/abyss, +/area/quarantined_outpost/engineering/winch_room) +"bxr" = ( +/obj/structure/lattice/catwalk/indoor/grate, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 + }, +/turf/simulated/floor/plating, +/area/quarantined_outpost/reception) +"byw" = ( +/obj/machinery/atmospherics/pipe/simple/hidden, +/obj/effect/floor_decal/industrial/warning{ + dir = 9 + }, +/obj/structure/filler, +/obj/effect/decal/rolling_fog, +/turf/simulated/floor/reinforced, +/area/quarantined_outpost/research) +"byW" = ( +/obj/structure/railing/mapped, +/obj/machinery/atmospherics/pipe/simple/hidden/yellow{ + dir = 8 + }, +/obj/structure/lattice/catwalk/indoor, +/turf/simulated/floor/exoplanet/abyss, +/area/quarantined_outpost/research/containment) +"bzf" = ( +/obj/effect/floor_decal/corner/dark_blue{ + dir = 5 + }, +/obj/random/dirt_75, +/obj/random/dirt_75, +/obj/structure/bed/stool/chair, +/turf/simulated/floor/tiled, +/area/quarantined_outpost/elevator_hallway) +"bzD" = ( +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/structure/table/rack, +/obj/item/clothing/mask/gas/tactical, +/obj/item/clothing/mask/gas/tactical, +/obj/random/dirt_75, +/turf/simulated/floor/tiled/dark/full/airless, +/area/quarantined_outpost/security) +"bzK" = ( +/obj/effect/floor_decal/corner/grey{ + dir = 4 + }, +/obj/effect/decal/cleanable/floor_damage/rust, +/turf/simulated/floor/tiled/dark, +/area/quarantined_outpost/research) +"bAq" = ( +/obj/effect/floor_decal/corner_wide/lime{ + dir = 10 + }, +/obj/structure/table/glass, +/obj/machinery/light/small/maybe_broken/decayed, +/obj/effect/decal/cleanable/floor_damage/rust, +/turf/simulated/floor/tiled/white, +/area/quarantined_outpost/medbay) +"bAQ" = ( +/turf/simulated/floor/tiled/gunmetal/full, +/area/quarantined_outpost/engineering/winch_room) +"bBS" = ( +/obj/effect/floor_decal/spline/plain/black{ + dir = 4 + }, +/obj/effect/floor_decal/corner/dark_green{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/quarantined_outpost/gym) +"bCa" = ( +/obj/machinery/shower{ + dir = 1; + pixel_y = -8 + }, +/obj/effect/floor_decal/corner/red{ + dir = 10 + }, +/obj/effect/floor_decal/concrete/gutter/corner, +/obj/effect/decal/cleanable/floor_damage/rust, +/obj/random/dirt_75, +/turf/simulated/floor/tiled/dark, +/area/quarantined_outpost/research) +"bCk" = ( +/obj/random/dirt_75, +/obj/random/survival_weapon, +/obj/effect/decal/cleanable/blood, +/turf/simulated/floor/tiled/airless, +/area/quarantined_outpost/security) +"bCJ" = ( +/obj/effect/map_effect/window_spawner/full/reinforced/firedoor, +/turf/simulated/floor/tiled/gunmetal/full, +/area/quarantined_outpost/server_relay/south_east) +"bCU" = ( +/obj/structure/lattice/catwalk, +/obj/structure/bed/handrail{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/quarantined_outpost/cargo_bay) +"bDe" = ( +/obj/effect/floor_decal/spline/plain/black, +/obj/structure/bed/stool/chair/sofa/left/brown{ + dir = 8 + }, +/obj/random/dirt_75, +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/simulated/floor/lino, +/area/quarantined_outpost/reception) +"bDO" = ( +/obj/structure/lattice/catwalk/indoor/grate/damaged, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, +/turf/simulated/floor/plating, +/area/quarantined_outpost/security) +"bEv" = ( +/obj/structure/table/reinforced/steel, +/obj/machinery/door/window/desk/northleft, +/turf/simulated/floor/tiled/dark/full, +/area/quarantined_outpost/security) +"bEL" = ( +/obj/structure/platform, +/obj/random/dirt_75, +/obj/random/dirt_75, +/obj/effect/decal/cleanable/floor_damage/rust, +/turf/simulated/floor/tiled/ridged, +/area/quarantined_outpost/extraction_lab) +"bFa" = ( +/obj/structure/railing/mapped{ + dir = 1 + }, +/obj/structure/flora/rock/pile/random, +/turf/simulated/floor/exoplanet/basalt, +/area/quarantined_outpost/north_east_hallway) +"bFB" = ( +/obj/random/dirt_75, +/obj/effect/decal/cleanable/floor_damage/rust, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/quarantined_outpost/cargo_bay) +"bFD" = ( +/obj/effect/floor_decal/corner/mauve{ + dir = 9 + }, +/obj/effect/floor_decal/spline/plain/corner/purple{ + dir = 8 + }, +/turf/simulated/floor/tiled/light, +/area/quarantined_outpost/research) +"bFE" = ( +/obj/random/dirt_75, +/obj/random/dirt_75, +/obj/abstract/footprint_spawner/body{ + dir = 8 + }, +/turf/simulated/floor/tiled/gunmetal, +/area/quarantined_outpost/engineering) +"bFV" = ( +/obj/structure/platform/ledge/dark{ + dir = 8 + }, +/turf/simulated/floor/exoplanet/abyss, +/area/quarantined_outpost/research/containment) +"bGa" = ( +/obj/random/dirt_75, +/obj/random/dirt_75, +/obj/effect/decal/cleanable/floor_damage/rust, +/obj/structure/cable{ + icon_state = "1-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/simulated/floor/tiled, +/area/quarantined_outpost/cargo_bay) +"bGd" = ( +/obj/effect/floor_decal/corner_wide/paleblue{ + dir = 5 + }, +/obj/random/dirt_75, +/turf/simulated/floor/tiled/white, +/area/quarantined_outpost/medbay) +"bGg" = ( +/obj/effect/floor_decal/corner/yellow{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark/airless, +/area/quarantined_outpost/auxiliary_power) +"bGi" = ( +/obj/effect/floor_decal/corner/mauve, +/obj/machinery/light/broken{ + dir = 4 + }, +/obj/random/dirt_75, +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/white, +/area/quarantined_outpost/extraction_lab) +"bHG" = ( +/obj/structure/table/glass, +/obj/structure/cable{ + icon_state = "1-8" + }, +/turf/simulated/floor/tiled, +/area/quarantined_outpost/elevator_hallway) +"bHJ" = ( +/obj/machinery/door/firedoor{ + dir = 1 + }, +/obj/effect/floor_decal/industrial/hatch_door/yellow{ + dir = 1 + }, +/obj/machinery/door/airlock/glass_mining{ + dir = 1; + name = "Cargo Bay" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 1 + }, +/turf/simulated/floor/tiled/full, +/area/quarantined_outpost/cargo_bay) +"bHM" = ( +/obj/random/dirt_75, +/obj/machinery/atmospherics/unary/vent_pump/on, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/effect/landmark/trapped_vent/maybe/quarantined_outpost, +/turf/simulated/floor/tiled/dark/full, +/area/quarantined_outpost/engineering/winch_room) +"bIU" = ( +/obj/random/dirt_75, +/obj/structure/blocker, +/obj/effect/floor_decal/corner/yellow{ + dir = 1 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled/gunmetal, +/area/quarantined_outpost/engineering/tunnel) +"bJb" = ( +/obj/random/dirt_75, +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/simulated/floor/tiled, +/area/quarantined_outpost/reception) +"bJe" = ( +/obj/structure/table/standard, +/turf/simulated/floor/tiled/dark/full, +/area/quarantined_outpost/research) +"bJq" = ( +/obj/effect/floor_decal/corner_wide/lime{ + dir = 9 + }, +/obj/machinery/papershredder{ + pixel_x = -7 + }, +/obj/random/dirt_75, +/turf/simulated/floor/tiled/white, +/area/quarantined_outpost/medbay) +"bJs" = ( +/obj/structure/lattice/catwalk/indoor/grate/light, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/quarantined_outpost/research) +"bKx" = ( +/obj/structure/railing/mapped{ + dir = 8 + }, +/obj/structure/railing/mapped, +/obj/structure/bed/stool/chair/folding, +/obj/structure/lattice/catwalk/indoor, +/turf/simulated/floor/plating, +/area/quarantined_outpost/cargo_bay) +"bKz" = ( +/obj/effect/floor_decal/industrial/warning, +/obj/random/dirt_75, +/obj/random/dirt_75, +/turf/simulated/floor/tiled/dark/full, +/area/quarantined_outpost/elevator_hallway/maintenance) +"bKL" = ( +/obj/effect/floor_decal/industrial/hatch/yellow, +/obj/machinery/door/firedoor{ + dir = 4 + }, +/obj/random/dirt_75, +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/gunmetal/full, +/area/quarantined_outpost/engineering) +"bLO" = ( +/obj/effect/floor_decal/corner/dark_blue{ + dir = 5 + }, +/obj/random/dirt_75, +/obj/random/dirt_75, +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/simulated/floor/tiled, +/area/quarantined_outpost/elevator_hallway) +"bLZ" = ( +/obj/machinery/optable, +/obj/random/dirt_75, +/obj/random/dirt_75, +/obj/random/dirt_75, +/obj/effect/decal/cleanable/blood, +/obj/effect/decal/cleanable/floor_damage/rust, +/turf/simulated/floor/tiled/white, +/area/quarantined_outpost/medbay) +"bMy" = ( +/obj/effect/decal/cleanable/cobweb2, +/obj/effect/floor_decal/industrial/outline/operations, +/obj/effect/floor_decal/industrial/loading/operations{ + dir = 8 + }, +/obj/random/dirt_75, +/turf/simulated/floor/tiled/dark, +/area/quarantined_outpost/entrance_lobby) +"bMN" = ( +/obj/random/dirt_75, +/obj/random/dirt_75, +/obj/effect/floor_decal/corner_wide/paleblue{ + dir = 6 + }, +/turf/simulated/floor/tiled, +/area/quarantined_outpost/elevator_hallway) +"bMY" = ( +/obj/effect/floor_decal/corner/dark_blue{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/quarantined_outpost/elevator_hallway) +"bNd" = ( +/obj/effect/floor_decal/corner/brown{ + dir = 10 + }, +/obj/random/dirt_75, +/obj/machinery/autolathe, +/obj/effect/floor_decal/industrial/outline/yellow, +/turf/simulated/floor/tiled, +/area/quarantined_outpost/cargo_bay) +"bNj" = ( +/obj/effect/floor_decal/corner/yellow{ + dir = 5 + }, +/obj/random/dirt_75, +/obj/random/dirt_75, +/obj/structure/ore_box, +/turf/simulated/floor/tiled/gunmetal, +/area/quarantined_outpost/engineering/winch_room) +"bNl" = ( +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/machinery/vending/cigarette, +/obj/effect/decal/cleanable/floor_damage/rust, +/turf/simulated/floor/tiled/dark/full, +/area/quarantined_outpost/engineering) +"bNs" = ( +/obj/structure/structural_support, +/turf/simulated/floor/tiled/ridged, +/area/quarantined_outpost/extraction_lab) +"bNx" = ( +/obj/structure/table/standard/flipped{ + dir = 4 + }, +/obj/random/dirt_75, +/turf/simulated/floor/tiled/bitile{ + dir = 4 + }, +/area/quarantined_outpost/cafeteria) +"bNB" = ( +/obj/random/dirt_75, +/turf/simulated/floor/tiled, +/area/quarantined_outpost/cafeteria) +"bNO" = ( +/obj/effect/floor_decal/corner/mauve, +/obj/effect/floor_decal/spline/plain/purple{ + dir = 4 + }, +/obj/effect/decal/cleanable/floor_damage/rust, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 8 + }, +/turf/simulated/floor/tiled/light, +/area/quarantined_outpost/research) +"bOg" = ( +/obj/effect/floor_decal/spline/plain/black{ + dir = 4 + }, +/obj/effect/floor_decal/industrial/outline/grey, +/obj/structure/reagent_dispensers/water_cooler, +/turf/simulated/floor/tiled/dark/full, +/area/quarantined_outpost/north_east_hallway) +"bOj" = ( +/obj/structure/lattice/catwalk, +/turf/simulated/floor/plating, +/area/quarantined_outpost/engineering/tunnel) +"bOW" = ( +/obj/effect/floor_decal/corner_wide/paleblue/diagonal, +/obj/random/dirt_75, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 8 + }, +/turf/simulated/floor/tiled/airless, +/area/quarantined_outpost/security) +"bPY" = ( +/obj/random/dirt_75, +/obj/random/dirt_75, +/obj/effect/floor_decal/industrial/warning/dust{ + dir = 6 + }, +/turf/simulated/floor/plating/asteroid/airless, +/area/quarantined_outpost/exterior) +"bPZ" = ( +/obj/effect/floor_decal/corner_wide/lime{ + dir = 10 + }, +/obj/effect/floor_decal/industrial/outline/grey, +/obj/effect/decal/cleanable/floor_damage/rust, +/turf/simulated/floor/tiled/white, +/area/quarantined_outpost/medbay) +"bQm" = ( +/obj/effect/floor_decal/spline/plain/black{ + dir = 8 + }, +/obj/random/dirt_75, +/turf/simulated/floor/tiled/gunmetal, +/area/quarantined_outpost/north_east_hallway) +"bQq" = ( +/obj/structure/lattice/catwalk/indoor/grate/dark, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/plating, +/area/quarantined_outpost/engineering/tunnel) +"bRt" = ( +/obj/item/paper/pamphlet, +/obj/item/paper/pamphlet, +/obj/item/paper/pamphlet, +/obj/structure/table/rack, +/obj/random/dirt_75, +/turf/simulated/floor/tiled, +/area/quarantined_outpost/elevator_hallway) +"bRz" = ( +/obj/effect/floor_decal/industrial/outline_straight/custodial{ + dir = 8 + }, +/obj/structure/bed/stool/chair/office/light{ + dir = 8 + }, +/turf/simulated/floor/tiled/light, +/area/quarantined_outpost/research) +"bRF" = ( +/obj/effect/floor_decal/corner/yellow{ + dir = 4 + }, +/obj/effect/floor_decal/corner/dark_blue{ + dir = 1 + }, +/obj/random/dirt_75, +/turf/simulated/floor/tiled/dark, +/area/quarantined_outpost/engineering/atmospherics) +"bRN" = ( +/obj/effect/floor_decal/corner_wide/lime{ + dir = 10 + }, +/obj/structure/barricade/wooden{ + dir = 8 + }, +/obj/structure/cable{ + 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/quarantined_outpost/medbay) +"bSy" = ( +/obj/effect/floor_decal/corner/dark_blue{ + dir = 1 + }, +/obj/structure/inflatable/wall, +/obj/random/dirt_75, +/turf/simulated/floor/tiled, +/area/quarantined_outpost/elevator_hallway) +"bSG" = ( +/obj/effect/floor_decal/corner/yellow/full{ + dir = 4 + }, +/obj/random/dirt_75, +/obj/structure/trash_pile, +/turf/simulated/floor/tiled/gunmetal, +/area/quarantined_outpost/engineering/winch_room) +"bSL" = ( +/obj/random/dirt_75, +/obj/effect/decal/cleanable/floor_damage/rust, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 8 + }, +/obj/effect/landmark/trapped_vent/maybe/quarantined_outpost, +/turf/simulated/floor/tiled, +/area/quarantined_outpost/cargo_bay) +"bSX" = ( +/obj/effect/floor_decal/corner/black{ + dir = 10 + }, +/obj/random/dirt_75, +/obj/structure/platform{ + dir = 1 + }, +/turf/simulated/floor/tiled/dark, +/area/quarantined_outpost/entrance_lobby) +"bTf" = ( +/obj/structure/platform_stairs/full{ + dir = 1 + }, +/obj/random/dirt_75, +/obj/effect/decal/cleanable/floor_damage/rust, +/obj/effect/decal/rolling_fog, +/turf/simulated/floor/plating, +/area/quarantined_outpost/research) +"bTH" = ( +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/machinery/computer/terminal/inactive{ + dir = 4 + }, +/obj/effect/floor_decal/industrial/outline/research, +/turf/simulated/floor/tiled/white, +/area/quarantined_outpost/research) +"bTN" = ( +/obj/effect/map_effect/window_spawner/full/reinforced/firedoor, +/turf/simulated/floor/tiled/dark/full, +/area/quarantined_outpost/engineering/atmospherics) +"bUl" = ( +/obj/effect/floor_decal/corner/yellow{ + dir = 1 + }, +/obj/effect/decal/cleanable/blood, +/obj/random/dirt_75, +/obj/machinery/light/small/maybe_broken/decayed{ + dir = 1 + }, +/turf/simulated/floor/tiled/gunmetal, +/area/quarantined_outpost/engineering) +"bUL" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/yellow{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled/ramp{ + dir = 8 + }, +/area/quarantined_outpost/extraction_lab) +"bUT" = ( +/obj/structure/platform_stairs/full/south_north_cap{ + dir = 1 + }, +/obj/structure/lattice/catwalk/indoor/grate/dark, +/turf/simulated/floor/plating, +/area/quarantined_outpost/research) +"bVB" = ( +/obj/effect/floor_decal/corner/dark_blue/diagonal, +/obj/effect/floor_decal/spline/plain/black{ + dir = 4 + }, +/obj/random/dirt_75, +/obj/machinery/light/maybe_broken/decayed{ + dir = 8 + }, +/turf/simulated/floor/tiled/dark/airless, +/area/quarantined_outpost/security) +"bVH" = ( +/obj/effect/floor_decal/corner/dark_blue{ + dir = 8 + }, +/obj/machinery/vending/coffee, +/obj/effect/floor_decal/industrial/outline/grey, +/turf/simulated/floor/tiled/dark/full, +/area/quarantined_outpost/reception) +"bWk" = ( +/obj/effect/floor_decal/spline/plain/corner/black{ + dir = 1 + }, +/obj/random/dirt_75, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 1 + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/gunmetal, +/area/quarantined_outpost/north_east_hallway) +"bWm" = ( +/obj/effect/floor_decal/corner/dark_blue{ + dir = 9 + }, +/obj/structure/railing/mapped{ + dir = 8 + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/quarantined_outpost/elevator_hallway) +"bWG" = ( +/obj/effect/floor_decal/spline/plain/grey, +/obj/effect/landmark/quarantined_outpost/canister_spawn, +/turf/simulated/floor/tiled/white, +/area/quarantined_outpost/gym) +"bXV" = ( +/obj/effect/floor_decal/spline/plain/black{ + dir = 6 + }, +/obj/machinery/computer/terminal/inactive{ + dir = 1 + }, +/turf/simulated/floor/tiled/full, +/area/quarantined_outpost/cargo_bay) +"bYQ" = ( +/obj/effect/floor_decal/corner_wide/lime{ + dir = 9 + }, +/obj/random/dirt_75, +/obj/effect/decal/cleanable/blood, +/turf/simulated/floor/tiled/white, +/area/quarantined_outpost/medbay) +"bZD" = ( +/obj/structure/railing/mapped{ + dir = 8 + }, +/turf/simulated/floor/exoplanet/basalt, +/area/quarantined_outpost/cavern/east_cavern) +"bZU" = ( +/obj/random/dirt_75, +/obj/random/dirt_75, +/obj/structure/inflatable/wall, +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/airless, +/area/quarantined_outpost/security) +"bZY" = ( +/turf/simulated/floor/exoplanet/abyss, +/area/quarantined_outpost/extraction_lab) +"cac" = ( +/obj/effect/floor_decal/corner/dark_blue{ + dir = 9 + }, +/obj/structure/sign/emergency/exit{ + dir = 4; + pixel_y = -32 + }, +/obj/random/dirt_75, +/obj/random/dirt_75, +/turf/simulated/floor/tiled, +/area/quarantined_outpost/reception) +"cay" = ( +/obj/structure/lattice/catwalk/indoor/grate/dark, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 1 + }, +/turf/simulated/floor/airless, +/area/quarantined_outpost/security) +"caZ" = ( +/obj/structure/lattice/catwalk, +/obj/structure/sign/securearea{ + desc = "A warning sign which reads 'WARNING: EQUIPMENT RADIOACTIVE DURING OPERATION'."; + icon_state = "radiation"; + name = "WARNING: EQUIPMENT RADIOACTIVE DURING OPERATION sign"; + pixel_y = -32 + }, +/obj/effect/decal/rolling_fog, +/turf/simulated/floor/plating, +/area/quarantined_outpost/research) +"cba" = ( +/obj/random/dirt_75, +/obj/random/dirt_75, +/obj/machinery/power/apc/south, +/obj/structure/cable, +/turf/simulated/floor/carpet/rubber, +/area/quarantined_outpost/gym) +"cbh" = ( +/obj/structure/platform, +/obj/random/dirt_75, +/obj/effect/decal/cleanable/floor_damage/rust, +/obj/effect/decal/cleanable/blood, +/turf/simulated/floor/tiled/ridged, +/area/quarantined_outpost/extraction_lab) +"ccv" = ( +/obj/effect/floor_decal/corner/lime{ + dir = 10 + }, +/obj/machinery/light/maybe_broken/decayed, +/turf/simulated/floor/tiled, +/area/quarantined_outpost/cafeteria) +"ccF" = ( +/obj/machinery/door/firedoor{ + dir = 4 + }, +/obj/effect/floor_decal/industrial/hatch_door/medical, +/obj/machinery/door/airlock/medical{ + name = "Operating Theater"; + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/quarantined_outpost/medbay) +"ccT" = ( +/obj/effect/floor_decal/corner/yellow{ + dir = 4 + }, +/obj/effect/floor_decal/corner/dark_blue{ + dir = 1 + }, +/obj/effect/decal/cleanable/floor_damage/rust, +/turf/simulated/floor/tiled/dark, +/area/quarantined_outpost/engineering/atmospherics) +"cdb" = ( +/obj/effect/floor_decal/corner/dark_blue{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/quarantined_outpost/cafeteria) +"cdf" = ( +/turf/simulated/mineral/lava, +/area/quarantined_outpost/cargo_bay) +"cdO" = ( +/obj/effect/floor_decal/corner/dark_blue{ + dir = 10 + }, +/obj/structure/sign/securearea{ + pixel_y = -32 + }, +/obj/random/dirt_75, +/obj/machinery/light/floor/maybe_broken/decayed, +/turf/simulated/floor/tiled/dark, +/area/quarantined_outpost/research/containment) +"cfq" = ( +/obj/machinery/door/firedoor/multi_tile, +/obj/effect/floor_decal/industrial/hatch/yellow, +/obj/machinery/door/airlock/multi_tile/glass, +/turf/simulated/floor/tiled/full, +/area/quarantined_outpost/entrance_lobby) +"cfO" = ( +/obj/effect/floor_decal/industrial/outline_door/yellow{ + dir = 4 + }, +/obj/random/dirt_75, +/obj/effect/decal/cleanable/floor_damage/rust, +/turf/simulated/floor/tiled, +/area/quarantined_outpost/engineering) +"cgG" = ( +/obj/effect/floor_decal/corner/yellow{ + dir = 10 + }, +/obj/structure/closet/crate/miningcart, +/turf/simulated/floor/tiled/gunmetal, +/area/quarantined_outpost/engineering/winch_room) +"cgU" = ( +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/random/dirt_75, +/obj/machinery/computer/terminal/inactive, +/turf/simulated/floor/tiled/ridged, +/area/quarantined_outpost/server_relay/north_east) +"chf" = ( +/obj/structure/bed/stool/chair/folding{ + dir = 8 + }, +/obj/random/dirt_75, +/obj/effect/decal/cleanable/floor_damage/rust, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/quarantined_outpost/cargo_bay) +"ciw" = ( +/obj/effect/floor_decal/industrial/outline_door/yellow{ + dir = 1 + }, +/obj/structure/sign/directions/custodial{ + dir = 8; + pixel_x = -32; + pixel_y = 9 + }, +/turf/simulated/floor/tiled, +/area/quarantined_outpost/dorm_hallway) +"cjh" = ( +/obj/structure/bed/stool/padded/red{ + dir = 8 + }, +/obj/random/dirt_75, +/turf/simulated/floor/carpet/rubber, +/area/quarantined_outpost/gym) +"cjB" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/quarantined_outpost/gym) +"cjX" = ( +/obj/effect/floor_decal/corner_wide/lime/diagonal, +/obj/effect/decal/cleanable/floor_damage/rust, +/obj/random/dirt_75, +/turf/simulated/floor/tiled/white, +/area/quarantined_outpost/medbay) +"cki" = ( +/obj/structure/cable{ + icon_state = "1-8" + }, +/obj/structure/lattice/catwalk/indoor, +/turf/simulated/floor/exoplanet/basalt, +/area/quarantined_outpost/north_east_hallway) +"ckN" = ( +/obj/structure/structural_support, +/obj/effect/decal/cleanable/floor_damage/rust, +/turf/simulated/floor/tiled/ridged, +/area/quarantined_outpost/extraction_lab) +"ckU" = ( +/obj/structure/bed/stool/chair/office/dark{ + dir = 1 + }, +/obj/random/dirt_75, +/obj/structure/sign/flag/sol/old{ + pixel_x = -32 + }, +/turf/simulated/floor/tiled/dark/full, +/area/quarantined_outpost/engineering/atmospherics) +"clf" = ( +/obj/effect/decal/cleanable/cobweb, +/obj/structure/platform_stairs/full/south_north_cap/half{ + dir = 8 + }, +/obj/structure/platform{ + dir = 1 + }, +/turf/simulated/floor/tiled/dark, +/area/quarantined_outpost/research) +"clg" = ( +/obj/random/dirt_75, +/obj/structure/cable{ + icon_state = "1-4" + }, +/turf/simulated/floor/tiled, +/area/quarantined_outpost/entrance_maintenance) +"clv" = ( +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 5 + }, +/obj/structure/flora/grass/desert{ + name = "withered grass" + }, +/obj/abstract/footprint_spawner{ + dir = 8 + }, +/turf/simulated/floor/exoplanet/barren, +/area/quarantined_outpost/north_east_hallway) +"clD" = ( +/obj/effect/floor_decal/corner/mauve{ + dir = 6 + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/effect/floor_decal/spline/plain/purple{ + dir = 4 + }, +/turf/simulated/floor/tiled/light, +/area/quarantined_outpost/research) +"clK" = ( +/obj/structure/railing/mapped{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/yellow, +/obj/structure/cable{ + icon_state = "1-4" + }, +/obj/effect/floor_decal/industrial/outline_straight/yellow, +/obj/random/dirt_75, +/obj/random/dirt_75, +/turf/simulated/floor/tiled/dark/full, +/area/quarantined_outpost/research/containment) +"clN" = ( +/obj/random/dirt_75, +/obj/random/dirt_75, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/quarantined_outpost/entrance_lobby) +"clR" = ( +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/structure/cable{ + icon_state = "0-4" + }, +/obj/random/dirt_75, +/turf/simulated/floor/airless, +/area/quarantined_outpost/auxiliary_power) +"cmz" = ( +/obj/structure/bed/stool/chair/office/dark, +/obj/random/dirt_75, +/turf/simulated/floor/tiled/dark/full, +/area/quarantined_outpost/reception) +"cmD" = ( +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 9 + }, +/obj/structure/flora/grass/desert/bush{ + name = "withered grass" + }, +/obj/abstract/footprint_spawner{ + dir = 8 + }, +/turf/simulated/floor/exoplanet/barren, +/area/quarantined_outpost/north_east_hallway) +"cno" = ( +/obj/effect/floor_decal/industrial/outline/red, +/obj/machinery/iv_drip, +/obj/random/dirt_75, +/obj/random/dirt_75, +/turf/simulated/floor/tiled/white, +/area/quarantined_outpost/medbay) +"cny" = ( +/obj/effect/floor_decal/corner/mauve{ + dir = 1 + }, +/obj/structure/noticeboard{ + pixel_y = 32 + }, +/obj/effect/floor_decal/corner/mauve{ + dir = 6 + }, +/obj/effect/floor_decal/spline/plain/purple{ + dir = 4 + }, +/obj/effect/floor_decal/industrial/outline/red, +/obj/machinery/computer/terminal/mob_tracker/quarantined_outpost, +/obj/random/dirt_75, +/turf/simulated/floor/tiled/light, +/area/quarantined_outpost/research) +"cnK" = ( +/obj/effect/floor_decal/spline/plain/corner/black{ + dir = 4 + }, +/obj/random/dirt_75, +/obj/random/dirt_75, +/turf/simulated/floor/tiled/ridged, +/area/quarantined_outpost/extraction_lab) +"con" = ( +/obj/effect/floor_decal/corner/dark_blue/full, +/obj/structure/trash_pile, +/obj/structure/cable{ + icon_state = "1-4" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/turf/simulated/floor/tiled/gunmetal, +/area/quarantined_outpost/cafeteria) +"coX" = ( +/obj/effect/floor_decal/corner_wide/lime/diagonal, +/obj/random/dirt_75, +/turf/simulated/floor/tiled/white, +/area/quarantined_outpost/medbay) +"cpF" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/cyan{ + dir = 9 + }, +/obj/machinery/meter, +/turf/simulated/floor/plating, +/area/quarantined_outpost/engineering/atmospherics) +"cpK" = ( +/obj/structure/platform/ledge{ + dir = 8 + }, +/obj/random/dirt_75, +/obj/effect/decal/cleanable/floor_damage/rust, +/turf/simulated/floor/tiled, +/area/quarantined_outpost/cargo_bay) +"cqm" = ( +/obj/machinery/atmospherics/pipe/simple/visible/black{ + dir = 5 + }, +/obj/random/dirt_75, +/obj/effect/decal/cleanable/floor_damage/rust, +/turf/simulated/floor/tiled/gunmetal, +/area/quarantined_outpost/engineering/atmospherics) +"cqA" = ( +/obj/structure/trash_pile, +/obj/structure/cable{ + 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/dark/full, +/area/quarantined_outpost/elevator_hallway) +"cqK" = ( +/turf/simulated/floor/plating, +/area/quarantined_outpost/gym) +"cqL" = ( +/turf/simulated/wall/shuttle/scc_space_ship/cardinal, +/area/quarantined_outpost/cargo_bay) +"cqX" = ( +/obj/effect/floor_decal/industrial/hatch_door/yellow{ + dir = 1 + }, +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/glass_security{ + name = "Security Processing" + }, +/obj/random/dirt_75, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 1 + }, +/turf/simulated/floor/tiled/full/airless, +/area/quarantined_outpost/security) +"crg" = ( +/obj/structure/filingcabinet/filingcabinet, +/obj/structure/filingcabinet/filingcabinet{ + pixel_x = -10 + }, +/obj/effect/floor_decal/corner/mauve{ + dir = 6 + }, +/obj/effect/floor_decal/spline/plain/purple{ + dir = 4 + }, +/obj/structure/filingcabinet/filingcabinet{ + pixel_x = 10 + }, +/turf/simulated/floor/tiled/light, +/area/quarantined_outpost/research) +"crl" = ( +/obj/machinery/bodyscanner{ + dir = 8 + }, +/obj/effect/floor_decal/corner/dark_green{ + dir = 5 + }, +/turf/simulated/floor/tiled/dark, +/area/quarantined_outpost/medbay) +"cti" = ( +/obj/effect/floor_decal/corner/black/full{ + dir = 1 + }, +/obj/random/dirt_75, +/turf/simulated/floor/tiled, +/area/quarantined_outpost/elevator_hallway) +"ctv" = ( +/obj/effect/floor_decal/corner/yellow, +/obj/effect/floor_decal/corner/dark_blue{ + dir = 4 + }, +/obj/structure/sign/fire{ + pixel_x = 32 + }, +/obj/random/dirt_75, +/obj/machinery/light/small/maybe_broken/decayed{ + dir = 4 + }, +/turf/simulated/floor/tiled/gunmetal, +/area/quarantined_outpost/engineering/atmospherics) +"ctA" = ( +/turf/simulated/floor/tiled/ramp{ + dir = 1 + }, +/area/quarantined_outpost/extraction_lab) +"ctO" = ( +/obj/effect/floor_decal/corner/dark_blue{ + dir = 10 + }, +/obj/random/dirt_75, +/turf/simulated/floor/tiled, +/area/quarantined_outpost/reception) +"cud" = ( +/obj/structure/bed/stool/chair/folding{ + dir = 8 + }, +/obj/random/dirt_75, +/turf/simulated/floor/tiled, +/area/quarantined_outpost/cafeteria) +"cun" = ( +/obj/effect/decal/cleanable/blood, +/turf/simulated/floor/exoplanet/basalt, +/area/quarantined_outpost/extraction_lab) +"cuv" = ( +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 8 + }, +/obj/structure/filler, +/obj/structure/flora/grass/desert{ + name = "withered grass" + }, +/turf/simulated/floor/exoplanet/barren, +/area/quarantined_outpost/north_east_hallway) +"cuC" = ( +/obj/structure/noticeboard{ + pixel_y = 32 + }, +/obj/structure/filingcabinet/filingcabinet{ + pixel_x = 10; + pixel_y = 9 + }, +/obj/structure/filingcabinet/filingcabinet{ + pixel_y = 9 + }, +/obj/machinery/papershredder{ + pixel_x = -13; + pixel_y = 8 + }, +/obj/effect/decal/cleanable/blood, +/obj/random/dirt_75, +/turf/simulated/floor/tiled/dark/full, +/area/quarantined_outpost/reception) +"cvr" = ( +/obj/effect/floor_decal/corner/yellow{ + dir = 5 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 4 + }, +/obj/structure/ore_box, +/turf/simulated/floor/tiled/dark, +/area/quarantined_outpost/engineering/winch_room) +"cwy" = ( +/obj/structure/railing/mapped{ + dir = 1 + }, +/obj/structure/lattice/catwalk/indoor, +/turf/simulated/floor/exoplanet/abyss, +/area/quarantined_outpost/engineering/atmospherics) +"cwz" = ( +/obj/machinery/door/firedoor, +/obj/effect/floor_decal/industrial/hatch/yellow, +/obj/random/dirt_75, +/obj/abstract/footprint_spawner/body, +/turf/simulated/floor/tiled/full/airless, +/area/quarantined_outpost/security) +"cwL" = ( +/obj/structure/closet, +/obj/random/junk, +/obj/random/dirt_75, +/obj/random/dirt_75, +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/simulated/floor/tiled, +/area/quarantined_outpost/entrance_maintenance) +"cxh" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/fuel{ + dir = 4 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 9 + }, +/obj/machinery/power/breakerbox, +/turf/simulated/floor/carpet/rubber, +/area/quarantined_outpost/engineering/atmospherics) +"cxs" = ( +/obj/machinery/door/firedoor{ + dir = 4 + }, +/obj/effect/floor_decal/industrial/hatch_door/medical, +/obj/machinery/door/airlock/glass_medical{ + dir = 4; + name = "Reception" + }, +/turf/simulated/floor/tiled/white, +/area/quarantined_outpost/medbay) +"cxE" = ( +/obj/effect/floor_decal/corner_wide/lime{ + dir = 10 + }, +/obj/structure/bed/stool/chair{ + dir = 1 + }, +/obj/machinery/light/small/maybe_broken/decayed, +/obj/random/dirt_75, +/turf/simulated/floor/tiled/white, +/area/quarantined_outpost/medbay) +"cxG" = ( +/obj/machinery/door/airlock/hatch{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/quarantined_outpost/engineering/tunnel) +"cxK" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/turf/simulated/floor/tiled, +/area/quarantined_outpost/cafeteria) +"cxM" = ( +/obj/effect/floor_decal/industrial/outline_door, +/obj/effect/floor_decal/industrial/outline_segment{ + dir = 4 + }, +/obj/effect/floor_decal/industrial/outline_segment{ + dir = 10 + }, +/turf/simulated/floor/tiled/freezer{ + name = "cooled tiles"; + temperature = 253.15 + }, +/area/quarantined_outpost/medbay) +"cxP" = ( +/obj/effect/floor_decal/corner/dark_green, +/obj/random/dirt_75, +/obj/random/dirt_75, +/turf/simulated/floor/tiled, +/area/quarantined_outpost/gym) +"cxS" = ( +/obj/structure/lattice, +/turf/simulated/floor/exoplanet/abyss, +/area/quarantined_outpost/engineering) +"cxZ" = ( +/obj/effect/floor_decal/corner/mauve{ + dir = 6 + }, +/obj/structure/sign/science{ + pixel_x = 32 + }, +/turf/simulated/floor/tiled/white, +/area/quarantined_outpost/extraction_lab) +"cyb" = ( +/obj/effect/floor_decal/industrial/outline/emergency_closet, +/obj/structure/closet/emcloset, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/turf/simulated/floor/tiled/dark/full, +/area/quarantined_outpost/dorm_hallway) +"cyc" = ( +/obj/effect/shuttle_landmark/quarantined_outpost/space/space_1a, +/turf/template_noop, +/area/space) +"czg" = ( +/obj/random/dirt_75, +/obj/structure/cable{ + icon_state = "2-4" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/quarantined_outpost/gym) +"czy" = ( +/obj/effect/floor_decal/industrial/hatch/yellow, +/obj/machinery/door/firedoor/multi_tile{ + dir = 2 + }, +/obj/machinery/door/airlock/multi_tile/glass{ + dir = 1; + locked = 1; + name = "Extraction Lab" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/full, +/area/quarantined_outpost/north_east_hallway) +"czE" = ( +/obj/effect/floor_decal/spline/plain/black{ + dir = 1 + }, +/obj/structure/sign/greencross/small{ + pixel_y = 32 + }, +/obj/random/dirt_75, +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/gunmetal, +/area/quarantined_outpost/north_east_hallway) +"czG" = ( +/obj/machinery/door/airlock/hatch, +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/simulated/floor/plating, +/area/quarantined_outpost/entrance_maintenance) +"cAb" = ( +/obj/structure/lattice/catwalk, +/turf/simulated/floor/exoplanet/basalt, +/area/quarantined_outpost/cafeteria/maintenance) +"cAx" = ( +/obj/structure/bed/stool/chair/office/dark{ + dir = 8 + }, +/obj/random/dirt_75, +/obj/random/dirt_75, +/turf/simulated/floor/tiled/dark/full, +/area/quarantined_outpost/engineering/winch_room) +"cAE" = ( +/obj/structure/cable{ + icon_state = "2-4" + }, +/turf/simulated/floor/tiled, +/area/quarantined_outpost/elevator_hallway) +"cAU" = ( +/obj/effect/floor_decal/industrial/hatch/yellow, +/obj/machinery/door/firedoor/multi_tile{ + dir = 2 + }, +/obj/machinery/door/airlock/multi_tile/glass{ + dir = 1; + welded = 1; + name = "Security" + }, +/turf/simulated/floor/tiled/full/airless, +/area/quarantined_outpost/security) +"cBf" = ( +/obj/machinery/appliance/cooker/stove, +/turf/simulated/floor/tiled/dark/full, +/area/quarantined_outpost/cafeteria) +"cBg" = ( +/obj/random/dirt_75, +/turf/simulated/floor/tiled/dark/full, +/area/quarantined_outpost/research) +"cBp" = ( +/obj/machinery/conveyor{ + dir = 8 + }, +/turf/simulated/floor/tiled/dark/full, +/area/quarantined_outpost/cargo_bay) +"cBy" = ( +/obj/effect/floor_decal/corner/dark_blue{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/quarantined_outpost/north_east_hallway) +"cBF" = ( +/obj/effect/floor_decal/corner/yellow, +/turf/simulated/floor/tiled, +/area/quarantined_outpost/engineering) +"cBT" = ( +/obj/effect/floor_decal/corner/yellow{ + dir = 1 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled/gunmetal, +/area/quarantined_outpost/engineering/tunnel) +"cBX" = ( +/obj/structure/flora/rock/random, +/turf/simulated/floor/exoplanet/basalt, +/area/quarantined_outpost/cavern/east_cavern) +"cCc" = ( +/obj/structure/railing/mapped{ + dir = 4 + }, +/obj/effect/floor_decal/corner/black{ + dir = 6 + }, +/obj/random/dirt_75, +/turf/simulated/floor/tiled/rust, +/area/quarantined_outpost/entrance_lobby) +"cCd" = ( +/obj/effect/floor_decal/corner/yellow{ + dir = 5 + }, +/obj/random/dirt_75, +/obj/random/dirt_75, +/obj/structure/cable{ + icon_state = "1-4" + }, +/turf/simulated/floor/tiled, +/area/quarantined_outpost/engineering) +"cCj" = ( +/obj/effect/floor_decal/corner/dark_blue{ + dir = 9 + }, +/obj/structure/sign/flag/sol/old{ + pixel_x = -32 + }, +/turf/simulated/floor/tiled, +/area/quarantined_outpost/elevator_hallway) +"cCm" = ( +/obj/effect/floor_decal/asteroid, +/obj/random/dirt_75, +/turf/simulated/floor/exoplanet/asteroid/ash/rocky, +/area/quarantined_outpost/exterior) +"cCr" = ( +/obj/structure/bookcase/libraryspawn/reference, +/turf/simulated/floor/tiled/bitile{ + dir = 4 + }, +/area/quarantined_outpost/research) +"cCv" = ( +/obj/machinery/atmospherics/portables_connector{ + dir = 8 + }, +/obj/machinery/portable_atmospherics/canister/oxygen, +/turf/simulated/floor/reinforced, +/area/quarantined_outpost/engineering/atmospherics) +"cCD" = ( +/obj/effect/floor_decal/corner/yellow{ + dir = 9 + }, +/obj/structure/extinguisher_cabinet/west, +/turf/simulated/floor/tiled, +/area/quarantined_outpost/engineering) +"cCK" = ( +/obj/structure/closet/secure_closet/brig{ + id = "cell_isolation" + }, +/obj/effect/floor_decal/industrial/outline/security, +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark/airless, +/area/quarantined_outpost/security) +"cCT" = ( +/obj/structure/platform_stairs/full/south_north_cap{ + dir = 8 + }, +/obj/structure/platform{ + dir = 8 + }, +/obj/structure/lattice/catwalk/indoor/grate/dark, +/turf/simulated/floor/plating, +/area/quarantined_outpost/research) +"cCY" = ( +/obj/structure/flora/pottedplant/empty{ + pixel_y = 8 + }, +/obj/effect/floor_decal/corner/lime/full{ + dir = 8 + }, +/obj/random/dirt_75, +/obj/effect/decal/cleanable/floor_damage/rust, +/turf/simulated/floor/tiled, +/area/quarantined_outpost/cafeteria) +"cDb" = ( +/obj/structure/table/standard, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/effect/floor_decal/corner_wide/paleblue{ + dir = 5 + }, +/obj/item/folder{ + pixel_x = 4 + }, +/obj/item/folder/yellow, +/obj/random/dirt_75, +/turf/simulated/floor/tiled/airless, +/area/quarantined_outpost/security) +"cDg" = ( +/obj/effect/floor_decal/spline/plain/black{ + dir = 8 + }, +/obj/structure/trash_pile, +/obj/random/dirt_75, +/turf/simulated/floor/tiled/rust, +/area/quarantined_outpost/reception) +"cDi" = ( +/obj/effect/floor_decal/industrial/hatch/yellow, +/obj/machinery/atmospherics/portables_connector{ + dir = 4 + }, +/obj/machinery/portable_atmospherics/canister/oxygen, +/turf/simulated/floor/plating, +/area/quarantined_outpost/medbay) +"cDS" = ( +/obj/effect/floor_decal/corner_wide/paleblue{ + dir = 10 + }, +/obj/random/dirt_75, +/obj/machinery/light/maybe_broken/decayed, +/turf/simulated/floor/tiled/airless, +/area/quarantined_outpost/security) +"cEa" = ( +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/structure/kitchenspike, +/turf/simulated/floor/tiled/freezer{ + name = "cooled tiles"; + temperature = 253.15 + }, +/area/quarantined_outpost/cafeteria) +"cEi" = ( +/turf/simulated/floor/tiled, +/area/quarantined_outpost/entrance_lobby) +"cEp" = ( +/obj/effect/floor_decal/spline/plain/black{ + dir = 8 + }, +/obj/random/dirt_75, +/turf/simulated/floor/tiled/gunmetal, +/area/quarantined_outpost/engineering/tunnel) +"cEv" = ( +/obj/effect/floor_decal/spline/plain/black{ + dir = 5 + }, +/obj/structure/flora/pottedplant/dead2, +/obj/random/dirt_75, +/obj/structure/sign/flag/sol/old{ + pixel_y = -32 + }, +/turf/simulated/floor/tiled/dark/full, +/area/quarantined_outpost/reception) +"cEB" = ( +/obj/machinery/door/airlock/maintenance_hatch{ + dir = 4 + }, +/obj/machinery/door/firedoor{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/simulated/floor/plating, +/area/quarantined_outpost/reception) +"cEF" = ( +/obj/structure/railing/mapped{ + dir = 1 + }, +/obj/random/dirt_75, +/obj/structure/stairs_railing{ + pixel_y = 22; + dir = 1; + pixel_x = -1 + }, +/obj/effect/floor_decal/industrial/outline_door/yellow{ + dir = 8 + }, +/obj/machinery/light/small/maybe_broken/decayed{ + dir = 8 + }, +/turf/simulated/floor/tiled/dark/full, +/area/quarantined_outpost/engineering/atmospherics) +"cEL" = ( +/obj/random/dirt_75, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/effect/landmark/quarantined_outpost/creature, +/turf/simulated/floor/tiled/full, +/area/quarantined_outpost/elevator_hallway) +"cEO" = ( +/obj/structure/platform/ledge/dark{ + dir = 8 + }, +/obj/structure/platform/ledge/dark{ + dir = 4 + }, +/turf/simulated/floor/exoplanet/abyss, +/area/quarantined_outpost/research/containment) +"cER" = ( +/obj/effect/floor_decal/corner/dark_blue{ + dir = 10 + }, +/obj/random/dirt_75, +/obj/random/dirt_75, +/turf/simulated/floor/tiled, +/area/quarantined_outpost/elevator_hallway) +"cET" = ( +/turf/simulated/floor/exoplanet/basalt, +/area/quarantined_outpost/engineering/tunnel) +"cFW" = ( +/obj/effect/floor_decal/industrial/outline_straight/yellow{ + dir = 4 + }, +/obj/random/dirt_75, +/obj/machinery/light/small/emergency, +/turf/simulated/floor/tiled/ridged, +/area/quarantined_outpost/server_relay/south_east) +"cGb" = ( +/obj/structure/table/standard, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 1 + }, +/turf/simulated/floor/tiled/light/full, +/area/quarantined_outpost/research) +"cGj" = ( +/obj/structure/bed/stool/chair/folding, +/obj/effect/floor_decal/corner/lime, +/obj/random/dirt_75, +/turf/simulated/floor/tiled, +/area/quarantined_outpost/cafeteria) +"cGr" = ( +/obj/structure/table/standard, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/random/desktoy{ + pixel_y = 13; + pixel_x = -3 + }, +/obj/item/folder/blue{ + pixel_x = 5 + }, +/obj/random/dirt_75, +/turf/simulated/floor/tiled/airless, +/area/quarantined_outpost/security) +"cGy" = ( +/obj/random/dirt_75, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled/full/airless, +/area/quarantined_outpost/security) +"cGR" = ( +/obj/structure/sign/nosmoking_1{ + pixel_y = 35 + }, +/obj/effect/decal/cleanable/floor_damage/rust, +/turf/simulated/floor/tiled/white, +/area/quarantined_outpost/medbay) +"cGX" = ( +/obj/effect/floor_decal/corner_wide/paleblue/diagonal, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled/airless, +/area/quarantined_outpost/security) +"cHp" = ( +/obj/effect/floor_decal/corner/dark_blue{ + dir = 8 + }, +/obj/abstract/footprint_spawner{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/quarantined_outpost/elevator_hallway) +"cHG" = ( +/obj/effect/floor_decal/corner/dark_blue{ + dir = 5 + }, +/obj/random/dirt_75, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/quarantined_outpost/north_east_hallway) +"cHX" = ( +/obj/random/dirt_75, +/obj/effect/floor_decal/corner_wide/paleblue{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/quarantined_outpost/elevator_hallway) +"cIe" = ( +/obj/structure/railing/mapped{ + dir = 4 + }, +/obj/random/dirt_75, +/obj/structure/flora/rock/stalagmite/random, +/turf/simulated/floor/exoplanet/asteroid/ash/rocky, +/area/quarantined_outpost/exterior) +"cIu" = ( +/obj/effect/floor_decal/corner/mauve{ + dir = 6 + }, +/obj/effect/floor_decal/spline/plain/purple{ + dir = 4 + }, +/obj/effect/decal/cleanable/floor_damage/rust, +/obj/random/dirt_75, +/turf/simulated/floor/tiled/light, +/area/quarantined_outpost/research) +"cIY" = ( +/obj/random/dirt_75, +/turf/simulated/floor/carpet/brown, +/area/quarantined_outpost/cargo_bay) +"cIZ" = ( +/obj/effect/floor_decal/spline/plain/corner/black{ + dir = 1 + }, +/obj/random/dirt_75, +/obj/random/dirt_75, +/obj/effect/decal/cleanable/floor_damage/rust, +/turf/simulated/floor/tiled/gunmetal, +/area/quarantined_outpost/engineering/tunnel) +"cJd" = ( +/obj/structure/grille/broken, +/obj/random/dirt_75, +/obj/random/dirt_75, +/turf/simulated/floor/plating, +/area/quarantined_outpost/entrance_maintenance) +"cJJ" = ( +/obj/random/junk, +/turf/simulated/floor/tiled/gunmetal, +/area/quarantined_outpost/engineering) +"cJO" = ( +/obj/effect/floor_decal/corner/mauve{ + dir = 5 + }, +/obj/random/dirt_75, +/obj/random/junk, +/turf/simulated/floor/tiled/white, +/area/quarantined_outpost/extraction_lab) +"cJW" = ( +/obj/structure/railing/mapped{ + dir = 8 + }, +/obj/random/dirt_75, +/obj/random/dirt_75, +/turf/simulated/floor/tiled, +/area/quarantined_outpost/cargo_bay) +"cKb" = ( +/obj/effect/decal/cleanable/molten_item, +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/obj/effect/decal/cleanable/floor_damage/random_broken, +/obj/effect/decal/cleanable/floor_damage/random_burned, +/obj/machinery/atmospherics/pipe/simple/hidden/yellow, +/turf/simulated/floor/plating, +/area/quarantined_outpost/research/containment) +"cKc" = ( +/obj/structure/platform_stairs/full/south_north_cap{ + dir = 1 + }, +/obj/random/dirt_75, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/manifold4w/hidden/supply, +/obj/machinery/atmospherics/pipe/manifold4w/hidden/scrubbers, +/obj/structure/cable{ + icon_state = "2-4" + }, +/turf/simulated/floor/tiled/gunmetal, +/area/quarantined_outpost/north_east_hallway) +"cKg" = ( +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 5 + }, +/turf/simulated/wall/r_wall, +/area/quarantined_outpost/engineering/atmospherics) +"cKo" = ( +/obj/effect/floor_decal/spline/plain/black{ + dir = 1 + }, +/obj/effect/decal/cleanable/floor_damage/rust, +/obj/machinery/atmospherics/unary/vent_pump/on, +/obj/effect/landmark/trapped_vent/maybe/quarantined_outpost, +/turf/simulated/floor/tiled/gunmetal, +/area/quarantined_outpost/north_east_hallway) +"cKD" = ( +/obj/structure/bed/stool/chair/office/light{ + dir = 1 + }, +/obj/random/dirt_75, +/turf/simulated/floor/tiled/light/full, +/area/quarantined_outpost/research) +"cKR" = ( +/obj/effect/map_effect/window_spawner/full/reinforced/firedoor, +/turf/simulated/floor/tiled/gunmetal/full, +/area/quarantined_outpost/server_relay/north_west) +"cLu" = ( +/obj/structure/railing/mapped{ + dir = 8 + }, +/obj/structure/lattice/catwalk/indoor/grate/dark, +/obj/effect/decal/rolling_fog, +/turf/simulated/floor/plating, +/area/quarantined_outpost/research) +"cLI" = ( +/obj/machinery/door/window/westright{ + name = "Site Director's Office" + }, +/obj/random/dirt_75, +/turf/simulated/floor/tiled/white, +/area/quarantined_outpost/research) +"cLU" = ( +/obj/structure/railing/mapped{ + dir = 4 + }, +/obj/effect/floor_decal/industrial/outline/medical, +/obj/structure/closet/crate/trashcart, +/obj/structure/sign/biohazard{ + pixel_y = 32 + }, +/obj/effect/decal/cleanable/floor_damage/rust, +/obj/random/dirt_75, +/obj/random/dirt_75, +/turf/simulated/floor/tiled, +/area/quarantined_outpost/medbay) +"cMG" = ( +/obj/effect/floor_decal/corner/dark_blue, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 + }, +/turf/simulated/floor/tiled, +/area/quarantined_outpost/north_east_hallway) +"cNl" = ( +/obj/random/dirt_75, +/turf/simulated/floor/tiled/gunmetal, +/area/quarantined_outpost/engineering) +"cNr" = ( +/obj/effect/floor_decal/corner/dark_blue{ + dir = 1 + }, +/obj/effect/floor_decal/corner/yellow{ + dir = 4 + }, +/obj/structure/platform_deco{ + dir = 1 + }, +/obj/effect/decal/cleanable/floor_damage/rust, +/obj/random/dirt_75, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/effect/landmark/quarantined_outpost/creature, +/turf/simulated/floor/tiled/gunmetal, +/area/quarantined_outpost/north_east_hallway) +"cNv" = ( +/obj/structure/table/standard, +/obj/effect/floor_decal/industrial/outline/grey, +/obj/random/loot, +/turf/simulated/floor/tiled/dark/full, +/area/quarantined_outpost/dorm_hallway) +"cNL" = ( +/obj/effect/floor_decal/corner_wide/lime{ + dir = 5 + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on, +/turf/simulated/floor/tiled/white, +/area/quarantined_outpost/medbay) +"cNZ" = ( +/obj/structure/lattice/catwalk, +/obj/structure/railing/mapped{ + dir = 4 + }, +/obj/structure/bed/handrail{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/quarantined_outpost/cargo_bay) +"cOa" = ( +/obj/random/dirt_75, +/turf/simulated/floor/tiled, +/area/quarantined_outpost/medbay) +"cOb" = ( +/obj/effect/floor_decal/industrial/hatch_door/yellow{ + dir = 1 + }, +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/hatch, +/obj/structure/plasticflaps/airtight, +/turf/simulated/floor/tiled/gunmetal/full, +/area/quarantined_outpost/server_relay/north_east) +"cOg" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 10 + }, +/obj/effect/decal/cleanable/floor_damage/random_burned, +/turf/simulated/floor/reinforced, +/area/quarantined_outpost/research/containment) +"cOA" = ( +/obj/effect/floor_decal/industrial/hatch/yellow, +/obj/machinery/door/firedoor, +/obj/random/dirt_75, +/obj/effect/decal/cleanable/floor_damage/rust, +/turf/simulated/floor/tiled/dark/full, +/area/quarantined_outpost/engineering/atmospherics) +"cPf" = ( +/obj/effect/floor_decal/corner/grey/diagonal, +/obj/effect/floor_decal/industrial/outline/grey, +/obj/structure/closet/secure_closet/refrigerator/standard, +/turf/simulated/floor/tiled/white, +/area/quarantined_outpost/cafeteria) +"cPg" = ( +/obj/machinery/computer/terminal/inactive{ + dir = 1 + }, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/window/reinforced, +/obj/effect/floor_decal/industrial/outline/research, +/obj/random/dirt_75, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled/bitile{ + dir = 4 + }, +/area/quarantined_outpost/research) +"cQg" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 4 + }, +/obj/effect/decal/rolling_fog, +/turf/simulated/floor/plating, +/area/quarantined_outpost/research) +"cQj" = ( +/obj/machinery/door/airlock/external{ + dir = 4 + }, +/obj/structure/lattice/catwalk/indoor/grate/old, +/obj/effect/map_effect/marker/airlock/quarantined_outpost/entrance, +/obj/effect/map_effect/marker_helper/airlock/interior, +/turf/simulated/floor/plating, +/area/quarantined_outpost/entrance_lobby) +"cQZ" = ( +/obj/machinery/light/small/maybe_broken/decayed{ + dir = 4 + }, +/turf/simulated/floor/carpet/rubber, +/area/quarantined_outpost/gym) +"cRl" = ( +/obj/effect/shuttle_landmark/quarantined_outpost/asteroid/landing_1a, +/turf/simulated/floor/plating/asteroid/airless, +/area/quarantined_outpost/exterior) +"cSp" = ( +/obj/effect/floor_decal/spline/plain/black{ + dir = 4 + }, +/obj/random/dirt_75, +/turf/simulated/floor/tiled/gunmetal, +/area/quarantined_outpost/north_east_hallway) +"cSC" = ( +/obj/effect/floor_decal/spline/plain/purple{ + dir = 8 + }, +/obj/structure/bed/stool/chair, +/turf/simulated/floor/tiled/light, +/area/quarantined_outpost/research) +"cSM" = ( +/obj/machinery/door/airlock/maintenance_hatch{ + dir = 1 + }, +/obj/machinery/door/firedoor, +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/simulated/floor/plating, +/area/quarantined_outpost/elevator_hallway/maintenance) +"cSX" = ( +/obj/structure/platform{ + dir = 4 + }, +/turf/simulated/floor/tiled/ramp{ + dir = 1 + }, +/area/quarantined_outpost/extraction_lab) +"cTl" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 8 + }, +/obj/random/dirt_75, +/obj/effect/floor_decal/industrial/outline_straight/yellow{ + dir = 4 + }, +/obj/effect/decal/rolling_fog, +/turf/simulated/floor/plating, +/area/quarantined_outpost/research) +"cTG" = ( +/obj/effect/floor_decal/corner/mauve{ + dir = 5 + }, +/obj/effect/decal/cleanable/floor_damage/rust, +/turf/simulated/floor/tiled/light, +/area/quarantined_outpost/research) +"cTQ" = ( +/obj/effect/decal/cleanable/floor_damage/rust, +/turf/simulated/floor/tiled, +/area/quarantined_outpost/elevator_hallway) +"cTY" = ( +/obj/effect/floor_decal/corner/yellow{ + dir = 10 + }, +/turf/simulated/floor/tiled/dark, +/area/quarantined_outpost/engineering/winch_room) +"cUx" = ( +/obj/structure/table/reinforced/steel, +/obj/machinery/door/window/desk/eastleft, +/turf/simulated/floor/tiled/dark/full, +/area/quarantined_outpost/reception) +"cUD" = ( +/obj/structure/lattice/catwalk/indoor/grate, +/obj/machinery/light/maybe_broken/decayed{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/quarantined_outpost/north_east_hallway) +"cUP" = ( +/obj/structure/platform, +/turf/simulated/floor/plating, +/area/quarantined_outpost/cargo_bay) +"cUZ" = ( +/obj/structure/tank_wall/oxygen{ + icon_state = "o2-3" + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/quarantined_outpost/engineering/atmospherics) +"cVi" = ( +/obj/structure/bed/stool/chair/folding{ + dir = 1 + }, +/turf/simulated/floor/tiled/gunmetal, +/area/quarantined_outpost/engineering) +"cVx" = ( +/obj/machinery/shower{ + dir = 8; + pixel_y = 1 + }, +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/effect/floor_decal/industrial/warning{ + dir = 6 + }, +/obj/random/dirt_75, +/turf/simulated/floor/tiled/dark/full, +/area/quarantined_outpost/research) +"cVD" = ( +/obj/structure/lattice/catwalk/indoor/grate/old, +/obj/structure/cable/orange{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 6 + }, +/turf/simulated/floor/plating, +/area/quarantined_outpost/entrance_lobby) +"cVJ" = ( +/obj/machinery/atmospherics/binary/pump/high_power{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/quarantined_outpost/engineering/atmospherics) +"cWb" = ( +/obj/effect/floor_decal/corner/dark_blue{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/quarantined_outpost/elevator_hallway) +"cWl" = ( +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/machinery/light/small/maybe_broken/decayed{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/quarantined_outpost/cargo_bay) +"cXz" = ( +/obj/random/dirt_75, +/obj/random/dirt_75, +/turf/simulated/floor/exoplanet/asteroid/ash/rocky, +/area/quarantined_outpost/exterior) +"cYf" = ( +/obj/structure/bed/stool/chair{ + dir = 8 + }, +/obj/effect/floor_decal/corner_wide/paleblue/full{ + dir = 4 + }, +/obj/random/dirt_75, +/obj/random/dirt_75, +/turf/simulated/floor/tiled/airless, +/area/quarantined_outpost/security) +"cYr" = ( +/obj/effect/floor_decal/corner/mauve{ + dir = 10 + }, +/obj/random/dirt_75, +/turf/simulated/floor/tiled/light, +/area/quarantined_outpost/research) +"cYx" = ( +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/structure/table/reinforced/steel, +/obj/item/device/multitool{ + pixel_x = -9; + pixel_y = 8 + }, +/obj/item/paper/fluff/quarantined_outpost/maintenance_log{ + pixel_x = 5 + }, +/obj/item/pen/black{ + pixel_y = -2; + pixel_x = -8 + }, +/turf/simulated/floor/tiled/gunmetal/full, +/area/quarantined_outpost/server_relay/south_east) +"cYX" = ( +/obj/effect/floor_decal/corner/dark_blue, +/turf/simulated/floor/tiled/dark, +/area/quarantined_outpost/engineering/atmospherics) +"cZe" = ( +/obj/structure/railing/mapped{ + dir = 8 + }, +/obj/random/dirt_75, +/obj/random/dirt_75, +/turf/simulated/floor/exoplanet/asteroid/ash/rocky, +/area/quarantined_outpost/exterior) +"cZP" = ( +/obj/abstract/footprint_spawner/body{ + dir = 1 + }, +/obj/effect/landmark/organized_spawn_point, +/turf/simulated/floor/exoplanet/basalt, +/area/quarantined_outpost/extraction_lab) +"daP" = ( +/obj/effect/floor_decal/corner_wide/lime{ + dir = 4 + }, +/obj/random/dirt_75, +/obj/structure/cable{ + icon_state = "0-8" + }, +/obj/machinery/power/apc/empty/east, +/turf/simulated/floor/tiled/white, +/area/quarantined_outpost/medbay) +"dbk" = ( +/obj/effect/floor_decal/spline/plain/black, +/obj/random/dirt_75, +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/simulated/floor/tiled, +/area/quarantined_outpost/gym) +"dbK" = ( +/obj/machinery/door/airlock/glass_security{ + dir = 4; + name = "Security Checkpoint" + }, +/obj/effect/floor_decal/industrial/hatch_door/yellow, +/obj/machinery/door/firedoor{ + dir = 4 + }, +/turf/simulated/floor/tiled/full, +/area/quarantined_outpost/cafeteria) +"dbM" = ( +/turf/simulated/wall, +/area/quarantined_outpost/dorm_hallway) +"dbV" = ( +/obj/effect/floor_decal/corner/dark_blue, +/obj/effect/floor_decal/corner/yellow{ + dir = 8 + }, +/obj/random/dirt_75, +/turf/simulated/floor/tiled/dark, +/area/quarantined_outpost/north_east_hallway) +"dcE" = ( +/obj/effect/floor_decal/corner_wide/paleblue{ + dir = 4 + }, +/obj/item/ammo_casing/shotgun/used, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled/airless, +/area/quarantined_outpost/security) +"dcF" = ( +/obj/structure/lattice/catwalk, +/obj/structure/railing/mapped{ + dir = 1 + }, +/obj/structure/railing/mapped{ + dir = 4 + }, +/turf/simulated/floor/exoplanet/abyss, +/area/quarantined_outpost/engineering/atmospherics) +"dcG" = ( +/obj/effect/floor_decal/spline/plain/black{ + dir = 8 + }, +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/machinery/suit_cycler/offship, +/turf/simulated/floor/tiled/dark/full, +/area/quarantined_outpost/entrance_lobby) +"dcP" = ( +/obj/random/dirt_75, +/obj/effect/floor_decal/corner_wide/paleblue, +/obj/structure/bed/stool/chair/office/dark{ + dir = 4 + }, +/turf/simulated/floor/tiled/airless, +/area/quarantined_outpost/security) +"dcT" = ( +/obj/random/dirt_75, +/obj/structure/platform_stairs/full/east_west_cap{ + dir = 8 + }, +/obj/structure/platform/cutout, +/turf/simulated/floor/tiled/ridged, +/area/quarantined_outpost/extraction_lab) +"dcW" = ( +/obj/machinery/light/small/maybe_broken/decayed{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/quarantined_outpost/cargo_bay) +"ddk" = ( +/obj/structure/bookcase/libraryspawn/reference, +/turf/simulated/floor/tiled/bitile{ + dir = 8 + }, +/area/quarantined_outpost/research) +"ddL" = ( +/obj/random/dirt_75, +/obj/structure/bed/stool/chair/folding{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/quarantined_outpost/cafeteria) +"ddS" = ( +/turf/simulated/wall/r_wall, +/area/quarantined_outpost/server_relay/north_east) +"dee" = ( +/obj/structure/lattice/catwalk/indoor/grate/damaged, +/turf/simulated/floor/airless, +/area/quarantined_outpost/security) +"dei" = ( +/turf/simulated/floor/tiled/white, +/area/quarantined_outpost/research) +"dey" = ( +/obj/machinery/light/small/maybe_broken/decayed, +/obj/machinery/floodlight/randomcharge{ + dir = 8 + }, +/turf/simulated/floor/exoplanet/basalt, +/area/quarantined_outpost/research) +"deF" = ( +/obj/machinery/atmospherics/pipe/simple/visible/black{ + dir = 5 + }, +/obj/random/dirt_75, +/turf/simulated/floor/plating, +/area/quarantined_outpost/engineering/atmospherics) +"dfg" = ( +/obj/effect/floor_decal/corner/dark_blue{ + dir = 4 + }, +/obj/random/dirt_75, +/obj/random/dirt_75, +/turf/simulated/floor/tiled, +/area/quarantined_outpost/dorm_hallway) +"dfr" = ( +/obj/effect/floor_decal/industrial/hatch/yellow, +/obj/machinery/door/firedoor/noid, +/obj/random/dirt_75, +/turf/simulated/floor/tiled/white, +/area/quarantined_outpost/medbay) +"dfP" = ( +/obj/machinery/atmospherics/pipe/simple/visible/black{ + dir = 4 + }, +/obj/random/dirt_75, +/turf/simulated/floor/plating, +/area/quarantined_outpost/engineering/atmospherics) +"dgT" = ( +/obj/structure/table/wood, +/obj/item/paper_bin{ + pixel_y = 5; + pixel_x = -4 + }, +/obj/item/pen{ + pixel_x = -5 + }, +/obj/item/material/ashtray/bronze{ + pixel_y = -5; + pixel_x = 4 + }, +/turf/simulated/floor/carpet/brown, +/area/quarantined_outpost/cargo_bay) +"dgX" = ( +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/machinery/portable_atmospherics/powered/pump/filled, +/obj/effect/floor_decal/industrial/warning{ + dir = 9 + }, +/turf/simulated/floor/tiled/dark/full, +/area/quarantined_outpost/cargo_bay) +"dhb" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/quarantined_outpost/reception) +"dhg" = ( +/obj/machinery/light/small/decayed, +/turf/simulated/floor/tiled/dark/full, +/area/quarantined_outpost/reception) +"dhj" = ( +/obj/effect/floor_decal/corner_wide/lime{ + dir = 9 + }, +/obj/structure/table/rack, +/obj/item/paper/pamphlet, +/obj/item/paper/pamphlet, +/obj/item/paper/pamphlet, +/obj/effect/decal/cleanable/floor_damage/rust, +/turf/simulated/floor/tiled/white, +/area/quarantined_outpost/medbay) +"dhr" = ( +/obj/item/material/shard{ + pixel_y = -3; + pixel_x = -7 + }, +/turf/simulated/floor/carpet/rubber, +/area/quarantined_outpost/gym) +"dhD" = ( +/obj/structure/closet/secure_closet/personal, +/obj/effect/floor_decal/corner/dark_green{ + dir = 5 + }, +/obj/random/loot, +/obj/effect/floor_decal/industrial/outline/grey, +/obj/random/dirt_75, +/obj/outfit/admin/generic, +/turf/simulated/floor/tiled, +/area/quarantined_outpost/gym) +"dia" = ( +/obj/effect/floor_decal/industrial/hatch/yellow, +/obj/machinery/door/firedoor, +/turf/simulated/floor/tiled/gunmetal/full, +/area/quarantined_outpost/engineering/winch_room) +"dib" = ( +/obj/structure/sign/securearea{ + name = "\improper DANGER: HOT GAS sign"; + desc = "A warning sign which reads \"DANGER: HOT GAS\"."; + pixel_x = 32 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/turf/simulated/floor/reinforced/airless, +/area/quarantined_outpost/engineering/atmospherics) +"dis" = ( +/obj/random/dirt_75, +/obj/structure/cable/orange{ + icon_state = "1-2" + }, +/obj/item/stack/tile/floor{ + pixel_x = -10 + }, +/turf/simulated/floor/plating, +/area/quarantined_outpost/engineering) +"diI" = ( +/obj/structure/sink{ + dir = 4; + pixel_x = 12 + }, +/obj/effect/floor_decal/corner/green/diagonal, +/obj/random/dirt_75, +/obj/random/dirt_75, +/obj/structure/mirror{ + pixel_x = 27 + }, +/turf/simulated/floor/tiled/white, +/area/quarantined_outpost/dorm_hallway) +"diK" = ( +/obj/effect/floor_decal/spline/fancy/wood/cee{ + dir = 4 + }, +/obj/structure/flora/grass/desert{ + name = "withered grass" + }, +/turf/simulated/floor/exoplanet/barren, +/area/quarantined_outpost/elevator_hallway) +"djB" = ( +/obj/structure/platform/dark{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/universal, +/obj/effect/floor_decal/industrial/outline_straight/yellow{ + dir = 1 + }, +/obj/effect/decal/rolling_fog, +/turf/simulated/floor/plating, +/area/quarantined_outpost/research) +"djG" = ( +/obj/effect/floor_decal/spline/plain/black{ + dir = 8 + }, +/obj/random/dirt_75, +/obj/random/junk, +/obj/effect/landmark/quarantined_outpost/creature, +/turf/simulated/floor/tiled, +/area/quarantined_outpost/gym) +"dkc" = ( +/obj/effect/floor_decal/corner/yellow{ + dir = 5 + }, +/obj/abstract/footprint_spawner/body{ + dir = 8 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled/gunmetal, +/area/quarantined_outpost/engineering/tunnel) +"dkd" = ( +/obj/structure/lattice/catwalk, +/obj/machinery/light/small/decayed{ + dir = 4 + }, +/obj/effect/decal/rolling_fog, +/turf/simulated/floor/plating, +/area/quarantined_outpost/research) +"dki" = ( +/obj/effect/floor_decal/corner/dark_blue/full{ + dir = 1 + }, +/obj/random/dirt_75, +/obj/structure/bed/stool/chair/folding{ + dir = 8 + }, +/turf/simulated/floor/tiled/gunmetal, +/area/quarantined_outpost/cafeteria) +"dkm" = ( +/obj/effect/landmark/quarantined_outpost/creature, +/turf/simulated/floor/tiled, +/area/quarantined_outpost/cargo_bay) +"dkv" = ( +/obj/random/dirt_75, +/obj/random/dirt_75, +/turf/simulated/floor/plating/asteroid/airless, +/area/quarantined_outpost/exterior) +"dkK" = ( +/obj/structure/platform/ledge, +/obj/random/dirt_75, +/turf/simulated/floor/plating, +/area/quarantined_outpost/cargo_bay) +"dlu" = ( +/obj/structure/table/standard, +/obj/item/folder{ + pixel_x = 4 + }, +/obj/item/folder/yellow, +/turf/simulated/floor/tiled/white, +/area/quarantined_outpost/research) +"dlv" = ( +/obj/structure/table/reinforced, +/obj/machinery/door/firedoor, +/obj/machinery/door/window/southleft, +/turf/simulated/floor/tiled/dark/full, +/area/quarantined_outpost/cargo_bay) +"dlI" = ( +/obj/random/dirt_75, +/turf/simulated/floor/plating, +/area/quarantined_outpost/north_east_hallway/maintenance) +"dlL" = ( +/obj/random/dirt_75, +/turf/simulated/floor/plating, +/area/quarantined_outpost/cafeteria/maintenance) +"dmw" = ( +/obj/effect/floor_decal/corner/grey/diagonal, +/obj/structure/table/stone/marble, +/obj/item/storage/box/gloves{ + pixel_x = 7 + }, +/obj/machinery/reagentgrinder{ + pixel_x = 4; + pixel_y = 16 + }, +/obj/item/reagent_containers/glass/beaker/large{ + pixel_x = -9; + pixel_y = 15 + }, +/obj/item/reagent_containers/glass/beaker/large{ + pixel_x = -9; + pixel_y = 6 + }, +/turf/simulated/floor/tiled/white, +/area/quarantined_outpost/cafeteria) +"dmy" = ( +/obj/structure/closet/secure_closet/personal, +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/random/dirt_75, +/obj/outfit/admin/generic, +/obj/random/loot, +/turf/simulated/floor/tiled/dark/full, +/area/quarantined_outpost/cargo_bay) +"dmX" = ( +/obj/effect/floor_decal/corner/dark_blue{ + dir = 1 + }, +/obj/structure/table/standard, +/obj/item/paper_bin{ + pixel_y = 8; + pixel_x = -8 + }, +/obj/item/pen{ + pixel_x = -6; + pixel_y = 2 + }, +/obj/item/device/flashlight/maglight, +/turf/simulated/floor/tiled, +/area/quarantined_outpost/entrance_lobby) +"dnn" = ( +/obj/effect/floor_decal/corner_wide/paleblue{ + dir = 4 + }, +/obj/item/ammo_casing/rifle/used{ + pixel_y = -4; + pixel_x = -3 + }, +/obj/random/dirt_75, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 1 + }, +/turf/simulated/floor/tiled/airless, +/area/quarantined_outpost/security) +"dnq" = ( +/obj/structure/lattice/catwalk/indoor, +/obj/effect/floor_decal/industrial/warning{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/quarantined_outpost/engineering/atmospherics) +"dnD" = ( +/obj/random/dirt_75, +/obj/effect/landmark/quarantined_outpost/creature, +/turf/simulated/floor/tiled/dark/full, +/area/quarantined_outpost/engineering/winch_room) +"dnI" = ( +/obj/effect/floor_decal/corner_wide/paleblue{ + dir = 9 + }, +/obj/item/ammo_casing/rifle/used, +/obj/item/ammo_casing/rifle/used{ + pixel_y = -7; + pixel_x = 7 + }, +/obj/item/ammo_casing/rifle/used{ + pixel_y = -4; + pixel_x = -3 + }, +/turf/simulated/floor/tiled/airless, +/area/quarantined_outpost/security) +"don" = ( +/obj/effect/floor_decal/corner/dark_blue, +/obj/effect/floor_decal/corner/yellow{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 1 + }, +/turf/simulated/floor/tiled/dark, +/area/quarantined_outpost/engineering/atmospherics) +"dou" = ( +/obj/effect/floor_decal/corner/black{ + dir = 5 + }, +/obj/structure/flora/pottedplant/dead2{ + pixel_y = 13 + }, +/turf/simulated/floor/tiled, +/area/quarantined_outpost/dorm_hallway) +"dpe" = ( +/obj/structure/bed/stool/chair, +/obj/effect/floor_decal/corner/black{ + dir = 1 + }, +/obj/random/dirt_75, +/turf/simulated/floor/tiled/dark, +/area/quarantined_outpost/entrance_lobby) +"dpf" = ( +/obj/effect/floor_decal/corner/mauve/diagonal, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 1 + }, +/turf/simulated/floor/tiled/white, +/area/quarantined_outpost/extraction_lab) +"dpm" = ( +/obj/effect/decal/cleanable/blood, +/obj/random/dirt_75, +/turf/simulated/floor/tiled, +/area/quarantined_outpost/dorm_hallway) +"dpX" = ( +/obj/structure/bookcase/libraryspawn/reference, +/turf/simulated/floor/tiled/bitile/middle{ + dir = 4 + }, +/area/quarantined_outpost/research) +"dqg" = ( +/obj/effect/floor_decal/corner/mauve/diagonal, +/obj/structure/bed/stool/chair/office/light{ + dir = 1 + }, +/turf/simulated/floor/tiled/white, +/area/quarantined_outpost/extraction_lab) +"dqB" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/obj/effect/decal/cleanable/floor_damage/rust, +/obj/random/dirt_75, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 + }, +/turf/simulated/floor/tiled, +/area/quarantined_outpost/cargo_bay) +"drK" = ( +/obj/structure/bed/stool/chair/office/dark{ + dir = 4 + }, +/obj/effect/floor_decal/corner_wide/paleblue{ + dir = 10 + }, +/obj/machinery/light/maybe_broken/decayed, +/turf/simulated/floor/tiled/airless, +/area/quarantined_outpost/security) +"drN" = ( +/obj/effect/floor_decal/industrial/hatch/custodial, +/obj/effect/decal/cleanable/generic, +/turf/simulated/floor/tiled/dark/full, +/area/quarantined_outpost/research) +"dsd" = ( +/obj/effect/floor_decal/corner/yellow{ + dir = 10 + }, +/obj/random/dirt_75, +/obj/random/dirt_75, +/obj/effect/decal/cleanable/floor_damage/rust, +/obj/machinery/alarm/south, +/turf/simulated/floor/tiled/dark, +/area/quarantined_outpost/engineering/winch_room) +"dsg" = ( +/obj/structure/lattice/catwalk/indoor/grate/damaged, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 + }, +/turf/simulated/floor/plating, +/area/quarantined_outpost/elevator_hallway) +"dst" = ( +/obj/structure/table/reinforced, +/obj/machinery/door/firedoor, +/obj/structure/window/reinforced, +/turf/simulated/floor/tiled/dark/full, +/area/quarantined_outpost/cargo_bay) +"dsG" = ( +/obj/structure/closet/crate/bin, +/obj/effect/floor_decal/corner/dark_blue{ + dir = 6 + }, +/obj/machinery/light/floor/maybe_broken/decayed{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/quarantined_outpost/reception) +"dtB" = ( +/obj/structure/toilet{ + dir = 8; + pixel_y = -1 + }, +/obj/effect/floor_decal/corner/green/diagonal, +/obj/random/dirt_75, +/obj/machinery/light/small/maybe_broken/decayed{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/quarantined_outpost/dorm_hallway) +"dtQ" = ( +/obj/random/dirt_75, +/obj/effect/floor_decal/corner/dark_blue{ + dir = 10 + }, +/obj/structure/railing/mapped, +/turf/simulated/floor/tiled, +/area/quarantined_outpost/elevator_hallway) +"dtY" = ( +/obj/effect/floor_decal/corner/dark_blue, +/obj/random/dirt_75, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/quarantined_outpost/dorm_hallway) +"duT" = ( +/obj/machinery/door/firedoor, +/obj/effect/floor_decal/industrial/hatch_door/yellow{ + dir = 1 + }, +/obj/machinery/door/airlock/glass_security{ + name = "Armoury" + }, +/obj/random/dirt_75, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 1 + }, +/turf/simulated/floor/tiled/dark/full/airless, +/area/quarantined_outpost/security) +"duY" = ( +/obj/effect/floor_decal/corner/brown{ + dir = 10 + }, +/obj/machinery/alarm/south, +/turf/simulated/floor/tiled, +/area/quarantined_outpost/cargo_bay) +"dva" = ( +/obj/structure/flora/rock/stalagmite/random, +/turf/simulated/floor/exoplanet/basalt, +/area/quarantined_outpost/chasm) +"dvB" = ( +/obj/structure/tank_wall/hydrogen{ + icon_state = "h14" + }, +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/quarantined_outpost/engineering/atmospherics) +"dvH" = ( +/obj/effect/floor_decal/corner/purple/full{ + dir = 8 + }, +/obj/effect/floor_decal/industrial/outline/custodial, +/obj/machinery/light/small/decayed{ + dir = 1 + }, +/obj/structure/closet/secure_closet/custodial/offship, +/obj/item/storage/box/lights/mixed, +/obj/item/storage/box/lights/mixed, +/turf/simulated/floor/tiled, +/area/quarantined_outpost/dorm_hallway) +"dwn" = ( +/obj/structure/platform, +/turf/simulated/floor/tiled/ridged, +/area/quarantined_outpost/extraction_lab) +"dwo" = ( +/obj/random/dirt_75, +/obj/effect/decal/cleanable/cobweb2, +/obj/machinery/light/small/emergency{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/quarantined_outpost/cafeteria/maintenance) +"dwW" = ( +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/random/dirt_75, +/obj/structure/trash_pile, +/turf/simulated/floor/tiled/full, +/area/quarantined_outpost/cargo_bay) +"dwX" = ( +/obj/structure/weightlifter, +/obj/random/dirt_75, +/obj/machinery/light/small/maybe_broken/decayed{ + dir = 1 + }, +/turf/simulated/floor/carpet/rubber, +/area/quarantined_outpost/gym) +"dxP" = ( +/obj/effect/floor_decal/spline/plain/black{ + dir = 1 + }, +/obj/random/dirt_75, +/obj/random/dirt_75, +/obj/machinery/atmospherics/unary/vent_pump/on, +/turf/simulated/floor/tiled/gunmetal, +/area/quarantined_outpost/engineering/tunnel) +"dyd" = ( +/obj/effect/floor_decal/corner/yellow{ + dir = 4 + }, +/obj/structure/platform{ + dir = 1 + }, +/obj/random/dirt_75, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/gunmetal, +/area/quarantined_outpost/north_east_hallway) +"dyK" = ( +/obj/structure/bed/stool/chair/office/light, +/obj/effect/floor_decal/corner/mauve{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled/light, +/area/quarantined_outpost/research) +"dyT" = ( +/obj/effect/floor_decal/corner/mauve/full{ + dir = 8 + }, +/obj/effect/floor_decal/spline/plain/purple{ + dir = 8 + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/reagent_dispensers/water_cooler{ + pixel_y = 16 + }, +/obj/structure/sign/flag/sol/old/large/north{ + pixel_y = 32 + }, +/turf/simulated/floor/tiled/light, +/area/quarantined_outpost/research) +"dzh" = ( +/turf/simulated/floor/exoplanet/basalt, +/area/quarantined_outpost/north_east_hallway) +"dzJ" = ( +/obj/effect/floor_decal/corner/dark_green{ + dir = 6 + }, +/obj/effect/floor_decal/spline/plain/black, +/obj/effect/floor_decal/spline/plain/black{ + dir = 1 + }, +/obj/machinery/light/small/maybe_broken/decayed{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/quarantined_outpost/gym) +"dAF" = ( +/obj/effect/floor_decal/corner/dark_blue{ + dir = 1 + }, +/obj/structure/table/standard, +/obj/random/junk, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 1 + }, +/turf/simulated/floor/tiled/rust, +/area/quarantined_outpost/dorm_hallway) +"dAU" = ( +/obj/structure/quarantined_outpost_extractor, +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/effect/landmark/mob_waypoint, +/obj/effect/fauna_spawner/organized/quarantined_outpost, +/obj/machinery/atmospherics/pipe/simple/hidden/yellow{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/plating{ + icon_state = "elevatorshaft"; + icon = 'icons/turf/flooring/tiles.dmi' + }, +/area/quarantined_outpost/extraction_lab) +"dBg" = ( +/obj/abstract/footprint_spawner/oil{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 + }, +/obj/structure/lattice/catwalk/indoor/grate/dark, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, +/turf/simulated/floor/plating, +/area/quarantined_outpost/engineering/atmospherics) +"dBB" = ( +/obj/effect/floor_decal/corner_wide/paleblue, +/turf/simulated/floor/tiled/airless, +/area/quarantined_outpost/security) +"dBI" = ( +/obj/effect/decal/cleanable/floor_damage/rust, +/obj/machinery/atmospherics/portables_connector{ + dir = 1 + }, +/turf/simulated/floor/plating, +/area/quarantined_outpost/engineering/atmospherics) +"dCb" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 4 + }, +/obj/effect/landmark/trapped_vent/maybe/quarantined_outpost, +/turf/simulated/floor/tiled/white, +/area/quarantined_outpost/medbay) +"dCi" = ( +/obj/random/dirt_75, +/obj/random/dirt_75, +/obj/structure/barricade/wooden/road{ + dir = 1 + }, +/turf/simulated/floor/exoplanet/asteroid/ash/rocky, +/area/quarantined_outpost/exterior) +"dCs" = ( +/obj/structure/grille/broken, +/obj/structure/lattice, +/turf/simulated/floor/plating, +/area/quarantined_outpost/elevator_hallway/maintenance) +"dCL" = ( +/obj/effect/floor_decal/spline/plain/black{ + dir = 8 + }, +/obj/random/dirt_75, +/turf/simulated/floor/tiled/rust, +/area/quarantined_outpost/reception) +"dCP" = ( +/obj/structure/lattice/catwalk, +/obj/structure/table/standard, +/obj/structure/railing/mapped{ + dir = 8 + }, +/obj/random/tech_supply, +/obj/random/tech_supply, +/obj/item/device/radio{ + pixel_x = 8 + }, +/turf/simulated/floor/exoplanet/basalt, +/area/quarantined_outpost/engineering/tunnel) +"dCY" = ( +/obj/random/dirt_75, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, +/turf/simulated/floor/tiled/airless, +/area/quarantined_outpost/security) +"dDl" = ( +/obj/effect/floor_decal/corner/dark_blue{ + dir = 1 + }, +/obj/effect/floor_decal/corner/yellow{ + dir = 8 + }, +/obj/abstract/footprint_spawner/oil, +/obj/abstract/footprint_spawner_turn_helper{ + dir = 8 + }, +/turf/simulated/floor/tiled/dark, +/area/quarantined_outpost/engineering/atmospherics) +"dDo" = ( +/obj/random/dirt_75, +/turf/simulated/floor/plating, +/area/quarantined_outpost/entrance_maintenance) +"dDH" = ( +/obj/effect/floor_decal/corner/dark_blue{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply, +/turf/simulated/floor/tiled, +/area/quarantined_outpost/north_east_hallway) +"dEt" = ( +/obj/structure/flora/pottedplant/empty{ + pixel_y = 14 + }, +/obj/effect/floor_decal/corner/dark_blue/full{ + dir = 1 + }, +/obj/random/dirt_75, +/obj/effect/decal/cleanable/cobweb2, +/turf/simulated/floor/tiled, +/area/quarantined_outpost/elevator_hallway) +"dEA" = ( +/obj/machinery/door/firedoor{ + dir = 4 + }, +/obj/effect/floor_decal/industrial/hatch_door/yellow{ + dir = 4 + }, +/obj/machinery/door/airlock/glass_security{ + dir = 4; + name = "Meeting Room" + }, +/obj/random/dirt_75, +/obj/random/dirt_75, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled/full/airless, +/area/quarantined_outpost/security) +"dER" = ( +/obj/effect/floor_decal/corner_wide/lime{ + dir = 10 + }, +/obj/effect/decal/cleanable/floor_damage/rust, +/obj/random/dirt_75, +/obj/effect/landmark/quarantined_outpost/canister_spawn, +/turf/simulated/floor/tiled/white, +/area/quarantined_outpost/medbay) +"dFe" = ( +/obj/structure/foamedmetal, +/turf/simulated/floor/plating, +/area/quarantined_outpost/research) +"dFo" = ( +/turf/simulated/floor/exoplanet/abyss, +/area/quarantined_outpost/cavern/east_cavern) +"dFN" = ( +/obj/effect/floor_decal/corner/dark_blue{ + dir = 10 + }, +/obj/structure/table/standard, +/turf/simulated/floor/tiled, +/area/quarantined_outpost/north_east_hallway) +"dFP" = ( +/obj/effect/floor_decal/corner_wide/paleblue, +/obj/random/dirt_75, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, +/turf/simulated/floor/tiled/airless, +/area/quarantined_outpost/security) +"dGc" = ( +/obj/structure/target_stake, +/turf/simulated/floor/exoplanet/basalt, +/area/quarantined_outpost/cavern/east_cavern) +"dGM" = ( +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 4 + }, +/obj/machinery/atmospherics/binary/pump/high_power{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/quarantined_outpost/engineering/atmospherics) +"dGO" = ( +/obj/machinery/atmospherics/pipe/manifold/visible/black, +/obj/effect/decal/cleanable/floor_damage/rust, +/turf/simulated/floor/tiled/gunmetal, +/area/quarantined_outpost/engineering/atmospherics) +"dGS" = ( +/obj/structure/railing/mapped{ + dir = 4 + }, +/obj/effect/floor_decal/corner/black{ + dir = 6 + }, +/obj/random/dirt_75, +/obj/abstract/footprint_spawner/body{ + dir = 1 + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/simulated/floor/tiled, +/area/quarantined_outpost/entrance_lobby) +"dHx" = ( +/obj/effect/floor_decal/corner/dark_blue{ + dir = 5 + }, +/obj/structure/bookcase/libraryspawn/fiction, +/turf/simulated/floor/tiled, +/area/quarantined_outpost/reception) +"dHC" = ( +/obj/machinery/door/firedoor{ + dir = 4 + }, +/obj/structure/window/shuttle/scc_space_ship/cardinal, +/turf/simulated/floor/tiled/dark/full, +/area/quarantined_outpost/extraction_lab) +"dHX" = ( +/obj/structure/table/standard, +/obj/effect/floor_decal/corner/mauve{ + dir = 10 + }, +/obj/machinery/light/broken, +/obj/effect/decal/cleanable/floor_damage/rust, +/turf/simulated/floor/tiled/white, +/area/quarantined_outpost/extraction_lab) +"dIs" = ( +/obj/structure/platform/ledge/dark, +/turf/simulated/floor/exoplanet/abyss, +/area/quarantined_outpost/research/containment) +"dIv" = ( +/obj/effect/floor_decal/industrial/hatch_door/yellow{ + dir = 1 + }, +/obj/random/dirt_75, +/obj/machinery/door/firedoor/noid/closed{ + blocked = 1 + }, +/obj/machinery/door/airlock/generic{ + name = "Dormitory #35" + }, +/turf/simulated/floor/tiled/full, +/area/quarantined_outpost/dorm_hallway) +"dIC" = ( +/obj/effect/floor_decal/corner/yellow/full, +/obj/random/dirt_75, +/turf/simulated/floor/tiled, +/area/quarantined_outpost/engineering) +"dIJ" = ( +/obj/effect/floor_decal/corner/brown{ + dir = 10 + }, +/obj/random/dirt_75, +/turf/simulated/floor/tiled, +/area/quarantined_outpost/cargo_bay) +"dJh" = ( +/obj/effect/floor_decal/industrial/hatch/yellow, +/obj/machinery/door/firedoor{ + dir = 1 + }, +/obj/random/dirt_75, +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/full, +/area/quarantined_outpost/cargo_bay) +"dJt" = ( +/obj/effect/floor_decal/corner/dark_blue/diagonal, +/obj/random/dirt_75, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 8 + }, +/obj/effect/landmark/trapped_vent/maybe/quarantined_outpost, +/turf/simulated/floor/tiled/dark/airless, +/area/quarantined_outpost/security) +"dJu" = ( +/obj/effect/floor_decal/spline/plain/black{ + dir = 8 + }, +/obj/effect/decal/cleanable/floor_damage/rust, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 1 + }, +/turf/simulated/floor/tiled/gunmetal, +/area/quarantined_outpost/north_east_hallway) +"dJw" = ( +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 4 + }, +/obj/structure/closet/body_bag, +/obj/random/loot, +/obj/effect/decal/cleanable/blood, +/obj/random/dirt_75, +/obj/random/dirt_75, +/turf/simulated/floor/tiled/white, +/area/quarantined_outpost/medbay) +"dJJ" = ( +/obj/machinery/conveyor{ + dir = 10 + }, +/turf/simulated/floor/plating, +/area/quarantined_outpost/cargo_bay) +"dJK" = ( +/obj/structure/table/standard, +/obj/effect/floor_decal/corner_wide/lime/diagonal, +/obj/effect/decal/cleanable/floor_damage/rust, +/obj/random/dirt_75, +/obj/random/dirt_75, +/turf/simulated/floor/tiled/white, +/area/quarantined_outpost/medbay) +"dJU" = ( +/turf/simulated/floor/tiled, +/area/quarantined_outpost/dorm_hallway) +"dKA" = ( +/obj/structure/platform_deco/ledge{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/quarantined_outpost/cargo_bay) +"dKV" = ( +/obj/structure/barricade/wooden, +/obj/effect/floor_decal/corner/dark_blue{ + dir = 10 + }, +/obj/random/dirt_75, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/turf/simulated/floor/tiled/full, +/area/quarantined_outpost/dorm_hallway) +"dLg" = ( +/obj/item/stack/tile/floor{ + pixel_x = 6; + pixel_y = -6 + }, +/obj/effect/floor_decal/corner/yellow{ + dir = 8 + }, +/obj/random/dirt_75, +/obj/random/dirt_75, +/obj/effect/decal/cleanable/floor_damage/rust, +/turf/simulated/floor/tiled, +/area/quarantined_outpost/engineering) +"dLO" = ( +/obj/effect/floor_decal/corner/dark_blue/full{ + dir = 4 + }, +/obj/structure/table/reinforced/steel, +/obj/random/dirt_75, +/obj/machinery/button/remote/blast_door{ + dir = 1; + id = "quarantined_outpost_extraction_west"; + name = "West Extraction Lab Shutters"; + pixel_y = 8; + pixel_x = -6 + }, +/obj/machinery/button/remote/blast_door{ + dir = 1; + id = "quarantined_outpost_extraction_east"; + name = "East Extraction Lab Shutters"; + pixel_y = -3; + pixel_x = -6 + }, +/turf/simulated/floor/tiled/dark, +/area/quarantined_outpost/north_east_hallway) +"dLR" = ( +/obj/effect/floor_decal/corner/yellow{ + dir = 5 + }, +/obj/structure/table/standard, +/obj/random/dirt_75, +/turf/simulated/floor/tiled/gunmetal, +/area/quarantined_outpost/engineering/winch_room) +"dMb" = ( +/obj/random/dirt_75, +/obj/effect/decal/rolling_fog, +/obj/effect/floor_decal/industrial/outline_straight/yellow{ + dir = 1 + }, +/turf/simulated/floor/tiled/dark, +/area/quarantined_outpost/research) +"dMe" = ( +/obj/structure/lattice/catwalk, +/obj/machinery/conveyor{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/quarantined_outpost/cargo_bay) +"dMB" = ( +/obj/effect/floor_decal/corner_wide/lime{ + dir = 9 + }, +/obj/effect/floor_decal/industrial/outline/medical, +/obj/structure/bed/roller, +/obj/machinery/light/maybe_broken/decayed{ + dir = 8 + }, +/turf/simulated/floor/tiled/white, +/area/quarantined_outpost/medbay) +"dMC" = ( +/obj/random/dirt_75, +/obj/random/dirt_75, +/obj/structure/cable{ + 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/quarantined_outpost/reception) +"dMI" = ( +/obj/machinery/light/small/emergency{ + dir = 1 + }, +/obj/structure/flora/rock/stalagmite/random, +/turf/simulated/floor/exoplanet/basalt, +/area/quarantined_outpost/extraction_lab) +"dMQ" = ( +/obj/structure/bed/stool/chair/office/dark{ + dir = 8 + }, +/obj/effect/floor_decal/corner/dark_blue{ + dir = 5 + }, +/obj/effect/floor_decal/industrial/outline_straight/yellow{ + dir = 8 + }, +/obj/random/dirt_75, +/obj/effect/decal/cleanable/floor_damage/rust, +/turf/simulated/floor/tiled/gunmetal, +/area/quarantined_outpost/server_relay/north_east) +"dMY" = ( +/obj/structure/cable/orange{ + icon_state = "1-8" + }, +/turf/simulated/floor/plating, +/area/quarantined_outpost/engineering) +"dNx" = ( +/obj/random/maintenance_junk_or_loot, +/turf/simulated/floor/airless, +/area/quarantined_outpost/auxiliary_power) +"dNG" = ( +/obj/random/dirt_75, +/obj/effect/floor_decal/corner/yellow, +/turf/simulated/floor/tiled/gunmetal, +/area/quarantined_outpost/engineering) +"dNI" = ( +/obj/effect/floor_decal/corner_wide/lime{ + dir = 4 + }, +/obj/structure/closet/body_bag, +/obj/random/dirt_75, +/obj/random/dirt_75, +/turf/simulated/floor/tiled/white, +/area/quarantined_outpost/medbay) +"dOp" = ( +/obj/structure/railing/mapped{ + dir = 4 + }, +/obj/effect/floor_decal/corner/black{ + dir = 6 + }, +/obj/random/dirt_75, +/obj/random/dirt_75, +/obj/structure/trash_pile, +/turf/simulated/floor/tiled, +/area/quarantined_outpost/entrance_lobby) +"dOI" = ( +/obj/random/dirt_75, +/obj/random/dirt_75, +/obj/effect/decal/cleanable/floor_damage/random_broken, +/turf/simulated/floor/airless, +/area/quarantined_outpost/security) +"dOJ" = ( +/obj/random/dirt_75, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/quarantined_outpost/reception) +"dOL" = ( +/obj/effect/floor_decal/corner/black{ + dir = 9 + }, +/obj/structure/bed/stool/chair/folding{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/quarantined_outpost/dorm_hallway) +"dPa" = ( +/obj/structure/platform/ledge/dark{ + dir = 8 + }, +/obj/effect/decal/rolling_fog, +/turf/simulated/floor/exoplanet/abyss, +/area/quarantined_outpost/chasm) +"dPc" = ( +/obj/effect/floor_decal/industrial/outline_straight/yellow{ + dir = 1 + }, +/obj/random/dirt_75, +/obj/random/dirt_75, +/turf/simulated/floor/tiled/ridged, +/area/quarantined_outpost/server_relay/north_east) +"dPu" = ( +/obj/effect/floor_decal/corner/mauve{ + dir = 5 + }, +/obj/random/dirt_75, +/turf/simulated/floor/tiled/white, +/area/quarantined_outpost/extraction_lab) +"dPz" = ( +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/effect/decal/cleanable/cobweb2, +/obj/random/canister/filled, +/turf/simulated/floor/tiled/dark/full, +/area/quarantined_outpost/research) +"dPH" = ( +/obj/effect/map_effect/map_helper/ruler_tiles_3{ + dir = 4 + }, +/obj/random/dirt_75, +/turf/simulated/floor/exoplanet/asteroid/ash/rocky, +/area/quarantined_outpost/exterior) +"dPX" = ( +/turf/simulated/wall, +/area/quarantined_outpost/engineering/tunnel) +"dQC" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/effect/landmark/quarantined_outpost/creature, +/turf/simulated/floor/tiled/rust, +/area/quarantined_outpost/dorm_hallway) +"dQE" = ( +/obj/effect/floor_decal/spline/plain/black{ + dir = 8 + }, +/obj/abstract/footprint_spawner/oil, +/turf/simulated/floor/tiled/gunmetal, +/area/quarantined_outpost/engineering/tunnel) +"dQN" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 9 + }, +/obj/effect/decal/rolling_fog, +/turf/simulated/floor/plating, +/area/quarantined_outpost/research) +"dQY" = ( +/obj/effect/floor_decal/corner/green/diagonal, +/obj/random/dirt_75, +/obj/random/dirt_75, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/effect/landmark/quarantined_outpost/creature, +/turf/simulated/floor/tiled/white, +/area/quarantined_outpost/dorm_hallway) +"dRp" = ( +/obj/effect/floor_decal/spline/fancy/wood/cee{ + dir = 1 + }, +/obj/structure/flora/grass/desert{ + name = "withered grass" + }, +/turf/simulated/floor/exoplanet/barren, +/area/quarantined_outpost/elevator_hallway) +"dRt" = ( +/obj/random/dirt_75, +/turf/simulated/floor/exoplanet/basalt, +/area/quarantined_outpost/cavern/east_cavern) +"dRX" = ( +/obj/effect/floor_decal/corner/mauve{ + dir = 5 + }, +/obj/effect/decal/cleanable/cobweb2, +/obj/effect/decal/cleanable/floor_damage/rust, +/turf/simulated/floor/tiled/white, +/area/quarantined_outpost/extraction_lab) +"dSB" = ( +/obj/structure/lattice/catwalk/indoor/grate/old, +/turf/simulated/floor/plating, +/area/quarantined_outpost/entrance_lobby) +"dSO" = ( +/obj/structure/tank_wall/oxygen{ + icon_state = "o2-2" + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 6 + }, +/turf/simulated/floor/plating, +/area/quarantined_outpost/engineering/atmospherics) +"dTO" = ( +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/structure/kitchenspike, +/obj/random/dirt_75, +/turf/simulated/floor/tiled/freezer{ + name = "cooled tiles"; + temperature = 253.15 + }, +/area/quarantined_outpost/cafeteria) +"dUa" = ( +/obj/structure/sign/biohazard{ + pixel_y = -32 + }, +/obj/effect/floor_decal/corner/mauve{ + dir = 9 + }, +/obj/random/dirt_75, +/turf/simulated/floor/tiled/light, +/area/quarantined_outpost/research) +"dUA" = ( +/obj/effect/shuttle_landmark/quarantined_outpost/asteroid/landing_2a, +/turf/simulated/floor/plating/asteroid/airless, +/area/quarantined_outpost/exterior) +"dUV" = ( +/obj/effect/floor_decal/corner/dark_blue, +/obj/effect/floor_decal/industrial/outline_door/yellow{ + dir = 8 + }, +/turf/simulated/floor/tiled/dark, +/area/quarantined_outpost/north_east_hallway) +"dUW" = ( +/turf/simulated/wall/shuttle/scc_space_ship/cardinal, +/area/quarantined_outpost/extraction_lab) +"dVf" = ( +/obj/random/dirt_75, +/obj/machinery/atmospherics/pipe/manifold/visible/black{ + dir = 1 + }, +/obj/machinery/meter, +/turf/simulated/floor/plating, +/area/quarantined_outpost/engineering/atmospherics) +"dVm" = ( +/obj/effect/floor_decal/corner/dark_blue{ + dir = 5 + }, +/obj/random/dirt_75, +/obj/random/dirt_75, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/effect/landmark/quarantined_outpost/creature, +/turf/simulated/floor/tiled, +/area/quarantined_outpost/dorm_hallway) +"dVF" = ( +/obj/effect/floor_decal/corner_wide/lime{ + dir = 6 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/obj/structure/table/standard, +/obj/structure/roller_rack/three, +/turf/simulated/floor/tiled/white, +/area/quarantined_outpost/medbay) +"dVS" = ( +/obj/random/dirt_75, +/obj/machinery/light/small/emergency{ + dir = 1 + }, +/obj/random/maintenance_junk_or_loot, +/obj/effect/decal/cleanable/cobweb2, +/turf/simulated/floor/plating, +/area/quarantined_outpost/entrance_maintenance) +"dWe" = ( +/obj/machinery/door/airlock/maintenance_hatch{ + dir = 4 + }, +/obj/machinery/door/firedoor{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/quarantined_outpost/elevator_hallway/maintenance) +"dWj" = ( +/obj/machinery/power/generator{ + anchored = 1; + dir = 4 + }, +/obj/effect/floor_decal/industrial/hatch/yellow, +/obj/structure/cable/yellow{ + icon_state = "0-2" + }, +/turf/simulated/floor/plating, +/area/quarantined_outpost/engineering/atmospherics) +"dWo" = ( +/obj/effect/decal/cleanable/floor_damage/rust, +/turf/simulated/floor/tiled/gunmetal, +/area/quarantined_outpost/north_east_hallway) +"dXs" = ( +/obj/effect/floor_decal/corner_wide/paleblue/diagonal, +/obj/random/dirt_75, +/obj/random/dirt_75, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 1 + }, +/turf/simulated/floor/tiled/airless, +/area/quarantined_outpost/security) +"dXJ" = ( +/obj/effect/floor_decal/spline/plain/black{ + dir = 5 + }, +/obj/effect/decal/cleanable/floor_damage/rust, +/turf/simulated/floor/tiled/gunmetal, +/area/quarantined_outpost/engineering/tunnel) +"dXX" = ( +/obj/effect/floor_decal/corner/mauve/diagonal, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 1 + }, +/obj/effect/decal/cleanable/floor_damage/rust, +/turf/simulated/floor/tiled/white, +/area/quarantined_outpost/extraction_lab) +"dYb" = ( +/obj/structure/railing/mapped{ + dir = 4 + }, +/obj/effect/floor_decal/corner/black{ + dir = 4 + }, +/turf/simulated/floor/tiled/rust, +/area/quarantined_outpost/entrance_lobby) +"dYc" = ( +/obj/effect/floor_decal/spline/plain/black{ + dir = 4 + }, +/obj/random/dirt_75, +/obj/random/dirt_75, +/turf/simulated/floor/tiled, +/area/quarantined_outpost/gym) +"dYn" = ( +/obj/effect/floor_decal/corner/dark_green/diagonal, +/obj/random/dirt_75, +/turf/simulated/floor/tiled, +/area/quarantined_outpost/gym) +"dYo" = ( +/obj/effect/floor_decal/corner/brown{ + dir = 6 + }, +/obj/random/dirt_75, +/obj/random/dirt_75, +/turf/simulated/floor/tiled, +/area/quarantined_outpost/cargo_bay) +"dYA" = ( +/obj/effect/floor_decal/corner/brown{ + dir = 8 + }, +/obj/effect/decal/cleanable/floor_damage/rust, +/turf/simulated/floor/tiled, +/area/quarantined_outpost/cargo_bay) +"dZp" = ( +/obj/effect/map_effect/window_spawner/full/reinforced/firedoor, +/turf/simulated/floor/tiled/dark/full, +/area/quarantined_outpost/security) +"dZq" = ( +/obj/structure/railing/mapped, +/obj/machinery/atmospherics/pipe/manifold/hidden/yellow{ + dir = 1 + }, +/obj/structure/lattice/catwalk/indoor, +/turf/simulated/floor/exoplanet/abyss, +/area/quarantined_outpost/research/containment) +"dZH" = ( +/obj/effect/shuttle_landmark/quarantined_outpost/space/space_2b, +/turf/template_noop, +/area/space) +"eas" = ( +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 1 + }, +/obj/random/dirt_75, +/obj/random/dirt_75, +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/simulated/floor/tiled, +/area/quarantined_outpost/cargo_bay) +"eaw" = ( +/obj/random/dirt_75, +/obj/random/dirt_75, +/turf/simulated/floor/plating, +/area/quarantined_outpost/cargo_bay) +"eaz" = ( +/obj/random/dirt_75, +/obj/structure/lattice, +/turf/simulated/floor/plating, +/area/quarantined_outpost/cafeteria/maintenance) +"eaD" = ( +/obj/effect/floor_decal/corner/dark_blue, +/obj/random/dirt_75, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/quarantined_outpost/elevator_hallway) +"eaH" = ( +/obj/effect/floor_decal/corner/lime{ + dir = 9 + }, +/obj/random/dirt_75, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/alarm/west, +/turf/simulated/floor/tiled, +/area/quarantined_outpost/cafeteria) +"eaN" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 8 + }, +/obj/effect/decal/cleanable/floor_damage/rust, +/obj/random/dirt_75, +/turf/simulated/floor/tiled, +/area/quarantined_outpost/medbay) +"ebk" = ( +/turf/simulated/wall, +/area/quarantined_outpost/medbay) +"ebl" = ( +/obj/machinery/atmospherics/portables_connector, +/obj/machinery/portable_atmospherics/canister/oxygen, +/turf/simulated/floor/reinforced, +/area/quarantined_outpost/engineering/atmospherics) +"ebW" = ( +/obj/effect/floor_decal/corner/dark_blue, +/obj/random/dirt_75, +/obj/machinery/light/maybe_broken/decayed, +/turf/simulated/floor/tiled, +/area/quarantined_outpost/elevator_hallway) +"eca" = ( +/obj/random/dirt_75, +/turf/simulated/floor/tiled/dark/full, +/area/quarantined_outpost/engineering/atmospherics) +"ech" = ( +/obj/structure/lattice/catwalk, +/obj/structure/railing/mapped{ + dir = 4 + }, +/obj/item/reagent_containers/food/drinks/bottle/small/beer{ + pixel_y = 15; + pixel_x = 7 + }, +/obj/item/material/ashtray/bronze{ + pixel_y = 9; + pixel_x = -6 + }, +/obj/item/trash/cigbutt{ + pixel_y = 8; + pixel_x = -3 + }, +/obj/structure/table/rack/folding_table, +/turf/simulated/floor/exoplanet/basalt, +/area/quarantined_outpost/engineering/winch_room) +"ecs" = ( +/obj/random/dirt_75, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/quarantined_outpost/dorm_hallway) +"ecM" = ( +/obj/structure/bed/stool/chair/office/light{ + dir = 4 + }, +/obj/effect/floor_decal/corner/mauve/full{ + dir = 4 + }, +/obj/random/dirt_75, +/turf/simulated/floor/tiled/light, +/area/quarantined_outpost/research) +"ecT" = ( +/obj/random/dirt_75, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, +/turf/simulated/floor/tiled/bitile, +/area/quarantined_outpost/cafeteria) +"ecV" = ( +/obj/effect/floor_decal/spline/plain/black{ + dir = 8 + }, +/obj/effect/floor_decal/spline/plain/corner/black{ + dir = 1 + }, +/obj/random/dirt_75, +/turf/simulated/floor/tiled, +/area/quarantined_outpost/gym) +"edh" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 8 + }, +/obj/effect/decal/cleanable/floor_damage/rust, +/obj/effect/decal/rolling_fog, +/turf/simulated/floor/plating, +/area/quarantined_outpost/research) +"edl" = ( +/obj/structure/platform/ledge, +/obj/structure/lattice/catwalk/indoor/grate, +/turf/simulated/floor/plating, +/area/quarantined_outpost/cargo_bay) +"edI" = ( +/obj/random/dirt_75, +/obj/machinery/atmospherics/unary/vent_scrubber/on, +/turf/simulated/floor/tiled/rust, +/area/quarantined_outpost/reception) +"edO" = ( +/obj/effect/floor_decal/corner_wide/paleblue{ + dir = 1 + }, +/obj/structure/sign/flag/sol/old{ + pixel_y = 32 + }, +/obj/effect/decal/cleanable/blood, +/obj/random/dirt_75, +/obj/random/dirt_75, +/turf/simulated/floor/tiled/airless, +/area/quarantined_outpost/security) +"edR" = ( +/obj/structure/flora/grass/desert/bush{ + name = "withered grass" + }, +/obj/effect/floor_decal/spline/fancy/wood/cee{ + dir = 4 + }, +/turf/simulated/floor/exoplanet/barren, +/area/quarantined_outpost/elevator_hallway) +"eeV" = ( +/obj/structure/bed/stool/chair/office/light{ + dir = 8 + }, +/obj/random/dirt_75, +/turf/simulated/floor/tiled/dark/full, +/area/quarantined_outpost/research) +"eff" = ( +/obj/effect/decal/cleanable/floor_damage/rust, +/obj/random/dirt_75, +/turf/simulated/floor/tiled/dark, +/area/quarantined_outpost/research) +"efl" = ( +/obj/effect/floor_decal/corner/mauve/full{ + dir = 8 + }, +/obj/structure/structural_support, +/obj/effect/decal/cleanable/cobweb, +/turf/simulated/floor/tiled/light, +/area/quarantined_outpost/research) +"efu" = ( +/obj/effect/floor_decal/spline/plain/black{ + dir = 1 + }, +/obj/structure/bed/stool/chair/sofa/right/brown{ + dir = 8 + }, +/obj/structure/sign/nosmoking_2{ + pixel_x = 30; + pixel_y = 4 + }, +/obj/random/dirt_75, +/turf/simulated/floor/lino, +/area/quarantined_outpost/reception) +"efB" = ( +/obj/effect/floor_decal/industrial/outline/grey, +/obj/structure/closet/secure_closet/freezer/meat, +/turf/simulated/floor/tiled/freezer{ + name = "cooled tiles"; + temperature = 253.15 + }, +/area/quarantined_outpost/cafeteria) +"efH" = ( +/obj/machinery/atmospherics/portables_connector{ + dir = 4 + }, +/obj/machinery/portable_atmospherics/canister/hydrogen, +/turf/simulated/floor/reinforced, +/area/quarantined_outpost/engineering/atmospherics) +"efZ" = ( +/obj/effect/floor_decal/corner_wide/lime{ + dir = 5 + }, +/obj/effect/floor_decal/corner_wide/lime, +/obj/structure/sink{ + pixel_y = 23 + }, +/obj/effect/decal/cleanable/floor_damage/rust, +/obj/random/dirt_75, +/turf/simulated/floor/tiled/white, +/area/quarantined_outpost/medbay) +"egg" = ( +/obj/structure/table/reinforced/steel, +/turf/simulated/floor/tiled/full, +/area/quarantined_outpost/cargo_bay) +"egh" = ( +/obj/structure/platform{ + dir = 1 + }, +/obj/structure/platform{ + dir = 4 + }, +/obj/structure/platform_deco{ + dir = 10 + }, +/turf/simulated/floor/tiled/ridged, +/area/quarantined_outpost/extraction_lab) +"egi" = ( +/obj/effect/floor_decal/corner/mauve{ + dir = 6 + }, +/obj/machinery/power/apc/east, +/obj/structure/cable, +/turf/simulated/floor/tiled/white, +/area/quarantined_outpost/extraction_lab) +"egx" = ( +/obj/structure/table/standard, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/item/modular_computer/laptop/preset/civilian{ + pixel_y = 11; + pixel_x = 2 + }, +/obj/random/dirt_75, +/turf/simulated/floor/tiled/airless, +/area/quarantined_outpost/security) +"egH" = ( +/obj/effect/floor_decal/corner/dark_blue{ + dir = 4 + }, +/obj/structure/flora/pottedplant/dead2{ + pixel_y = 13 + }, +/obj/effect/decal/cleanable/floor_damage/rust, +/turf/simulated/floor/tiled/gunmetal, +/area/quarantined_outpost/cafeteria) +"ehn" = ( +/obj/effect/floor_decal/industrial/hatch/yellow, +/obj/machinery/door/firedoor{ + dir = 1 + }, +/obj/random/dirt_75, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 1 + }, +/turf/simulated/floor/tiled/full, +/area/quarantined_outpost/cargo_bay) +"ehy" = ( +/obj/random/dirt_75, +/obj/random/dirt_75, +/turf/simulated/floor/exoplanet/basalt, +/area/quarantined_outpost/cavern/east_cavern) +"ehN" = ( +/obj/effect/floor_decal/corner_wide/paleblue{ + dir = 10 + }, +/obj/structure/closet/walllocker/secure{ + pixel_y = -32 + }, +/obj/random/loot, +/obj/outfit/admin/sol_private, +/turf/simulated/floor/tiled/airless, +/area/quarantined_outpost/security) +"ehV" = ( +/obj/effect/floor_decal/corner/dark_blue{ + dir = 9 + }, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 4 + }, +/obj/effect/landmark/trapped_vent/maybe/quarantined_outpost, +/turf/simulated/floor/tiled, +/area/quarantined_outpost/dorm_hallway) +"eil" = ( +/obj/effect/floor_decal/industrial/outline_door/yellow{ + dir = 4 + }, +/obj/structure/table/standard/flipped{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/quarantined_outpost/cafeteria) +"eio" = ( +/obj/structure/lattice/catwalk/indoor/grate/old, +/obj/effect/map_effect/marker/airlock/quarantined_outpost/entrance, +/obj/structure/bed/handrail{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/quarantined_outpost/entrance_lobby) +"eip" = ( +/obj/structure/lattice/catwalk/indoor/grate, +/obj/structure/cable{ + 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/quarantined_outpost/cargo_bay) +"ejb" = ( +/obj/structure/tank_wall/hydrogen{ + icon_state = "h2" + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 6 + }, +/turf/simulated/floor/plating, +/area/quarantined_outpost/engineering/atmospherics) +"ejq" = ( +/obj/effect/floor_decal/corner/brown{ + dir = 6 + }, +/turf/simulated/floor/tiled/dark, +/area/quarantined_outpost/cargo_bay) +"ekb" = ( +/obj/random/dirt_75, +/turf/simulated/floor/tiled/dark/full, +/area/quarantined_outpost/engineering/winch_room) +"ekC" = ( +/obj/machinery/portable_atmospherics/canister/empty, +/obj/structure/sign/directions/tcom{ + dir = 1; + pixel_y = 32 + }, +/obj/machinery/atmospherics/portables_connector{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/quarantined_outpost/engineering/atmospherics) +"ell" = ( +/obj/structure/railing/mapped{ + dir = 4 + }, +/obj/effect/floor_decal/corner/black, +/obj/random/dirt_75, +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/simulated/floor/tiled, +/area/quarantined_outpost/entrance_lobby) +"elt" = ( +/obj/machinery/computer/terminal/mob_tracker/quarantined_outpost{ + dir = 8 + }, +/obj/effect/floor_decal/industrial/outline/red, +/obj/random/dirt_75, +/turf/simulated/floor/tiled/ridged, +/area/quarantined_outpost/server_relay/south_east) +"elN" = ( +/obj/effect/floor_decal/corner_wide/paleblue/diagonal, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/turf/simulated/floor/tiled/airless, +/area/quarantined_outpost/security) +"elS" = ( +/obj/effect/floor_decal/corner/dark_green/diagonal, +/obj/effect/floor_decal/spline/plain/black{ + dir = 1 + }, +/obj/random/dirt_75, +/obj/random/dirt_75, +/turf/simulated/floor/tiled, +/area/quarantined_outpost/gym) +"elX" = ( +/obj/effect/floor_decal/corner/brown{ + dir = 5 + }, +/turf/simulated/floor/tiled, +/area/quarantined_outpost/elevator_hallway) +"emz" = ( +/obj/structure/table/glass, +/obj/random/horticulture_magazine, +/obj/item/toy/comic/inspector{ + pixel_y = 4; + pixel_x = -2 + }, +/turf/simulated/floor/tiled, +/area/quarantined_outpost/entrance_lobby) +"emJ" = ( +/obj/effect/floor_decal/corner/dark_blue{ + dir = 10 + }, +/obj/random/dirt_75, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/quarantined_outpost/elevator_hallway) +"emW" = ( +/obj/effect/floor_decal/industrial/outline_door/yellow{ + dir = 4 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 8 + }, +/obj/random/dirt_75, +/obj/effect/decal/cleanable/floor_damage/rust, +/obj/effect/floor_decal/industrial/outline_segment/yellow{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/quarantined_outpost/cargo_bay) +"ena" = ( +/obj/effect/floor_decal/corner/dark_blue{ + dir = 6 + }, +/obj/random/dirt_75, +/obj/structure/bed/stool/chair/folding{ + dir = 8 + }, +/obj/machinery/light/small/maybe_broken/decayed{ + dir = 4 + }, +/turf/simulated/floor/tiled/gunmetal, +/area/quarantined_outpost/cafeteria) +"enx" = ( +/obj/effect/floor_decal/corner/yellow{ + dir = 9 + }, +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/machinery/vending/tool, +/turf/simulated/floor/tiled/gunmetal, +/area/quarantined_outpost/engineering) +"eob" = ( +/obj/structure/table/reinforced/steel, +/obj/machinery/door/window/desk/eastright, +/obj/item/clipboard{ + pixel_x = -7; + pixel_y = 4 + }, +/obj/item/pen{ + pixel_x = -5 + }, +/obj/machinery/door/blast/shutters/open{ + dir = 8 + }, +/obj/machinery/door/firedoor{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark/full, +/area/quarantined_outpost/entrance_lobby) +"eog" = ( +/obj/structure/lattice, +/obj/structure/platform/ledge/dark{ + dir = 4 + }, +/turf/simulated/floor/exoplanet/abyss, +/area/quarantined_outpost/research/containment) +"eos" = ( +/obj/effect/floor_decal/corner/lime{ + dir = 4 + }, +/obj/structure/bed/stool/chair/folding{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/quarantined_outpost/cafeteria) +"eoK" = ( +/obj/effect/decal/cleanable/cobweb2, +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/random/dirt_75, +/obj/structure/closet/crate/loot, +/turf/simulated/floor/tiled/dark/full, +/area/quarantined_outpost/cargo_bay) +"eoS" = ( +/obj/effect/floor_decal/industrial/hatch/yellow, +/obj/machinery/door/firedoor{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/gunmetal/full, +/area/quarantined_outpost/engineering) +"eoV" = ( +/obj/structure/platform/ledge/dark{ + dir = 4 + }, +/obj/structure/sign/drop{ + pixel_y = -32 + }, +/obj/effect/decal/rolling_fog, +/turf/simulated/floor/exoplanet/abyss, +/area/quarantined_outpost/chasm) +"eoX" = ( +/obj/effect/floor_decal/industrial/outline/operations, +/obj/random/dirt_75, +/turf/simulated/floor/tiled, +/area/quarantined_outpost/cargo_bay) +"eoZ" = ( +/obj/machinery/light/small/emergency{ + dir = 1 + }, +/obj/structure/cable/orange{ + icon_state = "2-4" + }, +/obj/random/dirt_75, +/turf/simulated/floor/plating/asteroid/airless, +/area/quarantined_outpost/exterior/powered) +"epO" = ( +/obj/effect/floor_decal/corner_wide/paleblue{ + dir = 5 + }, +/obj/machinery/alarm/north, +/turf/simulated/floor/tiled, +/area/quarantined_outpost/security) +"eqp" = ( +/obj/effect/floor_decal/industrial/hatch/yellow, +/obj/machinery/door/airlock/external{ + dir = 4 + }, +/obj/random/dirt_75, +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark/full, +/area/quarantined_outpost/cargo_bay) +"erI" = ( +/obj/effect/floor_decal/corner/dark_blue{ + dir = 9 + }, +/obj/machinery/computer/terminal/inactive{ + dir = 4 + }, +/obj/effect/floor_decal/industrial/outline/yellow, +/turf/simulated/floor/tiled/dark, +/area/quarantined_outpost/research) +"erM" = ( +/obj/structure/platform_deco/ledge{ + dir = 8 + }, +/obj/random/dirt_75, +/turf/simulated/floor/plating, +/area/quarantined_outpost/cargo_bay) +"esy" = ( +/obj/effect/floor_decal/corner/purple{ + dir = 5 + }, +/obj/random/dirt_75, +/obj/random/dirt_75, +/obj/structure/coatrack{ + pixel_x = 9; + pixel_y = 22 + }, +/obj/structure/sign/poster{ + pixel_y = 32 + }, +/turf/simulated/floor/tiled, +/area/quarantined_outpost/dorm_hallway) +"esz" = ( +/obj/machinery/atmospherics/pipe/simple/visible/black{ + dir = 6 + }, +/turf/simulated/floor/plating, +/area/quarantined_outpost/engineering/atmospherics) +"esF" = ( +/obj/random/maintenance_junk_or_loot, +/turf/simulated/floor/exoplanet/basalt, +/area/quarantined_outpost/cafeteria/maintenance) +"etz" = ( +/obj/random/junk, +/obj/effect/decal/cleanable/floor_damage/rust, +/turf/simulated/floor/tiled/gunmetal, +/area/quarantined_outpost/engineering) +"etJ" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/obj/random/dirt_75, +/turf/simulated/floor/tiled/dark/airless, +/area/quarantined_outpost/security) +"euf" = ( +/obj/effect/floor_decal/industrial/hatch_small/yellow, +/obj/machinery/atmospherics/portables_connector{ + dir = 8 + }, +/obj/random/dirt_75, +/obj/effect/decal/rolling_fog, +/turf/simulated/floor/plating, +/area/quarantined_outpost/research) +"euh" = ( +/obj/effect/floor_decal/industrial/hatch/yellow, +/obj/machinery/door/firedoor{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark/full, +/area/quarantined_outpost/engineering/atmospherics) +"eui" = ( +/obj/random/dirt_75, +/obj/structure/platform_stairs/full/east_west_cap, +/obj/structure/platform/cutout{ + dir = 4 + }, +/turf/simulated/floor/tiled/ridged, +/area/quarantined_outpost/extraction_lab) +"euv" = ( +/obj/effect/floor_decal/corner/dark_blue{ + dir = 6 + }, +/obj/random/dirt_75, +/obj/random/dirt_75, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/quarantined_outpost/dorm_hallway) +"euP" = ( +/obj/effect/floor_decal/corner/green/diagonal, +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/white, +/area/quarantined_outpost/dorm_hallway) +"evk" = ( +/obj/random/dirt_75, +/obj/random/dirt_75, +/obj/effect/landmark/quarantined_outpost/creature, +/turf/simulated/floor/tiled/full, +/area/quarantined_outpost/elevator_hallway) +"evp" = ( +/obj/effect/floor_decal/corner_wide/paleblue/full{ + dir = 4 + }, +/obj/structure/table/standard, +/turf/simulated/floor/tiled/airless, +/area/quarantined_outpost/security) +"evr" = ( +/obj/structure/closet, +/obj/random/loot, +/turf/simulated/floor/plating, +/area/quarantined_outpost/gym) +"evD" = ( +/obj/structure/lattice/catwalk/indoor, +/obj/machinery/air_sensor, +/obj/effect/decal/cleanable/floor_damage/random_burned, +/turf/simulated/floor/plating, +/area/quarantined_outpost/research/containment) +"evH" = ( +/obj/structure/lattice/catwalk, +/obj/structure/railing/mapped{ + dir = 8 + }, +/obj/structure/bed/handrail{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/quarantined_outpost/cargo_bay) +"evW" = ( +/obj/machinery/door/firedoor{ + dir = 4 + }, +/obj/effect/floor_decal/industrial/hatch/yellow, +/obj/random/dirt_75, +/obj/structure/sign/directions/medical{ + pixel_y = 40; + dir = 1 + }, +/obj/structure/sign/directions/security{ + pixel_y = 32 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled/full, +/area/quarantined_outpost/elevator_hallway) +"evX" = ( +/obj/effect/floor_decal/corner/black{ + dir = 4 + }, +/obj/random/dirt_75, +/obj/abstract/footprint_spawner/body{ + dir = 8 + }, +/obj/abstract/footprint_spawner_turn_helper{ + dir = 1 + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/rust, +/area/quarantined_outpost/entrance_lobby) +"ewm" = ( +/obj/effect/floor_decal/corner_wide/lime/full{ + dir = 8 + }, +/obj/effect/decal/cleanable/cobweb, +/turf/simulated/floor/tiled/white, +/area/quarantined_outpost/medbay) +"ewU" = ( +/obj/machinery/portable_atmospherics/powered/scrubber, +/obj/random/dirt_75, +/obj/random/dirt_75, +/turf/simulated/floor/plating, +/area/quarantined_outpost/elevator_hallway/maintenance) +"exi" = ( +/obj/structure/platform{ + dir = 1 + }, +/obj/structure/flora/rock/pile/random, +/turf/simulated/floor/exoplanet/basalt, +/area/quarantined_outpost/research) +"exF" = ( +/obj/effect/floor_decal/corner/dark_blue{ + dir = 10 + }, +/obj/machinery/light/floor/maybe_broken/decayed, +/obj/random/dirt_75, +/obj/random/dirt_75, +/turf/simulated/floor/tiled, +/area/quarantined_outpost/reception) +"eyH" = ( +/obj/structure/table/stone/marble, +/obj/machinery/smartfridge/foodheater/buffet, +/obj/machinery/door/firedoor, +/obj/machinery/door/blast/shutters, +/turf/simulated/floor/tiled/dark/full, +/area/quarantined_outpost/cafeteria) +"eyI" = ( +/obj/structure/tank_wall/air{ + icon_state = "air9" + }, +/turf/simulated/floor/plating, +/area/quarantined_outpost/engineering/atmospherics) +"eyR" = ( +/obj/structure/railing/mapped{ + dir = 1 + }, +/obj/effect/floor_decal/corner/mauve/full{ + dir = 8 + }, +/obj/effect/decal/cleanable/floor_damage/rust, +/turf/simulated/floor/tiled/dark, +/area/quarantined_outpost/research) +"ezi" = ( +/obj/structure/lattice/catwalk/indoor/grate/damaged, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/quarantined_outpost/reception) +"ezq" = ( +/obj/structure/tank_wall/hydrogen{ + icon_state = "h10" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/quarantined_outpost/engineering/atmospherics) +"ezs" = ( +/obj/effect/floor_decal/corner/mauve{ + dir = 6 + }, +/obj/effect/floor_decal/spline/plain/corner/purple{ + dir = 1 + }, +/turf/simulated/floor/tiled/light, +/area/quarantined_outpost/research) +"ezR" = ( +/obj/machinery/door/blast/regular{ + dir = 4 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/turf/simulated/floor/plating, +/area/quarantined_outpost/research/containment) +"ezY" = ( +/obj/structure/lattice/catwalk/indoor/grate/dark, +/obj/machinery/light/small/emergency{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/quarantined_outpost/research) +"ezZ" = ( +/obj/effect/shuttle_landmark/quarantined_outpost/asteroid/landing_1d, +/turf/simulated/floor/plating/asteroid/airless, +/area/quarantined_outpost/exterior) +"eAm" = ( +/obj/random/dirt_75, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 1 + }, +/obj/effect/landmark/trapped_vent/maybe/quarantined_outpost, +/turf/simulated/floor/tiled, +/area/quarantined_outpost/cargo_bay) +"eAw" = ( +/obj/machinery/door/airlock/maintenance_hatch{ + dir = 1 + }, +/obj/machinery/door/firedoor{ + dir = 1 + }, +/obj/structure/lattice/catwalk/indoor/grate/old, +/turf/simulated/floor/plating, +/area/quarantined_outpost/entrance_lobby) +"eAG" = ( +/obj/effect/floor_decal/corner/yellow{ + dir = 10 + }, +/obj/structure/table/rack, +/obj/random/dirt_75, +/obj/item/stack/material/graphite/full, +/turf/simulated/floor/tiled/dark/airless, +/area/quarantined_outpost/auxiliary_power) +"eAW" = ( +/obj/effect/floor_decal/corner/dark_blue{ + dir = 9 + }, +/obj/structure/bed/stool/chair/sofa/left/brown{ + dir = 4 + }, +/obj/structure/sign/flag/sol/old{ + pixel_x = -32 + }, +/turf/simulated/floor/tiled, +/area/quarantined_outpost/entrance_lobby) +"eBc" = ( +/obj/random/dirt_75, +/obj/random/dirt_75, +/obj/structure/cable{ + 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/full, +/area/quarantined_outpost/elevator_hallway) +"eBe" = ( +/obj/effect/floor_decal/industrial/hatch_small/yellow, +/obj/structure/quarantined_outpost/fluff_connector{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/yellow{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled/ridged, +/area/quarantined_outpost/extraction_lab) +"eBs" = ( +/obj/structure/railing/mapped{ + dir = 1 + }, +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/machinery/computer/general_air_control/large_tank_control/terminal{ + name = "Fuel Injection Control"; + frequency = 1514; + input_tag = "quarantined_outpost_fuel_in"; + sensors = list("quarantined_outpost_combust_sensor"="Combustion Chamber") + }, +/turf/simulated/floor/tiled/dark/full, +/area/quarantined_outpost/engineering/atmospherics) +"eBv" = ( +/obj/effect/floor_decal/industrial/hatch/yellow, +/obj/machinery/door/firedoor, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled/gunmetal/full, +/area/quarantined_outpost/engineering/tunnel) +"eBC" = ( +/obj/effect/floor_decal/corner/dark_blue{ + dir = 6 + }, +/obj/structure/table/standard, +/obj/random/desktoy, +/turf/simulated/floor/tiled, +/area/quarantined_outpost/entrance_lobby) +"eBQ" = ( +/obj/machinery/atmospherics/pipe/simple/visible/universal, +/obj/machinery/atmospherics/binary/pump{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/quarantined_outpost/engineering/atmospherics) +"eBW" = ( +/obj/random/dirt_75, +/obj/structure/platform_stairs/full/south_north_cap{ + dir = 8 + }, +/turf/simulated/floor/tiled/dark, +/area/quarantined_outpost/entrance_lobby) +"eCe" = ( +/obj/random/dirt_75, +/obj/random/dirt_75, +/obj/effect/floor_decal/industrial/outline_door/yellow, +/obj/effect/floor_decal/industrial/outline_segment/yellow{ + dir = 10 + }, +/turf/simulated/floor/tiled, +/area/quarantined_outpost/entrance_lobby) +"eCr" = ( +/obj/effect/floor_decal/spline/plain/black, +/obj/effect/decal/cleanable/floor_damage/rust, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/structure/inflatable/wall, +/turf/simulated/floor/tiled/gunmetal, +/area/quarantined_outpost/north_east_hallway) +"eCU" = ( +/obj/structure/flora/pottedplant/dead2{ + pixel_y = 13 + }, +/obj/effect/floor_decal/corner/dark_blue{ + dir = 10 + }, +/obj/effect/floor_decal/spline/plain/black{ + dir = 6 + }, +/turf/simulated/floor/tiled, +/area/quarantined_outpost/reception) +"eDk" = ( +/obj/structure/bed/stool/chair/office/light{ + dir = 4 + }, +/obj/effect/floor_decal/corner/mauve{ + dir = 10 + }, +/turf/simulated/floor/tiled/white, +/area/quarantined_outpost/extraction_lab) +"eDD" = ( +/obj/effect/floor_decal/corner/yellow{ + dir = 4 + }, +/obj/effect/floor_decal/corner/dark_blue{ + dir = 1 + }, +/obj/structure/table/standard, +/obj/random/loot, +/obj/structure/sign/flag/sol/old/large/north{ + pixel_y = 32 + }, +/turf/simulated/floor/tiled/dark, +/area/quarantined_outpost/engineering/atmospherics) +"eDK" = ( +/obj/machinery/light/floor/maybe_broken/decayed, +/turf/simulated/floor/tiled, +/area/quarantined_outpost/cargo_bay) +"eDT" = ( +/turf/simulated/wall/r_wall, +/area/quarantined_outpost/research/containment) +"eEs" = ( +/obj/machinery/door/airlock/maintenance_hatch{ + dir = 4 + }, +/obj/machinery/door/firedoor{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/quarantined_outpost/research) +"eEX" = ( +/obj/effect/floor_decal/corner/yellow{ + dir = 10 + }, +/obj/structure/railing/mapped{ + dir = 8 + }, +/obj/random/dirt_75, +/obj/random/dirt_75, +/turf/simulated/floor/tiled/gunmetal, +/area/quarantined_outpost/engineering/tunnel) +"eFb" = ( +/obj/structure/platform_deco/ledge/dark, +/obj/effect/decal/rolling_fog, +/turf/simulated/floor/exoplanet/abyss, +/area/quarantined_outpost/chasm) +"eFj" = ( +/obj/structure/railing/mapped{ + pixel_y = -3 + }, +/turf/simulated/floor/exoplanet/basalt, +/area/quarantined_outpost/engineering/tunnel) +"eFT" = ( +/obj/structure/lattice/catwalk, +/obj/structure/stairs_railing{ + dir = 1 + }, +/turf/simulated/floor/exoplanet/basalt, +/area/quarantined_outpost/engineering/winch_room) +"eGz" = ( +/turf/simulated/floor/exoplanet/basalt, +/area/quarantined_outpost/engineering/winch_room) +"eGI" = ( +/obj/effect/floor_decal/corner/black/full, +/obj/structure/flora/pottedplant/dead, +/obj/random/dirt_75, +/turf/simulated/floor/tiled, +/area/quarantined_outpost/dorm_hallway) +"eHd" = ( +/obj/structure/cable/orange{ + icon_state = "4-8" + }, +/obj/structure/lattice/catwalk/indoor/grate, +/obj/machinery/atmospherics/pipe/manifold/hidden{ + dir = 1 + }, +/turf/simulated/floor/plating, +/area/quarantined_outpost/entrance_lobby) +"eHe" = ( +/obj/effect/floor_decal/corner_wide/paleblue{ + dir = 1 + }, +/obj/effect/floor_decal/corner/grey{ + dir = 10 + }, +/obj/random/dirt_75, +/obj/random/dirt_75, +/obj/effect/decal/cleanable/blood, +/obj/effect/decal/cleanable/floor_damage/rust, +/turf/simulated/floor/tiled/white, +/area/quarantined_outpost/medbay) +"eHk" = ( +/obj/structure/platform{ + dir = 1 + }, +/turf/simulated/floor/plating, +/area/quarantined_outpost/cargo_bay) +"eHu" = ( +/obj/effect/floor_decal/corner_wide/paleblue{ + dir = 5 + }, +/obj/structure/sign/nosmoking_2{ + pixel_y = 32 + }, +/obj/random/dirt_75, +/turf/simulated/floor/tiled/airless, +/area/quarantined_outpost/security) +"eHw" = ( +/turf/space/transit/north, +/area/space) +"eIC" = ( +/obj/machinery/atmospherics/pipe/simple/visible/cyan{ + dir = 8 + }, +/turf/simulated/floor/reinforced/airless, +/area/quarantined_outpost/engineering/atmospherics) +"eIF" = ( +/obj/machinery/door/airlock/maintenance_hatch{ + dir = 1 + }, +/obj/machinery/door/firedoor, +/turf/simulated/floor/plating, +/area/quarantined_outpost/entrance_maintenance) +"eIU" = ( +/obj/effect/floor_decal/corner/dark_blue/diagonal, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 1 + }, +/turf/simulated/floor/tiled/dark/airless, +/area/quarantined_outpost/security) +"eJG" = ( +/obj/effect/floor_decal/corner/dark_blue{ + dir = 5 + }, +/obj/structure/bed/stool/chair/sofa/right/brown, +/turf/simulated/floor/tiled, +/area/quarantined_outpost/cafeteria) +"eJY" = ( +/obj/structure/coatrack{ + pixel_y = 25; + pixel_x = -9 + }, +/obj/structure/cable/orange{ + icon_state = "2-4" + }, +/turf/simulated/floor/plating, +/area/quarantined_outpost/engineering) +"eKt" = ( +/obj/structure/closet/secure_closet/personal, +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/random/dirt_75, +/obj/random/plushie, +/obj/random/loot, +/turf/simulated/floor/tiled/dark/full, +/area/quarantined_outpost/cargo_bay) +"eLw" = ( +/obj/effect/floor_decal/spline/plain/black{ + dir = 8 + }, +/obj/structure/reagent_dispensers/fueltank, +/obj/effect/decal/cleanable/blood/oil, +/turf/simulated/floor/tiled/gunmetal, +/area/quarantined_outpost/engineering/tunnel) +"eLM" = ( +/obj/effect/floor_decal/spline/plain/black{ + dir = 4 + }, +/obj/random/dirt_75, +/obj/effect/decal/cleanable/blood, +/turf/simulated/floor/tiled/gunmetal, +/area/quarantined_outpost/north_east_hallway) +"eLR" = ( +/obj/machinery/door/firedoor, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/structure/lattice/catwalk/indoor/grate/dark, +/obj/machinery/door/airlock/highsecurity{ + name = "Communications Relay"; + locked = 1 + }, +/turf/simulated/floor/plating, +/area/quarantined_outpost/server_relay/north_east) +"eMU" = ( +/obj/effect/floor_decal/corner/mauve{ + dir = 10 + }, +/obj/structure/bed/stool/chair/padded/purple{ + dir = 1 + }, +/obj/random/dirt_75, +/turf/simulated/floor/tiled/light, +/area/quarantined_outpost/research) +"eNm" = ( +/obj/structure/platform{ + dir = 1 + }, +/obj/structure/platform{ + dir = 8 + }, +/obj/structure/platform_deco{ + dir = 6 + }, +/obj/effect/decal/cleanable/floor_damage/rust, +/turf/simulated/floor/tiled/ridged, +/area/quarantined_outpost/extraction_lab) +"eOj" = ( +/obj/structure/bed/stool/chair{ + dir = 1 + }, +/obj/effect/floor_decal/corner_wide/paleblue/full, +/obj/random/dirt_75, +/obj/machinery/light/small/maybe_broken/decayed, +/turf/simulated/floor/tiled/airless, +/area/quarantined_outpost/security) +"eOn" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 6 + }, +/obj/structure/filler, +/obj/effect/decal/rolling_fog, +/turf/simulated/floor/reinforced, +/area/quarantined_outpost/research) +"eOC" = ( +/obj/structure/table/reinforced/steel, +/obj/machinery/door/window/desk/southright, +/obj/item/storage/box/fancy/vials{ + pixel_y = 4 + }, +/obj/random/dirt_75, +/turf/simulated/floor/tiled/dark/full, +/area/quarantined_outpost/research) +"eOQ" = ( +/obj/machinery/door/firedoor{ + dir = 4 + }, +/obj/effect/floor_decal/industrial/hatch_door/medical, +/obj/machinery/door/airlock/glass_medical{ + dir = 4; + name = "Reception"; + welded = 1 + }, +/turf/simulated/floor/tiled/white, +/area/quarantined_outpost/medbay) +"ePj" = ( +/obj/effect/floor_decal/corner_wide/paleblue{ + dir = 6 + }, +/obj/machinery/alarm/east, +/turf/simulated/floor/tiled/airless, +/area/quarantined_outpost/security) +"ePv" = ( +/obj/effect/floor_decal/spline/plain/corner/black{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/quarantined_outpost/cafeteria) +"ePw" = ( +/obj/random/dirt_75, +/turf/simulated/floor/tiled/dark/full/airless, +/area/quarantined_outpost/security) +"ePE" = ( +/obj/effect/floor_decal/spline/plain/black{ + dir = 4 + }, +/turf/simulated/floor/tiled/gunmetal, +/area/quarantined_outpost/north_east_hallway) +"eQl" = ( +/obj/effect/floor_decal/corner/dark_blue{ + dir = 1 + }, +/obj/structure/sign/poster{ + pixel_y = 32 + }, +/obj/effect/decal/cleanable/blood, +/obj/random/dirt_75, +/turf/simulated/floor/tiled/rust, +/area/quarantined_outpost/reception) +"eQs" = ( +/obj/structure/table/glass, +/obj/random/desktoy{ + pixel_y = 13; + pixel_x = 6 + }, +/obj/item/paper_bin{ + pixel_y = -1; + pixel_x = 6 + }, +/turf/simulated/floor/tiled/light, +/area/quarantined_outpost/research) +"eRU" = ( +/obj/effect/floor_decal/industrial/outline_straight/yellow{ + dir = 4 + }, +/obj/random/dirt_75, +/obj/random/dirt_75, +/obj/effect/decal/cleanable/floor_damage/rust, +/turf/simulated/floor/tiled/ridged, +/area/quarantined_outpost/server_relay/south_east) +"eSH" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/random/dirt_75, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/effect/landmark/maybe_cut_cable, +/turf/simulated/floor/tiled/dark, +/area/quarantined_outpost/engineering/atmospherics) +"eSN" = ( +/obj/effect/map_effect/map_helper/ruler_tiles_3, +/obj/item/hullbeacon/red, +/obj/random/dirt_75, +/turf/simulated/floor/plating/asteroid/airless, +/area/quarantined_outpost/exterior) +"eTe" = ( +/obj/effect/floor_decal/corner/yellow{ + dir = 4 + }, +/obj/effect/floor_decal/corner/dark_blue{ + dir = 1 + }, +/obj/machinery/atmospherics/unary/vent_pump/on, +/obj/effect/landmark/trapped_vent/maybe/quarantined_outpost, +/turf/simulated/floor/tiled/gunmetal, +/area/quarantined_outpost/north_east_hallway) +"eTv" = ( +/obj/effect/floor_decal/corner/lime{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/quarantined_outpost/cafeteria) +"eTz" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/cyan{ + dir = 4 + }, +/obj/machinery/atmospherics/binary/pump{ + dir = 1 + }, +/turf/simulated/floor/plating, +/area/quarantined_outpost/engineering/atmospherics) +"eUg" = ( +/obj/effect/floor_decal/spline/fancy/wood/cee{ + dir = 8 + }, +/obj/structure/flora/grass/desert{ + name = "withered grass" + }, +/turf/simulated/floor/exoplanet/barren, +/area/quarantined_outpost/elevator_hallway) +"eUn" = ( +/obj/effect/floor_decal/corner/dark_blue/full{ + dir = 8 + }, +/obj/random/dirt_75, +/obj/effect/floor_decal/industrial/outline/red, +/obj/machinery/computer/terminal/mob_tracker/quarantined_outpost, +/turf/simulated/floor/tiled, +/area/quarantined_outpost/north_east_hallway) +"eUt" = ( +/obj/structure/tank_wall/oxygen{ + icon_state = "o2-15" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden, +/obj/effect/floor_decal/industrial/warning, +/turf/simulated/floor/plating, +/area/quarantined_outpost/engineering/atmospherics) +"eUF" = ( +/obj/effect/floor_decal/corner/yellow{ + dir = 5 + }, +/obj/random/dirt_75, +/obj/random/dirt_75, +/turf/simulated/floor/tiled/gunmetal, +/area/quarantined_outpost/engineering) +"eVO" = ( +/obj/effect/floor_decal/corner/yellow{ + dir = 4 + }, +/obj/structure/platform{ + dir = 1 + }, +/obj/effect/decal/cleanable/floor_damage/rust, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/alarm/north, +/turf/simulated/floor/tiled/gunmetal, +/area/quarantined_outpost/north_east_hallway) +"eWk" = ( +/obj/structure/plasticflaps{ + dir = 4 + }, +/obj/effect/floor_decal/industrial/hatch/yellow, +/obj/machinery/door/blast/shutters{ + dir = 4 + }, +/obj/machinery/conveyor{ + dir = 8 + }, +/turf/simulated/floor/tiled/full, +/area/quarantined_outpost/cargo_bay) +"eWT" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 8 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/random/dirt_75, +/turf/simulated/floor/tiled/gunmetal/full, +/area/quarantined_outpost/engineering/winch_room) +"eWU" = ( +/obj/effect/floor_decal/corner/yellow/full{ + dir = 4 + }, +/obj/random/dirt_75, +/turf/simulated/floor/tiled/gunmetal, +/area/quarantined_outpost/engineering) +"eWX" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/yellow, +/obj/structure/lattice/catwalk/indoor, +/turf/simulated/floor/exoplanet/abyss, +/area/quarantined_outpost/research/containment) +"eXc" = ( +/obj/structure/flora/rock/random, +/obj/random/dirt_75, +/obj/random/dirt_75, +/turf/simulated/floor/exoplanet/asteroid/ash/rocky, +/area/quarantined_outpost/exterior) +"eXg" = ( +/obj/effect/shuttle_landmark/quarantined_outpost/asteroid/landing_1b, +/turf/simulated/floor/plating/asteroid/airless, +/area/quarantined_outpost/exterior) +"eXn" = ( +/obj/effect/floor_decal/corner/mauve{ + dir = 5 + }, +/obj/structure/extinguisher_cabinet/north, +/turf/simulated/floor/tiled/white, +/area/quarantined_outpost/extraction_lab) +"eXr" = ( +/obj/effect/floor_decal/corner_wide/lime{ + dir = 4 + }, +/obj/random/dirt_75, +/turf/simulated/floor/tiled/white, +/area/quarantined_outpost/medbay) +"eXu" = ( +/obj/effect/floor_decal/corner/dark_blue{ + dir = 9 + }, +/obj/structure/bed/stool/chair/office/dark{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/quarantined_outpost/entrance_lobby) +"eXz" = ( +/obj/effect/floor_decal/corner/dark_green/diagonal, +/obj/effect/floor_decal/spline/plain/black{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, +/obj/effect/landmark/quarantined_outpost/canister_spawn, +/turf/simulated/floor/tiled, +/area/quarantined_outpost/gym) +"eYu" = ( +/obj/structure/flora/pottedplant/dead2{ + pixel_y = 13 + }, +/obj/effect/floor_decal/corner/dark_blue{ + dir = 5 + }, +/obj/effect/floor_decal/spline/plain/black{ + dir = 9 + }, +/obj/random/dirt_75, +/turf/simulated/floor/tiled, +/area/quarantined_outpost/reception) +"eYB" = ( +/obj/effect/floor_decal/corner_wide/lime{ + dir = 5 + }, +/obj/structure/reagent_dispensers/water_cooler{ + pixel_y = 16 + }, +/obj/random/dirt_75, +/turf/simulated/floor/tiled/white, +/area/quarantined_outpost/medbay) +"eYI" = ( +/obj/effect/map_effect/map_helper/ruler_tiles_3{ + dir = 4 + }, +/turf/simulated/floor/exoplanet/asteroid/ash/rocky, +/area/quarantined_outpost/exterior) +"eYM" = ( +/obj/effect/floor_decal/corner/green/diagonal, +/obj/random/dirt_75, +/obj/random/dirt_75, +/obj/machinery/light/small/maybe_broken/decayed, +/turf/simulated/floor/tiled/white, +/area/quarantined_outpost/dorm_hallway) +"eYQ" = ( +/obj/effect/map_effect/window_spawner/full/reinforced/firedoor, +/turf/simulated/floor/tiled/gunmetal/full, +/area/quarantined_outpost/engineering/atmospherics) +"eYR" = ( +/obj/effect/floor_decal/corner/dark_blue{ + dir = 6 + }, +/obj/effect/decal/cleanable/floor_damage/rust, +/turf/simulated/floor/tiled/dark, +/area/quarantined_outpost/research/containment) +"eZa" = ( +/obj/item/stack/tile/floor{ + pixel_x = 7; + pixel_y = -6 + }, +/obj/item/storage/pill_bottle/cocaine{ + pixel_y = 2; + pixel_x = -8 + }, +/obj/item/reagent_containers/powder{ + pixel_y = -5; + pixel_x = -1 + }, +/obj/item/reagent_containers/pill/sparkle{ + pixel_y = -6; + pixel_x = 2 + }, +/turf/simulated/floor/plating{ + icon_state = "elevatorshaft"; + icon = 'icons/turf/flooring/tiles.dmi' + }, +/area/quarantined_outpost/dorm_hallway) +"eZl" = ( +/obj/effect/floor_decal/corner/brown{ + dir = 10 + }, +/obj/effect/decal/cleanable/floor_damage/rust, +/turf/simulated/floor/tiled, +/area/quarantined_outpost/cargo_bay) +"eZo" = ( +/obj/effect/floor_decal/corner_wide/lime{ + dir = 5 + }, +/obj/machinery/light/floor/maybe_broken/decayed{ + dir = 1 + }, +/obj/random/dirt_75, +/turf/simulated/floor/tiled/white, +/area/quarantined_outpost/medbay) +"eZE" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply, +/obj/structure/lattice/catwalk/indoor/grate/dark, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 1 + }, +/turf/simulated/floor/plating, +/area/quarantined_outpost/engineering/tunnel) +"fab" = ( +/obj/effect/floor_decal/industrial/loading/security{ + dir = 8 + }, +/obj/item/ammo_casing/rifle/used{ + pixel_y = 7; + pixel_x = 5 + }, +/obj/item/ammo_casing/rifle/used{ + pixel_y = -6; + pixel_x = -6 + }, +/obj/random/dirt_75, +/turf/simulated/floor/tiled/dark/airless, +/area/quarantined_outpost/security) +"fbb" = ( +/obj/structure/barricade/wooden/road{ + dir = 8 + }, +/turf/simulated/floor/exoplanet/basalt, +/area/quarantined_outpost/cavern/east_cavern) +"fbm" = ( +/obj/structure/railing/mapped, +/obj/effect/decal/cleanable/floor_damage/rust, +/turf/simulated/floor/tiled, +/area/quarantined_outpost/cargo_bay) +"fbw" = ( +/obj/effect/floor_decal/corner/lime{ + dir = 10 + }, +/obj/random/dirt_75, +/obj/random/dirt_75, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/quarantined_outpost/cafeteria) +"fbz" = ( +/obj/structure/railing/mapped{ + dir = 1 + }, +/obj/random/dirt_75, +/turf/simulated/floor/exoplanet/asteroid/ash/rocky, +/area/quarantined_outpost/exterior) +"fbP" = ( +/obj/structure/table/standard, +/obj/item/reagent_containers/food/drinks/drinkingglass/newglass/coffeecup/europa{ + pixel_y = -9; + pixel_x = 8 + }, +/obj/random/dirt_75, +/turf/simulated/floor/tiled/airless, +/area/quarantined_outpost/security) +"fbR" = ( +/obj/machinery/door/airlock/maintenance_hatch{ + dir = 1 + }, +/obj/machinery/door/firedoor, +/turf/simulated/floor/plating, +/area/quarantined_outpost/elevator_hallway/maintenance) +"fcc" = ( +/obj/effect/floor_decal/corner/black/full{ + dir = 4 + }, +/obj/random/dirt_75, +/obj/structure/bunk_bed/blue, +/turf/simulated/floor/tiled, +/area/quarantined_outpost/dorm_hallway) +"fcd" = ( +/obj/effect/floor_decal/corner/dark_blue{ + dir = 5 + }, +/obj/random/dirt_75, +/obj/random/dirt_75, +/obj/machinery/atmospherics/unary/vent_pump/on, +/obj/effect/landmark/trapped_vent/maybe/quarantined_outpost, +/turf/simulated/floor/tiled, +/area/quarantined_outpost/elevator_hallway) +"fcv" = ( +/obj/structure/bed/padded, +/obj/structure/bed/padded{ + pixel_y = 13 + }, +/obj/effect/floor_decal/corner_wide/paleblue/full{ + dir = 8 + }, +/obj/random/dirt_75, +/turf/simulated/floor/tiled/airless, +/area/quarantined_outpost/security) +"fcz" = ( +/obj/effect/floor_decal/corner/black/full{ + dir = 8 + }, +/obj/random/dirt_75, +/obj/structure/bed/stool/chair/folding, +/turf/simulated/floor/tiled, +/area/quarantined_outpost/dorm_hallway) +"fcA" = ( +/obj/structure/table, +/turf/simulated/floor/tiled/bitile{ + dir = 4 + }, +/area/quarantined_outpost/cafeteria) +"fcE" = ( +/obj/effect/floor_decal/corner/dark_blue, +/obj/effect/floor_decal/corner/yellow{ + dir = 8 + }, +/obj/effect/decal/cleanable/floor_damage/rust, +/turf/simulated/floor/tiled/dark, +/area/quarantined_outpost/engineering/atmospherics) +"fcS" = ( +/obj/machinery/door/firedoor, +/obj/effect/floor_decal/industrial/hatch_door/yellow{ + dir = 1 + }, +/obj/machinery/door/airlock/highsecurity{ + name = "Heavy Containment" + }, +/turf/simulated/floor/tiled/dark/full, +/area/quarantined_outpost/research/containment) +"fcU" = ( +/obj/random/dirt_75, +/obj/effect/decal/cleanable/blood, +/turf/simulated/floor/tiled/light, +/area/quarantined_outpost/research) +"fdf" = ( +/obj/random/dirt_75, +/obj/random/dirt_75, +/obj/effect/floor_decal/corner_wide/paleblue{ + dir = 1 + }, +/obj/machinery/alarm/north, +/turf/simulated/floor/tiled/airless, +/area/quarantined_outpost/security) +"fdg" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 4 + }, +/obj/structure/filler, +/obj/effect/decal/rolling_fog, +/turf/simulated/floor/reinforced, +/area/quarantined_outpost/research) +"fdo" = ( +/obj/structure/lattice/catwalk, +/obj/machinery/door/airlock/maintenance_hatch{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/quarantined_outpost/cargo_bay) +"fdA" = ( +/obj/random/dirt_75, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, +/turf/simulated/floor/tiled/dark/full/airless, +/area/quarantined_outpost/security) +"fdX" = ( +/obj/effect/floor_decal/spline/plain/corner/black{ + dir = 1 + }, +/obj/random/dirt_75, +/obj/abstract/footprint_spawner{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/quarantined_outpost/cafeteria) +"fee" = ( +/obj/structure/platform{ + dir = 8 + }, +/turf/simulated/floor/tiled/ramp, +/area/quarantined_outpost/extraction_lab) +"fek" = ( +/obj/machinery/computer/terminal/inactive{ + dir = 4 + }, +/obj/effect/floor_decal/corner/brown{ + dir = 5 + }, +/obj/effect/floor_decal/industrial/outline/operations, +/obj/random/dirt_75, +/turf/simulated/floor/tiled, +/area/quarantined_outpost/cargo_bay) +"fep" = ( +/obj/effect/floor_decal/industrial/hatch/yellow, +/obj/machinery/door/firedoor{ + dir = 4 + }, +/obj/random/dirt_75, +/obj/machinery/door/blast/shutters{ + dir = 4; + id = "quarantined_outpost_extraction_east" + }, +/turf/simulated/floor/tiled/dark/full, +/area/quarantined_outpost/extraction_lab) +"feq" = ( +/obj/effect/floor_decal/corner_wide/paleblue{ + dir = 9 + }, +/obj/random/dirt_75, +/turf/simulated/floor/tiled/airless, +/area/quarantined_outpost/security) +"few" = ( +/obj/effect/floor_decal/corner/dark_blue, +/obj/effect/decal/cleanable/blood, +/obj/random/dirt_75, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 1 + }, +/turf/simulated/floor/tiled/rust, +/area/quarantined_outpost/dorm_hallway) +"fex" = ( +/obj/effect/floor_decal/spline/plain/black{ + dir = 4 + }, +/obj/effect/floor_decal/industrial/outline/grey, +/obj/machinery/vending/cigarette, +/turf/simulated/floor/tiled/dark/full, +/area/quarantined_outpost/north_east_hallway) +"feG" = ( +/obj/effect/floor_decal/corner_wide/lime/full{ + dir = 1 + }, +/obj/structure/flora/pottedplant/dead, +/obj/effect/decal/cleanable/cobweb2, +/turf/simulated/floor/tiled/white, +/area/quarantined_outpost/medbay) +"feJ" = ( +/obj/machinery/door/firedoor{ + dir = 4 + }, +/obj/structure/lattice/catwalk/indoor/grate/old, +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/simulated/floor/plating, +/area/quarantined_outpost/entrance_maintenance) +"feZ" = ( +/obj/structure/lattice, +/obj/structure/platform/ledge/dark{ + dir = 8 + }, +/turf/simulated/floor/exoplanet/abyss, +/area/quarantined_outpost/research/containment) +"ffj" = ( +/obj/structure/railing/mapped, +/obj/structure/lattice/catwalk/indoor, +/turf/simulated/floor/plating, +/area/quarantined_outpost/cargo_bay) +"ffP" = ( +/obj/structure/lattice/catwalk/indoor/grate/dark, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 1 + }, +/turf/simulated/floor/plating, +/area/quarantined_outpost/engineering/tunnel) +"fgs" = ( +/obj/effect/floor_decal/corner/mauve{ + dir = 1 + }, +/obj/machinery/light/broken{ + dir = 8 + }, +/obj/random/dirt_75, +/turf/simulated/floor/tiled/white, +/area/quarantined_outpost/extraction_lab) +"fgF" = ( +/obj/effect/floor_decal/corner/mauve{ + dir = 6 + }, +/turf/simulated/floor/tiled/white, +/area/quarantined_outpost/extraction_lab) +"fgU" = ( +/obj/random/dirt_75, +/obj/random/dirt_75, +/obj/random/junk, +/turf/simulated/floor/tiled/full, +/area/quarantined_outpost/elevator_hallway) +"fhf" = ( +/obj/random/dirt_75, +/obj/structure/railing/mapped{ + dir = 4 + }, +/turf/simulated/floor/exoplanet/basalt, +/area/quarantined_outpost/cavern/east_cavern) +"fhA" = ( +/obj/random/dirt_75, +/obj/effect/floor_decal/industrial/outline_door/operations{ + dir = 8 + }, +/obj/effect/decal/cleanable/floor_damage/rust, +/turf/simulated/floor/tiled, +/area/quarantined_outpost/cargo_bay) +"fhO" = ( +/obj/random/dirt_75, +/obj/item/rig/military, +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/structure/table/rack, +/turf/simulated/floor/tiled/dark/full/airless, +/area/quarantined_outpost/security) +"fhZ" = ( +/turf/simulated/floor/exoplanet/abyss, +/area/quarantined_outpost/entrance_maintenance) +"fio" = ( +/obj/structure/lattice/catwalk/indoor/grate/dark, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/quarantined_outpost/engineering/tunnel) +"fiQ" = ( +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 4 + }, +/obj/effect/decal/cleanable/floor_damage/rust, +/obj/machinery/light/floor/maybe_broken/decayed{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/quarantined_outpost/cargo_bay) +"fiW" = ( +/obj/effect/floor_decal/spline/plain/black{ + dir = 4 + }, +/obj/random/dirt_75, +/obj/random/dirt_75, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 1 + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/effect/landmark/maybe_cut_cable, +/turf/simulated/floor/tiled/gunmetal, +/area/quarantined_outpost/north_east_hallway) +"fje" = ( +/obj/effect/floor_decal/corner/dark_blue{ + dir = 1 + }, +/obj/random/dirt_75, +/turf/simulated/floor/tiled, +/area/quarantined_outpost/elevator_hallway) +"fjz" = ( +/obj/machinery/door/firedoor{ + dir = 4 + }, +/obj/machinery/door/airlock/maintenance_hatch{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/quarantined_outpost/north_east_hallway/maintenance) +"fjH" = ( +/obj/effect/floor_decal/industrial/hatch/yellow, +/obj/machinery/door/firedoor/noid, +/turf/simulated/floor/tiled/white, +/area/quarantined_outpost/medbay) +"fjT" = ( +/obj/effect/floor_decal/industrial/hatch_small/yellow, +/obj/structure/quarantined_outpost/fluff_connector{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/yellow{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled/ridged, +/area/quarantined_outpost/extraction_lab) +"fkr" = ( +/obj/random/maintenance_junk_or_loot, +/obj/random/dirt_75, +/obj/effect/decal/cleanable/cobweb, +/turf/simulated/floor/tiled, +/area/quarantined_outpost/entrance_maintenance) +"fkv" = ( +/obj/effect/floor_decal/corner/dark_blue{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/quarantined_outpost/elevator_hallway) +"fkD" = ( +/obj/structure/table/standard/flipped, +/obj/random/dirt_75, +/turf/simulated/floor/tiled/bitile{ + dir = 4 + }, +/area/quarantined_outpost/cafeteria) +"fkX" = ( +/turf/simulated/mineral/lava, +/area/quarantined_outpost/engineering/atmospherics) +"flT" = ( +/obj/structure/table/standard, +/obj/machinery/light/small/maybe_broken/decayed, +/obj/effect/floor_decal/spline/plain/lime{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/quarantined_outpost/medbay) +"fmf" = ( +/obj/effect/floor_decal/corner/yellow{ + dir = 4 + }, +/obj/random/dirt_75, +/obj/structure/table/rack/retail_shelf, +/obj/random/custom_ka{ + pixel_y = 11 + }, +/turf/simulated/floor/tiled/dark, +/area/quarantined_outpost/engineering/winch_room) +"fmm" = ( +/obj/random/dirt_75, +/obj/random/dirt_75, +/turf/simulated/floor/plating, +/area/quarantined_outpost/engineering/tunnel) +"fmw" = ( +/obj/structure/lattice/catwalk/indoor, +/obj/random/dirt_75, +/turf/simulated/floor/plating, +/area/quarantined_outpost/engineering/atmospherics) +"fmU" = ( +/obj/structure/tank_wall/hydrogen{ + density = 0; + icon_state = "h11"; + opacity = 0 + }, +/obj/machinery/portable_atmospherics/canister/hydrogen, +/obj/machinery/atmospherics/portables_connector{ + dir = 8 + }, +/turf/simulated/floor/reinforced, +/area/quarantined_outpost/engineering/atmospherics) +"fmY" = ( +/obj/structure/lattice/catwalk/indoor/grate, +/obj/machinery/light/small/maybe_broken/decayed{ + dir = 1 + }, +/turf/simulated/floor/plating, +/area/quarantined_outpost/cargo_bay) +"fnq" = ( +/obj/structure/platform/ledge{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/quarantined_outpost/cargo_bay) +"fnH" = ( +/obj/machinery/door/airlock/maintenance_hatch{ + dir = 1 + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/simulated/floor/plating, +/area/quarantined_outpost/cargo_bay) +"fnM" = ( +/obj/effect/floor_decal/corner/dark_blue{ + dir = 10 + }, +/obj/structure/table/standard/flipped{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/quarantined_outpost/dorm_hallway) +"fow" = ( +/obj/structure/platform/ledge/dark{ + dir = 1 + }, +/turf/simulated/floor/exoplanet/abyss, +/area/quarantined_outpost/research/containment) +"foH" = ( +/obj/random/dirt_75, +/obj/effect/decal/cleanable/cobweb2, +/turf/simulated/floor/plating, +/area/quarantined_outpost/entrance_maintenance) +"foU" = ( +/obj/machinery/light/small/maybe_broken/decayed, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/quarantined_outpost/engineering/atmospherics) +"fpe" = ( +/obj/effect/floor_decal/corner/dark_blue{ + dir = 6 + }, +/obj/structure/bed/stool/chair/office/dark{ + dir = 8 + }, +/obj/random/dirt_75, +/obj/effect/floor_decal/industrial/outline_straight/yellow{ + dir = 1 + }, +/obj/effect/decal/cleanable/floor_damage/rust, +/turf/simulated/floor/tiled/gunmetal, +/area/quarantined_outpost/server_relay/south_east) +"fpi" = ( +/obj/structure/table/standard, +/obj/random/dirt_75, +/obj/machinery/light/maybe_broken/decayed{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/quarantined_outpost/dorm_hallway) +"fpj" = ( +/obj/machinery/door/airlock{ + dir = 8; + name = "Gym Lockers" + }, +/obj/machinery/door/firedoor{ + dir = 4 + }, +/obj/effect/floor_decal/industrial/hatch_door/yellow, +/turf/simulated/floor/tiled, +/area/quarantined_outpost/gym) +"fpk" = ( +/obj/structure/bed/stool/chair/office/light{ + dir = 1 + }, +/obj/effect/floor_decal/corner/mauve{ + dir = 1 + }, +/obj/random/dirt_75, +/turf/simulated/floor/tiled/light, +/area/quarantined_outpost/research) +"fpO" = ( +/obj/structure/table/standard, +/obj/effect/floor_decal/corner_wide/paleblue{ + dir = 5 + }, +/obj/structure/railing/mapped{ + dir = 4 + }, +/obj/structure/railing/mapped{ + dir = 8 + }, +/obj/item/deck/cards{ + pixel_x = -4 + }, +/turf/simulated/floor/tiled/airless, +/area/quarantined_outpost/security) +"fpS" = ( +/obj/effect/floor_decal/corner_wide/lime{ + dir = 8 + }, +/obj/effect/decal/cleanable/floor_damage/rust, +/turf/simulated/floor/tiled/white, +/area/quarantined_outpost/medbay) +"fqh" = ( +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/table, +/obj/effect/floor_decal/industrial/outline_straight/custodial{ + dir = 4 + }, +/obj/random/dirt_75, +/turf/simulated/floor/tiled/light, +/area/quarantined_outpost/research) +"fqG" = ( +/obj/random/dirt_75, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/effect/landmark/maybe_cut_cable, +/turf/simulated/floor/tiled/rust, +/area/quarantined_outpost/reception) +"fqL" = ( +/obj/random/dirt_75, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/quarantined_outpost/reception) +"fqM" = ( +/obj/machinery/computer/terminal/inactive, +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/structure/railing/mapped{ + dir = 1; + pixel_y = 8 + }, +/obj/effect/decal/rolling_fog, +/turf/simulated/floor/tiled/dark/full, +/area/quarantined_outpost/research) +"frc" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/turf/simulated/floor/tiled/light/full, +/area/quarantined_outpost/research) +"frA" = ( +/obj/machinery/atmospherics/unary/engine, +/turf/simulated/floor/plating, +/area/quarantined_outpost/cargo_bay) +"frH" = ( +/obj/abstract/footprint_spawner{ + dir = 1 + }, +/obj/abstract/footprint_spawner_turn_helper{ + dir = 4 + }, +/obj/random/dirt_75, +/turf/simulated/floor/tiled/dark, +/area/quarantined_outpost/research) +"frV" = ( +/obj/effect/floor_decal/corner/dark_blue{ + dir = 10 + }, +/obj/machinery/light/floor/maybe_broken/decayed, +/turf/simulated/floor/tiled/rust, +/area/quarantined_outpost/dorm_hallway) +"fsM" = ( +/obj/effect/floor_decal/corner/yellow/full{ + dir = 1 + }, +/obj/structure/table/standard, +/obj/random/dirt_75, +/obj/random/tech_supply, +/obj/item/device/radio{ + pixel_x = 8 + }, +/obj/random/powercell{ + pixel_y = 10; + pixel_x = -7 + }, +/turf/simulated/floor/tiled/gunmetal, +/area/quarantined_outpost/engineering) +"fta" = ( +/obj/effect/floor_decal/corner/dark_blue{ + dir = 10 + }, +/obj/random/dirt_75, +/obj/effect/decal/cleanable/floor_damage/rust, +/turf/simulated/floor/tiled, +/area/quarantined_outpost/cafeteria) +"ftn" = ( +/obj/effect/floor_decal/corner/dark_blue{ + dir = 8 + }, +/obj/random/dirt_75, +/obj/structure/bed/stool/chair{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/quarantined_outpost/reception) +"ftv" = ( +/obj/structure/railing/mapped{ + dir = 4 + }, +/obj/structure/flora/rock/pile/random, +/obj/structure/platform{ + dir = 4 + }, +/turf/simulated/floor/exoplanet/basalt, +/area/quarantined_outpost/north_east_hallway) +"ftE" = ( +/obj/effect/floor_decal/corner/dark_blue{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 + }, +/turf/simulated/floor/tiled/dark, +/area/quarantined_outpost/research) +"fub" = ( +/obj/random/dirt_75, +/obj/random/dirt_75, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 1 + }, +/turf/simulated/floor/tiled/rust, +/area/quarantined_outpost/elevator_hallway) +"fuB" = ( +/obj/effect/floor_decal/industrial/hatch/custodial, +/turf/simulated/floor/tiled/dark/full, +/area/quarantined_outpost/research) +"fuM" = ( +/obj/effect/floor_decal/corner_wide/lime/full{ + dir = 4 + }, +/obj/structure/table/glass, +/turf/simulated/floor/tiled/white, +/area/quarantined_outpost/medbay) +"fuV" = ( +/obj/structure/lattice/catwalk/indoor, +/obj/structure/sign/securearea{ + pixel_y = 32 + }, +/turf/simulated/floor/exoplanet/basalt, +/area/quarantined_outpost/north_east_hallway) +"fvg" = ( +/obj/random/dirt_75, +/obj/random/dirt_75, +/obj/effect/floor_decal/industrial/outline_door/yellow{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/obj/effect/decal/cleanable/floor_damage/random_burned, +/turf/simulated/floor/tiled/dark, +/area/quarantined_outpost/entrance_lobby) +"fvi" = ( +/obj/effect/floor_decal/corner_wide/paleblue{ + dir = 5 + }, +/obj/effect/floor_decal/industrial/outline/security, +/obj/structure/bed/stool/chair, +/turf/simulated/floor/tiled/airless, +/area/quarantined_outpost/security) +"fvt" = ( +/obj/structure/table/reinforced/steel, +/obj/machinery/door/window/desk/northleft, +/turf/simulated/floor/tiled/dark/full, +/area/quarantined_outpost/medbay) +"fvx" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/effect/landmark/maybe_cut_cable, +/turf/simulated/floor/tiled/gunmetal/full, +/area/quarantined_outpost/engineering/tunnel) +"fwr" = ( +/obj/random/dirt_75, +/turf/simulated/floor/tiled/freezer{ + name = "cooled tiles"; + temperature = 253.15 + }, +/area/quarantined_outpost/cafeteria) +"fwt" = ( +/obj/effect/floor_decal/corner_wide/paleblue/diagonal, +/obj/random/dirt_75, +/obj/random/dirt_75, +/turf/simulated/floor/tiled/airless, +/area/quarantined_outpost/security) +"fwJ" = ( +/obj/random/dirt_75, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, +/turf/simulated/floor/tiled, +/area/quarantined_outpost/reception) +"fxq" = ( +/obj/machinery/light/small/emergency{ + dir = 4 + }, +/obj/structure/lattice/catwalk, +/turf/simulated/floor/exoplanet/basalt, +/area/quarantined_outpost/engineering/tunnel) +"fxr" = ( +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/curtain/open/shower, +/obj/machinery/shower{ + dir = 1; + pixel_y = -8 + }, +/obj/effect/floor_decal/concrete/gutter, +/turf/simulated/floor/marble, +/area/quarantined_outpost/gym) +"fxx" = ( +/obj/effect/floor_decal/corner/green/diagonal, +/obj/random/dirt_75, +/obj/structure/cable{ + icon_state = "1-8" + }, +/turf/simulated/floor/tiled/white, +/area/quarantined_outpost/dorm_hallway) +"fxz" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/obj/effect/decal/cleanable/blood, +/obj/random/dirt_75, +/turf/simulated/floor/tiled/dark/full, +/area/quarantined_outpost/research) +"fyt" = ( +/turf/simulated/wall/r_wall, +/area/quarantined_outpost/engineering/tunnel) +"fyS" = ( +/obj/effect/floor_decal/corner/dark_blue{ + dir = 9 + }, +/obj/random/dirt_75, +/obj/machinery/alarm/west, +/turf/simulated/floor/tiled, +/area/quarantined_outpost/cafeteria) +"fzF" = ( +/obj/structure/flora/pottedplant/dead{ + pixel_y = 14 + }, +/obj/effect/floor_decal/corner/dark_blue/full{ + dir = 8 + }, +/obj/random/dirt_75, +/turf/simulated/floor/tiled, +/area/quarantined_outpost/elevator_hallway) +"fzG" = ( +/obj/structure/closet/crate/bin{ + pixel_x = 7 + }, +/obj/effect/floor_decal/corner/green/diagonal, +/turf/simulated/floor/tiled/white, +/area/quarantined_outpost/dorm_hallway) +"fAo" = ( +/obj/effect/floor_decal/corner/dark_blue{ + dir = 1 + }, +/obj/effect/floor_decal/corner/yellow{ + dir = 8 + }, +/obj/random/dirt_75, +/obj/abstract/footprint_spawner/oil, +/turf/simulated/floor/tiled/dark, +/area/quarantined_outpost/engineering/atmospherics) +"fAs" = ( +/obj/structure/table/rack, +/obj/effect/floor_decal/corner/yellow{ + dir = 6 + }, +/obj/random/dirt_75, +/obj/random/tech_supply, +/obj/random/tech_supply, +/obj/random/tech_supply, +/turf/simulated/floor/tiled/dark/airless, +/area/quarantined_outpost/auxiliary_power) +"fAH" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 4 + }, +/obj/structure/table/standard, +/obj/random/dirt_75, +/turf/simulated/floor/plating, +/area/quarantined_outpost/north_east_hallway/maintenance) +"fAZ" = ( +/obj/structure/lattice/catwalk/indoor/grate/dark, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/turf/simulated/floor/plating, +/area/quarantined_outpost/engineering/winch_room) +"fBl" = ( +/obj/structure/bed/stool/chair, +/obj/structure/railing/mapped{ + dir = 4 + }, +/obj/effect/floor_decal/industrial/outline/security, +/obj/random/dirt_75, +/obj/random/dirt_75, +/turf/simulated/floor/tiled/dark/airless, +/area/quarantined_outpost/security) +"fCk" = ( +/obj/structure/grille/broken, +/turf/simulated/floor/plating, +/area/quarantined_outpost/elevator_hallway) +"fCo" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 6 + }, +/obj/machinery/pipedispenser/disposal, +/obj/random/dirt_75, +/obj/random/dirt_75, +/turf/simulated/floor/plating, +/area/quarantined_outpost/engineering/atmospherics) +"fCp" = ( +/obj/structure/lattice/catwalk/indoor, +/turf/simulated/floor/airless, +/area/quarantined_outpost/auxiliary_power) +"fCr" = ( +/obj/effect/floor_decal/industrial/hatch/custodial, +/obj/machinery/door/firedoor, +/obj/abstract/footprint_spawner{ + dir = 1 + }, +/obj/structure/plasticflaps/airtight, +/turf/simulated/floor/tiled/dark/full, +/area/quarantined_outpost/research) +"fCZ" = ( +/obj/structure/stairs_railing, +/obj/structure/lattice/catwalk, +/turf/simulated/floor/exoplanet/abyss, +/area/quarantined_outpost/engineering/winch_room) +"fDy" = ( +/obj/random/dirt_75, +/obj/random/dirt_75, +/turf/simulated/floor/plating, +/area/quarantined_outpost/entrance_maintenance) +"fDP" = ( +/obj/structure/table/standard, +/obj/effect/floor_decal/corner_wide/paleblue{ + dir = 4 + }, +/obj/random/dirt_75, +/turf/simulated/floor/tiled/airless, +/area/quarantined_outpost/security) +"fEd" = ( +/obj/effect/floor_decal/industrial/hatch/custodial, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark/full, +/area/quarantined_outpost/research) +"fEj" = ( +/obj/structure/railing/mapped{ + dir = 1 + }, +/obj/structure/railing/mapped{ + dir = 4 + }, +/turf/simulated/floor/exoplanet/basalt, +/area/quarantined_outpost/cavern/east_cavern) +"fEn" = ( +/obj/structure/lattice/catwalk/indoor/grate, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 1 + }, +/turf/simulated/floor/plating, +/area/quarantined_outpost/entrance_lobby) +"fEB" = ( +/obj/effect/floor_decal/corner_wide/paleblue{ + dir = 8 + }, +/obj/abstract/footprint_spawner/body, +/obj/random/dirt_75, +/turf/simulated/floor/tiled/airless, +/area/quarantined_outpost/security) +"fEK" = ( +/obj/effect/floor_decal/corner/dark_blue{ + dir = 6 + }, +/obj/structure/table/standard, +/obj/machinery/recharger{ + pixel_y = 9; + pixel_x = 7 + }, +/turf/simulated/floor/tiled, +/area/quarantined_outpost/entrance_lobby) +"fET" = ( +/obj/effect/decal/cleanable/floor_damage/random_wood_broken, +/obj/effect/floor_decal/spline/fancy/wood, +/turf/simulated/floor/wood, +/area/quarantined_outpost/cargo_bay) +"fEX" = ( +/obj/random/dirt_75, +/obj/random/dirt_75, +/turf/simulated/floor/tiled/full, +/area/quarantined_outpost/elevator_hallway) +"fFb" = ( +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 9 + }, +/obj/machinery/meter, +/turf/simulated/floor/plating, +/area/quarantined_outpost/engineering/atmospherics) +"fFj" = ( +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/effect/floor_decal/industrial/hatch_tiny/yellow, +/obj/machinery/atmospherics/binary/passive_gate/supply{ + name = "Air to Distro" + }, +/turf/simulated/floor/plating, +/area/quarantined_outpost/engineering/atmospherics) +"fFr" = ( +/turf/simulated/wall, +/area/quarantined_outpost/cargo_bay) +"fFS" = ( +/obj/structure/bed/stool/chair{ + dir = 1 + }, +/obj/effect/floor_decal/corner_wide/paleblue, +/obj/random/dirt_75, +/obj/machinery/light/maybe_broken/decayed, +/turf/simulated/floor/tiled, +/area/quarantined_outpost/elevator_hallway) +"fGh" = ( +/obj/effect/floor_decal/corner/lime/full{ + dir = 1 + }, +/obj/random/dirt_75, +/turf/simulated/floor/tiled, +/area/quarantined_outpost/cafeteria) +"fGG" = ( +/turf/simulated/mineral/lava, +/area/quarantined_outpost/engineering/tunnel) +"fHd" = ( +/obj/effect/floor_decal/spline/plain/black{ + dir = 4 + }, +/obj/abstract/footprint_spawner{ + dir = 1 + }, +/obj/abstract/footprint_spawner_turn_helper{ + dir = 8 + }, +/turf/simulated/floor/tiled/gunmetal, +/area/quarantined_outpost/engineering/tunnel) +"fHz" = ( +/obj/effect/floor_decal/corner/dark_blue{ + dir = 4 + }, +/obj/random/dirt_75, +/obj/effect/decal/cleanable/generic, +/turf/simulated/floor/tiled, +/area/quarantined_outpost/elevator_hallway) +"fIh" = ( +/obj/random/dirt_75, +/obj/machinery/power/apc/south, +/obj/structure/cable, +/turf/simulated/floor/tiled, +/area/quarantined_outpost/elevator_hallway) +"fIl" = ( +/obj/effect/floor_decal/corner/dark_blue{ + dir = 9 + }, +/obj/abstract/footprint_spawner{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/quarantined_outpost/north_east_hallway) +"fIJ" = ( +/obj/machinery/atmospherics/unary/outlet_injector{ + dir = 8; + frequency = 1514; + id = "quarantined_outpost_fuel_in" + }, +/obj/machinery/sparker{ + id = "quarantined_outpost_igniter"; + pixel_x = -15 + }, +/turf/simulated/floor/reinforced/airless, +/area/quarantined_outpost/engineering/atmospherics) +"fJS" = ( +/obj/effect/floor_decal/industrial/outline/operations, +/obj/structure/closet, +/obj/random/dirt_75, +/obj/random/smokable, +/turf/simulated/floor/tiled/dark/full, +/area/quarantined_outpost/cargo_bay) +"fJW" = ( +/obj/structure/lattice/catwalk/indoor/grate, +/obj/structure/fuel_port/hydrogen{ + pixel_y = 32 + }, +/turf/simulated/floor/plating, +/area/quarantined_outpost/cargo_bay) +"fKc" = ( +/obj/structure/bed/stool/chair/office/light{ + dir = 1 + }, +/obj/effect/floor_decal/corner/mauve/diagonal, +/obj/random/dirt_75, +/turf/simulated/floor/tiled/white, +/area/quarantined_outpost/extraction_lab) +"fKj" = ( +/obj/effect/floor_decal/corner/dark_blue{ + dir = 8 + }, +/obj/random/dirt_75, +/obj/random/dirt_75, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/quarantined_outpost/elevator_hallway) +"fKH" = ( +/obj/machinery/door/firedoor{ + dir = 4 + }, +/obj/effect/floor_decal/industrial/hatch_door/yellow, +/obj/machinery/door/airlock/glass{ + dir = 4; + name = "Cafeteria" + }, +/turf/simulated/floor/tiled/full, +/area/quarantined_outpost/cafeteria) +"fKK" = ( +/obj/structure/railing/mapped{ + dir = 8 + }, +/obj/structure/lattice/catwalk/indoor, +/obj/structure/cable{ + icon_state = "2-4" + }, +/turf/simulated/floor/exoplanet/basalt, +/area/quarantined_outpost/north_east_hallway) +"fKT" = ( +/obj/effect/floor_decal/corner/lime{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/quarantined_outpost/cafeteria) +"fLc" = ( +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/machinery/portable_atmospherics/canister/empty/hydrogen/tritium, +/turf/simulated/floor/tiled/dark/full, +/area/quarantined_outpost/research) +"fLk" = ( +/obj/structure/bed/stool/padded/red{ + dir = 1 + }, +/obj/random/dirt_75, +/turf/simulated/floor/carpet/rubber, +/area/quarantined_outpost/gym) +"fLu" = ( +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/effect/decal/cleanable/blood, +/turf/simulated/floor/plating, +/area/quarantined_outpost/cargo_bay) +"fMu" = ( +/obj/effect/floor_decal/industrial/arrow/yellow{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/quarantined_outpost/reception) +"fMD" = ( +/obj/structure/closet/body_bag, +/obj/random/dirt_75, +/obj/structure/cable{ + icon_state = "2-4" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 8 + }, +/turf/simulated/floor/tiled/white, +/area/quarantined_outpost/medbay) +"fMN" = ( +/obj/effect/floor_decal/corner/black/full{ + dir = 8 + }, +/obj/random/dirt_75, +/obj/effect/decal/cleanable/cobweb, +/turf/simulated/floor/tiled, +/area/quarantined_outpost/elevator_hallway) +"fMP" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 4 + }, +/obj/random/dirt_75, +/turf/simulated/floor/plating, +/area/quarantined_outpost/elevator_hallway/maintenance) +"fMQ" = ( +/obj/effect/decal/cleanable/floor_damage/random_broken, +/obj/effect/decal/cleanable/molten_item, +/turf/simulated/floor/plating, +/area/quarantined_outpost/entrance_maintenance) +"fNf" = ( +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/effect/decal/cleanable/cobweb, +/obj/structure/closet/crate/loot, +/turf/simulated/floor/plating, +/area/quarantined_outpost/cargo_bay) +"fNt" = ( +/obj/structure/closet/emcloset, +/obj/effect/floor_decal/spline/plain/black{ + dir = 4 + }, +/obj/effect/floor_decal/industrial/outline/emergency_closet, +/obj/random/dirt_75, +/obj/effect/decal/cleanable/cobweb, +/turf/simulated/floor/tiled/dark/full, +/area/quarantined_outpost/elevator_hallway) +"fNz" = ( +/obj/structure/sink{ + dir = 8; + pixel_x = -12; + pixel_y = 6 + }, +/obj/effect/floor_decal/corner/red{ + dir = 9 + }, +/turf/simulated/floor/tiled/dark, +/area/quarantined_outpost/research) +"fND" = ( +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/effect/floor_decal/industrial/warning, +/obj/random/canister/filled, +/turf/simulated/floor/plating, +/area/quarantined_outpost/engineering/atmospherics) +"fNF" = ( +/obj/effect/floor_decal/corner/black/full{ + dir = 4 + }, +/obj/random/dirt_75, +/turf/simulated/floor/tiled, +/area/quarantined_outpost/elevator_hallway) +"fNG" = ( +/obj/structure/barricade/wooden/road{ + dir = 4 + }, +/turf/simulated/floor/exoplanet/basalt, +/area/quarantined_outpost/cavern/east_cavern) +"fNZ" = ( +/obj/structure/table/standard, +/obj/random/powercell{ + pixel_y = 10; + pixel_x = -7 + }, +/obj/random/powercell{ + pixel_y = 4; + pixel_x = -7 + }, +/obj/structure/lattice/catwalk/indoor, +/turf/simulated/floor/airless, +/area/quarantined_outpost/auxiliary_power) +"fOv" = ( +/obj/effect/floor_decal/corner_wide/lime{ + dir = 10 + }, +/obj/machinery/light/small/maybe_broken/decayed, +/obj/random/dirt_75, +/turf/simulated/floor/tiled/white, +/area/quarantined_outpost/medbay) +"fPQ" = ( +/obj/structure/trash_pile, +/turf/simulated/floor/plating, +/area/quarantined_outpost/entrance_maintenance) +"fQe" = ( +/obj/random/dirt_75, +/obj/effect/decal/cleanable/floor_damage/rust, +/turf/simulated/floor/tiled/gunmetal, +/area/quarantined_outpost/north_east_hallway) +"fQm" = ( +/obj/structure/barricade/wooden/road{ + dir = 8 + }, +/turf/simulated/floor/exoplanet/asteroid/ash/rocky, +/area/quarantined_outpost/exterior) +"fQn" = ( +/obj/structure/lattice/catwalk, +/obj/structure/railing/mapped{ + dir = 1 + }, +/obj/structure/railing/mapped{ + dir = 8 + }, +/turf/simulated/floor/exoplanet/abyss, +/area/quarantined_outpost/chasm) +"fRd" = ( +/obj/structure/railing/mapped{ + dir = 4 + }, +/obj/structure/railing/mapped, +/turf/simulated/floor/exoplanet/asteroid/ash/rocky, +/area/quarantined_outpost/exterior) +"fRw" = ( +/obj/random/dirt_75, +/obj/structure/cable{ + 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/full, +/area/quarantined_outpost/elevator_hallway) +"fRH" = ( +/obj/effect/floor_decal/corner_wide/paleblue/full{ + dir = 8 + }, +/obj/effect/decal/cleanable/cobweb, +/obj/random/dirt_75, +/obj/effect/decal/cleanable/blood, +/obj/effect/decal/cleanable/floor_damage/rust, +/turf/simulated/floor/tiled/white, +/area/quarantined_outpost/medbay) +"fRL" = ( +/obj/structure/platform/ledge, +/turf/simulated/floor/plating, +/area/quarantined_outpost/cargo_bay) +"fRM" = ( +/turf/simulated/wall, +/area/quarantined_outpost/cafeteria) +"fRT" = ( +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/random/dirt_75, +/obj/random/dirt_75, +/obj/machinery/computer/terminal/inactive{ + dir = 8 + }, +/turf/simulated/floor/tiled/ridged, +/area/quarantined_outpost/server_relay/south_east) +"fSa" = ( +/obj/structure/lattice/catwalk, +/obj/structure/railing/mapped{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/quarantined_outpost/cargo_bay) +"fSv" = ( +/obj/structure/tank_wall/air{ + density = 0; + icon_state = "air6"; + opacity = 0 + }, +/obj/machinery/atmospherics/portables_connector{ + dir = 8 + }, +/obj/machinery/portable_atmospherics/canister/air, +/turf/simulated/floor/reinforced, +/area/quarantined_outpost/engineering/atmospherics) +"fSx" = ( +/obj/effect/floor_decal/corner/yellow/full{ + dir = 1 + }, +/obj/random/dirt_75, +/obj/structure/flora/pottedplant/dead{ + pixel_y = 14 + }, +/obj/structure/cable{ + icon_state = "2-8" + }, +/turf/simulated/floor/tiled, +/area/quarantined_outpost/engineering) +"fSF" = ( +/obj/random/dirt_75, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/quarantined_outpost/cargo_bay) +"fSR" = ( +/obj/effect/floor_decal/corner/yellow{ + dir = 10 + }, +/obj/random/dirt_75, +/turf/simulated/floor/tiled/dark, +/area/quarantined_outpost/engineering/winch_room) +"fSW" = ( +/obj/structure/platform_deco/ledge/dark, +/turf/simulated/floor/exoplanet/abyss, +/area/quarantined_outpost/chasm) +"fTc" = ( +/obj/structure/lattice/catwalk/indoor/grate/dark, +/obj/abstract/footprint_spawner{ + dir = 8 + }, +/obj/structure/cable{ + icon_state = "2-4" + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/simulated/floor/plating, +/area/quarantined_outpost/north_east_hallway/maintenance) +"fTe" = ( +/obj/effect/map_effect/window_spawner/full/reinforced/firedoor, +/turf/simulated/floor/tiled/dark/full, +/area/quarantined_outpost/gym) +"fTi" = ( +/obj/structure/lattice/catwalk/indoor, +/turf/simulated/floor/exoplanet/abyss, +/area/quarantined_outpost/research/containment) +"fTS" = ( +/obj/structure/grille/broken, +/obj/effect/landmark/quarantined_outpost/canister_spawn, +/turf/simulated/floor/plating, +/area/quarantined_outpost/elevator_hallway/maintenance) +"fTT" = ( +/obj/structure/bed/stool/chair, +/obj/effect/floor_decal/corner_wide/lime{ + dir = 5 + }, +/obj/random/dirt_75, +/turf/simulated/floor/tiled/white, +/area/quarantined_outpost/medbay) +"fUy" = ( +/obj/random/dirt_75, +/turf/simulated/floor/tiled, +/area/quarantined_outpost/cafeteria/maintenance) +"fVo" = ( +/obj/effect/floor_decal/corner_wide/paleblue/full{ + dir = 8 + }, +/obj/structure/reagent_dispensers/water_cooler{ + pixel_y = 16 + }, +/turf/simulated/floor/tiled/airless, +/area/quarantined_outpost/security) +"fVp" = ( +/obj/effect/floor_decal/corner_wide/lime/full, +/obj/structure/table/glass, +/turf/simulated/floor/tiled/white, +/area/quarantined_outpost/medbay) +"fWG" = ( +/obj/structure/lattice/catwalk/indoor/grate/dark, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/simulated/floor/plating, +/area/quarantined_outpost/north_east_hallway) +"fWI" = ( +/obj/effect/floor_decal/corner/grey/diagonal, +/obj/machinery/vending/dinnerware{ + density = 0; + pixel_y = 24 + }, +/turf/simulated/floor/tiled/white, +/area/quarantined_outpost/cafeteria) +"fXa" = ( +/obj/random/dirt_75, +/turf/simulated/floor/plating/asteroid/airless, +/area/quarantined_outpost/exterior) +"fXS" = ( +/obj/effect/floor_decal/industrial/warning, +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 5 + }, +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 4 + }, +/obj/effect/decal/cleanable/floor_damage/rust, +/obj/random/dirt_75, +/turf/simulated/floor/tiled, +/area/quarantined_outpost/medbay) +"fYa" = ( +/obj/machinery/light/small/maybe_broken/decayed{ + dir = 4 + }, +/obj/random/dirt_75, +/turf/simulated/floor/plating, +/area/quarantined_outpost/cargo_bay) +"fYy" = ( +/obj/effect/floor_decal/spline/plain/black, +/obj/random/dirt_75, +/obj/effect/decal/cleanable/floor_damage/rust, +/turf/simulated/floor/tiled/gunmetal/full, +/area/quarantined_outpost/engineering/tunnel) +"fZl" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/turf/simulated/floor/plating, +/area/quarantined_outpost/north_east_hallway/maintenance) +"gad" = ( +/obj/effect/floor_decal/corner/black/full{ + dir = 8 + }, +/obj/structure/closet/cabinet, +/obj/random/dirt_75, +/obj/outfit/admin/generic, +/obj/effect/decal/cleanable/cobweb, +/obj/item/mirror, +/turf/simulated/floor/tiled, +/area/quarantined_outpost/dorm_hallway) +"gbo" = ( +/obj/effect/floor_decal/corner/dark_blue{ + dir = 5 + }, +/obj/structure/sign/flag/sol/old{ + pixel_y = 32 + }, +/obj/machinery/light/floor/maybe_broken/decayed{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/quarantined_outpost/dorm_hallway) +"gbv" = ( +/obj/random/dirt_75, +/obj/random/dirt_75, +/obj/effect/decal/cleanable/floor_damage/rust, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/abstract/footprint_spawner{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/quarantined_outpost/cargo_bay) +"gbD" = ( +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/structure/cable/orange{ + icon_state = "0-2" + }, +/obj/machinery/power/smes/buildable/third_party_shuttle/low_charge, +/turf/simulated/floor/airless, +/area/quarantined_outpost/auxiliary_power) +"gbV" = ( +/obj/effect/floor_decal/corner/mauve, +/obj/effect/decal/cleanable/floor_damage/rust, +/obj/random/dirt_75, +/turf/simulated/floor/tiled/light, +/area/quarantined_outpost/research) +"gbY" = ( +/obj/structure/lattice/catwalk/indoor/grate/light, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/quarantined_outpost/research) +"gco" = ( +/obj/random/dirt_75, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 1 + }, +/turf/simulated/floor/tiled/airless, +/area/quarantined_outpost/security) +"gcC" = ( +/obj/effect/floor_decal/industrial/hatch/grey, +/obj/structure/table/rack/retail_shelf, +/obj/item/storage/box/freezer/organcooler{ + pixel_y = 16; + pixel_x = 8 + }, +/obj/item/reagent_containers/glass/bottle/inaprovaline{ + pixel_x = -8 + }, +/turf/simulated/floor/tiled/freezer{ + name = "cooled tiles"; + temperature = 253.15 + }, +/area/quarantined_outpost/medbay) +"gcP" = ( +/turf/simulated/wall/r_wall, +/area/quarantined_outpost/gym) +"gcV" = ( +/obj/random/dirt_75, +/obj/random/dirt_75, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/effect/landmark/maybe_cut_cable, +/turf/simulated/floor/tiled, +/area/quarantined_outpost/reception) +"gcZ" = ( +/obj/random/maintenance_junk_or_loot, +/turf/simulated/floor/plating, +/area/quarantined_outpost/cafeteria/maintenance) +"gde" = ( +/obj/machinery/door/firedoor/multi_tile, +/obj/effect/floor_decal/industrial/hatch/medical, +/obj/machinery/door/airlock/multi_tile/glass{ + name = "Medical Ward Entrance"; + welded = 1 + }, +/obj/random/dirt_75, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 1 + }, +/turf/simulated/floor/tiled/white, +/area/quarantined_outpost/medbay) +"gdp" = ( +/obj/effect/floor_decal/industrial/hatch/grey, +/obj/structure/closet/walllocker/secure{ + pixel_y = 32; + name = "Blood Locker" + }, +/obj/item/reagent_containers/blood/OMinus, +/obj/item/reagent_containers/blood/OMinus, +/turf/simulated/floor/tiled/freezer{ + name = "cooled tiles"; + temperature = 253.15 + }, +/area/quarantined_outpost/medbay) +"gdV" = ( +/obj/structure/lattice/catwalk/indoor/grate/damaged, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 1 + }, +/turf/simulated/floor/airless, +/area/quarantined_outpost/security) +"gec" = ( +/obj/effect/floor_decal/spline/plain/black, +/obj/effect/floor_decal/corner/dark_green{ + dir = 1 + }, +/obj/random/dirt_75, +/obj/random/junk, +/turf/simulated/floor/tiled, +/area/quarantined_outpost/gym) +"gei" = ( +/obj/machinery/light/floor/maybe_broken/decayed{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/quarantined_outpost/cafeteria) +"geo" = ( +/obj/random/dirt_75, +/obj/random/dirt_75, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/quarantined_outpost/security) +"geE" = ( +/obj/effect/floor_decal/corner/mauve{ + dir = 8 + }, +/turf/simulated/floor/tiled/light, +/area/quarantined_outpost/research) +"gfm" = ( +/obj/structure/platform_deco/dark, +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/obj/effect/decal/rolling_fog, +/turf/simulated/floor/plating, +/area/quarantined_outpost/research) +"gfo" = ( +/obj/machinery/door/airlock/hatch{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/quarantined_outpost/entrance_maintenance) +"gfz" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/obj/random/dirt_75, +/obj/machinery/light/small/emergency, +/turf/simulated/floor/plating, +/area/quarantined_outpost/north_east_hallway/maintenance) +"gfA" = ( +/obj/random/maintenance_junk_or_loot, +/obj/random/dirt_75, +/turf/simulated/floor/plating, +/area/quarantined_outpost/north_east_hallway/maintenance) +"gfH" = ( +/obj/effect/floor_decal/spline/plain/black{ + dir = 10 + }, +/obj/random/dirt_75, +/obj/random/dirt_75, +/obj/structure/bed/stool/chair/shuttle, +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/machinery/atmospherics/unary/vent_pump/high_volume, +/turf/simulated/floor/tiled/dark/airless, +/area/quarantined_outpost/cargo_bay) +"gfQ" = ( +/obj/structure/lattice/catwalk/indoor/grate/damaged, +/turf/simulated/floor/plating, +/area/quarantined_outpost/reception) +"gfU" = ( +/obj/effect/floor_decal/spline/plain/black{ + dir = 1 + }, +/obj/structure/sign/directions/tcom{ + dir = 4; + pixel_y = 32 + }, +/obj/effect/decal/cleanable/floor_damage/rust, +/obj/effect/landmark/quarantined_outpost/creature, +/turf/simulated/floor/tiled/gunmetal, +/area/quarantined_outpost/north_east_hallway) +"ggq" = ( +/obj/machinery/air_sensor{ + id_tag = "quarantined_outpost_combust_sensor"; + frequency = 1514 + }, +/turf/simulated/floor/reinforced/airless, +/area/quarantined_outpost/engineering/atmospherics) +"ggv" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/quarantined_outpost/research) +"ghd" = ( +/obj/structure/lattice/catwalk/indoor/grate/dark, +/obj/structure/cable{ + icon_state = "2-8" + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/simulated/floor/plating, +/area/quarantined_outpost/cargo_bay) +"ghh" = ( +/obj/effect/floor_decal/corner/lime{ + dir = 10 + }, +/obj/item/material/stool/chair/folding{ + pixel_y = 1; + pixel_x = -3 + }, +/turf/simulated/floor/tiled, +/area/quarantined_outpost/cafeteria) +"ghC" = ( +/obj/structure/railing/mapped{ + dir = 1 + }, +/obj/structure/railing/mapped{ + dir = 8 + }, +/obj/structure/lattice/catwalk, +/turf/simulated/floor/exoplanet/basalt, +/area/quarantined_outpost/research) +"giw" = ( +/obj/effect/floor_decal/corner/dark_blue{ + dir = 9 + }, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/quarantined_outpost/north_east_hallway) +"giS" = ( +/obj/structure/platform{ + dir = 8 + }, +/obj/effect/decal/cleanable/floor_damage/rust, +/turf/simulated/floor/tiled/ridged, +/area/quarantined_outpost/extraction_lab) +"gks" = ( +/obj/effect/floor_decal/corner/dark_blue, +/obj/random/dirt_75, +/obj/effect/decal/cleanable/floor_damage/rust, +/turf/simulated/floor/tiled/gunmetal, +/area/quarantined_outpost/engineering/tunnel) +"gkx" = ( +/obj/random/dirt_75, +/obj/structure/cable/orange{ + icon_state = "1-4" + }, +/obj/random/dirt_75, +/turf/simulated/floor/plating/asteroid/airless, +/area/quarantined_outpost/exterior) +"gkA" = ( +/obj/effect/floor_decal/corner/lime, +/turf/simulated/floor/tiled, +/area/quarantined_outpost/cafeteria) +"gkE" = ( +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/machinery/mob_tracker/server_relay, +/turf/simulated/floor/tiled/ridged, +/area/quarantined_outpost/server_relay/south_east) +"gkG" = ( +/obj/structure/table/standard, +/obj/effect/floor_decal/corner/mauve{ + dir = 5 + }, +/turf/simulated/floor/tiled/white, +/area/quarantined_outpost/extraction_lab) +"glm" = ( +/obj/structure/filingcabinet/filingcabinet, +/obj/structure/filingcabinet/filingcabinet{ + pixel_x = 10 + }, +/obj/structure/filingcabinet/filingcabinet{ + pixel_x = -10 + }, +/obj/effect/floor_decal/corner_wide/paleblue{ + dir = 5 + }, +/obj/random/dirt_75, +/turf/simulated/floor/tiled/airless, +/area/quarantined_outpost/security) +"glA" = ( +/turf/simulated/mineral/lava, +/area/quarantined_outpost/gym) +"glE" = ( +/obj/random/dirt_75, +/turf/simulated/floor/tiled/dark, +/area/quarantined_outpost/engineering/atmospherics) +"glL" = ( +/obj/structure/platform{ + dir = 4 + }, +/obj/effect/decal/cleanable/floor_damage/rust, +/obj/random/dirt_75, +/obj/random/dirt_75, +/turf/simulated/floor/tiled/gunmetal, +/area/quarantined_outpost/north_east_hallway) +"gmc" = ( +/obj/effect/floor_decal/industrial/outline_straight/grey{ + dir = 8 + }, +/obj/random/dirt_75, +/turf/simulated/floor/tiled/ridged, +/area/quarantined_outpost/research) +"gmg" = ( +/obj/machinery/computer/terminal/inactive{ + dir = 4 + }, +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/effect/decal/cleanable/cobweb, +/turf/simulated/floor/tiled/gunmetal/full, +/area/quarantined_outpost/server_relay/north_east) +"gmy" = ( +/obj/effect/floor_decal/spline/plain/black, +/obj/structure/railing/mapped, +/obj/random/dirt_75, +/turf/simulated/floor/tiled/white, +/area/quarantined_outpost/extraction_lab) +"gnu" = ( +/obj/effect/floor_decal/spline/plain/corner/black, +/obj/effect/floor_decal/corner/dark_green{ + dir = 1 + }, +/obj/random/dirt_75, +/obj/random/dirt_75, +/turf/simulated/floor/tiled, +/area/quarantined_outpost/gym) +"gny" = ( +/obj/machinery/light/floor/maybe_broken/decayed, +/turf/simulated/floor/tiled/light/full, +/area/quarantined_outpost/research) +"gnD" = ( +/obj/effect/floor_decal/corner/mauve, +/obj/structure/bed/stool/chair/office/light{ + dir = 4 + }, +/obj/effect/floor_decal/corner/mauve{ + dir = 9 + }, +/obj/effect/floor_decal/spline/plain/purple{ + dir = 8 + }, +/obj/random/dirt_75, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled/light, +/area/quarantined_outpost/research) +"gnG" = ( +/obj/structure/lattice/catwalk/indoor/grate/dark, +/obj/abstract/footprint_spawner{ + dir = 8 + }, +/obj/abstract/footprint_spawner_turn_helper, +/obj/structure/cable{ + icon_state = "2-4" + }, +/turf/simulated/floor/plating, +/area/quarantined_outpost/north_east_hallway/maintenance) +"gnW" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 8 + }, +/obj/random/dirt_75, +/turf/simulated/floor/plating, +/area/quarantined_outpost/gym) +"gou" = ( +/obj/structure/platform/ledge/dark{ + dir = 4 + }, +/obj/effect/decal/rolling_fog, +/turf/simulated/floor/exoplanet/abyss, +/area/quarantined_outpost/chasm) +"goA" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, +/turf/simulated/floor/tiled, +/area/quarantined_outpost/security) +"goT" = ( +/obj/effect/floor_decal/spline/plain/black, +/obj/effect/floor_decal/corner/dark_green{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/quarantined_outpost/gym) +"gpk" = ( +/obj/effect/floor_decal/corner/dark_blue{ + dir = 5 + }, +/obj/structure/table/rack/retail_shelf, +/obj/random/loot{ + pixel_y = 2; + pixel_x = -8 + }, +/obj/random/loot{ + pixel_y = -11; + pixel_x = 7 + }, +/turf/simulated/floor/tiled/dark, +/area/quarantined_outpost/north_east_hallway) +"gqn" = ( +/obj/random/dirt_75, +/obj/random/dirt_75, +/obj/random/maintenance_junk_or_loot, +/turf/simulated/floor/tiled/rust, +/area/quarantined_outpost/elevator_hallway) +"gqo" = ( +/obj/effect/floor_decal/corner/mauve{ + dir = 10 + }, +/obj/random/dirt_75, +/obj/item/paper/crumpled{ + pixel_x = -2; + pixel_y = -1 + }, +/obj/effect/decal/cleanable/floor_damage/rust, +/turf/simulated/floor/tiled/white, +/area/quarantined_outpost/extraction_lab) +"gqQ" = ( +/obj/random/dirt_75, +/obj/random/dirt_75, +/turf/simulated/floor/tiled/freezer{ + name = "cooled tiles"; + temperature = 253.15 + }, +/area/quarantined_outpost/cafeteria) +"gqS" = ( +/obj/structure/platform/dark{ + dir = 1 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/obj/effect/decal/cleanable/blood/oil, +/obj/effect/decal/rolling_fog, +/turf/simulated/floor/plating, +/area/quarantined_outpost/research) +"grd" = ( +/obj/effect/floor_decal/industrial/outline/medical, +/obj/structure/closet/secure_closet/personal, +/obj/random/dirt_75, +/obj/random/dirt_75, +/turf/simulated/floor/tiled/full, +/area/quarantined_outpost/medbay) +"grf" = ( +/obj/effect/floor_decal/corner/green/diagonal, +/obj/structure/bed/stool/padded/red{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/quarantined_outpost/dorm_hallway) +"grm" = ( +/obj/effect/floor_decal/corner/dark_blue{ + dir = 8 + }, +/obj/random/dirt_75, +/obj/effect/floor_decal/industrial/outline_door/yellow{ + dir = 4 + }, +/turf/simulated/floor/tiled/gunmetal, +/area/quarantined_outpost/engineering/tunnel) +"grt" = ( +/turf/unsimulated/mineral/konyang, +/area/quarantined_outpost/chasm) +"grv" = ( +/obj/structure/railing/mapped{ + dir = 8 + }, +/obj/random/dirt_75, +/turf/simulated/floor/tiled/airless, +/area/quarantined_outpost/security) +"grC" = ( +/obj/structure/lattice/catwalk/indoor/grate/damaged, +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/simulated/floor/plating, +/area/quarantined_outpost/reception) +"grF" = ( +/obj/machinery/light/floor/maybe_broken/decayed{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/manifold/visible/black, +/turf/simulated/floor/plating, +/area/quarantined_outpost/engineering/atmospherics) +"grJ" = ( +/obj/random/dirt_75, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 1 + }, +/turf/simulated/floor/tiled/full, +/area/quarantined_outpost/dorm_hallway) +"grP" = ( +/obj/random/dirt_75, +/obj/random/dirt_75, +/obj/effect/floor_decal/industrial/outline_door/yellow{ + dir = 4 + }, +/obj/effect/floor_decal/industrial/outline_segment/yellow{ + dir = 1 + }, +/turf/simulated/floor/tiled/gunmetal, +/area/quarantined_outpost/cafeteria) +"gsa" = ( +/obj/machinery/door/airlock/maintenance_hatch{ + dir = 4 + }, +/obj/structure/lattice/catwalk/indoor, +/turf/simulated/floor/plating, +/area/quarantined_outpost/engineering/atmospherics) +"gss" = ( +/obj/effect/floor_decal/corner_wide/paleblue{ + dir = 10 + }, +/obj/structure/bed/stool/chair{ + dir = 1 + }, +/turf/simulated/floor/tiled/airless, +/area/quarantined_outpost/security) +"gti" = ( +/obj/structure/railing/mapped{ + dir = 1 + }, +/obj/structure/railing/mapped{ + dir = 4 + }, +/obj/effect/floor_decal/corner/dark_blue, +/obj/effect/floor_decal/corner/yellow{ + dir = 4 + }, +/obj/effect/floor_decal/corner/dark_blue{ + dir = 1 + }, +/turf/simulated/floor/tiled/dark, +/area/quarantined_outpost/north_east_hallway) +"gtx" = ( +/obj/effect/floor_decal/spline/plain/black, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/obj/structure/cable{ + icon_state = "1-4" + }, +/turf/simulated/floor/tiled/gunmetal, +/area/quarantined_outpost/north_east_hallway) +"gty" = ( +/obj/structure/railing/mapped{ + dir = 8 + }, +/obj/structure/railing/mapped, +/turf/simulated/floor/exoplanet/asteroid/ash/rocky, +/area/quarantined_outpost/exterior) +"gtP" = ( +/obj/random/dirt_75, +/obj/structure/cable{ + 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/quarantined_outpost/reception) +"guD" = ( +/obj/effect/floor_decal/industrial/warning, +/obj/random/dirt_75, +/obj/random/dirt_75, +/obj/abstract/footprint_spawner{ + dir = 1 + }, +/turf/simulated/floor/tiled/dark/full, +/area/quarantined_outpost/research) +"guS" = ( +/obj/structure/railing/mapped{ + dir = 8 + }, +/obj/effect/floor_decal/corner/brown{ + dir = 8 + }, +/obj/random/dirt_75, +/obj/effect/decal/cleanable/floor_damage/rust, +/obj/structure/cable{ + icon_state = "1-4" + }, +/obj/abstract/footprint_spawner{ + dir = 8 + }, +/obj/abstract/footprint_spawner_turn_helper{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/quarantined_outpost/cargo_bay) +"gvp" = ( +/obj/structure/lattice/catwalk, +/obj/structure/stairs_railing{ + pixel_y = 30; + dir = 1; + pixel_x = -1 + }, +/obj/structure/bed/stool/chair/folding, +/turf/simulated/floor/exoplanet/abyss, +/area/quarantined_outpost/engineering/atmospherics) +"gvy" = ( +/obj/machinery/atmospherics/pipe/manifold4w/visible, +/obj/effect/decal/rolling_fog, +/turf/simulated/floor/plating, +/area/quarantined_outpost/research) +"gwd" = ( +/obj/structure/platform/dark, +/obj/structure/platform/dark{ + dir = 8 + }, +/obj/structure/platform_deco/dark{ + dir = 9 + }, +/obj/effect/floor_decal/corner/yellow{ + dir = 5 + }, +/obj/random/dirt_75, +/obj/effect/decal/cleanable/floor_damage/rust, +/turf/simulated/floor/tiled/dark, +/area/quarantined_outpost/engineering/winch_room) +"gwm" = ( +/obj/effect/floor_decal/industrial/outline/grey, +/obj/structure/table/rack, +/obj/random/dirt_75, +/obj/item/towel/random{ + pixel_x = 2; + pixel_y = 8 + }, +/turf/simulated/floor/marble, +/area/quarantined_outpost/gym) +"gwA" = ( +/obj/random/dirt_75, +/obj/random/dirt_75, +/obj/effect/floor_decal/industrial/outline_segment/emergency_closet{ + dir = 5 + }, +/turf/simulated/floor/tiled/airless, +/area/quarantined_outpost/security) +"gwG" = ( +/obj/structure/lattice/catwalk/indoor/grate/dark, +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/simulated/floor/plating, +/area/quarantined_outpost/cargo_bay) +"gwI" = ( +/obj/effect/floor_decal/corner/mauve/diagonal, +/obj/structure/table/standard, +/obj/random/junk, +/turf/simulated/floor/tiled/white, +/area/quarantined_outpost/extraction_lab) +"gxc" = ( +/obj/effect/floor_decal/corner_wide/paleblue{ + dir = 1 + }, +/obj/effect/decal/cleanable/blood, +/obj/random/dirt_75, +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/airless, +/area/quarantined_outpost/security) +"gxl" = ( +/obj/effect/floor_decal/corner/dark_blue{ + dir = 6 + }, +/obj/random/dirt_75, +/obj/structure/reagent_dispensers/water_cooler{ + pixel_y = 20 + }, +/obj/effect/decal/cleanable/cobweb2, +/obj/machinery/light/small/broken{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/quarantined_outpost/entrance_lobby) +"gxo" = ( +/obj/effect/floor_decal/corner/dark_blue{ + dir = 10 + }, +/obj/random/dirt_75, +/turf/simulated/floor/tiled, +/area/quarantined_outpost/elevator_hallway) +"gxx" = ( +/obj/structure/railing/mapped{ + dir = 1 + }, +/turf/simulated/floor/exoplanet/asteroid/ash/rocky, +/area/quarantined_outpost/exterior) +"gxT" = ( +/obj/effect/floor_decal/spline/plain/black{ + dir = 10 + }, +/obj/machinery/computer/terminal/inactive{ + dir = 1 + }, +/turf/simulated/floor/tiled/full, +/area/quarantined_outpost/cargo_bay) +"gxV" = ( +/obj/structure/bed/stool/chair/office/dark, +/obj/effect/floor_decal/corner/dark_blue/full, +/turf/simulated/floor/tiled/dark, +/area/quarantined_outpost/north_east_hallway) +"gzk" = ( +/turf/simulated/floor/tiled/dark/full, +/area/quarantined_outpost/reception) +"gzE" = ( +/obj/effect/decal/remains, +/turf/simulated/floor/exoplanet/basalt, +/area/quarantined_outpost/engineering/atmospherics) +"gzW" = ( +/obj/random/dirt_75, +/obj/random/dirt_75, +/obj/machinery/alarm/south, +/turf/simulated/floor/plating, +/area/quarantined_outpost/cafeteria/maintenance) +"gAT" = ( +/obj/item/hullbeacon/red, +/obj/structure/railing/mapped{ + dir = 4 + }, +/obj/structure/railing/mapped, +/turf/simulated/floor/plating/asteroid/airless, +/area/quarantined_outpost/exterior) +"gBM" = ( +/obj/effect/floor_decal/spline/plain/black{ + dir = 1 + }, +/obj/machinery/light/small/maybe_broken/decayed{ + dir = 1 + }, +/obj/random/dirt_75, +/obj/random/dirt_75, +/turf/simulated/floor/tiled/gunmetal, +/area/quarantined_outpost/north_east_hallway) +"gBS" = ( +/obj/structure/tank_wall/air{ + icon_state = "air7" + }, +/turf/simulated/floor/plating, +/area/quarantined_outpost/engineering/atmospherics) +"gBX" = ( +/obj/structure/cable{ + icon_state = "0-8" + }, +/obj/machinery/power/apc/empty/north, +/obj/random/dirt_75, +/turf/simulated/floor/plating, +/area/quarantined_outpost/dorm_hallway) +"gCF" = ( +/obj/effect/floor_decal/spline/plain/black{ + dir = 8 + }, +/obj/random/dirt_75, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 1 + }, +/obj/structure/table/standard/flipped, +/turf/simulated/floor/tiled/gunmetal, +/area/quarantined_outpost/north_east_hallway) +"gCQ" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/obj/vehicle/train/cargo/trolley/pussywagon{ + dir = 1 + }, +/turf/simulated/floor/tiled/dark/full, +/area/quarantined_outpost/dorm_hallway) +"gCY" = ( +/obj/effect/floor_decal/corner/dark_blue, +/obj/random/dirt_75, +/obj/random/dirt_75, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 1 + }, +/turf/simulated/floor/tiled/rust, +/area/quarantined_outpost/elevator_hallway) +"gDc" = ( +/obj/structure/table/reinforced/steel, +/obj/machinery/door/window/desk/northleft, +/turf/simulated/floor/tiled/full, +/area/quarantined_outpost/engineering/tunnel) +"gDi" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/obj/structure/closet, +/obj/random/loot, +/obj/random/dirt_75, +/turf/simulated/floor/plating, +/area/quarantined_outpost/north_east_hallway/maintenance) +"gEg" = ( +/obj/effect/floor_decal/corner_wide/paleblue{ + dir = 5 + }, +/obj/structure/table/standard, +/obj/item/paper_bin{ + pixel_y = 8; + pixel_x = 6 + }, +/turf/simulated/floor/tiled/airless, +/area/quarantined_outpost/security) +"gEw" = ( +/obj/structure/lattice/catwalk, +/obj/structure/sign/securearea{ + desc = "A warning sign which reads 'WARNING: EQUIPMENT RADIOACTIVE DURING OPERATION'."; + icon_state = "radiation"; + name = "WARNING: EQUIPMENT RADIOACTIVE DURING OPERATION sign"; + pixel_x = 32 + }, +/obj/effect/decal/rolling_fog, +/turf/simulated/floor/plating, +/area/quarantined_outpost/research) +"gFI" = ( +/obj/structure/platform{ + dir = 1 + }, +/obj/random/dirt_75, +/turf/simulated/floor/tiled/ridged, +/area/quarantined_outpost/extraction_lab) +"gFO" = ( +/obj/effect/floor_decal/corner_wide/paleblue{ + dir = 5 + }, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 8 + }, +/obj/effect/landmark/trapped_vent/maybe/quarantined_outpost, +/turf/simulated/floor/tiled, +/area/quarantined_outpost/security) +"gFZ" = ( +/obj/effect/floor_decal/corner/brown/full, +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/structure/dispenser/oxygen, +/turf/simulated/floor/tiled/dark, +/area/quarantined_outpost/cargo_bay) +"gGl" = ( +/obj/random/dirt_75, +/obj/effect/decal/cleanable/floor_damage/random_broken, +/turf/simulated/floor/tiled/airless, +/area/quarantined_outpost/security) +"gGX" = ( +/obj/structure/table/standard, +/obj/random/survival_weapon, +/turf/simulated/floor/tiled/dark/full, +/area/quarantined_outpost/elevator_hallway) +"gHi" = ( +/obj/structure/platform/ledge, +/obj/structure/platform/ledge{ + dir = 8 + }, +/obj/structure/platform_deco/ledge{ + dir = 9 + }, +/turf/simulated/floor/plating, +/area/quarantined_outpost/cargo_bay) +"gHm" = ( +/obj/structure/table/reinforced/steel, +/obj/item/storage/box/fancy/vials{ + pixel_y = 4 + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/machinery/door/window/desk/southright, +/obj/effect/floor_decal/industrial/hatch/yellow, +/turf/simulated/floor/tiled/bitile{ + dir = 4 + }, +/area/quarantined_outpost/research) +"gIb" = ( +/obj/structure/bed/stool/chair/office/light{ + dir = 8 + }, +/obj/effect/floor_decal/corner/mauve/diagonal, +/turf/simulated/floor/tiled/white, +/area/quarantined_outpost/extraction_lab) +"gIB" = ( +/obj/structure/lattice/catwalk/indoor/grate/light, +/turf/simulated/floor/plating, +/area/quarantined_outpost/research) +"gIC" = ( +/obj/structure/lattice/catwalk, +/obj/structure/railing/mapped{ + dir = 8 + }, +/turf/simulated/floor/exoplanet/abyss, +/area/quarantined_outpost/chasm) +"gIP" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 4 + }, +/obj/machinery/floodlight/randomcharge, +/turf/simulated/floor/tiled/white, +/area/quarantined_outpost/medbay) +"gJe" = ( +/obj/structure/punching_bag{ + pixel_y = 12 + }, +/obj/effect/floor_decal/corner/dark_green{ + dir = 5 + }, +/obj/structure/sign/flag/sol/old/large/north{ + pixel_y = 32 + }, +/turf/simulated/floor/tiled, +/area/quarantined_outpost/gym) +"gJH" = ( +/obj/structure/bed/stool/padded/red{ + dir = 8 + }, +/obj/effect/floor_decal/corner/dark_green{ + dir = 6 + }, +/turf/simulated/floor/tiled, +/area/quarantined_outpost/gym) +"gJJ" = ( +/obj/random/dirt_75, +/obj/effect/floor_decal/industrial/outline/security, +/turf/simulated/floor/tiled/dark/full, +/area/quarantined_outpost/research) +"gKi" = ( +/obj/effect/floor_decal/corner/dark_blue{ + dir = 10 + }, +/obj/effect/decal/cleanable/floor_damage/rust, +/obj/random/dirt_75, +/turf/simulated/floor/tiled/dark, +/area/quarantined_outpost/research) +"gKn" = ( +/obj/random/dirt_75, +/obj/effect/decal/rolling_fog, +/turf/simulated/floor/tiled/dark, +/area/quarantined_outpost/research) +"gKv" = ( +/obj/effect/floor_decal/corner/dark_blue{ + dir = 10 + }, +/obj/random/dirt_75, +/obj/effect/landmark/quarantined_outpost/creature, +/turf/simulated/floor/tiled, +/area/quarantined_outpost/dorm_hallway) +"gKP" = ( +/obj/effect/floor_decal/corner/dark_blue{ + dir = 6 + }, +/turf/simulated/floor/tiled, +/area/quarantined_outpost/cafeteria) +"gLX" = ( +/obj/structure/bed/stool/chair/office/dark, +/obj/random/dirt_75, +/turf/simulated/floor/tiled/airless, +/area/quarantined_outpost/security) +"gMf" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/universal, +/obj/effect/floor_decal/corner/yellow, +/obj/effect/floor_decal/corner/dark_blue{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "2-8" + }, +/obj/machinery/light/small/maybe_broken/decayed{ + dir = 4 + }, +/turf/simulated/floor/tiled/gunmetal, +/area/quarantined_outpost/engineering/atmospherics) +"gMh" = ( +/obj/effect/floor_decal/corner/lime{ + dir = 4 + }, +/obj/structure/bed/stool/chair/folding{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/quarantined_outpost/cafeteria) +"gMi" = ( +/obj/effect/floor_decal/corner/dark_blue, +/obj/effect/floor_decal/corner/yellow{ + dir = 4 + }, +/obj/machinery/power/emitter{ + dir = 4 + }, +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/machinery/light/small/maybe_broken/decayed{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/quarantined_outpost/engineering/atmospherics) +"gMB" = ( +/turf/simulated/wall/shuttle/scc_space_ship, +/area/quarantined_outpost/cargo_bay) +"gNu" = ( +/obj/structure/tank_wall/air{ + icon_state = "air16" + }, +/obj/effect/floor_decal/industrial/warning, +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 10 + }, +/turf/simulated/floor/plating, +/area/quarantined_outpost/engineering/atmospherics) +"gNA" = ( +/obj/structure/lattice/catwalk/indoor/grate/dark, +/obj/machinery/alarm/north, +/turf/simulated/floor/plating, +/area/quarantined_outpost/elevator_hallway/maintenance) +"gNH" = ( +/obj/structure/lattice/catwalk/indoor, +/turf/simulated/floor/plating, +/area/quarantined_outpost/engineering/atmospherics) +"gNT" = ( +/obj/effect/floor_decal/industrial/outline_door/custodial, +/obj/effect/floor_decal/industrial/outline_segment/research{ + dir = 4 + }, +/obj/effect/floor_decal/industrial/outline_segment/research{ + dir = 10 + }, +/obj/random/dirt_75, +/obj/random/dirt_75, +/turf/simulated/floor/tiled/light, +/area/quarantined_outpost/research) +"gOK" = ( +/obj/effect/floor_decal/corner/dark_blue{ + dir = 5 + }, +/obj/random/dirt_75, +/obj/structure/sign/flag/sol/old/large/north{ + pixel_y = 32 + }, +/turf/simulated/floor/tiled, +/area/quarantined_outpost/reception) +"gOR" = ( +/obj/effect/floor_decal/corner/dark_blue{ + dir = 10 + }, +/obj/structure/bed/stool/chair{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/quarantined_outpost/north_east_hallway) +"gOT" = ( +/obj/random/dirt_75, +/obj/random/dirt_75, +/obj/structure/lattice/catwalk/indoor/grate/dark, +/turf/simulated/floor/plating, +/area/quarantined_outpost/engineering) +"gOY" = ( +/turf/simulated/wall/r_wall, +/area/quarantined_outpost/engineering/winch_room) +"gPg" = ( +/obj/structure/lattice/catwalk/indoor/grate/dark, +/obj/abstract/footprint_spawner/body{ + dir = 8 + }, +/obj/abstract/footprint_spawner_turn_helper{ + dir = 1 + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/cable{ + icon_state = "1-4" + }, +/turf/simulated/floor/plating, +/area/quarantined_outpost/engineering) +"gPk" = ( +/obj/effect/floor_decal/corner/dark_blue, +/obj/random/dirt_75, +/obj/structure/cable{ + icon_state = "1-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/turf/simulated/floor/tiled, +/area/quarantined_outpost/elevator_hallway) +"gPo" = ( +/obj/structure/lattice/catwalk/indoor/grate/old, +/obj/random/dirt_75, +/obj/structure/cable{ + 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/quarantined_outpost/elevator_hallway) +"gPr" = ( +/obj/effect/floor_decal/spline/plain/black, +/obj/structure/railing/mapped, +/obj/random/dirt_75, +/obj/random/dirt_75, +/obj/abstract/footprint_spawner{ + dir = 8 + }, +/turf/simulated/floor/tiled/gunmetal, +/area/quarantined_outpost/engineering/tunnel) +"gPE" = ( +/obj/effect/floor_decal/corner/mauve/diagonal, +/obj/random/dirt_75, +/turf/simulated/floor/tiled/white, +/area/quarantined_outpost/extraction_lab) +"gPH" = ( +/obj/effect/floor_decal/corner/dark_blue{ + dir = 4 + }, +/obj/item/material/stool/chair{ + pixel_y = -8; + pixel_x = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/quarantined_outpost/dorm_hallway) +"gQz" = ( +/obj/effect/floor_decal/corner/yellow{ + dir = 8 + }, +/obj/random/dirt_75, +/obj/machinery/power/apc/west, +/obj/structure/cable/orange{ + icon_state = "0-4" + }, +/obj/structure/bed/stool/chair, +/turf/simulated/floor/tiled/dark/airless, +/area/quarantined_outpost/auxiliary_power) +"gQA" = ( +/obj/effect/gibspawner/human, +/obj/random/dirt_75, +/turf/simulated/floor/tiled/dark/full, +/area/quarantined_outpost/reception) +"gQO" = ( +/obj/effect/floor_decal/industrial/outline/medical, +/obj/structure/closet/secure_closet/personal, +/obj/machinery/light/small/maybe_broken/decayed{ + dir = 4 + }, +/obj/random/dirt_75, +/turf/simulated/floor/tiled/full, +/area/quarantined_outpost/medbay) +"gQU" = ( +/obj/machinery/atmospherics/portables_connector{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/quarantined_outpost/engineering/atmospherics) +"gQZ" = ( +/obj/effect/floor_decal/corner/yellow{ + dir = 9 + }, +/obj/structure/bed/stool/chair{ + dir = 4 + }, +/obj/random/dirt_75, +/turf/simulated/floor/tiled/gunmetal, +/area/quarantined_outpost/engineering/tunnel) +"gRW" = ( +/obj/random/dirt_75, +/turf/simulated/floor/tiled/full, +/area/quarantined_outpost/cafeteria) +"gSa" = ( +/obj/effect/floor_decal/corner/dark_blue{ + dir = 5 + }, +/obj/machinery/light/maybe_broken/decayed{ + dir = 1 + }, +/obj/random/dirt_75, +/obj/machinery/atmospherics/unary/vent_scrubber/on, +/turf/simulated/floor/tiled, +/area/quarantined_outpost/elevator_hallway) +"gSe" = ( +/obj/effect/floor_decal/corner/purple, +/obj/structure/railing/mapped, +/obj/machinery/button/remote/blast_door{ + dir = 4; + id = "quarantined_outpost_janitor"; + name = "Custodial Garage Shutters"; + pixel_y = 3; + pixel_x = 22 + }, +/turf/simulated/floor/tiled, +/area/quarantined_outpost/dorm_hallway) +"gSx" = ( +/obj/structure/tank_wall/air{ + icon_state = "air2" + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/turf/simulated/floor/plating, +/area/quarantined_outpost/engineering/atmospherics) +"gSY" = ( +/obj/effect/floor_decal/corner_wide/paleblue, +/obj/random/dirt_75, +/obj/random/dirt_75, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 1 + }, +/turf/simulated/floor/tiled/airless, +/area/quarantined_outpost/security) +"gTf" = ( +/obj/effect/floor_decal/corner_wide/lime{ + dir = 5 + }, +/obj/effect/decal/cleanable/blood, +/obj/machinery/light/small/maybe_broken/decayed{ + dir = 1 + }, +/obj/random/dirt_75, +/turf/simulated/floor/tiled/white, +/area/quarantined_outpost/medbay) +"gTs" = ( +/obj/structure/table/standard, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/item/paper_bin{ + pixel_y = -1; + pixel_x = -3 + }, +/obj/effect/floor_decal/corner_wide/paleblue{ + dir = 10 + }, +/obj/item/pen, +/obj/random/dirt_75, +/turf/simulated/floor/tiled/airless, +/area/quarantined_outpost/security) +"gTt" = ( +/obj/structure/bed/stool/chair/folding{ + dir = 1 + }, +/obj/effect/decal/cleanable/floor_damage/rust, +/obj/effect/floor_decal/spline/plain/lime{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/quarantined_outpost/medbay) +"gTw" = ( +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/random/dirt_75, +/obj/structure/table/standard, +/turf/simulated/floor/tiled/dark/full, +/area/quarantined_outpost/cargo_bay) +"gTL" = ( +/obj/effect/floor_decal/spline/plain/corner/black{ + dir = 4 + }, +/obj/random/dirt_75, +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/gunmetal, +/area/quarantined_outpost/north_east_hallway) +"gTR" = ( +/obj/structure/railing/mapped{ + dir = 8 + }, +/obj/structure/railing/mapped, +/turf/simulated/floor/tiled, +/area/quarantined_outpost/cargo_bay) +"gTW" = ( +/obj/structure/lattice/catwalk/indoor/grate/dark, +/obj/structure/cable{ + icon_state = "1-4" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/turf/simulated/floor/plating, +/area/quarantined_outpost/engineering/tunnel) +"gUi" = ( +/obj/effect/decal/rolling_fog, +/obj/effect/floor_decal/industrial/outline_straight/yellow{ + dir = 1 + }, +/turf/simulated/floor/tiled/dark, +/area/quarantined_outpost/research) +"gUs" = ( +/obj/structure/lattice/catwalk/indoor/grate, +/turf/simulated/floor/plating, +/area/quarantined_outpost/cafeteria) +"gUw" = ( +/obj/effect/floor_decal/spline/plain/black{ + dir = 1 + }, +/obj/structure/dispenser/oxygen, +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/random/dirt_75, +/turf/simulated/floor/tiled/dark/full/airless, +/area/quarantined_outpost/entrance_lobby) +"gUN" = ( +/obj/effect/floor_decal/corner_wide/lime{ + dir = 9 + }, +/obj/effect/floor_decal/industrial/outline/red, +/obj/machinery/iv_drip, +/obj/structure/dressing_divider/hospital{ + pixel_y = -14; + dir = 1 + }, +/turf/simulated/floor/tiled/white, +/area/quarantined_outpost/medbay) +"gVo" = ( +/turf/simulated/floor/tiled/ramp{ + dir = 1 + }, +/area/quarantined_outpost/research) +"gVA" = ( +/obj/effect/map_effect/window_spawner/full/reinforced/firedoor, +/turf/simulated/floor/tiled/dark/full, +/area/quarantined_outpost/engineering/winch_room) +"gWD" = ( +/obj/structure/lattice/catwalk/indoor/grate/dark, +/turf/simulated/floor/plating, +/area/quarantined_outpost/research) +"gXh" = ( +/turf/simulated/floor/carpet/rubber, +/area/quarantined_outpost/gym) +"gXF" = ( +/obj/effect/floor_decal/industrial/warning, +/obj/effect/decal/cleanable/cobweb2, +/turf/simulated/floor/plating, +/area/quarantined_outpost/research) +"gXO" = ( +/obj/structure/table/standard, +/obj/effect/floor_decal/corner/mauve{ + dir = 5 + }, +/turf/simulated/floor/tiled/light, +/area/quarantined_outpost/research) +"gXS" = ( +/obj/structure/grille, +/turf/simulated/floor/plating, +/area/quarantined_outpost/cafeteria/maintenance) +"gYc" = ( +/obj/effect/floor_decal/corner/dark_green/diagonal, +/obj/random/dirt_75, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/random/maintenance_junk_or_loot, +/turf/simulated/floor/tiled, +/area/quarantined_outpost/gym) +"gYj" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/red{ + dir = 1 + }, +/obj/random/dirt_75, +/turf/simulated/floor/tiled/dark, +/area/quarantined_outpost/engineering/atmospherics) +"gYv" = ( +/obj/machinery/mining/drill, +/turf/simulated/floor/tiled/dark, +/area/quarantined_outpost/engineering/atmospherics) +"gZb" = ( +/obj/structure/lattice/catwalk/indoor/grate/old, +/turf/simulated/floor/plating, +/area/quarantined_outpost/elevator_hallway) +"gZo" = ( +/obj/structure/railing/mapped{ + dir = 4 + }, +/obj/machinery/recharger/wallcharger{ + pixel_x = 5; + pixel_y = 26 + }, +/obj/machinery/recharger/wallcharger{ + pixel_x = 5; + pixel_y = 36 + }, +/obj/random/dirt_75, +/obj/random/dirt_75, +/turf/simulated/floor/tiled/dark/full/airless, +/area/quarantined_outpost/security) +"gZu" = ( +/turf/simulated/wall, +/area/quarantined_outpost/exterior) +"gZE" = ( +/obj/machinery/door/firedoor{ + dir = 4 + }, +/obj/machinery/door/airlock/maintenance_hatch{ + dir = 4 + }, +/obj/effect/floor_decal/industrial/hatch_door/yellow, +/turf/simulated/floor/tiled/dark/full, +/area/quarantined_outpost/engineering/winch_room) +"had" = ( +/obj/structure/lattice/catwalk/indoor/grate, +/obj/structure/cable{ + 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/plating, +/area/quarantined_outpost/dorm_hallway) +"haw" = ( +/obj/structure/platform{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled/ridged, +/area/quarantined_outpost/extraction_lab) +"hbR" = ( +/obj/effect/floor_decal/corner/green/diagonal, +/obj/machinery/washing_machine, +/obj/effect/floor_decal/industrial/outline, +/turf/simulated/floor/tiled/white, +/area/quarantined_outpost/dorm_hallway) +"hbY" = ( +/turf/simulated/floor/tiled/gunmetal, +/area/quarantined_outpost/engineering) +"hcR" = ( +/obj/effect/floor_decal/spline/plain/black{ + dir = 4 + }, +/obj/structure/railing/mapped{ + dir = 4 + }, +/obj/random/dirt_75, +/obj/effect/floor_decal/industrial/outline/red, +/obj/machinery/computer/terminal/mob_tracker/quarantined_outpost{ + dir = 8 + }, +/turf/simulated/floor/tiled/white, +/area/quarantined_outpost/extraction_lab) +"hdl" = ( +/obj/effect/decal/cleanable/molten_item, +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/obj/effect/decal/cleanable/floor_damage/random_broken, +/obj/effect/decal/cleanable/floor_damage/random_burned, +/turf/simulated/floor/plating, +/area/quarantined_outpost/research/containment) +"hdr" = ( +/obj/effect/decal/cleanable/blood, +/obj/random/dirt_75, +/turf/simulated/floor/tiled/dark/full, +/area/quarantined_outpost/reception) +"hdE" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/random/dirt_75, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled/gunmetal/full, +/area/quarantined_outpost/engineering/tunnel) +"hdO" = ( +/turf/simulated/wall/r_wall, +/area/quarantined_outpost/reception) +"hdR" = ( +/obj/effect/floor_decal/corner/dark_blue{ + dir = 5 + }, +/obj/structure/reagent_dispensers/water_cooler{ + pixel_y = 20 + }, +/obj/random/dirt_75, +/turf/simulated/floor/tiled, +/area/quarantined_outpost/reception) +"hex" = ( +/obj/effect/decal/cleanable/blood, +/obj/random/dirt_75, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 1 + }, +/turf/simulated/floor/tiled/full/airless, +/area/quarantined_outpost/security) +"hfy" = ( +/obj/random/dirt_75, +/obj/random/dirt_75, +/obj/random/dirt_75, +/turf/simulated/floor/exoplanet/asteroid/ash/rocky, +/area/quarantined_outpost/exterior) +"hfF" = ( +/obj/structure/railing/mapped{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "2-8" + }, +/turf/simulated/floor/tiled, +/area/quarantined_outpost/entrance_lobby) +"hgz" = ( +/obj/structure/table/standard/flipped, +/obj/effect/floor_decal/corner/lime/full, +/obj/random/dirt_75, +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/simulated/floor/tiled, +/area/quarantined_outpost/cafeteria) +"hgD" = ( +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 1 + }, +/obj/machinery/light/small/emergency, +/turf/simulated/floor/plating, +/area/quarantined_outpost/gym) +"hgN" = ( +/obj/effect/floor_decal/industrial/hatch_door/yellow{ + dir = 1 + }, +/obj/machinery/door/airlock/generic{ + name = "Washroom" + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 1 + }, +/obj/machinery/door/firedoor/noid/closed, +/turf/simulated/floor/tiled/full, +/area/quarantined_outpost/dorm_hallway) +"hgP" = ( +/obj/effect/floor_decal/corner/dark_blue/full{ + dir = 1 + }, +/obj/structure/table/rack/retail_shelf, +/obj/random/loot{ + pixel_y = -5; + pixel_x = -2 + }, +/obj/random/loot{ + pixel_y = 10; + pixel_x = 1 + }, +/turf/simulated/floor/tiled/dark, +/area/quarantined_outpost/north_east_hallway) +"hgR" = ( +/obj/effect/floor_decal/spline/plain/corner/black{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, +/turf/simulated/floor/tiled/gunmetal, +/area/quarantined_outpost/north_east_hallway) +"hhg" = ( +/obj/structure/lattice/catwalk, +/obj/structure/platform/dark{ + dir = 8 + }, +/obj/structure/platform/dark{ + dir = 1 + }, +/obj/structure/platform_deco/dark{ + dir = 6 + }, +/obj/structure/closet/crate/miningcart, +/obj/random/junk, +/turf/simulated/floor/plating, +/area/quarantined_outpost/engineering/winch_room) +"hhz" = ( +/obj/structure/lattice/catwalk/indoor/grate/dark, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/quarantined_outpost/engineering/atmospherics) +"hhG" = ( +/obj/random/dirt_75, +/turf/simulated/floor/tiled/full, +/area/quarantined_outpost/elevator_hallway) +"hhH" = ( +/obj/effect/floor_decal/spline/plain/grey{ + dir = 8 + }, +/obj/random/dirt_75, +/turf/simulated/floor/tiled/white, +/area/quarantined_outpost/gym) +"hhL" = ( +/obj/effect/floor_decal/corner/yellow{ + dir = 8 + }, +/obj/effect/floor_decal/corner/dark_blue, +/obj/random/dirt_75, +/obj/random/dirt_75, +/obj/structure/sign/nosmoking_1{ + pixel_y = -32 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/dark, +/area/quarantined_outpost/engineering/atmospherics) +"hhZ" = ( +/obj/effect/floor_decal/corner_wide/lime/diagonal, +/obj/random/dirt_75, +/obj/structure/cable{ + icon_state = "1-4" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/turf/simulated/floor/tiled/white, +/area/quarantined_outpost/medbay) +"hic" = ( +/obj/machinery/mineral/stacking_machine{ + dir = 8 + }, +/obj/effect/floor_decal/industrial/warning/full, +/obj/structure/railing/mapped, +/turf/simulated/floor/tiled/dark/full, +/area/quarantined_outpost/cargo_bay) +"his" = ( +/obj/structure/plasticflaps, +/obj/machinery/conveyor{ + dir = 1 + }, +/obj/machinery/door/firedoor{ + dir = 1 + }, +/turf/simulated/floor/tiled/dark/full, +/area/quarantined_outpost/cargo_bay) +"hiB" = ( +/obj/structure/lattice/catwalk, +/obj/machinery/light/small/emergency{ + dir = 8 + }, +/turf/simulated/floor/exoplanet/basalt, +/area/quarantined_outpost/engineering/tunnel) +"hiQ" = ( +/obj/effect/floor_decal/corner/dark_blue{ + dir = 5 + }, +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/structure/closet/secure_closet/guncabinet, +/turf/simulated/floor/tiled/dark, +/area/quarantined_outpost/research/containment) +"hkq" = ( +/obj/effect/floor_decal/corner/brown{ + dir = 5 + }, +/obj/random/dirt_75, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/quarantined_outpost/elevator_hallway) +"hkv" = ( +/obj/effect/floor_decal/corner_wide/lime{ + dir = 5 + }, +/obj/effect/floor_decal/corner_wide/lime, +/obj/machinery/light/maybe_broken/decayed{ + dir = 1 + }, +/turf/simulated/floor/tiled/white, +/area/quarantined_outpost/medbay) +"hkx" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold4w/hidden, +/obj/structure/tank_wall/hydrogen{ + icon_state = "h9" + }, +/turf/simulated/floor/plating, +/area/quarantined_outpost/engineering/atmospherics) +"hkN" = ( +/turf/simulated/floor/tiled/dark/full/airless, +/area/quarantined_outpost/security) +"hlp" = ( +/obj/random/dirt_75, +/obj/random/dirt_75, +/turf/simulated/floor/tiled, +/area/quarantined_outpost/dorm_hallway) +"hlK" = ( +/obj/effect/floor_decal/corner/dark_blue{ + dir = 8 + }, +/obj/random/dirt_75, +/turf/simulated/floor/tiled/rust, +/area/quarantined_outpost/dorm_hallway) +"hmg" = ( +/obj/machinery/door/airlock/maintenance_hatch, +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/simulated/floor/plating, +/area/quarantined_outpost/cafeteria/maintenance) +"hmt" = ( +/obj/effect/floor_decal/spline/plain/black{ + dir = 10 + }, +/obj/structure/trash_pile, +/obj/random/dirt_75, +/obj/random/dirt_75, +/turf/simulated/floor/tiled/white, +/area/quarantined_outpost/extraction_lab) +"hmJ" = ( +/obj/effect/floor_decal/corner/brown{ + dir = 4 + }, +/obj/structure/railing/mapped{ + dir = 8 + }, +/obj/random/dirt_75, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/quarantined_outpost/cargo_bay) +"hnb" = ( +/obj/structure/tank_wall/hydrogen{ + density = 0; + icon_state = "h5"; + opacity = 0 + }, +/obj/machinery/atmospherics/portables_connector{ + dir = 8 + }, +/obj/machinery/portable_atmospherics/canister/hydrogen, +/turf/simulated/floor/reinforced, +/area/quarantined_outpost/engineering/atmospherics) +"hnj" = ( +/obj/structure/lattice/catwalk/indoor/grate/dark, +/obj/structure/cable{ + icon_state = "1-4" + }, +/turf/simulated/floor/plating, +/area/quarantined_outpost/cargo_bay) +"hnw" = ( +/obj/effect/floor_decal/corner/black{ + dir = 9 + }, +/obj/structure/bed/stool/chair/folding{ + dir = 4 + }, +/obj/random/dirt_75, +/turf/simulated/floor/tiled, +/area/quarantined_outpost/dorm_hallway) +"hnC" = ( +/obj/structure/sink/kitchen{ + name = "water fountain"; + dir = 8; + pixel_x = 21 + }, +/obj/effect/floor_decal/corner_wide/lime/diagonal, +/turf/simulated/floor/tiled/white, +/area/quarantined_outpost/medbay) +"hnE" = ( +/obj/effect/floor_decal/corner_wide/paleblue{ + dir = 8 + }, +/obj/item/ammo_casing/shotgun/used, +/obj/random/dirt_75, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled/airless, +/area/quarantined_outpost/security) +"hoo" = ( +/obj/effect/floor_decal/industrial/outline/service, +/obj/random/dirt_75, +/turf/simulated/floor/tiled/dark/full, +/area/quarantined_outpost/cafeteria) +"hoq" = ( +/obj/structure/lattice, +/obj/structure/table/standard/flipped{ + dir = 1 + }, +/obj/abstract/footprint_spawner/body{ + dir = 8 + }, +/obj/abstract/footprint_spawner_turn_helper, +/turf/simulated/floor/plating, +/area/quarantined_outpost/dorm_hallway) +"hoN" = ( +/obj/structure/lattice, +/obj/structure/cable, +/turf/simulated/floor/exoplanet/abyss, +/area/quarantined_outpost/engineering) +"hoP" = ( +/obj/effect/decal/cleanable/floor_damage/rust, +/turf/simulated/floor/tiled/light, +/area/quarantined_outpost/research) +"hoY" = ( +/obj/effect/floor_decal/corner_wide/lime/full{ + dir = 4 + }, +/obj/structure/bed/stool/chair{ + dir = 4 + }, +/obj/random/dirt_75, +/turf/simulated/floor/tiled/white, +/area/quarantined_outpost/medbay) +"hpN" = ( +/obj/machinery/door/firedoor{ + dir = 4 + }, +/obj/effect/floor_decal/industrial/hatch/yellow, +/obj/random/dirt_75, +/turf/simulated/floor/tiled/dark/full, +/area/quarantined_outpost/cargo_bay) +"hqg" = ( +/obj/structure/plasticflaps/airtight{ + dir = 4 + }, +/obj/machinery/door/firedoor{ + dir = 8 + }, +/obj/effect/floor_decal/industrial/hatch_door/yellow, +/obj/machinery/door/airlock/freezer{ + dir = 8; + name = "Kitchen Freezer" + }, +/obj/random/dirt_75, +/turf/simulated/floor/tiled/full, +/area/quarantined_outpost/cafeteria) +"hqw" = ( +/obj/structure/closet/crate/freezer, +/obj/effect/floor_decal/industrial/hatch/grey, +/turf/simulated/floor/tiled/freezer{ + name = "cooled tiles"; + temperature = 253.15 + }, +/area/quarantined_outpost/cafeteria) +"hqR" = ( +/obj/random/dirt_75, +/obj/structure/cable{ + icon_state = "1-4" + }, +/turf/simulated/floor/plating, +/area/quarantined_outpost/cafeteria/maintenance) +"hrb" = ( +/obj/structure/platform{ + dir = 4 + }, +/turf/simulated/floor/tiled/ridged, +/area/quarantined_outpost/extraction_lab) +"hrr" = ( +/obj/random/dirt_75, +/obj/effect/map_effect/marker/airlock/quarantined_outpost/entrance, +/obj/machinery/atmospherics/unary/vent_pump/high_volume, +/turf/simulated/floor/plating, +/area/quarantined_outpost/entrance_lobby) +"hrw" = ( +/obj/effect/floor_decal/corner/dark_blue{ + dir = 9 + }, +/obj/effect/floor_decal/industrial/outline_straight/yellow{ + dir = 4 + }, +/obj/random/dirt_75, +/obj/random/dirt_75, +/obj/effect/decal/cleanable/floor_damage/rust, +/turf/simulated/floor/tiled/gunmetal, +/area/quarantined_outpost/server_relay/north_west) +"hsz" = ( +/obj/structure/platform/dark{ + dir = 4 + }, +/obj/structure/structural_support, +/obj/effect/decal/cleanable/floor_damage/rust, +/obj/effect/decal/rolling_fog, +/turf/simulated/floor/plating, +/area/quarantined_outpost/research) +"hsA" = ( +/obj/effect/floor_decal/corner/dark_blue/full{ + dir = 8 + }, +/obj/structure/closet/secure_closet/guncabinet, +/obj/item/gun/projectile/pistol/sol, +/obj/item/gun/projectile/pistol/sol, +/obj/effect/floor_decal/industrial/outline/red, +/turf/simulated/floor/tiled/dark, +/area/quarantined_outpost/north_east_hallway) +"hsJ" = ( +/obj/effect/floor_decal/corner/dark_blue/full{ + dir = 4 + }, +/turf/simulated/floor/tiled/rust, +/area/quarantined_outpost/dorm_hallway) +"htA" = ( +/obj/effect/floor_decal/corner/red/full{ + dir = 8 + }, +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/structure/closet/hazmat/general, +/turf/simulated/floor/tiled/dark, +/area/quarantined_outpost/research) +"htO" = ( +/obj/effect/floor_decal/industrial/outline_door/operations{ + dir = 8 + }, +/obj/random/dirt_75, +/obj/effect/decal/cleanable/floor_damage/rust, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/quarantined_outpost/cargo_bay) +"hux" = ( +/obj/effect/floor_decal/industrial/hatch/yellow, +/obj/machinery/door/firedoor{ + dir = 4 + }, +/obj/random/dirt_75, +/turf/simulated/floor/tiled/dark/full, +/area/quarantined_outpost/engineering/atmospherics) +"huC" = ( +/obj/structure/platform_stairs/full/south_north_cap{ + dir = 1 + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 1 + }, +/turf/simulated/floor/tiled/white, +/area/quarantined_outpost/medbay) +"hvv" = ( +/obj/random/dirt_75, +/obj/effect/decal/cleanable/floor_damage/rust, +/obj/structure/cable{ + 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/full, +/area/quarantined_outpost/cargo_bay) +"hvN" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled/dark/full, +/area/quarantined_outpost/engineering/winch_room) +"hwB" = ( +/obj/effect/floor_decal/corner/yellow, +/obj/random/dirt_75, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/effect/decal/cleanable/floor_damage/rust, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled/gunmetal, +/area/quarantined_outpost/engineering/tunnel) +"hwM" = ( +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/table/standard/flipped, +/obj/effect/floor_decal/industrial/outline_straight/custodial{ + dir = 8 + }, +/turf/simulated/floor/tiled/light, +/area/quarantined_outpost/research) +"hwO" = ( +/obj/effect/floor_decal/corner/dark_blue{ + dir = 9 + }, +/obj/abstract/footprint_spawner{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/quarantined_outpost/north_east_hallway) +"hwR" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 8 + }, +/obj/effect/decal/cleanable/floor_damage/rust, +/obj/random/dirt_75, +/turf/simulated/floor/tiled/dark, +/area/quarantined_outpost/research) +"hxf" = ( +/obj/effect/decal/cleanable/floor_damage/rust, +/turf/simulated/floor/tiled/dark, +/area/quarantined_outpost/engineering/atmospherics) +"hxS" = ( +/obj/effect/floor_decal/corner/dark_blue{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/quarantined_outpost/dorm_hallway) +"hyb" = ( +/obj/structure/railing/mapped{ + dir = 8 + }, +/obj/structure/railing/mapped, +/obj/effect/floor_decal/corner/brown{ + dir = 9 + }, +/turf/simulated/floor/tiled, +/area/quarantined_outpost/cargo_bay) +"hyA" = ( +/obj/structure/platform_stairs/full{ + dir = 1 + }, +/obj/structure/lattice/catwalk/indoor, +/obj/machinery/atmospherics/pipe/simple/hidden/fuel, +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/simulated/floor/plating, +/area/quarantined_outpost/engineering/atmospherics) +"hyN" = ( +/obj/structure/railing/mapped{ + dir = 4 + }, +/turf/simulated/floor/exoplanet/asteroid/ash/rocky, +/area/quarantined_outpost/exterior) +"hyS" = ( +/obj/structure/platform/dark{ + dir = 8 + }, +/obj/structure/structural_support, +/obj/random/dirt_75, +/obj/effect/decal/rolling_fog, +/turf/simulated/floor/plating, +/area/quarantined_outpost/research) +"hzr" = ( +/obj/effect/floor_decal/spline/plain/black{ + dir = 8 + }, +/obj/structure/table/wood, +/obj/item/flora/pottedplant_small/dead{ + pixel_x = -8; + pixel_y = 11 + }, +/obj/machinery/power/outlet, +/obj/item/toy/comic/inspector, +/obj/random/dirt_75, +/turf/simulated/floor/lino, +/area/quarantined_outpost/reception) +"hBl" = ( +/obj/structure/railing/mapped, +/obj/random/dirt_75, +/obj/random/dirt_75, +/turf/simulated/floor/tiled/white, +/area/quarantined_outpost/extraction_lab) +"hBo" = ( +/obj/machinery/light/small/floor/emergency, +/obj/effect/floor_decal/spline/plain/corner/black{ + dir = 4 + }, +/obj/effect/floor_decal/spline/plain/corner/black{ + dir = 8 + }, +/obj/effect/decal/cleanable/floor_damage/rust, +/obj/machinery/atmospherics/pipe/simple/hidden/yellow{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled/ridged, +/area/quarantined_outpost/extraction_lab) +"hBp" = ( +/obj/effect/floor_decal/spline/plain/black{ + dir = 8 + }, +/obj/effect/decal/cleanable/floor_damage/rust, +/obj/effect/landmark/quarantined_outpost/creature, +/turf/simulated/floor/tiled/gunmetal, +/area/quarantined_outpost/engineering/tunnel) +"hBB" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/random/dirt_75, +/obj/effect/decal/cleanable/floor_damage/rust, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled/gunmetal, +/area/quarantined_outpost/engineering/tunnel) +"hBK" = ( +/obj/structure/bed/stool/chair, +/obj/effect/floor_decal/corner_wide/lime{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/quarantined_outpost/medbay) +"hBT" = ( +/obj/structure/table/standard, +/obj/effect/floor_decal/corner_wide/paleblue{ + dir = 9 + }, +/obj/item/trash/snack_bowl{ + pixel_y = 6; + pixel_x = -5 + }, +/obj/random/dirt_75, +/turf/simulated/floor/tiled/airless, +/area/quarantined_outpost/security) +"hCa" = ( +/obj/structure/platform_deco{ + dir = 1 + }, +/turf/simulated/floor/exoplanet/basalt, +/area/quarantined_outpost/north_east_hallway) +"hCB" = ( +/obj/effect/floor_decal/spline/plain/black{ + dir = 1 + }, +/obj/machinery/light/small/maybe_broken/decayed{ + dir = 1 + }, +/obj/random/dirt_75, +/obj/random/dirt_75, +/obj/effect/landmark/quarantined_outpost/creature, +/turf/simulated/floor/tiled/gunmetal, +/area/quarantined_outpost/north_east_hallway) +"hDO" = ( +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 1 + }, +/obj/structure/platform{ + dir = 1 + }, +/obj/structure/platform{ + dir = 8 + }, +/obj/structure/platform_deco{ + dir = 6 + }, +/turf/simulated/floor/reinforced, +/area/quarantined_outpost/extraction_lab) +"hEb" = ( +/obj/effect/floor_decal/corner/black{ + dir = 1 + }, +/obj/machinery/alarm/west, +/turf/simulated/floor/tiled/rust, +/area/quarantined_outpost/entrance_lobby) +"hEd" = ( +/obj/effect/floor_decal/corner/mauve{ + dir = 5 + }, +/obj/random/dirt_75, +/turf/simulated/floor/tiled/light, +/area/quarantined_outpost/research) +"hEI" = ( +/obj/machinery/light/floor/maybe_broken/decayed{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 1 + }, +/turf/simulated/floor/tiled/light/full, +/area/quarantined_outpost/research) +"hEQ" = ( +/obj/effect/floor_decal/corner/dark_blue{ + dir = 4 + }, +/obj/random/dirt_75, +/obj/effect/floor_decal/industrial/outline_door/yellow{ + dir = 8 + }, +/obj/effect/decal/cleanable/floor_damage/rust, +/obj/structure/cable{ + icon_state = "2-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 + }, +/turf/simulated/floor/tiled/gunmetal, +/area/quarantined_outpost/cafeteria) +"hEZ" = ( +/obj/machinery/door/airlock/generic{ + name = "Dormitory #37" + }, +/obj/machinery/door/firedoor, +/obj/effect/floor_decal/industrial/hatch_door/yellow{ + dir = 1 + }, +/obj/random/dirt_75, +/obj/random/dirt_75, +/turf/simulated/floor/tiled/full, +/area/quarantined_outpost/dorm_hallway) +"hFP" = ( +/obj/effect/floor_decal/industrial/outline_straight/yellow{ + dir = 4 + }, +/obj/random/dirt_75, +/obj/effect/decal/cleanable/floor_damage/rust, +/turf/simulated/floor/tiled/ridged, +/area/quarantined_outpost/server_relay/south_east) +"hFT" = ( +/obj/effect/floor_decal/corner_wide/paleblue/full{ + dir = 1 + }, +/obj/structure/closet/secure_closet/medical2, +/obj/effect/floor_decal/industrial/outline/red, +/obj/effect/decal/cleanable/cobweb2, +/turf/simulated/floor/tiled/white, +/area/quarantined_outpost/medbay) +"hGj" = ( +/obj/random/dirt_75, +/obj/structure/bed/stool/chair/office/dark{ + dir = 1 + }, +/obj/effect/floor_decal/corner/yellow/full{ + dir = 4 + }, +/turf/simulated/floor/tiled/gunmetal, +/area/quarantined_outpost/engineering) +"hGt" = ( +/obj/effect/floor_decal/corner/dark_blue{ + dir = 5 + }, +/obj/random/dirt_75, +/turf/simulated/floor/tiled/rust, +/area/quarantined_outpost/elevator_hallway) +"hGX" = ( +/obj/structure/table/standard/flipped, +/obj/random/dirt_75, +/turf/simulated/floor/tiled/light/full, +/area/quarantined_outpost/research) +"hHg" = ( +/obj/structure/platform_stairs/full/east_west_cap{ + dir = 8 + }, +/obj/structure/platform{ + dir = 1 + }, +/obj/structure/platform/cutout, +/turf/simulated/floor/tiled/ridged, +/area/quarantined_outpost/extraction_lab) +"hHl" = ( +/obj/effect/floor_decal/corner_wide/lime{ + dir = 10 + }, +/obj/structure/reagent_dispensers/water_cooler, +/obj/effect/decal/cleanable/floor_damage/rust, +/turf/simulated/floor/tiled/white, +/area/quarantined_outpost/medbay) +"hHw" = ( +/obj/effect/floor_decal/corner/brown{ + dir = 6 + }, +/obj/random/dirt_75, +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/rust, +/area/quarantined_outpost/elevator_hallway) +"hHS" = ( +/obj/effect/floor_decal/corner/dark_blue{ + dir = 8 + }, +/obj/item/material/stool/chair{ + dir = 1; + pixel_y = -6; + pixel_x = -7 + }, +/turf/simulated/floor/tiled, +/area/quarantined_outpost/reception) +"hHU" = ( +/obj/effect/decal/cleanable/floor_damage/random_wood_broken, +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 9 + }, +/obj/structure/flora/pottedplant/dead, +/turf/simulated/floor/wood, +/area/quarantined_outpost/dorm_hallway) +"hIf" = ( +/obj/effect/floor_decal/spline/plain/black{ + dir = 8 + }, +/obj/structure/railing/mapped{ + dir = 8 + }, +/obj/effect/floor_decal/concrete/gutter/corner{ + dir = 8 + }, +/obj/random/dirt_75, +/obj/abstract/footprint_spawner/oil, +/obj/effect/landmark/quarantined_outpost/creature, +/turf/simulated/floor/tiled/gunmetal, +/area/quarantined_outpost/engineering/tunnel) +"hIm" = ( +/obj/random/dirt_75, +/turf/simulated/floor/plating, +/area/quarantined_outpost/gym) +"hIn" = ( +/obj/effect/map_effect/window_spawner/full/borosilicate/reinforced, +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 4 + }, +/obj/machinery/door/blast/regular/open{ + id = "quarantined_outpost_combustion_viewing" + }, +/turf/simulated/floor/tiled/gunmetal/full, +/area/quarantined_outpost/engineering/atmospherics) +"hIq" = ( +/obj/structure/platform/dark{ + dir = 1 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/obj/effect/decal/rolling_fog, +/turf/simulated/floor/plating, +/area/quarantined_outpost/research) +"hIy" = ( +/obj/effect/floor_decal/industrial/warning, +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 9 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/obj/random/dirt_75, +/turf/simulated/floor/tiled, +/area/quarantined_outpost/medbay) +"hIC" = ( +/obj/machinery/mineral/unloading_machine, +/turf/simulated/floor/tiled/dark/full, +/area/quarantined_outpost/cargo_bay) +"hIM" = ( +/obj/random/dirt_75, +/turf/simulated/floor/tiled/airless, +/area/quarantined_outpost/security) +"hIX" = ( +/obj/structure/lattice/catwalk/indoor/grate/dark, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/plating, +/area/quarantined_outpost/engineering/winch_room) +"hIY" = ( +/obj/structure/lattice/catwalk/indoor/grate/damaged, +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 6 + }, +/turf/simulated/floor/plating, +/area/quarantined_outpost/cargo_bay) +"hJo" = ( +/obj/machinery/light/small/emergency{ + dir = 8 + }, +/turf/simulated/floor/exoplanet/abyss, +/area/quarantined_outpost/entrance_maintenance) +"hJC" = ( +/obj/random/dirt_75, +/obj/effect/floor_decal/corner/yellow, +/obj/structure/bed/stool/chair/folding{ + dir = 1 + }, +/turf/simulated/floor/tiled/gunmetal, +/area/quarantined_outpost/engineering) +"hJM" = ( +/obj/effect/floor_decal/spline/plain/black{ + dir = 8 + }, +/obj/random/dirt_75, +/obj/structure/railing/mapped{ + dir = 8 + }, +/obj/effect/decal/cleanable/floor_damage/rust, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 4 + }, +/turf/simulated/floor/tiled/gunmetal, +/area/quarantined_outpost/engineering/tunnel) +"hKw" = ( +/obj/effect/floor_decal/corner_wide/paleblue{ + dir = 9 + }, +/obj/random/dirt_75, +/obj/effect/decal/cleanable/floor_damage/random_broken, +/obj/machinery/alarm/south, +/turf/simulated/floor/tiled/airless, +/area/quarantined_outpost/security) +"hKL" = ( +/obj/structure/platform_stairs/full{ + dir = 1 + }, +/obj/structure/platform/dark{ + dir = 8 + }, +/obj/effect/decal/cleanable/floor_damage/rust, +/obj/effect/decal/rolling_fog, +/turf/simulated/floor/plating, +/area/quarantined_outpost/research) +"hLg" = ( +/obj/effect/floor_decal/corner/dark_blue/diagonal, +/obj/random/dirt_75, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark/airless, +/area/quarantined_outpost/security) +"hLk" = ( +/obj/effect/floor_decal/industrial/outline_door/custodial{ + dir = 4 + }, +/obj/random/dirt_75, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "2-4" + }, +/turf/simulated/floor/tiled/white, +/area/quarantined_outpost/extraction_lab) +"hLp" = ( +/obj/structure/table/reinforced/steel, +/obj/machinery/door/window/desk/westleft, +/obj/machinery/door/firedoor{ + dir = 4 + }, +/obj/structure/noticeboard{ + pixel_y = 32 + }, +/turf/simulated/floor/tiled/gunmetal/full, +/area/quarantined_outpost/engineering) +"hLt" = ( +/obj/random/dirt_75, +/obj/effect/floor_decal/corner_wide/paleblue{ + dir = 9 + }, +/obj/structure/inflatable/door, +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/airless, +/area/quarantined_outpost/security) +"hLC" = ( +/obj/effect/floor_decal/industrial/outline_door/medical{ + dir = 4 + }, +/obj/effect/floor_decal/industrial/outline_segment/medical{ + dir = 6 + }, +/obj/effect/floor_decal/industrial/outline_segment/medical{ + dir = 1 + }, +/obj/abstract/footprint_spawner/body{ + dir = 8 + }, +/obj/structure/cable{ + 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/quarantined_outpost/medbay) +"hLJ" = ( +/obj/effect/floor_decal/industrial/outline_door/operations{ + dir = 1 + }, +/obj/random/dirt_75, +/obj/effect/floor_decal/industrial/outline_segment/operations{ + dir = 8 + }, +/obj/effect/floor_decal/industrial/outline_segment/operations{ + dir = 5 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/abstract/footprint_spawner{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/quarantined_outpost/cargo_bay) +"hLL" = ( +/obj/effect/floor_decal/spline/plain/corner/black{ + dir = 4 + }, +/obj/random/dirt_75, +/obj/effect/decal/cleanable/floor_damage/rust, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 1 + }, +/turf/simulated/floor/tiled/gunmetal, +/area/quarantined_outpost/north_east_hallway) +"hMg" = ( +/obj/effect/floor_decal/corner/black{ + dir = 9 + }, +/obj/random/dirt_75, +/turf/simulated/floor/tiled, +/area/quarantined_outpost/dorm_hallway) +"hMH" = ( +/obj/random/dirt_75, +/obj/random/dirt_75, +/turf/simulated/floor/tiled, +/area/quarantined_outpost/entrance_maintenance) +"hMI" = ( +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 1 + }, +/obj/random/dirt_75, +/turf/simulated/floor/wood, +/area/quarantined_outpost/cargo_bay) +"hNl" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled/ramp, +/area/quarantined_outpost/engineering/winch_room) +"hOY" = ( +/obj/effect/floor_decal/corner/dark_green/diagonal, +/obj/random/dirt_75, +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/simulated/floor/tiled, +/area/quarantined_outpost/gym) +"hPp" = ( +/obj/effect/floor_decal/corner_wide/paleblue/full{ + dir = 1 + }, +/obj/random/dirt_75, +/turf/simulated/floor/tiled, +/area/quarantined_outpost/security) +"hPw" = ( +/obj/random/maintenance_junk_or_loot, +/turf/simulated/floor/plating, +/area/quarantined_outpost/elevator_hallway/maintenance) +"hPx" = ( +/obj/structure/platform_deco/dark{ + dir = 1 + }, +/obj/effect/floor_decal/industrial/outline_straight/yellow{ + dir = 5 + }, +/obj/random/dirt_75, +/obj/effect/decal/rolling_fog, +/turf/simulated/floor/plating, +/area/quarantined_outpost/research) +"hPz" = ( +/turf/simulated/wall/shuttle/scc_space_ship/cardinal, +/area/quarantined_outpost/entrance_maintenance) +"hPB" = ( +/obj/effect/decal/cleanable/blood, +/obj/random/dirt_75, +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/rust, +/area/quarantined_outpost/entrance_lobby) +"hPI" = ( +/obj/effect/floor_decal/corner/mauve{ + dir = 9 + }, +/obj/structure/sign/flag/sol/old{ + pixel_x = -32 + }, +/turf/simulated/floor/tiled/light, +/area/quarantined_outpost/research) +"hPL" = ( +/obj/item/paper/crumpled{ + pixel_x = -8; + pixel_y = -6 + }, +/obj/item/paper{ + pixel_y = -2 + }, +/obj/item/paper/crumpled/bloody{ + pixel_x = -5; + pixel_y = 2 + }, +/obj/effect/decal/cleanable/blood, +/obj/effect/floor_decal/industrial/outline_door/yellow{ + dir = 1 + }, +/obj/effect/floor_decal/industrial/outline_segment/yellow{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/quarantined_outpost/entrance_lobby) +"hPP" = ( +/obj/random/dirt_75, +/obj/random/dirt_75, +/turf/simulated/floor/tiled/airless, +/area/quarantined_outpost/security) +"hQv" = ( +/turf/simulated/floor/tiled/dark, +/area/quarantined_outpost/cargo_bay) +"hQR" = ( +/obj/structure/flora/rock/pile/random, +/turf/simulated/floor/exoplanet/basalt, +/area/quarantined_outpost/engineering/winch_room) +"hRc" = ( +/obj/structure/lattice/catwalk/indoor/grate/dark, +/turf/simulated/floor/plating, +/area/quarantined_outpost/north_east_hallway) +"hRZ" = ( +/obj/effect/floor_decal/corner_wide/lime/full{ + dir = 8 + }, +/obj/structure/filingcabinet/chestdrawer{ + pixel_x = 7 + }, +/obj/structure/filingcabinet{ + pixel_x = -7 + }, +/turf/simulated/floor/tiled/white, +/area/quarantined_outpost/medbay) +"hSd" = ( +/obj/effect/floor_decal/corner/dark_blue{ + dir = 8 + }, +/obj/random/dirt_75, +/obj/effect/landmark/quarantined_outpost/canister_spawn, +/turf/simulated/floor/tiled, +/area/quarantined_outpost/dorm_hallway) +"hSf" = ( +/obj/structure/lattice/catwalk/indoor/grate/dark, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/simulated/floor/plating, +/area/quarantined_outpost/north_east_hallway) +"hSI" = ( +/obj/effect/floor_decal/spline/plain/black, +/obj/machinery/power/apc/south, +/obj/effect/decal/cleanable/blood, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "1-8" + }, +/turf/simulated/floor/tiled/gunmetal, +/area/quarantined_outpost/north_east_hallway) +"hSO" = ( +/obj/structure/railing/mapped, +/obj/random/dirt_75, +/obj/random/dirt_75, +/obj/effect/decal/cleanable/floor_damage/rust, +/turf/simulated/floor/tiled/white, +/area/quarantined_outpost/extraction_lab) +"hTb" = ( +/obj/structure/railing/mapped{ + dir = 1 + }, +/obj/structure/lattice/catwalk/indoor, +/turf/simulated/floor/exoplanet/abyss, +/area/quarantined_outpost/research/containment) +"hTi" = ( +/obj/random/dirt_75, +/obj/random/dirt_75, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 1 + }, +/turf/simulated/floor/tiled/ridged, +/area/quarantined_outpost/extraction_lab) +"hTm" = ( +/obj/structure/tank_wall/hydrogen{ + icon_state = "h16" + }, +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/quarantined_outpost/engineering/atmospherics) +"hTF" = ( +/obj/structure/bed/stool/chair/office/dark{ + dir = 1 + }, +/obj/effect/floor_decal/corner/brown{ + dir = 5 + }, +/turf/simulated/floor/tiled, +/area/quarantined_outpost/cargo_bay) +"hTX" = ( +/obj/effect/floor_decal/spline/plain/black{ + dir = 1 + }, +/obj/random/dirt_75, +/obj/effect/decal/cleanable/floor_damage/rust, +/turf/simulated/floor/tiled/ridged, +/area/quarantined_outpost/extraction_lab) +"hTZ" = ( +/obj/effect/floor_decal/corner/mauve{ + dir = 6 + }, +/obj/effect/floor_decal/spline/plain/purple{ + dir = 4 + }, +/obj/random/dirt_75, +/turf/simulated/floor/tiled/light, +/area/quarantined_outpost/research) +"hUM" = ( +/obj/structure/platform, +/obj/random/dirt_75, +/turf/simulated/floor/tiled/ridged, +/area/quarantined_outpost/extraction_lab) +"hVi" = ( +/obj/structure/platform_deco/ledge, +/obj/effect/floor_decal/corner/brown{ + dir = 6 + }, +/obj/random/dirt_75, +/obj/machinery/light/maybe_broken/decayed{ + dir = 4 + }, +/obj/effect/landmark/quarantined_outpost/creature, +/turf/simulated/floor/tiled, +/area/quarantined_outpost/cargo_bay) +"hVu" = ( +/obj/effect/floor_decal/industrial/outline_straight/yellow{ + dir = 1 + }, +/turf/simulated/floor/tiled/dark, +/area/quarantined_outpost/research) +"hVF" = ( +/obj/effect/landmark/organized_spawn_point, +/turf/simulated/floor/exoplanet/basalt, +/area/quarantined_outpost/extraction_lab) +"hVI" = ( +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/visible/cyan{ + dir = 8 + }, +/obj/structure/cable/yellow{ + icon_state = "2-8" + }, +/turf/simulated/floor/plating, +/area/quarantined_outpost/engineering/atmospherics) +"hXz" = ( +/obj/effect/floor_decal/corner/lime{ + dir = 8 + }, +/obj/structure/trash_pile, +/turf/simulated/floor/tiled, +/area/quarantined_outpost/cafeteria) +"hYp" = ( +/obj/effect/floor_decal/corner_wide/paleblue/full{ + dir = 1 + }, +/obj/effect/decal/cleanable/blood, +/turf/simulated/floor/tiled/airless, +/area/quarantined_outpost/security) +"hYH" = ( +/obj/effect/floor_decal/corner_wide/paleblue/diagonal, +/obj/random/dirt_75, +/turf/simulated/floor/tiled/airless, +/area/quarantined_outpost/security) +"hYS" = ( +/obj/machinery/atmospherics/pipe/manifold/visible{ + dir = 1 + }, +/turf/simulated/floor/reinforced, +/area/quarantined_outpost/engineering/atmospherics) +"hZe" = ( +/obj/machinery/atmospherics/unary/cryo_cell, +/obj/random/dirt_75, +/turf/simulated/floor/tiled/dark/full, +/area/quarantined_outpost/medbay) +"hZE" = ( +/obj/effect/floor_decal/spline/plain/black{ + dir = 1 + }, +/obj/random/dirt_75, +/obj/effect/landmark/quarantined_outpost/creature, +/turf/simulated/floor/tiled/gunmetal, +/area/quarantined_outpost/north_east_hallway) +"hZU" = ( +/obj/machinery/vending/snack, +/obj/effect/floor_decal/spline/plain/black{ + dir = 4 + }, +/obj/effect/floor_decal/industrial/outline/grey, +/turf/simulated/floor/tiled/dark/full/airless, +/area/quarantined_outpost/security) +"iaf" = ( +/obj/structure/bed/padded, +/obj/structure/bed/padded{ + pixel_y = 13 + }, +/obj/effect/floor_decal/corner_wide/paleblue/full{ + dir = 1 + }, +/obj/effect/decal/cleanable/cobweb2, +/obj/random/dirt_75, +/turf/simulated/floor/tiled/airless, +/area/quarantined_outpost/security) +"iaj" = ( +/obj/effect/floor_decal/corner/mauve/full{ + dir = 4 + }, +/obj/structure/flora/pottedplant/dead, +/obj/random/dirt_75, +/turf/simulated/floor/tiled/light, +/area/quarantined_outpost/research) +"ibL" = ( +/obj/structure/bluespace_portal_device, +/obj/effect/decal/rolling_fog, +/turf/simulated/floor/reinforced, +/area/quarantined_outpost/research) +"icN" = ( +/obj/machinery/door/firedoor, +/obj/effect/floor_decal/industrial/hatch_door/research{ + dir = 8 + }, +/obj/machinery/door/airlock/medical{ + name = "Research and Development Labs" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 1 + }, +/turf/simulated/floor/tiled/dark/full, +/area/quarantined_outpost/research) +"idN" = ( +/obj/random/dirt_75, +/obj/effect/landmark/quarantined_outpost/creature, +/turf/simulated/floor/exoplanet/basalt, +/area/quarantined_outpost/cavern/east_cavern) +"idR" = ( +/obj/effect/floor_decal/corner/black{ + dir = 9 + }, +/obj/random/dirt_75, +/turf/simulated/floor/tiled, +/area/quarantined_outpost/entrance_lobby) +"idS" = ( +/obj/effect/floor_decal/industrial/hatch/yellow, +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled/gunmetal/full, +/area/quarantined_outpost/engineering/winch_room) +"iee" = ( +/obj/effect/floor_decal/spline/fancy/wood/corner{ + dir = 8 + }, +/obj/effect/floor_decal/spline/fancy/wood/corner, +/obj/random/dirt_75, +/turf/simulated/floor/wood, +/area/quarantined_outpost/cargo_bay) +"ieh" = ( +/obj/structure/railing/mapped{ + dir = 1 + }, +/obj/effect/floor_decal/corner/brown{ + dir = 5 + }, +/obj/random/dirt_75, +/obj/random/dirt_75, +/turf/simulated/floor/tiled, +/area/quarantined_outpost/cargo_bay) +"iey" = ( +/obj/effect/floor_decal/corner/mauve/diagonal, +/obj/random/dirt_75, +/obj/random/dirt_75, +/obj/effect/decal/cleanable/floor_damage/rust, +/turf/simulated/floor/tiled/white, +/area/quarantined_outpost/extraction_lab) +"ieX" = ( +/obj/effect/floor_decal/industrial/warning, +/obj/structure/trash_pile, +/obj/random/dirt_75, +/obj/random/dirt_75, +/turf/simulated/floor/plating, +/area/quarantined_outpost/research) +"ift" = ( +/obj/structure/bed/stool/padded/red{ + dir = 4 + }, +/turf/simulated/floor/lino, +/area/quarantined_outpost/cafeteria) +"ifA" = ( +/obj/effect/floor_decal/corner/dark_blue{ + dir = 6 + }, +/obj/random/dirt_75, +/obj/effect/decal/cleanable/blood, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/quarantined_outpost/north_east_hallway) +"ifT" = ( +/obj/effect/floor_decal/industrial/hatch/yellow, +/obj/machinery/door/airlock/multi_tile/glass{ + dir = 1; + welded = 1; + name = "Security" + }, +/obj/machinery/door/firedoor/multi_tile{ + dir = 2 + }, +/turf/simulated/floor/tiled/full/airless, +/area/quarantined_outpost/security) +"ihg" = ( +/obj/structure/table/standard, +/turf/simulated/floor/plating, +/area/quarantined_outpost/research) +"iho" = ( +/obj/structure/flora/rock/random, +/turf/simulated/floor/exoplanet/basalt, +/area/quarantined_outpost/cargo_bay) +"ihG" = ( +/obj/structure/filingcabinet/filingcabinet, +/obj/structure/filingcabinet/filingcabinet{ + pixel_x = 10 + }, +/obj/structure/filingcabinet/filingcabinet{ + pixel_x = -10 + }, +/obj/random/dirt_75, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 1 + }, +/turf/simulated/floor/tiled/airless, +/area/quarantined_outpost/security) +"ihJ" = ( +/obj/effect/floor_decal/industrial/outline_door/custodial{ + dir = 4 + }, +/obj/random/dirt_75, +/obj/effect/floor_decal/industrial/outline_segment/research{ + dir = 6 + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/white, +/area/quarantined_outpost/extraction_lab) +"iiO" = ( +/obj/effect/floor_decal/corner/brown{ + dir = 10 + }, +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/effect/floor_decal/industrial/loading/yellow{ + dir = 4 + }, +/obj/machinery/light/maybe_broken/decayed, +/turf/simulated/floor/tiled, +/area/quarantined_outpost/cargo_bay) +"iiS" = ( +/obj/effect/floor_decal/corner/dark_blue{ + dir = 5 + }, +/obj/effect/decal/cleanable/blood, +/turf/simulated/floor/tiled, +/area/quarantined_outpost/dorm_hallway) +"iiX" = ( +/obj/structure/grille/broken, +/obj/random/dirt_75, +/obj/random/dirt_75, +/turf/simulated/floor/plating, +/area/quarantined_outpost/elevator_hallway) +"ijG" = ( +/obj/random/dirt_75, +/obj/effect/landmark/quarantined_outpost/canister_spawn, +/turf/simulated/floor/plating, +/area/quarantined_outpost/cargo_bay) +"ijO" = ( +/obj/structure/bed/stool/chair/folding{ + dir = 4 + }, +/obj/random/dirt_75, +/turf/simulated/floor/tiled/dark/full, +/area/quarantined_outpost/cargo_bay) +"ijU" = ( +/obj/effect/floor_decal/industrial/hatch_small/yellow, +/obj/machinery/atmospherics/portables_connector{ + dir = 4 + }, +/obj/effect/decal/rolling_fog, +/turf/simulated/floor/plating, +/area/quarantined_outpost/research) +"ikg" = ( +/obj/random/dirt_75, +/turf/simulated/floor/tiled, +/area/quarantined_outpost/entrance_lobby) +"ikS" = ( +/obj/random/junk, +/obj/random/dirt_75, +/turf/simulated/floor/tiled/airless, +/area/quarantined_outpost/security) +"ilJ" = ( +/obj/structure/table/standard, +/obj/random/dirt_75, +/obj/effect/decal/cleanable/floor_damage/rust, +/obj/random/booze{ + pixel_y = 13; + pixel_x = 5 + }, +/obj/item/reagent_containers/food/drinks/drinkingglass/newglass/rocks{ + pixel_y = 6; + pixel_x = -8 + }, +/obj/item/reagent_containers/food/drinks/drinkingglass/newglass/rocks{ + pixel_y = 1; + pixel_x = 10 + }, +/turf/simulated/floor/tiled, +/area/quarantined_outpost/cafeteria) +"imq" = ( +/obj/effect/floor_decal/corner/yellow, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/random/dirt_75, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled/gunmetal, +/area/quarantined_outpost/engineering/tunnel) +"imu" = ( +/obj/random/dirt_75, +/turf/simulated/floor/tiled, +/area/quarantined_outpost/elevator_hallway) +"imR" = ( +/obj/structure/structural_support, +/obj/effect/decal/rolling_fog, +/turf/simulated/floor/plating, +/area/quarantined_outpost/research) +"imV" = ( +/obj/machinery/light/small/maybe_broken/decayed{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/quarantined_outpost/cargo_bay) +"inE" = ( +/obj/structure/bed/stool/chair/office/light{ + dir = 4 + }, +/obj/effect/floor_decal/corner/mauve/diagonal, +/obj/random/dirt_75, +/turf/simulated/floor/tiled/white, +/area/quarantined_outpost/extraction_lab) +"inR" = ( +/obj/effect/floor_decal/corner/dark_green{ + dir = 8 + }, +/obj/random/dirt_75, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/quarantined_outpost/gym) +"ioc" = ( +/obj/effect/floor_decal/spline/plain/black{ + dir = 9 + }, +/obj/structure/bed/stool/chair/padded/brown, +/obj/random/dirt_75, +/turf/simulated/floor/lino, +/area/quarantined_outpost/reception) +"iok" = ( +/obj/structure/bed/stool/chair{ + dir = 8 + }, +/obj/effect/floor_decal/corner_wide/paleblue, +/obj/machinery/light/small/maybe_broken/decayed{ + dir = 4 + }, +/turf/simulated/floor/tiled/airless, +/area/quarantined_outpost/security) +"ioq" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 1 + }, +/turf/simulated/floor/tiled/airless, +/area/quarantined_outpost/security) +"ipj" = ( +/obj/effect/floor_decal/industrial/outline_door/custodial{ + dir = 8 + }, +/obj/random/dirt_75, +/obj/random/dirt_75, +/obj/effect/floor_decal/industrial/outline_segment/custodial, +/turf/simulated/floor/tiled, +/area/quarantined_outpost/dorm_hallway) +"iqj" = ( +/obj/effect/floor_decal/corner/dark_blue{ + dir = 10 + }, +/turf/simulated/floor/tiled/dark, +/area/quarantined_outpost/research) +"iqo" = ( +/obj/effect/floor_decal/corner/dark_blue{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/quarantined_outpost/elevator_hallway) +"iqv" = ( +/obj/effect/floor_decal/corner/mauve{ + dir = 6 + }, +/obj/structure/table/standard, +/turf/simulated/floor/tiled/white, +/area/quarantined_outpost/extraction_lab) +"irw" = ( +/obj/effect/floor_decal/corner/yellow{ + dir = 10 + }, +/turf/simulated/floor/tiled/gunmetal, +/area/quarantined_outpost/engineering/winch_room) +"irM" = ( +/obj/structure/closet/body_bag, +/obj/random/loot, +/obj/random/dirt_75, +/obj/random/dirt_75, +/turf/simulated/floor/tiled/white, +/area/quarantined_outpost/medbay) +"irZ" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/simulated/floor/tiled, +/area/quarantined_outpost/reception) +"isa" = ( +/obj/effect/floor_decal/spline/plain/black, +/obj/structure/bed/stool/chair/sofa/right/brown{ + dir = 4 + }, +/obj/random/dirt_75, +/turf/simulated/floor/lino, +/area/quarantined_outpost/cafeteria) +"isc" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 1 + }, +/obj/effect/decal/cleanable/floor_damage/random_burned, +/obj/effect/decal/cleanable/ash{ + pixel_y = 3; + pixel_x = 10 + }, +/obj/effect/decal/cleanable/ash, +/turf/simulated/floor/plating, +/area/quarantined_outpost/entrance_lobby) +"ish" = ( +/obj/structure/flora/rock/pile/random, +/turf/simulated/floor/exoplanet/basalt, +/area/quarantined_outpost/chasm) +"ism" = ( +/obj/machinery/atmospherics/unary/vent_pump/on, +/obj/effect/landmark/trapped_vent/maybe/quarantined_outpost, +/turf/simulated/floor/tiled, +/area/quarantined_outpost/elevator_hallway) +"isr" = ( +/obj/machinery/door/firedoor{ + dir = 4 + }, +/obj/effect/floor_decal/industrial/hatch_door/yellow, +/obj/effect/decal/cleanable/floor_damage/random_broken, +/obj/effect/decal/cleanable/molten_item, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 8 + }, +/obj/abstract/footprint_spawner{ + dir = 8 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled/gunmetal/full, +/area/quarantined_outpost/engineering/winch_room) +"isC" = ( +/obj/structure/platform_stairs/full{ + dir = 1 + }, +/obj/effect/decal/rolling_fog, +/turf/simulated/floor/plating, +/area/quarantined_outpost/research) +"isK" = ( +/obj/structure/table/reinforced/steel, +/obj/structure/window/reinforced, +/obj/item/clothing/ears/earmuffs{ + pixel_y = 6 + }, +/obj/machinery/door/firedoor{ + dir = 4 + }, +/obj/random/dirt_75, +/turf/simulated/floor/tiled/dark/full, +/area/quarantined_outpost/security) +"its" = ( +/obj/effect/floor_decal/corner/dark_green/diagonal, +/obj/random/maintenance_junk_or_loot, +/turf/simulated/floor/tiled, +/area/quarantined_outpost/gym) +"itv" = ( +/obj/random/dirt_75, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/effect/landmark/quarantined_outpost/creature, +/turf/simulated/floor/tiled/dark/full, +/area/quarantined_outpost/engineering/winch_room) +"itx" = ( +/obj/effect/floor_decal/corner/dark_blue{ + dir = 10 + }, +/obj/random/dirt_75, +/obj/structure/bed/stool/chair{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/quarantined_outpost/elevator_hallway) +"itO" = ( +/obj/random/dirt_75, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled/light, +/area/quarantined_outpost/research) +"iuf" = ( +/obj/random/dirt_75, +/obj/effect/floor_decal/corner_wide/paleblue, +/obj/effect/decal/cleanable/blood, +/turf/simulated/floor/tiled/airless, +/area/quarantined_outpost/security) +"iuw" = ( +/obj/effect/map_effect/map_helper/ruler_tiles_3, +/obj/random/dirt_75, +/turf/simulated/floor/exoplanet/asteroid/ash/rocky, +/area/quarantined_outpost/exterior) +"iva" = ( +/obj/vehicle/train/cargo/engine/pussywagon, +/obj/random/dirt_75, +/turf/simulated/floor/tiled/dark/full, +/area/quarantined_outpost/dorm_hallway) +"ivo" = ( +/obj/effect/decal/cleanable/floor_damage/random_burned, +/obj/machinery/atmospherics/unary/outlet_injector{ + dir = 1 + }, +/turf/simulated/floor/reinforced, +/area/quarantined_outpost/research/containment) +"ivz" = ( +/obj/machinery/door/firedoor{ + dir = 4 + }, +/obj/effect/floor_decal/industrial/hatch_door/research, +/obj/machinery/door/airlock/medical{ + dir = 4; + name = "Low-Level Containment Rooms" + }, +/turf/simulated/floor/tiled/dark/full, +/area/quarantined_outpost/research) +"ivC" = ( +/obj/machinery/door/firedoor{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/structure/lattice/catwalk/indoor/grate/dark, +/obj/machinery/door/airlock/highsecurity{ + dir = 4; + name = "Communications Relay"; + locked = 1 + }, +/turf/simulated/floor/plating, +/area/quarantined_outpost/server_relay/north_west) +"ivG" = ( +/obj/effect/floor_decal/corner/brown{ + dir = 10 + }, +/obj/random/dirt_75, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 8 + }, +/obj/effect/landmark/trapped_vent/maybe/quarantined_outpost, +/turf/simulated/floor/tiled, +/area/quarantined_outpost/cargo_bay) +"iwi" = ( +/turf/unsimulated/wall/steel, +/area/quarantined_outpost/research) +"iwN" = ( +/obj/structure/lattice/catwalk/indoor/grate/dark, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/simulated/floor/plating, +/area/quarantined_outpost/north_east_hallway) +"ixx" = ( +/obj/random/civgun, +/obj/effect/decal/cleanable/blood, +/obj/effect/decal/remains, +/turf/simulated/floor/exoplanet/basalt, +/area/quarantined_outpost/cafeteria/maintenance) +"ixB" = ( +/obj/structure/platform_deco/ledge/dark{ + dir = 4 + }, +/turf/simulated/floor/exoplanet/abyss, +/area/quarantined_outpost/chasm) +"iyq" = ( +/obj/effect/floor_decal/industrial/hatch/yellow, +/turf/simulated/floor/tiled/dark/full, +/area/quarantined_outpost/cargo_bay) +"iyy" = ( +/obj/structure/tank_wall/oxygen{ + density = 0; + icon_state = "o2-6"; + opacity = 0 + }, +/obj/machinery/atmospherics/portables_connector{ + dir = 4 + }, +/obj/machinery/portable_atmospherics/canister/oxygen, +/turf/simulated/floor/reinforced, +/area/quarantined_outpost/engineering/atmospherics) +"iyD" = ( +/obj/machinery/conveyor{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark/full, +/area/quarantined_outpost/cargo_bay) +"izb" = ( +/obj/effect/floor_decal/corner_wide/lime{ + dir = 6 + }, +/obj/structure/sign/nosmoking_1{ + pixel_x = 32 + }, +/obj/structure/table/standard, +/obj/structure/railing/mapped, +/obj/item/vitals_monitor{ + pixel_y = 11; + pixel_x = -1 + }, +/obj/item/vitals_monitor{ + pixel_y = 7; + pixel_x = -4 + }, +/turf/simulated/floor/tiled/white, +/area/quarantined_outpost/medbay) +"izz" = ( +/obj/machinery/conveyor{ + dir = 1 + }, +/turf/simulated/floor/plating, +/area/quarantined_outpost/cargo_bay) +"iAd" = ( +/obj/structure/bed/stool/chair/office/dark{ + dir = 1 + }, +/obj/random/dirt_75, +/obj/effect/floor_decal/corner/yellow{ + dir = 1 + }, +/obj/effect/decal/cleanable/floor_damage/rust, +/turf/simulated/floor/tiled/gunmetal, +/area/quarantined_outpost/engineering) +"iAh" = ( +/obj/structure/lattice/catwalk/indoor/grate/dark, +/obj/machinery/door/airlock/maintenance_hatch{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/quarantined_outpost/engineering/tunnel) +"iAt" = ( +/obj/effect/floor_decal/corner/dark_blue{ + dir = 5 + }, +/obj/random/dirt_75, +/obj/machinery/computer/terminal/mob_tracker/quarantined_outpost, +/obj/effect/floor_decal/industrial/outline/red, +/turf/simulated/floor/tiled, +/area/quarantined_outpost/reception) +"iAy" = ( +/obj/structure/sign/nosmoking_1{ + pixel_y = 32 + }, +/obj/structure/bed/stool/chair/folding{ + dir = 8 + }, +/obj/effect/floor_decal/corner_wide/lime{ + dir = 5 + }, +/obj/effect/decal/cleanable/floor_damage/rust, +/turf/simulated/floor/tiled/white, +/area/quarantined_outpost/medbay) +"iAM" = ( +/obj/structure/railing/mapped{ + dir = 1 + }, +/obj/effect/floor_decal/corner_wide/paleblue{ + dir = 8 + }, +/turf/simulated/floor/tiled/airless, +/area/quarantined_outpost/security) +"iAW" = ( +/obj/effect/floor_decal/spline/plain/purple{ + dir = 8 + }, +/obj/structure/table/glass, +/obj/item/modular_computer/laptop/preset/civilian{ + pixel_y = 8; + pixel_x = 3 + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/turf/simulated/floor/tiled/light, +/area/quarantined_outpost/research) +"iBw" = ( +/obj/effect/floor_decal/spline/plain/black{ + dir = 1 + }, +/obj/random/dirt_75, +/turf/simulated/floor/tiled/gunmetal, +/area/quarantined_outpost/north_east_hallway) +"iDg" = ( +/obj/effect/floor_decal/spline/plain/black{ + dir = 8 + }, +/obj/structure/bed/stool/chair{ + dir = 8 + }, +/obj/machinery/light/small/maybe_broken/decayed{ + dir = 4 + }, +/obj/random/dirt_75, +/turf/simulated/floor/tiled/dark, +/area/quarantined_outpost/elevator_hallway) +"iDA" = ( +/obj/effect/floor_decal/industrial/outline_straight/yellow{ + dir = 4 + }, +/obj/effect/floor_decal/industrial/outline_straight/yellow{ + dir = 8 + }, +/obj/random/dirt_75, +/obj/random/dirt_75, +/obj/effect/floor_decal/industrial/outline/security, +/turf/simulated/floor/tiled/dark/full, +/area/quarantined_outpost/research/containment) +"iDH" = ( +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 5 + }, +/obj/structure/table/standard, +/obj/machinery/chemical_dispenser/coffeemaster/full{ + pixel_y = 12 + }, +/obj/item/reagent_containers/food/drinks/drinkingglass/newglass/coffeecup{ + pixel_x = -7; + pixel_y = -2 + }, +/obj/item/reagent_containers/food/drinks/drinkingglass/newglass/coffeecup{ + pixel_x = 1; + pixel_y = -2 + }, +/obj/effect/decal/cleanable/cobweb2, +/obj/structure/noticeboard{ + pixel_y = 32 + }, +/turf/simulated/floor/wood, +/area/quarantined_outpost/cargo_bay) +"iDS" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/fuel, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, +/obj/effect/floor_decal/industrial/outline/security, +/obj/structure/environmental_storytelling_holopad/quarantined_outpost/engineering_inform, +/turf/simulated/floor/tiled/dark/full, +/area/quarantined_outpost/engineering/atmospherics) +"iDU" = ( +/obj/random/dirt_75, +/obj/effect/floor_decal/spline/plain/corner/black{ + dir = 1 + }, +/obj/effect/decal/cleanable/floor_damage/rust, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled/gunmetal, +/area/quarantined_outpost/engineering/tunnel) +"iEa" = ( +/obj/effect/floor_decal/corner/yellow{ + dir = 5 + }, +/obj/random/dirt_75, +/obj/structure/flora/pottedplant/dead2{ + pixel_y = 13 + }, +/obj/effect/decal/cleanable/floor_damage/rust, +/turf/simulated/floor/tiled, +/area/quarantined_outpost/engineering) +"iEd" = ( +/obj/structure/cable/orange{ + icon_state = "4-8" + }, +/obj/effect/map_effect/marker/airlock/quarantined_outpost/entrance, +/obj/effect/floor_decal/industrial/outline_door/yellow{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden, +/obj/effect/floor_decal/industrial/outline_segment/yellow, +/turf/simulated/floor/plating, +/area/quarantined_outpost/entrance_lobby) +"iEq" = ( +/obj/machinery/computer/terminal/inactive{ + dir = 8 + }, +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/effect/decal/rolling_fog, +/turf/simulated/floor/tiled/dark/full, +/area/quarantined_outpost/research) +"iEF" = ( +/obj/effect/floor_decal/corner/grey/diagonal, +/obj/random/dirt_75, +/obj/abstract/footprint_spawner{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/quarantined_outpost/cafeteria) +"iEN" = ( +/turf/simulated/wall/r_wall, +/area/quarantined_outpost/engineering/atmospherics) +"iFB" = ( +/obj/effect/floor_decal/corner/dark_blue, +/obj/structure/inflatable/wall, +/turf/simulated/floor/tiled, +/area/quarantined_outpost/north_east_hallway) +"iGt" = ( +/obj/effect/floor_decal/corner_wide/paleblue{ + dir = 10 + }, +/obj/random/dirt_75, +/obj/machinery/light/maybe_broken/decayed, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/turf/simulated/floor/tiled/airless, +/area/quarantined_outpost/security) +"iGy" = ( +/obj/structure/platform{ + dir = 4 + }, +/obj/effect/floor_decal/corner/dark_blue, +/obj/effect/landmark/quarantined_outpost/creature, +/turf/simulated/floor/tiled/gunmetal, +/area/quarantined_outpost/north_east_hallway) +"iHn" = ( +/obj/structure/table/reinforced/steel, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/item/flora/pottedplant_small/dead{ + pixel_x = -8; + pixel_y = 11 + }, +/obj/random/desktoy, +/turf/simulated/floor/tiled/dark/full, +/area/quarantined_outpost/reception) +"iHt" = ( +/obj/random/dirt_75, +/obj/random/dirt_75, +/obj/effect/landmark/quarantined_outpost/creature, +/turf/simulated/floor/tiled, +/area/quarantined_outpost/dorm_hallway) +"iHG" = ( +/obj/random/dirt_75, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/structure/cable{ + icon_state = "2-4" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 1 + }, +/turf/simulated/floor/tiled/white, +/area/quarantined_outpost/medbay) +"iIe" = ( +/obj/effect/floor_decal/corner/yellow{ + dir = 8 + }, +/obj/random/dirt_75, +/obj/machinery/light/small/maybe_broken/decayed, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/quarantined_outpost/engineering/atmospherics) +"iIh" = ( +/obj/machinery/door/firedoor/multi_tile, +/obj/effect/floor_decal/industrial/hatch/yellow, +/obj/machinery/door/airlock/multi_tile/glass{ + name = "Cafeteria"; + welded = 1 + }, +/turf/simulated/floor/tiled/full, +/area/quarantined_outpost/cafeteria) +"iIt" = ( +/obj/effect/floor_decal/industrial/outline_straight/yellow{ + dir = 8 + }, +/obj/random/dirt_75, +/obj/machinery/light/small/emergency{ + dir = 1 + }, +/turf/simulated/floor/tiled/ridged, +/area/quarantined_outpost/server_relay/north_west) +"iIK" = ( +/obj/effect/floor_decal/corner/yellow/full{ + dir = 1 + }, +/obj/random/dirt_75, +/obj/random/dirt_75, +/turf/simulated/floor/tiled/gunmetal, +/area/quarantined_outpost/engineering/winch_room) +"iIW" = ( +/obj/effect/floor_decal/spline/plain/black{ + dir = 9 + }, +/obj/structure/sign/directions/medical{ + pixel_y = 40; + dir = 4 + }, +/obj/structure/sign/directions/security{ + pixel_y = 32 + }, +/obj/machinery/light/small/maybe_broken/decayed{ + dir = 8 + }, +/turf/simulated/floor/tiled/gunmetal, +/area/quarantined_outpost/north_east_hallway) +"iJd" = ( +/obj/structure/bed/stool/chair/office/dark, +/obj/effect/decal/cleanable/blood, +/obj/random/dirt_75, +/obj/random/dirt_75, +/turf/simulated/floor/tiled, +/area/quarantined_outpost/engineering/tunnel) +"iJx" = ( +/obj/effect/floor_decal/industrial/warning/corner, +/obj/random/dirt_75, +/obj/machinery/light/small/decayed{ + dir = 4 + }, +/obj/effect/decal/rolling_fog, +/turf/simulated/floor/plating, +/area/quarantined_outpost/research) +"iJJ" = ( +/obj/effect/floor_decal/corner/black{ + dir = 6 + }, +/obj/random/dirt_75, +/obj/structure/bed/stool/chair/folding, +/turf/simulated/floor/tiled, +/area/quarantined_outpost/dorm_hallway) +"iJP" = ( +/obj/machinery/computer/terminal/inactive{ + dir = 8 + }, +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/effect/decal/cleanable/cobweb2, +/turf/simulated/floor/tiled/gunmetal/full, +/area/quarantined_outpost/server_relay/north_west) +"iKv" = ( +/obj/effect/floor_decal/spline/plain/black{ + dir = 8 + }, +/obj/random/dirt_75, +/obj/random/dirt_75, +/turf/simulated/floor/tiled/rust, +/area/quarantined_outpost/reception) +"iKX" = ( +/obj/effect/floor_decal/corner/dark_blue{ + dir = 9 + }, +/obj/random/dirt_75, +/obj/effect/decal/cleanable/blood, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/quarantined_outpost/elevator_hallway) +"iLb" = ( +/obj/effect/floor_decal/corner/mauve{ + dir = 8 + }, +/obj/effect/floor_decal/corner/mauve{ + dir = 6 + }, +/obj/effect/floor_decal/spline/plain/purple{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled/light, +/area/quarantined_outpost/research) +"iLh" = ( +/obj/effect/floor_decal/spline/plain/black{ + dir = 4 + }, +/obj/structure/railing/mapped{ + dir = 4 + }, +/obj/random/dirt_75, +/obj/effect/floor_decal/industrial/outline/red, +/obj/machinery/computer/terminal/quarantined_outpost/extraction{ + dir = 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/quarantined_outpost/extraction_lab) +"iLw" = ( +/obj/random/dirt_75, +/obj/structure/cable{ + icon_state = "1-4" + }, +/turf/simulated/floor/tiled, +/area/quarantined_outpost/reception) +"iLA" = ( +/obj/effect/floor_decal/industrial/hatch/yellow, +/obj/machinery/door/firedoor, +/obj/random/dirt_75, +/obj/abstract/footprint_spawner{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 1 + }, +/turf/simulated/floor/tiled/full, +/area/quarantined_outpost/north_east_hallway) +"iLW" = ( +/obj/random/dirt_75, +/turf/simulated/floor/plating, +/area/quarantined_outpost/elevator_hallway/maintenance) +"iNm" = ( +/obj/structure/grille/broken, +/obj/effect/landmark/quarantined_outpost/canister_spawn, +/turf/simulated/floor/plating, +/area/quarantined_outpost/cafeteria/maintenance) +"iNr" = ( +/obj/structure/tank_wall/oxygen{ + icon_state = "o2-14" + }, +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 4 + }, +/obj/effect/floor_decal/industrial/warning, +/turf/simulated/floor/plating, +/area/quarantined_outpost/engineering/atmospherics) +"iNC" = ( +/obj/structure/table/standard, +/obj/effect/floor_decal/corner_wide/paleblue{ + dir = 10 + }, +/obj/item/deck/cards{ + pixel_x = -4 + }, +/turf/simulated/floor/tiled/airless, +/area/quarantined_outpost/security) +"iNV" = ( +/obj/effect/floor_decal/corner_wide/paleblue{ + dir = 5 + }, +/obj/random/dirt_75, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 + }, +/turf/simulated/floor/tiled, +/area/quarantined_outpost/security) +"iOb" = ( +/obj/structure/lattice/catwalk, +/obj/structure/platform/dark{ + dir = 8 + }, +/obj/structure/railing/mapped{ + dir = 8; + pixel_y = 5 + }, +/turf/simulated/floor/plating, +/area/quarantined_outpost/engineering/winch_room) +"iOm" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/mining/brace{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/quarantined_outpost/engineering/atmospherics) +"iOH" = ( +/turf/simulated/floor/exoplanet/abyss, +/area/quarantined_outpost/chasm) +"iOP" = ( +/obj/effect/floor_decal/corner/dark_blue{ + dir = 9 + }, +/obj/structure/bed/stool/chair/sofa/right/brown{ + dir = 4 + }, +/obj/random/dirt_75, +/turf/simulated/floor/tiled, +/area/quarantined_outpost/entrance_lobby) +"iPe" = ( +/obj/random/dirt_75, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/quarantined_outpost/engineering/atmospherics) +"iPl" = ( +/obj/effect/shuttle_landmark/quarantined_outpost/space/space_1b, +/turf/template_noop, +/area/space) +"iPm" = ( +/obj/structure/railing/mapped, +/obj/structure/lattice/catwalk/indoor, +/obj/machinery/computer/terminal/mob_tracker/quarantined_outpost{ + dir = 1 + }, +/turf/simulated/floor/exoplanet/abyss, +/area/quarantined_outpost/research/containment) +"iPv" = ( +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/structure/closet/crate/loot, +/obj/machinery/light/small/maybe_broken/decayed{ + dir = 1 + }, +/turf/simulated/floor/plating, +/area/quarantined_outpost/cargo_bay) +"iPw" = ( +/obj/structure/lattice/catwalk/indoor/grate, +/obj/structure/cable{ + 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/quarantined_outpost/elevator_hallway) +"iPR" = ( +/obj/random/dirt_75, +/obj/random/dirt_75, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/effect/decal/cleanable/blood, +/turf/simulated/floor/tiled/rust, +/area/quarantined_outpost/reception) +"iQi" = ( +/obj/machinery/door/firedoor, +/obj/effect/floor_decal/industrial/hatch/yellow, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 1 + }, +/turf/simulated/floor/tiled/full/airless, +/area/quarantined_outpost/security) +"iQk" = ( +/obj/effect/floor_decal/corner/yellow{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/quarantined_outpost/engineering/atmospherics) +"iQr" = ( +/obj/structure/toilet{ + dir = 4; + pixel_y = -1 + }, +/obj/effect/floor_decal/corner_wide/paleblue/full, +/obj/effect/floor_decal/concrete/gutter/corner, +/obj/random/dirt_75, +/turf/simulated/floor/tiled/airless, +/area/quarantined_outpost/security) +"iQu" = ( +/obj/effect/floor_decal/industrial/outline/yellow, +/turf/simulated/floor/tiled/full, +/area/quarantined_outpost/cargo_bay) +"iQO" = ( +/obj/effect/floor_decal/spline/plain/corner/black{ + dir = 8 + }, +/obj/effect/floor_decal/spline/plain/black{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/quarantined_outpost/gym) +"iRl" = ( +/obj/machinery/door/firedoor{ + dir = 1 + }, +/obj/effect/floor_decal/industrial/hatch_door/yellow{ + dir = 1 + }, +/obj/machinery/door/airlock/glass_mining{ + dir = 1; + name = "Excavation Equipment" + }, +/obj/random/dirt_75, +/turf/simulated/floor/tiled/dark/full, +/area/quarantined_outpost/cargo_bay) +"iRt" = ( +/obj/effect/floor_decal/industrial/hatch/yellow, +/obj/machinery/door/firedoor/noid{ + dir = 4 + }, +/obj/structure/curtain/open/medical, +/turf/simulated/floor/tiled/white, +/area/quarantined_outpost/medbay) +"iSa" = ( +/obj/effect/floor_decal/corner/dark_blue{ + dir = 6 + }, +/obj/random/dirt_75, +/obj/structure/table/standard/flipped{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/quarantined_outpost/elevator_hallway) +"iSg" = ( +/obj/effect/floor_decal/corner/grey/diagonal, +/obj/effect/floor_decal/spline/plain/corner{ + dir = 4 + }, +/obj/random/dirt_75, +/obj/machinery/light/maybe_broken/decayed{ + dir = 1 + }, +/turf/simulated/floor/tiled/white, +/area/quarantined_outpost/cafeteria) +"iSk" = ( +/obj/effect/shuttle_landmark/quarantined_outpost/space/space_2c, +/turf/template_noop, +/area/space) +"iSW" = ( +/obj/random/dirt_75, +/obj/structure/lattice/catwalk/indoor/grate/old, +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/simulated/floor/airless, +/area/quarantined_outpost/security) +"iTn" = ( +/obj/effect/floor_decal/industrial/hatch/yellow, +/turf/simulated/floor/tiled/full, +/area/quarantined_outpost/cafeteria) +"iTM" = ( +/obj/effect/floor_decal/corner/dark_blue{ + dir = 1 + }, +/obj/structure/sign/directions/security{ + pixel_y = 32 + }, +/obj/structure/sign/directions/medical{ + pixel_y = 40; + dir = 1 + }, +/obj/random/dirt_75, +/obj/random/dirt_75, +/obj/structure/flora/pottedplant/dead{ + pixel_x = -7; + pixel_y = 5 + }, +/turf/simulated/floor/tiled, +/area/quarantined_outpost/north_east_hallway) +"iUe" = ( +/obj/structure/railing/mapped{ + dir = 8 + }, +/obj/structure/lattice/catwalk/indoor, +/turf/simulated/floor/plating, +/area/quarantined_outpost/cargo_bay) +"iUq" = ( +/obj/effect/floor_decal/corner/yellow{ + dir = 4 + }, +/obj/effect/floor_decal/corner/dark_blue{ + dir = 1 + }, +/obj/effect/decal/cleanable/floor_damage/rust, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 + }, +/obj/structure/cable{ + icon_state = "2-8" + }, +/turf/simulated/floor/tiled/gunmetal, +/area/quarantined_outpost/north_east_hallway) +"iUy" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/random/dirt_75, +/obj/random/dirt_75, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled/gunmetal, +/area/quarantined_outpost/engineering/tunnel) +"iUQ" = ( +/obj/structure/tank_wall/hydrogen{ + icon_state = "h15" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden, +/turf/simulated/floor/plating, +/area/quarantined_outpost/engineering/atmospherics) +"iVd" = ( +/obj/random/dirt_75, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled/full, +/area/quarantined_outpost/elevator_hallway) +"iVe" = ( +/obj/effect/floor_decal/corner/yellow{ + dir = 4 + }, +/obj/effect/floor_decal/corner/dark_blue, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 1 + }, +/turf/simulated/floor/tiled/dark, +/area/quarantined_outpost/engineering/atmospherics) +"iVf" = ( +/obj/structure/table/standard, +/obj/effect/floor_decal/spline/plain/black{ + dir = 4 + }, +/turf/simulated/floor/tiled/full, +/area/quarantined_outpost/entrance_lobby) +"iVk" = ( +/obj/structure/lattice/catwalk, +/obj/structure/table/standard, +/obj/random/tech_supply, +/obj/random/tech_supply, +/turf/simulated/floor/exoplanet/basalt, +/area/quarantined_outpost/engineering/tunnel) +"iVX" = ( +/obj/effect/floor_decal/corner/brown{ + dir = 8 + }, +/obj/structure/bed/stool/padded/red{ + dir = 1 + }, +/obj/random/dirt_75, +/turf/simulated/floor/tiled/dark, +/area/quarantined_outpost/cargo_bay) +"iWh" = ( +/obj/effect/floor_decal/corner_wide/lime{ + dir = 10 + }, +/obj/effect/decal/cleanable/blood, +/obj/random/dirt_75, +/obj/effect/landmark/quarantined_outpost/canister_spawn, +/turf/simulated/floor/tiled/white, +/area/quarantined_outpost/medbay) +"iWu" = ( +/obj/effect/floor_decal/industrial/outline/service, +/obj/random/dirt_75, +/obj/random/dirt_75, +/turf/simulated/floor/tiled/dark/full, +/area/quarantined_outpost/cafeteria) +"iWw" = ( +/obj/structure/flora/rock/pile/random, +/turf/simulated/floor/exoplanet/basalt, +/area/quarantined_outpost/engineering/tunnel) +"iWL" = ( +/obj/effect/floor_decal/corner/dark_blue{ + dir = 9 + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/quarantined_outpost/dorm_hallway) +"iXD" = ( +/obj/effect/floor_decal/industrial/hatch/yellow, +/obj/machinery/atmospherics/binary/circulator{ + anchored = 1; + dir = 1 + }, +/turf/simulated/floor/plating, +/area/quarantined_outpost/engineering/atmospherics) +"iXG" = ( +/obj/effect/floor_decal/industrial/hatch/yellow, +/obj/random/dirt_75, +/obj/random/dirt_75, +/turf/simulated/floor/tiled/full/airless, +/area/quarantined_outpost/security) +"iYi" = ( +/obj/structure/bed/stool/padded/red{ + dir = 4 + }, +/obj/effect/floor_decal/spline/plain/black, +/obj/random/dirt_75, +/turf/simulated/floor/lino, +/area/quarantined_outpost/cafeteria) +"iYm" = ( +/obj/structure/table/standard, +/obj/effect/floor_decal/corner_wide/paleblue/full, +/obj/random/dirt_75, +/turf/simulated/floor/tiled/airless, +/area/quarantined_outpost/security) +"iYq" = ( +/obj/effect/landmark/quarantined_outpost/canister_spawn, +/turf/simulated/floor/exoplanet/basalt, +/area/quarantined_outpost/engineering/tunnel) +"iYs" = ( +/obj/effect/floor_decal/corner/yellow{ + dir = 4 + }, +/obj/effect/floor_decal/corner/dark_blue{ + dir = 1 + }, +/turf/simulated/floor/tiled/dark, +/area/quarantined_outpost/engineering/atmospherics) +"iZh" = ( +/obj/random/dirt_75, +/obj/structure/cable{ + icon_state = "2-8" + }, +/obj/structure/cable{ + 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/quarantined_outpost/elevator_hallway) +"iZl" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark/full, +/area/quarantined_outpost/engineering/winch_room) +"iZA" = ( +/obj/effect/floor_decal/corner/dark_blue{ + dir = 10 + }, +/obj/structure/bookcase/libraryspawn/nonfiction, +/turf/simulated/floor/tiled, +/area/quarantined_outpost/reception) +"iZI" = ( +/obj/effect/floor_decal/corner/yellow/full, +/obj/structure/table/standard, +/obj/item/device/flashlight/heavy, +/turf/simulated/floor/tiled/gunmetal, +/area/quarantined_outpost/engineering/tunnel) +"iZS" = ( +/obj/structure/stairs_railing{ + dir = 8 + }, +/obj/structure/lattice/catwalk/indoor, +/turf/simulated/floor/exoplanet/abyss, +/area/quarantined_outpost/research/containment) +"jah" = ( +/obj/structure/lattice/catwalk/indoor/grate/damaged, +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/simulated/floor/plating, +/area/quarantined_outpost/cafeteria) +"jaq" = ( +/obj/effect/floor_decal/corner/dark_blue{ + dir = 9 + }, +/obj/machinery/light/floor/maybe_broken/decayed{ + dir = 8 + }, +/obj/random/dirt_75, +/turf/simulated/floor/tiled/rust, +/area/quarantined_outpost/dorm_hallway) +"jaE" = ( +/obj/effect/floor_decal/spline/plain/grey{ + dir = 1 + }, +/obj/structure/table/reinforced/steel, +/obj/item/stack/barbed_wire{ + pixel_x = -6; + pixel_y = 10 + }, +/obj/item/wirecutters{ + pixel_x = 14; + pixel_y = 5 + }, +/obj/random/dirt_75, +/turf/simulated/floor/reinforced, +/area/quarantined_outpost/security) +"jaT" = ( +/obj/effect/floor_decal/corner/mauve{ + dir = 9 + }, +/obj/effect/floor_decal/spline/plain/purple{ + dir = 8 + }, +/turf/simulated/floor/tiled/light, +/area/quarantined_outpost/research) +"jbe" = ( +/obj/structure/lattice/catwalk/indoor/grate/light, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 + }, +/turf/simulated/floor/plating, +/area/quarantined_outpost/research) +"jbh" = ( +/obj/structure/lattice/catwalk/indoor/grate, +/turf/simulated/floor/plating, +/area/quarantined_outpost/cargo_bay) +"jbC" = ( +/obj/random/dirt_75, +/obj/effect/floor_decal/spline/plain/black, +/turf/simulated/floor/tiled/gunmetal, +/area/quarantined_outpost/engineering/tunnel) +"jbI" = ( +/obj/random/dirt_75, +/obj/structure/lattice/catwalk/indoor/grate/old, +/turf/simulated/floor/airless, +/area/quarantined_outpost/security) +"jbR" = ( +/obj/effect/floor_decal/industrial/outline/operations, +/obj/effect/floor_decal/industrial/loading/operations, +/turf/simulated/floor/tiled/dark/full, +/area/quarantined_outpost/reception) +"jbU" = ( +/obj/structure/sign/biohazard{ + pixel_x = 32 + }, +/obj/effect/floor_decal/corner_wide/lime/full{ + dir = 4 + }, +/obj/structure/bed/stool/chair/folding{ + dir = 8 + }, +/turf/simulated/floor/tiled/white, +/area/quarantined_outpost/medbay) +"jci" = ( +/obj/structure/tank_wall/air{ + icon_state = "air14" + }, +/obj/effect/floor_decal/industrial/warning, +/turf/simulated/floor/plating, +/area/quarantined_outpost/engineering/atmospherics) +"jcl" = ( +/obj/effect/decal/cleanable/blood, +/turf/simulated/floor/tiled, +/area/quarantined_outpost/elevator_hallway) +"jcQ" = ( +/obj/effect/floor_decal/corner/yellow{ + dir = 4 + }, +/obj/effect/floor_decal/corner/dark_blue, +/obj/effect/floor_decal/corner/dark_blue{ + dir = 1 + }, +/obj/random/dirt_75, +/turf/simulated/floor/tiled/dark, +/area/quarantined_outpost/engineering/atmospherics) +"jcU" = ( +/obj/effect/floor_decal/corner/mauve{ + dir = 8 + }, +/obj/random/dirt_75, +/obj/effect/decal/cleanable/floor_damage/rust, +/obj/machinery/power/apc/south, +/obj/structure/cable, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 1 + }, +/turf/simulated/floor/tiled/light, +/area/quarantined_outpost/research) +"jef" = ( +/obj/structure/lattice/catwalk/indoor/grate, +/obj/structure/cable{ + 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/quarantined_outpost/dorm_hallway) +"jeg" = ( +/obj/abstract/footprint_spawner/body{ + dir = 1 + }, +/turf/simulated/floor/tiled/gunmetal, +/area/quarantined_outpost/engineering) +"jer" = ( +/obj/structure/closet/secure_closet/personal, +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/random/dirt_75, +/obj/random/loot, +/turf/simulated/floor/tiled/dark/full, +/area/quarantined_outpost/cargo_bay) +"jeP" = ( +/obj/effect/floor_decal/corner/yellow{ + dir = 9 + }, +/turf/simulated/floor/tiled/gunmetal, +/area/quarantined_outpost/engineering/tunnel) +"jfc" = ( +/obj/effect/floor_decal/corner_wide/paleblue{ + dir = 8 + }, +/obj/machinery/photocopier, +/obj/random/dirt_75, +/turf/simulated/floor/tiled/airless, +/area/quarantined_outpost/security) +"jff" = ( +/obj/effect/floor_decal/corner/yellow/full, +/obj/random/dirt_75, +/obj/structure/table/standard, +/obj/random/tech_supply{ + pixel_y = 4; + pixel_x = -3 + }, +/obj/item/paper/crumpled{ + pixel_x = 7; + pixel_y = -3 + }, +/turf/simulated/floor/tiled/dark/airless, +/area/quarantined_outpost/auxiliary_power) +"jfp" = ( +/obj/machinery/light/small/broken{ + dir = 4 + }, +/obj/random/dirt_75, +/turf/simulated/floor/tiled/freezer{ + name = "cooled tiles"; + temperature = 253.15 + }, +/area/quarantined_outpost/cafeteria) +"jfu" = ( +/obj/effect/floor_decal/corner/dark_blue{ + dir = 1 + }, +/obj/structure/bed/stool/chair/folding, +/turf/simulated/floor/tiled/dark, +/area/quarantined_outpost/engineering/atmospherics) +"jfJ" = ( +/obj/item/hullbeacon/red, +/obj/structure/railing/mapped{ + dir = 1 + }, +/obj/structure/railing/mapped{ + dir = 4 + }, +/turf/simulated/floor/plating/asteroid/airless, +/area/quarantined_outpost/exterior) +"jfY" = ( +/obj/effect/floor_decal/industrial/outline_door/yellow{ + dir = 8 + }, +/obj/effect/floor_decal/industrial/outline_segment/yellow, +/obj/effect/decal/cleanable/floor_damage/rust, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled/gunmetal, +/area/quarantined_outpost/cafeteria) +"jga" = ( +/obj/effect/floor_decal/corner/mauve/full{ + dir = 1 + }, +/obj/effect/floor_decal/corner/mauve{ + dir = 8 + }, +/obj/structure/reagent_dispensers/water_cooler, +/obj/machinery/light/small/floor/emergency, +/turf/simulated/floor/tiled/white, +/area/quarantined_outpost/extraction_lab) +"jgi" = ( +/obj/effect/floor_decal/industrial/hatch/yellow, +/obj/machinery/door/firedoor/multi_tile{ + dir = 2 + }, +/obj/machinery/door/airlock/multi_tile/glass{ + dir = 1; + name = "Engineering Hallway" + }, +/turf/simulated/floor/tiled/full, +/area/quarantined_outpost/reception) +"jgl" = ( +/obj/effect/floor_decal/corner/yellow{ + dir = 4 + }, +/obj/effect/floor_decal/industrial/outline_door/yellow{ + dir = 8 + }, +/turf/simulated/floor/tiled/dark, +/area/quarantined_outpost/north_east_hallway) +"jgr" = ( +/obj/structure/table/standard, +/obj/effect/floor_decal/spline/plain/black{ + dir = 4 + }, +/obj/structure/sign/flag/sol/old/large/west{ + pixel_x = -32 + }, +/turf/simulated/floor/tiled/full, +/area/quarantined_outpost/entrance_lobby) +"jgI" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 4 + }, +/obj/random/dirt_75, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/quarantined_outpost/medbay) +"jgK" = ( +/obj/effect/floor_decal/corner/mauve{ + dir = 1 + }, +/obj/effect/floor_decal/corner/mauve{ + dir = 6 + }, +/obj/effect/floor_decal/spline/plain/purple{ + dir = 4 + }, +/obj/effect/decal/cleanable/blood, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/effect/landmark/quarantined_outpost/creature, +/turf/simulated/floor/tiled/light, +/area/quarantined_outpost/research) +"jgR" = ( +/obj/effect/floor_decal/corner_wide/paleblue/full{ + dir = 1 + }, +/obj/random/dirt_75, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 8 + }, +/obj/effect/landmark/trapped_vent/maybe/quarantined_outpost, +/turf/simulated/floor/tiled/airless, +/area/quarantined_outpost/security) +"jgT" = ( +/obj/machinery/floodlight/randomcharge{ + dir = 1 + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 1 + }, +/turf/simulated/floor/tiled/white, +/area/quarantined_outpost/medbay) +"jhG" = ( +/turf/simulated/floor/tiled/dark/full, +/area/quarantined_outpost/north_east_hallway) +"jhR" = ( +/obj/random/dirt_75, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 1 + }, +/turf/simulated/floor/tiled/full/airless, +/area/quarantined_outpost/security) +"jhW" = ( +/obj/structure/railing/mapped{ + dir = 1 + }, +/obj/random/dirt_75, +/turf/simulated/floor/plating/asteroid/airless, +/area/quarantined_outpost/exterior) +"jif" = ( +/obj/effect/floor_decal/corner_wide/lime{ + dir = 10 + }, +/obj/effect/decal/cleanable/floor_damage/rust, +/obj/machinery/alarm/south, +/turf/simulated/floor/tiled/white, +/area/quarantined_outpost/medbay) +"jig" = ( +/obj/structure/foamedmetal, +/turf/simulated/floor/plating, +/area/quarantined_outpost/medbay) +"jin" = ( +/obj/structure/sign/emergency/exit/stairs{ + pixel_y = 32 + }, +/obj/structure/lattice/catwalk/indoor, +/turf/simulated/floor/plating, +/area/quarantined_outpost/cargo_bay) +"jjo" = ( +/obj/effect/floor_decal/corner/mauve/diagonal, +/obj/random/dirt_75, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 1 + }, +/turf/simulated/floor/tiled/white, +/area/quarantined_outpost/extraction_lab) +"jjG" = ( +/obj/structure/lattice/catwalk, +/obj/structure/railing/mapped{ + dir = 8 + }, +/turf/simulated/floor/exoplanet/basalt, +/area/quarantined_outpost/engineering/tunnel) +"jjN" = ( +/obj/machinery/door/firedoor, +/obj/effect/floor_decal/industrial/hatch/yellow, +/turf/simulated/floor/tiled/full, +/area/quarantined_outpost/elevator_hallway) +"jjQ" = ( +/obj/structure/table/standard, +/obj/effect/floor_decal/corner_wide/paleblue/full{ + dir = 1 + }, +/obj/machinery/recharger{ + pixel_y = 9; + pixel_x = 8 + }, +/turf/simulated/floor/tiled/airless, +/area/quarantined_outpost/security) +"jjS" = ( +/obj/structure/lattice/catwalk/indoor, +/obj/effect/decal/cleanable/cobweb2, +/obj/structure/sign/atmosplaque{ + pixel_y = 32 + }, +/obj/structure/reagent_dispensers/fueltank, +/turf/simulated/floor/plating, +/area/quarantined_outpost/engineering/atmospherics) +"jkh" = ( +/obj/structure/railing/mapped{ + dir = 1 + }, +/turf/simulated/floor/exoplanet/basalt, +/area/quarantined_outpost/north_east_hallway) +"jkP" = ( +/obj/structure/railing/mapped{ + dir = 1 + }, +/turf/simulated/floor/plating/asteroid/airless, +/area/quarantined_outpost/exterior) +"jly" = ( +/obj/effect/floor_decal/corner/mauve/diagonal, +/obj/machinery/atmospherics/unary/vent_scrubber/on, +/turf/simulated/floor/tiled/white, +/area/quarantined_outpost/extraction_lab) +"jlG" = ( +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 1 + }, +/obj/effect/decal/cleanable/floor_damage/random_wood_broken, +/obj/item/towel_flat{ + pixel_y = 12; + desc = "A dog blanket laid out on the floor; a poor excuse for a bed, but Columbo doesn't seem to mind it."; + accent_color = "#95453D"; + color = "#95453D" + }, +/obj/random/dirt_75, +/turf/simulated/floor/wood, +/area/quarantined_outpost/cargo_bay) +"jlP" = ( +/obj/effect/floor_decal/corner_wide/paleblue{ + dir = 4 + }, +/obj/random/dirt_75, +/obj/machinery/alarm/east, +/obj/effect/landmark/quarantined_outpost/canister_spawn, +/turf/simulated/floor/tiled/airless, +/area/quarantined_outpost/security) +"jlR" = ( +/obj/effect/floor_decal/corner/grey/diagonal, +/obj/effect/floor_decal/spline/plain{ + dir = 1 + }, +/turf/simulated/floor/tiled/white, +/area/quarantined_outpost/cafeteria) +"jmB" = ( +/obj/structure/table/standard, +/obj/item/storage/box/fancy/vials{ + pixel_y = 9; + pixel_x = -6 + }, +/obj/item/storage/box/fancy/vials{ + pixel_y = 2; + pixel_x = -6 + }, +/obj/effect/floor_decal/spline/plain/black{ + dir = 1 + }, +/turf/simulated/floor/tiled/white, +/area/quarantined_outpost/extraction_lab) +"jno" = ( +/obj/random/dirt_75, +/obj/random/dirt_75, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/quarantined_outpost/reception) +"jnp" = ( +/obj/machinery/door/window/eastleft, +/obj/effect/floor_decal/industrial/hatch_door/operations, +/obj/machinery/door/firedoor{ + dir = 8 + }, +/obj/random/dirt_75, +/turf/simulated/floor/tiled/dark/full, +/area/quarantined_outpost/cargo_bay) +"joD" = ( +/obj/effect/floor_decal/corner/brown{ + dir = 10 + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/simulated/floor/tiled, +/area/quarantined_outpost/cargo_bay) +"joG" = ( +/obj/item/stack/barricade/wood, +/obj/random/dirt_75, +/obj/random/dirt_75, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, +/turf/simulated/floor/tiled, +/area/quarantined_outpost/dorm_hallway) +"joI" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/structure/table/standard/flipped, +/turf/simulated/floor/plating, +/area/quarantined_outpost/north_east_hallway/maintenance) +"joL" = ( +/obj/machinery/light/small/emergency{ + dir = 1 + }, +/turf/simulated/floor/exoplanet/basalt, +/area/quarantined_outpost/engineering/tunnel) +"joW" = ( +/obj/structure/flora/rock/pile/random, +/obj/structure/cable/orange{ + icon_state = "2-4" + }, +/obj/random/dirt_75, +/turf/simulated/floor/plating/asteroid/airless, +/area/quarantined_outpost/exterior) +"jpj" = ( +/obj/structure/grille, +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/simulated/floor/plating, +/area/quarantined_outpost/cafeteria/maintenance) +"jpJ" = ( +/obj/effect/floor_decal/industrial/hatch/yellow, +/obj/machinery/door/firedoor{ + dir = 1 + }, +/obj/random/dirt_75, +/turf/simulated/floor/tiled/full, +/area/quarantined_outpost/cargo_bay) +"jpM" = ( +/obj/effect/floor_decal/corner_wide/paleblue{ + dir = 4 + }, +/obj/structure/closet/crate/bin{ + pixel_x = 8; + pixel_y = 9 + }, +/obj/random/dirt_75, +/obj/random/dirt_75, +/obj/machinery/light/small/maybe_broken/decayed{ + dir = 1 + }, +/turf/simulated/floor/tiled/airless, +/area/quarantined_outpost/security) +"jpT" = ( +/obj/structure/table/standard, +/obj/structure/lattice/catwalk/indoor/grate/dark, +/obj/item/trash/plate{ + pixel_y = 14; + pixel_x = -6 + }, +/obj/structure/cable{ + icon_state = "1-8" + }, +/obj/item/reagent_containers/food/drinks/drinkingglass/newglass/coffeecup{ + pixel_x = 9; + pixel_y = 5 + }, +/turf/simulated/floor/plating, +/area/quarantined_outpost/engineering) +"jrc" = ( +/turf/simulated/wall/r_wall, +/area/quarantined_outpost/engineering) +"jrj" = ( +/obj/effect/floor_decal/corner_wide/lime{ + dir = 5 + }, +/obj/effect/floor_decal/industrial/outline/medical, +/obj/structure/table/standard, +/obj/random/loot, +/obj/random/dirt_75, +/turf/simulated/floor/tiled/white, +/area/quarantined_outpost/medbay) +"jsA" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 8 + }, +/obj/structure/lattice/catwalk/indoor/grate/dark, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/quarantined_outpost/engineering/tunnel) +"jtc" = ( +/obj/effect/floor_decal/corner/yellow{ + dir = 5 + }, +/obj/effect/decal/cleanable/floor_damage/rust, +/turf/simulated/floor/tiled/gunmetal, +/area/quarantined_outpost/engineering/winch_room) +"jtf" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 8 + }, +/obj/random/dirt_75, +/turf/simulated/floor/plating, +/area/quarantined_outpost/cargo_bay) +"jtF" = ( +/obj/effect/floor_decal/corner/purple{ + dir = 9 + }, +/obj/effect/floor_decal/industrial/outline/custodial, +/obj/structure/closet/hazmat/custodial, +/turf/simulated/floor/tiled, +/area/quarantined_outpost/dorm_hallway) +"jtG" = ( +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 10 + }, +/obj/effect/decal/cleanable/floor_damage/random_wood_broken, +/obj/random/dirt_75, +/obj/structure/flora/pottedplant/dead2{ + pixel_y = 3 + }, +/obj/machinery/light/small/maybe_broken/decayed, +/turf/simulated/floor/wood, +/area/quarantined_outpost/cargo_bay) +"jul" = ( +/obj/structure/bed/stool/chair{ + dir = 1 + }, +/obj/effect/floor_decal/industrial/outline/security, +/obj/effect/decal/cleanable/blood, +/obj/random/dirt_75, +/turf/simulated/floor/tiled/dark/airless, +/area/quarantined_outpost/security) +"juQ" = ( +/obj/effect/floor_decal/industrial/outline_door/red{ + dir = 4 + }, +/obj/effect/floor_decal/industrial/outline_segment/red{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/gunmetal/full, +/area/quarantined_outpost/north_east_hallway) +"jwi" = ( +/obj/random/dirt_75, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/turf/simulated/floor/tiled/airless, +/area/quarantined_outpost/security) +"jxf" = ( +/obj/effect/floor_decal/corner/lime{ + dir = 1 + }, +/obj/item/material/stool/chair/folding{ + pixel_y = 5; + pixel_x = 5 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/quarantined_outpost/cafeteria) +"jxj" = ( +/obj/structure/barricade/wooden/road{ + dir = 4 + }, +/turf/simulated/floor/exoplanet/basalt, +/area/quarantined_outpost/research) +"jxB" = ( +/obj/random/junk, +/turf/simulated/floor/plating, +/area/quarantined_outpost/entrance_maintenance) +"jxI" = ( +/obj/random/dirt_75, +/obj/abstract/footprint_spawner/body{ + dir = 1 + }, +/obj/abstract/footprint_spawner_turn_helper{ + dir = 8 + }, +/obj/structure/cable{ + icon_state = "2-8" + }, +/turf/simulated/floor/plating, +/area/quarantined_outpost/entrance_maintenance) +"jxN" = ( +/obj/effect/floor_decal/spline/plain/black{ + dir = 4 + }, +/obj/structure/railing/mapped{ + dir = 4 + }, +/obj/effect/decal/cleanable/blood, +/obj/effect/decal/remains, +/turf/simulated/floor/tiled/white, +/area/quarantined_outpost/extraction_lab) +"jxT" = ( +/obj/random/dirt_75, +/obj/structure/cable/orange{ + icon_state = "2-4" + }, +/turf/simulated/floor/plating/asteroid/airless, +/area/quarantined_outpost/exterior) +"jyf" = ( +/obj/effect/floor_decal/spline/plain/corner/black{ + dir = 8 + }, +/turf/simulated/floor/tiled/white, +/area/quarantined_outpost/extraction_lab) +"jyn" = ( +/obj/structure/platform/dark{ + dir = 1 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 10 + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/structure/cable/yellow{ + icon_state = "1-8" + }, +/turf/simulated/floor/carpet/rubber, +/area/quarantined_outpost/engineering/atmospherics) +"jyz" = ( +/obj/effect/floor_decal/corner_wide/lime{ + dir = 1 + }, +/obj/effect/decal/cleanable/blood, +/turf/simulated/floor/tiled/white, +/area/quarantined_outpost/medbay) +"jyJ" = ( +/obj/structure/bed/stool/chair/folding{ + dir = 1 + }, +/obj/random/dirt_75, +/obj/random/dirt_75, +/turf/simulated/floor/reinforced, +/area/quarantined_outpost/security) +"jyS" = ( +/turf/space, +/area/quarantined_outpost/chasm) +"jyX" = ( +/obj/structure/lattice/catwalk/indoor/grate/damaged, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, +/turf/simulated/floor/plating, +/area/quarantined_outpost/reception) +"jzc" = ( +/obj/machinery/computer/terminal/inactive{ + dir = 8 + }, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/effect/floor_decal/industrial/outline/research, +/obj/random/dirt_75, +/turf/simulated/floor/tiled/bitile, +/area/quarantined_outpost/research) +"jzF" = ( +/obj/effect/floor_decal/corner/black{ + dir = 6 + }, +/obj/structure/closet/cabinet, +/obj/random/dirt_75, +/obj/outfit/admin/generic, +/obj/structure/sign/flag/nhp{ + pixel_x = 32 + }, +/turf/simulated/floor/tiled, +/area/quarantined_outpost/dorm_hallway) +"jzV" = ( +/obj/machinery/door/airlock/maintenance_hatch{ + dir = 4 + }, +/obj/machinery/door/firedoor{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/quarantined_outpost/gym) +"jAL" = ( +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 10 + }, +/obj/structure/flora/grass/desert{ + name = "withered grass" + }, +/turf/simulated/floor/exoplanet/barren, +/area/quarantined_outpost/north_east_hallway) +"jBS" = ( +/obj/effect/floor_decal/corner/black{ + dir = 10 + }, +/obj/random/dirt_75, +/obj/structure/platform{ + dir = 1 + }, +/obj/item/device/flashlight/flare{ + pixel_y = 8; + pixel_x = 6 + }, +/turf/simulated/floor/tiled/dark, +/area/quarantined_outpost/entrance_lobby) +"jBU" = ( +/obj/effect/floor_decal/corner/yellow{ + dir = 4 + }, +/obj/random/dirt_75, +/turf/simulated/floor/tiled, +/area/quarantined_outpost/engineering) +"jCR" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 5 + }, +/obj/effect/decal/rolling_fog, +/turf/simulated/floor/plating, +/area/quarantined_outpost/research) +"jDg" = ( +/obj/effect/floor_decal/industrial/outline_door/yellow{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled/gunmetal/full, +/area/quarantined_outpost/engineering/tunnel) +"jDi" = ( +/obj/effect/floor_decal/spline/plain/black{ + dir = 8 + }, +/obj/effect/floor_decal/spline/plain/black{ + dir = 8 + }, +/obj/abstract/footprint_spawner/oil, +/obj/machinery/light/small/maybe_broken/decayed{ + dir = 8 + }, +/turf/simulated/floor/tiled/gunmetal, +/area/quarantined_outpost/engineering/tunnel) +"jDm" = ( +/obj/structure/platform, +/obj/structure/platform{ + dir = 8 + }, +/obj/structure/platform_deco{ + dir = 9 + }, +/obj/random/dirt_75, +/turf/simulated/floor/tiled/ridged, +/area/quarantined_outpost/extraction_lab) +"jDw" = ( +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 1 + }, +/obj/effect/decal/cleanable/blood, +/obj/random/dirt_75, +/turf/simulated/floor/wood, +/area/quarantined_outpost/dorm_hallway) +"jDT" = ( +/obj/effect/floor_decal/industrial/hatch/yellow, +/obj/machinery/door/firedoor{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/door/blast/shutters/open{ + dir = 4; + id = "quarantined_outpost_eng_checkpoint_in" + }, +/turf/simulated/floor/tiled/gunmetal/full, +/area/quarantined_outpost/cafeteria) +"jEq" = ( +/obj/effect/floor_decal/corner_wide/lime{ + dir = 1 + }, +/obj/machinery/vending/snack, +/turf/simulated/floor/tiled/white, +/area/quarantined_outpost/medbay) +"jEv" = ( +/obj/random/dirt_75, +/obj/item/reagent_containers/food/drinks/waterbottle{ + pixel_y = 8; + pixel_x = -9 + }, +/turf/simulated/floor/tiled, +/area/quarantined_outpost/dorm_hallway) +"jEO" = ( +/obj/effect/floor_decal/corner/dark_blue/full{ + dir = 1 + }, +/obj/structure/bed/stool/chair, +/turf/simulated/floor/tiled, +/area/quarantined_outpost/north_east_hallway) +"jEX" = ( +/obj/structure/closet, +/obj/effect/decal/cleanable/cobweb, +/obj/random/loot, +/turf/simulated/floor/tiled, +/area/quarantined_outpost/cafeteria/maintenance) +"jFg" = ( +/obj/random/maintenance_junk_or_loot, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled/rust, +/area/quarantined_outpost/elevator_hallway) +"jFA" = ( +/obj/structure/filingcabinet/filingcabinet, +/obj/structure/filingcabinet/filingcabinet{ + pixel_x = -10 + }, +/obj/structure/filingcabinet/filingcabinet{ + pixel_x = 10 + }, +/obj/structure/lattice/catwalk/indoor/grate/light, +/turf/simulated/floor/plating, +/area/quarantined_outpost/research) +"jFH" = ( +/obj/effect/floor_decal/corner/dark_blue{ + dir = 5 + }, +/obj/structure/closet/crate/bin, +/obj/machinery/power/apc/north, +/obj/random/dirt_75, +/obj/structure/cable{ + icon_state = "0-2" + }, +/turf/simulated/floor/tiled, +/area/quarantined_outpost/reception) +"jFW" = ( +/obj/machinery/appliance/cooker/oven, +/obj/effect/decal/cleanable/cobweb2, +/turf/simulated/floor/tiled/dark/full, +/area/quarantined_outpost/cafeteria) +"jGa" = ( +/obj/abstract/footprint_spawner{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/quarantined_outpost/cargo_bay) +"jGs" = ( +/obj/random/dirt_75, +/turf/simulated/floor/tiled/bitile/middle{ + dir = 4 + }, +/area/quarantined_outpost/cafeteria) +"jGD" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/random/dirt_75, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/effect/landmark/quarantined_outpost/creature, +/turf/simulated/floor/tiled/dark/full, +/area/quarantined_outpost/engineering/atmospherics) +"jGS" = ( +/obj/effect/decal/cleanable/blood, +/obj/effect/landmark/quarantined_outpost/creature, +/turf/simulated/floor/tiled/white, +/area/quarantined_outpost/medbay) +"jHf" = ( +/obj/machinery/power/terminal{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "0-8" + }, +/obj/structure/lattice/catwalk/indoor, +/turf/simulated/floor/airless, +/area/quarantined_outpost/auxiliary_power) +"jHi" = ( +/obj/structure/lattice/catwalk/indoor/grate/damaged, +/obj/structure/cable/orange{ + icon_state = "4-8" + }, +/obj/structure/cable{ + icon_state = "1-4" + }, +/turf/simulated/floor/plating, +/area/quarantined_outpost/entrance_lobby) +"jHQ" = ( +/obj/effect/floor_decal/corner/mauve{ + dir = 5 + }, +/obj/abstract/footprint_spawner/body{ + dir = 1 + }, +/turf/simulated/floor/tiled/white, +/area/quarantined_outpost/extraction_lab) +"jHT" = ( +/obj/effect/floor_decal/corner/lime{ + dir = 1 + }, +/obj/structure/trash_pile, +/turf/simulated/floor/tiled, +/area/quarantined_outpost/cafeteria) +"jHZ" = ( +/obj/structure/lattice/catwalk/indoor/grate/old, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/quarantined_outpost/reception) +"jIK" = ( +/obj/effect/floor_decal/corner_wide/paleblue{ + dir = 5 + }, +/obj/random/dirt_75, +/obj/random/dirt_75, +/obj/machinery/atmospherics/unary/vent_scrubber/on, +/turf/simulated/floor/tiled, +/area/quarantined_outpost/security) +"jJk" = ( +/obj/structure/table/standard, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/item/modular_computer/laptop/preset/civilian{ + pixel_y = 9; + pixel_x = -2 + }, +/obj/effect/floor_decal/corner_wide/paleblue{ + dir = 10 + }, +/obj/structure/sign/flag/biesel/antique{ + pixel_y = -32 + }, +/turf/simulated/floor/tiled/airless, +/area/quarantined_outpost/security) +"jJl" = ( +/obj/effect/floor_decal/corner/dark_blue{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, +/turf/simulated/floor/tiled, +/area/quarantined_outpost/elevator_hallway) +"jJD" = ( +/obj/effect/decal/cleanable/cobweb2, +/obj/effect/floor_decal/corner/dark_blue/full{ + dir = 1 + }, +/obj/structure/closet/secure_closet/guncabinet, +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/machinery/light/maybe_broken/decayed{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/quarantined_outpost/research) +"jJI" = ( +/obj/effect/floor_decal/industrial/outline/service, +/obj/effect/decal/cleanable/cobweb2, +/turf/simulated/floor/tiled/dark/full, +/area/quarantined_outpost/cafeteria) +"jJO" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 8 + }, +/obj/random/dirt_75, +/obj/machinery/atmospherics/portables_connector{ + dir = 1 + }, +/turf/simulated/floor/plating, +/area/quarantined_outpost/engineering/atmospherics) +"jJZ" = ( +/obj/effect/floor_decal/corner_wide/lime, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 1 + }, +/turf/simulated/floor/tiled/white, +/area/quarantined_outpost/medbay) +"jKg" = ( +/obj/effect/floor_decal/corner/dark_blue, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/quarantined_outpost/dorm_hallway) +"jKI" = ( +/obj/random/dirt_75, +/obj/structure/closet, +/obj/random/loot, +/turf/simulated/floor/plating, +/area/quarantined_outpost/elevator_hallway/maintenance) +"jKO" = ( +/obj/structure/lattice/catwalk/indoor/grate/old, +/turf/simulated/floor/plating, +/area/quarantined_outpost/cargo_bay) +"jLa" = ( +/obj/structure/bed/stool/chair/office/light{ + dir = 4 + }, +/obj/effect/floor_decal/corner/mauve/diagonal, +/obj/random/dirt_75, +/obj/random/dirt_75, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/quarantined_outpost/extraction_lab) +"jLe" = ( +/obj/random/dirt_75, +/obj/machinery/power/portgen/basic, +/turf/simulated/floor/airless, +/area/quarantined_outpost/auxiliary_power) +"jLi" = ( +/obj/machinery/body_scanconsole{ + dir = 4 + }, +/obj/effect/floor_decal/corner/dark_green/full{ + dir = 8 + }, +/obj/effect/decal/cleanable/floor_damage/rust, +/turf/simulated/floor/tiled/dark, +/area/quarantined_outpost/medbay) +"jLF" = ( +/obj/structure/table/standard, +/obj/effect/floor_decal/corner_wide/paleblue{ + dir = 5 + }, +/obj/random/dirt_75, +/turf/simulated/floor/tiled/airless, +/area/quarantined_outpost/security) +"jMw" = ( +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/effect/floor_decal/industrial/warning{ + dir = 4 + }, +/obj/random/canister/filled, +/turf/simulated/floor/plating, +/area/quarantined_outpost/engineering/atmospherics) +"jMH" = ( +/obj/random/dirt_75, +/obj/effect/decal/cleanable/floor_damage/rust, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/quarantined_outpost/cargo_bay) +"jMM" = ( +/obj/random/dirt_75, +/obj/random/dirt_75, +/obj/random/dirt_75, +/obj/structure/cable/orange{ + icon_state = "4-8" + }, +/turf/simulated/floor/plating/asteroid/airless, +/area/quarantined_outpost/exterior) +"jNg" = ( +/obj/structure/sink/kitchen{ + name = "surgical sink"; + pixel_y = 20 + }, +/obj/effect/floor_decal/corner_wide/paleblue/full{ + dir = 1 + }, +/obj/random/dirt_75, +/turf/simulated/floor/tiled/white, +/area/quarantined_outpost/medbay) +"jNs" = ( +/obj/effect/floor_decal/corner/yellow{ + dir = 9 + }, +/obj/random/dirt_75, +/turf/simulated/floor/tiled, +/area/quarantined_outpost/engineering) +"jNv" = ( +/obj/effect/floor_decal/corner/purple{ + dir = 5 + }, +/obj/effect/decal/cleanable/cobweb2, +/obj/random/dirt_75, +/obj/structure/sink/kitchen{ + pixel_y = 21 + }, +/turf/simulated/floor/tiled, +/area/quarantined_outpost/dorm_hallway) +"jND" = ( +/obj/random/maintenance_junk_or_loot, +/turf/simulated/floor/tiled, +/area/quarantined_outpost/cafeteria/maintenance) +"jOa" = ( +/obj/effect/floor_decal/industrial/outline/red, +/obj/machinery/suit_cycler, +/obj/random/dirt_75, +/obj/machinery/light/maybe_broken/decayed, +/turf/simulated/floor/tiled/dark/full/airless, +/area/quarantined_outpost/security) +"jOs" = ( +/obj/effect/floor_decal/corner/mauve{ + dir = 9 + }, +/obj/machinery/alarm/west, +/turf/simulated/floor/tiled/white, +/area/quarantined_outpost/extraction_lab) +"jOD" = ( +/obj/effect/floor_decal/corner/dark_blue{ + dir = 6 + }, +/obj/random/dirt_75, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/quarantined_outpost/elevator_hallway) +"jOI" = ( +/obj/structure/bed/stool/chair{ + dir = 1 + }, +/obj/effect/floor_decal/spline/plain/black{ + dir = 5 + }, +/turf/simulated/floor/tiled/dark/full, +/area/quarantined_outpost/reception) +"jOW" = ( +/obj/structure/lattice/catwalk, +/turf/simulated/floor/exoplanet/basalt, +/area/quarantined_outpost/engineering/winch_room) +"jQA" = ( +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/effect/floor_decal/industrial/warning{ + dir = 6 + }, +/obj/random/canister/filled, +/turf/simulated/floor/plating, +/area/quarantined_outpost/engineering/atmospherics) +"jQO" = ( +/obj/effect/decal/cleanable/floor_damage/random_broken, +/turf/simulated/floor/plating, +/area/quarantined_outpost/research) +"jQR" = ( +/obj/structure/bed/stool/padded/red, +/obj/effect/floor_decal/corner/dark_green{ + dir = 5 + }, +/obj/machinery/light/small/maybe_broken/decayed{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/quarantined_outpost/gym) +"jRc" = ( +/obj/random/dirt_75, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/dark/full, +/area/quarantined_outpost/north_east_hallway) +"jRu" = ( +/obj/effect/floor_decal/corner/dark_blue/full{ + dir = 1 + }, +/obj/structure/table/standard, +/turf/simulated/floor/tiled, +/area/quarantined_outpost/elevator_hallway) +"jRH" = ( +/obj/structure/railing/mapped{ + dir = 4 + }, +/obj/effect/floor_decal/industrial/outline/operations, +/turf/simulated/floor/tiled/dark/full, +/area/quarantined_outpost/reception) +"jSB" = ( +/obj/structure/table/reinforced/steel, +/obj/machinery/door/window/desk/northleft, +/turf/simulated/floor/tiled/dark/full, +/area/quarantined_outpost/north_east_hallway) +"jSC" = ( +/obj/effect/floor_decal/spline/plain/black{ + dir = 1 + }, +/obj/effect/decal/cleanable/floor_damage/rust, +/obj/effect/decal/cleanable/blood, +/turf/simulated/floor/tiled/ridged, +/area/quarantined_outpost/extraction_lab) +"jSD" = ( +/obj/structure/bed/stool/chair, +/obj/effect/floor_decal/corner_wide/paleblue/full{ + dir = 8 + }, +/obj/machinery/alarm/north, +/turf/simulated/floor/tiled, +/area/quarantined_outpost/elevator_hallway) +"jTb" = ( +/obj/random/dirt_75, +/obj/effect/landmark/quarantined_outpost/creature, +/turf/simulated/floor/tiled, +/area/quarantined_outpost/dorm_hallway) +"jTc" = ( +/obj/random/dirt_75, +/obj/random/dirt_75, +/turf/simulated/floor/plating, +/area/quarantined_outpost/elevator_hallway) +"jTq" = ( +/obj/structure/lattice/catwalk, +/obj/structure/railing/mapped{ + dir = 1 + }, +/turf/simulated/floor/exoplanet/abyss, +/area/quarantined_outpost/chasm) +"jUj" = ( +/obj/effect/floor_decal/corner_wide/lime{ + dir = 9 + }, +/obj/structure/barricade/wooden{ + dir = 8 + }, +/obj/effect/decal/cleanable/floor_damage/rust, +/turf/simulated/floor/tiled/white, +/area/quarantined_outpost/medbay) +"jUp" = ( +/turf/simulated/wall/r_wall, +/area/quarantined_outpost/server_relay/south_east) +"jVq" = ( +/obj/effect/floor_decal/industrial/hatch/yellow, +/obj/machinery/door/firedoor/noid/closed{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled/gunmetal/full, +/area/quarantined_outpost/engineering/tunnel) +"jVy" = ( +/obj/effect/floor_decal/industrial/outline/medical, +/obj/structure/table/standard, +/obj/structure/bedsheetbin{ + pixel_y = 5 + }, +/obj/effect/decal/cleanable/floor_damage/rust, +/turf/simulated/floor/tiled/full, +/area/quarantined_outpost/medbay) +"jVI" = ( +/obj/structure/railing/mapped, +/turf/simulated/floor/exoplanet/basalt, +/area/quarantined_outpost/cavern/east_cavern) +"jWu" = ( +/obj/random/dirt_75, +/obj/random/junk, +/turf/simulated/floor/tiled/bitile{ + dir = 1 + }, +/area/quarantined_outpost/cafeteria) +"jWB" = ( +/obj/structure/table/standard, +/obj/effect/floor_decal/spline/plain/black{ + dir = 1 + }, +/obj/item/stack/barricade/wood, +/turf/simulated/floor/tiled/white, +/area/quarantined_outpost/extraction_lab) +"jWI" = ( +/obj/effect/floor_decal/corner/black{ + dir = 6 + }, +/obj/structure/bed/padded, +/obj/random/dirt_75, +/obj/item/bedsheet/yellow, +/obj/structure/sign/flag/venus{ + pixel_x = 32 + }, +/turf/simulated/floor/tiled, +/area/quarantined_outpost/dorm_hallway) +"jXl" = ( +/obj/effect/floor_decal/industrial/outline_straight/custodial{ + dir = 4 + }, +/obj/effect/decal/cleanable/blood, +/turf/simulated/floor/tiled/light, +/area/quarantined_outpost/research) +"jYe" = ( +/obj/structure/tank_wall/oxygen{ + icon_state = "o2-7" + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/quarantined_outpost/engineering/atmospherics) +"jYw" = ( +/obj/effect/floor_decal/spline/plain/black, +/obj/effect/decal/cleanable/floor_damage/rust, +/turf/simulated/floor/tiled/gunmetal, +/area/quarantined_outpost/engineering/tunnel) +"jYz" = ( +/obj/structure/table/reinforced/steel, +/obj/machinery/door/window/desk/westleft, +/turf/simulated/floor/tiled/dark/full, +/area/quarantined_outpost/reception) +"jYQ" = ( +/obj/machinery/computer/terminal/inactive{ + dir = 8 + }, +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/machinery/door/firedoor{ + dir = 4 + }, +/turf/simulated/floor/tiled/gunmetal/full, +/area/quarantined_outpost/engineering) +"jZl" = ( +/obj/effect/floor_decal/corner_wide/paleblue{ + dir = 6 + }, +/obj/random/dirt_75, +/obj/random/dirt_75, +/turf/simulated/floor/tiled, +/area/quarantined_outpost/security) +"jZD" = ( +/obj/machinery/atmospherics/pipe/manifold/visible, +/obj/machinery/meter, +/obj/effect/decal/rolling_fog, +/turf/simulated/floor/plating, +/area/quarantined_outpost/research) +"jZE" = ( +/obj/structure/lattice/catwalk/indoor/grate, +/obj/effect/decal/cleanable/cobweb2, +/turf/simulated/floor/plating, +/area/quarantined_outpost/cargo_bay) +"jZV" = ( +/obj/effect/floor_decal/corner/mauve{ + dir = 9 + }, +/obj/structure/table/standard, +/obj/effect/decal/cleanable/floor_damage/rust, +/turf/simulated/floor/tiled/dark, +/area/quarantined_outpost/research) +"kaj" = ( +/obj/effect/floor_decal/corner_wide/lime/diagonal, +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 1 + }, +/obj/machinery/light/small/maybe_broken/decayed, +/obj/effect/decal/cleanable/floor_damage/rust, +/obj/random/dirt_75, +/turf/simulated/floor/tiled/white, +/area/quarantined_outpost/medbay) +"kap" = ( +/obj/machinery/atmospherics/unary/freezer{ + icon_state = "freezer"; + dir = 4 + }, +/turf/simulated/floor/plating, +/area/quarantined_outpost/medbay) +"kau" = ( +/obj/structure/tank_wall/oxygen{ + icon_state = "o2-9" + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold4w/hidden, +/turf/simulated/floor/plating, +/area/quarantined_outpost/engineering/atmospherics) +"kaV" = ( +/obj/structure/lattice/catwalk/indoor/grate/dark, +/obj/abstract/footprint_spawner/body{ + dir = 8 + }, +/obj/effect/decal/cleanable/floor_damage/rust, +/obj/structure/cable{ + 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/plating, +/area/quarantined_outpost/research) +"kbm" = ( +/obj/machinery/photocopier, +/obj/effect/floor_decal/corner/brown{ + dir = 6 + }, +/obj/random/dirt_75, +/obj/machinery/power/apc/east, +/obj/structure/cable{ + icon_state = "0-2" + }, +/turf/simulated/floor/tiled, +/area/quarantined_outpost/cargo_bay) +"kbr" = ( +/obj/effect/floor_decal/spline/plain/grey{ + dir = 4 + }, +/obj/random/dirt_75, +/obj/random/dirt_75, +/turf/simulated/floor/reinforced, +/area/quarantined_outpost/security) +"kcg" = ( +/obj/structure/platform_deco, +/obj/structure/structural_support, +/turf/simulated/floor/exoplanet/basalt, +/area/quarantined_outpost/research) +"kcH" = ( +/obj/structure/tank_wall/hydrogen{ + density = 0; + icon_state = "h6"; + opacity = 0 + }, +/obj/machinery/atmospherics/portables_connector{ + dir = 4 + }, +/obj/machinery/portable_atmospherics/canister/hydrogen, +/turf/simulated/floor/reinforced, +/area/quarantined_outpost/engineering/atmospherics) +"kcU" = ( +/obj/random/dirt_75, +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/simulated/floor/plating, +/area/quarantined_outpost/cafeteria/maintenance) +"kcZ" = ( +/turf/simulated/mineral/lava, +/area/quarantined_outpost/north_east_hallway) +"kds" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/obj/random/maintenance_junk_or_loot, +/turf/simulated/floor/plating, +/area/quarantined_outpost/engineering/atmospherics) +"kez" = ( +/obj/effect/floor_decal/spline/plain/black{ + dir = 1 + }, +/obj/structure/railing/mapped{ + dir = 1 + }, +/turf/simulated/floor/tiled/white, +/area/quarantined_outpost/extraction_lab) +"keP" = ( +/obj/machinery/door/firedoor, +/obj/effect/floor_decal/industrial/hatch_door/medical{ + dir = 1 + }, +/obj/machinery/door/airlock/glass_medical{ + name = "Examination Room" + }, +/turf/simulated/floor/tiled/white, +/area/quarantined_outpost/medbay) +"keQ" = ( +/obj/effect/floor_decal/corner/yellow{ + dir = 8 + }, +/obj/effect/floor_decal/corner/dark_blue{ + dir = 1 + }, +/obj/effect/decal/cleanable/floor_damage/rust, +/obj/random/maintenance_junk_or_loot, +/turf/simulated/floor/tiled/dark, +/area/quarantined_outpost/engineering/atmospherics) +"kfh" = ( +/obj/random/dirt_75, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/abstract/footprint_spawner/body{ + dir = 4 + }, +/obj/abstract/footprint_spawner_turn_helper{ + dir = 1 + }, +/turf/simulated/floor/tiled/rust, +/area/quarantined_outpost/reception) +"kfZ" = ( +/obj/structure/noticeboard{ + pixel_y = 32 + }, +/obj/effect/floor_decal/corner/yellow{ + dir = 5 + }, +/obj/effect/decal/cleanable/floor_damage/rust, +/turf/simulated/floor/tiled/gunmetal, +/area/quarantined_outpost/engineering) +"kgg" = ( +/turf/simulated/wall/shuttle/scc_space_ship/cardinal, +/area/quarantined_outpost/research) +"kgm" = ( +/obj/structure/bed/stool/chair/office/dark{ + dir = 8 + }, +/obj/effect/floor_decal/corner/brown{ + dir = 5 + }, +/obj/random/dirt_75, +/turf/simulated/floor/tiled, +/area/quarantined_outpost/cargo_bay) +"kgL" = ( +/obj/effect/floor_decal/corner/mauve{ + dir = 6 + }, +/obj/effect/floor_decal/spline/plain/corner/purple, +/obj/effect/decal/cleanable/floor_damage/rust, +/turf/simulated/floor/tiled/light, +/area/quarantined_outpost/research) +"kgN" = ( +/obj/effect/floor_decal/corner_wide/lime{ + dir = 5 + }, +/obj/machinery/computer/terminal/inactive, +/obj/effect/decal/cleanable/floor_damage/rust, +/turf/simulated/floor/tiled/white, +/area/quarantined_outpost/medbay) +"kha" = ( +/obj/random/dirt_75, +/obj/effect/map_effect/marker/airlock/quarantined_outpost/entrance, +/obj/machinery/embedded_controller/radio/airlock/airlock_controller{ + pixel_y = 23; + pixel_x = 5 + }, +/obj/machinery/airlock_sensor{ + pixel_y = 25; + pixel_x = -7 + }, +/obj/machinery/atmospherics/unary/vent_pump/high_volume, +/turf/simulated/floor/plating, +/area/quarantined_outpost/entrance_lobby) +"khI" = ( +/obj/structure/table/glass, +/turf/simulated/floor/tiled/light, +/area/quarantined_outpost/research) +"khP" = ( +/obj/structure/railing/mapped{ + dir = 1 + }, +/obj/effect/floor_decal/spline/plain/black{ + dir = 10 + }, +/obj/structure/bed/stool/chair, +/obj/abstract/footprint_spawner/body{ + dir = 8 + }, +/turf/simulated/floor/tiled/dark/full, +/area/quarantined_outpost/entrance_lobby) +"kiI" = ( +/obj/effect/floor_decal/concrete/gutter/corner{ + dir = 1 + }, +/obj/random/dirt_75, +/obj/random/dirt_75, +/obj/machinery/alarm/north, +/turf/simulated/floor/tiled/white, +/area/quarantined_outpost/gym) +"kiN" = ( +/obj/structure/lattice/catwalk, +/obj/item/hullbeacon/red, +/turf/simulated/floor/plating, +/area/quarantined_outpost/cargo_bay) +"kiP" = ( +/obj/structure/sign/directions/medical{ + pixel_y = 40; + dir = 4 + }, +/obj/structure/sign/directions/security{ + dir = 4; + pixel_y = 32 + }, +/obj/effect/floor_decal/corner/dark_blue{ + dir = 4 + }, +/obj/effect/decal/cleanable/floor_damage/rust, +/turf/simulated/floor/tiled, +/area/quarantined_outpost/dorm_hallway) +"kjl" = ( +/obj/random/dirt_75, +/turf/simulated/floor/tiled/light/full, +/area/quarantined_outpost/research) +"kjn" = ( +/obj/effect/floor_decal/corner/brown{ + dir = 9 + }, +/obj/random/dirt_75, +/obj/structure/cable{ + 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/rust, +/area/quarantined_outpost/elevator_hallway) +"kjE" = ( +/obj/machinery/door/window/northleft, +/obj/random/dirt_75, +/turf/simulated/floor/tiled/dark/full, +/area/quarantined_outpost/reception) +"kjH" = ( +/obj/effect/floor_decal/corner/yellow{ + dir = 9 + }, +/obj/machinery/conveyor_switch{ + pixel_x = 14; + pixel_y = 21 + }, +/obj/structure/closet/crate/miningcart, +/turf/simulated/floor/tiled/dark, +/area/quarantined_outpost/engineering/winch_room) +"kkl" = ( +/obj/effect/floor_decal/corner/mauve/diagonal, +/obj/abstract/footprint_spawner/body{ + dir = 8 + }, +/turf/simulated/floor/tiled/white, +/area/quarantined_outpost/extraction_lab) +"kkw" = ( +/obj/effect/floor_decal/corner/mauve{ + dir = 10 + }, +/obj/random/dirt_75, +/obj/item/stack/barricade/wood, +/turf/simulated/floor/tiled/white, +/area/quarantined_outpost/extraction_lab) +"kkJ" = ( +/obj/effect/floor_decal/spline/plain/black, +/obj/structure/railing/mapped{ + dir = 4 + }, +/obj/item/target, +/obj/item/target, +/obj/structure/closet/crate, +/obj/random/dirt_75, +/turf/simulated/floor/tiled/dark/full, +/area/quarantined_outpost/security) +"kkS" = ( +/obj/random/dirt_75, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/quarantined_outpost/reception) +"kla" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/random/dirt_75, +/obj/random/dirt_75, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/effect/landmark/maybe_cut_cable, +/turf/simulated/floor/tiled/gunmetal/full, +/area/quarantined_outpost/engineering/tunnel) +"kle" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/obj/structure/trash_pile, +/turf/simulated/floor/plating, +/area/quarantined_outpost/gym) +"klm" = ( +/obj/effect/decal/cleanable/floor_damage/rust, +/obj/random/dirt_75, +/turf/simulated/floor/tiled/white, +/area/quarantined_outpost/medbay) +"klz" = ( +/obj/random/dirt_75, +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/simulated/floor/tiled, +/area/quarantined_outpost/elevator_hallway) +"klA" = ( +/obj/machinery/atmospherics/pipe/manifold4w/visible, +/turf/simulated/floor/reinforced, +/area/quarantined_outpost/engineering/atmospherics) +"klB" = ( +/obj/effect/floor_decal/corner/dark_blue{ + dir = 10 + }, +/obj/random/dirt_75, +/obj/random/dirt_75, +/turf/simulated/floor/tiled/gunmetal, +/area/quarantined_outpost/engineering/tunnel) +"klH" = ( +/obj/effect/floor_decal/corner/dark_blue{ + dir = 6 + }, +/obj/random/dirt_75, +/obj/random/dirt_75, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/quarantined_outpost/elevator_hallway) +"kmu" = ( +/obj/effect/floor_decal/spline/plain/corner/black, +/obj/random/dirt_75, +/obj/random/dirt_75, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/turf/simulated/floor/tiled/gunmetal, +/area/quarantined_outpost/north_east_hallway) +"kmX" = ( +/obj/structure/sign/examroom{ + pixel_y = 32 + }, +/obj/effect/floor_decal/corner_wide/lime{ + dir = 9 + }, +/obj/structure/reagent_dispensers/water_cooler, +/obj/effect/decal/cleanable/cobweb, +/obj/effect/decal/cleanable/floor_damage/rust, +/obj/random/dirt_75, +/turf/simulated/floor/tiled/white, +/area/quarantined_outpost/medbay) +"knf" = ( +/obj/effect/floor_decal/corner/mauve/diagonal, +/obj/random/dirt_75, +/obj/random/dirt_75, +/turf/simulated/floor/tiled/white, +/area/quarantined_outpost/extraction_lab) +"kob" = ( +/obj/random/dirt_75, +/obj/effect/shuttle_landmark/quarantined_outpost/asteroid/landing_2d, +/turf/simulated/floor/plating/asteroid/airless, +/area/quarantined_outpost/exterior) +"kov" = ( +/obj/effect/floor_decal/corner/mauve/diagonal, +/obj/random/dirt_75, +/turf/simulated/floor/tiled/light, +/area/quarantined_outpost/research) +"koG" = ( +/obj/structure/railing/mapped{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 1 + }, +/obj/effect/landmark/quarantined_outpost/creature, +/turf/simulated/floor/tiled, +/area/quarantined_outpost/cargo_bay) +"koT" = ( +/obj/effect/floor_decal/corner/black{ + dir = 6 + }, +/obj/random/dirt_75, +/turf/simulated/floor/tiled, +/area/quarantined_outpost/dorm_hallway) +"kpg" = ( +/obj/effect/decal/cleanable/floor_damage/random_broken, +/obj/structure/girder, +/turf/simulated/floor/plating, +/area/quarantined_outpost/research) +"kpl" = ( +/obj/structure/platform/ledge/dark{ + dir = 4 + }, +/turf/simulated/floor/exoplanet/basalt, +/area/quarantined_outpost/engineering/winch_room) +"kpH" = ( +/obj/effect/floor_decal/corner/dark_blue{ + dir = 8 + }, +/obj/random/dirt_75, +/turf/simulated/floor/tiled, +/area/quarantined_outpost/elevator_hallway) +"kqb" = ( +/obj/effect/floor_decal/spline/plain/black, +/obj/structure/railing/mapped, +/obj/random/dirt_75, +/obj/effect/decal/cleanable/floor_damage/rust, +/turf/simulated/floor/tiled/white, +/area/quarantined_outpost/extraction_lab) +"kql" = ( +/obj/structure/lattice/catwalk/indoor/grate, +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/quarantined_outpost/cargo_bay) +"kqr" = ( +/obj/effect/floor_decal/corner/dark_blue{ + dir = 10 + }, +/obj/effect/decal/cleanable/floor_damage/rust, +/turf/simulated/floor/tiled/dark, +/area/quarantined_outpost/north_east_hallway) +"kqJ" = ( +/obj/structure/railing/mapped{ + dir = 1 + }, +/obj/structure/lattice/catwalk/indoor/grate/dark, +/obj/effect/decal/rolling_fog, +/turf/simulated/floor/plating, +/area/quarantined_outpost/research) +"kqS" = ( +/obj/structure/table/standard, +/obj/random/dirt_75, +/turf/simulated/floor/tiled/light/full, +/area/quarantined_outpost/research) +"krf" = ( +/obj/item/material/shard, +/obj/structure/window_frame/empty, +/turf/simulated/floor/tiled/dark/full, +/area/quarantined_outpost/research) +"krz" = ( +/obj/structure/bed/stool/chair/office/dark, +/turf/simulated/floor/tiled/dark/full, +/area/quarantined_outpost/engineering/winch_room) +"krK" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/effect/decal/cleanable/floor_damage/rust, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/effect/landmark/quarantined_outpost/creature, +/turf/simulated/floor/tiled/dark, +/area/quarantined_outpost/engineering/atmospherics) +"krO" = ( +/obj/structure/table/standard, +/obj/effect/floor_decal/corner/mauve{ + dir = 5 + }, +/obj/machinery/light/broken{ + dir = 1 + }, +/turf/simulated/floor/tiled/white, +/area/quarantined_outpost/extraction_lab) +"krQ" = ( +/obj/structure/bed/stool/chair/office/light{ + dir = 4 + }, +/turf/simulated/floor/tiled/light, +/area/quarantined_outpost/research) +"ksi" = ( +/obj/effect/decal/cleanable/floor_damage/rust, +/obj/machinery/alarm/west, +/turf/simulated/floor/tiled, +/area/quarantined_outpost/medbay) +"ksl" = ( +/obj/abstract/footprint_spawner{ + dir = 4 + }, +/obj/abstract/footprint_spawner_turn_helper{ + dir = 1 + }, +/obj/random/dirt_75, +/turf/simulated/floor/tiled/dark, +/area/quarantined_outpost/research) +"ksz" = ( +/obj/structure/platform/ledge/dark{ + dir = 8 + }, +/obj/structure/platform/ledge/dark{ + dir = 1 + }, +/obj/effect/decal/rolling_fog, +/turf/simulated/floor/exoplanet/abyss, +/area/quarantined_outpost/chasm) +"ksC" = ( +/obj/effect/floor_decal/corner/mauve{ + dir = 5 + }, +/obj/structure/table/standard, +/obj/structure/sign/flag/sol/old/large/north{ + pixel_y = 32 + }, +/turf/simulated/floor/tiled/light, +/area/quarantined_outpost/research) +"ksX" = ( +/obj/effect/floor_decal/industrial/outline_door/yellow{ + dir = 1 + }, +/obj/effect/floor_decal/industrial/outline_segment/yellow{ + dir = 5 + }, +/obj/effect/floor_decal/industrial/outline_segment/yellow{ + dir = 8 + }, +/obj/effect/decal/cleanable/floor_damage/rust, +/obj/random/dirt_75, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 1 + }, +/turf/simulated/floor/tiled/dark, +/area/quarantined_outpost/research) +"ktU" = ( +/obj/random/dirt_75, +/obj/effect/floor_decal/corner/yellow{ + dir = 10 + }, +/obj/machinery/light/small/maybe_broken/decayed, +/turf/simulated/floor/tiled/gunmetal, +/area/quarantined_outpost/engineering) +"ktV" = ( +/obj/effect/floor_decal/spline/plain/black{ + dir = 10 + }, +/obj/structure/bed/stool/chair/padded/brown{ + dir = 1 + }, +/obj/random/dirt_75, +/obj/random/dirt_75, +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/simulated/floor/lino, +/area/quarantined_outpost/reception) +"ktW" = ( +/obj/structure/lattice/catwalk/indoor/grate, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/quarantined_outpost/dorm_hallway) +"ktZ" = ( +/obj/structure/platform_deco/dark{ + dir = 1 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/obj/effect/decal/rolling_fog, +/turf/simulated/floor/plating, +/area/quarantined_outpost/research) +"kuc" = ( +/obj/effect/floor_decal/corner/brown{ + dir = 9 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/obj/random/dirt_75, +/obj/machinery/light/small/maybe_broken/decayed{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/quarantined_outpost/cargo_bay) +"kuU" = ( +/obj/effect/floor_decal/corner/dark_blue{ + dir = 5 + }, +/obj/random/dirt_75, +/obj/random/maintenance_junk_or_loot, +/turf/simulated/floor/tiled, +/area/quarantined_outpost/elevator_hallway) +"kvo" = ( +/obj/effect/floor_decal/corner/grey{ + dir = 9 + }, +/obj/random/dirt_75, +/obj/random/dirt_75, +/obj/effect/decal/cleanable/cobweb2, +/turf/simulated/floor/tiled/dark, +/area/quarantined_outpost/research) +"kvs" = ( +/obj/structure/table/standard, +/obj/effect/floor_decal/corner_wide/paleblue/full{ + dir = 1 + }, +/obj/item/reagent_containers/food/drinks/drinkingglass/newglass/coffeecup/sol{ + pixel_x = -10; + pixel_y = 1 + }, +/obj/random/dirt_75, +/turf/simulated/floor/tiled/airless, +/area/quarantined_outpost/security) +"kvG" = ( +/obj/effect/floor_decal/corner_wide/lime{ + dir = 9 + }, +/obj/structure/bed/stool/chair{ + dir = 4 + }, +/obj/effect/floor_decal/corner_wide/lime, +/obj/random/dirt_75, +/turf/simulated/floor/tiled/white, +/area/quarantined_outpost/medbay) +"kvJ" = ( +/obj/structure/barricade/wooden{ + dir = 8 + }, +/obj/machinery/vending/coffee, +/turf/simulated/floor/tiled/white, +/area/quarantined_outpost/medbay) +"kvQ" = ( +/obj/structure/weapons_rack, +/obj/item/gun/projectile/automatic/rifle/sol, +/obj/structure/sign/flag/sol/old/large/north{ + pixel_y = 32 + }, +/obj/item/gun/projectile/automatic/rifle/sol, +/turf/simulated/floor/tiled/dark/full/airless, +/area/quarantined_outpost/security) +"kvT" = ( +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 9 + }, +/obj/structure/coatrack{ + pixel_y = 21; + pixel_x = -8 + }, +/obj/structure/reagent_dispensers/water_cooler{ + pixel_y = 20; + pixel_x = 4 + }, +/turf/simulated/floor/wood, +/area/quarantined_outpost/cargo_bay) +"kwc" = ( +/obj/effect/floor_decal/corner_wide/paleblue{ + dir = 6 + }, +/obj/random/dirt_75, +/obj/random/junk, +/obj/machinery/light/small/maybe_broken/decayed{ + dir = 4 + }, +/turf/simulated/floor/tiled/airless, +/area/quarantined_outpost/security) +"kwz" = ( +/obj/structure/railing/mapped{ + dir = 8 + }, +/obj/structure/sign/directions/tcom{ + dir = 1; + pixel_x = -32 + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/simulated/floor/exoplanet/basalt, +/area/quarantined_outpost/north_east_hallway) +"kwB" = ( +/obj/effect/floor_decal/corner/green/diagonal, +/obj/random/dirt_75, +/obj/random/dirt_75, +/obj/structure/cable{ + icon_state = "2-4" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 1 + }, +/turf/simulated/floor/tiled/white, +/area/quarantined_outpost/dorm_hallway) +"kxl" = ( +/obj/machinery/computer/terminal/mob_tracker/quarantined_outpost{ + dir = 4 + }, +/obj/effect/floor_decal/industrial/outline/red, +/obj/random/dirt_75, +/turf/simulated/floor/tiled/ridged, +/area/quarantined_outpost/server_relay/north_west) +"kxD" = ( +/obj/effect/floor_decal/corner_wide/paleblue{ + dir = 6 + }, +/obj/random/dirt_75, +/obj/machinery/light/maybe_broken/decayed{ + dir = 4 + }, +/turf/simulated/floor/tiled/airless, +/area/quarantined_outpost/security) +"kyu" = ( +/obj/structure/table/standard, +/obj/effect/floor_decal/corner/mauve/full{ + dir = 1 + }, +/turf/simulated/floor/tiled/light, +/area/quarantined_outpost/research) +"kyQ" = ( +/obj/random/dirt_75, +/obj/random/dirt_75, +/obj/effect/landmark/quarantined_outpost/creature, +/turf/simulated/floor/exoplanet/basalt, +/area/quarantined_outpost/cavern/east_cavern) +"kze" = ( +/obj/random/dirt_75, +/obj/effect/floor_decal/corner_wide/paleblue{ + dir = 5 + }, +/turf/simulated/floor/tiled, +/area/quarantined_outpost/elevator_hallway) +"kzA" = ( +/obj/effect/floor_decal/corner/dark_blue, +/obj/effect/decal/cleanable/floor_damage/rust, +/turf/simulated/floor/tiled/dark, +/area/quarantined_outpost/research) +"kAb" = ( +/obj/effect/floor_decal/corner_wide/paleblue/diagonal, +/obj/random/dirt_75, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, +/turf/simulated/floor/tiled/airless, +/area/quarantined_outpost/security) +"kAi" = ( +/obj/random/dirt_75, +/obj/effect/floor_decal/spline/plain/black, +/obj/effect/decal/cleanable/floor_damage/rust, +/obj/effect/landmark/quarantined_outpost/creature, +/turf/simulated/floor/tiled/gunmetal, +/area/quarantined_outpost/engineering/tunnel) +"kAn" = ( +/obj/effect/floor_decal/spline/plain/black{ + dir = 4 + }, +/obj/structure/railing/mapped{ + dir = 4 + }, +/obj/random/dirt_75, +/turf/simulated/floor/tiled/gunmetal, +/area/quarantined_outpost/engineering/tunnel) +"kAq" = ( +/obj/effect/floor_decal/corner/dark_blue{ + dir = 10 + }, +/obj/random/dirt_75, +/obj/random/dirt_75, +/obj/structure/railing/mapped, +/turf/simulated/floor/tiled, +/area/quarantined_outpost/elevator_hallway) +"kAI" = ( +/obj/effect/floor_decal/spline/plain/corner/black, +/obj/random/dirt_75, +/turf/simulated/floor/tiled/gunmetal, +/area/quarantined_outpost/engineering/tunnel) +"kAJ" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 8 + }, +/obj/abstract/footprint_spawner{ + dir = 8 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/random/dirt_75, +/turf/simulated/floor/tiled/gunmetal/full, +/area/quarantined_outpost/engineering/winch_room) +"kBg" = ( +/obj/structure/sign/nosmoking_1{ + pixel_y = -32 + }, +/turf/simulated/floor/tiled/dark/full, +/area/quarantined_outpost/research) +"kBk" = ( +/obj/random/dirt_75, +/obj/effect/floor_decal/corner/yellow{ + dir = 5 + }, +/obj/structure/closet/walllocker/medical/firstaid{ + pixel_y = 32 + }, +/obj/effect/decal/cleanable/floor_damage/rust, +/turf/simulated/floor/tiled/gunmetal, +/area/quarantined_outpost/engineering) +"kBC" = ( +/obj/effect/floor_decal/corner/black{ + dir = 1 + }, +/obj/random/dirt_75, +/obj/effect/floor_decal/industrial/outline_door/yellow, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 1 + }, +/turf/simulated/floor/tiled/dark, +/area/quarantined_outpost/entrance_lobby) +"kBI" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/simulated/floor/tiled, +/area/quarantined_outpost/cafeteria) +"kCi" = ( +/obj/structure/tank_wall/oxygen{ + density = 0; + icon_state = "o2-12"; + opacity = 0 + }, +/obj/machinery/atmospherics/portables_connector{ + dir = 4 + }, +/obj/machinery/portable_atmospherics/canister/oxygen, +/turf/simulated/floor/reinforced, +/area/quarantined_outpost/engineering/atmospherics) +"kCo" = ( +/obj/structure/railing/mapped{ + dir = 1 + }, +/obj/effect/floor_decal/spline/plain/black{ + dir = 6 + }, +/obj/structure/bed/stool/chair, +/turf/simulated/floor/tiled/dark/full, +/area/quarantined_outpost/entrance_lobby) +"kDb" = ( +/obj/structure/stairs_railing{ + dir = 4; + pixel_x = -32 + }, +/obj/structure/lattice/catwalk/indoor, +/turf/simulated/floor/exoplanet/abyss, +/area/quarantined_outpost/research/containment) +"kDj" = ( +/obj/structure/table, +/obj/item/material/shard{ + pixel_x = -10 + }, +/obj/effect/decal/remains, +/obj/random/dirt_75, +/turf/simulated/floor/tiled/dark, +/area/quarantined_outpost/entrance_lobby) +"kDs" = ( +/obj/machinery/door/airlock/glass_security{ + dir = 4; + name = "Checkpoint" + }, +/obj/effect/floor_decal/industrial/hatch_door/yellow, +/obj/machinery/door/firedoor{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark/full, +/area/quarantined_outpost/north_east_hallway) +"kDt" = ( +/obj/random/dirt_75, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/quarantined_outpost/reception) +"kDu" = ( +/obj/effect/floor_decal/industrial/hatch_door/yellow, +/obj/machinery/door/firedoor{ + dir = 4 + }, +/obj/machinery/door/airlock/glass_engineering{ + dir = 4; + name = "Atmospherics" + }, +/obj/abstract/footprint_spawner/oil{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark/full, +/area/quarantined_outpost/engineering/atmospherics) +"kDD" = ( +/obj/effect/floor_decal/industrial/outline_door/yellow, +/obj/random/dirt_75, +/turf/simulated/floor/tiled, +/area/quarantined_outpost/reception) +"kDT" = ( +/obj/effect/floor_decal/corner/lime{ + dir = 10 + }, +/obj/effect/decal/cleanable/blood, +/obj/random/dirt_75, +/obj/random/dirt_75, +/turf/simulated/floor/tiled, +/area/quarantined_outpost/cafeteria) +"kDZ" = ( +/obj/effect/floor_decal/spline/plain/black{ + dir = 1 + }, +/obj/machinery/light/small/maybe_broken/decayed{ + dir = 1 + }, +/obj/random/dirt_75, +/obj/effect/decal/cleanable/floor_damage/rust, +/obj/random/dirt_75, +/turf/simulated/floor/tiled/gunmetal, +/area/quarantined_outpost/north_east_hallway) +"kEp" = ( +/turf/simulated/wall/r_wall, +/area/quarantined_outpost/cafeteria) +"kEr" = ( +/obj/effect/floor_decal/spline/plain/black{ + dir = 1 + }, +/obj/structure/railing/mapped{ + dir = 1 + }, +/obj/random/dirt_75, +/turf/simulated/floor/tiled/gunmetal, +/area/quarantined_outpost/engineering/tunnel) +"kEH" = ( +/obj/structure/railing/mapped{ + dir = 1 + }, +/obj/random/dirt_75, +/obj/structure/cable{ + 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/light, +/area/quarantined_outpost/research) +"kEN" = ( +/obj/structure/flora/grass/desert{ + name = "withered grass" + }, +/obj/effect/floor_decal/spline/fancy/wood/cee{ + dir = 8 + }, +/obj/random/dirt_75, +/turf/simulated/floor/exoplanet/barren, +/area/quarantined_outpost/elevator_hallway) +"kFA" = ( +/obj/item/material/stool/chair{ + dir = 1; + pixel_y = -6; + pixel_x = -7 + }, +/obj/random/dirt_75, +/obj/structure/cable{ + 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/dark/full, +/area/quarantined_outpost/elevator_hallway) +"kFN" = ( +/obj/effect/floor_decal/industrial/warning/corner, +/obj/effect/decal/cleanable/floor_damage/rust, +/turf/simulated/floor/tiled/white, +/area/quarantined_outpost/medbay) +"kFQ" = ( +/turf/simulated/wall, +/area/quarantined_outpost/cafeteria/maintenance) +"kGm" = ( +/obj/random/dirt_75, +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/rust, +/area/quarantined_outpost/reception) +"kGW" = ( +/obj/effect/floor_decal/corner/mauve/diagonal, +/obj/random/dirt_75, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 1 + }, +/turf/simulated/floor/tiled/light, +/area/quarantined_outpost/research) +"kHm" = ( +/obj/structure/bed/stool/chair/folding{ + dir = 4 + }, +/obj/effect/floor_decal/corner_wide/lime/diagonal, +/obj/random/dirt_75, +/turf/simulated/floor/tiled/white, +/area/quarantined_outpost/medbay) +"kHo" = ( +/obj/structure/bed/stool/chair/office/dark{ + dir = 8 + }, +/obj/random/dirt_75, +/turf/simulated/floor/tiled/dark/full, +/area/quarantined_outpost/engineering/winch_room) +"kHu" = ( +/obj/effect/floor_decal/corner/brown/full{ + dir = 4 + }, +/obj/random/dirt_75, +/obj/effect/decal/cleanable/floor_damage/rust, +/turf/simulated/floor/tiled, +/area/quarantined_outpost/cargo_bay) +"kIh" = ( +/obj/structure/table/standard, +/obj/effect/floor_decal/corner/dark_blue, +/obj/effect/floor_decal/corner/yellow{ + dir = 8 + }, +/obj/random/tech_supply, +/turf/simulated/floor/tiled/dark, +/area/quarantined_outpost/engineering/atmospherics) +"kIq" = ( +/obj/structure/railing/mapped{ + dir = 1 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled/gunmetal/full, +/area/quarantined_outpost/engineering/tunnel) +"kIu" = ( +/obj/effect/floor_decal/corner/dark_blue{ + dir = 5 + }, +/obj/effect/floor_decal/industrial/outline_straight/yellow{ + dir = 4 + }, +/obj/structure/sign/nosmoking_1{ + pixel_y = 32 + }, +/obj/random/dirt_75, +/turf/simulated/floor/tiled/dark, +/area/quarantined_outpost/research/containment) +"kIz" = ( +/obj/effect/floor_decal/industrial/outline_door/yellow, +/obj/effect/floor_decal/industrial/outline_segment/yellow{ + dir = 10 + }, +/obj/effect/floor_decal/industrial/outline_segment/yellow{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/dark/full, +/area/quarantined_outpost/research/containment) +"kIL" = ( +/obj/effect/floor_decal/industrial/hatch/yellow, +/obj/machinery/door/firedoor{ + dir = 4 + }, +/turf/simulated/floor/tiled/gunmetal/full, +/area/quarantined_outpost/cafeteria) +"kJg" = ( +/obj/structure/cable/orange{ + icon_state = "1-2" + }, +/obj/machinery/door/airlock/hatch{ + name = "Auxiliary Power Compartment" + }, +/obj/random/dirt_75, +/turf/simulated/floor/tiled/dark/full/airless, +/area/quarantined_outpost/auxiliary_power) +"kJp" = ( +/obj/machinery/door/airlock/glass_service, +/obj/machinery/door/firedoor, +/obj/effect/floor_decal/industrial/hatch_door/yellow{ + dir = 1 + }, +/turf/simulated/floor/tiled/full, +/area/quarantined_outpost/cafeteria) +"kJG" = ( +/obj/effect/floor_decal/industrial/outline/operations, +/obj/effect/floor_decal/industrial/loading/operations, +/obj/random/dirt_75, +/obj/machinery/light/small/maybe_broken/decayed{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/quarantined_outpost/cargo_bay) +"kJP" = ( +/obj/structure/lattice/catwalk/indoor/grate/damaged, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, +/turf/simulated/floor/airless, +/area/quarantined_outpost/security) +"kKd" = ( +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 1 + }, +/obj/structure/bed/stool/chair/sofa/right/brown{ + dir = 8 + }, +/turf/simulated/floor/wood, +/area/quarantined_outpost/dorm_hallway) +"kKg" = ( +/obj/effect/decal/cleanable/blood, +/obj/random/dirt_75, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 + }, +/turf/simulated/floor/tiled/dark/full/airless, +/area/quarantined_outpost/security) +"kKr" = ( +/obj/structure/tank_wall/air{ + icon_state = "air15" + }, +/obj/effect/floor_decal/industrial/warning, +/obj/machinery/atmospherics/pipe/manifold/hidden{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/quarantined_outpost/engineering/atmospherics) +"kKF" = ( +/obj/effect/floor_decal/corner/dark_blue{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/red{ + dir = 1 + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/quarantined_outpost/engineering/atmospherics) +"kKW" = ( +/obj/effect/floor_decal/industrial/outline_straight/yellow{ + dir = 8 + }, +/obj/random/dirt_75, +/obj/effect/decal/cleanable/floor_damage/rust, +/turf/simulated/floor/tiled/ridged, +/area/quarantined_outpost/server_relay/north_west) +"kLc" = ( +/obj/effect/floor_decal/corner/mauve{ + dir = 4 + }, +/obj/machinery/light/broken{ + dir = 4 + }, +/obj/random/dirt_75, +/turf/simulated/floor/tiled/white, +/area/quarantined_outpost/extraction_lab) +"kLh" = ( +/obj/effect/landmark/quarantined_outpost/canister_spawn, +/turf/simulated/floor/tiled, +/area/quarantined_outpost/entrance_maintenance) +"kLo" = ( +/obj/structure/cable{ + 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/dark/full, +/area/quarantined_outpost/research) +"kLK" = ( +/obj/effect/decal/cleanable/floor_damage/random_broken, +/obj/effect/decal/cleanable/molten_item, +/turf/simulated/floor/plating, +/area/quarantined_outpost/gym) +"kMb" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 4 + }, +/obj/random/dirt_75, +/obj/item/tape/engineering{ + icon_state = "engineering_door" + }, +/turf/simulated/floor/tiled/dark, +/area/quarantined_outpost/research) +"kMh" = ( +/obj/structure/lattice, +/obj/structure/stairs_railing{ + dir = 4; + pixel_x = -32 + }, +/turf/simulated/floor/exoplanet/abyss, +/area/quarantined_outpost/research/containment) +"kML" = ( +/obj/machinery/portable_atmospherics/canister/hydrogen, +/obj/machinery/atmospherics/portables_connector{ + dir = 1 + }, +/turf/simulated/floor/reinforced, +/area/quarantined_outpost/engineering/atmospherics) +"kNf" = ( +/obj/structure/reagent_dispensers/watertank, +/obj/effect/floor_decal/corner/lime{ + dir = 10 + }, +/obj/random/dirt_75, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/quarantined_outpost/cafeteria) +"kNn" = ( +/obj/random/dirt_75, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 1 + }, +/turf/simulated/floor/tiled/gunmetal, +/area/quarantined_outpost/north_east_hallway) +"kND" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/random/dirt_75, +/obj/random/dirt_75, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled/dark, +/area/quarantined_outpost/engineering/atmospherics) +"kNI" = ( +/obj/item/stack/barricade/wood, +/obj/random/dirt_75, +/obj/effect/decal/cleanable/generic, +/turf/simulated/floor/tiled, +/area/quarantined_outpost/dorm_hallway) +"kNQ" = ( +/obj/effect/decal/cleanable/blood, +/obj/random/dirt_75, +/turf/simulated/floor/tiled, +/area/quarantined_outpost/entrance_lobby) +"kNZ" = ( +/obj/machinery/door/firedoor, +/obj/effect/floor_decal/industrial/hatch_door/yellow{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/yellow{ + dir = 10 + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/door/airlock/highsecurity{ + name = "Heavy Containment" + }, +/turf/simulated/floor/tiled/dark/full, +/area/quarantined_outpost/research/containment) +"kOc" = ( +/obj/effect/floor_decal/industrial/hatch/yellow, +/obj/machinery/door/firedoor, +/turf/simulated/floor/tiled/full, +/area/quarantined_outpost/cargo_bay) +"kOR" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 8 + }, +/turf/simulated/floor/tiled/dark/full, +/area/quarantined_outpost/research/containment) +"kOY" = ( +/obj/effect/floor_decal/corner/dark_blue{ + dir = 1 + }, +/obj/effect/floor_decal/corner/yellow{ + dir = 8 + }, +/obj/abstract/footprint_spawner/oil, +/obj/machinery/alarm/west, +/turf/simulated/floor/tiled/dark, +/area/quarantined_outpost/engineering/atmospherics) +"kPj" = ( +/obj/structure/stairs_railing{ + pixel_y = 30; + pixel_x = -1 + }, +/obj/structure/railing/mapped{ + dir = 8 + }, +/obj/structure/bed/stool/chair/folding{ + dir = 8 + }, +/obj/structure/lattice/catwalk/indoor, +/turf/simulated/floor/plating, +/area/quarantined_outpost/cargo_bay) +"kPz" = ( +/obj/structure/bed/stool/chair/folding{ + dir = 4 + }, +/obj/effect/decal/cleanable/floor_damage/rust, +/turf/simulated/floor/tiled, +/area/quarantined_outpost/cafeteria) +"kPE" = ( +/obj/effect/floor_decal/corner/dark_green{ + dir = 5 + }, +/obj/effect/floor_decal/industrial/outline/grey, +/obj/random/dirt_75, +/obj/item/stack/material/steel{ + pixel_y = 8; + pixel_x = -7 + }, +/turf/simulated/floor/tiled, +/area/quarantined_outpost/gym) +"kQd" = ( +/obj/effect/floor_decal/corner_wide/lime{ + dir = 10 + }, +/obj/random/dirt_75, +/obj/effect/landmark/quarantined_outpost/creature, +/turf/simulated/floor/tiled/white, +/area/quarantined_outpost/medbay) +"kQe" = ( +/obj/structure/tank_wall/oxygen{ + icon_state = "o2-13" + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold4w/hidden, +/turf/simulated/floor/plating, +/area/quarantined_outpost/engineering/atmospherics) +"kQs" = ( +/obj/effect/floor_decal/spline/plain/black, +/obj/structure/railing/mapped, +/obj/random/dirt_75, +/obj/abstract/footprint_spawner{ + dir = 8 + }, +/obj/machinery/light/small/maybe_broken/decayed, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 1 + }, +/turf/simulated/floor/tiled/gunmetal, +/area/quarantined_outpost/engineering/tunnel) +"kQu" = ( +/obj/structure/lattice/catwalk/indoor/grate/dark, +/obj/structure/cable{ + icon_state = "2-4" + }, +/turf/simulated/floor/plating, +/area/quarantined_outpost/north_east_hallway/maintenance) +"kQH" = ( +/obj/random/dirt_75, +/obj/effect/decal/cleanable/floor_damage/rust, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/abstract/footprint_spawner{ + dir = 1 + }, +/obj/abstract/footprint_spawner_turn_helper{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/quarantined_outpost/cargo_bay) +"kQM" = ( +/obj/random/dirt_75, +/obj/structure/trash_pile, +/turf/simulated/floor/tiled, +/area/quarantined_outpost/entrance_maintenance) +"kQP" = ( +/obj/structure/table/standard, +/obj/item/towel/random{ + pixel_x = 2; + pixel_y = 8 + }, +/obj/item/towel/random{ + pixel_x = 2; + pixel_y = 12 + }, +/obj/effect/floor_decal/corner/dark_green/full{ + dir = 1 + }, +/obj/effect/floor_decal/spline/plain/black, +/obj/effect/decal/cleanable/cobweb2, +/obj/machinery/light/small/maybe_broken/decayed{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/quarantined_outpost/gym) +"kQQ" = ( +/obj/effect/floor_decal/corner/grey/diagonal, +/obj/effect/floor_decal/spline/plain{ + dir = 1 + }, +/obj/random/dirt_75, +/obj/random/dirt_75, +/turf/simulated/floor/tiled/white, +/area/quarantined_outpost/cafeteria) +"kQS" = ( +/obj/effect/floor_decal/corner/dark_blue{ + dir = 10 + }, +/obj/random/dirt_75, +/obj/random/dirt_75, +/obj/structure/table/standard, +/turf/simulated/floor/tiled, +/area/quarantined_outpost/elevator_hallway) +"kQV" = ( +/obj/structure/table/wood, +/obj/effect/floor_decal/corner_wide/lime/diagonal, +/turf/simulated/floor/tiled/white, +/area/quarantined_outpost/medbay) +"kQW" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/red{ + dir = 9 + }, +/obj/random/dirt_75, +/turf/simulated/floor/tiled/dark, +/area/quarantined_outpost/engineering/atmospherics) +"kRd" = ( +/turf/simulated/floor/tiled/ramp, +/area/quarantined_outpost/engineering/winch_room) +"kRA" = ( +/obj/structure/lattice/catwalk/indoor/grate/old, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/airless, +/area/quarantined_outpost/security) +"kRE" = ( +/obj/structure/railing/mapped{ + dir = 8 + }, +/obj/effect/floor_decal/industrial/outline/red, +/obj/item/handcuffs/ziptie, +/obj/item/handcuffs/ziptie, +/obj/item/handcuffs/ziptie, +/obj/structure/table/rack/retail_shelf, +/turf/simulated/floor/tiled/dark/full/airless, +/area/quarantined_outpost/security) +"kSA" = ( +/obj/structure/bed/stool/chair/office/light{ + dir = 8 + }, +/obj/effect/floor_decal/corner/dark_blue{ + dir = 1 + }, +/obj/random/dirt_75, +/turf/simulated/floor/tiled/dark, +/area/quarantined_outpost/research/containment) +"kSH" = ( +/turf/simulated/wall/shuttle/scc_space_ship/cardinal, +/area/quarantined_outpost/entrance_lobby) +"kTB" = ( +/obj/effect/floor_decal/spline/plain/black{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 1 + }, +/turf/simulated/floor/tiled/rust, +/area/quarantined_outpost/reception) +"kTI" = ( +/obj/machinery/door/airlock/hatch, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/random/dirt_75, +/turf/simulated/floor/plating, +/area/quarantined_outpost/dorm_hallway) +"kUd" = ( +/obj/structure/lattice, +/turf/simulated/floor/exoplanet/abyss, +/area/quarantined_outpost/research/containment) +"kUl" = ( +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 1 + }, +/obj/machinery/light/small/decayed{ + dir = 4 + }, +/obj/effect/decal/rolling_fog, +/turf/simulated/floor/plating, +/area/quarantined_outpost/research) +"kUH" = ( +/obj/effect/floor_decal/corner_wide/lime/diagonal, +/obj/effect/decal/cleanable/blood, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/turf/simulated/floor/tiled/white, +/area/quarantined_outpost/medbay) +"kUW" = ( +/obj/structure/bed/stool/chair/office/light, +/obj/random/dirt_75, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 1 + }, +/turf/simulated/floor/tiled/light/full, +/area/quarantined_outpost/research) +"kUZ" = ( +/obj/effect/decal/cleanable/cobweb, +/obj/effect/floor_decal/corner/dark_blue/full{ + dir = 8 + }, +/obj/structure/closet, +/obj/random/dirt_75, +/obj/machinery/light/small/maybe_broken/decayed{ + dir = 1 + }, +/obj/random/loot, +/turf/simulated/floor/tiled, +/area/quarantined_outpost/cafeteria) +"kVw" = ( +/obj/structure/table/standard, +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/item/storage/box/flares{ + pixel_y = 13; + pixel_x = 2 + }, +/obj/random/dirt_75, +/turf/simulated/floor/tiled/dark/full/airless, +/area/quarantined_outpost/security) +"kVN" = ( +/obj/machinery/atmospherics/unary/freezer, +/obj/effect/floor_decal/industrial/warning{ + dir = 10 + }, +/turf/simulated/floor/carpet/rubber, +/area/quarantined_outpost/engineering/atmospherics) +"kVX" = ( +/obj/effect/floor_decal/spline/plain/black{ + dir = 1 + }, +/obj/structure/bed/stool/chair/sofa/right/brown{ + dir = 8 + }, +/obj/structure/sign/nosmoking_2{ + pixel_y = 30; + pixel_x = -4 + }, +/obj/random/dirt_75, +/obj/effect/decal/cleanable/cobweb2, +/turf/simulated/floor/lino, +/area/quarantined_outpost/reception) +"kWh" = ( +/obj/machinery/door/airlock/maintenance_hatch{ + dir = 4 + }, +/obj/structure/lattice/catwalk/indoor/grate/dark, +/turf/simulated/floor/plating, +/area/quarantined_outpost/engineering) +"kWI" = ( +/obj/effect/floor_decal/corner_wide/lime/diagonal, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 1 + }, +/turf/simulated/floor/tiled/white, +/area/quarantined_outpost/medbay) +"kWX" = ( +/obj/structure/lattice/catwalk/indoor/grate/old, +/obj/machinery/alarm/east, +/turf/simulated/floor/plating, +/area/quarantined_outpost/north_east_hallway) +"kWZ" = ( +/obj/effect/floor_decal/corner_wide/paleblue/diagonal, +/turf/simulated/floor/tiled/airless, +/area/quarantined_outpost/security) +"kXb" = ( +/obj/random/dirt_75, +/turf/simulated/floor/plating, +/area/quarantined_outpost/cargo_bay) +"kXd" = ( +/obj/structure/lattice, +/obj/structure/stairs_railing{ + dir = 8 + }, +/turf/simulated/floor/exoplanet/abyss, +/area/quarantined_outpost/research/containment) +"kXh" = ( +/obj/effect/floor_decal/spline/plain/black{ + dir = 1 + }, +/obj/random/dirt_75, +/obj/random/dirt_75, +/obj/effect/decal/cleanable/floor_damage/rust, +/turf/simulated/floor/tiled/gunmetal, +/area/quarantined_outpost/engineering/tunnel) +"kXu" = ( +/obj/random/dirt_75, +/obj/effect/floor_decal/spline/plain/black, +/obj/random/dirt_75, +/turf/simulated/floor/tiled/gunmetal, +/area/quarantined_outpost/engineering/tunnel) +"kYh" = ( +/obj/effect/floor_decal/industrial/hatch/yellow, +/obj/machinery/door/firedoor{ + dir = 1 + }, +/obj/structure/plasticflaps, +/obj/machinery/conveyor{ + dir = 1 + }, +/turf/simulated/floor/tiled/dark/full, +/area/quarantined_outpost/cargo_bay) +"kYC" = ( +/obj/effect/floor_decal/spline/plain/black{ + dir = 1 + }, +/obj/structure/bed/stool/chair{ + dir = 1 + }, +/obj/random/dirt_75, +/turf/simulated/floor/tiled/dark/full, +/area/quarantined_outpost/elevator_hallway) +"kZa" = ( +/obj/structure/railing/mapped{ + dir = 8 + }, +/turf/simulated/floor/exoplanet/asteroid/ash/rocky, +/area/quarantined_outpost/exterior) +"kZq" = ( +/obj/structure/filingcabinet/filingcabinet{ + pixel_x = -10 + }, +/obj/structure/filingcabinet/filingcabinet{ + pixel_x = 10 + }, +/obj/structure/filingcabinet/filingcabinet, +/obj/effect/floor_decal/corner/brown{ + dir = 5 + }, +/obj/effect/floor_decal/industrial/outline/operations, +/turf/simulated/floor/tiled, +/area/quarantined_outpost/cargo_bay) +"lab" = ( +/obj/random/maintenance_junk_or_loot, +/obj/random/dirt_75, +/turf/simulated/floor/tiled, +/area/quarantined_outpost/entrance_maintenance) +"lbc" = ( +/obj/effect/floor_decal/corner/dark_green/diagonal, +/obj/random/dirt_75, +/obj/random/dirt_75, +/obj/structure/trash_pile, +/turf/simulated/floor/tiled, +/area/quarantined_outpost/gym) +"lbw" = ( +/obj/structure/table/standard, +/obj/effect/floor_decal/spline/plain/black, +/turf/simulated/floor/tiled/white, +/area/quarantined_outpost/extraction_lab) +"lbE" = ( +/obj/item/stack/tile/floor{ + pixel_x = 3; + pixel_y = -6 + }, +/obj/structure/bed/padded, +/obj/structure/sign/flag/luna{ + pixel_y = -32 + }, +/obj/effect/decal/cleanable/blood, +/obj/random/dirt_75, +/turf/simulated/floor/plating, +/area/quarantined_outpost/dorm_hallway) +"lck" = ( +/obj/effect/floor_decal/industrial/outline_door/custodial{ + dir = 8 + }, +/obj/random/dirt_75, +/obj/effect/floor_decal/industrial/outline_segment/research{ + dir = 9 + }, +/obj/effect/decal/cleanable/floor_damage/rust, +/turf/simulated/floor/tiled/white, +/area/quarantined_outpost/extraction_lab) +"lcJ" = ( +/obj/structure/platform_stairs/full/south_north_cap{ + dir = 8 + }, +/turf/simulated/floor/exoplanet/basalt, +/area/quarantined_outpost/north_east_hallway) +"ldl" = ( +/obj/machinery/light/small/maybe_broken/decayed{ + dir = 4 + }, +/turf/simulated/floor/exoplanet/abyss, +/area/quarantined_outpost/research/containment) +"ldE" = ( +/obj/structure/lattice/catwalk, +/turf/simulated/floor/exoplanet/abyss, +/area/quarantined_outpost/engineering/winch_room) +"lec" = ( +/obj/random/dirt_75, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, +/turf/simulated/floor/tiled/full, +/area/quarantined_outpost/cargo_bay) +"lem" = ( +/obj/random/dirt_75, +/obj/random/dirt_75, +/turf/simulated/floor/plating, +/area/quarantined_outpost/gym) +"len" = ( +/obj/effect/floor_decal/spline/plain/corner/black{ + dir = 8 + }, +/obj/random/dirt_75, +/obj/random/dirt_75, +/obj/structure/cable{ + icon_state = "1-8" + }, +/obj/structure/inflatable/wall, +/turf/simulated/floor/tiled/gunmetal, +/area/quarantined_outpost/north_east_hallway) +"leC" = ( +/obj/random/dirt_75, +/turf/simulated/floor/tiled/rust, +/area/quarantined_outpost/dorm_hallway) +"leJ" = ( +/obj/random/dirt_75, +/turf/simulated/floor/plating, +/area/quarantined_outpost/engineering/tunnel) +"leX" = ( +/obj/machinery/door/airlock/maintenance_hatch{ + dir = 4 + }, +/obj/machinery/door/firedoor{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/quarantined_outpost/entrance_maintenance) +"lfV" = ( +/obj/effect/floor_decal/corner/mauve, +/obj/effect/decal/cleanable/blood, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 1 + }, +/obj/effect/landmark/trapped_vent/maybe/quarantined_outpost, +/obj/machinery/alarm/south, +/turf/simulated/floor/tiled/light, +/area/quarantined_outpost/research) +"lfX" = ( +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/obj/machinery/portable_atmospherics/powered/scrubber, +/turf/simulated/floor/tiled/dark/full, +/area/quarantined_outpost/cargo_bay) +"lgB" = ( +/obj/item/gun/projectile/pistol/sol{ + pixel_y = 7; + pixel_x = -8 + }, +/obj/effect/decal/cleanable/blood, +/obj/item/ammo_casing/rifle/used{ + pixel_y = -7; + pixel_x = -7 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled/light, +/area/quarantined_outpost/research) +"lgF" = ( +/obj/machinery/light/small/emergency{ + dir = 1 + }, +/obj/structure/lattice/catwalk/indoor/grate/dark, +/turf/simulated/floor/plating, +/area/quarantined_outpost/north_east_hallway/maintenance) +"lgW" = ( +/obj/random/dirt_75, +/obj/random/dirt_75, +/obj/random/dirt_75, +/obj/random/dirt_75, +/turf/simulated/floor/exoplanet/asteroid/ash/rocky, +/area/quarantined_outpost/exterior) +"lhe" = ( +/obj/random/dirt_75, +/obj/effect/floor_decal/corner/yellow{ + dir = 8 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/gunmetal, +/area/quarantined_outpost/engineering) +"lhv" = ( +/turf/simulated/wall, +/area/quarantined_outpost/engineering) +"lhz" = ( +/obj/effect/floor_decal/corner_wide/lime, +/obj/structure/bed/stool/chair{ + dir = 4 + }, +/obj/random/dirt_75, +/turf/simulated/floor/tiled/white, +/area/quarantined_outpost/medbay) +"lil" = ( +/obj/effect/floor_decal/corner/mauve/diagonal, +/obj/random/dirt_75, +/obj/effect/decal/cleanable/floor_damage/rust, +/turf/simulated/floor/tiled/white, +/area/quarantined_outpost/extraction_lab) +"liN" = ( +/obj/effect/floor_decal/corner_wide/lime{ + dir = 9 + }, +/obj/random/dirt_75, +/obj/random/dirt_75, +/obj/machinery/atmospherics/unary/vent_scrubber/on, +/turf/simulated/floor/tiled/white, +/area/quarantined_outpost/medbay) +"lja" = ( +/obj/effect/floor_decal/corner/dark_blue{ + dir = 9 + }, +/obj/random/dirt_75, +/obj/random/dirt_75, +/obj/random/junk, +/obj/structure/sign/flag/sol/old{ + pixel_x = -32 + }, +/turf/simulated/floor/tiled, +/area/quarantined_outpost/elevator_hallway) +"ljb" = ( +/obj/effect/floor_decal/spline/plain/corner/black{ + dir = 1 + }, +/obj/random/dirt_75, +/obj/random/dirt_75, +/turf/simulated/floor/lino, +/area/quarantined_outpost/reception) +"lkg" = ( +/obj/effect/floor_decal/corner/dark_blue{ + dir = 10 + }, +/obj/structure/bed/stool/chair{ + dir = 1 + }, +/obj/random/dirt_75, +/turf/simulated/floor/tiled, +/area/quarantined_outpost/north_east_hallway) +"lkx" = ( +/obj/structure/closet/body_bag, +/obj/random/loot, +/obj/random/dirt_75, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 + }, +/turf/simulated/floor/tiled/white, +/area/quarantined_outpost/medbay) +"lls" = ( +/obj/effect/floor_decal/corner/yellow/full{ + dir = 1 + }, +/obj/random/dirt_75, +/turf/simulated/floor/tiled/gunmetal, +/area/quarantined_outpost/engineering/tunnel) +"llX" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/random/dirt_75, +/obj/effect/decal/cleanable/floor_damage/rust, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled/gunmetal, +/area/quarantined_outpost/engineering/tunnel) +"lmE" = ( +/obj/effect/floor_decal/industrial/hatch/yellow, +/obj/random/dirt_75, +/turf/simulated/floor/tiled/full/airless, +/area/quarantined_outpost/security) +"lmH" = ( +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/machinery/portable_atmospherics/canister/empty/oxygen, +/turf/simulated/floor/tiled/dark/full, +/area/quarantined_outpost/elevator_hallway/maintenance) +"lmK" = ( +/obj/effect/floor_decal/corner_wide/paleblue{ + dir = 10 + }, +/turf/simulated/floor/tiled/airless, +/area/quarantined_outpost/security) +"lnf" = ( +/obj/effect/floor_decal/corner/dark_blue{ + dir = 1 + }, +/obj/effect/floor_decal/corner/yellow{ + dir = 8 + }, +/obj/effect/floor_decal/corner/yellow{ + dir = 4 + }, +/obj/random/dirt_75, +/obj/effect/decal/cleanable/cobweb, +/obj/structure/sign/securearea{ + pixel_x = -32 + }, +/turf/simulated/floor/tiled/dark, +/area/quarantined_outpost/engineering/atmospherics) +"lnD" = ( +/obj/effect/decal/cleanable/cobweb2, +/obj/structure/closet/crate/extinguisher_cartridges, +/obj/effect/floor_decal/corner/yellow{ + dir = 4 + }, +/turf/simulated/floor/tiled/gunmetal, +/area/quarantined_outpost/engineering) +"lod" = ( +/obj/structure/grille/broken, +/obj/random/dirt_75, +/obj/structure/cable{ + icon_state = "1-8" + }, +/turf/simulated/floor/plating, +/area/quarantined_outpost/cafeteria/maintenance) +"loe" = ( +/obj/effect/decal/cleanable/cobweb2, +/obj/structure/closet, +/obj/random/loot, +/turf/simulated/floor/plating, +/area/quarantined_outpost/elevator_hallway) +"lon" = ( +/obj/effect/floor_decal/industrial/hatch/medical, +/turf/simulated/floor/tiled/white, +/area/quarantined_outpost/north_east_hallway) +"loq" = ( +/obj/effect/floor_decal/spline/plain/black{ + dir = 8 + }, +/obj/effect/decal/cleanable/floor_damage/rust, +/obj/effect/decal/cleanable/blood, +/obj/effect/decal/remains, +/turf/simulated/floor/tiled/rust, +/area/quarantined_outpost/cargo_bay) +"loK" = ( +/obj/effect/floor_decal/industrial/outline_straight/yellow{ + dir = 1 + }, +/obj/random/dirt_75, +/turf/simulated/floor/tiled/ridged, +/area/quarantined_outpost/server_relay/north_east) +"loO" = ( +/obj/effect/floor_decal/corner/yellow{ + dir = 8 + }, +/obj/effect/floor_decal/corner/dark_blue, +/obj/structure/railing/mapped{ + dir = 4 + }, +/obj/effect/floor_decal/corner/yellow{ + dir = 4 + }, +/obj/structure/bed/stool/chair{ + dir = 1 + }, +/obj/random/dirt_75, +/turf/simulated/floor/tiled/dark, +/area/quarantined_outpost/north_east_hallway) +"loP" = ( +/obj/effect/floor_decal/corner_wide/lime{ + dir = 1 + }, +/obj/random/dirt_75, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 1 + }, +/obj/effect/landmark/quarantined_outpost/creature, +/turf/simulated/floor/tiled/white, +/area/quarantined_outpost/medbay) +"lqp" = ( +/obj/structure/table/standard, +/obj/effect/floor_decal/corner_wide/paleblue{ + dir = 6 + }, +/turf/simulated/floor/tiled/airless, +/area/quarantined_outpost/security) +"lqA" = ( +/obj/effect/floor_decal/corner/red{ + dir = 6 + }, +/obj/structure/platform/dark{ + dir = 8 + }, +/obj/structure/bed/stool/padded/black{ + dir = 8 + }, +/obj/abstract/footprint_spawner/body, +/obj/abstract/footprint_spawner_turn_helper{ + dir = 8 + }, +/turf/simulated/floor/tiled/dark, +/area/quarantined_outpost/research) +"lqL" = ( +/obj/effect/floor_decal/corner/dark_blue/full{ + dir = 4 + }, +/obj/random/dirt_75, +/turf/simulated/floor/tiled/dark, +/area/quarantined_outpost/research) +"lqO" = ( +/obj/machinery/power/apc/empty/south, +/obj/structure/cable, +/obj/structure/lattice/catwalk/indoor/grate/dark, +/turf/simulated/floor/plating, +/area/quarantined_outpost/server_relay/south_east) +"lrc" = ( +/obj/effect/floor_decal/corner/yellow{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/effect/decal/cleanable/blood, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled/gunmetal, +/area/quarantined_outpost/engineering/tunnel) +"lrA" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/quarantined_outpost/entrance_lobby) +"lrK" = ( +/obj/effect/floor_decal/corner/brown{ + dir = 10 + }, +/obj/random/dirt_75, +/obj/structure/sign/directions/tcom{ + pixel_y = -32 + }, +/turf/simulated/floor/tiled, +/area/quarantined_outpost/cargo_bay) +"lsu" = ( +/obj/structure/table/standard, +/obj/effect/floor_decal/spline/plain/black{ + dir = 9 + }, +/turf/simulated/floor/tiled/white, +/area/quarantined_outpost/extraction_lab) +"ltc" = ( +/obj/random/dirt_75, +/obj/structure/closet/crate/miningcart, +/obj/random/junk, +/turf/simulated/floor/tiled/dark/full, +/area/quarantined_outpost/engineering/winch_room) +"ltf" = ( +/obj/random/dirt_75, +/obj/random/maintenance_junk_or_loot, +/turf/simulated/floor/plating, +/area/quarantined_outpost/engineering/tunnel) +"lts" = ( +/obj/effect/floor_decal/corner/dark_blue{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 1 + }, +/turf/simulated/floor/tiled/rust, +/area/quarantined_outpost/elevator_hallway) +"ltS" = ( +/obj/effect/floor_decal/corner/mauve, +/obj/structure/sign/flag/sol/old{ + pixel_y = -32 + }, +/obj/effect/decal/cleanable/floor_damage/rust, +/turf/simulated/floor/tiled/white, +/area/quarantined_outpost/extraction_lab) +"luk" = ( +/obj/effect/map_effect/window_spawner/full/reinforced/firedoor, +/obj/structure/curtain/open/bed, +/turf/simulated/floor/tiled/full, +/area/quarantined_outpost/cafeteria) +"luq" = ( +/obj/effect/floor_decal/corner/dark_blue{ + dir = 10 + }, +/obj/effect/floor_decal/spline/plain/black, +/obj/random/dirt_75, +/turf/simulated/floor/tiled, +/area/quarantined_outpost/reception) +"luT" = ( +/obj/random/dirt_75, +/obj/structure/cable{ + 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/dark/full, +/area/quarantined_outpost/research/containment) +"lvt" = ( +/obj/effect/floor_decal/corner/mauve{ + dir = 6 + }, +/obj/effect/floor_decal/spline/plain/corner/purple{ + dir = 1 + }, +/obj/random/dirt_75, +/turf/simulated/floor/tiled/light, +/area/quarantined_outpost/research) +"lvv" = ( +/obj/effect/decal/rolling_fog, +/turf/simulated/floor/exoplanet/abyss, +/area/quarantined_outpost/chasm) +"lww" = ( +/obj/effect/decal/remains, +/turf/simulated/floor/exoplanet/basalt, +/area/quarantined_outpost/extraction_lab) +"lwD" = ( +/obj/effect/floor_decal/corner/lime{ + dir = 4 + }, +/obj/random/dirt_75, +/obj/structure/sign/flag/sol/old{ + pixel_y = 32 + }, +/turf/simulated/floor/tiled, +/area/quarantined_outpost/cafeteria) +"lwR" = ( +/obj/random/dirt_75, +/obj/effect/floor_decal/corner/dark_blue{ + dir = 5 + }, +/obj/structure/table/standard, +/obj/random/smokable{ + pixel_y = 1; + pixel_x = 5 + }, +/obj/item/material/ashtray/bronze{ + pixel_x = -7; + pixel_y = -3 + }, +/turf/simulated/floor/tiled, +/area/quarantined_outpost/elevator_hallway) +"lxo" = ( +/obj/structure/lattice/catwalk, +/obj/structure/railing/mapped{ + dir = 4 + }, +/obj/structure/railing/mapped, +/turf/simulated/floor/exoplanet/abyss, +/area/quarantined_outpost/engineering/atmospherics) +"lxx" = ( +/obj/effect/floor_decal/corner/dark_blue/full{ + dir = 1 + }, +/obj/random/dirt_75, +/obj/machinery/light/small/maybe_broken/decayed{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/quarantined_outpost/cafeteria) +"lyk" = ( +/obj/effect/floor_decal/industrial/outline_door/yellow, +/obj/random/dirt_75, +/obj/random/dirt_75, +/turf/simulated/floor/tiled, +/area/quarantined_outpost/reception) +"lyB" = ( +/obj/machinery/door/airlock/maintenance_hatch{ + dir = 4; + welded = 1 + }, +/turf/simulated/floor/plating, +/area/quarantined_outpost/security) +"lyF" = ( +/obj/structure/bed/stool/chair, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/effect/floor_decal/corner/dark_blue{ + dir = 1 + }, +/turf/simulated/floor/tiled/dark, +/area/quarantined_outpost/research) +"lyP" = ( +/obj/effect/floor_decal/industrial/loading/research{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/quarantined_outpost/research) +"lzP" = ( +/obj/machinery/light/floor/maybe_broken/decayed{ + dir = 4 + }, +/obj/effect/decal/cleanable/floor_damage/rust, +/turf/simulated/floor/tiled/light, +/area/quarantined_outpost/research) +"lAb" = ( +/obj/effect/floor_decal/corner/yellow{ + dir = 8 + }, +/obj/effect/floor_decal/corner/dark_blue{ + dir = 1 + }, +/obj/effect/floor_decal/corner/yellow{ + dir = 4 + }, +/obj/effect/decal/cleanable/cobweb, +/obj/structure/table/rack, +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/item/stack/material/steel{ + amount = 50; + pixel_y = 5; + pixel_x = -3 + }, +/turf/simulated/floor/tiled/dark, +/area/quarantined_outpost/engineering/atmospherics) +"lAl" = ( +/obj/random/dirt_75, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled/gunmetal/full, +/area/quarantined_outpost/engineering/tunnel) +"lAq" = ( +/obj/structure/flora/rock/pile/random, +/obj/random/dirt_75, +/turf/simulated/floor/exoplanet/asteroid/ash/rocky, +/area/quarantined_outpost/exterior) +"lAv" = ( +/obj/structure/table/reinforced/steel, +/obj/machinery/door/window/desk/eastleft, +/obj/item/paper_bin{ + pixel_y = 8; + pixel_x = -4 + }, +/obj/machinery/door/blast/shutters/open{ + dir = 8 + }, +/obj/machinery/door/firedoor{ + dir = 4 + }, +/obj/structure/noticeboard{ + pixel_y = 32 + }, +/turf/simulated/floor/tiled/dark/full, +/area/quarantined_outpost/entrance_lobby) +"lBa" = ( +/obj/machinery/conveyor{ + dir = 9 + }, +/turf/simulated/floor/plating, +/area/quarantined_outpost/cargo_bay) +"lBY" = ( +/obj/effect/floor_decal/corner/mauve, +/obj/random/dirt_75, +/turf/simulated/floor/tiled/light, +/area/quarantined_outpost/research) +"lCa" = ( +/obj/effect/floor_decal/industrial/outline_door/medical, +/obj/effect/floor_decal/industrial/outline_segment/medical{ + dir = 4 + }, +/obj/effect/floor_decal/industrial/outline_segment/medical{ + dir = 10 + }, +/obj/effect/landmark/quarantined_outpost/creature, +/turf/simulated/floor/tiled/white, +/area/quarantined_outpost/medbay) +"lCk" = ( +/obj/effect/floor_decal/corner/lime{ + dir = 8 + }, +/obj/random/dirt_75, +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/simulated/floor/tiled, +/area/quarantined_outpost/cafeteria) +"lCl" = ( +/obj/structure/table/reinforced/steel, +/obj/structure/window/reinforced, +/turf/simulated/floor/tiled/dark/full, +/area/quarantined_outpost/reception) +"lCq" = ( +/obj/structure/platform_deco/ledge/dark{ + dir = 1 + }, +/obj/effect/decal/rolling_fog, +/turf/simulated/floor/exoplanet/abyss, +/area/quarantined_outpost/chasm) +"lCr" = ( +/obj/effect/floor_decal/corner/dark_blue, +/obj/effect/floor_decal/corner/yellow{ + dir = 8 + }, +/obj/effect/decal/cleanable/floor_damage/rust, +/obj/random/dirt_75, +/turf/simulated/floor/tiled/dark, +/area/quarantined_outpost/north_east_hallway) +"lCK" = ( +/obj/effect/map_effect/window_spawner/full/reinforced/firedoor, +/turf/simulated/floor/tiled/dark/full/airless, +/area/quarantined_outpost/security) +"lCU" = ( +/obj/structure/cable/orange{ + icon_state = "1-2" + }, +/obj/effect/map_effect/marker/airlock/quarantined_outpost/entrance, +/obj/effect/floor_decal/industrial/outline_door/yellow, +/obj/random/dirt_75, +/obj/machinery/atmospherics/unary/vent_pump/high_volume{ + dir = 1 + }, +/obj/effect/floor_decal/industrial/outline_segment/yellow{ + dir = 10 + }, +/turf/simulated/floor/plating, +/area/quarantined_outpost/entrance_lobby) +"lCV" = ( +/obj/machinery/door/firedoor{ + dir = 4 + }, +/obj/effect/floor_decal/industrial/hatch_door/medical, +/obj/machinery/door/airlock/glass_medical{ + dir = 4; + name = "Break Room" + }, +/turf/simulated/floor/tiled/white, +/area/quarantined_outpost/medbay) +"lDV" = ( +/obj/effect/floor_decal/corner/dark_blue{ + dir = 9 + }, +/obj/structure/railing/mapped{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/quarantined_outpost/elevator_hallway) +"lEA" = ( +/obj/effect/floor_decal/corner/dark_blue{ + dir = 5 + }, +/obj/structure/bed/stool/chair/sofa/brown, +/obj/structure/sign/flag/sol/old{ + pixel_y = 32 + }, +/turf/simulated/floor/tiled, +/area/quarantined_outpost/cafeteria) +"lEO" = ( +/obj/structure/flora/pottedplant/dead, +/obj/effect/floor_decal/corner/dark_green, +/obj/random/dirt_75, +/obj/machinery/light/small/maybe_broken/decayed, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/quarantined_outpost/gym) +"lEY" = ( +/obj/structure/bed/stool/chair{ + dir = 4 + }, +/obj/effect/floor_decal/corner_wide/lime{ + dir = 1 + }, +/obj/random/dirt_75, +/turf/simulated/floor/tiled/white, +/area/quarantined_outpost/medbay) +"lFa" = ( +/obj/effect/floor_decal/corner/black/full{ + dir = 1 + }, +/obj/structure/sign/flag/silversun{ + pixel_x = 32 + }, +/obj/structure/closet/cabinet, +/obj/outfit/admin/generic, +/obj/random/loot, +/obj/effect/decal/cleanable/cobweb2, +/turf/simulated/floor/tiled, +/area/quarantined_outpost/dorm_hallway) +"lFd" = ( +/obj/structure/table/reinforced/steel, +/obj/structure/window/reinforced, +/obj/item/clothing/ears/earmuffs{ + pixel_y = 6 + }, +/obj/item/clothing/glasses/safety/goggles{ + pixel_y = 6 + }, +/obj/machinery/door/firedoor{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark/full, +/area/quarantined_outpost/security) +"lFH" = ( +/obj/structure/cable{ + icon_state = "2-4" + }, +/obj/structure/lattice/catwalk/indoor/grate/dark, +/turf/simulated/floor/plating, +/area/quarantined_outpost/server_relay/north_east) +"lFP" = ( +/obj/effect/floor_decal/spline/plain/grey, +/obj/structure/closet/crate, +/obj/random/dirt_75, +/turf/simulated/floor/reinforced, +/area/quarantined_outpost/security) +"lGj" = ( +/obj/machinery/conveyor{ + dir = 1 + }, +/obj/random/dirt_75, +/obj/machinery/light/maybe_broken/decayed{ + dir = 8 + }, +/turf/simulated/floor/tiled/dark/full, +/area/quarantined_outpost/cargo_bay) +"lGS" = ( +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 8 + }, +/obj/effect/decal/cleanable/blood/oil, +/obj/machinery/light/small/decayed{ + dir = 8 + }, +/obj/effect/decal/rolling_fog, +/turf/simulated/floor/plating, +/area/quarantined_outpost/research) +"lHl" = ( +/obj/structure/cable/orange{ + icon_state = "4-8" + }, +/obj/structure/lattice/catwalk/indoor, +/turf/simulated/floor/airless, +/area/quarantined_outpost/auxiliary_power) +"lHt" = ( +/obj/effect/floor_decal/spline/plain/black{ + dir = 8 + }, +/obj/structure/table/wood, +/obj/machinery/power/outlet, +/obj/random/junk, +/obj/random/dirt_75, +/turf/simulated/floor/lino, +/area/quarantined_outpost/reception) +"lIg" = ( +/obj/structure/table/standard, +/obj/item/reagent_containers/food/drinks/drinkingglass/newglass/coffeecup/sol{ + pixel_x = -10; + pixel_y = 11 + }, +/obj/item/reagent_containers/glass/beaker/pitcher{ + pixel_x = 6; + pixel_y = 12 + }, +/obj/effect/floor_decal/corner/yellow{ + dir = 5 + }, +/obj/item/reagent_containers/food/drinks/drinkingglass/newglass/coffeecup{ + pixel_x = -10; + pixel_y = 6 + }, +/obj/item/reagent_containers/food/drinks/drinkingglass/newglass/coffeecup/sol{ + pixel_x = -10; + pixel_y = 1 + }, +/turf/simulated/floor/tiled/gunmetal, +/area/quarantined_outpost/engineering) +"lIw" = ( +/obj/machinery/light/small/emergency{ + dir = 1 + }, +/obj/structure/flora/rock/random, +/turf/simulated/floor/exoplanet/basalt, +/area/quarantined_outpost/extraction_lab) +"lIN" = ( +/obj/structure/platform_stairs/full/east_west_cap, +/obj/structure/platform/cutout{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/quarantined_outpost/cargo_bay) +"lIX" = ( +/obj/structure/closet/emcloset, +/obj/effect/floor_decal/corner/yellow/full{ + dir = 8 + }, +/obj/effect/floor_decal/industrial/outline/emergency_closet, +/turf/simulated/floor/tiled, +/area/quarantined_outpost/engineering) +"lJG" = ( +/obj/random/dirt_75, +/obj/random/dirt_75, +/turf/simulated/floor/tiled/dark/full, +/area/quarantined_outpost/engineering/winch_room) +"lJH" = ( +/obj/effect/step_trigger/teleporter, +/turf/template_noop, +/area/space) +"lKj" = ( +/obj/structure/bed/stool/chair/folding{ + dir = 8 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/quarantined_outpost/cargo_bay) +"lKv" = ( +/obj/effect/floor_decal/spline/plain/black{ + dir = 4 + }, +/obj/random/dirt_75, +/obj/random/dirt_75, +/turf/simulated/floor/tiled/gunmetal, +/area/quarantined_outpost/north_east_hallway) +"lKw" = ( +/obj/machinery/door/firedoor/multi_tile, +/obj/effect/floor_decal/industrial/hatch/yellow, +/obj/machinery/door/airlock/multi_tile/glass{ + welded = 1 + }, +/turf/simulated/floor/tiled/full, +/area/quarantined_outpost/entrance_lobby) +"lKC" = ( +/obj/structure/table/standard, +/obj/effect/floor_decal/corner_wide/paleblue/full{ + dir = 1 + }, +/turf/simulated/floor/tiled/airless, +/area/quarantined_outpost/security) +"lNj" = ( +/obj/effect/floor_decal/spline/plain/black{ + dir = 1 + }, +/obj/effect/decal/cleanable/floor_damage/rust, +/turf/simulated/floor/tiled/gunmetal, +/area/quarantined_outpost/north_east_hallway) +"lNS" = ( +/obj/effect/floor_decal/corner/brown{ + dir = 10 + }, +/obj/random/dirt_75, +/obj/random/dirt_75, +/obj/machinery/light/maybe_broken/decayed, +/turf/simulated/floor/tiled, +/area/quarantined_outpost/cargo_bay) +"lOb" = ( +/obj/structure/table/standard, +/obj/effect/floor_decal/corner/mauve/full{ + dir = 1 + }, +/obj/item/paper_bin{ + pixel_y = 4 + }, +/obj/effect/floor_decal/spline/plain/purple{ + dir = 4 + }, +/obj/structure/window/reinforced{ + dir = 4 + }, +/turf/simulated/floor/tiled/light, +/area/quarantined_outpost/research) +"lOf" = ( +/obj/structure/inflatable/wall, +/obj/random/dirt_75, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/quarantined_outpost/north_east_hallway) +"lOL" = ( +/obj/structure/table/reinforced/steel, +/obj/machinery/door/window/desk/northright, +/turf/simulated/floor/tiled/dark/full, +/area/quarantined_outpost/security) +"lPd" = ( +/obj/structure/railing/mapped, +/obj/structure/lattice/catwalk, +/turf/simulated/floor/exoplanet/basalt, +/area/quarantined_outpost/engineering/tunnel) +"lPv" = ( +/obj/structure/railing/mapped{ + dir = 4 + }, +/obj/structure/lattice/catwalk/indoor/grate/dark, +/obj/effect/decal/rolling_fog, +/turf/simulated/floor/plating, +/area/quarantined_outpost/research) +"lPK" = ( +/obj/effect/floor_decal/corner/grey{ + dir = 6 + }, +/obj/random/dirt_75, +/obj/effect/decal/cleanable/cobweb, +/turf/simulated/floor/tiled/dark, +/area/quarantined_outpost/research) +"lPP" = ( +/obj/abstract/footprint_spawner/body{ + dir = 1 + }, +/turf/simulated/floor/exoplanet/basalt, +/area/quarantined_outpost/cafeteria/maintenance) +"lQd" = ( +/obj/structure/railing/mapped, +/obj/structure/lattice/catwalk/indoor, +/turf/simulated/floor/exoplanet/abyss, +/area/quarantined_outpost/engineering/atmospherics) +"lQj" = ( +/obj/structure/platform, +/obj/structure/platform{ + dir = 8 + }, +/obj/structure/platform_deco{ + dir = 9 + }, +/turf/simulated/floor/plating, +/area/quarantined_outpost/cargo_bay) +"lQx" = ( +/obj/random/dirt_75, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 4 + }, +/obj/effect/decal/cleanable/generic, +/turf/simulated/floor/tiled/dark, +/area/quarantined_outpost/entrance_lobby) +"lQH" = ( +/obj/structure/flora/pottedplant/dead, +/obj/effect/floor_decal/corner/dark_green/full{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/quarantined_outpost/gym) +"lQJ" = ( +/obj/effect/floor_decal/corner/dark_blue{ + dir = 4 + }, +/obj/structure/inflatable/wall, +/turf/simulated/floor/tiled, +/area/quarantined_outpost/north_east_hallway) +"lRC" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/quarantined_outpost/entrance_lobby) +"lRH" = ( +/obj/effect/floor_decal/spline/plain/corner/black{ + dir = 8 + }, +/obj/effect/floor_decal/corner/yellow{ + dir = 4 + }, +/obj/random/dirt_75, +/obj/structure/cable{ + icon_state = "1-4" + }, +/obj/random/dirt_75, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/turf/simulated/floor/tiled/gunmetal, +/area/quarantined_outpost/engineering/tunnel) +"lRI" = ( +/obj/effect/floor_decal/corner/yellow{ + dir = 5 + }, +/obj/random/dirt_75, +/obj/structure/closet/crate/miningcart, +/obj/effect/decal/cleanable/floor_damage/rust, +/turf/simulated/floor/tiled/gunmetal, +/area/quarantined_outpost/engineering/winch_room) +"lRV" = ( +/obj/effect/floor_decal/corner/dark_blue{ + dir = 5 + }, +/turf/simulated/floor/tiled/rust, +/area/quarantined_outpost/elevator_hallway) +"lRX" = ( +/obj/effect/floor_decal/industrial/outline_straight/yellow{ + dir = 4 + }, +/obj/random/dirt_75, +/obj/random/dirt_75, +/turf/simulated/floor/tiled/dark/full, +/area/quarantined_outpost/research/containment) +"lSj" = ( +/obj/structure/bed/stool/chair, +/obj/effect/floor_decal/corner_wide/paleblue{ + dir = 6 + }, +/obj/random/dirt_75, +/obj/machinery/light/maybe_broken/decayed{ + dir = 4 + }, +/turf/simulated/floor/tiled/airless, +/area/quarantined_outpost/security) +"lSo" = ( +/obj/structure/platform_stairs/full{ + dir = 1 + }, +/obj/effect/floor_decal/corner/brown{ + dir = 10 + }, +/turf/simulated/floor/tiled, +/area/quarantined_outpost/cargo_bay) +"lSq" = ( +/obj/structure/closet/boxinggloves, +/obj/effect/floor_decal/corner/dark_green{ + dir = 9 + }, +/obj/effect/floor_decal/spline/plain/black, +/obj/random/dirt_75, +/turf/simulated/floor/tiled, +/area/quarantined_outpost/gym) +"lSz" = ( +/obj/effect/floor_decal/corner/mauve{ + dir = 4 + }, +/obj/machinery/photocopier, +/obj/effect/floor_decal/corner/mauve{ + dir = 9 + }, +/obj/effect/floor_decal/spline/plain/purple{ + dir = 8 + }, +/turf/simulated/floor/tiled/light, +/area/quarantined_outpost/research) +"lSH" = ( +/obj/structure/lattice/catwalk, +/turf/simulated/floor/exoplanet/basalt, +/area/quarantined_outpost/cavern/south_west_cavern) +"lTe" = ( +/obj/effect/floor_decal/spline/plain/black{ + dir = 1 + }, +/obj/random/dirt_75, +/obj/effect/decal/cleanable/floor_damage/rust, +/turf/simulated/floor/tiled/gunmetal, +/area/quarantined_outpost/engineering/tunnel) +"lTk" = ( +/obj/structure/railing/mapped{ + dir = 8 + }, +/obj/effect/decal/cleanable/floor_damage/rust, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/quarantined_outpost/cargo_bay) +"lTw" = ( +/obj/effect/floor_decal/corner/brown/full{ + dir = 1 + }, +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/machinery/suit_cycler/mining/prepared, +/obj/effect/decal/cleanable/cobweb2, +/turf/simulated/floor/tiled/dark, +/area/quarantined_outpost/cargo_bay) +"lTJ" = ( +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/structure/trash_pile, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 1 + }, +/turf/simulated/floor/tiled/full, +/area/quarantined_outpost/cargo_bay) +"lTM" = ( +/obj/effect/floor_decal/corner/mauve/diagonal, +/turf/simulated/floor/tiled/white, +/area/quarantined_outpost/extraction_lab) +"lTR" = ( +/obj/effect/decal/fake_object/light_source/invisible, +/turf/simulated/floor/reinforced, +/area/quarantined_outpost/engineering/atmospherics) +"lUr" = ( +/obj/structure/bed/stool/chair{ + dir = 1 + }, +/obj/effect/floor_decal/spline/plain/black{ + dir = 9 + }, +/turf/simulated/floor/tiled/dark/full, +/area/quarantined_outpost/reception) +"lUw" = ( +/obj/effect/map_effect/marker/airlock/quarantined_outpost/entrance, +/obj/effect/floor_decal/industrial/outline_door/yellow{ + dir = 8 + }, +/obj/random/dirt_75, +/obj/random/dirt_75, +/obj/machinery/atmospherics/unary/vent_pump/high_volume, +/obj/effect/floor_decal/industrial/outline_segment/yellow{ + dir = 9 + }, +/turf/simulated/floor/plating, +/area/quarantined_outpost/entrance_lobby) +"lUH" = ( +/obj/effect/floor_decal/corner_wide/lime{ + dir = 9 + }, +/obj/structure/bed/stool/chair{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/quarantined_outpost/medbay) +"lVk" = ( +/obj/effect/floor_decal/corner/black/full, +/obj/random/dirt_75, +/turf/simulated/floor/tiled, +/area/quarantined_outpost/elevator_hallway) +"lVl" = ( +/obj/effect/floor_decal/industrial/outline_straight/custodial{ + dir = 4 + }, +/obj/item/paper/crumpled{ + pixel_x = 2; + pixel_y = -8 + }, +/obj/random/dirt_75, +/turf/simulated/floor/tiled/light, +/area/quarantined_outpost/research) +"lVF" = ( +/obj/structure/lattice/catwalk/indoor/grate/old, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/airless, +/area/quarantined_outpost/security) +"lVM" = ( +/obj/effect/floor_decal/corner/black{ + dir = 6 + }, +/obj/random/dirt_75, +/obj/structure/table/standard, +/obj/item/paper/fluff/quarantined_outpost/venusians_note{ + pixel_y = 1; + pixel_x = -6 + }, +/turf/simulated/floor/tiled, +/area/quarantined_outpost/dorm_hallway) +"lVN" = ( +/obj/structure/platform_deco{ + dir = 1 + }, +/obj/abstract/footprint_spawner{ + dir = 1 + }, +/turf/simulated/floor/tiled/dark/full, +/area/quarantined_outpost/research) +"lVP" = ( +/obj/effect/floor_decal/corner/dark_blue{ + dir = 9 + }, +/obj/machinery/light/maybe_broken/decayed{ + dir = 8 + }, +/obj/random/dirt_75, +/turf/simulated/floor/tiled/dark, +/area/quarantined_outpost/north_east_hallway) +"lWf" = ( +/obj/machinery/light/small/emergency{ + dir = 4 + }, +/obj/effect/decal/cleanable/floor_damage/random_broken, +/turf/simulated/floor/plating, +/area/quarantined_outpost/entrance_maintenance) +"lWF" = ( +/obj/effect/floor_decal/corner/dark_blue{ + dir = 10 + }, +/obj/random/dirt_75, +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/simulated/floor/tiled, +/area/quarantined_outpost/elevator_hallway) +"lWM" = ( +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/effect/floor_decal/industrial/warning{ + dir = 8 + }, +/obj/random/canister/filled, +/turf/simulated/floor/plating, +/area/quarantined_outpost/engineering/atmospherics) +"lWP" = ( +/obj/effect/floor_decal/corner/dark_blue{ + dir = 10 + }, +/obj/random/dirt_75, +/obj/random/dirt_75, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/quarantined_outpost/elevator_hallway) +"lXi" = ( +/obj/effect/landmark/quarantined_outpost/canister_spawn, +/turf/simulated/floor/exoplanet/basalt, +/area/quarantined_outpost/cavern/south_west_cavern) +"lXq" = ( +/obj/structure/table/standard, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/item/paper_bin{ + pixel_y = 3; + pixel_x = 3 + }, +/obj/random/dirt_75, +/turf/simulated/floor/tiled/airless, +/area/quarantined_outpost/security) +"lXI" = ( +/obj/effect/map_effect/window_spawner/full/reinforced/firedoor, +/turf/simulated/floor/tiled/gunmetal/full, +/area/quarantined_outpost/north_east_hallway) +"lYb" = ( +/obj/effect/floor_decal/industrial/outline_door/custodial{ + dir = 8 + }, +/obj/effect/floor_decal/industrial/outline_segment/custodial{ + dir = 9 + }, +/turf/simulated/floor/tiled, +/area/quarantined_outpost/dorm_hallway) +"lYi" = ( +/obj/effect/floor_decal/corner/dark_blue{ + dir = 9 + }, +/obj/random/dirt_75, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/quarantined_outpost/north_east_hallway) +"lYC" = ( +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/random/dirt_75, +/obj/random/maintenance_junk_or_loot, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 1 + }, +/turf/simulated/floor/tiled/full, +/area/quarantined_outpost/cargo_bay) +"lZE" = ( +/obj/effect/floor_decal/industrial/hatch_door/medical{ + dir = 1 + }, +/obj/machinery/door/firedoor, +/obj/structure/plasticflaps/airtight, +/obj/machinery/door/airlock/medical{ + name = "Blood Storage" + }, +/turf/simulated/floor/tiled/white, +/area/quarantined_outpost/medbay) +"mah" = ( +/obj/structure/railing/mapped{ + dir = 1 + }, +/obj/structure/railing/mapped{ + dir = 8 + }, +/turf/simulated/floor/plating/asteroid/airless, +/area/quarantined_outpost/exterior) +"mas" = ( +/obj/random/dirt_75, +/obj/machinery/light/small/maybe_broken/decayed, +/turf/simulated/floor/tiled/dark/full, +/area/quarantined_outpost/research) +"mau" = ( +/obj/effect/floor_decal/industrial/hatch/yellow, +/obj/machinery/door/firedoor{ + dir = 4 + }, +/obj/machinery/door/blast/shutters{ + dir = 4; + id = "quarantined_outpost_extraction_west" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark/full, +/area/quarantined_outpost/extraction_lab) +"maC" = ( +/obj/structure/table/standard, +/obj/random/loot, +/turf/simulated/floor/tiled/gunmetal/full, +/area/quarantined_outpost/cafeteria) +"maF" = ( +/obj/effect/floor_decal/corner/mauve{ + dir = 9 + }, +/obj/effect/floor_decal/spline/plain/purple{ + dir = 8 + }, +/obj/random/dirt_75, +/turf/simulated/floor/tiled/light, +/area/quarantined_outpost/research) +"maP" = ( +/turf/simulated/wall/shuttle/scc_space_ship/cardinal, +/area/quarantined_outpost/exterior) +"mbi" = ( +/obj/effect/floor_decal/corner/yellow{ + dir = 10 + }, +/obj/random/dirt_75, +/obj/random/dirt_75, +/turf/simulated/floor/tiled/gunmetal, +/area/quarantined_outpost/engineering/tunnel) +"mbV" = ( +/obj/random/dirt_75, +/obj/effect/floor_decal/corner_wide/paleblue{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/quarantined_outpost/elevator_hallway) +"mbX" = ( +/obj/random/dirt_75, +/obj/random/dirt_75, +/obj/random/dirt_75, +/obj/structure/cable/orange{ + icon_state = "1-2" + }, +/turf/simulated/floor/plating/asteroid/airless, +/area/quarantined_outpost/exterior) +"mcA" = ( +/obj/structure/table/standard/flipped{ + dir = 8 + }, +/obj/effect/floor_decal/corner/lime, +/obj/effect/floor_decal/industrial/outline_door/yellow{ + dir = 8 + }, +/obj/effect/floor_decal/industrial/outline_segment/yellow, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/quarantined_outpost/cafeteria) +"mcE" = ( +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/machinery/portable_atmospherics/canister/air, +/obj/random/dirt_75, +/turf/simulated/floor/tiled/dark/full, +/area/quarantined_outpost/elevator_hallway/maintenance) +"mcN" = ( +/obj/effect/floor_decal/corner/dark_blue{ + dir = 4 + }, +/obj/structure/bed/stool/chair, +/turf/simulated/floor/tiled, +/area/quarantined_outpost/north_east_hallway) +"mcZ" = ( +/obj/effect/floor_decal/corner/mauve/diagonal, +/obj/random/dirt_75, +/obj/random/dirt_75, +/obj/structure/cable{ + icon_state = "2-4" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 8 + }, +/turf/simulated/floor/tiled/light, +/area/quarantined_outpost/research) +"mdk" = ( +/obj/structure/table/standard, +/obj/effect/floor_decal/corner/dark_green{ + dir = 8 + }, +/obj/random/dirt_75, +/obj/random/survival_weapon, +/turf/simulated/floor/tiled, +/area/quarantined_outpost/gym) +"mdl" = ( +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 9 + }, +/obj/structure/flora/grass/desert{ + name = "withered grass" + }, +/turf/simulated/floor/exoplanet/barren, +/area/quarantined_outpost/elevator_hallway) +"mdn" = ( +/obj/machinery/atmospherics/pipe/manifold4w/visible/black, +/obj/random/dirt_75, +/obj/random/dirt_75, +/turf/simulated/floor/tiled/gunmetal, +/area/quarantined_outpost/engineering/atmospherics) +"mdp" = ( +/obj/effect/floor_decal/corner_wide/paleblue{ + dir = 4 + }, +/obj/random/dirt_75, +/obj/effect/decal/cleanable/blood, +/obj/effect/decal/cleanable/floor_damage/rust, +/turf/simulated/floor/tiled/white, +/area/quarantined_outpost/medbay) +"mdu" = ( +/obj/structure/closet, +/obj/random/dirt_75, +/obj/random/loot, +/turf/simulated/floor/plating, +/area/quarantined_outpost/gym) +"mdP" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/random/dirt_75, +/obj/effect/decal/cleanable/floor_damage/rust, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled/gunmetal, +/area/quarantined_outpost/engineering/tunnel) +"mep" = ( +/obj/structure/table/stone/marble, +/obj/machinery/door/firedoor, +/obj/machinery/door/blast/shutters, +/turf/simulated/floor/tiled/dark/full, +/area/quarantined_outpost/cafeteria) +"meq" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 8 + }, +/obj/random/dirt_75, +/obj/random/maintenance_junk_or_loot, +/turf/simulated/floor/plating, +/area/quarantined_outpost/elevator_hallway/maintenance) +"mfz" = ( +/obj/effect/floor_decal/corner_wide/lime, +/obj/effect/floor_decal/corner_wide/lime{ + dir = 1 + }, +/obj/effect/decal/cleanable/floor_damage/rust, +/obj/random/dirt_75, +/obj/random/dirt_75, +/turf/simulated/floor/tiled/white, +/area/quarantined_outpost/medbay) +"mfJ" = ( +/obj/effect/floor_decal/spline/plain/black{ + dir = 1 + }, +/obj/machinery/suit_cycler/offship, +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/random/dirt_75, +/turf/simulated/floor/tiled/dark/full/airless, +/area/quarantined_outpost/entrance_lobby) +"mfM" = ( +/turf/simulated/floor/exoplanet/basalt, +/area/quarantined_outpost/cavern/south_west_cavern) +"mfS" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/random/dirt_75, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled/gunmetal/full, +/area/quarantined_outpost/engineering/tunnel) +"mgp" = ( +/obj/machinery/computer/terminal/inactive{ + dir = 4 + }, +/obj/effect/floor_decal/spline/plain/cee/black{ + dir = 1 + }, +/turf/simulated/floor/carpet/rubber, +/area/quarantined_outpost/engineering/winch_room) +"mgy" = ( +/obj/effect/floor_decal/corner/mauve{ + dir = 10 + }, +/obj/machinery/light/maybe_broken/decayed, +/obj/effect/decal/cleanable/floor_damage/rust, +/turf/simulated/floor/tiled/light, +/area/quarantined_outpost/research) +"mgA" = ( +/obj/random/dirt_75, +/obj/random/dirt_75, +/obj/machinery/alarm/north, +/turf/simulated/floor/tiled, +/area/quarantined_outpost/entrance_maintenance) +"mgV" = ( +/obj/effect/floor_decal/corner_wide/lime{ + dir = 5 + }, +/obj/structure/flora/pottedplant/dead{ + pixel_y = 14 + }, +/obj/structure/sign/flag/sol/old{ + pixel_y = 32 + }, +/turf/simulated/floor/tiled/white, +/area/quarantined_outpost/medbay) +"mhh" = ( +/turf/simulated/mineral/lava, +/area/quarantined_outpost/medbay) +"mhw" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/fuel, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 8 + }, +/obj/structure/cable{ + icon_state = "2-8" + }, +/turf/simulated/floor/tiled/dark/full, +/area/quarantined_outpost/engineering/atmospherics) +"mhF" = ( +/obj/effect/floor_decal/corner/mauve{ + dir = 9 + }, +/obj/structure/sign/biohazard{ + pixel_x = -32 + }, +/obj/random/dirt_75, +/turf/simulated/floor/tiled/light, +/area/quarantined_outpost/research) +"mhI" = ( +/obj/effect/floor_decal/corner/mauve{ + dir = 5 + }, +/obj/structure/bed/stool/chair/office/light{ + dir = 1 + }, +/obj/random/dirt_75, +/turf/simulated/floor/tiled/light, +/area/quarantined_outpost/research) +"mhO" = ( +/obj/structure/lattice/catwalk/indoor/grate/old, +/obj/structure/sign/flag/sol/old{ + pixel_x = 32 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 1 + }, +/turf/simulated/floor/airless, +/area/quarantined_outpost/security) +"mio" = ( +/obj/random/dirt_75, +/obj/structure/barricade/wooden{ + dir = 8 + }, +/obj/effect/floor_decal/corner/yellow{ + dir = 10 + }, +/turf/simulated/floor/tiled/gunmetal, +/area/quarantined_outpost/engineering/tunnel) +"mis" = ( +/obj/effect/floor_decal/industrial/hatch/yellow, +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/obj/effect/floor_decal/industrial/warning, +/obj/machinery/door/blast/regular{ + dir = 4; + id = "quarantined_outpost_combustion_vent" + }, +/turf/simulated/floor/airless, +/area/quarantined_outpost/engineering/atmospherics) +"miz" = ( +/obj/effect/floor_decal/industrial/hatch/yellow, +/obj/machinery/door/firedoor{ + dir = 4 + }, +/obj/random/dirt_75, +/obj/machinery/door/blast/shutters{ + dir = 4; + id = "quarantined_outpost_extraction_west" + }, +/turf/simulated/floor/tiled/dark/full, +/area/quarantined_outpost/extraction_lab) +"mjm" = ( +/obj/structure/lattice/catwalk, +/obj/structure/railing/mapped{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/quarantined_outpost/engineering/tunnel) +"mjR" = ( +/obj/effect/floor_decal/spline/plain/black{ + dir = 8 + }, +/obj/effect/decal/cleanable/blood, +/turf/simulated/floor/tiled/gunmetal, +/area/quarantined_outpost/north_east_hallway) +"mjV" = ( +/obj/effect/floor_decal/corner/brown{ + dir = 5 + }, +/obj/machinery/light/floor/maybe_broken/decayed{ + dir = 1 + }, +/obj/random/dirt_75, +/turf/simulated/floor/tiled, +/area/quarantined_outpost/elevator_hallway) +"mjW" = ( +/obj/effect/floor_decal/corner/brown/full, +/obj/random/dirt_75, +/obj/structure/ore_box, +/turf/simulated/floor/tiled, +/area/quarantined_outpost/cargo_bay) +"mkn" = ( +/obj/structure/table/reinforced/steel, +/obj/effect/floor_decal/corner/dark_blue/full, +/turf/simulated/floor/tiled/dark, +/area/quarantined_outpost/research) +"mkK" = ( +/obj/structure/lattice/catwalk/indoor/grate/dark, +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/simulated/floor/plating, +/area/quarantined_outpost/cargo_bay) +"mlb" = ( +/obj/structure/lattice/catwalk/indoor/grate/dark, +/obj/effect/decal/rolling_fog, +/turf/simulated/floor/plating, +/area/quarantined_outpost/research) +"mlA" = ( +/obj/effect/floor_decal/corner/black{ + dir = 10 + }, +/obj/random/dirt_75, +/obj/random/dirt_75, +/turf/simulated/floor/tiled, +/area/quarantined_outpost/elevator_hallway) +"mlX" = ( +/turf/simulated/floor/exoplanet/basalt, +/area/quarantined_outpost/extraction_lab) +"mmn" = ( +/obj/structure/railing/mapped{ + dir = 4 + }, +/obj/structure/table/reinforced/steel, +/obj/machinery/button/ignition{ + id = "quarantined_outpost_igniter"; + pixel_y = -3; + pixel_x = -7 + }, +/obj/machinery/button/remote/blast_door{ + dir = 1; + id = "quarantined_outpost_combustion_viewing"; + name = "Chamber Viewing Shutters"; + pixel_y = 7; + pixel_x = -8 + }, +/obj/machinery/button/remote/blast_door{ + dir = 1; + id = "quarantined_outpost_combustion_vent"; + name = "Emergency Chamber Vent"; + pixel_y = 7; + pixel_x = 4 + }, +/turf/simulated/floor/tiled/dark/full, +/area/quarantined_outpost/engineering/atmospherics) +"mmK" = ( +/obj/structure/flora/rock/pile/random, +/turf/simulated/floor/exoplanet/basalt, +/area/quarantined_outpost/extraction_lab) +"mna" = ( +/obj/structure/girder, +/turf/simulated/floor/plating, +/area/quarantined_outpost/research/containment) +"mnk" = ( +/obj/structure/table/standard, +/obj/item/folder/yellow, +/obj/item/device/price_scanner, +/turf/simulated/floor/tiled, +/area/quarantined_outpost/cargo_bay) +"mnq" = ( +/obj/random/dirt_75, +/turf/simulated/floor/tiled/dark/full, +/area/quarantined_outpost/north_east_hallway) +"mnI" = ( +/obj/structure/table/standard, +/obj/effect/floor_decal/corner/green/diagonal, +/obj/random/dirt_75, +/obj/effect/decal/cleanable/cobweb, +/obj/effect/floor_decal/snowdrift/random, +/obj/machinery/light/small/maybe_broken/decayed{ + dir = 1 + }, +/turf/simulated/floor/tiled/white, +/area/quarantined_outpost/dorm_hallway) +"mol" = ( +/obj/structure/bed/stool/chair/office/bridge/pilot, +/obj/effect/floor_decal/spline/plain/black{ + dir = 4 + }, +/obj/structure/bed/handrail{ + dir = 8 + }, +/turf/simulated/floor/tiled/rust, +/area/quarantined_outpost/cargo_bay) +"mop" = ( +/obj/structure/lattice/catwalk/indoor/grate/dark, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/quarantined_outpost/extraction_lab) +"mpP" = ( +/obj/machinery/appliance/cooker/fryer, +/turf/simulated/floor/tiled/dark/full, +/area/quarantined_outpost/cafeteria) +"mpQ" = ( +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/machinery/atmospherics/portables_connector{ + dir = 1 + }, +/obj/machinery/portable_atmospherics/canister/air, +/obj/random/dirt_75, +/turf/simulated/floor/tiled/dark/full, +/area/quarantined_outpost/cargo_bay) +"mqa" = ( +/obj/effect/floor_decal/corner/black/full, +/obj/structure/table/standard, +/turf/simulated/floor/tiled, +/area/quarantined_outpost/dorm_hallway) +"mqX" = ( +/obj/effect/decal/cleanable/cobweb2, +/obj/structure/lattice/catwalk/indoor, +/turf/simulated/floor/plating, +/area/quarantined_outpost/cargo_bay) +"mrI" = ( +/obj/structure/platform/ledge{ + dir = 8 + }, +/obj/random/dirt_75, +/turf/simulated/floor/tiled, +/area/quarantined_outpost/cargo_bay) +"mrX" = ( +/obj/machinery/light/floor/maybe_broken/decayed, +/obj/effect/decal/cleanable/floor_damage/rust, +/obj/random/dirt_75, +/turf/simulated/floor/tiled/light, +/area/quarantined_outpost/research) +"msj" = ( +/obj/effect/floor_decal/corner/yellow{ + dir = 10 + }, +/obj/random/dirt_75, +/turf/simulated/floor/tiled/gunmetal, +/area/quarantined_outpost/engineering/tunnel) +"msm" = ( +/obj/item/stack/rods{ + pixel_y = 6; + pixel_x = 3 + }, +/obj/effect/floor_decal/spline/plain/black{ + dir = 5 + }, +/obj/random/dirt_75, +/obj/abstract/footprint_spawner{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/quarantined_outpost/cafeteria) +"msy" = ( +/obj/effect/floor_decal/spline/plain/black{ + dir = 6 + }, +/obj/random/dirt_75, +/turf/simulated/floor/lino, +/area/quarantined_outpost/reception) +"msU" = ( +/obj/machinery/light/small/emergency{ + dir = 1 + }, +/turf/simulated/floor/plating/asteroid/airless, +/area/quarantined_outpost/exterior/powered) +"mta" = ( +/obj/effect/floor_decal/corner/brown{ + dir = 5 + }, +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/machinery/suit_cycler/mining/prepared, +/obj/random/dirt_75, +/obj/machinery/light/small/maybe_broken/decayed{ + dir = 1 + }, +/turf/simulated/floor/tiled/dark, +/area/quarantined_outpost/cargo_bay) +"mtl" = ( +/obj/effect/floor_decal/spline/plain/black, +/obj/random/dirt_75, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 1 + }, +/turf/simulated/floor/tiled/gunmetal, +/area/quarantined_outpost/engineering/tunnel) +"mtq" = ( +/obj/effect/floor_decal/spline/plain/corner/grey{ + dir = 8 + }, +/obj/random/dirt_75, +/turf/simulated/floor/tiled/white, +/area/quarantined_outpost/gym) +"mtS" = ( +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 4 + }, +/obj/structure/platform{ + dir = 1 + }, +/obj/structure/platform{ + dir = 4 + }, +/obj/structure/platform_deco{ + dir = 10 + }, +/turf/simulated/floor/reinforced, +/area/quarantined_outpost/extraction_lab) +"mvt" = ( +/obj/structure/bed/stool/chair/office/dark{ + dir = 8 + }, +/obj/random/dirt_75, +/obj/random/dirt_75, +/obj/effect/floor_decal/industrial/outline_segment/emergency_closet{ + dir = 10 + }, +/turf/simulated/floor/tiled/airless, +/area/quarantined_outpost/security) +"mvF" = ( +/obj/effect/floor_decal/corner/mauve{ + dir = 10 + }, +/obj/effect/floor_decal/spline/plain/purple{ + dir = 8 + }, +/obj/structure/table/glass, +/obj/structure/window/reinforced{ + dir = 8 + }, +/turf/simulated/floor/tiled/light, +/area/quarantined_outpost/research) +"mvO" = ( +/obj/structure/table/reinforced/steel, +/obj/machinery/door/window/desk/westright, +/turf/simulated/floor/tiled/dark/full, +/area/quarantined_outpost/reception) +"mvS" = ( +/obj/random/dirt_75, +/obj/random/maintenance_junk_or_loot, +/turf/simulated/floor/plating, +/area/quarantined_outpost/cargo_bay) +"mwG" = ( +/obj/effect/floor_decal/corner/yellow{ + dir = 6 + }, +/obj/machinery/light/floor/maybe_broken/decayed{ + dir = 4 + }, +/obj/random/dirt_75, +/turf/simulated/floor/tiled, +/area/quarantined_outpost/engineering) +"mxc" = ( +/obj/effect/floor_decal/industrial/outline_door/custodial{ + dir = 8 + }, +/obj/effect/floor_decal/industrial/outline_segment/research, +/obj/effect/floor_decal/industrial/outline_segment/research{ + dir = 9 + }, +/obj/effect/decal/cleanable/floor_damage/rust, +/turf/simulated/floor/tiled/light, +/area/quarantined_outpost/research) +"mxV" = ( +/obj/effect/floor_decal/spline/plain/black{ + dir = 4 + }, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 8 + }, +/obj/effect/landmark/trapped_vent/maybe/quarantined_outpost, +/turf/simulated/floor/tiled/gunmetal, +/area/quarantined_outpost/engineering/tunnel) +"mya" = ( +/obj/effect/decal/cleanable/blood, +/obj/random/dirt_75, +/turf/simulated/floor/tiled/white, +/area/quarantined_outpost/medbay) +"myc" = ( +/obj/structure/table/standard, +/obj/item/storage/box/fancy/vials{ + pixel_x = 8; + pixel_y = 11 + }, +/obj/item/reagent_containers/syringe{ + pixel_y = 8; + pixel_x = -6 + }, +/obj/item/reagent_containers/syringe{ + pixel_y = 5; + pixel_x = -5 + }, +/obj/effect/floor_decal/industrial/hatch/grey, +/obj/item/reagent_containers/glass/beaker/cryoxadone{ + pixel_x = 8; + pixel_y = 1 + }, +/turf/simulated/floor/tiled/freezer{ + name = "cooled tiles"; + temperature = 253.15 + }, +/area/quarantined_outpost/medbay) +"mye" = ( +/obj/random/dirt_75, +/obj/random/dirt_75, +/obj/structure/cable/orange{ + icon_state = "1-8" + }, +/obj/effect/floor_decal/industrial/warning/dust, +/turf/simulated/floor/plating/asteroid/airless, +/area/quarantined_outpost/exterior) +"myf" = ( +/obj/effect/floor_decal/industrial/outline_door/emergency_closet, +/obj/effect/floor_decal/industrial/outline_door/emergency_closet{ + dir = 1 + }, +/obj/random/dirt_75, +/obj/random/dirt_75, +/turf/simulated/floor/tiled/airless, +/area/quarantined_outpost/security) +"myi" = ( +/obj/structure/filingcabinet/filingcabinet{ + pixel_x = 10 + }, +/obj/machinery/papershredder{ + pixel_x = -5; + pixel_y = -1 + }, +/obj/effect/floor_decal/corner/yellow, +/obj/effect/decal/cleanable/floor_damage/rust, +/turf/simulated/floor/tiled/gunmetal, +/area/quarantined_outpost/engineering) +"myU" = ( +/obj/structure/lattice/catwalk/indoor/grate/dark, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/quarantined_outpost/engineering/tunnel) +"myV" = ( +/obj/effect/floor_decal/spline/plain/black{ + dir = 9 + }, +/obj/structure/bed/stool/chair{ + dir = 1 + }, +/obj/random/dirt_75, +/turf/simulated/floor/tiled/dark/full, +/area/quarantined_outpost/elevator_hallway) +"mzr" = ( +/turf/simulated/mineral/lava, +/area/quarantined_outpost/cafeteria/maintenance) +"mzt" = ( +/obj/effect/floor_decal/industrial/hatch_door/yellow{ + dir = 8 + }, +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/hatch, +/turf/simulated/floor/tiled, +/area/quarantined_outpost/cargo_bay) +"mzu" = ( +/obj/effect/floor_decal/corner/dark_green/diagonal, +/obj/structure/cable{ + icon_state = "2-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/random/maintenance_junk_or_loot, +/turf/simulated/floor/tiled, +/area/quarantined_outpost/gym) +"mzF" = ( +/obj/structure/platform/dark, +/obj/structure/platform/dark{ + dir = 4 + }, +/obj/structure/platform_deco/dark{ + dir = 5 + }, +/obj/effect/floor_decal/corner/yellow{ + dir = 5 + }, +/turf/simulated/floor/tiled/dark, +/area/quarantined_outpost/engineering/winch_room) +"mAp" = ( +/obj/structure/bed/stool/padded/red{ + dir = 8 + }, +/obj/random/dirt_75, +/obj/machinery/alarm/east, +/turf/simulated/floor/carpet/rubber, +/area/quarantined_outpost/gym) +"mAz" = ( +/obj/machinery/door/firedoor, +/obj/effect/floor_decal/industrial/hatch_door/yellow{ + dir = 1 + }, +/obj/machinery/door/airlock/glass_security{ + name = "Shooting Range" + }, +/obj/random/dirt_75, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 1 + }, +/turf/simulated/floor/tiled/dark/full/airless, +/area/quarantined_outpost/security) +"mBf" = ( +/obj/effect/floor_decal/corner/mauve{ + dir = 1 + }, +/obj/structure/sign/flag/sol/old{ + pixel_y = 32 + }, +/obj/random/dirt_75, +/turf/simulated/floor/tiled/white, +/area/quarantined_outpost/extraction_lab) +"mBo" = ( +/obj/random/dirt_75, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled/full/airless, +/area/quarantined_outpost/security) +"mBr" = ( +/obj/structure/platform_deco/ledge/dark{ + dir = 1 + }, +/turf/simulated/floor/exoplanet/basalt, +/area/quarantined_outpost/engineering/winch_room) +"mBy" = ( +/obj/effect/floor_decal/corner/dark_blue{ + dir = 1 + }, +/obj/random/dirt_75, +/obj/item/material/stool/chair{ + pixel_y = -6; + pixel_x = 6 + }, +/turf/simulated/floor/tiled, +/area/quarantined_outpost/elevator_hallway) +"mBE" = ( +/obj/structure/table/standard, +/obj/effect/floor_decal/corner/dark_green{ + dir = 10 + }, +/obj/item/reagent_containers/food/drinks/waterbottle{ + pixel_x = -8; + pixel_y = 4 + }, +/obj/item/reagent_containers/food/drinks/waterbottle{ + pixel_y = 2 + }, +/obj/item/reagent_containers/food/drinks/waterbottle{ + pixel_y = 7; + pixel_x = 8 + }, +/obj/random/dirt_75, +/turf/simulated/floor/tiled, +/area/quarantined_outpost/gym) +"mBF" = ( +/obj/random/dirt_75, +/obj/random/dirt_75, +/obj/random/dirt_75, +/obj/machinery/atmospherics/unary/vent_pump/on, +/obj/effect/landmark/trapped_vent/maybe/quarantined_outpost, +/turf/simulated/floor/tiled, +/area/quarantined_outpost/cafeteria) +"mBH" = ( +/turf/simulated/abyss/airless, +/area/quarantined_outpost/security) +"mBN" = ( +/obj/structure/bed/stool/chair{ + dir = 4 + }, +/obj/effect/floor_decal/corner_wide/paleblue, +/obj/random/dirt_75, +/turf/simulated/floor/tiled/airless, +/area/quarantined_outpost/security) +"mBX" = ( +/obj/random/dirt_75, +/obj/random/dirt_75, +/obj/machinery/light/small/emergency{ + dir = 1 + }, +/obj/structure/flora/rock/stalagmite/random, +/turf/simulated/floor/exoplanet/asteroid/ash/rocky, +/area/quarantined_outpost/exterior/powered) +"mCd" = ( +/obj/structure/bed/stool/chair/office/light{ + dir = 8 + }, +/obj/effect/decal/cleanable/blood, +/turf/simulated/floor/tiled/dark/full, +/area/quarantined_outpost/research) +"mCO" = ( +/obj/structure/table/standard, +/obj/random/dirt_75, +/obj/machinery/chemical_dispenser/coffeemaster/full{ + pixel_y = 12 + }, +/obj/effect/floor_decal/corner/yellow/full{ + dir = 8 + }, +/turf/simulated/floor/tiled/gunmetal, +/area/quarantined_outpost/engineering) +"mDl" = ( +/obj/item/stack/rods{ + pixel_y = -6 + }, +/obj/effect/floor_decal/spline/plain/black{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/quarantined_outpost/cafeteria) +"mDr" = ( +/obj/effect/floor_decal/spline/plain/black, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/gunmetal, +/area/quarantined_outpost/north_east_hallway) +"mDs" = ( +/obj/effect/floor_decal/corner/mauve{ + dir = 5 + }, +/obj/machinery/light/broken{ + dir = 1 + }, +/obj/effect/decal/cleanable/floor_damage/rust, +/turf/simulated/floor/tiled/white, +/area/quarantined_outpost/extraction_lab) +"mDx" = ( +/obj/effect/map_effect/window_spawner/full/reinforced/firedoor, +/obj/structure/sign/greencross/small, +/turf/simulated/floor/tiled/dark/full, +/area/quarantined_outpost/north_east_hallway) +"mDU" = ( +/obj/effect/floor_decal/corner/yellow{ + dir = 8 + }, +/obj/random/dirt_75, +/turf/simulated/floor/tiled/gunmetal, +/area/quarantined_outpost/engineering) +"mEm" = ( +/obj/effect/floor_decal/corner/dark_blue{ + dir = 4 + }, +/obj/random/dirt_75, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/quarantined_outpost/elevator_hallway) +"mEr" = ( +/obj/structure/closet/secure_closet/personal, +/obj/effect/floor_decal/corner/dark_green{ + dir = 9 + }, +/obj/effect/floor_decal/industrial/outline/grey, +/obj/random/dirt_75, +/obj/random/plushie, +/obj/outfit/admin/generic, +/turf/simulated/floor/tiled, +/area/quarantined_outpost/gym) +"mEx" = ( +/obj/effect/floor_decal/corner/lime{ + dir = 10 + }, +/obj/effect/floor_decal/spline/plain/corner/black{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/quarantined_outpost/cafeteria) +"mEM" = ( +/obj/effect/floor_decal/corner_wide/paleblue{ + dir = 9 + }, +/obj/machinery/light/maybe_broken/decayed{ + dir = 8 + }, +/obj/structure/cable{ + icon_state = "2-4" + }, +/turf/simulated/floor/tiled/airless, +/area/quarantined_outpost/security) +"mEN" = ( +/obj/effect/floor_decal/corner_wide/lime/full{ + dir = 1 + }, +/obj/structure/filingcabinet/chestdrawer{ + pixel_x = 7 + }, +/obj/structure/filingcabinet{ + pixel_x = -7 + }, +/obj/item/flora/pottedplant_small/dead{ + pixel_y = 9; + pixel_x = 10 + }, +/obj/effect/decal/cleanable/floor_damage/rust, +/turf/simulated/floor/tiled/white, +/area/quarantined_outpost/medbay) +"mEO" = ( +/obj/structure/table/standard, +/obj/structure/window/reinforced, +/obj/effect/floor_decal/industrial/outline_straight/custodial{ + dir = 8 + }, +/turf/simulated/floor/tiled/light, +/area/quarantined_outpost/research) +"mEZ" = ( +/obj/effect/floor_decal/corner/yellow{ + dir = 10 + }, +/obj/random/dirt_75, +/obj/effect/decal/cleanable/floor_damage/rust, +/turf/simulated/floor/tiled/dark, +/area/quarantined_outpost/engineering/winch_room) +"mFy" = ( +/obj/effect/floor_decal/industrial/outline_door/yellow{ + dir = 4 + }, +/obj/effect/floor_decal/corner/yellow{ + dir = 8 + }, +/obj/random/dirt_75, +/obj/effect/decal/cleanable/floor_damage/rust, +/turf/simulated/floor/tiled, +/area/quarantined_outpost/engineering) +"mGz" = ( +/obj/structure/lattice/catwalk/indoor/grate/damaged, +/obj/effect/map_effect/marker/airlock/quarantined_outpost/entrance, +/obj/structure/bed/handrail{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/quarantined_outpost/entrance_lobby) +"mGP" = ( +/turf/simulated/wall, +/area/quarantined_outpost/gym) +"mGW" = ( +/obj/effect/floor_decal/corner/dark_green, +/obj/random/dirt_75, +/turf/simulated/floor/tiled, +/area/quarantined_outpost/gym) +"mHa" = ( +/obj/effect/floor_decal/corner/yellow{ + dir = 4 + }, +/obj/effect/floor_decal/corner/dark_blue{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/tiled/dark, +/area/quarantined_outpost/engineering/atmospherics) +"mHn" = ( +/obj/random/dirt_75, +/obj/effect/landmark/quarantined_outpost/creature, +/turf/simulated/floor/tiled/white, +/area/quarantined_outpost/medbay) +"mHz" = ( +/obj/effect/floor_decal/industrial/outline/medical, +/obj/structure/closet/secure_closet/personal, +/obj/structure/sign/flag/sancolette{ + pixel_x = 32 + }, +/obj/random/dirt_75, +/turf/simulated/floor/tiled/full, +/area/quarantined_outpost/medbay) +"mHB" = ( +/obj/effect/floor_decal/corner/dark_blue{ + dir = 5 + }, +/obj/structure/filingcabinet/filingcabinet{ + pixel_y = 9; + pixel_x = -8 + }, +/obj/machinery/papershredder{ + pixel_x = 6; + pixel_y = 8 + }, +/obj/random/dirt_75, +/turf/simulated/floor/tiled, +/area/quarantined_outpost/engineering/tunnel) +"mIb" = ( +/obj/machinery/door/firedoor, +/obj/effect/floor_decal/industrial/hatch_door/research{ + dir = 8 + }, +/obj/machinery/door/airlock/medical{ + name = "Research and Development Labs" + }, +/turf/simulated/floor/tiled/dark/full, +/area/quarantined_outpost/research) +"mJq" = ( +/turf/simulated/floor/tiled/rust, +/area/quarantined_outpost/dorm_hallway) +"mKY" = ( +/obj/random/dirt_75, +/obj/abstract/footprint_spawner/body{ + dir = 8 + }, +/obj/abstract/footprint_spawner_turn_helper{ + dir = 1 + }, +/obj/effect/decal/rolling_fog, +/turf/simulated/floor/tiled/dark, +/area/quarantined_outpost/research) +"mLo" = ( +/obj/structure/railing/mapped{ + dir = 1 + }, +/turf/simulated/floor/tiled/white, +/area/quarantined_outpost/extraction_lab) +"mLD" = ( +/obj/effect/floor_decal/corner/dark_blue{ + dir = 9 + }, +/obj/random/dirt_75, +/obj/abstract/footprint_spawner{ + dir = 1 + }, +/obj/abstract/footprint_spawner_turn_helper{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/quarantined_outpost/north_east_hallway) +"mMc" = ( +/obj/effect/floor_decal/corner/grey{ + dir = 8 + }, +/obj/random/dirt_75, +/turf/simulated/floor/tiled/dark, +/area/quarantined_outpost/research) +"mMo" = ( +/obj/effect/floor_decal/industrial/hatch/yellow, +/obj/machinery/door/firedoor{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/door/blast/shutters{ + dir = 8; + id = "quarantined_outpost_eng_checkpoint_out" + }, +/turf/simulated/floor/tiled/gunmetal/full, +/area/quarantined_outpost/engineering/tunnel) +"mMW" = ( +/obj/effect/floor_decal/corner/yellow{ + dir = 10 + }, +/obj/random/dirt_75, +/obj/structure/table/rack/retail_shelf, +/obj/item/storage/bag/ore{ + pixel_y = 12; + pixel_x = 4 + }, +/obj/random/custom_ka{ + pixel_y = -6; + pixel_x = -8 + }, +/turf/simulated/floor/tiled/dark, +/area/quarantined_outpost/engineering/winch_room) +"mNc" = ( +/obj/effect/floor_decal/corner_wide/lime{ + dir = 10 + }, +/obj/structure/bed/stool/chair{ + dir = 1 + }, +/obj/effect/floor_decal/corner_wide/lime{ + dir = 1 + }, +/turf/simulated/floor/tiled/white, +/area/quarantined_outpost/medbay) +"mNi" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/turf/simulated/floor/tiled/ramp{ + dir = 1 + }, +/area/quarantined_outpost/extraction_lab) +"mNj" = ( +/obj/effect/floor_decal/spline/plain/black, +/turf/simulated/floor/tiled/ridged, +/area/quarantined_outpost/extraction_lab) +"mNx" = ( +/obj/effect/decal/rolling_fog, +/turf/simulated/floor/tiled/ramp{ + dir = 1 + }, +/area/quarantined_outpost/research) +"mNB" = ( +/obj/structure/lattice/catwalk/indoor/grate/damaged, +/turf/simulated/floor/plating, +/area/quarantined_outpost/dorm_hallway) +"mNX" = ( +/obj/effect/floor_decal/corner/dark_blue/full{ + dir = 8 + }, +/obj/effect/floor_decal/industrial/outline_straight/yellow{ + dir = 4 + }, +/obj/random/dirt_75, +/obj/machinery/light/small/emergency{ + dir = 1 + }, +/turf/simulated/floor/tiled/gunmetal, +/area/quarantined_outpost/server_relay/north_west) +"mOb" = ( +/obj/effect/floor_decal/corner/dark_blue{ + dir = 1 + }, +/obj/random/dirt_75, +/obj/random/dirt_75, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/quarantined_outpost/north_east_hallway) +"mOq" = ( +/obj/effect/floor_decal/industrial/outline_door/yellow{ + dir = 1 + }, +/obj/random/dirt_75, +/turf/simulated/floor/tiled, +/area/quarantined_outpost/dorm_hallway) +"mOu" = ( +/obj/effect/floor_decal/spline/plain/black{ + dir = 4 + }, +/obj/structure/flora/pottedplant/dead{ + pixel_y = 7 + }, +/obj/random/dirt_75, +/turf/simulated/floor/tiled/dark/full/airless, +/area/quarantined_outpost/security) +"mOU" = ( +/obj/structure/lattice/catwalk/indoor/grate/old, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, +/turf/simulated/floor/plating, +/area/quarantined_outpost/reception) +"mOW" = ( +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 8 + }, +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 4 + }, +/obj/structure/flora/grass/desert{ + name = "withered grass" + }, +/turf/simulated/floor/exoplanet/barren, +/area/quarantined_outpost/elevator_hallway) +"mPg" = ( +/obj/structure/barricade/wooden/road{ + dir = 4 + }, +/turf/simulated/floor/exoplanet/asteroid/ash/rocky, +/area/quarantined_outpost/exterior) +"mPr" = ( +/obj/structure/bed/stool/chair/office/light, +/obj/effect/floor_decal/corner/mauve/full, +/obj/effect/floor_decal/spline/plain/purple{ + dir = 8 + }, +/turf/simulated/floor/tiled/light, +/area/quarantined_outpost/research) +"mPv" = ( +/obj/effect/floor_decal/corner/dark_blue{ + dir = 4 + }, +/obj/random/dirt_75, +/turf/simulated/floor/tiled/rust, +/area/quarantined_outpost/elevator_hallway) +"mPX" = ( +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/effect/floor_decal/industrial/warning{ + dir = 8 + }, +/obj/machinery/portable_atmospherics/powered/pump/filled, +/obj/random/dirt_75, +/turf/simulated/floor/tiled/dark/full, +/area/quarantined_outpost/elevator_hallway/maintenance) +"mQj" = ( +/obj/effect/floor_decal/corner/mauve/diagonal, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 1 + }, +/obj/effect/decal/cleanable/floor_damage/rust, +/turf/simulated/floor/tiled/white, +/area/quarantined_outpost/extraction_lab) +"mQy" = ( +/obj/random/dirt_75, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled/gunmetal, +/area/quarantined_outpost/engineering/tunnel) +"mQZ" = ( +/obj/effect/floor_decal/industrial/warning/full, +/obj/structure/closet/crate, +/turf/simulated/floor/plating, +/area/quarantined_outpost/cargo_bay) +"mRl" = ( +/obj/effect/floor_decal/corner/yellow{ + dir = 4 + }, +/obj/effect/decal/cleanable/floor_damage/rust, +/obj/machinery/atmospherics/binary/pump{ + dir = 1; + name = "Waste to Storage" + }, +/turf/simulated/floor/tiled/dark, +/area/quarantined_outpost/engineering/atmospherics) +"mRm" = ( +/obj/structure/platform_deco/ledge/dark{ + dir = 8 + }, +/turf/simulated/floor/exoplanet/abyss, +/area/quarantined_outpost/chasm) +"mRR" = ( +/obj/structure/bed/stool/chair/office/dark{ + dir = 8 + }, +/turf/simulated/floor/tiled/dark/full, +/area/quarantined_outpost/reception) +"mSJ" = ( +/turf/simulated/wall/r_wall, +/area/quarantined_outpost/auxiliary_power) +"mTc" = ( +/turf/simulated/floor/plating/asteroid/airless, +/area/quarantined_outpost/exterior) +"mTG" = ( +/obj/effect/floor_decal/corner/mauve/diagonal, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/quarantined_outpost/extraction_lab) +"mTH" = ( +/turf/simulated/floor/exoplanet/asteroid/ash/rocky, +/area/quarantined_outpost/exterior) +"mTK" = ( +/turf/simulated/floor/plating, +/area/quarantined_outpost/cafeteria/maintenance) +"mTZ" = ( +/obj/random/dirt_75, +/turf/simulated/floor/plating, +/area/quarantined_outpost/research) +"mUe" = ( +/obj/random/dirt_75, +/obj/random/dirt_75, +/obj/effect/floor_decal/industrial/warning/dust{ + dir = 1 + }, +/turf/simulated/floor/plating/asteroid/airless, +/area/quarantined_outpost/exterior) +"mUD" = ( +/obj/random/dirt_75, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/abstract/footprint_spawner/body{ + dir = 4 + }, +/turf/simulated/floor/tiled/rust, +/area/quarantined_outpost/reception) +"mUP" = ( +/obj/effect/floor_decal/corner_wide/paleblue{ + dir = 10 + }, +/obj/structure/sign/flag/sol/old, +/obj/random/dirt_75, +/turf/simulated/floor/tiled/airless, +/area/quarantined_outpost/security) +"mVw" = ( +/obj/structure/bed/stool/chair/office/light{ + dir = 8 + }, +/obj/effect/floor_decal/corner/mauve/diagonal, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, +/turf/simulated/floor/tiled/white, +/area/quarantined_outpost/extraction_lab) +"mVz" = ( +/obj/effect/floor_decal/industrial/outline_door/custodial{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/effect/decal/cleanable/floor_damage/rust, +/turf/simulated/floor/tiled/white, +/area/quarantined_outpost/extraction_lab) +"mVP" = ( +/obj/structure/girder, +/obj/random/dirt_75, +/turf/simulated/floor/plating, +/area/quarantined_outpost/elevator_hallway) +"mWk" = ( +/obj/random/dirt_75, +/obj/structure/barricade/wooden/road, +/turf/simulated/floor/exoplanet/basalt, +/area/quarantined_outpost/cavern/east_cavern) +"mWv" = ( +/obj/structure/bed/stool/chair, +/obj/effect/floor_decal/corner/dark_blue{ + dir = 5 + }, +/turf/simulated/floor/tiled/dark, +/area/quarantined_outpost/research) +"mWy" = ( +/obj/machinery/vending/cola, +/obj/effect/floor_decal/industrial/outline/grey, +/obj/random/dirt_75, +/turf/simulated/floor/tiled/dark/full, +/area/quarantined_outpost/dorm_hallway) +"mWC" = ( +/obj/structure/lattice/catwalk/indoor, +/obj/effect/decal/cleanable/cobweb2, +/turf/simulated/floor/plating, +/area/quarantined_outpost/engineering/atmospherics) +"mWG" = ( +/obj/effect/floor_decal/spline/plain/black, +/obj/effect/decal/cleanable/floor_damage/rust, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/gunmetal, +/area/quarantined_outpost/north_east_hallway) +"mWH" = ( +/obj/effect/floor_decal/spline/plain/black{ + dir = 10 + }, +/obj/structure/table/glass, +/obj/random/junk, +/obj/random/dirt_75, +/turf/simulated/floor/tiled/dark/full, +/area/quarantined_outpost/elevator_hallway) +"mWO" = ( +/obj/effect/floor_decal/corner/mauve{ + dir = 9 + }, +/obj/effect/floor_decal/spline/plain/corner/purple{ + dir = 4 + }, +/obj/effect/decal/cleanable/floor_damage/rust, +/turf/simulated/floor/tiled/light, +/area/quarantined_outpost/research) +"mWR" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/obj/random/dirt_75, +/obj/random/dirt_75, +/obj/structure/cable{ + icon_state = "2-8" + }, +/obj/effect/decal/cleanable/floor_damage/rust, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 + }, +/turf/simulated/floor/tiled/gunmetal/full, +/area/quarantined_outpost/engineering/tunnel) +"mWY" = ( +/obj/effect/floor_decal/spline/plain/black{ + dir = 8 + }, +/obj/effect/floor_decal/spline/plain/black{ + dir = 4 + }, +/obj/effect/floor_decal/industrial/outline/red, +/obj/machinery/computer/terminal/mob_tracker/quarantined_outpost{ + dir = 4 + }, +/obj/structure/sign/flag/sol/old{ + pixel_x = -32 + }, +/turf/simulated/floor/carpet/rubber, +/area/quarantined_outpost/engineering/winch_room) +"mXN" = ( +/obj/effect/floor_decal/corner/brown{ + dir = 6 + }, +/obj/random/dirt_75, +/turf/simulated/floor/tiled, +/area/quarantined_outpost/elevator_hallway) +"mYO" = ( +/obj/structure/bed/stool/chair/office/dark{ + dir = 4 + }, +/obj/random/dirt_75, +/obj/effect/floor_decal/corner/yellow{ + dir = 6 + }, +/turf/simulated/floor/tiled/gunmetal, +/area/quarantined_outpost/engineering) +"mZa" = ( +/obj/random/junk, +/obj/effect/floor_decal/corner/yellow, +/obj/random/dirt_75, +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/gunmetal, +/area/quarantined_outpost/engineering) +"mZw" = ( +/obj/machinery/door/airlock/maintenance_hatch{ + dir = 1 + }, +/turf/simulated/floor/tiled/gunmetal/full, +/area/quarantined_outpost/engineering) +"nac" = ( +/obj/effect/floor_decal/corner/mauve{ + dir = 9 + }, +/obj/structure/structural_support, +/obj/random/dirt_75, +/turf/simulated/floor/tiled/light, +/area/quarantined_outpost/research) +"naD" = ( +/obj/structure/table/rack/folding_table, +/obj/random/dirt_75, +/obj/random/loot, +/turf/simulated/floor/tiled, +/area/quarantined_outpost/cargo_bay) +"nbk" = ( +/obj/effect/decal/cleanable/blood, +/turf/simulated/floor/tiled/airless, +/area/quarantined_outpost/security) +"nca" = ( +/obj/structure/mirror{ + pixel_x = 27 + }, +/obj/structure/sink{ + dir = 4; + pixel_x = 12 + }, +/obj/effect/floor_decal/corner/green/diagonal, +/obj/effect/decal/cleanable/cobweb2, +/turf/simulated/floor/tiled/white, +/area/quarantined_outpost/dorm_hallway) +"ncb" = ( +/obj/machinery/conveyor{ + dir = 9 + }, +/turf/simulated/floor/tiled/dark/full, +/area/quarantined_outpost/cargo_bay) +"ncr" = ( +/obj/effect/floor_decal/corner_wide/paleblue/full{ + dir = 4 + }, +/obj/structure/flora/pottedplant/dead2, +/obj/random/dirt_75, +/turf/simulated/floor/tiled/airless, +/area/quarantined_outpost/security) +"ncu" = ( +/obj/structure/flora/rock/pile/random, +/obj/structure/railing/mapped{ + pixel_y = -3 + }, +/turf/simulated/floor/exoplanet/basalt, +/area/quarantined_outpost/engineering/tunnel) +"ncU" = ( +/obj/random/maintenance_junk_or_loot, +/obj/random/dirt_75, +/turf/simulated/floor/plating, +/area/quarantined_outpost/gym) +"nda" = ( +/obj/structure/railing/mapped{ + dir = 1 + }, +/obj/effect/floor_decal/corner_wide/paleblue/full, +/obj/random/dirt_75, +/turf/simulated/floor/tiled/airless, +/area/quarantined_outpost/security) +"ndG" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/structure/cable/orange{ + icon_state = "2-8" + }, +/obj/machinery/light/small/broken{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/quarantined_outpost/engineering) +"ndJ" = ( +/obj/effect/floor_decal/corner/yellow{ + dir = 5 + }, +/obj/random/dirt_75, +/obj/effect/decal/cleanable/generic, +/obj/effect/landmark/quarantined_outpost/creature, +/turf/simulated/floor/tiled/gunmetal, +/area/quarantined_outpost/engineering) +"ndN" = ( +/obj/effect/floor_decal/spline/plain/black{ + dir = 10 + }, +/obj/random/dirt_75, +/turf/simulated/floor/tiled/gunmetal, +/area/quarantined_outpost/north_east_hallway) +"neu" = ( +/obj/effect/floor_decal/industrial/hatch/yellow, +/turf/simulated/floor/tiled/full/airless, +/area/quarantined_outpost/security) +"neA" = ( +/obj/effect/floor_decal/corner_wide/paleblue/full{ + dir = 4 + }, +/obj/machinery/computer/terminal/inactive{ + dir = 8 + }, +/turf/simulated/floor/tiled/airless, +/area/quarantined_outpost/security) +"neG" = ( +/obj/structure/bed/stool/chair, +/obj/random/dirt_75, +/turf/simulated/floor/tiled/airless, +/area/quarantined_outpost/security) +"neL" = ( +/obj/effect/floor_decal/corner/grey/diagonal, +/obj/effect/floor_decal/spline/plain/corner{ + dir = 1 + }, +/obj/effect/floor_decal/spline/plain{ + dir = 8 + }, +/obj/structure/bed/stool/padded/red, +/obj/random/dirt_75, +/obj/machinery/light/maybe_broken/decayed{ + dir = 1 + }, +/turf/simulated/floor/tiled/white, +/area/quarantined_outpost/cafeteria) +"nfa" = ( +/turf/simulated/wall, +/area/quarantined_outpost/elevator_hallway) +"nfk" = ( +/obj/effect/floor_decal/spline/plain/black{ + dir = 1 + }, +/obj/random/junk, +/obj/random/dirt_75, +/turf/simulated/floor/tiled/full/airless, +/area/quarantined_outpost/security) +"nfr" = ( +/obj/structure/railing/mapped, +/obj/structure/table/rack, +/obj/effect/floor_decal/corner_wide/lime{ + dir = 6 + }, +/obj/effect/floor_decal/industrial/warning, +/turf/simulated/floor/tiled/white, +/area/quarantined_outpost/medbay) +"nfz" = ( +/obj/random/dirt_75, +/obj/effect/decal/cleanable/blood, +/turf/simulated/floor/tiled, +/area/quarantined_outpost/elevator_hallway) +"nfT" = ( +/obj/effect/floor_decal/corner/yellow{ + dir = 10 + }, +/obj/random/dirt_75, +/obj/structure/table/standard, +/obj/random/loot, +/turf/simulated/floor/tiled, +/area/quarantined_outpost/engineering) +"ngh" = ( +/obj/random/dirt_75, +/obj/effect/floor_decal/corner/dark_blue{ + dir = 6 + }, +/obj/machinery/light/maybe_broken/decayed{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/quarantined_outpost/elevator_hallway) +"ngA" = ( +/obj/random/dirt_75, +/obj/random/dirt_75, +/obj/structure/grille/broken, +/turf/simulated/floor/airless, +/area/quarantined_outpost/auxiliary_power) +"ngG" = ( +/obj/structure/platform{ + dir = 1 + }, +/obj/effect/floor_decal/industrial/warning, +/turf/simulated/floor/plating, +/area/quarantined_outpost/research) +"nhw" = ( +/obj/effect/floor_decal/corner/brown{ + dir = 10 + }, +/obj/machinery/light/floor/maybe_broken/decayed, +/obj/random/dirt_75, +/obj/random/dirt_75, +/turf/simulated/floor/tiled, +/area/quarantined_outpost/elevator_hallway) +"nhB" = ( +/obj/structure/tank_wall/air{ + icon_state = "air8" + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/quarantined_outpost/engineering/atmospherics) +"nhO" = ( +/obj/structure/table/standard, +/obj/random/survival_weapon, +/turf/simulated/floor/tiled/bitile{ + dir = 8 + }, +/area/quarantined_outpost/cafeteria) +"nhR" = ( +/turf/simulated/wall, +/area/quarantined_outpost/security) +"nib" = ( +/obj/machinery/shower{ + dir = 4 + }, +/obj/structure/curtain/open/shower, +/obj/machinery/shower{ + pixel_y = 24 + }, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/effect/floor_decal/concrete/gutter, +/obj/random/dirt_75, +/obj/item/soap/red_soap, +/turf/simulated/floor/marble, +/area/quarantined_outpost/gym) +"nij" = ( +/obj/structure/lattice/catwalk/indoor/grate/dark, +/obj/structure/cable{ + icon_state = "2-4" + }, +/turf/simulated/floor/plating, +/area/quarantined_outpost/engineering) +"niz" = ( +/obj/effect/floor_decal/corner_wide/paleblue{ + dir = 9 + }, +/turf/simulated/floor/tiled, +/area/quarantined_outpost/elevator_hallway) +"niG" = ( +/obj/effect/floor_decal/spline/plain/purple{ + dir = 8 + }, +/obj/random/dirt_75, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled/light, +/area/quarantined_outpost/research) +"niW" = ( +/obj/abstract/footprint_spawner/oil{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/quarantined_outpost/engineering/atmospherics) +"njj" = ( +/obj/structure/lattice/catwalk/indoor/grate/dark, +/obj/structure/sink{ + dir = 4; + pixel_x = 12 + }, +/turf/simulated/floor/plating, +/area/quarantined_outpost/research) +"njZ" = ( +/obj/structure/tank_wall/hydrogen, +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/turf/simulated/floor/plating, +/area/quarantined_outpost/engineering/atmospherics) +"nkm" = ( +/obj/structure/lattice/catwalk/indoor/grate, +/obj/effect/map_effect/marker/airlock/quarantined_outpost/entrance, +/obj/machinery/light/small/maybe_broken/decayed, +/turf/simulated/floor/plating, +/area/quarantined_outpost/entrance_lobby) +"nks" = ( +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 6 + }, +/obj/structure/flora/grass/desert/bush{ + name = "withered grass" + }, +/turf/simulated/floor/exoplanet/barren, +/area/quarantined_outpost/north_east_hallway) +"nky" = ( +/obj/machinery/light/small/emergency{ + dir = 4 + }, +/turf/simulated/floor/exoplanet/abyss, +/area/quarantined_outpost/engineering/atmospherics) +"nkR" = ( +/turf/simulated/floor/plating, +/area/quarantined_outpost/medbay) +"nlt" = ( +/obj/effect/floor_decal/corner/red{ + dir = 6 + }, +/obj/structure/platform/dark{ + dir = 8 + }, +/obj/effect/decal/cleanable/floor_damage/rust, +/obj/random/dirt_75, +/turf/simulated/floor/tiled/dark, +/area/quarantined_outpost/research) +"nlx" = ( +/obj/effect/floor_decal/corner_wide/lime{ + dir = 6 + }, +/obj/structure/bed/stool/chair{ + dir = 8 + }, +/obj/random/dirt_75, +/turf/simulated/floor/tiled/white, +/area/quarantined_outpost/medbay) +"nlZ" = ( +/obj/effect/floor_decal/corner_wide/paleblue{ + dir = 6 + }, +/obj/structure/inflatable/door, +/turf/simulated/floor/tiled/airless, +/area/quarantined_outpost/security) +"nma" = ( +/obj/random/dirt_75, +/obj/random/dirt_75, +/obj/structure/railing/mapped{ + dir = 8 + }, +/turf/simulated/floor/exoplanet/basalt, +/area/quarantined_outpost/cavern/east_cavern) +"nmt" = ( +/obj/effect/decal/remains, +/obj/item/material/twohanded/spear/steel{ + pixel_y = -13; + pixel_x = -10 + }, +/obj/effect/decal/cleanable/blood, +/obj/random/dirt_75, +/obj/random/dirt_75, +/turf/simulated/floor/tiled/bitile/middle{ + dir = 4 + }, +/area/quarantined_outpost/cafeteria) +"nmJ" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 4 + }, +/obj/effect/decal/cleanable/blood/oil, +/obj/effect/floor_decal/industrial/outline_straight/yellow{ + dir = 8 + }, +/obj/effect/decal/rolling_fog, +/turf/simulated/floor/plating, +/area/quarantined_outpost/research) +"nmZ" = ( +/obj/effect/floor_decal/industrial/hatch_door/yellow{ + dir = 1 + }, +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/glass{ + dir = 1; + name = "Residential Lift"; + locked = 1 + }, +/turf/simulated/floor/tiled, +/area/quarantined_outpost/elevator_hallway) +"nnj" = ( +/obj/structure/table/standard, +/obj/item/device/laser_pointer/red, +/obj/random/dirt_75, +/turf/simulated/floor/tiled/airless, +/area/quarantined_outpost/security) +"nnk" = ( +/obj/effect/floor_decal/corner/dark_blue/full, +/turf/simulated/floor/tiled, +/area/quarantined_outpost/elevator_hallway) +"nnu" = ( +/obj/structure/bed/stool/chair{ + dir = 1 + }, +/obj/structure/railing/mapped{ + dir = 4 + }, +/obj/effect/floor_decal/industrial/outline/security, +/obj/effect/decal/cleanable/blood, +/obj/random/dirt_75, +/turf/simulated/floor/tiled/dark/airless, +/area/quarantined_outpost/security) +"nnK" = ( +/obj/effect/floor_decal/corner/dark_blue, +/obj/random/dirt_75, +/obj/random/dirt_75, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 1 + }, +/turf/simulated/floor/tiled/dark, +/area/quarantined_outpost/engineering/atmospherics) +"nnT" = ( +/turf/simulated/floor/tiled/dark, +/area/quarantined_outpost/engineering/atmospherics) +"nnX" = ( +/obj/structure/bed/stool/chair{ + dir = 1 + }, +/obj/effect/floor_decal/corner/brown{ + dir = 4 + }, +/obj/random/dirt_75, +/turf/simulated/floor/tiled/dark, +/area/quarantined_outpost/elevator_hallway) +"nop" = ( +/obj/structure/railing/mapped{ + dir = 1 + }, +/obj/structure/railing/mapped{ + dir = 8 + }, +/obj/random/dirt_75, +/turf/simulated/floor/plating/asteroid/airless, +/area/quarantined_outpost/exterior) +"not" = ( +/obj/effect/floor_decal/corner/brown{ + dir = 10 + }, +/obj/random/dirt_75, +/obj/random/dirt_75, +/turf/simulated/floor/tiled, +/area/quarantined_outpost/elevator_hallway) +"noS" = ( +/obj/random/dirt_75, +/obj/structure/cable/orange{ + icon_state = "2-4" + }, +/obj/item/stack/tile/floor{ + pixel_x = 4; + pixel_y = 10 + }, +/obj/machinery/light/small/maybe_broken/decayed{ + dir = 1 + }, +/turf/simulated/floor/plating, +/area/quarantined_outpost/engineering) +"noT" = ( +/obj/structure/lattice/catwalk/indoor/grate/dark, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 1 + }, +/turf/simulated/floor/plating, +/area/quarantined_outpost/engineering/atmospherics) +"npa" = ( +/obj/machinery/door/firedoor, +/obj/structure/window/shuttle/scc_space_ship/cardinal, +/turf/simulated/floor/tiled/dark/full, +/area/quarantined_outpost/extraction_lab) +"nqk" = ( +/obj/structure/crane{ + dir = 8; + pixel_x = -84 + }, +/obj/effect/floor_decal/industrial/warning/full, +/turf/simulated/floor/tiled/dark/full, +/area/quarantined_outpost/engineering/winch_room) +"nql" = ( +/obj/structure/cable{ + 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/dark/full, +/area/quarantined_outpost/research) +"nqv" = ( +/obj/effect/floor_decal/industrial/hatch/operations, +/obj/random/dirt_75, +/obj/structure/sign/flag/sol/old{ + pixel_y = -32 + }, +/turf/simulated/floor/tiled, +/area/quarantined_outpost/cargo_bay) +"nqG" = ( +/obj/effect/floor_decal/corner/dark_blue{ + dir = 8 + }, +/obj/random/dirt_75, +/turf/simulated/floor/tiled, +/area/quarantined_outpost/cafeteria) +"nqT" = ( +/turf/simulated/floor/tiled/white, +/area/quarantined_outpost/gym) +"nqW" = ( +/obj/random/dirt_75, +/turf/simulated/floor/tiled, +/area/quarantined_outpost/dorm_hallway) +"nrn" = ( +/obj/random/dirt_75, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 + }, +/turf/simulated/floor/tiled, +/area/quarantined_outpost/elevator_hallway) +"nrs" = ( +/obj/effect/floor_decal/corner/dark_blue{ + dir = 8 + }, +/obj/random/dirt_75, +/obj/abstract/footprint_spawner{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/quarantined_outpost/north_east_hallway) +"nrv" = ( +/obj/machinery/door/firedoor, +/obj/effect/floor_decal/industrial/hatch_door/yellow{ + dir = 1 + }, +/obj/machinery/door/airlock/generic, +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/full, +/area/quarantined_outpost/dorm_hallway) +"nrS" = ( +/obj/machinery/computer/terminal/inactive{ + dir = 8 + }, +/obj/effect/floor_decal/spline/plain/black{ + dir = 4 + }, +/obj/structure/railing/mapped{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/quarantined_outpost/extraction_lab) +"nrY" = ( +/obj/effect/floor_decal/industrial/outline_straight/custodial{ + dir = 4 + }, +/obj/effect/landmark/quarantined_outpost/canister_spawn, +/turf/simulated/floor/tiled/light, +/area/quarantined_outpost/research) +"nsA" = ( +/obj/item/hullbeacon/red, +/obj/structure/railing/mapped{ + dir = 1 + }, +/obj/structure/railing/mapped{ + dir = 8 + }, +/turf/simulated/floor/plating/asteroid/airless, +/area/quarantined_outpost/exterior) +"nsO" = ( +/obj/structure/table/standard/flipped, +/turf/simulated/floor/tiled/bitile/middle{ + dir = 4 + }, +/area/quarantined_outpost/cafeteria) +"ntl" = ( +/obj/effect/floor_decal/industrial/hatch/yellow, +/obj/machinery/door/firedoor, +/obj/effect/decal/cleanable/blood, +/turf/simulated/floor/tiled/gunmetal/full, +/area/quarantined_outpost/engineering/tunnel) +"ntn" = ( +/obj/effect/floor_decal/industrial/hatch_door/medical{ + dir = 1 + }, +/obj/machinery/door/firedoor, +/obj/structure/plasticflaps/airtight, +/obj/machinery/door/airlock/medical{ + name = "Medicine Storage"; + welded = 1 + }, +/turf/simulated/floor/tiled/white, +/area/quarantined_outpost/medbay) +"ntp" = ( +/obj/random/dirt_75, +/obj/machinery/light/maybe_broken/decayed{ + dir = 1 + }, +/obj/effect/decal/remains, +/obj/random/civgun/rifle, +/turf/simulated/floor/tiled, +/area/quarantined_outpost/dorm_hallway) +"ntS" = ( +/obj/structure/tank_wall/air, +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/turf/simulated/floor/plating, +/area/quarantined_outpost/engineering/atmospherics) +"nuj" = ( +/obj/random/dirt_75, +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/simulated/floor/tiled, +/area/quarantined_outpost/cargo_bay) +"nuq" = ( +/obj/effect/floor_decal/corner_wide/paleblue{ + dir = 6 + }, +/obj/structure/table/standard, +/obj/item/storage/box/sharps{ + pixel_y = 11; + pixel_x = 6 + }, +/obj/item/reagent_containers/spray/cleaner{ + desc = "Someone has crossed out the Space from Space Cleaner and written in Surgery. 'Do not remove under punishment of death!!!' is scrawled on the back."; + icon_state = "sterilesprayblue"; + name = "surgery cleaner"; + pixel_x = -6 + }, +/obj/effect/decal/cleanable/floor_damage/rust, +/turf/simulated/floor/tiled/white, +/area/quarantined_outpost/medbay) +"nuz" = ( +/obj/effect/floor_decal/corner/mauve{ + dir = 6 + }, +/obj/machinery/photocopier, +/obj/effect/decal/cleanable/floor_damage/rust, +/obj/random/dirt_75, +/turf/simulated/floor/tiled/light, +/area/quarantined_outpost/research) +"nuA" = ( +/obj/effect/floor_decal/corner/dark_green{ + dir = 10 + }, +/obj/effect/floor_decal/spline/plain/black{ + dir = 8 + }, +/obj/structure/bed/stool/padded/red{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/quarantined_outpost/gym) +"nuB" = ( +/obj/effect/floor_decal/corner_wide/paleblue/diagonal, +/obj/random/dirt_75, +/obj/random/dirt_75, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 4 + }, +/obj/effect/landmark/trapped_vent/maybe/quarantined_outpost, +/turf/simulated/floor/tiled/airless, +/area/quarantined_outpost/security) +"nvb" = ( +/obj/effect/floor_decal/corner_wide/lime/full{ + dir = 4 + }, +/obj/structure/table/standard, +/turf/simulated/floor/tiled/white, +/area/quarantined_outpost/medbay) +"nvd" = ( +/obj/structure/bed/stool/padded/red{ + dir = 4; + pixel_y = 8 + }, +/obj/effect/floor_decal/industrial/outline/grey, +/obj/random/dirt_75, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 1 + }, +/turf/simulated/floor/tiled/dark/full/airless, +/area/quarantined_outpost/security) +"nvA" = ( +/obj/structure/platform_deco/dark, +/obj/effect/floor_decal/industrial/outline_straight/yellow{ + dir = 9 + }, +/obj/effect/decal/rolling_fog, +/turf/simulated/floor/plating, +/area/quarantined_outpost/research) +"nvC" = ( +/obj/effect/floor_decal/corner_wide/lime, +/obj/structure/closet/secure_closet/medical/empty{ + name = "Stabilization Supply" + }, +/obj/effect/floor_decal/industrial/outline/red, +/obj/item/tank/oxygen, +/obj/item/tank/oxygen, +/obj/item/clothing/mask/breath/medical, +/obj/item/clothing/mask/breath/medical, +/obj/item/bodybag/cryobag, +/obj/item/bodybag/cryobag, +/obj/machinery/light/maybe_broken/decayed{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/quarantined_outpost/medbay) +"nwe" = ( +/obj/effect/floor_decal/corner/mauve{ + dir = 6 + }, +/obj/structure/table/standard, +/obj/effect/decal/cleanable/floor_damage/rust, +/obj/random/dirt_75, +/obj/machinery/light/maybe_broken/decayed{ + dir = 4 + }, +/turf/simulated/floor/tiled/light, +/area/quarantined_outpost/research) +"nwg" = ( +/obj/effect/floor_decal/spline/plain/black{ + dir = 8 + }, +/turf/simulated/floor/tiled/gunmetal, +/area/quarantined_outpost/north_east_hallway) +"nwq" = ( +/obj/structure/lattice/catwalk/indoor/grate/dark, +/obj/structure/cable{ + icon_state = "2-8" + }, +/turf/simulated/floor/plating, +/area/quarantined_outpost/cargo_bay) +"nwM" = ( +/obj/effect/floor_decal/corner/yellow{ + dir = 8 + }, +/obj/random/dirt_75, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/effect/decal/cleanable/floor_damage/rust, +/turf/simulated/floor/tiled/gunmetal, +/area/quarantined_outpost/engineering) +"nwN" = ( +/obj/machinery/light/small{ + dir = 1 + }, +/obj/effect/floor_decal/corner/yellow{ + dir = 5 + }, +/obj/item/stack/barricade/wood, +/obj/abstract/footprint_spawner/body{ + dir = 8 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled/gunmetal, +/area/quarantined_outpost/engineering/tunnel) +"nxe" = ( +/obj/machinery/atmospherics/pipe/manifold4w/visible, +/obj/effect/decal/cleanable/floor_damage/rust, +/obj/effect/decal/rolling_fog, +/turf/simulated/floor/plating, +/area/quarantined_outpost/research) +"nye" = ( +/obj/structure/platform{ + dir = 1 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 8 + }, +/obj/effect/decal/cleanable/floor_damage/rust, +/obj/random/dirt_75, +/turf/simulated/floor/tiled/dark, +/area/quarantined_outpost/research) +"nyi" = ( +/obj/structure/railing/mapped{ + dir = 4 + }, +/obj/structure/lattice/catwalk/indoor, +/turf/simulated/floor/exoplanet/abyss, +/area/quarantined_outpost/research/containment) +"nyl" = ( +/obj/effect/decal/cleanable/blood, +/obj/random/dirt_75, +/turf/simulated/floor/tiled/airless, +/area/quarantined_outpost/security) +"nzs" = ( +/obj/effect/floor_decal/corner/mauve/diagonal, +/obj/structure/table/standard, +/turf/simulated/floor/tiled/white, +/area/quarantined_outpost/extraction_lab) +"nzB" = ( +/obj/effect/floor_decal/industrial/outline/medical, +/obj/structure/closet/crate/trashcart, +/obj/effect/decal/cleanable/cobweb, +/obj/effect/decal/cleanable/floor_damage/rust, +/obj/random/dirt_75, +/obj/random/dirt_75, +/turf/simulated/floor/tiled, +/area/quarantined_outpost/medbay) +"nAg" = ( +/obj/effect/floor_decal/corner/dark_blue{ + dir = 5 + }, +/obj/random/dirt_75, +/obj/random/junk, +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/rust, +/area/quarantined_outpost/elevator_hallway) +"nAk" = ( +/obj/effect/floor_decal/industrial/outline_straight/custodial{ + dir = 8 + }, +/obj/random/dirt_75, +/turf/simulated/floor/tiled/light, +/area/quarantined_outpost/research) +"nAx" = ( +/obj/structure/lattice/catwalk/indoor, +/obj/random/dirt_75, +/obj/machinery/light/small/maybe_broken/decayed{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/quarantined_outpost/engineering/atmospherics) +"nAS" = ( +/obj/structure/bed/stool/chair/sofa/left/brown, +/obj/random/dirt_75, +/obj/structure/sign/flag/sol/old{ + pixel_y = 32 + }, +/turf/simulated/floor/lino, +/area/quarantined_outpost/cafeteria) +"nBH" = ( +/turf/simulated/floor/tiled/ramp, +/area/quarantined_outpost/extraction_lab) +"nBO" = ( +/obj/effect/floor_decal/corner/lime{ + dir = 9 + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on, +/turf/simulated/floor/tiled, +/area/quarantined_outpost/cafeteria) +"nBX" = ( +/obj/effect/floor_decal/industrial/outline/service, +/turf/simulated/floor/tiled/dark/full, +/area/quarantined_outpost/cafeteria) +"nCG" = ( +/obj/structure/railing/mapped{ + dir = 1 + }, +/obj/effect/floor_decal/corner/brown{ + dir = 5 + }, +/obj/random/dirt_75, +/turf/simulated/floor/tiled, +/area/quarantined_outpost/cargo_bay) +"nCL" = ( +/obj/random/dirt_75, +/obj/random/dirt_75, +/obj/effect/floor_decal/corner/yellow/full{ + dir = 4 + }, +/turf/simulated/floor/tiled/gunmetal, +/area/quarantined_outpost/engineering) +"nDb" = ( +/obj/machinery/door/firedoor, +/obj/effect/floor_decal/industrial/hatch_door/yellow{ + dir = 1 + }, +/obj/machinery/door/airlock/glass_security{ + name = "Office" + }, +/obj/random/dirt_75, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 1 + }, +/turf/simulated/floor/tiled/full/airless, +/area/quarantined_outpost/security) +"nDp" = ( +/obj/random/dirt_75, +/obj/structure/table/glass, +/turf/simulated/floor/tiled, +/area/quarantined_outpost/elevator_hallway) +"nDL" = ( +/obj/structure/cable/orange{ + icon_state = "1-2" + }, +/obj/structure/cable/orange{ + icon_state = "1-8" + }, +/obj/structure/lattice/catwalk/indoor, +/turf/simulated/floor/airless, +/area/quarantined_outpost/auxiliary_power) +"nDQ" = ( +/obj/random/dirt_75, +/turf/simulated/floor/tiled, +/area/quarantined_outpost/engineering) +"nEa" = ( +/obj/effect/floor_decal/corner/dark_blue{ + dir = 8 + }, +/obj/structure/inflatable/wall, +/obj/random/dirt_75, +/obj/random/dirt_75, +/turf/simulated/floor/tiled, +/area/quarantined_outpost/elevator_hallway) +"nER" = ( +/obj/random/dirt_75, +/obj/random/dirt_75, +/obj/machinery/power/apc/north, +/obj/structure/cable{ + icon_state = "0-2" + }, +/turf/simulated/floor/tiled, +/area/quarantined_outpost/cafeteria/maintenance) +"nFh" = ( +/obj/structure/filingcabinet/filingcabinet, +/obj/structure/filingcabinet/filingcabinet{ + pixel_x = 10 + }, +/obj/structure/filingcabinet/filingcabinet{ + pixel_x = -10 + }, +/obj/effect/floor_decal/corner_wide/paleblue/full{ + dir = 8 + }, +/obj/random/dirt_75, +/turf/simulated/floor/tiled/airless, +/area/quarantined_outpost/security) +"nFr" = ( +/obj/structure/tank_wall/oxygen{ + icon_state = "o2-10" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/quarantined_outpost/engineering/atmospherics) +"nFs" = ( +/obj/machinery/door/firedoor/multi_tile, +/obj/effect/floor_decal/industrial/hatch/yellow, +/obj/machinery/door/airlock/multi_tile/glass{ + welded = 1; + name = "Security" + }, +/obj/random/dirt_75, +/turf/simulated/floor/tiled/full/airless, +/area/quarantined_outpost/security) +"nFE" = ( +/obj/effect/floor_decal/industrial/outline_door/custodial{ + dir = 8 + }, +/obj/effect/floor_decal/industrial/outline_segment/research, +/obj/effect/floor_decal/industrial/outline_segment/research{ + dir = 9 + }, +/obj/effect/decal/cleanable/floor_damage/rust, +/obj/random/dirt_75, +/turf/simulated/floor/tiled/light, +/area/quarantined_outpost/research) +"nGr" = ( +/obj/random/dirt_75, +/obj/random/dirt_75, +/obj/random/dirt_75, +/turf/simulated/floor/tiled, +/area/quarantined_outpost/engineering/tunnel) +"nGD" = ( +/obj/machinery/door/firedoor/multi_tile, +/obj/effect/floor_decal/industrial/hatch/yellow, +/obj/machinery/door/airlock/multi_tile/glass{ + welded = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 1 + }, +/turf/simulated/floor/tiled/dark/full, +/area/quarantined_outpost/entrance_lobby) +"nGX" = ( +/obj/effect/floor_decal/spline/plain/black{ + dir = 1 + }, +/obj/random/dirt_75, +/obj/random/dirt_75, +/obj/machinery/light/small/maybe_broken/decayed{ + dir = 1 + }, +/turf/simulated/floor/tiled/gunmetal, +/area/quarantined_outpost/engineering/tunnel) +"nHh" = ( +/obj/effect/floor_decal/corner/dark_blue, +/obj/effect/floor_decal/corner/yellow{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/turf/simulated/floor/tiled/dark, +/area/quarantined_outpost/engineering/atmospherics) +"nHn" = ( +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/machinery/vending/cigarette, +/turf/simulated/floor/tiled/dark/full, +/area/quarantined_outpost/dorm_hallway) +"nHD" = ( +/obj/effect/floor_decal/corner_wide/lime{ + dir = 9 + }, +/obj/effect/floor_decal/corner_wide/lime, +/obj/machinery/light/maybe_broken/decayed{ + dir = 8 + }, +/turf/simulated/floor/tiled/white, +/area/quarantined_outpost/medbay) +"nII" = ( +/obj/structure/lattice/catwalk/indoor/grate, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/quarantined_outpost/elevator_hallway) +"nIX" = ( +/obj/structure/railing/mapped{ + dir = 8 + }, +/obj/structure/lattice/catwalk/indoor/grate/dark, +/obj/machinery/portable_atmospherics/canister/empty/boron, +/obj/effect/decal/rolling_fog, +/turf/simulated/floor/plating, +/area/quarantined_outpost/research) +"nJg" = ( +/obj/effect/decal/cleanable/blood, +/turf/simulated/floor/tiled/white, +/area/quarantined_outpost/medbay) +"nJh" = ( +/obj/effect/floor_decal/corner/lime{ + dir = 1 + }, +/obj/random/dirt_75, +/obj/structure/sign/poster{ + pixel_y = -32 + }, +/turf/simulated/floor/tiled, +/area/quarantined_outpost/cafeteria) +"nJi" = ( +/obj/structure/tank_wall/hydrogen{ + icon_state = "h8" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/quarantined_outpost/engineering/atmospherics) +"nJm" = ( +/obj/effect/floor_decal/corner/mauve{ + dir = 4 + }, +/obj/random/dirt_75, +/obj/effect/decal/cleanable/floor_damage/rust, +/turf/simulated/floor/tiled/white, +/area/quarantined_outpost/extraction_lab) +"nJy" = ( +/obj/structure/lattice/catwalk, +/obj/machinery/light/small/emergency{ + dir = 4 + }, +/turf/simulated/floor/exoplanet/abyss, +/area/quarantined_outpost/engineering/winch_room) +"nJD" = ( +/obj/effect/floor_decal/spline/plain/purple, +/obj/effect/decal/cleanable/floor_damage/rust, +/obj/random/dirt_75, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled/light, +/area/quarantined_outpost/research) +"nJS" = ( +/obj/machinery/conveyor{ + dir = 6 + }, +/turf/simulated/floor/tiled/dark/full, +/area/quarantined_outpost/cargo_bay) +"nJV" = ( +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/quarantined_outpost/gym) +"nKb" = ( +/obj/structure/railing/mapped{ + dir = 1 + }, +/obj/random/dirt_75, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 4 + }, +/turf/simulated/floor/tiled/airless, +/area/quarantined_outpost/security) +"nKt" = ( +/obj/effect/floor_decal/corner/dark_blue{ + dir = 6 + }, +/obj/machinery/light/maybe_broken/decayed{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/quarantined_outpost/north_east_hallway) +"nKC" = ( +/obj/effect/floor_decal/spline/plain/corner/purple{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled/light, +/area/quarantined_outpost/research) +"nKQ" = ( +/obj/machinery/door/airlock/hatch{ + dir = 1 + }, +/obj/structure/lattice/catwalk, +/turf/simulated/floor/exoplanet/basalt, +/area/quarantined_outpost/cafeteria/maintenance) +"nLp" = ( +/obj/random/dirt_75, +/obj/effect/decal/cleanable/cobweb, +/obj/structure/trash_pile, +/turf/simulated/floor/plating, +/area/quarantined_outpost/cargo_bay) +"nLr" = ( +/obj/random/dirt_75, +/obj/machinery/atmospherics/unary/vent_pump/on, +/obj/effect/landmark/trapped_vent/maybe/quarantined_outpost, +/turf/simulated/floor/tiled, +/area/quarantined_outpost/elevator_hallway) +"nLB" = ( +/obj/effect/floor_decal/spline/plain/corner/black{ + dir = 1 + }, +/obj/effect/floor_decal/spline/plain/corner/black, +/turf/simulated/floor/tiled, +/area/quarantined_outpost/gym) +"nLD" = ( +/obj/effect/floor_decal/industrial/outline_door/yellow{ + dir = 4 + }, +/obj/structure/table/standard/flipped{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/simulated/floor/tiled, +/area/quarantined_outpost/cafeteria) +"nNo" = ( +/obj/structure/table/standard, +/turf/simulated/floor/tiled/airless, +/area/quarantined_outpost/security) +"nNH" = ( +/obj/structure/cable{ + icon_state = "1-4" + }, +/turf/simulated/floor/plating, +/area/quarantined_outpost/entrance_maintenance) +"nNM" = ( +/obj/effect/floor_decal/spline/plain/corner/black{ + dir = 1 + }, +/turf/simulated/floor/tiled/white, +/area/quarantined_outpost/extraction_lab) +"nOV" = ( +/obj/effect/floor_decal/spline/plain/black{ + dir = 8 + }, +/obj/structure/railing/mapped{ + dir = 8 + }, +/obj/machinery/floodlight/randomcharge, +/turf/simulated/floor/tiled/white, +/area/quarantined_outpost/extraction_lab) +"nOW" = ( +/turf/simulated/floor/tiled/freezer{ + name = "cooled tiles"; + temperature = 253.15 + }, +/area/quarantined_outpost/medbay) +"nPg" = ( +/obj/effect/decal/cleanable/floor_damage/random_broken, +/obj/effect/decal/remains, +/turf/simulated/floor/plating, +/area/quarantined_outpost/entrance_lobby) +"nPP" = ( +/obj/effect/floor_decal/corner/black/full{ + dir = 1 + }, +/obj/structure/closet/cabinet, +/obj/outfit/admin/generic, +/obj/item/material/knife/butterfly/switchblade, +/obj/effect/decal/cleanable/cobweb2, +/turf/simulated/floor/tiled, +/area/quarantined_outpost/dorm_hallway) +"nQb" = ( +/obj/random/dirt_75, +/obj/structure/dressing_divider/hospital{ + pixel_y = -14; + dir = 1 + }, +/turf/simulated/floor/tiled/white, +/area/quarantined_outpost/medbay) +"nRb" = ( +/obj/effect/map_effect/window_spawner/full/reinforced/firedoor, +/obj/machinery/door/blast/regular{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark/full/airless, +/area/quarantined_outpost/security) +"nRy" = ( +/obj/effect/floor_decal/corner/black{ + dir = 9 + }, +/obj/structure/bed/padded, +/obj/item/bedsheet/purple, +/obj/structure/sign/flag/venus{ + pixel_x = -32 + }, +/turf/simulated/floor/tiled, +/area/quarantined_outpost/dorm_hallway) +"nRJ" = ( +/obj/structure/platform{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled/ridged, +/area/quarantined_outpost/extraction_lab) +"nRW" = ( +/obj/structure/railing/mapped{ + dir = 8 + }, +/obj/machinery/conveyor{ + dir = 1 + }, +/turf/simulated/floor/tiled/dark/full, +/area/quarantined_outpost/cargo_bay) +"nSo" = ( +/obj/effect/floor_decal/corner/black{ + dir = 9 + }, +/obj/structure/flora/pottedplant/dead, +/obj/random/dirt_75, +/turf/simulated/floor/tiled, +/area/quarantined_outpost/dorm_hallway) +"nSC" = ( +/obj/random/dirt_75, +/obj/machinery/power/apc/east, +/obj/structure/cable{ + icon_state = "0-8" + }, +/turf/simulated/floor/plating, +/area/quarantined_outpost/north_east_hallway/maintenance) +"nSW" = ( +/obj/machinery/atmospherics/pipe/simple/hidden, +/obj/machinery/door/firedoor/noid, +/obj/machinery/door/airlock/maintenance_hatch, +/turf/simulated/floor/plating, +/area/quarantined_outpost/medbay) +"nTf" = ( +/obj/effect/floor_decal/industrial/hatch/yellow, +/obj/machinery/door/firedoor/noid/closed{ + dir = 4 + }, +/turf/simulated/floor/tiled/gunmetal/full, +/area/quarantined_outpost/engineering/tunnel) +"nTn" = ( +/obj/machinery/portable_atmospherics/canister/hydrogen, +/obj/machinery/atmospherics/portables_connector, +/turf/simulated/floor/reinforced, +/area/quarantined_outpost/engineering/atmospherics) +"nTq" = ( +/obj/effect/floor_decal/corner/brown{ + dir = 10 + }, +/obj/random/dirt_75, +/obj/random/dirt_75, +/obj/random/dirt_75, +/turf/simulated/floor/tiled, +/area/quarantined_outpost/elevator_hallway) +"nTr" = ( +/obj/random/maintenance_junk_or_loot, +/turf/simulated/floor/exoplanet/basalt, +/area/quarantined_outpost/engineering/tunnel) +"nTs" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/red{ + dir = 4 + }, +/obj/machinery/atmospherics/binary/pump{ + dir = 1 + }, +/turf/simulated/floor/plating, +/area/quarantined_outpost/engineering/atmospherics) +"nTw" = ( +/obj/effect/floor_decal/industrial/outline/grey, +/obj/structure/closet/secure_closet/freezer/chicken_and_fish, +/turf/simulated/floor/tiled/freezer{ + name = "cooled tiles"; + temperature = 253.15 + }, +/area/quarantined_outpost/cafeteria) +"nTy" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/random/dirt_75, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled/gunmetal/full, +/area/quarantined_outpost/engineering/tunnel) +"nTL" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/simulated/floor/plating, +/area/quarantined_outpost/engineering/atmospherics) +"nTN" = ( +/obj/effect/floor_decal/spline/plain/black, +/obj/random/dirt_75, +/turf/simulated/floor/tiled/gunmetal, +/area/quarantined_outpost/engineering/tunnel) +"nTU" = ( +/obj/effect/floor_decal/spline/plain/black{ + dir = 1 + }, +/obj/structure/railing/mapped{ + dir = 1 + }, +/obj/random/dirt_75, +/obj/structure/sign/directions/tcom{ + dir = 1; + pixel_y = 32 + }, +/obj/machinery/atmospherics/unary/vent_pump/on, +/obj/effect/landmark/trapped_vent/maybe/quarantined_outpost, +/turf/simulated/floor/tiled/gunmetal, +/area/quarantined_outpost/engineering/tunnel) +"nUd" = ( +/obj/effect/floor_decal/corner_wide/lime/diagonal, +/obj/effect/decal/cleanable/floor_damage/rust, +/turf/simulated/floor/tiled/white, +/area/quarantined_outpost/medbay) +"nUq" = ( +/obj/effect/floor_decal/corner/dark_green/diagonal, +/obj/effect/floor_decal/spline/plain/black{ + dir = 1 + }, +/obj/random/dirt_75, +/obj/random/dirt_75, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/quarantined_outpost/gym) +"nUN" = ( +/obj/structure/platform{ + dir = 4 + }, +/turf/simulated/floor/tiled/ramp, +/area/quarantined_outpost/extraction_lab) +"nUS" = ( +/obj/effect/floor_decal/industrial/outline/operations, +/obj/effect/floor_decal/industrial/loading/operations{ + dir = 1 + }, +/turf/simulated/floor/tiled/dark/full, +/area/quarantined_outpost/reception) +"nVm" = ( +/obj/structure/sign/emergency/meetingpoint{ + pixel_x = 32 + }, +/obj/effect/floor_decal/spline/plain/black, +/obj/structure/bed/stool/chair/sofa/left/brown{ + dir = 8 + }, +/turf/simulated/floor/lino, +/area/quarantined_outpost/reception) +"nVK" = ( +/obj/effect/floor_decal/corner/dark_blue{ + dir = 9 + }, +/obj/random/dirt_75, +/obj/random/dirt_75, +/obj/effect/decal/cleanable/floor_damage/rust, +/turf/simulated/floor/tiled/dark, +/area/quarantined_outpost/north_east_hallway) +"nWj" = ( +/obj/effect/floor_decal/corner/mauve{ + dir = 9 + }, +/obj/random/dirt_75, +/turf/simulated/floor/tiled/light, +/area/quarantined_outpost/research) +"nWt" = ( +/obj/structure/bed/stool/chair, +/obj/effect/floor_decal/corner/brown{ + dir = 8 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/dark, +/area/quarantined_outpost/elevator_hallway) +"nWz" = ( +/obj/item/material/shard{ + pixel_y = 10; + pixel_x = -7 + }, +/obj/structure/table/reinforced/steel, +/obj/random/dirt_75, +/obj/abstract/footprint_spawner{ + dir = 4 + }, +/obj/machinery/button/remote/blast_door{ + dir = 9; + id = "quarantined_outpost_eng_checkpoint_out"; + name = "Engineering Tunnels Checkpoint Outer"; + pixel_y = 5; + pixel_x = -2 + }, +/obj/machinery/button/remote/blast_door{ + dir = 9; + id = "quarantined_outpost_eng_checkpoint_in"; + name = "Engineering Tunnels Checkpoint Inner"; + pixel_y = 5; + pixel_x = 7 + }, +/turf/simulated/floor/tiled, +/area/quarantined_outpost/engineering/tunnel) +"nXf" = ( +/obj/effect/floor_decal/corner_wide/paleblue{ + dir = 10 + }, +/obj/structure/table/standard, +/obj/item/storage/box/fancy/tray, +/obj/machinery/light/maybe_broken/decayed, +/turf/simulated/floor/tiled/white, +/area/quarantined_outpost/medbay) +"nXg" = ( +/obj/structure/platform/ledge/dark{ + dir = 1 + }, +/turf/simulated/floor/exoplanet/basalt, +/area/quarantined_outpost/engineering/winch_room) +"nXM" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/quarantined_outpost/medbay) +"nXO" = ( +/obj/effect/floor_decal/corner_wide/paleblue{ + dir = 8 + }, +/obj/effect/decal/cleanable/blood, +/obj/random/dirt_75, +/turf/simulated/floor/tiled/airless, +/area/quarantined_outpost/security) +"nZw" = ( +/obj/effect/floor_decal/spline/plain/black{ + dir = 8 + }, +/turf/simulated/floor/tiled/ridged, +/area/quarantined_outpost/extraction_lab) +"nZx" = ( +/obj/structure/lattice/catwalk, +/obj/machinery/light/small/decayed{ + dir = 8 + }, +/obj/effect/decal/rolling_fog, +/turf/simulated/floor/plating, +/area/quarantined_outpost/research) +"nZO" = ( +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 1 + }, +/obj/random/dirt_75, +/obj/machinery/light/small/decayed, +/turf/simulated/floor/tiled/dark/full, +/area/quarantined_outpost/dorm_hallway) +"obt" = ( +/obj/effect/floor_decal/corner/dark_blue/full{ + dir = 4 + }, +/obj/structure/flora/pottedplant/dead, +/turf/simulated/floor/tiled, +/area/quarantined_outpost/elevator_hallway) +"obC" = ( +/obj/effect/floor_decal/corner/brown{ + dir = 5 + }, +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/machinery/suit_cycler/mining/prepared, +/turf/simulated/floor/tiled/dark, +/area/quarantined_outpost/cargo_bay) +"ocs" = ( +/obj/structure/platform/ledge/dark{ + dir = 4 + }, +/turf/simulated/floor/exoplanet/abyss, +/area/quarantined_outpost/chasm) +"oct" = ( +/obj/structure/toilet{ + dir = 8; + pixel_y = -1 + }, +/obj/machinery/button/remote/airlock{ + dir = 1; + id = "quarantined_outpost_toilet_1"; + name = "Door Bolt Control"; + pixel_y = 26; + specialfunctions = 4; + pixel_x = -5 + }, +/obj/random/dirt_75, +/obj/machinery/light/small/maybe_broken/decayed{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/quarantined_outpost/gym) +"ocw" = ( +/obj/effect/map_effect/window_spawner/full/reinforced/firedoor, +/turf/simulated/floor/tiled/dark/full, +/area/quarantined_outpost/medbay) +"ocS" = ( +/obj/effect/floor_decal/spline/plain/black, +/obj/random/dirt_75, +/obj/effect/decal/cleanable/floor_damage/rust, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/gunmetal, +/area/quarantined_outpost/north_east_hallway) +"oeu" = ( +/obj/effect/floor_decal/corner/dark_blue, +/obj/random/dirt_75, +/obj/effect/floor_decal/corner/yellow{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 1 + }, +/turf/simulated/floor/tiled/dark, +/area/quarantined_outpost/engineering/atmospherics) +"oez" = ( +/obj/effect/floor_decal/corner_wide/lime/diagonal, +/obj/effect/floor_decal/industrial/warning{ + dir = 8 + }, +/obj/random/dirt_75, +/turf/simulated/floor/tiled/white, +/area/quarantined_outpost/medbay) +"oeN" = ( +/obj/random/dirt_75, +/obj/effect/floor_decal/industrial/outline_straight/grey{ + dir = 4 + }, +/turf/simulated/floor/tiled/ridged, +/area/quarantined_outpost/research) +"oeS" = ( +/obj/structure/lattice/catwalk, +/obj/machinery/light/small/emergency{ + dir = 8 + }, +/obj/structure/railing/mapped{ + dir = 8 + }, +/turf/simulated/floor/exoplanet/basalt, +/area/quarantined_outpost/research) +"ofa" = ( +/obj/effect/floor_decal/industrial/outline/operations, +/obj/effect/floor_decal/industrial/loading/operations, +/obj/random/dirt_75, +/turf/simulated/floor/tiled, +/area/quarantined_outpost/cargo_bay) +"ofe" = ( +/obj/effect/decal/cleanable/floor_damage/random_wood_broken, +/obj/structure/bed/stool/chair/sofa/brown{ + dir = 8 + }, +/obj/random/dirt_75, +/turf/simulated/floor/wood, +/area/quarantined_outpost/dorm_hallway) +"ofk" = ( +/obj/structure/window_frame/empty, +/turf/simulated/floor/tiled/gunmetal/full, +/area/quarantined_outpost/engineering/tunnel) +"ofv" = ( +/obj/effect/floor_decal/spline/plain/black, +/obj/random/dirt_75, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/gunmetal, +/area/quarantined_outpost/north_east_hallway) +"ofC" = ( +/obj/effect/floor_decal/corner/dark_blue{ + dir = 10 + }, +/obj/machinery/light/floor/maybe_broken/decayed, +/obj/random/dirt_75, +/turf/simulated/floor/tiled, +/area/quarantined_outpost/dorm_hallway) +"ofE" = ( +/obj/effect/floor_decal/corner/yellow{ + dir = 8 + }, +/obj/effect/floor_decal/corner/dark_blue, +/obj/item/material/stool/chair{ + pixel_y = -8; + dir = 4 + }, +/obj/effect/decal/cleanable/floor_damage/rust, +/obj/random/dirt_75, +/turf/simulated/floor/tiled/gunmetal, +/area/quarantined_outpost/north_east_hallway) +"oge" = ( +/obj/effect/floor_decal/corner/yellow{ + dir = 10 + }, +/obj/effect/decal/cleanable/floor_damage/random_broken, +/turf/simulated/floor/tiled/gunmetal, +/area/quarantined_outpost/engineering) +"ogf" = ( +/obj/random/dirt_75, +/obj/random/dirt_75, +/obj/effect/landmark/quarantined_outpost/creature, +/turf/simulated/floor/tiled, +/area/quarantined_outpost/cargo_bay) +"ogj" = ( +/obj/effect/floor_decal/industrial/outline_door/operations{ + dir = 1 + }, +/obj/machinery/light/small/maybe_broken/decayed{ + dir = 8 + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/simulated/floor/tiled, +/area/quarantined_outpost/cargo_bay) +"ogo" = ( +/obj/effect/floor_decal/corner/black{ + dir = 6 + }, +/obj/random/dirt_75, +/turf/simulated/floor/tiled/dark, +/area/quarantined_outpost/entrance_lobby) +"ogp" = ( +/obj/random/dirt_75, +/obj/effect/decal/cleanable/blood, +/turf/simulated/floor/plating, +/area/quarantined_outpost/elevator_hallway/maintenance) +"ogs" = ( +/obj/item/material/shard{ + pixel_x = 5; + pixel_y = -7 + }, +/obj/effect/decal/cleanable/blood, +/obj/random/dirt_75, +/turf/simulated/floor/tiled/dark/full, +/area/quarantined_outpost/reception) +"ogv" = ( +/obj/effect/floor_decal/corner/yellow{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/red{ + dir = 1 + }, +/obj/random/dirt_75, +/obj/effect/decal/cleanable/floor_damage/rust, +/turf/simulated/floor/tiled/dark, +/area/quarantined_outpost/engineering/atmospherics) +"ogB" = ( +/obj/effect/floor_decal/corner/dark_blue{ + dir = 6 + }, +/obj/random/dirt_75, +/turf/simulated/floor/tiled, +/area/quarantined_outpost/north_east_hallway) +"ogK" = ( +/obj/effect/floor_decal/industrial/outline/medical, +/obj/machinery/washing_machine, +/obj/machinery/light/small/maybe_broken/decayed{ + dir = 1 + }, +/turf/simulated/floor/tiled/full, +/area/quarantined_outpost/medbay) +"ogM" = ( +/obj/effect/floor_decal/spline/plain/black{ + dir = 1 + }, +/obj/effect/decal/cleanable/blood, +/obj/random/dirt_75, +/obj/machinery/atmospherics/unary/vent_scrubber/on, +/turf/simulated/floor/tiled/airless, +/area/quarantined_outpost/security) +"ogW" = ( +/obj/machinery/atmospherics/pipe/simple/visible/black, +/obj/random/dirt_75, +/turf/simulated/floor/plating, +/area/quarantined_outpost/engineering/atmospherics) +"ohg" = ( +/obj/structure/tank_wall/air{ + icon_state = "air10" + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/quarantined_outpost/engineering/atmospherics) +"ohl" = ( +/obj/structure/railing/mapped{ + dir = 4 + }, +/obj/structure/railing/mapped, +/turf/simulated/floor/exoplanet/basalt, +/area/quarantined_outpost/cavern/east_cavern) +"ohQ" = ( +/obj/effect/floor_decal/spline/plain/black, +/obj/random/dirt_75, +/turf/simulated/floor/tiled/ridged, +/area/quarantined_outpost/extraction_lab) +"ohW" = ( +/obj/effect/floor_decal/spline/plain/black{ + dir = 1 + }, +/obj/random/dirt_75, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 + }, +/turf/simulated/floor/tiled/airless, +/area/quarantined_outpost/security) +"oil" = ( +/obj/effect/floor_decal/industrial/outline_door/yellow{ + dir = 8 + }, +/obj/effect/floor_decal/industrial/outline_segment/yellow{ + dir = 9 + }, +/obj/effect/floor_decal/industrial/outline_segment/yellow, +/obj/abstract/footprint_spawner/body{ + dir = 8 + }, +/obj/effect/decal/cleanable/floor_damage/rust, +/obj/random/dirt_75, +/obj/structure/cable{ + 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/dark, +/area/quarantined_outpost/research) +"oir" = ( +/obj/structure/lattice/catwalk/indoor/grate/old, +/turf/simulated/floor/plating, +/area/quarantined_outpost/cafeteria) +"oiG" = ( +/obj/effect/floor_decal/corner/yellow{ + dir = 9 + }, +/obj/effect/decal/cleanable/floor_damage/rust, +/obj/effect/landmark/quarantined_outpost/creature, +/turf/simulated/floor/tiled/gunmetal, +/area/quarantined_outpost/engineering) +"oiH" = ( +/obj/structure/cable/orange{ + icon_state = "2-8" + }, +/obj/effect/map_effect/marker/airlock/quarantined_outpost/entrance, +/obj/machinery/atmospherics/pipe/manifold4w/hidden, +/turf/simulated/floor/plating, +/area/quarantined_outpost/entrance_lobby) +"oje" = ( +/turf/simulated/floor/tiled/dark/full, +/area/quarantined_outpost/engineering/winch_room) +"ojf" = ( +/obj/structure/platform{ + dir = 4 + }, +/obj/effect/floor_decal/corner/black{ + dir = 9 + }, +/obj/structure/bed/stool/chair, +/turf/simulated/floor/tiled/dark, +/area/quarantined_outpost/entrance_lobby) +"ojk" = ( +/obj/effect/floor_decal/corner/dark_blue{ + dir = 10 + }, +/obj/random/dirt_75, +/turf/simulated/floor/tiled, +/area/quarantined_outpost/cafeteria) +"ojv" = ( +/obj/effect/floor_decal/corner/mauve/full{ + dir = 4 + }, +/obj/effect/floor_decal/spline/plain/corner/purple{ + dir = 1 + }, +/obj/structure/structural_support, +/turf/simulated/floor/tiled/light, +/area/quarantined_outpost/research) +"ojN" = ( +/obj/effect/floor_decal/corner/yellow{ + dir = 9 + }, +/obj/effect/decal/cleanable/floor_damage/rust, +/turf/simulated/floor/tiled, +/area/quarantined_outpost/engineering) +"okm" = ( +/obj/effect/floor_decal/industrial/hatch/yellow, +/obj/structure/closet/crate, +/obj/effect/floor_decal/industrial/warning{ + dir = 8 + }, +/turf/simulated/floor/tiled/dark/full, +/area/quarantined_outpost/cargo_bay) +"okn" = ( +/obj/random/dirt_75, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/abstract/footprint_spawner/body{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/quarantined_outpost/reception) +"okO" = ( +/obj/effect/floor_decal/corner_wide/lime{ + dir = 9 + }, +/obj/structure/bed/stool/chair/office/dark{ + dir = 4 + }, +/obj/effect/floor_decal/corner_wide/lime, +/turf/simulated/floor/tiled/white, +/area/quarantined_outpost/medbay) +"olr" = ( +/obj/effect/floor_decal/spline/plain/black{ + dir = 4 + }, +/obj/effect/floor_decal/industrial/outline/grey, +/obj/structure/table/standard, +/obj/effect/decal/cleanable/cobweb, +/turf/simulated/floor/tiled/dark/full, +/area/quarantined_outpost/elevator_hallway) +"olV" = ( +/obj/effect/floor_decal/corner/green/diagonal, +/obj/machinery/alarm/west, +/turf/simulated/floor/tiled/white, +/area/quarantined_outpost/dorm_hallway) +"omj" = ( +/obj/effect/floor_decal/corner/dark_blue{ + dir = 1 + }, +/obj/structure/sign/directions/tcom{ + dir = 8; + pixel_y = 32 + }, +/obj/effect/decal/cleanable/floor_damage/rust, +/turf/simulated/floor/tiled/dark, +/area/quarantined_outpost/engineering/atmospherics) +"omn" = ( +/obj/effect/floor_decal/corner/dark_blue{ + dir = 6 + }, +/obj/random/dirt_75, +/obj/machinery/light/maybe_broken/decayed{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/quarantined_outpost/elevator_hallway) +"omx" = ( +/obj/structure/railing/mapped{ + dir = 4 + }, +/obj/effect/floor_decal/industrial/outline/operations, +/obj/random/dirt_75, +/turf/simulated/floor/tiled/dark/full, +/area/quarantined_outpost/reception) +"omC" = ( +/obj/structure/lattice/catwalk/indoor/grate, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/simulated/floor/plating, +/area/quarantined_outpost/cargo_bay) +"omT" = ( +/obj/machinery/door/firedoor, +/obj/effect/floor_decal/industrial/hatch_door/yellow{ + dir = 1 + }, +/obj/machinery/door/airlock/glass_security{ + name = "Breakroom" + }, +/obj/random/dirt_75, +/obj/random/dirt_75, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 1 + }, +/turf/simulated/floor/tiled/full/airless, +/area/quarantined_outpost/security) +"onx" = ( +/obj/machinery/door/airlock/generic{ + name = "Dormitory #38" + }, +/obj/machinery/door/firedoor, +/obj/effect/floor_decal/industrial/hatch_door/yellow{ + dir = 1 + }, +/obj/random/dirt_75, +/turf/simulated/floor/tiled/full, +/area/quarantined_outpost/dorm_hallway) +"ooF" = ( +/obj/effect/floor_decal/spline/plain/grey{ + dir = 6 + }, +/obj/random/dirt_75, +/obj/random/dirt_75, +/turf/simulated/floor/reinforced, +/area/quarantined_outpost/security) +"ooM" = ( +/obj/abstract/footprint_spawner/oil{ + dir = 8 + }, +/obj/structure/lattice/catwalk/indoor/grate/dark, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/quarantined_outpost/engineering/atmospherics) +"ooZ" = ( +/obj/effect/floor_decal/corner/dark_blue, +/obj/structure/table/standard/flipped{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/quarantined_outpost/elevator_hallway) +"opp" = ( +/obj/random/dirt_75, +/obj/random/dirt_75, +/obj/structure/table/standard, +/obj/item/flamethrower/full{ + pixel_x = 2 + }, +/turf/simulated/floor/tiled/bitile, +/area/quarantined_outpost/cafeteria) +"opB" = ( +/obj/structure/tank_wall/hydrogen{ + icon_state = "h3" + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/quarantined_outpost/engineering/atmospherics) +"opH" = ( +/obj/effect/floor_decal/spline/plain/black, +/obj/random/dirt_75, +/obj/random/dirt_75, +/turf/simulated/floor/tiled, +/area/quarantined_outpost/gym) +"opP" = ( +/obj/structure/lattice/catwalk/indoor/grate/dark, +/obj/machinery/light/small/emergency{ + dir = 1 + }, +/turf/simulated/floor/plating, +/area/quarantined_outpost/elevator_hallway/maintenance) +"oqf" = ( +/turf/simulated/wall/r_wall{ + can_open = 1 + }, +/area/quarantined_outpost/engineering/atmospherics) +"orm" = ( +/obj/effect/floor_decal/corner/dark_blue{ + dir = 10 + }, +/turf/simulated/floor/tiled/rust, +/area/quarantined_outpost/dorm_hallway) +"orz" = ( +/obj/effect/map_effect/window_spawner/full/reinforced, +/turf/simulated/floor/tiled/gunmetal/full, +/area/quarantined_outpost/engineering/tunnel) +"orA" = ( +/obj/structure/closet, +/turf/simulated/floor/plating, +/area/quarantined_outpost/research) +"orD" = ( +/obj/effect/floor_decal/corner/mauve{ + dir = 10 + }, +/obj/effect/decal/cleanable/floor_damage/rust, +/turf/simulated/floor/tiled/white, +/area/quarantined_outpost/extraction_lab) +"orV" = ( +/obj/effect/floor_decal/corner/mauve{ + dir = 4 + }, +/obj/effect/floor_decal/spline/plain/purple{ + dir = 4 + }, +/obj/effect/decal/cleanable/blood, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 8 + }, +/obj/effect/landmark/trapped_vent/maybe/quarantined_outpost, +/turf/simulated/floor/tiled/light, +/area/quarantined_outpost/research) +"osg" = ( +/obj/random/junk, +/obj/item/reagent_containers/food/drinks/waterbottle{ + pixel_y = 8; + pixel_x = -9 + }, +/obj/item/reagent_containers/food/drinks/waterbottle{ + pixel_y = -5; + pixel_x = 12 + }, +/turf/simulated/floor/exoplanet/basalt, +/area/quarantined_outpost/engineering/atmospherics) +"osA" = ( +/obj/effect/floor_decal/corner/dark_blue{ + dir = 9 + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 4 + }, +/obj/machinery/alarm/west, +/turf/simulated/floor/tiled, +/area/quarantined_outpost/elevator_hallway) +"otk" = ( +/obj/effect/floor_decal/spline/plain/black, +/obj/structure/table/rack, +/obj/structure/railing/mapped{ + dir = 4 + }, +/obj/random/loot, +/obj/random/dirt_75, +/turf/simulated/floor/tiled/dark/full, +/area/quarantined_outpost/security) +"otE" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 9 + }, +/obj/random/dirt_75, +/obj/random/dirt_75, +/turf/simulated/floor/tiled/dark/full, +/area/quarantined_outpost/dorm_hallway) +"otT" = ( +/obj/effect/floor_decal/corner/yellow/full, +/obj/structure/table/rack, +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/item/storage/toolbox/mechanical{ + pixel_y = 8; + pixel_x = -3 + }, +/obj/item/clothing/gloves/yellow{ + pixel_y = -1; + pixel_x = 3 + }, +/turf/simulated/floor/tiled/gunmetal, +/area/quarantined_outpost/engineering) +"ouu" = ( +/obj/effect/floor_decal/industrial/hatch/yellow, +/obj/machinery/door/firedoor, +/turf/simulated/floor/tiled/dark/full, +/area/quarantined_outpost/engineering/winch_room) +"ouA" = ( +/obj/effect/floor_decal/spline/plain/black, +/obj/random/dirt_75, +/turf/simulated/floor/tiled/white, +/area/quarantined_outpost/extraction_lab) +"ouI" = ( +/obj/random/dirt_75, +/turf/simulated/floor/carpet/rubber, +/area/quarantined_outpost/gym) +"ouT" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/fuel{ + dir = 9 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 5 + }, +/obj/machinery/power/smes/buildable/main_engine{ + charge = 0 + }, +/obj/structure/cable, +/obj/structure/cable{ + icon_state = "0-8" + }, +/obj/structure/sign/electricshock{ + pixel_x = 32 + }, +/turf/simulated/floor/carpet/rubber, +/area/quarantined_outpost/engineering/atmospherics) +"ovh" = ( +/obj/machinery/door/firedoor{ + dir = 4 + }, +/obj/effect/floor_decal/industrial/hatch_door/research, +/obj/machinery/door/airlock/external{ + dir = 4; + name = "Cell B" + }, +/turf/simulated/floor/tiled/dark/full, +/area/quarantined_outpost/research) +"ovo" = ( +/obj/structure/tank_wall/air{ + icon_state = "air13" + }, +/turf/simulated/floor/plating, +/area/quarantined_outpost/engineering/atmospherics) +"ovF" = ( +/obj/structure/platform_deco/ledge{ + dir = 1 + }, +/turf/simulated/floor/plating, +/area/quarantined_outpost/cargo_bay) +"ovW" = ( +/obj/structure/lattice/catwalk/indoor/grate/dark, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 1 + }, +/turf/simulated/floor/plating, +/area/quarantined_outpost/research) +"owa" = ( +/obj/effect/landmark/quarantined_outpost/creature, +/turf/simulated/floor/tiled/dark, +/area/quarantined_outpost/research) +"owk" = ( +/obj/effect/floor_decal/industrial/outline_door/grey{ + dir = 1 + }, +/obj/random/dirt_75, +/obj/random/dirt_75, +/obj/effect/floor_decal/industrial/outline_segment/grey{ + dir = 5 + }, +/obj/effect/landmark/quarantined_outpost/creature, +/turf/simulated/floor/tiled/rust, +/area/quarantined_outpost/elevator_hallway) +"owv" = ( +/obj/effect/floor_decal/corner_wide/lime/diagonal, +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/obj/effect/decal/cleanable/floor_damage/rust, +/obj/random/dirt_75, +/turf/simulated/floor/tiled/white, +/area/quarantined_outpost/medbay) +"owL" = ( +/obj/machinery/computer/terminal/inactive, +/obj/effect/floor_decal/industrial/hatch/yellow, +/obj/effect/decal/cleanable/cobweb, +/turf/simulated/floor/tiled/bitile{ + dir = 8 + }, +/area/quarantined_outpost/research) +"oxi" = ( +/obj/machinery/pipedispenser, +/obj/effect/floor_decal/industrial/warning{ + dir = 5 + }, +/obj/random/dirt_75, +/turf/simulated/floor/plating, +/area/quarantined_outpost/engineering/atmospherics) +"oxk" = ( +/obj/effect/floor_decal/corner/brown{ + dir = 10 + }, +/obj/random/dirt_75, +/obj/random/dirt_75, +/obj/structure/closet/walllocker/emerglocker{ + pixel_y = -32 + }, +/obj/effect/floor_decal/industrial/outline/emergency_closet, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 + }, +/turf/simulated/floor/tiled, +/area/quarantined_outpost/cargo_bay) +"oxs" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/obj/random/dirt_75, +/turf/simulated/floor/plating, +/area/quarantined_outpost/north_east_hallway/maintenance) +"oxu" = ( +/obj/structure/lattice/catwalk/indoor/grate/dark, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/quarantined_outpost/research/containment) +"oxJ" = ( +/obj/structure/grille, +/turf/simulated/floor/plating, +/area/quarantined_outpost/entrance_maintenance) +"oym" = ( +/obj/effect/floor_decal/spline/plain/black{ + dir = 1 + }, +/obj/random/dirt_75, +/obj/random/dirt_75, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled/airless, +/area/quarantined_outpost/security) +"oyy" = ( +/obj/structure/trash_pile, +/turf/simulated/floor/plating, +/area/quarantined_outpost/cafeteria/maintenance) +"oyN" = ( +/obj/machinery/atmospherics/portables_connector, +/turf/simulated/floor/plating, +/area/quarantined_outpost/engineering/atmospherics) +"oyZ" = ( +/obj/effect/floor_decal/big/sol_full, +/obj/structure/table/reinforced/steel, +/obj/structure/window/reinforced, +/obj/item/phone{ + pixel_y = 9; + pixel_x = 8 + }, +/turf/simulated/floor/tiled/dark/full, +/area/quarantined_outpost/reception) +"ozl" = ( +/obj/effect/shuttle_landmark/quarantined_outpost/asteroid/landing_2b, +/turf/simulated/floor/plating/asteroid/airless, +/area/quarantined_outpost/exterior) +"oAd" = ( +/obj/effect/floor_decal/spline/plain/black{ + dir = 1 + }, +/obj/structure/railing/mapped{ + dir = 1 + }, +/obj/random/dirt_75, +/turf/simulated/floor/tiled/white, +/area/quarantined_outpost/extraction_lab) +"oAk" = ( +/obj/effect/floor_decal/corner/black{ + dir = 9 + }, +/obj/random/dirt_75, +/obj/structure/bed/stool/chair/folding{ + dir = 4 + }, +/obj/structure/mirror{ + pixel_x = -27 + }, +/turf/simulated/floor/tiled, +/area/quarantined_outpost/dorm_hallway) +"oAr" = ( +/obj/structure/bed/stool/chair{ + dir = 8 + }, +/obj/effect/floor_decal/industrial/outline/research, +/obj/random/dirt_75, +/turf/simulated/floor/tiled/white, +/area/quarantined_outpost/research) +"oAs" = ( +/obj/structure/flora/rock/stalagmite/random, +/obj/item/tape/engineering{ + icon_state = "engineering_door" + }, +/turf/simulated/floor/exoplanet/basalt, +/area/quarantined_outpost/research) +"oAD" = ( +/obj/machinery/door/firedoor{ + dir = 4 + }, +/obj/effect/floor_decal/industrial/hatch_door/yellow{ + dir = 4 + }, +/obj/machinery/door/airlock/external{ + dir = 4; + name = "Heavy Containment" + }, +/obj/structure/cable{ + 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/dark/full, +/area/quarantined_outpost/research/containment) +"oAI" = ( +/obj/effect/decal/cleanable/floor_damage/random_wood_broken, +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 10 + }, +/turf/simulated/floor/wood, +/area/quarantined_outpost/dorm_hallway) +"oAM" = ( +/obj/effect/floor_decal/corner/dark_blue{ + dir = 1 + }, +/obj/effect/floor_decal/corner/yellow{ + dir = 4 + }, +/obj/random/dirt_75, +/obj/structure/table/rack, +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/item/stack/material/wood/full, +/obj/item/stack/rods/full, +/turf/simulated/floor/tiled/dark, +/area/quarantined_outpost/engineering/atmospherics) +"oAX" = ( +/obj/effect/floor_decal/corner/lime{ + dir = 9 + }, +/obj/random/dirt_75, +/obj/effect/decal/cleanable/floor_damage/rust, +/turf/simulated/floor/tiled, +/area/quarantined_outpost/cafeteria) +"oBx" = ( +/obj/effect/floor_decal/corner/yellow{ + dir = 8 + }, +/obj/effect/floor_decal/corner/dark_blue, +/obj/structure/flora/pottedplant/dead2, +/obj/effect/decal/cleanable/floor_damage/rust, +/turf/simulated/floor/tiled/dark, +/area/quarantined_outpost/north_east_hallway) +"oBL" = ( +/obj/structure/bed/stool/chair{ + dir = 1 + }, +/obj/effect/floor_decal/corner_wide/paleblue{ + dir = 10 + }, +/obj/random/dirt_75, +/obj/random/dirt_75, +/turf/simulated/floor/tiled, +/area/quarantined_outpost/elevator_hallway) +"oBO" = ( +/obj/structure/table/standard, +/obj/machinery/recharger{ + pixel_x = -9; + pixel_y = 9 + }, +/obj/machinery/recharger{ + pixel_x = 1; + pixel_y = 9 + }, +/obj/machinery/cell_charger{ + pixel_x = -3; + pixel_y = -3 + }, +/obj/effect/floor_decal/corner/yellow/full{ + dir = 8 + }, +/turf/simulated/floor/tiled/gunmetal, +/area/quarantined_outpost/engineering) +"oBW" = ( +/obj/structure/tank_wall/hydrogen{ + density = 0; + icon_state = "h12"; + opacity = 0 + }, +/obj/machinery/portable_atmospherics/canister/hydrogen, +/obj/machinery/atmospherics/portables_connector{ + dir = 4 + }, +/turf/simulated/floor/reinforced, +/area/quarantined_outpost/engineering/atmospherics) +"oCo" = ( +/obj/structure/engineer_maintenance/electric/wall, +/obj/structure/engineer_maintenance/pipe/wall{ + pixel_y = 27 + }, +/obj/effect/floor_decal/corner/yellow{ + dir = 4 + }, +/turf/simulated/floor/tiled/gunmetal, +/area/quarantined_outpost/engineering) +"oCt" = ( +/obj/machinery/smartfridge/foodheater/buffet, +/obj/structure/table/stone/marble, +/obj/machinery/door/firedoor, +/obj/machinery/door/blast/shutters, +/turf/simulated/floor/tiled/dark/full, +/area/quarantined_outpost/cafeteria) +"oCC" = ( +/obj/effect/floor_decal/spline/plain/black{ + dir = 10 + }, +/obj/structure/bed/stool/chair, +/obj/structure/sign/flag/sol/old{ + pixel_y = 32 + }, +/obj/random/dirt_75, +/obj/random/dirt_75, +/turf/simulated/floor/tiled/dark/full, +/area/quarantined_outpost/elevator_hallway) +"oCG" = ( +/obj/effect/map_effect/window_spawner/full/reinforced/firedoor, +/turf/simulated/floor/tiled/dark/full, +/area/quarantined_outpost/elevator_hallway) +"oCO" = ( +/obj/random/dirt_75, +/obj/effect/floor_decal/corner_wide/paleblue{ + dir = 4 + }, +/obj/structure/sign/flag/sol/old{ + pixel_y = 32 + }, +/obj/effect/decal/cleanable/blood, +/turf/simulated/floor/tiled, +/area/quarantined_outpost/elevator_hallway) +"oCT" = ( +/obj/effect/floor_decal/corner/lime{ + dir = 10 + }, +/obj/random/dirt_75, +/obj/structure/sign/flag/sol/old{ + pixel_y = -32 + }, +/turf/simulated/floor/tiled, +/area/quarantined_outpost/cafeteria) +"oDL" = ( +/obj/effect/floor_decal/spline/plain/black{ + dir = 6 + }, +/obj/random/dirt_75, +/obj/item/material/stool/chair{ + pixel_y = -6; + pixel_x = 6 + }, +/turf/simulated/floor/tiled/dark/full, +/area/quarantined_outpost/elevator_hallway) +"oFc" = ( +/obj/effect/floor_decal/corner_wide/paleblue/full{ + dir = 4 + }, +/obj/random/dirt_75, +/obj/effect/decal/remains, +/turf/simulated/floor/tiled/airless, +/area/quarantined_outpost/security) +"oFu" = ( +/obj/effect/floor_decal/corner/dark_blue{ + dir = 1 + }, +/obj/effect/floor_decal/corner/yellow{ + dir = 4 + }, +/obj/random/dirt_75, +/obj/random/maintenance_junk_or_loot, +/turf/simulated/floor/tiled/dark, +/area/quarantined_outpost/engineering/atmospherics) +"oGk" = ( +/obj/structure/sink{ + dir = 4; + pixel_x = 12 + }, +/obj/effect/decal/cleanable/cobweb2, +/obj/structure/mirror{ + pixel_x = 27 + }, +/obj/machinery/light/small/maybe_broken/decayed{ + dir = 1 + }, +/turf/simulated/floor/tiled/white, +/area/quarantined_outpost/gym) +"oGy" = ( +/obj/structure/lattice/catwalk, +/obj/structure/railing/mapped{ + dir = 4 + }, +/obj/structure/table/standard, +/obj/random/tech_supply, +/obj/random/tech_supply, +/turf/simulated/floor/exoplanet/basalt, +/area/quarantined_outpost/engineering/tunnel) +"oHf" = ( +/obj/random/loot, +/obj/structure/flora/rock/pile/random, +/turf/simulated/floor/exoplanet/basalt, +/area/quarantined_outpost/engineering/tunnel) +"oHv" = ( +/obj/effect/floor_decal/corner_wide/paleblue/diagonal, +/obj/effect/decal/cleanable/blood, +/obj/random/dirt_75, +/turf/simulated/floor/tiled/airless, +/area/quarantined_outpost/security) +"oHJ" = ( +/obj/structure/structural_support, +/obj/effect/decal/cleanable/floor_damage/rust, +/obj/effect/decal/rolling_fog, +/turf/simulated/floor/tiled/dark/full, +/area/quarantined_outpost/research) +"oHV" = ( +/turf/simulated/floor/tiled, +/area/quarantined_outpost/entrance_maintenance) +"oIt" = ( +/obj/structure/table/standard/flipped, +/obj/random/dirt_75, +/turf/simulated/floor/tiled/bitile{ + dir = 8 + }, +/area/quarantined_outpost/cafeteria) +"oIu" = ( +/obj/machinery/atmospherics/omni/mixer{ + tag_south = 1; + tag_south_con = 0.4; + tag_west = 1; + tag_west_con = 0.6; + name = "Combustion Fuel Mixer" + }, +/obj/effect/decal/cleanable/floor_damage/rust, +/turf/simulated/floor/tiled/dark, +/area/quarantined_outpost/engineering/atmospherics) +"oIv" = ( +/obj/effect/floor_decal/corner/dark_blue/full{ + dir = 1 + }, +/obj/structure/bookcase/libraryspawn/nonfiction, +/turf/simulated/floor/tiled, +/area/quarantined_outpost/reception) +"oIU" = ( +/obj/structure/lattice/catwalk/indoor/grate/dark, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 8 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/quarantined_outpost/engineering/winch_room) +"oJc" = ( +/obj/structure/bed/stool/chair/folding{ + dir = 1 + }, +/obj/random/dirt_75, +/turf/simulated/floor/tiled/dark/full, +/area/quarantined_outpost/reception) +"oJg" = ( +/obj/effect/floor_decal/spline/plain/black{ + dir = 4 + }, +/obj/effect/decal/cleanable/floor_damage/rust, +/obj/item/stack/material/steel{ + pixel_y = 8; + pixel_x = 4 + }, +/turf/simulated/floor/tiled/gunmetal, +/area/quarantined_outpost/north_east_hallway) +"oKP" = ( +/obj/effect/floor_decal/industrial/outline/medical, +/obj/structure/closet/secure_closet/personal, +/obj/random/dirt_75, +/turf/simulated/floor/tiled/full, +/area/quarantined_outpost/medbay) +"oKS" = ( +/obj/effect/floor_decal/spline/plain/black, +/obj/random/dirt_75, +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/simulated/floor/lino, +/area/quarantined_outpost/reception) +"oKX" = ( +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/structure/table/reinforced/steel, +/obj/random/dirt_75, +/turf/simulated/floor/tiled/gunmetal/full, +/area/quarantined_outpost/server_relay/north_west) +"oLq" = ( +/obj/effect/floor_decal/industrial/hatch/yellow, +/obj/machinery/door/firedoor, +/turf/simulated/floor/tiled/dark/full, +/area/quarantined_outpost/engineering/atmospherics) +"oLG" = ( +/obj/effect/floor_decal/corner/yellow{ + dir = 4 + }, +/obj/structure/table/rack, +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/item/stack/material/plasteel{ + amount = 10; + pixel_x = 3; + pixel_y = 1 + }, +/obj/item/stack/material/plasteel{ + amount = 10; + pixel_x = 3; + pixel_y = 1 + }, +/obj/item/stack/material/steel{ + amount = 50; + pixel_y = 5; + pixel_x = -3 + }, +/obj/item/stack/material/steel{ + amount = 50; + pixel_y = 5; + pixel_x = -3 + }, +/turf/simulated/floor/tiled/gunmetal, +/area/quarantined_outpost/engineering) +"oLP" = ( +/obj/structure/lattice/catwalk, +/obj/effect/decal/rolling_fog, +/turf/simulated/floor/plating, +/area/quarantined_outpost/research) +"oMf" = ( +/obj/machinery/door/airlock/maintenance_hatch{ + dir = 1; + locked = 1 + }, +/obj/machinery/door/firedoor, +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/simulated/floor/plating, +/area/quarantined_outpost/dorm_hallway) +"oMg" = ( +/obj/structure/platform/ledge, +/obj/effect/floor_decal/corner/brown{ + dir = 6 + }, +/obj/structure/sign/directions/tcom{ + pixel_x = 32; + dir = 4 + }, +/obj/effect/decal/cleanable/floor_damage/rust, +/obj/structure/decor/fluff_ladder/up{ + pixel_y = -2; + pixel_x = 4 + }, +/turf/simulated/floor/tiled, +/area/quarantined_outpost/cargo_bay) +"oMo" = ( +/obj/structure/flora/rock/random, +/turf/simulated/floor/exoplanet/basalt, +/area/quarantined_outpost/cavern/south_west_cavern) +"oMu" = ( +/obj/effect/floor_decal/corner/dark_blue{ + dir = 6 + }, +/obj/structure/bed/stool/chair/office/light, +/obj/effect/decal/cleanable/floor_damage/rust, +/turf/simulated/floor/tiled/dark, +/area/quarantined_outpost/research/containment) +"oNj" = ( +/obj/effect/decal/cleanable/floor_damage/random_burned, +/obj/effect/decal/cleanable/ash{ + pixel_y = -3; + pixel_x = 5 + }, +/obj/effect/decal/cleanable/molten_item, +/turf/simulated/floor/plating, +/area/quarantined_outpost/entrance_lobby) +"oNl" = ( +/obj/effect/floor_decal/corner/dark_blue{ + dir = 6 + }, +/obj/random/dirt_75, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/quarantined_outpost/elevator_hallway) +"oNu" = ( +/obj/structure/platform{ + dir = 4 + }, +/obj/structure/platform{ + dir = 1 + }, +/obj/structure/platform_deco{ + dir = 10 + }, +/obj/random/dirt_75, +/obj/effect/floor_decal/industrial/outline_segment/grey{ + dir = 5 + }, +/obj/structure/railing/mapped, +/obj/structure/railing/mapped{ + dir = 8 + }, +/turf/simulated/floor/tiled/dark/full, +/area/quarantined_outpost/research) +"oNy" = ( +/obj/effect/floor_decal/corner_wide/lime/full{ + dir = 4 + }, +/obj/structure/bed/padded, +/obj/item/bedsheet/medical, +/obj/structure/curtain/open/medical, +/obj/random/dirt_75, +/turf/simulated/floor/tiled/white, +/area/quarantined_outpost/medbay) +"oNB" = ( +/obj/structure/girder, +/turf/simulated/floor/plating, +/area/quarantined_outpost/entrance_maintenance) +"oNI" = ( +/obj/structure/table/standard, +/obj/item/reagent_containers/food/drinks/drinkingglass/newglass/coffeecup{ + pixel_x = 9; + pixel_y = 5 + }, +/obj/random/dirt_75, +/turf/simulated/floor/tiled/airless, +/area/quarantined_outpost/security) +"oNN" = ( +/obj/effect/floor_decal/industrial/outline/grey, +/obj/structure/closet/walllocker/secure{ + pixel_y = 32; + name = "Blood Locker" + }, +/obj/item/reagent_containers/blood/OMinus, +/obj/item/reagent_containers/blood/OMinus, +/obj/item/reagent_containers/blood/OMinus, +/obj/item/reagent_containers/blood/OMinus, +/turf/simulated/floor/tiled/freezer{ + name = "cooled tiles"; + temperature = 253.15 + }, +/area/quarantined_outpost/medbay) +"oOp" = ( +/obj/effect/floor_decal/corner_wide/paleblue{ + dir = 4 + }, +/obj/structure/table/standard, +/obj/structure/sign/flag/sol/old/large/north{ + pixel_y = 32 + }, +/turf/simulated/floor/tiled/airless, +/area/quarantined_outpost/security) +"oOu" = ( +/obj/structure/bed/stool/chair/office/light{ + dir = 1 + }, +/obj/effect/floor_decal/corner/mauve{ + dir = 5 + }, +/obj/random/dirt_75, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled/light, +/area/quarantined_outpost/research) +"oOB" = ( +/obj/structure/sign/directions/medical{ + pixel_y = 40; + dir = 1 + }, +/obj/structure/sign/directions/security{ + dir = 4; + pixel_y = 32 + }, +/obj/effect/floor_decal/corner/dark_blue{ + dir = 5 + }, +/obj/effect/floor_decal/spline/plain/black{ + dir = 1 + }, +/obj/random/dirt_75, +/obj/random/dirt_75, +/obj/abstract/footprint_spawner/body{ + dir = 1 + }, +/obj/abstract/footprint_spawner_turn_helper{ + dir = 4 + }, +/turf/simulated/floor/tiled/rust, +/area/quarantined_outpost/reception) +"oOF" = ( +/obj/effect/floor_decal/corner/dark_blue/diagonal, +/obj/random/dirt_75, +/obj/random/dirt_75, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark/airless, +/area/quarantined_outpost/security) +"oOO" = ( +/obj/effect/floor_decal/spline/plain/corner/black{ + dir = 1 + }, +/obj/effect/floor_decal/corner/yellow{ + dir = 8 + }, +/obj/random/dirt_75, +/obj/abstract/footprint_spawner{ + dir = 1 + }, +/turf/simulated/floor/tiled/gunmetal, +/area/quarantined_outpost/engineering/tunnel) +"oPG" = ( +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 1 + }, +/obj/random/dirt_75, +/turf/simulated/floor/tiled/dark/airless, +/area/quarantined_outpost/security) +"oPT" = ( +/obj/structure/railing/mapped{ + dir = 4 + }, +/obj/structure/railing/mapped, +/obj/structure/structural_support, +/turf/simulated/floor/exoplanet/basalt, +/area/quarantined_outpost/cavern/east_cavern) +"oQg" = ( +/obj/random/dirt_75, +/obj/random/dirt_75, +/obj/machinery/light/small/emergency{ + dir = 1 + }, +/turf/simulated/floor/plating, +/area/quarantined_outpost/elevator_hallway/maintenance) +"oQE" = ( +/obj/random/dirt_75, +/turf/simulated/floor/tiled, +/area/quarantined_outpost/entrance_maintenance) +"oQW" = ( +/obj/structure/weightlifter, +/obj/random/dirt_75, +/obj/effect/decal/cleanable/cobweb, +/turf/simulated/floor/carpet/rubber, +/area/quarantined_outpost/gym) +"oRp" = ( +/turf/simulated/mineral/lava, +/area/quarantined_outpost/research) +"oRs" = ( +/obj/effect/floor_decal/corner/yellow, +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 4 + }, +/obj/effect/decal/cleanable/floor_damage/rust, +/turf/simulated/floor/tiled/dark, +/area/quarantined_outpost/engineering/winch_room) +"oSj" = ( +/turf/simulated/floor/tiled/ridged, +/area/quarantined_outpost/research) +"oSY" = ( +/obj/machinery/door/firedoor{ + dir = 4 + }, +/obj/effect/floor_decal/industrial/hatch_door/yellow, +/obj/machinery/door/airlock/glass{ + dir = 4; + name = "Cafeteria" + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/full, +/area/quarantined_outpost/cafeteria) +"oTf" = ( +/obj/structure/lattice, +/obj/machinery/atmospherics/pipe/simple/hidden/yellow{ + dir = 6 + }, +/turf/simulated/floor/exoplanet/abyss, +/area/quarantined_outpost/research/containment) +"oTl" = ( +/obj/effect/floor_decal/corner/dark_blue, +/obj/random/dirt_75, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/quarantined_outpost/elevator_hallway) +"oTo" = ( +/obj/effect/floor_decal/corner_wide/lime{ + dir = 1 + }, +/obj/item/stack/barricade/wood, +/obj/effect/decal/cleanable/generic, +/obj/random/dirt_75, +/turf/simulated/floor/tiled/white, +/area/quarantined_outpost/medbay) +"oTN" = ( +/obj/structure/bed/stool/chair/office/light, +/obj/effect/floor_decal/corner_wide/lime/full{ + dir = 4 + }, +/obj/random/dirt_75, +/turf/simulated/floor/tiled/white, +/area/quarantined_outpost/medbay) +"oUu" = ( +/turf/simulated/floor/tiled/ridged, +/area/quarantined_outpost/extraction_lab) +"oUz" = ( +/obj/effect/floor_decal/corner_wide/lime/full{ + dir = 1 + }, +/obj/effect/decal/cleanable/cobweb2, +/obj/random/dirt_75, +/turf/simulated/floor/tiled/white, +/area/quarantined_outpost/medbay) +"oUG" = ( +/obj/machinery/door/airlock/maintenance_hatch{ + dir = 1 + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/simulated/floor/plating, +/area/quarantined_outpost/cafeteria/maintenance) +"oUR" = ( +/obj/effect/floor_decal/spline/plain/black{ + dir = 1 + }, +/obj/machinery/vending/snack, +/obj/effect/floor_decal/industrial/outline/grey, +/turf/simulated/floor/tiled/gunmetal, +/area/quarantined_outpost/engineering/tunnel) +"oUY" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 4 + }, +/obj/effect/landmark/trapped_vent/maybe/quarantined_outpost, +/turf/simulated/floor/tiled/airless, +/area/quarantined_outpost/security) +"oVw" = ( +/obj/effect/floor_decal/corner/brown{ + dir = 10 + }, +/turf/simulated/floor/tiled, +/area/quarantined_outpost/cargo_bay) +"oVC" = ( +/obj/effect/floor_decal/corner/purple{ + dir = 9 + }, +/obj/random/dirt_75, +/obj/effect/floor_decal/industrial/outline/custodial, +/obj/structure/janitorialcart{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/quarantined_outpost/dorm_hallway) +"oWe" = ( +/obj/effect/floor_decal/spline/plain/black{ + dir = 4 + }, +/obj/effect/floor_decal/industrial/outline/grey, +/obj/machinery/vending/coffee, +/turf/simulated/floor/tiled/dark/full, +/area/quarantined_outpost/elevator_hallway) +"oWF" = ( +/obj/effect/floor_decal/corner/dark_blue{ + dir = 5 + }, +/obj/effect/floor_decal/industrial/outline/emergency_closet, +/obj/structure/closet/emcloset, +/obj/effect/decal/cleanable/cobweb, +/turf/simulated/floor/tiled, +/area/quarantined_outpost/reception) +"oXi" = ( +/obj/effect/floor_decal/corner/black/full{ + dir = 4 + }, +/obj/structure/flora/pottedplant/dead2, +/turf/simulated/floor/tiled, +/area/quarantined_outpost/dorm_hallway) +"oXj" = ( +/obj/effect/floor_decal/corner/dark_blue/full{ + dir = 4 + }, +/obj/effect/decal/cleanable/floor_damage/rust, +/turf/simulated/floor/tiled/dark, +/area/quarantined_outpost/research) +"oXp" = ( +/obj/effect/floor_decal/industrial/hatch_door/yellow{ + dir = 8 + }, +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/glass_engineering{ + name = "Breakroom" + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/gunmetal/full, +/area/quarantined_outpost/engineering) +"oXH" = ( +/turf/simulated/mineral/lava, +/area/quarantined_outpost/cavern/east_cavern) +"oXR" = ( +/obj/structure/platform_stairs/full/east_west_cap, +/obj/structure/platform/cutout{ + dir = 4 + }, +/obj/structure/platform{ + dir = 1 + }, +/turf/simulated/floor/tiled/ridged, +/area/quarantined_outpost/extraction_lab) +"oXV" = ( +/obj/machinery/light/small/decayed{ + dir = 1 + }, +/obj/structure/lattice/catwalk/indoor, +/turf/simulated/floor/plating, +/area/quarantined_outpost/cargo_bay) +"oYu" = ( +/obj/effect/floor_decal/spline/plain/corner/black{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/quarantined_outpost/extraction_lab) +"oYA" = ( +/obj/machinery/computer/terminal/inactive{ + dir = 4 + }, +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/effect/decal/rolling_fog, +/turf/simulated/floor/tiled/dark/full, +/area/quarantined_outpost/research) +"oYL" = ( +/obj/effect/floor_decal/corner_wide/paleblue/full{ + dir = 1 + }, +/obj/random/dirt_75, +/obj/structure/coatrack{ + pixel_x = 10; + pixel_y = 16 + }, +/turf/simulated/floor/tiled/airless, +/area/quarantined_outpost/security) +"oZy" = ( +/obj/machinery/light/small/maybe_broken/decayed{ + dir = 1 + }, +/turf/simulated/floor/exoplanet/basalt, +/area/quarantined_outpost/north_east_hallway) +"pae" = ( +/obj/effect/floor_decal/corner_wide/paleblue{ + dir = 8 + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 1 + }, +/turf/simulated/floor/tiled/airless, +/area/quarantined_outpost/security) +"paJ" = ( +/obj/effect/floor_decal/industrial/hatch/grey, +/obj/structure/closet/crate/freezer{ + name = "Fridge" + }, +/obj/item/storage/box/monkeycubes, +/obj/item/storage/box/freezer/organcooler, +/turf/simulated/floor/tiled/freezer{ + name = "cooled tiles"; + temperature = 253.15 + }, +/area/quarantined_outpost/medbay) +"paL" = ( +/obj/effect/floor_decal/corner/dark_blue{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/quarantined_outpost/elevator_hallway) +"paR" = ( +/obj/effect/floor_decal/corner_wide/paleblue{ + dir = 1 + }, +/obj/structure/bed/stool/chair{ + dir = 4 + }, +/turf/simulated/floor/tiled/airless, +/area/quarantined_outpost/security) +"pbf" = ( +/obj/effect/floor_decal/industrial/hatch/yellow, +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/simple/hidden/fuel{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled/dark/full, +/area/quarantined_outpost/engineering/atmospherics) +"pbI" = ( +/obj/structure/platform{ + dir = 1 + }, +/obj/random/dirt_75, +/obj/effect/decal/cleanable/floor_damage/rust, +/turf/simulated/floor/tiled/ridged, +/area/quarantined_outpost/extraction_lab) +"pbS" = ( +/obj/structure/table/reinforced/steel, +/obj/structure/railing/mapped, +/obj/effect/floor_decal/industrial/outline/research, +/turf/simulated/floor/tiled/bitile, +/area/quarantined_outpost/research) +"pbW" = ( +/obj/effect/floor_decal/corner/yellow{ + dir = 10 + }, +/obj/random/dirt_75, +/obj/structure/closet/crate/miningcart, +/turf/simulated/floor/tiled/dark, +/area/quarantined_outpost/engineering/winch_room) +"pcb" = ( +/obj/effect/floor_decal/corner/dark_blue/full{ + dir = 4 + }, +/obj/structure/bookcase/libraryspawn/reference, +/turf/simulated/floor/tiled, +/area/quarantined_outpost/entrance_lobby) +"pcr" = ( +/obj/structure/platform/dark{ + dir = 1 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 6 + }, +/obj/machinery/power/terminal{ + dir = 1 + }, +/obj/structure/cable/yellow{ + icon_state = "0-8" + }, +/turf/simulated/floor/carpet/rubber, +/area/quarantined_outpost/engineering/atmospherics) +"pcT" = ( +/obj/structure/table/stone/marble, +/obj/item/reagent_containers/cooking_container/board/bowl{ + pixel_y = 4; + pixel_x = -2 + }, +/obj/item/reagent_containers/food/condiment/shaker/salt{ + pixel_x = -10; + pixel_y = 14 + }, +/obj/item/reagent_containers/food/condiment/shaker/peppermill{ + pixel_x = -4; + pixel_y = 14 + }, +/obj/item/reagent_containers/glass/beaker{ + pixel_x = 9; + pixel_y = 16 + }, +/turf/simulated/floor/tiled/dark/full, +/area/quarantined_outpost/cafeteria) +"pdp" = ( +/obj/effect/floor_decal/corner_wide/lime{ + dir = 10 + }, +/obj/effect/floor_decal/corner_wide/lime{ + dir = 1 + }, +/obj/structure/bed/padded, +/obj/item/bedsheet/medical, +/obj/structure/curtain/open/medical, +/turf/simulated/floor/tiled/white, +/area/quarantined_outpost/medbay) +"pdq" = ( +/obj/random/dirt_75, +/obj/structure/blocker, +/obj/effect/floor_decal/corner/yellow{ + dir = 10 + }, +/turf/simulated/floor/tiled/gunmetal, +/area/quarantined_outpost/engineering/tunnel) +"pds" = ( +/obj/random/dirt_75, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 8 + }, +/obj/effect/landmark/trapped_vent/maybe/quarantined_outpost, +/turf/simulated/floor/tiled/airless, +/area/quarantined_outpost/security) +"pea" = ( +/obj/structure/bed/stool/chair/office/dark{ + dir = 4 + }, +/obj/effect/floor_decal/corner/dark_blue{ + dir = 10 + }, +/turf/simulated/floor/tiled/dark, +/area/quarantined_outpost/north_east_hallway) +"peh" = ( +/obj/effect/floor_decal/corner/yellow{ + dir = 1 + }, +/obj/random/dirt_75, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 4 + }, +/obj/effect/landmark/trapped_vent/maybe/quarantined_outpost, +/turf/simulated/floor/tiled/gunmetal, +/area/quarantined_outpost/engineering) +"pet" = ( +/obj/effect/floor_decal/corner/black{ + dir = 10 + }, +/obj/structure/bed/stool/chair/folding{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/quarantined_outpost/dorm_hallway) +"peH" = ( +/obj/effect/floor_decal/industrial/outline_door/operations, +/obj/random/dirt_75, +/obj/effect/floor_decal/industrial/outline_segment/operations{ + dir = 10 + }, +/obj/effect/floor_decal/industrial/outline_segment/operations{ + dir = 4 + }, +/turf/simulated/floor/tiled/rust, +/area/quarantined_outpost/elevator_hallway) +"peM" = ( +/obj/effect/floor_decal/asteroid_dug, +/obj/random/dirt_75, +/turf/simulated/floor/exoplanet/asteroid/ash/rocky, +/area/quarantined_outpost/exterior) +"pfd" = ( +/obj/effect/floor_decal/corner/black{ + dir = 5 + }, +/obj/machinery/light/small/broken{ + dir = 1 + }, +/obj/random/dirt_75, +/turf/simulated/floor/tiled, +/area/quarantined_outpost/elevator_hallway) +"pfu" = ( +/obj/random/dirt_75, +/obj/random/dirt_75, +/turf/simulated/floor/tiled, +/area/quarantined_outpost/engineering/tunnel) +"pfA" = ( +/obj/structure/tank_wall/oxygen{ + icon_state = "o2-16" + }, +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 4 + }, +/obj/effect/floor_decal/industrial/warning, +/turf/simulated/floor/plating, +/area/quarantined_outpost/engineering/atmospherics) +"pfM" = ( +/obj/effect/floor_decal/corner_wide/paleblue{ + dir = 5 + }, +/turf/simulated/floor/tiled, +/area/quarantined_outpost/elevator_hallway) +"pfR" = ( +/obj/effect/decal/cleanable/floor_damage/rust, +/turf/simulated/floor/tiled/white, +/area/quarantined_outpost/medbay) +"pgc" = ( +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/structure/closet/secure_closet/personal, +/obj/random/dirt_75, +/obj/effect/decal/cleanable/cobweb, +/obj/random/plushie, +/obj/random/loot, +/turf/simulated/floor/tiled/dark/full, +/area/quarantined_outpost/cargo_bay) +"pgg" = ( +/obj/structure/platform/ledge/dark, +/turf/simulated/floor/exoplanet/abyss, +/area/quarantined_outpost/chasm) +"pgj" = ( +/obj/structure/table/wood, +/obj/item/flora/pottedplant_small/dead{ + pixel_y = 10; + pixel_x = 10 + }, +/obj/random/desktoy, +/obj/random/dirt_75, +/turf/simulated/floor/carpet/brown, +/area/quarantined_outpost/cargo_bay) +"pgT" = ( +/obj/effect/floor_decal/spline/plain/black{ + dir = 1 + }, +/obj/machinery/atmospherics/unary/vent_pump/on, +/obj/effect/landmark/trapped_vent/maybe/quarantined_outpost, +/turf/simulated/floor/tiled/gunmetal, +/area/quarantined_outpost/north_east_hallway) +"pht" = ( +/obj/machinery/door/airlock/hatch, +/turf/simulated/floor/plating, +/area/quarantined_outpost/engineering/atmospherics) +"phF" = ( +/obj/effect/floor_decal/corner/lime, +/obj/structure/table/standard/flipped{ + dir = 1 + }, +/obj/random/dirt_75, +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/simulated/floor/tiled, +/area/quarantined_outpost/cafeteria) +"pif" = ( +/obj/effect/shuttle_landmark/quarantined_outpost/space/space_1d, +/turf/template_noop, +/area/space) +"pij" = ( +/obj/structure/table/reinforced/steel, +/obj/machinery/door/window/desk/eastright, +/obj/structure/window/reinforced, +/turf/simulated/floor/tiled/dark/full, +/area/quarantined_outpost/research/containment) +"piC" = ( +/obj/effect/floor_decal/corner/dark_blue/diagonal, +/obj/random/dirt_75, +/turf/simulated/floor/tiled/dark/airless, +/area/quarantined_outpost/security) +"piZ" = ( +/obj/structure/lattice/catwalk/indoor/grate, +/obj/structure/cable/orange{ + icon_state = "4-8" + }, +/turf/simulated/floor/plating, +/area/quarantined_outpost/entrance_lobby) +"pjc" = ( +/obj/effect/floor_decal/corner/yellow{ + dir = 8 + }, +/obj/machinery/alarm/south, +/turf/simulated/floor/tiled/dark, +/area/quarantined_outpost/engineering/atmospherics) +"pjG" = ( +/obj/structure/lattice/catwalk/indoor/grate/dark, +/obj/abstract/footprint_spawner/body{ + dir = 1 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/simulated/floor/plating, +/area/quarantined_outpost/engineering) +"pjT" = ( +/obj/effect/floor_decal/corner/dark_blue, +/obj/random/dirt_75, +/turf/simulated/floor/tiled, +/area/quarantined_outpost/dorm_hallway) +"pkx" = ( +/obj/effect/floor_decal/industrial/warning, +/turf/simulated/floor/tiled/ramp, +/area/quarantined_outpost/extraction_lab) +"pld" = ( +/obj/effect/floor_decal/corner/mauve{ + dir = 9 + }, +/obj/effect/decal/cleanable/floor_damage/rust, +/obj/random/dirt_75, +/obj/machinery/light/small/maybe_broken/decayed{ + dir = 8 + }, +/turf/simulated/floor/tiled/dark, +/area/quarantined_outpost/research) +"plf" = ( +/obj/machinery/shower{ + dir = 8; + pixel_y = 1 + }, +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/effect/floor_decal/industrial/warning{ + dir = 5 + }, +/obj/random/dirt_75, +/turf/simulated/floor/tiled/dark/full, +/area/quarantined_outpost/research) +"pmk" = ( +/obj/random/dirt_75, +/obj/machinery/light/small/emergency{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/quarantined_outpost/cafeteria/maintenance) +"pmO" = ( +/obj/structure/table/standard, +/obj/effect/floor_decal/corner_wide/paleblue{ + dir = 6 + }, +/obj/random/dirt_75, +/turf/simulated/floor/tiled/airless, +/area/quarantined_outpost/security) +"pnJ" = ( +/obj/effect/floor_decal/corner/dark_blue{ + dir = 9 + }, +/obj/structure/bed/stool/chair{ + dir = 4 + }, +/obj/effect/decal/cleanable/blood, +/obj/machinery/light/floor/maybe_broken/decayed{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/quarantined_outpost/reception) +"pnS" = ( +/obj/structure/lattice/catwalk, +/obj/structure/railing/mapped{ + dir = 4 + }, +/turf/simulated/floor/exoplanet/abyss, +/area/quarantined_outpost/chasm) +"pnV" = ( +/obj/structure/platform{ + dir = 4 + }, +/obj/effect/floor_decal/corner/black{ + dir = 9 + }, +/turf/simulated/floor/tiled/dark, +/area/quarantined_outpost/entrance_lobby) +"pov" = ( +/obj/item/hullbeacon/red, +/obj/effect/floor_decal/industrial/warning/dust{ + dir = 1 + }, +/turf/simulated/floor/plating/asteroid/airless, +/area/quarantined_outpost/exterior) +"ppd" = ( +/obj/machinery/atmospherics/unary/outlet_injector{ + dir = 8; + frequency = 1514; + id = "quarantined_outpost_teg_in" + }, +/turf/simulated/floor/reinforced/airless, +/area/quarantined_outpost/engineering/atmospherics) +"ppk" = ( +/obj/structure/flora/rock/stalagmite/random, +/turf/simulated/floor/exoplanet/basalt, +/area/quarantined_outpost/cavern/east_cavern) +"ppn" = ( +/obj/effect/floor_decal/industrial/hatch/yellow, +/obj/machinery/door/firedoor{ + dir = 4 + }, +/obj/abstract/footprint_spawner/body{ + dir = 8 + }, +/turf/simulated/floor/tiled/gunmetal/full, +/area/quarantined_outpost/engineering) +"ppo" = ( +/obj/structure/sign/flag/sol/old{ + pixel_y = 32 + }, +/obj/structure/sign/floor_plaque/quarantined_outpost, +/obj/effect/decal/cleanable/blood, +/turf/simulated/floor/tiled/dark/full, +/area/quarantined_outpost/reception) +"ppt" = ( +/obj/random/dirt_75, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled/airless, +/area/quarantined_outpost/security) +"ppC" = ( +/obj/machinery/conveyor{ + dir = 1 + }, +/obj/random/dirt_75, +/turf/simulated/floor/tiled/dark/full, +/area/quarantined_outpost/cargo_bay) +"ppS" = ( +/obj/effect/map_effect/window_spawner/full/borosilicate/reinforced, +/obj/machinery/atmospherics/pipe/simple/visible/yellow{ + dir = 8 + }, +/obj/machinery/door/blast/regular/open{ + id = "quarantined_outpost_combustion_viewing" + }, +/turf/simulated/floor/tiled/gunmetal/full, +/area/quarantined_outpost/engineering/atmospherics) +"ppT" = ( +/obj/effect/decal/cleanable/cobweb2, +/obj/effect/floor_decal/corner/dark_blue{ + dir = 5 + }, +/obj/random/dirt_75, +/obj/structure/closet, +/obj/item/handcuffs/cable/white, +/obj/item/handcuffs/cable/white, +/obj/item/gun/energy/taser, +/obj/item/melee/baton/loaded, +/obj/item/reagent_containers/spray/pepper, +/turf/simulated/floor/tiled, +/area/quarantined_outpost/engineering/tunnel) +"ppZ" = ( +/obj/structure/railing/mapped{ + dir = 8 + }, +/obj/structure/lattice/catwalk/indoor/grate/dark, +/obj/machinery/portable_atmospherics/canister/empty/hydrogen/deuterium, +/obj/effect/decal/rolling_fog, +/turf/simulated/floor/plating, +/area/quarantined_outpost/research) +"pql" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, +/turf/simulated/floor/tiled/airless, +/area/quarantined_outpost/security) +"pqt" = ( +/obj/random/dirt_75, +/turf/simulated/floor/plating, +/area/quarantined_outpost/elevator_hallway) +"pqA" = ( +/obj/structure/lattice/catwalk/indoor/grate/dark, +/obj/machinery/atmospherics/pipe/simple/hidden/yellow{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/manifold4w/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/quarantined_outpost/extraction_lab) +"prj" = ( +/obj/effect/floor_decal/industrial/outline/operations, +/obj/effect/floor_decal/industrial/loading/operations{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/quarantined_outpost/cargo_bay) +"psQ" = ( +/obj/structure/sign/directions/engineering{ + pixel_y = 40; + dir = 8 + }, +/obj/structure/sign/directions/dock{ + pixel_y = 32 + }, +/obj/effect/floor_decal/corner/dark_blue{ + dir = 5 + }, +/obj/effect/floor_decal/spline/plain/black{ + dir = 1 + }, +/obj/structure/trash_pile, +/turf/simulated/floor/tiled/rust, +/area/quarantined_outpost/reception) +"ptp" = ( +/obj/effect/floor_decal/corner_wide/lime/diagonal, +/obj/random/dirt_75, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 1 + }, +/turf/simulated/floor/tiled/white, +/area/quarantined_outpost/medbay) +"pua" = ( +/obj/effect/floor_decal/corner/dark_blue/full{ + dir = 4 + }, +/obj/machinery/computer/terminal/inactive{ + dir = 1 + }, +/obj/effect/floor_decal/industrial/outline/yellow, +/turf/simulated/floor/tiled/dark, +/area/quarantined_outpost/research/containment) +"puo" = ( +/obj/machinery/computer/terminal/inactive{ + dir = 8 + }, +/obj/effect/floor_decal/corner/brown{ + dir = 5 + }, +/obj/effect/floor_decal/industrial/outline/operations, +/turf/simulated/floor/tiled, +/area/quarantined_outpost/cargo_bay) +"pvf" = ( +/obj/structure/structural_support, +/obj/machinery/light/small/maybe_broken/decayed{ + dir = 4 + }, +/turf/simulated/floor/exoplanet/basalt, +/area/quarantined_outpost/engineering/tunnel) +"pvt" = ( +/obj/machinery/door/firedoor, +/obj/item/material/shard{ + pixel_y = -8; + pixel_x = 6 + }, +/obj/random/dirt_75, +/turf/simulated/floor/tiled/dark/full, +/area/quarantined_outpost/extraction_lab) +"pwc" = ( +/obj/effect/floor_decal/industrial/hatch_door/yellow, +/obj/machinery/door/firedoor{ + dir = 4 + }, +/obj/machinery/door/airlock/hatch{ + dir = 4 + }, +/obj/structure/plasticflaps/airtight{ + dir = 4 + }, +/turf/simulated/floor/tiled/gunmetal/full, +/area/quarantined_outpost/server_relay/south_east) +"pwf" = ( +/obj/structure/table/standard/flipped{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/quarantined_outpost/cafeteria) +"pxM" = ( +/obj/effect/floor_decal/corner_wide/lime, +/obj/random/dirt_75, +/obj/structure/cable{ + 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/quarantined_outpost/medbay) +"pxN" = ( +/obj/effect/floor_decal/industrial/hatch/custodial, +/obj/machinery/door/window/eastleft{ + name = "Gas Supply" + }, +/turf/simulated/floor/tiled/dark/full, +/area/quarantined_outpost/research) +"pys" = ( +/obj/effect/floor_decal/corner_wide/lime{ + dir = 10 + }, +/obj/effect/decal/cleanable/blood, +/obj/random/dirt_75, +/obj/structure/cable{ + 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/quarantined_outpost/medbay) +"pyu" = ( +/turf/simulated/wall/r_wall, +/area/quarantined_outpost/cafeteria/maintenance) +"pyK" = ( +/obj/machinery/door/airlock/generic{ + dir = 4 + }, +/obj/effect/floor_decal/corner/green/diagonal, +/obj/random/dirt_75, +/turf/simulated/floor/tiled/white, +/area/quarantined_outpost/dorm_hallway) +"pyM" = ( +/obj/effect/floor_decal/corner/mauve/diagonal, +/obj/effect/decal/cleanable/floor_damage/rust, +/turf/simulated/floor/tiled/white, +/area/quarantined_outpost/extraction_lab) +"pyU" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 8 + }, +/obj/effect/decal/rolling_fog, +/turf/simulated/floor/plating, +/area/quarantined_outpost/research) +"pza" = ( +/obj/effect/floor_decal/corner_wide/lime{ + dir = 8 + }, +/obj/random/dirt_75, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, +/turf/simulated/floor/tiled/white, +/area/quarantined_outpost/medbay) +"pzj" = ( +/obj/structure/lattice/catwalk/indoor/grate/dark, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 1 + }, +/obj/item/device/flashlight/flare{ + pixel_x = -7 + }, +/turf/simulated/floor/plating, +/area/quarantined_outpost/entrance_lobby) +"pzl" = ( +/obj/effect/floor_decal/spline/plain/corner/black{ + dir = 8 + }, +/obj/abstract/footprint_spawner/oil{ + dir = 4 + }, +/obj/abstract/footprint_spawner_turn_helper, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled/gunmetal, +/area/quarantined_outpost/engineering/tunnel) +"pzw" = ( +/obj/effect/floor_decal/corner/grey/diagonal, +/obj/structure/sink/kitchen{ + pixel_y = 21 + }, +/obj/random/dirt_75, +/turf/simulated/floor/tiled/white, +/area/quarantined_outpost/cafeteria) +"pzD" = ( +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 4 + }, +/obj/structure/flora/grass/desert{ + name = "withered grass" + }, +/obj/structure/flora/stump/adhomai{ + pixel_x = -48 + }, +/turf/simulated/floor/exoplanet/barren, +/area/quarantined_outpost/north_east_hallway) +"pAh" = ( +/obj/structure/railing/mapped, +/turf/simulated/floor/exoplanet/asteroid/ash/rocky, +/area/quarantined_outpost/exterior) +"pAH" = ( +/obj/structure/cable/orange{ + icon_state = "4-8" + }, +/turf/simulated/floor/plating, +/area/quarantined_outpost/engineering) +"pAK" = ( +/obj/effect/floor_decal/corner/dark_green{ + dir = 6 + }, +/obj/random/dirt_75, +/obj/machinery/light/small/maybe_broken/decayed{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/quarantined_outpost/gym) +"pAQ" = ( +/turf/simulated/mineral/lava, +/area/quarantined_outpost/research/containment) +"pBd" = ( +/obj/effect/gibspawner/human, +/obj/random/dirt_75, +/turf/simulated/floor/tiled/bitile/middle, +/area/quarantined_outpost/cafeteria) +"pBz" = ( +/obj/effect/floor_decal/corner/dark_blue{ + dir = 9 + }, +/obj/structure/filingcabinet/filingcabinet, +/obj/structure/filingcabinet/filingcabinet{ + pixel_x = -10 + }, +/obj/item/flora/pottedplant_small/dead{ + pixel_y = 13 + }, +/obj/machinery/papershredder{ + pixel_x = 13; + pixel_y = -1 + }, +/turf/simulated/floor/tiled, +/area/quarantined_outpost/entrance_lobby) +"pBD" = ( +/obj/structure/railing/mapped, +/turf/simulated/floor/exoplanet/basalt, +/area/quarantined_outpost/north_east_hallway) +"pBO" = ( +/obj/random/dirt_75, +/obj/machinery/light/maybe_broken/decayed, +/turf/simulated/floor/tiled, +/area/quarantined_outpost/dorm_hallway) +"pBQ" = ( +/obj/effect/floor_decal/corner/green/diagonal, +/obj/random/dirt_75, +/obj/machinery/atmospherics/unary/vent_scrubber/on, +/turf/simulated/floor/tiled/white, +/area/quarantined_outpost/dorm_hallway) +"pCj" = ( +/obj/effect/floor_decal/corner/dark_blue{ + dir = 1 + }, +/obj/effect/floor_decal/industrial/outline_door/red{ + dir = 4 + }, +/obj/effect/floor_decal/industrial/outline_segment/red{ + dir = 1 + }, +/obj/random/dirt_75, +/turf/simulated/floor/tiled/gunmetal, +/area/quarantined_outpost/north_east_hallway) +"pCn" = ( +/obj/machinery/door/firedoor, +/obj/effect/floor_decal/industrial/hatch_door/yellow{ + dir = 1 + }, +/obj/machinery/door/airlock/glass{ + name = "Residential Lift" + }, +/turf/simulated/floor/tiled, +/area/quarantined_outpost/elevator_hallway) +"pCG" = ( +/obj/effect/floor_decal/industrial/outline/yellow, +/turf/simulated/floor/plating, +/area/quarantined_outpost/cargo_bay) +"pCK" = ( +/obj/random/dirt_75, +/obj/structure/inflatable/door, +/turf/simulated/floor/tiled/airless, +/area/quarantined_outpost/security) +"pCN" = ( +/obj/structure/lattice/catwalk/indoor/grate, +/turf/simulated/floor/plating, +/area/quarantined_outpost/elevator_hallway) +"pCQ" = ( +/obj/item/hullbeacon/red, +/obj/structure/railing/mapped{ + dir = 8 + }, +/obj/structure/railing/mapped, +/turf/simulated/floor/plating/asteroid/airless, +/area/quarantined_outpost/exterior) +"pDc" = ( +/obj/random/dirt_75, +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/simulated/floor/plating, +/area/quarantined_outpost/entrance_maintenance) +"pEi" = ( +/turf/simulated/floor/exoplanet/basalt, +/area/quarantined_outpost/research) +"pEy" = ( +/obj/effect/floor_decal/corner/dark_blue{ + dir = 5 + }, +/obj/machinery/light/floor/maybe_broken/decayed{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/quarantined_outpost/reception) +"pFr" = ( +/obj/random/dirt_75, +/obj/machinery/atmospherics/unary/vent_scrubber/on, +/turf/simulated/floor/tiled/dark/full, +/area/quarantined_outpost/engineering/winch_room) +"pGL" = ( +/obj/effect/floor_decal/corner/yellow, +/obj/random/dirt_75, +/turf/simulated/floor/tiled/dark/airless, +/area/quarantined_outpost/auxiliary_power) +"pGO" = ( +/obj/machinery/light/floor/maybe_broken/decayed{ + dir = 1 + }, +/obj/random/dirt_75, +/turf/simulated/floor/tiled/bitile/light{ + dir = 1 + }, +/area/quarantined_outpost/research) +"pGY" = ( +/obj/effect/floor_decal/spline/plain/black, +/obj/effect/floor_decal/industrial/outline_segment/grey{ + dir = 10 + }, +/obj/machinery/light/small/maybe_broken/decayed, +/obj/random/dirt_75, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/gunmetal, +/area/quarantined_outpost/north_east_hallway) +"pHg" = ( +/obj/machinery/atmospherics/pipe/simple/visible/yellow{ + dir = 8 + }, +/obj/random/dirt_75, +/obj/machinery/atmospherics/pipe/simple/visible/black, +/turf/simulated/floor/plating, +/area/quarantined_outpost/engineering/atmospherics) +"pHj" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 5 + }, +/obj/effect/decal/cleanable/floor_damage/random_burned, +/turf/simulated/floor/reinforced, +/area/quarantined_outpost/research/containment) +"pHs" = ( +/obj/effect/floor_decal/spline/plain/black{ + dir = 4 + }, +/obj/random/dirt_75, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 8 + }, +/obj/effect/landmark/trapped_vent/maybe/quarantined_outpost, +/turf/simulated/floor/tiled/gunmetal, +/area/quarantined_outpost/north_east_hallway) +"pHz" = ( +/obj/effect/floor_decal/spline/plain/corner/black{ + dir = 1 + }, +/obj/random/dirt_75, +/obj/effect/decal/cleanable/floor_damage/rust, +/turf/simulated/floor/tiled/gunmetal, +/area/quarantined_outpost/north_east_hallway) +"pHO" = ( +/obj/structure/platform_stairs/full/south_north_cap{ + dir = 1 + }, +/turf/simulated/floor/tiled/dark, +/area/quarantined_outpost/entrance_lobby) +"pHP" = ( +/obj/random/dirt_75, +/obj/effect/decal/cleanable/floor_damage/random_broken, +/turf/simulated/floor/airless, +/area/quarantined_outpost/security) +"pHZ" = ( +/obj/structure/platform/ledge/dark{ + dir = 8 + }, +/obj/machinery/light/small/maybe_broken/decayed, +/turf/simulated/floor/exoplanet/abyss, +/area/quarantined_outpost/research/containment) +"pIk" = ( +/obj/structure/lattice/catwalk/indoor, +/obj/structure/extinguisher_cabinet/east, +/turf/simulated/floor/plating, +/area/quarantined_outpost/engineering/atmospherics) +"pIm" = ( +/obj/structure/table/standard, +/obj/effect/floor_decal/corner/yellow/full{ + dir = 1 + }, +/obj/item/paper_bin{ + pixel_y = 8; + pixel_x = 6 + }, +/turf/simulated/floor/tiled/dark, +/area/quarantined_outpost/engineering/winch_room) +"pII" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/obj/effect/floor_decal/industrial/hatch_tiny/red, +/obj/machinery/atmospherics/valve/digital{ + dir = 4; + name = "Thermal Relief Valve" + }, +/obj/structure/cable/yellow{ + icon_state = "1-4" + }, +/turf/simulated/floor/plating, +/area/quarantined_outpost/engineering/atmospherics) +"pIR" = ( +/obj/effect/floor_decal/corner/mauve{ + dir = 5 + }, +/obj/structure/table/standard, +/obj/structure/noticeboard{ + pixel_y = 32 + }, +/turf/simulated/floor/tiled/light, +/area/quarantined_outpost/research) +"pIT" = ( +/obj/effect/floor_decal/industrial/outline_door/grey{ + dir = 1 + }, +/obj/random/dirt_75, +/turf/simulated/floor/tiled, +/area/quarantined_outpost/elevator_hallway) +"pJk" = ( +/obj/structure/lattice, +/obj/random/dirt_75, +/turf/simulated/floor/plating, +/area/quarantined_outpost/research) +"pJl" = ( +/obj/structure/platform/dark{ + dir = 1 + }, +/obj/effect/floor_decal/corner/yellow{ + dir = 8 + }, +/obj/effect/floor_decal/corner/dark_blue{ + dir = 1 + }, +/obj/random/dirt_75, +/obj/machinery/light/small/maybe_broken/decayed{ + dir = 8 + }, +/turf/simulated/floor/tiled/gunmetal, +/area/quarantined_outpost/engineering/atmospherics) +"pJD" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/quarantined_outpost/cafeteria) +"pKf" = ( +/obj/structure/table/standard/flipped, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 1 + }, +/turf/simulated/floor/tiled/light/full, +/area/quarantined_outpost/research) +"pKo" = ( +/obj/random/dirt_75, +/turf/simulated/floor/tiled/gunmetal/full, +/area/quarantined_outpost/engineering/winch_room) +"pLb" = ( +/obj/effect/floor_decal/corner/mauve{ + dir = 5 + }, +/obj/machinery/papershredder{ + pixel_x = -6 + }, +/obj/random/dirt_75, +/turf/simulated/floor/tiled/light, +/area/quarantined_outpost/research) +"pLe" = ( +/turf/simulated/wall/r_wall, +/area/quarantined_outpost/cargo_bay) +"pLg" = ( +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/random/dirt_75, +/obj/structure/dispenser/oxygen, +/turf/simulated/floor/tiled/dark/full, +/area/quarantined_outpost/cargo_bay) +"pLD" = ( +/obj/structure/lattice/catwalk/indoor/grate/damaged, +/turf/simulated/floor/plating, +/area/quarantined_outpost/cafeteria) +"pLK" = ( +/obj/structure/bed/stool/chair, +/turf/simulated/floor/tiled/light, +/area/quarantined_outpost/research) +"pLU" = ( +/obj/effect/floor_decal/corner/lime{ + dir = 4 + }, +/obj/random/dirt_75, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/effect/landmark/quarantined_outpost/creature, +/turf/simulated/floor/tiled, +/area/quarantined_outpost/cafeteria) +"pMh" = ( +/obj/structure/punching_bag{ + pixel_y = 12 + }, +/obj/effect/floor_decal/corner/dark_green{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/quarantined_outpost/gym) +"pMV" = ( +/obj/random/dirt_75, +/obj/machinery/light/small/emergency, +/turf/simulated/floor/tiled, +/area/quarantined_outpost/cafeteria/maintenance) +"pMZ" = ( +/obj/structure/table/rack/folding_table, +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/obj/random/dirt_75, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/quarantined_outpost/cargo_bay) +"pNJ" = ( +/obj/random/dirt_75, +/obj/structure/flora/rock/stalagmite/random, +/turf/simulated/floor/exoplanet/basalt, +/area/quarantined_outpost/cavern/east_cavern) +"pNK" = ( +/obj/effect/floor_decal/corner/dark_blue, +/turf/simulated/floor/tiled, +/area/quarantined_outpost/elevator_hallway) +"pNZ" = ( +/obj/effect/floor_decal/corner_wide/lime{ + dir = 9 + }, +/obj/effect/decal/cleanable/floor_damage/rust, +/obj/random/dirt_75, +/turf/simulated/floor/tiled/white, +/area/quarantined_outpost/medbay) +"pOu" = ( +/obj/effect/floor_decal/corner/black{ + dir = 6 + }, +/obj/random/dirt_75, +/obj/random/dirt_75, +/turf/simulated/floor/tiled/dark, +/area/quarantined_outpost/entrance_lobby) +"pOS" = ( +/obj/structure/table/reinforced/steel, +/obj/machinery/door/window/desk/eastright, +/turf/simulated/floor/tiled/dark/full, +/area/quarantined_outpost/reception) +"pPa" = ( +/obj/structure/table/glass, +/turf/simulated/floor/tiled, +/area/quarantined_outpost/elevator_hallway) +"pPg" = ( +/turf/simulated/floor/plating, +/area/quarantined_outpost/cargo_bay) +"pPq" = ( +/obj/effect/floor_decal/corner/dark_blue{ + dir = 9 + }, +/turf/simulated/floor/tiled, +/area/quarantined_outpost/dorm_hallway) +"pPu" = ( +/obj/structure/bed/stool/chair/padded/brown{ + dir = 1 + }, +/obj/random/dirt_75, +/turf/simulated/floor/carpet/brown, +/area/quarantined_outpost/cargo_bay) +"pPU" = ( +/obj/random/dirt_75, +/obj/random/dirt_75, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 + }, +/turf/simulated/floor/tiled, +/area/quarantined_outpost/cafeteria) +"pQe" = ( +/obj/machinery/door/firedoor{ + dir = 4 + }, +/obj/effect/floor_decal/industrial/hatch/yellow, +/turf/simulated/floor/tiled/dark/full, +/area/quarantined_outpost/cargo_bay) +"pQr" = ( +/obj/structure/railing/mapped{ + dir = 1 + }, +/obj/structure/platform{ + dir = 1 + }, +/obj/structure/platform_deco{ + dir = 6 + }, +/turf/simulated/floor/exoplanet/basalt, +/area/quarantined_outpost/north_east_hallway) +"pQu" = ( +/obj/structure/lattice, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/abyss/airless, +/area/quarantined_outpost/security) +"pQD" = ( +/obj/structure/bed/stool/chair/office/dark, +/obj/effect/decal/cleanable/blood, +/obj/random/dirt_75, +/turf/simulated/floor/tiled/dark/full, +/area/quarantined_outpost/reception) +"pQG" = ( +/obj/effect/floor_decal/corner/dark_green{ + dir = 9 + }, +/obj/machinery/light/small/maybe_broken/decayed{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/quarantined_outpost/gym) +"pQN" = ( +/obj/structure/lattice/catwalk/indoor/grate/dark, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/quarantined_outpost/engineering/atmospherics) +"pQU" = ( +/obj/effect/floor_decal/corner/dark_green{ + dir = 6 + }, +/obj/effect/floor_decal/spline/plain/black, +/turf/simulated/floor/tiled, +/area/quarantined_outpost/gym) +"pQW" = ( +/obj/structure/platform/ledge/dark{ + dir = 4 + }, +/turf/simulated/floor/exoplanet/abyss, +/area/quarantined_outpost/research/containment) +"pRi" = ( +/obj/structure/lattice/catwalk/indoor/grate/dark, +/obj/machinery/light/small/maybe_broken/decayed{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 1 + }, +/turf/simulated/floor/plating, +/area/quarantined_outpost/engineering/atmospherics) +"pRx" = ( +/obj/effect/floor_decal/corner/mauve, +/obj/effect/floor_decal/spline/plain/purple{ + dir = 4 + }, +/turf/simulated/floor/tiled/light, +/area/quarantined_outpost/research) +"pRB" = ( +/obj/effect/floor_decal/corner/dark_blue{ + dir = 9 + }, +/obj/random/dirt_75, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled/gunmetal, +/area/quarantined_outpost/cafeteria) +"pRR" = ( +/turf/simulated/floor/exoplanet/abyss, +/area/quarantined_outpost/elevator_hallway) +"pRY" = ( +/obj/structure/table/standard, +/obj/effect/floor_decal/corner/dark_green{ + dir = 9 + }, +/obj/item/reagent_containers/food/drinks/waterbottle{ + pixel_x = 6; + pixel_y = 4 + }, +/obj/random/dirt_75, +/obj/structure/sign/flag/sol/old{ + pixel_x = -32 + }, +/turf/simulated/floor/tiled, +/area/quarantined_outpost/gym) +"pSp" = ( +/obj/effect/floor_decal/industrial/hatch/yellow, +/obj/machinery/door/firedoor{ + dir = 4 + }, +/obj/machinery/door/blast/shutters{ + dir = 4; + id = "quarantined_outpost_extraction_east" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/dark/full, +/area/quarantined_outpost/extraction_lab) +"pSs" = ( +/obj/machinery/shower{ + dir = 1; + pixel_y = -8 + }, +/obj/effect/floor_decal/corner/red/full, +/obj/effect/floor_decal/concrete/gutter/corner, +/turf/simulated/floor/tiled/dark, +/area/quarantined_outpost/research) +"pSU" = ( +/obj/random/dirt_75, +/obj/machinery/light/small/broken{ + dir = 8 + }, +/obj/machinery/portable_atmospherics/canister/empty/boron, +/obj/effect/floor_decal/corner/yellow{ + dir = 8 + }, +/turf/simulated/floor/tiled/gunmetal, +/area/quarantined_outpost/engineering) +"pTt" = ( +/obj/machinery/door/firedoor{ + dir = 4 + }, +/obj/effect/floor_decal/industrial/hatch_door/yellow{ + dir = 4 + }, +/obj/machinery/door/airlock/glass_security{ + dir = 4; + name = "Armoury" + }, +/obj/random/dirt_75, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark/full/airless, +/area/quarantined_outpost/security) +"pTI" = ( +/obj/effect/floor_decal/corner_wide/lime, +/obj/structure/bed/stool/chair{ + dir = 1 + }, +/obj/random/dirt_75, +/turf/simulated/floor/tiled/white, +/area/quarantined_outpost/medbay) +"pTX" = ( +/obj/structure/platform_deco, +/obj/effect/floor_decal/industrial/warning{ + dir = 10 + }, +/turf/simulated/floor/plating, +/area/quarantined_outpost/research) +"pUY" = ( +/obj/effect/floor_decal/spline/plain/black{ + dir = 4 + }, +/obj/random/dirt_75, +/obj/random/dirt_75, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 1 + }, +/turf/simulated/floor/tiled/rust, +/area/quarantined_outpost/reception) +"pVf" = ( +/obj/effect/floor_decal/spline/fancy/wood/cee, +/obj/random/dirt_75, +/obj/random/dirt_75, +/turf/simulated/floor/wood, +/area/quarantined_outpost/cargo_bay) +"pVg" = ( +/obj/effect/floor_decal/corner_wide/paleblue{ + dir = 6 + }, +/obj/structure/inflatable/wall, +/turf/simulated/floor/tiled/airless, +/area/quarantined_outpost/security) +"pVO" = ( +/obj/structure/barricade/wooden/road, +/turf/simulated/floor/exoplanet/asteroid/ash/rocky, +/area/quarantined_outpost/exterior) +"pWj" = ( +/obj/effect/floor_decal/corner/yellow{ + dir = 9 + }, +/obj/random/dirt_75, +/obj/random/dirt_75, +/obj/effect/decal/cleanable/floor_damage/rust, +/turf/simulated/floor/tiled/gunmetal, +/area/quarantined_outpost/engineering) +"pWn" = ( +/obj/effect/floor_decal/spline/plain/black{ + dir = 8 + }, +/obj/random/dirt_75, +/obj/effect/decal/cleanable/floor_damage/rust, +/obj/machinery/light/small/maybe_broken/decayed{ + dir = 8 + }, +/turf/simulated/floor/tiled/gunmetal, +/area/quarantined_outpost/engineering/tunnel) +"pXn" = ( +/obj/machinery/door/airlock/maintenance_hatch{ + dir = 4 + }, +/obj/machinery/door/firedoor{ + dir = 4 + }, +/obj/abstract/footprint_spawner{ + dir = 8 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/simulated/floor/plating, +/area/quarantined_outpost/north_east_hallway/maintenance) +"pXu" = ( +/obj/random/dirt_75, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 1 + }, +/turf/simulated/floor/tiled/white, +/area/quarantined_outpost/medbay) +"pXE" = ( +/obj/random/dirt_75, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 1 + }, +/turf/simulated/floor/tiled/ridged, +/area/quarantined_outpost/extraction_lab) +"pXH" = ( +/obj/item/hullbeacon/red, +/turf/simulated/floor/plating/asteroid/airless, +/area/quarantined_outpost/exterior) +"pXN" = ( +/obj/machinery/door/airlock/generic{ + welded = 1; + name = "Dormitory #36" + }, +/obj/machinery/door/firedoor, +/obj/effect/floor_decal/industrial/hatch_door/yellow{ + dir = 1 + }, +/obj/random/dirt_75, +/turf/simulated/floor/tiled/full, +/area/quarantined_outpost/dorm_hallway) +"pXV" = ( +/obj/effect/floor_decal/industrial/hatch/yellow, +/obj/machinery/door/airlock/external{ + dir = 4 + }, +/obj/machinery/access_button{ + dir = 1; + pixel_x = -28; + pixel_y = -20 + }, +/turf/simulated/floor/tiled/dark/full, +/area/quarantined_outpost/cargo_bay) +"pYa" = ( +/obj/structure/bed/stool/chair/folding{ + dir = 4 + }, +/obj/effect/floor_decal/corner_wide/lime{ + dir = 5 + }, +/obj/structure/sign/flag/sol/old/large/north{ + pixel_y = 32 + }, +/obj/effect/decal/cleanable/floor_damage/rust, +/turf/simulated/floor/tiled/white, +/area/quarantined_outpost/medbay) +"pYm" = ( +/obj/structure/bed/stool/padded/red{ + dir = 8; + pixel_y = 8 + }, +/obj/effect/floor_decal/industrial/outline/grey, +/obj/random/dirt_75, +/turf/simulated/floor/tiled/dark/full/airless, +/area/quarantined_outpost/security) +"pYY" = ( +/obj/effect/floor_decal/corner/mauve/diagonal, +/obj/abstract/footprint_spawner/body{ + dir = 1 + }, +/obj/abstract/footprint_spawner_turn_helper{ + dir = 8 + }, +/turf/simulated/floor/tiled/white, +/area/quarantined_outpost/extraction_lab) +"pZb" = ( +/obj/structure/railing/mapped{ + dir = 8 + }, +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/random/dirt_75, +/turf/simulated/floor/tiled/full, +/area/quarantined_outpost/cargo_bay) +"pZj" = ( +/obj/effect/floor_decal/corner/yellow{ + dir = 8 + }, +/obj/effect/floor_decal/corner/dark_blue, +/obj/random/dirt_75, +/obj/random/maintenance_junk_or_loot, +/turf/simulated/floor/tiled/dark, +/area/quarantined_outpost/engineering/atmospherics) +"pZp" = ( +/obj/random/dirt_75, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 8 + }, +/turf/simulated/floor/tiled/bitile/light/middle, +/area/quarantined_outpost/research) +"pZC" = ( +/obj/random/dirt_75, +/obj/machinery/light/small/maybe_broken/decayed{ + dir = 4 + }, +/turf/simulated/floor/carpet/brown, +/area/quarantined_outpost/cargo_bay) +"pZH" = ( +/obj/effect/floor_decal/spline/plain/black{ + dir = 4 + }, +/obj/structure/railing/mapped{ + dir = 4 + }, +/obj/effect/landmark/quarantined_outpost/creature, +/turf/simulated/floor/tiled/gunmetal, +/area/quarantined_outpost/engineering/tunnel) +"pZJ" = ( +/obj/random/dirt_75, +/obj/random/maintenance_junk_or_loot, +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/effect/floor_decal/industrial/warning{ + dir = 8 + }, +/turf/simulated/floor/tiled/dark/full, +/area/quarantined_outpost/cargo_bay) +"pZZ" = ( +/obj/random/dirt_75, +/obj/random/dirt_75, +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/simulated/floor/tiled, +/area/quarantined_outpost/cargo_bay) +"qah" = ( +/obj/random/dirt_75, +/obj/random/dirt_75, +/obj/effect/floor_decal/industrial/outline_straight/yellow{ + dir = 4 + }, +/obj/effect/decal/rolling_fog, +/turf/simulated/floor/tiled/dark, +/area/quarantined_outpost/research) +"qaB" = ( +/obj/machinery/door/firedoor{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/structure/lattice/catwalk/indoor/grate/dark, +/obj/machinery/door/airlock/highsecurity{ + dir = 4; + name = "Communications Relay"; + locked = 1 + }, +/turf/simulated/floor/plating, +/area/quarantined_outpost/server_relay/south_east) +"qaO" = ( +/obj/effect/floor_decal/corner/grey/diagonal, +/obj/structure/table/stone/marble, +/obj/item/material/kitchen/rollingpin{ + pixel_x = -2; + pixel_y = 3 + }, +/turf/simulated/floor/tiled/white, +/area/quarantined_outpost/cafeteria) +"qaR" = ( +/obj/effect/floor_decal/spline/plain/black{ + dir = 4 + }, +/obj/random/dirt_75, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 1 + }, +/turf/simulated/floor/tiled/rust, +/area/quarantined_outpost/reception) +"qbj" = ( +/obj/structure/platform_stairs/full{ + dir = 1 + }, +/obj/structure/platform{ + dir = 4 + }, +/obj/random/dirt_75, +/turf/simulated/floor/tiled/dark/full, +/area/quarantined_outpost/research) +"qcb" = ( +/obj/effect/floor_decal/spline/plain/black{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 8 + }, +/obj/effect/decal/cleanable/blood, +/obj/random/dirt_75, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled/gunmetal, +/area/quarantined_outpost/engineering/tunnel) +"qch" = ( +/obj/random/dirt_75, +/obj/effect/decal/cleanable/floor_damage/rust, +/turf/simulated/floor/tiled/dark, +/area/quarantined_outpost/engineering/atmospherics) +"qcj" = ( +/obj/item/material/stool/chair{ + dir = 1; + pixel_y = -6; + pixel_x = -7 + }, +/obj/random/dirt_75, +/obj/abstract/footprint_spawner{ + dir = 1 + }, +/obj/abstract/footprint_spawner_turn_helper{ + dir = 4 + }, +/turf/simulated/floor/tiled/gunmetal/full, +/area/quarantined_outpost/engineering/tunnel) +"qdf" = ( +/obj/effect/floor_decal/industrial/outline_straight/grey{ + dir = 8 + }, +/turf/simulated/floor/tiled/ridged, +/area/quarantined_outpost/research) +"qdl" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/fuel, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/meter, +/obj/structure/lattice/catwalk/indoor/grate/dark, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/plating, +/area/quarantined_outpost/engineering/atmospherics) +"qej" = ( +/obj/effect/floor_decal/spline/plain/black{ + dir = 9 + }, +/obj/structure/table/glass, +/obj/random/junk, +/obj/item/paper/pamphlet, +/obj/random/dirt_75, +/obj/structure/sign/flag/sol/old/large/south{ + pixel_y = -32 + }, +/turf/simulated/floor/tiled/dark/full, +/area/quarantined_outpost/elevator_hallway) +"qeB" = ( +/obj/machinery/conveyor{ + dir = 1 + }, +/obj/structure/closet/crate/loot, +/turf/simulated/floor/tiled/dark/full, +/area/quarantined_outpost/cargo_bay) +"qfQ" = ( +/obj/structure/table/standard, +/obj/item/storage/box/sharps{ + pixel_y = 12; + pixel_x = -7 + }, +/obj/item/reagent_containers/spray/cleaner{ + desc = "Someone has crossed out the Space from Space Cleaner and written in Surgery. 'Do not remove under punishment of death!!!' is scrawled on the back."; + icon_state = "sterilesprayblue"; + name = "surgery cleaner"; + pixel_x = 6 + }, +/obj/effect/floor_decal/corner_wide/lime/diagonal, +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/turf/simulated/floor/tiled/white, +/area/quarantined_outpost/medbay) +"qga" = ( +/turf/simulated/mineral/lava, +/area/quarantined_outpost/engineering) +"qgb" = ( +/obj/effect/floor_decal/corner_wide/lime{ + dir = 6 + }, +/obj/machinery/light/maybe_broken/decayed{ + dir = 4 + }, +/obj/random/dirt_75, +/obj/structure/cable{ + icon_state = "1-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/turf/simulated/floor/tiled/white, +/area/quarantined_outpost/medbay) +"qgD" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/turf/simulated/floor/reinforced/airless, +/area/quarantined_outpost/engineering/atmospherics) +"qgV" = ( +/obj/machinery/atmospherics/pipe/simple/visible/black{ + dir = 10 + }, +/turf/simulated/floor/tiled/gunmetal, +/area/quarantined_outpost/engineering/atmospherics) +"qgY" = ( +/obj/effect/floor_decal/industrial/outline_door/medical{ + dir = 1 + }, +/obj/effect/floor_decal/industrial/outline_segment/medical{ + dir = 8 + }, +/obj/effect/floor_decal/industrial/outline_segment/medical{ + dir = 5 + }, +/obj/random/dirt_75, +/turf/simulated/floor/tiled/white, +/area/quarantined_outpost/medbay) +"qhv" = ( +/obj/effect/floor_decal/corner/brown{ + dir = 5 + }, +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/machinery/suit_cycler/mining/prepared, +/obj/random/dirt_75, +/turf/simulated/floor/tiled/dark, +/area/quarantined_outpost/cargo_bay) +"qhy" = ( +/obj/structure/sign/examroom{ + pixel_x = -32 + }, +/obj/effect/floor_decal/corner_wide/lime{ + dir = 8 + }, +/obj/effect/floor_decal/industrial/outline/medical, +/obj/structure/bed/roller, +/turf/simulated/floor/tiled/white, +/area/quarantined_outpost/medbay) +"qhX" = ( +/obj/effect/floor_decal/spline/plain/black{ + dir = 10 + }, +/obj/structure/railing/mapped{ + dir = 8 + }, +/obj/structure/railing/mapped, +/obj/random/dirt_75, +/obj/random/dirt_75, +/turf/simulated/floor/tiled/gunmetal, +/area/quarantined_outpost/engineering/tunnel) +"qij" = ( +/obj/structure/closet, +/obj/random/dirt_75, +/obj/random/loot, +/turf/simulated/floor/plating, +/area/quarantined_outpost/elevator_hallway) +"qiQ" = ( +/obj/structure/railing/mapped{ + dir = 1 + }, +/obj/random/junk, +/turf/simulated/floor/tiled/white, +/area/quarantined_outpost/extraction_lab) +"qje" = ( +/obj/effect/floor_decal/spline/plain/black, +/obj/random/dirt_75, +/obj/effect/decal/cleanable/floor_damage/rust, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/gunmetal, +/area/quarantined_outpost/north_east_hallway) +"qjx" = ( +/obj/effect/map_effect/window_spawner/full/reinforced/firedoor, +/turf/simulated/floor/tiled/dark/full, +/area/quarantined_outpost/cargo_bay) +"qjF" = ( +/obj/effect/floor_decal/corner/dark_blue{ + dir = 1 + }, +/obj/effect/floor_decal/corner/yellow{ + dir = 8 + }, +/obj/abstract/footprint_spawner/oil{ + dir = 8 + }, +/obj/abstract/footprint_spawner_turn_helper, +/obj/random/dirt_75, +/turf/simulated/floor/tiled/dark, +/area/quarantined_outpost/engineering/atmospherics) +"qjQ" = ( +/obj/structure/table/reinforced/steel, +/obj/effect/floor_decal/industrial/outline/grey, +/obj/machinery/light/small/maybe_broken/decayed{ + dir = 1 + }, +/turf/simulated/floor/tiled/dark/full, +/area/quarantined_outpost/research) +"qkg" = ( +/obj/effect/floor_decal/corner/dark_blue, +/obj/effect/decal/cleanable/floor_damage/rust, +/turf/simulated/floor/tiled, +/area/quarantined_outpost/cafeteria) +"qkM" = ( +/obj/machinery/door/firedoor, +/obj/item/material/shard, +/obj/random/dirt_75, +/turf/simulated/floor/tiled/dark/full, +/area/quarantined_outpost/extraction_lab) +"qkP" = ( +/obj/structure/reagent_dispensers/water_cooler, +/obj/effect/floor_decal/corner/yellow, +/turf/simulated/floor/tiled/gunmetal, +/area/quarantined_outpost/engineering) +"qkW" = ( +/obj/effect/floor_decal/industrial/warning, +/obj/effect/decal/cleanable/floor_damage/rust, +/turf/simulated/floor/tiled/white, +/area/quarantined_outpost/medbay) +"qlF" = ( +/obj/structure/railing/mapped{ + dir = 1 + }, +/turf/simulated/floor/exoplanet/basalt, +/area/quarantined_outpost/cavern/east_cavern) +"qmV" = ( +/obj/structure/lattice, +/turf/simulated/floor/exoplanet/abyss, +/area/quarantined_outpost/entrance_maintenance) +"qno" = ( +/obj/machinery/atmospherics/unary/freezer, +/obj/effect/floor_decal/industrial/warning{ + dir = 6 + }, +/turf/simulated/floor/carpet/rubber, +/area/quarantined_outpost/engineering/atmospherics) +"qnr" = ( +/obj/structure/flora/rock/random, +/turf/simulated/floor/exoplanet/asteroid/ash/rocky, +/area/quarantined_outpost/exterior) +"qnM" = ( +/obj/random/dirt_75, +/obj/random/dirt_75, +/obj/effect/floor_decal/corner_wide/paleblue{ + dir = 9 + }, +/obj/effect/decal/cleanable/blood, +/obj/machinery/light/small/maybe_broken/decayed{ + dir = 8 + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/airless, +/area/quarantined_outpost/security) +"qnX" = ( +/obj/structure/railing/mapped{ + dir = 8 + }, +/obj/effect/floor_decal/industrial/outline/operations, +/obj/effect/decal/cleanable/floor_damage/random_burned, +/turf/simulated/floor/tiled/dark, +/area/quarantined_outpost/entrance_lobby) +"qoz" = ( +/obj/structure/filingcabinet/filingcabinet, +/obj/structure/filingcabinet/filingcabinet{ + pixel_x = 10 + }, +/obj/structure/filingcabinet/filingcabinet{ + pixel_x = -10 + }, +/obj/effect/floor_decal/corner_wide/paleblue{ + dir = 1 + }, +/turf/simulated/floor/tiled/airless, +/area/quarantined_outpost/security) +"qoI" = ( +/obj/structure/cable{ + icon_state = "1-4" + }, +/obj/structure/lattice/catwalk/indoor/grate/dark, +/turf/simulated/floor/plating, +/area/quarantined_outpost/north_east_hallway/maintenance) +"qoR" = ( +/obj/effect/floor_decal/corner/dark_blue{ + dir = 9 + }, +/obj/machinery/light/floor/maybe_broken/decayed{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/quarantined_outpost/dorm_hallway) +"qoZ" = ( +/obj/effect/floor_decal/industrial/warning, +/obj/random/dirt_75, +/turf/simulated/floor/tiled/dark/full, +/area/quarantined_outpost/elevator_hallway/maintenance) +"qpF" = ( +/obj/abstract/footprint_spawner_turn_helper{ + dir = 4 + }, +/obj/abstract/footprint_spawner/body, +/obj/random/dirt_75, +/turf/simulated/floor/plating, +/area/quarantined_outpost/elevator_hallway/maintenance) +"qpQ" = ( +/obj/effect/floor_decal/spline/plain/corner/black{ + dir = 1 + }, +/obj/effect/floor_decal/spline/plain/corner/black, +/obj/random/dirt_75, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 1 + }, +/obj/effect/landmark/trapped_vent/maybe/quarantined_outpost, +/turf/simulated/floor/tiled, +/area/quarantined_outpost/gym) +"qpR" = ( +/obj/effect/floor_decal/corner_wide/paleblue{ + dir = 9 + }, +/obj/random/dirt_75, +/turf/simulated/floor/tiled/white, +/area/quarantined_outpost/medbay) +"qpV" = ( +/obj/effect/floor_decal/corner/yellow{ + dir = 8 + }, +/turf/simulated/floor/tiled/gunmetal, +/area/quarantined_outpost/engineering) +"qqG" = ( +/obj/structure/railing/mapped{ + dir = 4 + }, +/obj/structure/railing/mapped, +/obj/structure/table/standard, +/obj/effect/floor_decal/corner/purple/full, +/obj/item/key/janicart{ + pixel_y = 7; + pixel_x = -4 + }, +/turf/simulated/floor/tiled, +/area/quarantined_outpost/dorm_hallway) +"qqI" = ( +/obj/random/dirt_75, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 8 + }, +/turf/simulated/floor/tiled/light, +/area/quarantined_outpost/research) +"qrG" = ( +/obj/machinery/vending/coffee, +/obj/effect/floor_decal/spline/plain/black{ + dir = 4 + }, +/obj/effect/floor_decal/industrial/outline/grey, +/turf/simulated/floor/tiled/dark/full/airless, +/area/quarantined_outpost/security) +"qrQ" = ( +/obj/structure/structural_support, +/turf/simulated/floor/exoplanet/basalt, +/area/quarantined_outpost/engineering/tunnel) +"qsb" = ( +/obj/effect/decal/cleanable/floor_damage/rust, +/obj/random/dirt_75, +/turf/simulated/floor/tiled/white, +/area/quarantined_outpost/research) +"qsh" = ( +/obj/machinery/light/small/floor/emergency, +/obj/structure/structural_support, +/obj/random/dirt_75, +/turf/simulated/floor/tiled/white, +/area/quarantined_outpost/extraction_lab) +"qsm" = ( +/obj/effect/floor_decal/spline/plain/black{ + dir = 4 + }, +/obj/effect/decal/cleanable/floor_damage/rust, +/obj/effect/decal/cleanable/blood, +/obj/effect/decal/remains, +/obj/structure/bed/handrail, +/turf/simulated/floor/tiled, +/area/quarantined_outpost/cargo_bay) +"qsM" = ( +/obj/structure/toilet{ + dir = 4; + pixel_y = -1 + }, +/obj/effect/floor_decal/corner_wide/paleblue/full, +/obj/effect/floor_decal/concrete/gutter/corner, +/turf/simulated/floor/tiled/airless, +/area/quarantined_outpost/security) +"qsR" = ( +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/random/canister/filled, +/turf/simulated/floor/plating, +/area/quarantined_outpost/engineering/atmospherics) +"qtj" = ( +/obj/machinery/power/apc/empty/east, +/obj/structure/cable{ + icon_state = "0-8" + }, +/obj/structure/lattice/catwalk/indoor/grate/dark, +/turf/simulated/floor/plating, +/area/quarantined_outpost/server_relay/north_east) +"qtL" = ( +/obj/effect/floor_decal/spline/plain/black{ + dir = 4 + }, +/obj/random/dirt_75, +/turf/simulated/floor/tiled, +/area/quarantined_outpost/gym) +"qtM" = ( +/obj/effect/floor_decal/industrial/hatch/yellow, +/turf/simulated/floor/tiled/full, +/area/quarantined_outpost/north_east_hallway) +"qtR" = ( +/obj/effect/map_effect/map_helper/ruler_tiles_3{ + dir = 4 + }, +/obj/effect/floor_decal/asteroid, +/turf/simulated/floor/exoplanet/asteroid/ash/rocky, +/area/quarantined_outpost/exterior) +"qtU" = ( +/obj/abstract/footprint_spawner/body{ + dir = 8 + }, +/obj/structure/cable{ + icon_state = "1-4" + }, +/turf/simulated/floor/plating, +/area/quarantined_outpost/entrance_maintenance) +"qtX" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/structure/cable{ + icon_state = "1-4" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 8 + }, +/obj/structure/lattice/catwalk/indoor/grate/dark, +/turf/simulated/floor/plating, +/area/quarantined_outpost/engineering/tunnel) +"que" = ( +/obj/effect/floor_decal/industrial/outline_straight/custodial{ + dir = 4 + }, +/obj/random/dirt_75, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 4 + }, +/turf/simulated/floor/tiled/light, +/area/quarantined_outpost/research) +"quz" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 9 + }, +/obj/effect/decal/cleanable/floor_damage/random_burned, +/turf/simulated/floor/reinforced, +/area/quarantined_outpost/research/containment) +"quO" = ( +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/effect/floor_decal/industrial/hatch/custodial, +/obj/structure/window/reinforced{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark/full, +/area/quarantined_outpost/research) +"quT" = ( +/obj/structure/platform/ledge/dark{ + dir = 8 + }, +/turf/simulated/floor/exoplanet/abyss, +/area/quarantined_outpost/chasm) +"qvx" = ( +/obj/machinery/light/maybe_broken/decayed{ + dir = 4 + }, +/turf/simulated/abyss/airless, +/area/quarantined_outpost/security) +"qvy" = ( +/obj/structure/bed/stool/padded/red{ + dir = 8 + }, +/obj/effect/floor_decal/corner/dark_green{ + dir = 6 + }, +/obj/effect/floor_decal/spline/plain/black{ + dir = 1 + }, +/obj/random/dirt_75, +/obj/machinery/alarm/east, +/turf/simulated/floor/tiled, +/area/quarantined_outpost/gym) +"qvF" = ( +/obj/effect/floor_decal/spline/plain/corner/black{ + dir = 4 + }, +/obj/effect/decal/cleanable/floor_damage/rust, +/turf/simulated/floor/tiled/gunmetal, +/area/quarantined_outpost/north_east_hallway) +"qvK" = ( +/obj/effect/floor_decal/corner/grey/diagonal, +/obj/effect/floor_decal/spline/plain/corner{ + dir = 4 + }, +/obj/random/dirt_75, +/obj/random/dirt_75, +/turf/simulated/floor/tiled/white, +/area/quarantined_outpost/cafeteria) +"qvN" = ( +/obj/structure/platform/ledge, +/obj/structure/platform/ledge{ + dir = 4 + }, +/obj/structure/platform_deco/ledge{ + dir = 5 + }, +/turf/simulated/floor/plating, +/area/quarantined_outpost/cargo_bay) +"qwl" = ( +/obj/effect/floor_decal/spline/plain/black{ + dir = 4 + }, +/obj/structure/railing/mapped{ + dir = 4 + }, +/obj/random/dirt_75, +/obj/random/dirt_75, +/obj/machinery/light/small/maybe_broken/decayed{ + dir = 4 + }, +/turf/simulated/floor/tiled/gunmetal, +/area/quarantined_outpost/engineering/tunnel) +"qwp" = ( +/obj/structure/closet/secure_closet/personal, +/obj/effect/floor_decal/corner/dark_green{ + dir = 5 + }, +/obj/effect/floor_decal/industrial/outline/grey, +/obj/random/watches, +/turf/simulated/floor/tiled, +/area/quarantined_outpost/gym) +"qwt" = ( +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/random/canister/filled, +/turf/simulated/floor/tiled/dark/full, +/area/quarantined_outpost/research) +"qwB" = ( +/obj/effect/floor_decal/spline/plain/black{ + dir = 6 + }, +/obj/structure/closet/crate/bin, +/obj/structure/extinguisher_cabinet/north, +/obj/random/dirt_75, +/turf/simulated/floor/tiled/dark/full, +/area/quarantined_outpost/elevator_hallway) +"qxa" = ( +/obj/structure/platform{ + dir = 8 + }, +/turf/simulated/floor/tiled/ramp{ + dir = 1 + }, +/area/quarantined_outpost/extraction_lab) +"qxm" = ( +/obj/effect/floor_decal/corner/dark_blue{ + dir = 5 + }, +/obj/random/dirt_75, +/turf/simulated/floor/tiled, +/area/quarantined_outpost/elevator_hallway) +"qxo" = ( +/obj/effect/floor_decal/industrial/outline_door/operations{ + dir = 8 + }, +/obj/effect/decal/cleanable/floor_damage/rust, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/quarantined_outpost/cargo_bay) +"qxB" = ( +/obj/structure/lattice, +/obj/structure/extinguisher_cabinet/south, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/abyss/airless, +/area/quarantined_outpost/security) +"qxF" = ( +/obj/machinery/conveyor{ + dir = 4 + }, +/obj/structure/railing/mapped{ + dir = 4 + }, +/turf/simulated/floor/carpet/rubber, +/area/quarantined_outpost/gym) +"qxL" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden{ + dir = 4 + }, +/obj/structure/tank_wall/hydrogen{ + icon_state = "h7" + }, +/turf/simulated/floor/plating, +/area/quarantined_outpost/engineering/atmospherics) +"qxY" = ( +/obj/effect/floor_decal/corner/yellow{ + dir = 8 + }, +/obj/random/dirt_75, +/obj/machinery/light/small/maybe_broken/decayed, +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/dark, +/area/quarantined_outpost/engineering/atmospherics) +"qzl" = ( +/obj/effect/floor_decal/corner/dark_blue/full, +/obj/random/dirt_75, +/turf/simulated/floor/tiled, +/area/quarantined_outpost/north_east_hallway) +"qzu" = ( +/obj/effect/floor_decal/corner/brown{ + dir = 4 + }, +/obj/random/dirt_75, +/obj/structure/ore_box, +/turf/simulated/floor/tiled, +/area/quarantined_outpost/cargo_bay) +"qzI" = ( +/obj/machinery/door/firedoor, +/obj/effect/floor_decal/industrial/hatch_door/research{ + dir = 8 + }, +/obj/effect/decal/cleanable/floor_damage/random_broken, +/obj/effect/decal/cleanable/molten_item, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 1 + }, +/turf/simulated/floor/tiled/dark/full, +/area/quarantined_outpost/research) +"qzO" = ( +/obj/effect/floor_decal/spline/plain/black{ + dir = 9 + }, +/turf/simulated/floor/tiled/gunmetal, +/area/quarantined_outpost/north_east_hallway) +"qzP" = ( +/obj/effect/floor_decal/corner/dark_blue{ + dir = 6 + }, +/obj/machinery/photocopier, +/obj/structure/sign/nosmoking_2{ + pixel_x = 30; + pixel_y = 4 + }, +/turf/simulated/floor/tiled, +/area/quarantined_outpost/entrance_lobby) +"qAA" = ( +/obj/structure/lattice/catwalk, +/obj/structure/railing/mapped{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/quarantined_outpost/cargo_bay) +"qBm" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, +/obj/structure/lattice/catwalk/indoor/grate/dark, +/turf/simulated/floor/plating, +/area/quarantined_outpost/engineering) +"qBr" = ( +/obj/effect/floor_decal/corner_wide/paleblue, +/obj/abstract/footprint_spawner/body, +/obj/structure/sign/securearea{ + pixel_x = 32 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 + }, +/turf/simulated/floor/tiled/airless, +/area/quarantined_outpost/security) +"qBU" = ( +/obj/structure/bed/stool/chair, +/obj/random/dirt_75, +/turf/simulated/floor/tiled/gunmetal/full, +/area/quarantined_outpost/engineering/tunnel) +"qCd" = ( +/obj/effect/floor_decal/corner/mauve{ + dir = 8 + }, +/obj/effect/floor_decal/spline/plain/purple{ + dir = 8 + }, +/obj/random/dirt_75, +/turf/simulated/floor/tiled/light, +/area/quarantined_outpost/research) +"qCz" = ( +/obj/effect/map_effect/map_helper/ruler_tiles_3, +/turf/simulated/floor/exoplanet/asteroid/ash/rocky, +/area/quarantined_outpost/exterior) +"qCE" = ( +/obj/structure/lattice, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 1 + }, +/turf/simulated/floor/plating, +/area/quarantined_outpost/entrance_lobby) +"qDe" = ( +/obj/machinery/atmospherics/portables_connector, +/obj/effect/floor_decal/industrial/hatch_small/yellow, +/obj/effect/decal/rolling_fog, +/turf/simulated/floor/plating, +/area/quarantined_outpost/research) +"qDR" = ( +/obj/effect/floor_decal/spline/fancy/wood, +/obj/structure/bed/stool/chair/sofa/left/brown{ + dir = 1 + }, +/obj/random/dirt_75, +/turf/simulated/floor/wood, +/area/quarantined_outpost/dorm_hallway) +"qDU" = ( +/obj/structure/table/glass, +/obj/item/reagent_containers/food/drinks/drinkingglass/newglass/coffeecup/sol{ + pixel_x = -4 + }, +/obj/random/dirt_75, +/turf/simulated/floor/tiled, +/area/quarantined_outpost/entrance_lobby) +"qDV" = ( +/obj/structure/railing/mapped{ + dir = 1 + }, +/obj/structure/railing/mapped{ + dir = 4 + }, +/turf/simulated/floor/exoplanet/asteroid/ash/rocky, +/area/quarantined_outpost/exterior) +"qEh" = ( +/obj/structure/table/reinforced/steel, +/obj/effect/floor_decal/corner/dark_blue{ + dir = 10 + }, +/obj/random/dirt_75, +/turf/simulated/floor/tiled/dark, +/area/quarantined_outpost/research) +"qED" = ( +/obj/effect/floor_decal/corner/grey/full{ + dir = 8 + }, +/obj/structure/railing/mapped{ + dir = 4 + }, +/obj/random/dirt_75, +/obj/machinery/stasis_cage, +/turf/simulated/floor/tiled/dark, +/area/quarantined_outpost/research) +"qEG" = ( +/obj/random/dirt_75, +/obj/effect/decal/cleanable/cobweb, +/turf/simulated/floor/tiled, +/area/quarantined_outpost/entrance_maintenance) +"qEH" = ( +/obj/structure/railing/mapped{ + dir = 1 + }, +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/random/dirt_75, +/obj/machinery/computer/general_air_control/large_tank_control/terminal{ + name = "Combustion Chamber Control"; + sensors = list("quarantined_outpost_combust_sensor"="Combustion Chamber"); + frequency = 1514; + input_tag = "quarantined_outpost_teg_in"; + output_tag = "quarantined_outpost_teg_out" + }, +/turf/simulated/floor/tiled/dark/full, +/area/quarantined_outpost/engineering/atmospherics) +"qEO" = ( +/obj/structure/lattice/catwalk/indoor/grate/dark, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 + }, +/obj/structure/cable{ + icon_state = "1-4" + }, +/obj/random/dirt_75, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/turf/simulated/floor/plating, +/area/quarantined_outpost/engineering/atmospherics) +"qFk" = ( +/obj/effect/floor_decal/industrial/outline_door/yellow, +/obj/effect/floor_decal/industrial/outline_segment/yellow{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/quarantined_outpost/entrance_lobby) +"qFq" = ( +/obj/structure/reagent_dispensers/water_cooler{ + pixel_x = 9 + }, +/obj/effect/floor_decal/corner/yellow{ + dir = 6 + }, +/obj/effect/decal/cleanable/floor_damage/rust, +/turf/simulated/floor/tiled/dark, +/area/quarantined_outpost/engineering/winch_room) +"qFT" = ( +/obj/structure/platform_deco/ledge{ + dir = 8 + }, +/obj/random/dirt_75, +/obj/random/dirt_75, +/obj/effect/decal/cleanable/floor_damage/rust, +/turf/simulated/floor/tiled, +/area/quarantined_outpost/cargo_bay) +"qGb" = ( +/obj/effect/floor_decal/corner_wide/paleblue{ + dir = 5 + }, +/obj/structure/railing/mapped{ + dir = 4 + }, +/obj/structure/railing/mapped{ + dir = 8 + }, +/obj/structure/table, +/obj/random/dirt_75, +/turf/simulated/floor/tiled/airless, +/area/quarantined_outpost/security) +"qGj" = ( +/obj/random/dirt_75, +/obj/abstract/footprint_spawner{ + dir = 8 + }, +/turf/simulated/floor/tiled/gunmetal, +/area/quarantined_outpost/engineering/tunnel) +"qGW" = ( +/obj/machinery/computer/terminal/inactive{ + dir = 8 + }, +/obj/effect/floor_decal/industrial/outline/yellow, +/turf/simulated/floor/tiled/bitile{ + dir = 1 + }, +/area/quarantined_outpost/research/containment) +"qGZ" = ( +/obj/effect/floor_decal/spline/fancy/wood, +/obj/structure/bed/stool/chair/sofa/corner/concave/brown{ + dir = 8 + }, +/obj/random/dirt_75, +/turf/simulated/floor/wood, +/area/quarantined_outpost/dorm_hallway) +"qHa" = ( +/obj/structure/table/standard, +/obj/effect/floor_decal/spline/plain/black{ + dir = 5 + }, +/obj/item/paper_bin{ + pixel_y = 6; + pixel_x = 7 + }, +/obj/item/pen/black, +/obj/random/dirt_75, +/turf/simulated/floor/tiled/white, +/area/quarantined_outpost/extraction_lab) +"qHw" = ( +/obj/effect/floor_decal/industrial/outline/operations, +/turf/simulated/floor/tiled, +/area/quarantined_outpost/cargo_bay) +"qHK" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/simulated/floor/plating, +/area/quarantined_outpost/engineering) +"qHM" = ( +/obj/structure/railing/mapped{ + dir = 4 + }, +/obj/structure/railing/mapped, +/obj/effect/floor_decal/industrial/outline/yellow, +/turf/simulated/floor/tiled/full, +/area/quarantined_outpost/cargo_bay) +"qHV" = ( +/obj/machinery/alarm/west, +/turf/simulated/floor/tiled/dark/full/airless, +/area/quarantined_outpost/security) +"qIl" = ( +/obj/structure/bed/stool/chair{ + dir = 1 + }, +/obj/effect/floor_decal/corner_wide/paleblue/full{ + dir = 4 + }, +/obj/random/dirt_75, +/turf/simulated/floor/tiled/airless, +/area/quarantined_outpost/security) +"qIv" = ( +/obj/effect/floor_decal/industrial/hatch/yellow, +/obj/machinery/door/firedoor{ + dir = 4 + }, +/obj/random/dirt_75, +/obj/structure/sign/directions/tcom{ + dir = 8; + pixel_y = 32 + }, +/turf/simulated/floor/tiled/dark/full, +/area/quarantined_outpost/engineering/atmospherics) +"qIy" = ( +/obj/structure/lattice/catwalk, +/obj/machinery/door/airlock/maintenance_hatch, +/obj/abstract/footprint_spawner/body{ + dir = 1 + }, +/turf/simulated/floor/exoplanet/basalt, +/area/quarantined_outpost/cafeteria/maintenance) +"qIz" = ( +/obj/structure/lattice/catwalk/indoor, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/exoplanet/abyss, +/area/quarantined_outpost/engineering/atmospherics) +"qIS" = ( +/obj/structure/barricade/wooden{ + dir = 8 + }, +/turf/simulated/floor/tiled/gunmetal, +/area/quarantined_outpost/engineering) +"qJd" = ( +/obj/effect/floor_decal/corner/dark_blue{ + dir = 6 + }, +/obj/random/dirt_75, +/obj/effect/floor_decal/industrial/outline/emergency_closet, +/obj/structure/closet/emcloset, +/turf/simulated/floor/tiled, +/area/quarantined_outpost/entrance_lobby) +"qJg" = ( +/obj/effect/floor_decal/corner/lime{ + dir = 10 + }, +/obj/machinery/power/apc/south, +/obj/structure/cable, +/turf/simulated/floor/tiled, +/area/quarantined_outpost/cafeteria) +"qJq" = ( +/obj/effect/floor_decal/spline/plain/black{ + dir = 5 + }, +/turf/simulated/floor/tiled/gunmetal, +/area/quarantined_outpost/engineering/tunnel) +"qJJ" = ( +/obj/effect/floor_decal/corner/black{ + dir = 8 + }, +/obj/effect/floor_decal/industrial/outline_door/yellow{ + dir = 1 + }, +/obj/effect/decal/cleanable/generic, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 1 + }, +/turf/simulated/floor/tiled/dark, +/area/quarantined_outpost/entrance_lobby) +"qJK" = ( +/obj/random/dirt_75, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 1 + }, +/turf/simulated/floor/tiled/rust, +/area/quarantined_outpost/dorm_hallway) +"qJM" = ( +/obj/machinery/computer/terminal/inactive{ + dir = 8 + }, +/obj/effect/floor_decal/industrial/outline/yellow, +/turf/simulated/floor/tiled/bitile, +/area/quarantined_outpost/research/containment) +"qKD" = ( +/obj/structure/platform_deco{ + dir = 8 + }, +/obj/effect/decal/cleanable/blood, +/turf/simulated/floor/tiled/ridged, +/area/quarantined_outpost/extraction_lab) +"qKK" = ( +/obj/structure/table/reinforced/steel, +/obj/machinery/door/window/desk/eastright, +/obj/item/flora/pottedplant_small/dead{ + pixel_y = -2; + pixel_x = -7 + }, +/obj/machinery/door/blast/shutters/open{ + dir = 8 + }, +/obj/machinery/door/firedoor{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark/full, +/area/quarantined_outpost/entrance_lobby) +"qMf" = ( +/obj/effect/floor_decal/industrial/hatch/yellow, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/door/firedoor/noid/closed{ + dir = 4; + blocked = 1 + }, +/turf/simulated/floor/tiled/white, +/area/quarantined_outpost/medbay) +"qMD" = ( +/obj/effect/floor_decal/corner/grey{ + dir = 9 + }, +/obj/structure/table/reinforced/steel, +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/random/dirt_75, +/turf/simulated/floor/tiled/dark, +/area/quarantined_outpost/research) +"qNd" = ( +/obj/effect/floor_decal/industrial/outline/operations, +/obj/effect/floor_decal/industrial/loading/operations{ + dir = 1 + }, +/obj/structure/sign/flag/sol/old{ + pixel_x = 32 + }, +/obj/effect/decal/cleanable/floor_damage/random_burned, +/obj/random/dirt_75, +/turf/simulated/floor/tiled/dark, +/area/quarantined_outpost/entrance_lobby) +"qNk" = ( +/obj/effect/floor_decal/industrial/outline_door/yellow{ + dir = 8 + }, +/obj/effect/floor_decal/industrial/outline_segment/yellow{ + dir = 9 + }, +/obj/structure/table/standard/flipped{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/quarantined_outpost/cafeteria) +"qNr" = ( +/obj/effect/floor_decal/corner/green/diagonal, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/effect/landmark/quarantined_outpost/creature, +/turf/simulated/floor/tiled/white, +/area/quarantined_outpost/dorm_hallway) +"qNH" = ( +/obj/random/dirt_75, +/obj/random/dirt_75, +/turf/simulated/floor/tiled, +/area/quarantined_outpost/engineering) +"qOB" = ( +/obj/effect/floor_decal/corner/dark_blue/full{ + dir = 4 + }, +/obj/random/dirt_75, +/obj/random/dirt_75, +/obj/structure/railing/mapped, +/turf/simulated/floor/tiled, +/area/quarantined_outpost/elevator_hallway) +"qOG" = ( +/obj/structure/lattice/catwalk/indoor/grate/damaged, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 1 + }, +/turf/simulated/floor/plating, +/area/quarantined_outpost/elevator_hallway) +"qOO" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/quarantined_outpost/engineering/atmospherics) +"qOS" = ( +/obj/random/dirt_75, +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/simulated/floor/plating, +/area/quarantined_outpost/cafeteria/maintenance) +"qOT" = ( +/obj/effect/floor_decal/corner/lime{ + dir = 10 + }, +/obj/structure/table/standard/flipped{ + dir = 1 + }, +/obj/random/dirt_75, +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/simulated/floor/tiled, +/area/quarantined_outpost/cafeteria) +"qPr" = ( +/obj/effect/floor_decal/corner/dark_blue{ + dir = 9 + }, +/obj/structure/table/standard, +/obj/machinery/chemical_dispenser/coffee/full{ + pixel_y = 17; + pixel_x = -5 + }, +/obj/item/reagent_containers/food/drinks/drinkingglass/newglass/coffeecup/sol{ + pixel_x = 10; + pixel_y = 2 + }, +/obj/item/reagent_containers/food/drinks/drinkingglass/newglass/coffeecup/sol{ + pixel_x = -4; + pixel_y = -4 + }, +/obj/random/dirt_75, +/turf/simulated/floor/tiled, +/area/quarantined_outpost/entrance_lobby) +"qPA" = ( +/obj/structure/bed/stool/chair, +/obj/effect/floor_decal/corner_wide/paleblue{ + dir = 9 + }, +/obj/random/dirt_75, +/turf/simulated/floor/tiled/airless, +/area/quarantined_outpost/security) +"qPG" = ( +/obj/effect/floor_decal/corner/brown{ + dir = 10 + }, +/obj/random/dirt_75, +/turf/simulated/floor/tiled, +/area/quarantined_outpost/elevator_hallway) +"qQh" = ( +/obj/effect/floor_decal/corner/brown{ + dir = 6 + }, +/obj/structure/railing/mapped{ + dir = 8 + }, +/obj/random/dirt_75, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/quarantined_outpost/cargo_bay) +"qQL" = ( +/obj/effect/decal/cleanable/floor_damage/random_burned, +/obj/random/dirt_75, +/obj/effect/decal/cleanable/molten_item, +/turf/simulated/floor/plating, +/area/quarantined_outpost/entrance_lobby) +"qRg" = ( +/obj/structure/tank_wall/oxygen{ + icon_state = "o2-8" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/quarantined_outpost/engineering/atmospherics) +"qSf" = ( +/obj/effect/floor_decal/corner/dark_blue/full{ + dir = 1 + }, +/obj/random/dirt_75, +/obj/machinery/light/small/emergency{ + dir = 4 + }, +/turf/simulated/floor/tiled/gunmetal, +/area/quarantined_outpost/server_relay/north_east) +"qSv" = ( +/obj/effect/floor_decal/corner_wide/lime{ + dir = 5 + }, +/obj/effect/floor_decal/corner_wide/lime, +/obj/random/dirt_75, +/turf/simulated/floor/tiled/white, +/area/quarantined_outpost/medbay) +"qSM" = ( +/obj/structure/railing/mapped{ + dir = 1 + }, +/obj/random/dirt_75, +/obj/effect/landmark/quarantined_outpost/canister_spawn, +/turf/simulated/floor/tiled/dark/full, +/area/quarantined_outpost/engineering/atmospherics) +"qSR" = ( +/obj/structure/table/standard, +/obj/effect/floor_decal/spline/plain/black{ + dir = 1 + }, +/obj/machinery/recharger{ + pixel_x = -6; + pixel_y = 7 + }, +/turf/simulated/floor/tiled/white, +/area/quarantined_outpost/extraction_lab) +"qTb" = ( +/obj/machinery/door/airlock/maintenance_hatch{ + dir = 1 + }, +/obj/machinery/door/firedoor, +/turf/simulated/floor/plating, +/area/quarantined_outpost/dorm_hallway) +"qTu" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 8 + }, +/obj/random/dirt_75, +/obj/random/dirt_75, +/turf/simulated/floor/plating, +/area/quarantined_outpost/gym) +"qTy" = ( +/obj/effect/floor_decal/corner/dark_blue{ + dir = 4 + }, +/obj/random/dirt_75, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 1 + }, +/obj/effect/landmark/maybe_cut_cable, +/turf/simulated/floor/tiled, +/area/quarantined_outpost/elevator_hallway) +"qTC" = ( +/obj/effect/map_effect/window_spawner/full/reinforced/firedoor, +/turf/simulated/floor/tiled/dark/full, +/area/quarantined_outpost/research) +"qTK" = ( +/obj/structure/platform/ledge/dark{ + dir = 1 + }, +/obj/structure/platform/ledge/dark{ + dir = 4 + }, +/obj/effect/decal/rolling_fog, +/turf/simulated/floor/exoplanet/abyss, +/area/quarantined_outpost/chasm) +"qTL" = ( +/obj/structure/table/standard, +/obj/effect/floor_decal/corner/yellow/full{ + dir = 1 + }, +/obj/random/dirt_75, +/obj/item/stack/material/steel{ + amount = 50 + }, +/obj/machinery/light/small/broken{ + dir = 1 + }, +/turf/simulated/floor/tiled/dark/airless, +/area/quarantined_outpost/auxiliary_power) +"qUp" = ( +/obj/structure/bed/stool/chair/office/light, +/obj/effect/floor_decal/corner_wide/lime/full, +/obj/random/dirt_75, +/turf/simulated/floor/tiled/white, +/area/quarantined_outpost/medbay) +"qUq" = ( +/obj/effect/map_effect/window_spawner/full/shuttle/coalition/firedoor, +/turf/simulated/floor/tiled/full, +/area/quarantined_outpost/cargo_bay) +"qUD" = ( +/obj/machinery/air_sensor, +/obj/structure/lattice/catwalk/indoor/grate/dark, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 1 + }, +/turf/simulated/floor/plating, +/area/quarantined_outpost/research) +"qUS" = ( +/obj/structure/lattice/catwalk, +/obj/structure/railing/mapped{ + dir = 8 + }, +/obj/item/hullbeacon/red, +/turf/simulated/floor/exoplanet/abyss, +/area/quarantined_outpost/chasm) +"qVz" = ( +/obj/structure/table/rack, +/obj/random/loot, +/turf/simulated/floor/plating, +/area/quarantined_outpost/elevator_hallway/maintenance) +"qVC" = ( +/obj/structure/lattice/catwalk/indoor/grate/dark, +/turf/simulated/floor/plating, +/area/quarantined_outpost/north_east_hallway/maintenance) +"qVG" = ( +/obj/machinery/portable_atmospherics/canister/empty, +/obj/machinery/atmospherics/portables_connector{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/quarantined_outpost/engineering/atmospherics) +"qVX" = ( +/obj/effect/floor_decal/corner/black{ + dir = 9 + }, +/obj/random/dirt_75, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 1 + }, +/turf/simulated/floor/tiled/dark, +/area/quarantined_outpost/entrance_lobby) +"qWb" = ( +/obj/effect/floor_decal/spline/plain/black, +/obj/random/dirt_75, +/obj/random/dirt_75, +/obj/random/dirt_75, +/turf/simulated/floor/tiled/gunmetal, +/area/quarantined_outpost/engineering/tunnel) +"qWm" = ( +/obj/effect/floor_decal/corner/black, +/obj/random/dirt_75, +/obj/effect/floor_decal/industrial/outline_door/yellow{ + dir = 1 + }, +/turf/simulated/floor/tiled/dark, +/area/quarantined_outpost/entrance_lobby) +"qWv" = ( +/obj/structure/bed/stool/chair/folding{ + dir = 1 + }, +/obj/effect/floor_decal/corner/lime{ + dir = 5 + }, +/obj/structure/sign/poster{ + pixel_y = -32 + }, +/obj/machinery/light/floor/maybe_broken/decayed, +/obj/random/dirt_75, +/turf/simulated/floor/tiled, +/area/quarantined_outpost/cafeteria) +"qWy" = ( +/obj/structure/table/standard, +/obj/item/reagent_containers/food/drinks/waterbottle{ + pixel_x = -6; + pixel_y = 4 + }, +/turf/simulated/floor/carpet/rubber, +/area/quarantined_outpost/gym) +"qWN" = ( +/obj/random/dirt_75, +/turf/simulated/floor/tiled, +/area/quarantined_outpost/cargo_bay) +"qWX" = ( +/obj/random/dirt_75, +/turf/simulated/floor/tiled/rust, +/area/quarantined_outpost/reception) +"qXe" = ( +/obj/random/dirt_75, +/obj/effect/decal/cleanable/floor_damage/rust, +/obj/machinery/atmospherics/unary/vent_scrubber/on, +/turf/simulated/floor/tiled, +/area/quarantined_outpost/cargo_bay) +"qXN" = ( +/obj/random/dirt_75, +/obj/effect/map_effect/marker/airlock/quarantined_outpost/entrance, +/obj/machinery/atmospherics/pipe/manifold/hidden{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/quarantined_outpost/entrance_lobby) +"qXS" = ( +/obj/structure/flora/rock/pile/random, +/turf/simulated/floor/exoplanet/asteroid/ash/rocky, +/area/quarantined_outpost/exterior) +"qXT" = ( +/obj/effect/floor_decal/corner/brown, +/obj/random/dirt_75, +/obj/effect/decal/cleanable/floor_damage/rust, +/obj/effect/landmark/quarantined_outpost/creature, +/turf/simulated/floor/tiled, +/area/quarantined_outpost/cargo_bay) +"qXV" = ( +/obj/item/material/shard{ + pixel_x = -1; + pixel_y = 2 + }, +/obj/random/dirt_75, +/turf/simulated/floor/tiled/dark, +/area/quarantined_outpost/research) +"qYt" = ( +/obj/effect/floor_decal/corner/dark_blue{ + dir = 1 + }, +/obj/effect/floor_decal/corner/yellow{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/red{ + dir = 1 + }, +/turf/simulated/floor/tiled/dark, +/area/quarantined_outpost/engineering/atmospherics) +"qYY" = ( +/obj/effect/floor_decal/corner/grey/diagonal, +/obj/effect/floor_decal/spline/plain{ + dir = 1 + }, +/obj/random/dirt_75, +/turf/simulated/floor/tiled/white, +/area/quarantined_outpost/cafeteria) +"qZb" = ( +/obj/effect/floor_decal/spline/plain/black{ + dir = 4 + }, +/obj/effect/decal/cleanable/floor_damage/rust, +/turf/simulated/floor/tiled/gunmetal, +/area/quarantined_outpost/engineering/tunnel) +"qZe" = ( +/obj/structure/table/reinforced/steel, +/obj/structure/window/reinforced, +/obj/machinery/door/firedoor{ + dir = 4 + }, +/obj/random/dirt_75, +/turf/simulated/floor/tiled/dark/full, +/area/quarantined_outpost/security) +"qZM" = ( +/obj/effect/floor_decal/corner/mauve{ + dir = 8 + }, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 4 + }, +/obj/effect/landmark/trapped_vent/maybe/quarantined_outpost, +/turf/simulated/floor/tiled/light, +/area/quarantined_outpost/research) +"raZ" = ( +/obj/structure/table/standard, +/obj/random/dirt_75, +/obj/random/junk, +/obj/machinery/light/maybe_broken/decayed{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/quarantined_outpost/dorm_hallway) +"rbd" = ( +/obj/effect/floor_decal/corner/dark_blue{ + dir = 5 + }, +/obj/structure/closet/walllocker/medical/firstaid{ + pixel_y = 32 + }, +/obj/machinery/light/floor/maybe_broken/decayed{ + dir = 1 + }, +/obj/random/dirt_75, +/obj/structure/flora/pottedplant/empty{ + pixel_y = 8 + }, +/turf/simulated/floor/tiled/rust, +/area/quarantined_outpost/reception) +"rbp" = ( +/obj/effect/floor_decal/corner/black{ + dir = 9 + }, +/obj/machinery/light/small/maybe_broken/decayed{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 1 + }, +/turf/simulated/floor/tiled/dark, +/area/quarantined_outpost/entrance_lobby) +"rby" = ( +/obj/random/dirt_75, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 1 + }, +/obj/effect/landmark/maybe_cut_cable, +/turf/simulated/floor/tiled, +/area/quarantined_outpost/north_east_hallway) +"rci" = ( +/obj/effect/landmark/quarantined_outpost/canister_spawn, +/turf/simulated/floor/plating, +/area/quarantined_outpost/north_east_hallway/maintenance) +"rcx" = ( +/obj/structure/railing/mapped{ + dir = 8 + }, +/obj/structure/lattice/catwalk, +/turf/simulated/floor/exoplanet/basalt, +/area/quarantined_outpost/engineering/tunnel) +"rcG" = ( +/obj/effect/floor_decal/industrial/outline/service, +/obj/random/dirt_75, +/obj/random/dirt_75, +/obj/effect/landmark/quarantined_outpost/canister_spawn, +/turf/simulated/floor/tiled/dark/full, +/area/quarantined_outpost/cafeteria) +"rcO" = ( +/obj/abstract/footprint_spawner/body{ + dir = 1 + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/simulated/floor/plating, +/area/quarantined_outpost/entrance_maintenance) +"rcY" = ( +/obj/effect/floor_decal/corner/mauve{ + dir = 10 + }, +/obj/random/dirt_75, +/obj/effect/decal/cleanable/floor_damage/rust, +/turf/simulated/floor/tiled/white, +/area/quarantined_outpost/extraction_lab) +"rdd" = ( +/obj/effect/floor_decal/corner/mauve{ + dir = 9 + }, +/obj/random/dirt_75, +/obj/item/material/shard, +/turf/simulated/floor/tiled/white, +/area/quarantined_outpost/extraction_lab) +"rdv" = ( +/obj/effect/floor_decal/corner_wide/lime, +/obj/random/dirt_75, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 1 + }, +/turf/simulated/floor/tiled/white, +/area/quarantined_outpost/medbay) +"rdK" = ( +/obj/structure/stairs_railing{ + dir = 1 + }, +/obj/structure/railing/mapped, +/obj/effect/floor_decal/industrial/outline_door/yellow{ + dir = 8 + }, +/turf/simulated/floor/tiled/dark, +/area/quarantined_outpost/engineering/atmospherics) +"rdZ" = ( +/obj/effect/map_effect/map_helper/ruler_tiles_3, +/obj/item/hullbeacon/red, +/turf/simulated/floor/plating/asteroid/airless, +/area/quarantined_outpost/exterior) +"ref" = ( +/obj/effect/floor_decal/corner/lime{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, +/turf/simulated/floor/tiled, +/area/quarantined_outpost/cafeteria) +"reL" = ( +/obj/effect/floor_decal/corner/dark_blue, +/obj/effect/floor_decal/corner/yellow{ + dir = 8 + }, +/obj/machinery/mining/drill, +/turf/simulated/floor/tiled/dark, +/area/quarantined_outpost/engineering/atmospherics) +"reT" = ( +/obj/effect/floor_decal/spline/plain/black{ + dir = 8 + }, +/obj/effect/floor_decal/concrete/gutter/corner{ + dir = 8 + }, +/obj/random/dirt_75, +/obj/effect/decal/cleanable/floor_damage/rust, +/obj/machinery/power/apc/west, +/obj/structure/cable{ + icon_state = "0-4" + }, +/turf/simulated/floor/tiled/gunmetal, +/area/quarantined_outpost/engineering/tunnel) +"rfh" = ( +/obj/structure/lattice/catwalk, +/obj/structure/railing/mapped{ + dir = 4 + }, +/obj/structure/hoist{ + dir = 4 + }, +/turf/simulated/floor/exoplanet/basalt, +/area/quarantined_outpost/engineering/winch_room) +"rfu" = ( +/obj/structure/lattice/catwalk/indoor/grate, +/obj/machinery/door/airlock/external, +/obj/effect/map_effect/marker/airlock/quarantined_outpost/entrance, +/obj/machinery/access_button{ + pixel_x = 28 + }, +/obj/effect/map_effect/marker_helper/airlock/exterior, +/turf/simulated/floor/plating, +/area/quarantined_outpost/entrance_lobby) +"rfJ" = ( +/obj/effect/floor_decal/corner/dark_blue{ + dir = 5 + }, +/obj/random/dirt_75, +/obj/structure/cable{ + icon_state = "2-4" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, +/turf/simulated/floor/tiled, +/area/quarantined_outpost/dorm_hallway) +"rgd" = ( +/obj/structure/lattice/catwalk/indoor/grate/dark, +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/simulated/floor/plating, +/area/quarantined_outpost/engineering/atmospherics) +"rgv" = ( +/turf/simulated/wall/r_wall, +/area/quarantined_outpost/security) +"rhf" = ( +/obj/structure/sink{ + dir = 4; + pixel_x = 12 + }, +/obj/effect/floor_decal/corner/green/diagonal, +/obj/random/dirt_75, +/obj/structure/mirror{ + pixel_x = 27 + }, +/turf/simulated/floor/tiled/white, +/area/quarantined_outpost/dorm_hallway) +"rhn" = ( +/obj/effect/floor_decal/corner/dark_blue{ + dir = 10 + }, +/obj/random/dirt_75, +/turf/simulated/floor/tiled/rust, +/area/quarantined_outpost/elevator_hallway) +"rhC" = ( +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 8 + }, +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 4 + }, +/obj/structure/flora/grass/desert/bush{ + name = "withered grass" + }, +/turf/simulated/floor/exoplanet/barren, +/area/quarantined_outpost/elevator_hallway) +"rhE" = ( +/obj/effect/floor_decal/corner/dark_blue{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/quarantined_outpost/north_east_hallway) +"rhL" = ( +/obj/structure/table/standard, +/obj/effect/floor_decal/spline/plain/black{ + dir = 6 + }, +/turf/simulated/floor/tiled/white, +/area/quarantined_outpost/extraction_lab) +"ric" = ( +/obj/effect/floor_decal/corner/mauve{ + dir = 5 + }, +/obj/machinery/atmospherics/unary/vent_pump/on, +/obj/effect/landmark/trapped_vent/maybe/quarantined_outpost, +/turf/simulated/floor/tiled/light, +/area/quarantined_outpost/research) +"rie" = ( +/obj/effect/decal/cleanable/floor_damage/random_burned, +/obj/random/dirt_75, +/obj/effect/decal/cleanable/ash{ + pixel_y = -3; + pixel_x = -6 + }, +/obj/item/flamethrower/full{ + pixel_x = -8; + pixel_y = 7 + }, +/turf/simulated/floor/plating, +/area/quarantined_outpost/entrance_lobby) +"rir" = ( +/obj/effect/floor_decal/spline/plain/purple{ + dir = 4 + }, +/obj/effect/decal/cleanable/floor_damage/rust, +/turf/simulated/floor/tiled/light, +/area/quarantined_outpost/research) +"riw" = ( +/obj/effect/floor_decal/corner/yellow{ + dir = 10 + }, +/obj/structure/cable{ + icon_state = "1-4" + }, +/turf/simulated/floor/tiled/gunmetal, +/area/quarantined_outpost/engineering) +"riC" = ( +/obj/structure/lattice/catwalk/indoor/grate/dark, +/obj/abstract/footprint_spawner, +/obj/abstract/footprint_spawner_turn_helper{ + dir = 8 + }, +/obj/structure/cable{ + icon_state = "1-8" + }, +/turf/simulated/floor/plating, +/area/quarantined_outpost/north_east_hallway/maintenance) +"rjl" = ( +/obj/effect/floor_decal/spline/plain/black, +/obj/random/dirt_75, +/obj/random/dirt_75, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/gunmetal, +/area/quarantined_outpost/north_east_hallway) +"rjs" = ( +/obj/effect/floor_decal/industrial/outline_door/yellow{ + dir = 8 + }, +/obj/random/dirt_75, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/dark, +/area/quarantined_outpost/north_east_hallway) +"rlN" = ( +/obj/effect/floor_decal/corner/black{ + dir = 4 + }, +/obj/random/dirt_75, +/obj/effect/floor_decal/industrial/outline_door/yellow, +/turf/simulated/floor/tiled/dark, +/area/quarantined_outpost/entrance_lobby) +"rmx" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/random/dirt_75, +/obj/random/dirt_75, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled/gunmetal, +/area/quarantined_outpost/engineering/tunnel) +"rmA" = ( +/obj/structure/cable/orange{ + icon_state = "1-2" + }, +/obj/structure/lattice/catwalk/indoor/grate, +/turf/simulated/floor/plating, +/area/quarantined_outpost/entrance_lobby) +"rmP" = ( +/obj/effect/floor_decal/industrial/warning/corner, +/obj/structure/table/standard, +/turf/simulated/floor/tiled, +/area/quarantined_outpost/medbay) +"rmT" = ( +/obj/item/paper/crumpled{ + pixel_x = -7; + pixel_y = 4 + }, +/obj/effect/floor_decal/corner/mauve{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled/light, +/area/quarantined_outpost/research) +"rna" = ( +/obj/random/dirt_75, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 1 + }, +/turf/simulated/floor/tiled/full/airless, +/area/quarantined_outpost/security) +"rnf" = ( +/obj/effect/floor_decal/spline/plain/black{ + dir = 4 + }, +/obj/effect/floor_decal/industrial/outline/grey, +/obj/structure/table/rack, +/obj/random/loot, +/turf/simulated/floor/tiled/dark/full, +/area/quarantined_outpost/north_east_hallway) +"rnn" = ( +/obj/structure/cable{ + icon_state = "0-4" + }, +/obj/machinery/power/apc/empty/south, +/obj/structure/lattice/catwalk/indoor/grate/dark, +/turf/simulated/floor/plating, +/area/quarantined_outpost/server_relay/north_west) +"rnJ" = ( +/obj/effect/floor_decal/corner/dark_blue{ + dir = 1 + }, +/obj/structure/extinguisher_cabinet/west, +/obj/structure/bed/stool/chair{ + dir = 4 + }, +/turf/simulated/floor/tiled/rust, +/area/quarantined_outpost/reception) +"rnL" = ( +/obj/structure/lattice/catwalk/indoor/grate/damaged, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 1 + }, +/turf/simulated/floor/plating, +/area/quarantined_outpost/elevator_hallway) +"rnO" = ( +/obj/structure/closet, +/obj/random/loot, +/turf/simulated/floor/plating, +/area/quarantined_outpost/cafeteria/maintenance) +"rnT" = ( +/obj/random/dirt_75, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/structure/bed/stool/chair/folding, +/turf/simulated/floor/tiled/gunmetal, +/area/quarantined_outpost/engineering) +"ros" = ( +/obj/effect/floor_decal/corner/lime{ + dir = 6 + }, +/obj/random/dirt_75, +/obj/structure/table/standard/flipped{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/quarantined_outpost/cafeteria) +"roE" = ( +/obj/structure/barricade/wooden/road{ + dir = 1 + }, +/turf/simulated/floor/exoplanet/asteroid/ash/rocky, +/area/quarantined_outpost/exterior) +"roY" = ( +/obj/structure/closet/secure_closet/personal, +/obj/effect/floor_decal/corner/dark_green{ + dir = 9 + }, +/obj/effect/floor_decal/industrial/outline/grey, +/obj/random/dirt_75, +/obj/random/dirt_75, +/obj/random/mre, +/obj/machinery/light/small/maybe_broken/decayed{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/quarantined_outpost/gym) +"rpv" = ( +/obj/effect/floor_decal/corner/lime{ + dir = 5 + }, +/obj/item/material/stool/chair/folding{ + pixel_y = 5; + pixel_x = 5 + }, +/turf/simulated/floor/tiled, +/area/quarantined_outpost/cafeteria) +"rpD" = ( +/obj/effect/floor_decal/corner/yellow{ + dir = 4 + }, +/obj/effect/floor_decal/corner/dark_blue{ + dir = 1 + }, +/obj/effect/decal/cleanable/floor_damage/rust, +/obj/structure/fireaxecabinet/north, +/turf/simulated/floor/tiled/dark, +/area/quarantined_outpost/engineering/atmospherics) +"rpF" = ( +/obj/structure/platform{ + dir = 8 + }, +/obj/structure/platform{ + dir = 1 + }, +/obj/structure/platform_deco{ + dir = 6 + }, +/obj/random/dirt_75, +/obj/effect/floor_decal/industrial/outline_segment/grey{ + dir = 8 + }, +/obj/structure/railing/mapped, +/obj/structure/railing/mapped{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark/full, +/area/quarantined_outpost/research) +"rpR" = ( +/obj/effect/floor_decal/corner/grey{ + dir = 6 + }, +/obj/structure/table/reinforced/steel, +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/random/dirt_75, +/turf/simulated/floor/tiled/dark, +/area/quarantined_outpost/research) +"rpT" = ( +/obj/effect/floor_decal/corner/yellow/full{ + dir = 8 + }, +/obj/structure/table/standard, +/obj/random/dirt_75, +/obj/random/junk, +/turf/simulated/floor/tiled/gunmetal, +/area/quarantined_outpost/engineering/winch_room) +"rqh" = ( +/obj/machinery/power/apc/north, +/obj/structure/cable{ + icon_state = "0-8" + }, +/obj/random/dirt_75, +/obj/random/dirt_75, +/turf/simulated/floor/tiled/dark/full, +/area/quarantined_outpost/research/containment) +"rqp" = ( +/obj/random/dirt_75, +/obj/random/dirt_75, +/obj/effect/floor_decal/spline/plain/black, +/turf/simulated/floor/tiled/gunmetal, +/area/quarantined_outpost/engineering/tunnel) +"rqy" = ( +/obj/effect/floor_decal/corner_wide/lime/full{ + dir = 8 + }, +/obj/effect/floor_decal/industrial/outline/medical, +/obj/machinery/vending/medical, +/obj/effect/decal/cleanable/cobweb, +/turf/simulated/floor/tiled/white, +/area/quarantined_outpost/medbay) +"rqC" = ( +/obj/effect/floor_decal/corner/mauve{ + dir = 5 + }, +/obj/structure/table/standard, +/obj/item/paper_bin{ + pixel_y = 4 + }, +/obj/effect/decal/cleanable/floor_damage/rust, +/turf/simulated/floor/tiled/light, +/area/quarantined_outpost/research) +"rqE" = ( +/obj/effect/floor_decal/industrial/outline/operations, +/obj/effect/floor_decal/industrial/loading/operations{ + dir = 4 + }, +/obj/random/dirt_75, +/turf/simulated/floor/tiled, +/area/quarantined_outpost/cargo_bay) +"rra" = ( +/obj/effect/floor_decal/spline/plain/corner/black{ + dir = 1 + }, +/obj/random/dirt_75, +/obj/effect/decal/cleanable/blood, +/turf/simulated/floor/tiled/ridged, +/area/quarantined_outpost/extraction_lab) +"rrc" = ( +/turf/simulated/floor/plating, +/area/quarantined_outpost/research) +"rrh" = ( +/obj/item/wrench, +/obj/random/dirt_75, +/turf/simulated/floor/plating, +/area/quarantined_outpost/medbay) +"rru" = ( +/obj/structure/bed/stool/chair/office/dark{ + dir = 4 + }, +/obj/random/dirt_75, +/obj/random/dirt_75, +/obj/effect/floor_decal/industrial/outline_segment/emergency_closet{ + dir = 4 + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 8 + }, +/turf/simulated/floor/tiled/airless, +/area/quarantined_outpost/security) +"rrx" = ( +/obj/machinery/door/airlock/maintenance_hatch{ + dir = 1; + name = "Operating Room (DANGER. KEEP AWAY)"; + frequency = 1515; + id_tag = "quarantined_outpost_portal_airlock_exterior"; + locked = 1 + }, +/obj/abstract/footprint_spawner{ + dir = 1 + }, +/obj/machinery/embedded_controller/radio/airlock/access_controller{ + id_tag = "quarantined_outpost_portal_airlock_control"; + name = "Operating Room Airlock Access Console"; + pixel_x = 38; + tag_exterior_door = "quarantined_outpost_portal_airlock_exterior"; + tag_interior_door = "quarantined_outpost_portal_airlock_interior"; + frequency = 1515 + }, +/obj/machinery/access_button{ + command = "cycle_exterior"; + frequency = 1515; + master_tag = "quarantined_outpost_portal_airlock_control"; + name = "Operating Room Airlock Access"; + pixel_x = 23 + }, +/obj/effect/floor_decal/industrial/hatch_door/yellow{ + dir = 1 + }, +/turf/simulated/floor/tiled/dark/full, +/area/quarantined_outpost/research) +"rry" = ( +/obj/effect/floor_decal/spline/plain/grey{ + dir = 10 + }, +/obj/structure/table/rack, +/turf/simulated/floor/reinforced, +/area/quarantined_outpost/security) +"rrz" = ( +/obj/effect/floor_decal/corner_wide/lime/diagonal, +/obj/structure/table/wood, +/obj/item/flora/pottedplant_small/dead{ + pixel_y = -1; + pixel_x = 8 + }, +/obj/item/clothing/head/headmirror{ + pixel_y = 7; + pixel_x = -4 + }, +/turf/simulated/floor/tiled/white, +/area/quarantined_outpost/medbay) +"rrS" = ( +/obj/effect/floor_decal/corner/mauve{ + dir = 9 + }, +/obj/effect/floor_decal/spline/plain/purple{ + dir = 10 + }, +/obj/item/material/shard{ + pixel_x = -4; + pixel_y = -3 + }, +/obj/effect/decal/cleanable/floor_damage/rust, +/obj/effect/decal/cleanable/generic, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled/light, +/area/quarantined_outpost/research) +"rrY" = ( +/obj/structure/lattice/catwalk/indoor/grate/dark, +/obj/structure/cable{ + 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/quarantined_outpost/research) +"rsA" = ( +/obj/effect/floor_decal/corner/dark_blue{ + dir = 5 + }, +/obj/random/dirt_75, +/obj/random/dirt_75, +/obj/structure/cable{ + icon_state = "2-4" + }, +/turf/simulated/floor/tiled, +/area/quarantined_outpost/elevator_hallway) +"rsN" = ( +/obj/effect/floor_decal/corner/dark_blue, +/obj/random/dirt_75, +/obj/random/dirt_75, +/obj/machinery/alarm/south, +/turf/simulated/floor/tiled, +/area/quarantined_outpost/entrance_lobby) +"rsQ" = ( +/obj/structure/platform/ledge/dark{ + dir = 1 + }, +/obj/effect/decal/rolling_fog, +/turf/simulated/floor/exoplanet/abyss, +/area/quarantined_outpost/chasm) +"rsT" = ( +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 8 + }, +/obj/item/paper/pamphlet, +/obj/item/paper/pamphlet, +/obj/item/paper/pamphlet, +/obj/item/paper/pamphlet, +/obj/structure/table/rack, +/turf/simulated/floor/wood, +/area/quarantined_outpost/dorm_hallway) +"rty" = ( +/obj/effect/floor_decal/corner/dark_blue{ + dir = 10 + }, +/obj/random/dirt_75, +/turf/simulated/floor/tiled/dark, +/area/quarantined_outpost/research) +"rtM" = ( +/obj/effect/decal/cleanable/floor_damage/random_broken, +/obj/effect/decal/cleanable/molten_item, +/obj/random/dirt_75, +/obj/random/dirt_75, +/turf/simulated/floor/plating, +/area/quarantined_outpost/cafeteria) +"rtO" = ( +/obj/structure/tank_wall/air{ + density = 0; + icon_state = "air5"; + opacity = 0 + }, +/obj/machinery/atmospherics/pipe/tank/air{ + dir = 4 + }, +/turf/simulated/floor/reinforced, +/area/quarantined_outpost/engineering/atmospherics) +"ruh" = ( +/obj/machinery/door/firedoor/multi_tile{ + dir = 2 + }, +/obj/effect/floor_decal/industrial/hatch/medical, +/obj/machinery/door/airlock/multi_tile/glass{ + dir = 1; + welded = 1; + name = "Medical Ward Entrance" + }, +/turf/simulated/floor/tiled/white, +/area/quarantined_outpost/north_east_hallway) +"ruB" = ( +/obj/random/dirt_75, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/quarantined_outpost/medbay) +"ruV" = ( +/obj/structure/bed/stool/chair{ + dir = 1 + }, +/obj/effect/floor_decal/corner_wide/paleblue{ + dir = 10 + }, +/obj/random/dirt_75, +/turf/simulated/floor/tiled, +/area/quarantined_outpost/elevator_hallway) +"rvb" = ( +/obj/effect/floor_decal/corner_wide/lime/full, +/obj/structure/closet/secure_closet/personal, +/obj/effect/floor_decal/industrial/outline/medical, +/obj/random/dirt_75, +/obj/item/clothing/head/headmirror, +/turf/simulated/floor/tiled/white, +/area/quarantined_outpost/medbay) +"rvh" = ( +/obj/structure/bed/stool/chair{ + dir = 1 + }, +/obj/effect/floor_decal/spline/plain/black{ + dir = 9 + }, +/obj/random/dirt_75, +/turf/simulated/floor/tiled/dark/full, +/area/quarantined_outpost/reception) +"rvB" = ( +/obj/effect/floor_decal/industrial/warning/dust{ + dir = 6 + }, +/obj/random/dirt_75, +/obj/random/dirt_75, +/turf/simulated/floor/plating/asteroid/airless, +/area/quarantined_outpost/exterior) +"rvV" = ( +/obj/effect/floor_decal/industrial/warning, +/obj/structure/filler, +/obj/effect/decal/rolling_fog, +/turf/simulated/floor/reinforced, +/area/quarantined_outpost/research) +"rwc" = ( +/obj/abstract/footprint_spawner/body, +/obj/random/dirt_75, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 4 + }, +/turf/simulated/floor/tiled/airless, +/area/quarantined_outpost/security) +"rwS" = ( +/obj/effect/decal/cleanable/generic, +/turf/simulated/floor/tiled/rust, +/area/quarantined_outpost/dorm_hallway) +"rxS" = ( +/obj/effect/floor_decal/corner/yellow, +/obj/structure/table/rack, +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/item/stack/material/glass{ + amount = 50; + pixel_y = 4 + }, +/obj/item/stack/rods/full, +/obj/item/stack/material/glass/phoronrglass{ + amount = 20; + pixel_y = 4 + }, +/turf/simulated/floor/tiled/gunmetal, +/area/quarantined_outpost/engineering) +"rye" = ( +/obj/random/dirt_75, +/obj/random/dirt_75, +/obj/random/dirt_75, +/obj/random/dirt_75, +/turf/simulated/floor/plating/asteroid/airless, +/area/quarantined_outpost/exterior) +"ryh" = ( +/obj/effect/floor_decal/spline/plain/black{ + dir = 4 + }, +/obj/effect/decal/cleanable/floor_damage/rust, +/turf/simulated/floor/tiled/ridged, +/area/quarantined_outpost/extraction_lab) +"ryF" = ( +/obj/effect/floor_decal/industrial/outline_door/yellow, +/obj/structure/table/standard/flipped, +/turf/simulated/floor/tiled, +/area/quarantined_outpost/cafeteria) +"ryP" = ( +/obj/effect/floor_decal/industrial/outline/research, +/obj/item/material/stool/chair{ + pixel_y = -6; + pixel_x = 5 + }, +/obj/random/dirt_75, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/quarantined_outpost/research) +"ryU" = ( +/obj/effect/floor_decal/corner_wide/paleblue/full{ + dir = 1 + }, +/obj/structure/flora/pottedplant/dead2, +/obj/structure/extinguisher_cabinet/north, +/turf/simulated/floor/tiled/airless, +/area/quarantined_outpost/security) +"rzi" = ( +/obj/structure/bed/stool/chair/folding, +/obj/effect/floor_decal/corner/lime{ + dir = 10 + }, +/obj/random/dirt_75, +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/simulated/floor/tiled, +/area/quarantined_outpost/cafeteria) +"rzC" = ( +/obj/machinery/shower{ + dir = 1; + pixel_y = -8 + }, +/obj/effect/floor_decal/corner/red/full{ + dir = 4 + }, +/obj/effect/floor_decal/concrete/gutter/corner, +/obj/structure/platform_deco/dark{ + dir = 8 + }, +/turf/simulated/floor/tiled/dark, +/area/quarantined_outpost/research) +"rAi" = ( +/obj/effect/floor_decal/concrete/gutter, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/machinery/shower{ + pixel_y = 24 + }, +/obj/structure/curtain/open/shower, +/obj/random/dirt_75, +/turf/simulated/floor/marble, +/area/quarantined_outpost/gym) +"rAL" = ( +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/random/dirt_75, +/obj/random/dirt_75, +/obj/machinery/atmospherics/portables_connector{ + dir = 1 + }, +/obj/machinery/portable_atmospherics/canister/air/airlock, +/obj/machinery/door/window/eastright{ + dir = 1 + }, +/turf/simulated/floor/tiled/dark/full/airless, +/area/quarantined_outpost/entrance_lobby) +"rBa" = ( +/obj/machinery/light/small/emergency, +/turf/simulated/floor/plating, +/area/quarantined_outpost/elevator_hallway) +"rBd" = ( +/obj/structure/bed/stool/chair/office/dark{ + dir = 4 + }, +/obj/effect/floor_decal/industrial/outline_straight/yellow{ + dir = 4 + }, +/obj/effect/decal/rolling_fog, +/turf/simulated/floor/tiled/dark, +/area/quarantined_outpost/research) +"rBi" = ( +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 10 + }, +/obj/machinery/light/small/maybe_broken/decayed{ + dir = 1 + }, +/obj/random/dirt_75, +/turf/simulated/floor/plating, +/area/quarantined_outpost/medbay) +"rBt" = ( +/obj/machinery/light/floor/maybe_broken/decayed{ + dir = 1 + }, +/obj/random/dirt_75, +/obj/effect/floor_decal/industrial/outline_segment/grey{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark/full, +/area/quarantined_outpost/research) +"rBH" = ( +/obj/random/dirt_75, +/obj/structure/bed/stool/chair{ + dir = 1 + }, +/obj/effect/floor_decal/corner_wide/paleblue, +/turf/simulated/floor/tiled, +/area/quarantined_outpost/elevator_hallway) +"rCm" = ( +/obj/effect/map_effect/window_spawner/full/reinforced/firedoor, +/turf/simulated/floor/tiled/gunmetal/full, +/area/quarantined_outpost/engineering) +"rCG" = ( +/obj/effect/floor_decal/industrial/outline/security, +/obj/structure/environmental_storytelling_holopad/quarantined_outpost/greet, +/obj/item/paper/fluff/quarantined_outpost/burnt_note{ + pixel_y = 14; + pixel_x = 12 + }, +/turf/simulated/floor/tiled/dark, +/area/quarantined_outpost/entrance_lobby) +"rCJ" = ( +/obj/structure/platform_deco/ledge/dark{ + dir = 1 + }, +/turf/simulated/floor/exoplanet/abyss, +/area/quarantined_outpost/chasm) +"rCY" = ( +/obj/effect/floor_decal/corner/black/full{ + dir = 1 + }, +/obj/structure/closet/cabinet, +/obj/outfit/admin/generic, +/obj/random/loot, +/turf/simulated/floor/tiled, +/area/quarantined_outpost/dorm_hallway) +"rDl" = ( +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/machinery/portable_atmospherics/canister/empty/hydrogen/deuterium, +/turf/simulated/floor/tiled/dark/full, +/area/quarantined_outpost/research) +"rDR" = ( +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/random/dirt_75, +/obj/effect/decal/cleanable/floor_damage/rust, +/obj/machinery/mob_tracker/server_relay, +/turf/simulated/floor/tiled/ridged, +/area/quarantined_outpost/server_relay/north_west) +"rEx" = ( +/obj/structure/cable{ + 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/full, +/area/quarantined_outpost/cargo_bay) +"rEF" = ( +/obj/machinery/computer/terminal/inactive{ + dir = 4 + }, +/obj/effect/floor_decal/spline/plain/cee/black, +/turf/simulated/floor/carpet/rubber, +/area/quarantined_outpost/engineering/winch_room) +"rEH" = ( +/obj/abstract/footprint_spawner{ + dir = 1 + }, +/turf/simulated/floor/tiled/dark, +/area/quarantined_outpost/research) +"rEI" = ( +/obj/effect/floor_decal/corner/dark_blue{ + dir = 9 + }, +/obj/random/dirt_75, +/turf/simulated/floor/tiled, +/area/quarantined_outpost/elevator_hallway) +"rEV" = ( +/obj/machinery/conveyor{ + dir = 1 + }, +/obj/structure/plasticflaps, +/obj/machinery/door/firedoor{ + dir = 1 + }, +/turf/simulated/floor/tiled/dark/full, +/area/quarantined_outpost/cargo_bay) +"rFg" = ( +/obj/effect/decal/rolling_fog, +/turf/simulated/floor/tiled/ramp{ + dir = 8 + }, +/area/quarantined_outpost/research) +"rFx" = ( +/obj/structure/platform{ + dir = 4 + }, +/obj/effect/floor_decal/corner/black{ + dir = 9 + }, +/obj/structure/bed/stool/chair{ + dir = 1 + }, +/turf/simulated/floor/tiled/dark, +/area/quarantined_outpost/entrance_lobby) +"rFF" = ( +/obj/effect/floor_decal/corner/yellow{ + dir = 4 + }, +/obj/effect/floor_decal/corner/dark_blue{ + dir = 1 + }, +/obj/effect/decal/cleanable/floor_damage/rust, +/turf/simulated/floor/tiled/dark, +/area/quarantined_outpost/north_east_hallway) +"rFU" = ( +/obj/effect/floor_decal/corner/mauve{ + dir = 10 + }, +/obj/random/dirt_75, +/obj/random/dirt_75, +/obj/structure/sign/flag/sol/old{ + pixel_y = -32 + }, +/obj/effect/decal/cleanable/floor_damage/rust, +/turf/simulated/floor/tiled/white, +/area/quarantined_outpost/extraction_lab) +"rGp" = ( +/obj/effect/floor_decal/spline/plain/black, +/obj/effect/floor_decal/industrial/outline/grey, +/obj/structure/table/standard, +/obj/random/loot, +/turf/simulated/floor/tiled/dark/full, +/area/quarantined_outpost/elevator_hallway) +"rGC" = ( +/obj/structure/platform{ + dir = 1 + }, +/turf/simulated/floor/exoplanet/basalt, +/area/quarantined_outpost/research) +"rGP" = ( +/obj/effect/floor_decal/corner_wide/paleblue{ + dir = 5 + }, +/obj/structure/railing/mapped{ + dir = 8 + }, +/obj/machinery/papershredder{ + pixel_x = -4; + pixel_y = -1 + }, +/obj/random/dirt_75, +/obj/machinery/light/maybe_broken/decayed{ + dir = 1 + }, +/turf/simulated/floor/tiled/airless, +/area/quarantined_outpost/security) +"rGZ" = ( +/obj/structure/closet/crate/trashcart, +/obj/random/junk, +/obj/random/junk, +/turf/simulated/floor/plating, +/area/quarantined_outpost/elevator_hallway/maintenance) +"rHi" = ( +/obj/structure/table/rack, +/obj/effect/floor_decal/corner/dark_blue, +/obj/effect/floor_decal/corner/yellow{ + dir = 8 + }, +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/random/tech_supply, +/obj/random/tech_supply, +/turf/simulated/floor/tiled/dark, +/area/quarantined_outpost/engineering/atmospherics) +"rHo" = ( +/obj/structure/lattice/catwalk/indoor, +/obj/structure/sign/nosmoking_1{ + pixel_x = -32 + }, +/obj/machinery/mining/brace{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/quarantined_outpost/engineering/atmospherics) +"rHr" = ( +/obj/effect/floor_decal/corner/dark_blue{ + dir = 10 + }, +/obj/random/dirt_75, +/obj/structure/cable{ + icon_state = "1-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/turf/simulated/floor/tiled, +/area/quarantined_outpost/north_east_hallway) +"rHt" = ( +/obj/effect/floor_decal/corner/dark_blue{ + dir = 4 + }, +/obj/random/dirt_75, +/obj/random/dirt_75, +/turf/simulated/floor/tiled, +/area/quarantined_outpost/north_east_hallway) +"rHA" = ( +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/machinery/mob_tracker/server_relay, +/turf/simulated/floor/tiled/ridged, +/area/quarantined_outpost/server_relay/north_east) +"rHZ" = ( +/obj/effect/floor_decal/corner/mauve{ + dir = 9 + }, +/obj/structure/table/standard, +/obj/structure/sign/science{ + pixel_x = -32 + }, +/turf/simulated/floor/tiled/white, +/area/quarantined_outpost/extraction_lab) +"rJc" = ( +/obj/effect/floor_decal/corner/brown{ + dir = 10 + }, +/obj/random/dirt_75, +/obj/structure/table/standard, +/obj/random/survival_weapon, +/turf/simulated/floor/tiled/dark, +/area/quarantined_outpost/cargo_bay) +"rJn" = ( +/obj/random/dirt_75, +/turf/simulated/floor/plating, +/area/quarantined_outpost/medbay) +"rJy" = ( +/obj/effect/decal/cleanable/cobweb2, +/obj/machinery/vending/coffee, +/obj/effect/floor_decal/industrial/outline/grey, +/turf/simulated/floor/tiled/dark/full, +/area/quarantined_outpost/cafeteria) +"rJA" = ( +/obj/effect/floor_decal/corner/yellow{ + dir = 8 + }, +/obj/effect/floor_decal/corner/dark_blue, +/obj/structure/bed/stool/chair{ + dir = 1 + }, +/obj/random/dirt_75, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 1 + }, +/turf/simulated/floor/tiled/gunmetal, +/area/quarantined_outpost/north_east_hallway) +"rJU" = ( +/turf/simulated/floor/plating, +/area/quarantined_outpost/engineering/tunnel) +"rKi" = ( +/obj/structure/bed/stool/chair/folding{ + dir = 4 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 8 + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/simulated/floor/tiled, +/area/quarantined_outpost/cargo_bay) +"rKD" = ( +/obj/structure/platform{ + dir = 4 + }, +/obj/structure/bed/stool/chair, +/obj/effect/floor_decal/corner/black/full{ + dir = 1 + }, +/obj/effect/floor_decal/corner/black{ + dir = 8 + }, +/obj/structure/sign/flag/sol/old/large/north{ + pixel_y = 32 + }, +/turf/simulated/floor/tiled/dark, +/area/quarantined_outpost/entrance_lobby) +"rKF" = ( +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/machinery/vending/snack, +/turf/simulated/floor/tiled/dark/full, +/area/quarantined_outpost/dorm_hallway) +"rKO" = ( +/obj/structure/lattice/catwalk, +/turf/simulated/floor/exoplanet/abyss, +/area/quarantined_outpost/entrance_maintenance) +"rKW" = ( +/obj/effect/floor_decal/industrial/outline/operations, +/obj/structure/closet, +/obj/random/dirt_75, +/obj/random/loot, +/turf/simulated/floor/tiled/dark/full, +/area/quarantined_outpost/cargo_bay) +"rLp" = ( +/obj/effect/floor_decal/corner/mauve/full{ + dir = 8 + }, +/obj/effect/floor_decal/corner/mauve, +/obj/machinery/light/small/floor/emergency, +/obj/random/dirt_75, +/obj/random/dirt_75, +/turf/simulated/floor/tiled/white, +/area/quarantined_outpost/extraction_lab) +"rLz" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/effect/decal/cleanable/floor_damage/random_broken, +/obj/effect/decal/cleanable/molten_item, +/turf/simulated/floor/tiled/gunmetal, +/area/quarantined_outpost/engineering) +"rMm" = ( +/obj/effect/floor_decal/corner_wide/lime{ + dir = 5 + }, +/obj/machinery/vending/wallmed2{ + pixel_y = 32 + }, +/obj/random/dirt_75, +/obj/effect/landmark/quarantined_outpost/canister_spawn, +/turf/simulated/floor/tiled/white, +/area/quarantined_outpost/medbay) +"rMn" = ( +/obj/structure/lattice/catwalk/indoor/grate/dark, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/simulated/floor/plating, +/area/quarantined_outpost/north_east_hallway) +"rMx" = ( +/obj/effect/floor_decal/corner/dark_blue, +/obj/effect/floor_decal/corner/yellow{ + dir = 8 + }, +/obj/random/dirt_75, +/obj/machinery/power/apc/south, +/obj/structure/cable, +/turf/simulated/floor/tiled/dark, +/area/quarantined_outpost/engineering/atmospherics) +"rPe" = ( +/obj/structure/table/standard, +/obj/effect/floor_decal/corner/mauve{ + dir = 5 + }, +/obj/item/book/manual/materials_chemistry_analysis, +/obj/machinery/light/broken{ + dir = 1 + }, +/obj/random/dirt_75, +/turf/simulated/floor/tiled/white, +/area/quarantined_outpost/extraction_lab) +"rPo" = ( +/obj/structure/platform{ + dir = 4 + }, +/obj/effect/floor_decal/corner/black{ + dir = 9 + }, +/obj/structure/table/glass, +/turf/simulated/floor/tiled/dark, +/area/quarantined_outpost/entrance_lobby) +"rQc" = ( +/obj/effect/floor_decal/corner/brown{ + dir = 10 + }, +/obj/structure/railing/mapped{ + dir = 8 + }, +/obj/structure/railing/mapped{ + dir = 8 + }, +/obj/random/dirt_75, +/obj/effect/decal/cleanable/floor_damage/rust, +/turf/simulated/floor/tiled, +/area/quarantined_outpost/cargo_bay) +"rQp" = ( +/obj/structure/flora/rock/pile/random, +/turf/simulated/floor/exoplanet/basalt, +/area/quarantined_outpost/cafeteria/maintenance) +"rQE" = ( +/turf/simulated/floor/exoplanet/basalt, +/area/quarantined_outpost/cafeteria/maintenance) +"rRd" = ( +/obj/structure/railing/mapped{ + dir = 4 + }, +/obj/structure/railing/mapped, +/obj/structure/flora/rock/pile/random, +/turf/simulated/floor/exoplanet/asteroid/ash/rocky, +/area/quarantined_outpost/exterior) +"rRg" = ( +/obj/effect/floor_decal/industrial/hatch/yellow, +/obj/machinery/door/firedoor, +/obj/random/dirt_75, +/obj/random/dirt_75, +/turf/simulated/floor/tiled/full, +/area/quarantined_outpost/cargo_bay) +"rRL" = ( +/obj/machinery/floodlight/randomcharge{ + dir = 4 + }, +/turf/simulated/floor/exoplanet/asteroid/ash/rocky, +/area/quarantined_outpost/exterior) +"rSg" = ( +/obj/structure/lattice/catwalk/indoor/grate, +/obj/machinery/light/small/maybe_broken/decayed, +/turf/simulated/floor/plating, +/area/quarantined_outpost/cargo_bay) +"rSs" = ( +/obj/structure/table/reinforced/steel, +/obj/item/material/shard{ + pixel_x = 5; + pixel_y = -7 + }, +/obj/item/device/flashlight/maglight{ + pixel_y = 10; + pixel_x = -3 + }, +/turf/simulated/floor/tiled/dark/full, +/area/quarantined_outpost/reception) +"rSC" = ( +/obj/effect/floor_decal/corner/brown, +/obj/structure/railing/mapped{ + dir = 8 + }, +/obj/random/dirt_75, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/quarantined_outpost/cargo_bay) +"rST" = ( +/obj/effect/floor_decal/corner_wide/lime{ + dir = 9 + }, +/obj/structure/table/wood, +/obj/effect/floor_decal/corner_wide/lime, +/obj/item/paper_bin{ + pixel_y = 4 + }, +/turf/simulated/floor/tiled/white, +/area/quarantined_outpost/medbay) +"rSV" = ( +/obj/structure/platform, +/obj/effect/decal/cleanable/floor_damage/rust, +/turf/simulated/floor/tiled/ridged, +/area/quarantined_outpost/extraction_lab) +"rTo" = ( +/obj/effect/floor_decal/industrial/outline_door/grey{ + dir = 1 + }, +/obj/random/dirt_75, +/obj/random/dirt_75, +/turf/simulated/floor/tiled/rust, +/area/quarantined_outpost/elevator_hallway) +"rTq" = ( +/obj/structure/lattice/catwalk, +/obj/structure/railing/mapped{ + dir = 1 + }, +/obj/structure/railing/mapped{ + dir = 4 + }, +/turf/simulated/floor/exoplanet/abyss, +/area/quarantined_outpost/chasm) +"rTy" = ( +/obj/effect/floor_decal/corner_wide/paleblue/full{ + dir = 4 + }, +/obj/effect/decal/cleanable/floor_damage/random_broken, +/obj/random/dirt_75, +/obj/random/junk, +/turf/simulated/floor/tiled/airless, +/area/quarantined_outpost/security) +"rTZ" = ( +/obj/abstract/footprint_spawner/body{ + dir = 8 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/simulated/floor/plating, +/area/quarantined_outpost/entrance_maintenance) +"rUb" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/obj/random/dirt_75, +/obj/random/maintenance_junk_or_loot, +/turf/simulated/floor/plating, +/area/quarantined_outpost/cargo_bay) +"rUj" = ( +/obj/structure/lattice/catwalk/indoor/grate, +/obj/random/dirt_75, +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/simulated/floor/plating, +/area/quarantined_outpost/cafeteria) +"rUl" = ( +/obj/structure/bed/stool/chair/office/dark{ + dir = 4 + }, +/obj/effect/floor_decal/corner/yellow{ + dir = 6 + }, +/turf/simulated/floor/tiled/gunmetal, +/area/quarantined_outpost/engineering) +"rUI" = ( +/obj/effect/floor_decal/corner/black{ + dir = 6 + }, +/obj/random/dirt_75, +/obj/random/junk, +/turf/simulated/floor/tiled, +/area/quarantined_outpost/dorm_hallway) +"rVh" = ( +/obj/effect/map_effect/window_spawner/full/reinforced/firedoor, +/turf/simulated/floor/tiled/full, +/area/quarantined_outpost/cafeteria) +"rVl" = ( +/obj/random/maintenance_junk_or_loot, +/turf/simulated/floor/plating, +/area/quarantined_outpost/elevator_hallway) +"rVz" = ( +/obj/structure/table/wood, +/obj/effect/floor_decal/corner_wide/lime{ + dir = 10 + }, +/obj/effect/floor_decal/corner_wide/lime{ + dir = 1 + }, +/obj/item/paper_bin{ + pixel_y = 4 + }, +/obj/effect/decal/cleanable/floor_damage/rust, +/turf/simulated/floor/tiled/white, +/area/quarantined_outpost/medbay) +"rVN" = ( +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 9 + }, +/turf/simulated/wall/r_wall, +/area/quarantined_outpost/engineering/atmospherics) +"rVO" = ( +/obj/effect/floor_decal/corner/dark_blue{ + dir = 10 + }, +/obj/random/dirt_75, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/turf/simulated/floor/tiled, +/area/quarantined_outpost/elevator_hallway) +"rWz" = ( +/obj/effect/floor_decal/spline/plain/black, +/obj/effect/floor_decal/industrial/outline/firefighting_closet, +/obj/structure/closet/firecloset, +/turf/simulated/floor/tiled/dark/full, +/area/quarantined_outpost/elevator_hallway) +"rWW" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled/gunmetal/full, +/area/quarantined_outpost/engineering/tunnel) +"rWY" = ( +/obj/structure/lattice/catwalk/indoor/grate/dark, +/obj/machinery/light/small/emergency{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/quarantined_outpost/gym) +"rXJ" = ( +/obj/structure/bed/stool/padded/red{ + dir = 1 + }, +/turf/simulated/floor/carpet/rubber, +/area/quarantined_outpost/gym) +"rYf" = ( +/obj/effect/floor_decal/industrial/outline_door/custodial{ + dir = 4 + }, +/obj/effect/floor_decal/industrial/outline_segment/research{ + dir = 6 + }, +/obj/effect/floor_decal/industrial/outline_segment/research{ + dir = 1 + }, +/obj/structure/sign/biohazard{ + pixel_y = -32 + }, +/obj/effect/decal/cleanable/floor_damage/rust, +/turf/simulated/floor/tiled/light, +/area/quarantined_outpost/research) +"rYg" = ( +/obj/random/dirt_75, +/obj/machinery/power/apc/west, +/obj/effect/floor_decal/corner/yellow{ + dir = 9 + }, +/obj/structure/cable{ + icon_state = "0-4" + }, +/turf/simulated/floor/tiled/gunmetal, +/area/quarantined_outpost/engineering) +"rZh" = ( +/obj/structure/table/standard, +/obj/random/junk, +/obj/effect/floor_decal/corner/yellow/full{ + dir = 8 + }, +/obj/random/dirt_75, +/obj/item/device/flashlight/heavy, +/turf/simulated/floor/tiled/gunmetal, +/area/quarantined_outpost/engineering) +"rZl" = ( +/obj/structure/tank_wall/oxygen{ + density = 0; + icon_state = "o2-5"; + opacity = 0 + }, +/obj/machinery/atmospherics/portables_connector{ + dir = 8 + }, +/obj/machinery/portable_atmospherics/canister/oxygen, +/turf/simulated/floor/reinforced, +/area/quarantined_outpost/engineering/atmospherics) +"rZo" = ( +/obj/effect/decal/cleanable/floor_damage/rust, +/obj/effect/decal/rolling_fog, +/turf/simulated/floor/tiled/dark, +/area/quarantined_outpost/research) +"saQ" = ( +/obj/random/dirt_75, +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/simulated/floor/carpet/rubber, +/area/quarantined_outpost/gym) +"saY" = ( +/obj/random/survival_weapon, +/turf/simulated/floor/tiled/dark/full, +/area/quarantined_outpost/engineering/winch_room) +"sbx" = ( +/obj/effect/floor_decal/corner/mauve{ + dir = 9 + }, +/obj/structure/railing/mapped{ + dir = 1 + }, +/obj/effect/decal/cleanable/floor_damage/rust, +/turf/simulated/floor/tiled/light, +/area/quarantined_outpost/research) +"scw" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/obj/machinery/meter, +/obj/machinery/atmospherics/pipe/manifold/visible/green, +/turf/simulated/floor/plating, +/area/quarantined_outpost/engineering/atmospherics) +"scK" = ( +/obj/structure/platform_deco{ + dir = 1 + }, +/obj/random/dirt_75, +/obj/effect/decal/cleanable/blood, +/turf/simulated/floor/tiled/ridged, +/area/quarantined_outpost/extraction_lab) +"scP" = ( +/obj/effect/floor_decal/corner_wide/paleblue{ + dir = 10 + }, +/obj/structure/closet/walllocker/secure{ + pixel_y = -32 + }, +/obj/random/loot, +/obj/random/dirt_75, +/turf/simulated/floor/tiled/airless, +/area/quarantined_outpost/security) +"sdo" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/turf/simulated/floor/tiled/dark, +/area/quarantined_outpost/research) +"seu" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/quarantined_outpost/elevator_hallway) +"sfj" = ( +/obj/structure/weapons_rack, +/obj/structure/sign/flag/sol/old{ + pixel_y = 32 + }, +/obj/item/gun/energy/retro, +/obj/item/gun/energy/retro, +/obj/item/gun/energy/rifle/laser{ + desc_extended = null; + desc = "A laser weapon, designed to kill with concentrated energy blasts." + }, +/turf/simulated/floor/tiled/dark/full/airless, +/area/quarantined_outpost/security) +"sfF" = ( +/obj/random/dirt_75, +/turf/simulated/floor/tiled, +/area/quarantined_outpost/engineering/tunnel) +"sfO" = ( +/obj/effect/floor_decal/corner/yellow{ + dir = 8 + }, +/obj/effect/floor_decal/corner/dark_blue, +/obj/random/dirt_75, +/obj/effect/decal/cleanable/floor_damage/rust, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/extinguisher_cabinet/south, +/turf/simulated/floor/tiled/dark, +/area/quarantined_outpost/engineering/atmospherics) +"sfU" = ( +/obj/structure/chainlink_fence, +/obj/structure/lattice/catwalk, +/turf/simulated/floor/exoplanet/basalt, +/area/quarantined_outpost/engineering/tunnel) +"sfX" = ( +/obj/item/hullbeacon/red, +/obj/random/dirt_75, +/turf/simulated/floor/plating/asteroid/airless, +/area/quarantined_outpost/exterior) +"sgl" = ( +/obj/effect/floor_decal/industrial/outline_door/red{ + dir = 8 + }, +/obj/effect/floor_decal/industrial/outline_segment/red{ + dir = 9 + }, +/obj/random/dirt_75, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, +/turf/simulated/floor/tiled/gunmetal, +/area/quarantined_outpost/north_east_hallway) +"sgz" = ( +/obj/structure/lattice/catwalk/indoor/grate/dark, +/obj/structure/closet/crate/miningcart, +/obj/random/junk, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/quarantined_outpost/engineering/winch_room) +"sgP" = ( +/obj/machinery/door/airlock/maintenance_hatch{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/quarantined_outpost/cargo_bay) +"shb" = ( +/obj/effect/floor_decal/corner/dark_blue{ + dir = 9 + }, +/obj/structure/bed/stool/chair/sofa/brown{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/quarantined_outpost/entrance_lobby) +"shi" = ( +/obj/effect/floor_decal/industrial/outline_straight/custodial{ + dir = 5 + }, +/obj/abstract/footprint_spawner{ + dir = 1 + }, +/turf/simulated/floor/tiled/light, +/area/quarantined_outpost/research) +"shS" = ( +/obj/structure/table/standard, +/obj/effect/floor_decal/corner_wide/paleblue{ + dir = 5 + }, +/obj/machinery/chemical_dispenser/coffeemaster/full{ + pixel_y = 12 + }, +/turf/simulated/floor/tiled/airless, +/area/quarantined_outpost/security) +"shW" = ( +/obj/random/dirt_75, +/obj/random/dirt_75, +/turf/simulated/floor/tiled, +/area/quarantined_outpost/elevator_hallway) +"sid" = ( +/obj/effect/floor_decal/corner/mauve/full, +/obj/structure/structural_support, +/obj/effect/decal/cleanable/floor_damage/rust, +/turf/simulated/floor/tiled/light, +/area/quarantined_outpost/research) +"sik" = ( +/turf/simulated/floor/tiled/full, +/area/quarantined_outpost/elevator_hallway) +"six" = ( +/obj/random/dirt_75, +/obj/structure/cable{ + icon_state = "2-8" + }, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/effect/landmark/trapped_vent/maybe/quarantined_outpost, +/turf/simulated/floor/tiled/dark/full, +/area/quarantined_outpost/research/containment) +"siE" = ( +/obj/structure/railing/mapped{ + dir = 1 + }, +/obj/effect/floor_decal/spline/plain/black{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/quarantined_outpost/cafeteria) +"siF" = ( +/obj/effect/floor_decal/corner/mauve/full, +/obj/effect/floor_decal/corner/mauve{ + dir = 4 + }, +/obj/machinery/light/small/floor/emergency, +/obj/structure/filingcabinet/filingcabinet, +/obj/structure/filingcabinet/filingcabinet{ + pixel_x = -10 + }, +/obj/structure/filingcabinet/filingcabinet{ + pixel_x = 10 + }, +/obj/random/dirt_75, +/turf/simulated/floor/tiled/white, +/area/quarantined_outpost/extraction_lab) +"siK" = ( +/obj/machinery/computer/terminal/inactive, +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/effect/decal/cleanable/cobweb, +/turf/simulated/floor/tiled/gunmetal/full, +/area/quarantined_outpost/engineering) +"siR" = ( +/obj/effect/floor_decal/corner/dark_blue{ + dir = 8 + }, +/obj/random/dirt_75, +/turf/simulated/floor/tiled, +/area/quarantined_outpost/dorm_hallway) +"siW" = ( +/obj/effect/floor_decal/corner/dark_blue{ + dir = 10 + }, +/obj/random/dirt_75, +/obj/random/dirt_75, +/obj/structure/bed/stool/chair{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/quarantined_outpost/elevator_hallway) +"sjg" = ( +/obj/machinery/door/airlock/glass_mining{ + dir = 1; + name = "Manager's Office" + }, +/obj/machinery/door/firedoor, +/obj/effect/floor_decal/industrial/hatch_door/yellow{ + dir = 1 + }, +/turf/simulated/floor/tiled/dark/full, +/area/quarantined_outpost/cargo_bay) +"sju" = ( +/obj/effect/map_effect/window_spawner/full/reinforced/firedoor, +/turf/simulated/floor/tiled/gunmetal/full, +/area/quarantined_outpost/server_relay/north_east) +"sjC" = ( +/obj/structure/platform/dark{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/universal, +/obj/effect/floor_decal/industrial/outline_straight/yellow{ + dir = 1 + }, +/obj/effect/decal/cleanable/floor_damage/rust, +/obj/effect/decal/rolling_fog, +/turf/simulated/floor/plating, +/area/quarantined_outpost/research) +"sjJ" = ( +/obj/structure/platform_stairs/full/south_north_cap{ + dir = 1 + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/simulated/floor/exoplanet/basalt, +/area/quarantined_outpost/north_east_hallway) +"sjP" = ( +/obj/machinery/portable_atmospherics/canister/hydrogen, +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/effect/floor_decal/industrial/warning{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/quarantined_outpost/engineering/atmospherics) +"sjS" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/random/dirt_75, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/effect/landmark/quarantined_outpost/creature, +/turf/simulated/floor/tiled/dark, +/area/quarantined_outpost/engineering/atmospherics) +"skv" = ( +/obj/effect/decal/cleanable/floor_damage/random_broken, +/obj/effect/decal/cleanable/molten_item, +/obj/random/dirt_75, +/turf/simulated/floor/plating, +/area/quarantined_outpost/cafeteria/maintenance) +"skP" = ( +/obj/structure/lattice/catwalk/indoor/grate/dark, +/obj/abstract/footprint_spawner/body{ + dir = 1 + }, +/obj/structure/cable{ + icon_state = "2-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 + }, +/turf/simulated/floor/plating, +/area/quarantined_outpost/engineering) +"sla" = ( +/obj/item/material/shard{ + pixel_y = -4; + pixel_x = 4 + }, +/obj/effect/decal/cleanable/floor_damage/random_broken, +/obj/abstract/footprint_spawner/body{ + dir = 8 + }, +/turf/simulated/floor/tiled/dark/full, +/area/quarantined_outpost/research) +"smn" = ( +/obj/effect/floor_decal/corner_wide/paleblue{ + dir = 10 + }, +/obj/random/dirt_75, +/obj/machinery/alarm/south, +/turf/simulated/floor/tiled/airless, +/area/quarantined_outpost/security) +"smB" = ( +/obj/machinery/conveyor{ + dir = 8 + }, +/obj/effect/floor_decal/industrial/hatch/yellow, +/turf/simulated/floor/tiled/full, +/area/quarantined_outpost/cargo_bay) +"snn" = ( +/obj/structure/lattice/catwalk/indoor/grate/light, +/obj/structure/cable{ + 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/quarantined_outpost/research) +"snq" = ( +/obj/structure/platform{ + dir = 1 + }, +/obj/effect/floor_decal/corner/grey{ + dir = 6 + }, +/obj/random/dirt_75, +/obj/random/dirt_75, +/obj/structure/railing/mapped, +/turf/simulated/floor/tiled/dark, +/area/quarantined_outpost/research) +"snC" = ( +/obj/effect/floor_decal/spline/plain/black{ + dir = 8 + }, +/obj/machinery/light/small/maybe_broken/decayed{ + dir = 8 + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on, +/turf/simulated/floor/tiled/gunmetal, +/area/quarantined_outpost/north_east_hallway) +"snL" = ( +/obj/effect/floor_decal/spline/plain/black, +/obj/random/dirt_75, +/obj/random/dirt_75, +/obj/effect/decal/cleanable/floor_damage/rust, +/turf/simulated/floor/tiled/gunmetal, +/area/quarantined_outpost/engineering/tunnel) +"snQ" = ( +/obj/item/paper/fluff/quarantined_outpost/engineers_note{ + pixel_y = -7; + pixel_x = -9 + }, +/obj/random/dirt_75, +/obj/random/dirt_75, +/turf/simulated/floor/exoplanet/asteroid/ash/rocky, +/area/quarantined_outpost/exterior) +"soc" = ( +/obj/effect/floor_decal/corner/dark_blue{ + dir = 9 + }, +/obj/machinery/light/maybe_broken/decayed{ + dir = 8 + }, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 4 + }, +/obj/effect/landmark/trapped_vent/maybe/quarantined_outpost, +/turf/simulated/floor/tiled, +/area/quarantined_outpost/elevator_hallway) +"soj" = ( +/obj/structure/table/rack/retail_shelf, +/obj/item/reagent_containers/glass/bottle/bicaridine{ + pixel_y = 16; + pixel_x = -3 + }, +/obj/item/reagent_containers/glass/bottle/coagzolug{ + pixel_x = -9 + }, +/obj/item/reagent_containers/glass/bottle/mortaphenyl{ + pixel_y = -6; + pixel_x = 8 + }, +/turf/simulated/floor/tiled/freezer{ + name = "cooled tiles"; + temperature = 253.15 + }, +/area/quarantined_outpost/medbay) +"sqa" = ( +/obj/effect/floor_decal/corner/dark_blue{ + dir = 10 + }, +/turf/simulated/floor/tiled, +/area/quarantined_outpost/cafeteria) +"sqk" = ( +/obj/effect/floor_decal/industrial/outline_straight/grey{ + dir = 4 + }, +/turf/simulated/floor/tiled/ridged, +/area/quarantined_outpost/research) +"sqv" = ( +/obj/effect/floor_decal/corner/dark_blue{ + dir = 10 + }, +/obj/structure/flora/pottedplant/dead2{ + pixel_y = 3 + }, +/obj/structure/sign/poster{ + pixel_y = -32 + }, +/obj/random/dirt_75, +/turf/simulated/floor/tiled, +/area/quarantined_outpost/reception) +"sqI" = ( +/obj/effect/floor_decal/corner/dark_blue{ + dir = 5 + }, +/obj/random/dirt_75, +/obj/random/dirt_75, +/obj/random/maintenance_junk_or_loot, +/turf/simulated/floor/tiled, +/area/quarantined_outpost/elevator_hallway) +"sqP" = ( +/obj/effect/floor_decal/corner/lime{ + dir = 8 + }, +/obj/random/dirt_75, +/obj/effect/landmark/quarantined_outpost/creature, +/turf/simulated/floor/tiled, +/area/quarantined_outpost/cafeteria) +"sqS" = ( +/obj/effect/floor_decal/corner/mauve{ + dir = 1 + }, +/turf/simulated/floor/tiled/light, +/area/quarantined_outpost/research) +"srx" = ( +/obj/structure/lattice/catwalk, +/obj/abstract/footprint_spawner/body{ + dir = 1 + }, +/turf/simulated/floor/exoplanet/basalt, +/area/quarantined_outpost/cafeteria/maintenance) +"srQ" = ( +/obj/effect/floor_decal/corner/mauve{ + dir = 9 + }, +/obj/effect/decal/cleanable/floor_damage/rust, +/turf/simulated/floor/tiled/white, +/area/quarantined_outpost/extraction_lab) +"ssj" = ( +/obj/effect/floor_decal/industrial/outline_door/yellow, +/obj/random/dirt_75, +/obj/structure/table/standard/flipped, +/turf/simulated/floor/tiled, +/area/quarantined_outpost/cafeteria) +"ssp" = ( +/obj/structure/platform/ledge/dark{ + dir = 4 + }, +/obj/structure/platform/ledge/dark{ + dir = 8 + }, +/obj/structure/sign/securearea{ + pixel_y = -32 + }, +/turf/simulated/floor/exoplanet/abyss, +/area/quarantined_outpost/research/containment) +"sss" = ( +/obj/effect/floor_decal/corner/dark_blue, +/obj/effect/floor_decal/corner/yellow{ + dir = 8 + }, +/obj/machinery/light/small/maybe_broken/decayed, +/turf/simulated/floor/tiled/dark, +/area/quarantined_outpost/engineering/atmospherics) +"ssy" = ( +/obj/structure/table/stone/marble, +/obj/machinery/door/firedoor{ + dir = 4 + }, +/obj/machinery/door/blast/shutters{ + dir = 8 + }, +/turf/simulated/floor/tiled/dark/full, +/area/quarantined_outpost/cafeteria) +"ssH" = ( +/obj/effect/landmark/quarantined_outpost/canister_spawn, +/turf/simulated/floor/exoplanet/basalt, +/area/quarantined_outpost/cavern/east_cavern) +"ssN" = ( +/obj/abstract/footprint_spawner/body, +/turf/simulated/floor/plating, +/area/quarantined_outpost/elevator_hallway/maintenance) +"stx" = ( +/obj/abstract/footprint_spawner/oil{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/quarantined_outpost/engineering/atmospherics) +"stM" = ( +/obj/structure/platform/ledge{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/quarantined_outpost/cargo_bay) +"stN" = ( +/obj/structure/platform{ + dir = 1 + }, +/obj/effect/decal/cleanable/floor_damage/rust, +/obj/effect/decal/cleanable/blood, +/turf/simulated/floor/tiled/ridged, +/area/quarantined_outpost/extraction_lab) +"sub" = ( +/obj/random/dirt_75, +/turf/simulated/floor/tiled/full, +/area/quarantined_outpost/dorm_hallway) +"suT" = ( +/obj/effect/floor_decal/corner/mauve{ + dir = 1 + }, +/obj/effect/decal/cleanable/floor_damage/rust, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 4 + }, +/turf/simulated/floor/tiled/light, +/area/quarantined_outpost/research) +"suU" = ( +/obj/effect/floor_decal/corner/brown{ + dir = 10 + }, +/obj/random/dirt_75, +/obj/effect/decal/cleanable/floor_damage/rust, +/turf/simulated/floor/tiled, +/area/quarantined_outpost/cargo_bay) +"svk" = ( +/obj/effect/floor_decal/corner/dark_blue{ + dir = 4 + }, +/obj/machinery/light/floor/maybe_broken/decayed{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/quarantined_outpost/dorm_hallway) +"svT" = ( +/obj/effect/floor_decal/industrial/warning, +/obj/random/dirt_75, +/turf/simulated/floor/plating, +/area/quarantined_outpost/gym) +"sww" = ( +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/effect/floor_decal/industrial/warning{ + dir = 10 + }, +/obj/structure/structural_support, +/turf/simulated/floor/plating, +/area/quarantined_outpost/engineering/atmospherics) +"sxd" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/turf/simulated/floor/tiled, +/area/quarantined_outpost/security) +"sxf" = ( +/obj/effect/floor_decal/corner/black{ + dir = 6 + }, +/obj/structure/table/standard, +/turf/simulated/floor/tiled, +/area/quarantined_outpost/dorm_hallway) +"sxs" = ( +/obj/structure/closet/body_bag, +/obj/random/dirt_75, +/obj/random/dirt_75, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 1 + }, +/turf/simulated/floor/tiled/white, +/area/quarantined_outpost/medbay) +"sxz" = ( +/obj/structure/platform{ + dir = 1 + }, +/turf/simulated/floor/tiled/ridged, +/area/quarantined_outpost/extraction_lab) +"sxJ" = ( +/obj/effect/floor_decal/industrial/outline_straight/yellow{ + dir = 1 + }, +/obj/effect/decal/cleanable/floor_damage/rust, +/obj/random/dirt_75, +/turf/simulated/floor/tiled/dark, +/area/quarantined_outpost/research) +"sxM" = ( +/obj/random/dirt_75, +/obj/effect/overmap/visitable/sector/quarantined_outpost, +/turf/simulated/floor/tiled/dark/full, +/area/quarantined_outpost/reception) +"syc" = ( +/obj/random/dirt_75, +/obj/effect/floor_decal/corner/yellow{ + dir = 9 + }, +/obj/machinery/door/airlock/glass_engineering{ + name = "Engineering Storage" + }, +/turf/simulated/floor/tiled/gunmetal, +/area/quarantined_outpost/engineering) +"szc" = ( +/obj/effect/floor_decal/corner/mauve{ + dir = 4 + }, +/obj/effect/floor_decal/spline/plain/purple{ + dir = 4 + }, +/obj/effect/decal/cleanable/floor_damage/rust, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled/light, +/area/quarantined_outpost/research) +"szv" = ( +/obj/effect/floor_decal/corner/black{ + dir = 9 + }, +/obj/structure/cable/orange{ + icon_state = "0-2" + }, +/obj/random/dirt_75, +/obj/machinery/power/apc/empty/west, +/turf/simulated/floor/tiled, +/area/quarantined_outpost/entrance_lobby) +"szA" = ( +/obj/effect/floor_decal/industrial/outline_door/yellow, +/obj/effect/floor_decal/industrial/outline_segment/yellow{ + dir = 10 + }, +/obj/effect/floor_decal/industrial/outline_segment/yellow{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark/full, +/area/quarantined_outpost/research/containment) +"sAc" = ( +/obj/effect/floor_decal/industrial/hatch/yellow, +/obj/machinery/door/firedoor/noid{ + dir = 4 + }, +/obj/structure/curtain/open/medical, +/obj/random/dirt_75, +/turf/simulated/floor/tiled/white, +/area/quarantined_outpost/medbay) +"sAv" = ( +/obj/effect/floor_decal/spline/plain/black{ + dir = 4 + }, +/obj/effect/landmark/quarantined_outpost/creature, +/turf/simulated/floor/tiled/gunmetal, +/area/quarantined_outpost/engineering/tunnel) +"sAM" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled/dark/full, +/area/quarantined_outpost/engineering/atmospherics) +"sAW" = ( +/obj/structure/bed/stool/chair/office/dark{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/quarantined_outpost/entrance_lobby) +"sBd" = ( +/obj/abstract/footprint_spawner{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/quarantined_outpost/cafeteria) +"sBl" = ( +/obj/structure/railing/mapped{ + dir = 4 + }, +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/random/dirt_75, +/obj/random/dirt_75, +/obj/structure/trash_pile, +/turf/simulated/floor/tiled/full, +/area/quarantined_outpost/cargo_bay) +"sBr" = ( +/obj/structure/table/reinforced/steel, +/obj/structure/window/reinforced, +/obj/effect/floor_decal/industrial/outline/research, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled/bitile/middle{ + dir = 4 + }, +/area/quarantined_outpost/research) +"sBH" = ( +/obj/effect/floor_decal/corner/dark_green, +/obj/random/dirt_75, +/obj/random/junk, +/turf/simulated/floor/tiled, +/area/quarantined_outpost/gym) +"sBN" = ( +/obj/structure/table/reinforced/steel, +/obj/item/folder/yellow{ + pixel_y = 6; + pixel_x = 6 + }, +/obj/item/folder/blue{ + pixel_y = 1; + pixel_x = 6 + }, +/obj/item/pen{ + pixel_x = -5 + }, +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/effect/decal/rolling_fog, +/turf/simulated/floor/tiled/dark/full, +/area/quarantined_outpost/research) +"sCw" = ( +/obj/effect/floor_decal/corner/dark_blue{ + dir = 10 + }, +/obj/structure/table/standard/flipped{ + dir = 8 + }, +/obj/random/dirt_75, +/turf/simulated/floor/tiled, +/area/quarantined_outpost/dorm_hallway) +"sEi" = ( +/obj/structure/table/standard, +/obj/random/dirt_75, +/turf/simulated/floor/plating, +/area/quarantined_outpost/gym) +"sEU" = ( +/obj/random/dirt_75, +/obj/effect/floor_decal/corner/dark_blue{ + dir = 5 + }, +/obj/structure/sign/directions/security{ + dir = 1; + pixel_y = 32 + }, +/obj/structure/sign/directions/medical{ + pixel_y = 40; + dir = 1 + }, +/obj/effect/decal/cleanable/generic, +/turf/simulated/floor/tiled, +/area/quarantined_outpost/elevator_hallway) +"sFg" = ( +/obj/random/dirt_75, +/obj/structure/structural_support, +/turf/simulated/floor/tiled/ridged, +/area/quarantined_outpost/extraction_lab) +"sFh" = ( +/obj/structure/platform_stairs/full/south_north_cap{ + dir = 8 + }, +/obj/random/dirt_75, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/gunmetal, +/area/quarantined_outpost/north_east_hallway) +"sFo" = ( +/obj/effect/floor_decal/spline/plain/black, +/obj/structure/railing/mapped, +/obj/effect/decal/cleanable/floor_damage/rust, +/turf/simulated/floor/tiled/gunmetal, +/area/quarantined_outpost/engineering/tunnel) +"sFT" = ( +/obj/effect/floor_decal/corner/dark_blue, +/obj/random/dirt_75, +/obj/machinery/light/small/maybe_broken/decayed{ + dir = 4 + }, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 8 + }, +/obj/effect/landmark/trapped_vent/maybe/quarantined_outpost, +/turf/simulated/floor/tiled/dark, +/area/quarantined_outpost/engineering/atmospherics) +"sGt" = ( +/obj/effect/decal/cleanable/cobweb, +/obj/structure/bed/stool/chair/sofa/corner/concave/brown{ + dir = 4 + }, +/obj/random/dirt_75, +/turf/simulated/floor/lino, +/area/quarantined_outpost/cafeteria) +"sGO" = ( +/turf/template_noop, +/area/space) +"sHP" = ( +/obj/machinery/conveyor{ + dir = 1 + }, +/turf/simulated/floor/tiled/dark/full, +/area/quarantined_outpost/cargo_bay) +"sIh" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/red{ + dir = 9 + }, +/obj/machinery/meter, +/turf/simulated/floor/plating, +/area/quarantined_outpost/engineering/atmospherics) +"sIm" = ( +/obj/structure/lattice/catwalk/indoor/grate/dark, +/obj/machinery/light/small/maybe_broken/decayed{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/quarantined_outpost/research) +"sIs" = ( +/obj/random/dirt_75, +/obj/structure/cable{ + 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/dark, +/area/quarantined_outpost/research) +"sIw" = ( +/obj/structure/lattice/catwalk/indoor/grate, +/turf/simulated/floor/plating, +/area/quarantined_outpost/dorm_hallway) +"sIN" = ( +/obj/effect/floor_decal/corner/dark_green/full, +/obj/effect/floor_decal/industrial/loading/medical{ + dir = 4 + }, +/obj/random/dirt_75, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/turf/simulated/floor/tiled/dark, +/area/quarantined_outpost/medbay) +"sIZ" = ( +/obj/effect/floor_decal/corner/dark_blue{ + dir = 6 + }, +/obj/effect/decal/cleanable/floor_damage/rust, +/turf/simulated/floor/tiled/dark, +/area/quarantined_outpost/research) +"sJy" = ( +/obj/effect/floor_decal/corner_wide/paleblue/full, +/obj/structure/table/standard, +/turf/simulated/floor/tiled/airless, +/area/quarantined_outpost/security) +"sJJ" = ( +/obj/effect/floor_decal/industrial/hatch/yellow, +/obj/machinery/door/firedoor, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 1 + }, +/turf/simulated/floor/tiled/full, +/area/quarantined_outpost/north_east_hallway) +"sJO" = ( +/obj/effect/floor_decal/corner_wide/paleblue/full{ + dir = 4 + }, +/obj/random/dirt_75, +/obj/effect/landmark/quarantined_outpost/canister_spawn, +/turf/simulated/floor/tiled/airless, +/area/quarantined_outpost/security) +"sJW" = ( +/obj/structure/platform_stairs/full{ + dir = 1 + }, +/obj/structure/platform{ + dir = 4 + }, +/obj/structure/platform_deco, +/obj/effect/floor_decal/industrial/outline_door/custodial{ + dir = 1 + }, +/turf/simulated/floor/tiled/dark, +/area/quarantined_outpost/research) +"sJZ" = ( +/obj/structure/table/standard, +/obj/machinery/microscope/science{ + pixel_y = 9; + pixel_x = -4 + }, +/obj/effect/floor_decal/spline/plain/black{ + dir = 1 + }, +/turf/simulated/floor/tiled/white, +/area/quarantined_outpost/extraction_lab) +"sKn" = ( +/obj/structure/lattice/catwalk/indoor/grate/damaged, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 1 + }, +/turf/simulated/floor/plating, +/area/quarantined_outpost/entrance_lobby) +"sKp" = ( +/obj/random/dirt_75, +/obj/random/dirt_75, +/obj/item/hullbeacon/red, +/obj/effect/floor_decal/industrial/warning/dust{ + dir = 1 + }, +/turf/simulated/floor/plating/asteroid/airless, +/area/quarantined_outpost/exterior) +"sKs" = ( +/obj/effect/floor_decal/spline/plain/corner/black, +/obj/item/paper/crumpled{ + pixel_x = 2; + pixel_y = -8 + }, +/obj/effect/decal/cleanable/floor_damage/rust, +/turf/simulated/floor/tiled/white, +/area/quarantined_outpost/extraction_lab) +"sKB" = ( +/obj/effect/floor_decal/spline/plain/black, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/gunmetal, +/area/quarantined_outpost/north_east_hallway) +"sKC" = ( +/obj/effect/floor_decal/corner/dark_blue{ + dir = 6 + }, +/obj/structure/table, +/obj/item/stack/material/steel{ + pixel_y = 8; + pixel_x = 4 + }, +/turf/simulated/floor/tiled, +/area/quarantined_outpost/elevator_hallway) +"sKD" = ( +/obj/effect/floor_decal/industrial/hatch/yellow, +/obj/machinery/door/firedoor{ + dir = 4 + }, +/obj/random/dirt_75, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled/gunmetal/full, +/area/quarantined_outpost/cafeteria) +"sKZ" = ( +/obj/structure/table/wood, +/obj/effect/floor_decal/corner_wide/lime/diagonal, +/obj/item/clothing/accessory/stethoscope, +/turf/simulated/floor/tiled/white, +/area/quarantined_outpost/medbay) +"sLU" = ( +/obj/effect/floor_decal/corner/yellow{ + dir = 9 + }, +/obj/random/dirt_75, +/obj/random/dirt_75, +/obj/effect/decal/cleanable/floor_damage/rust, +/turf/simulated/floor/tiled, +/area/quarantined_outpost/engineering) +"sMf" = ( +/obj/structure/cable{ + icon_state = "2-8" + }, +/obj/structure/cable/orange{ + icon_state = "1-8" + }, +/obj/item/stack/tile/floor{ + pixel_x = 9; + pixel_y = -6 + }, +/turf/simulated/floor/plating, +/area/quarantined_outpost/engineering) +"sMD" = ( +/obj/random/dirt_75, +/obj/random/dirt_75, +/turf/simulated/floor/tiled/white, +/area/quarantined_outpost/medbay) +"sNz" = ( +/obj/structure/railing/mapped{ + dir = 8 + }, +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/structure/closet/secure_closet/guncabinet, +/obj/item/storage/box/shotgunshells, +/obj/item/storage/box/shotgunshells, +/obj/item/ammo_magazine/c762/sol, +/obj/item/ammo_magazine/c762/sol, +/obj/item/ammo_magazine/c762/sol, +/obj/item/ammo_magazine/c762/sol, +/obj/item/ammo_magazine/c762/sol, +/obj/item/ammo_magazine/c762/sol, +/obj/item/ammo_magazine/c762/sol, +/obj/item/storage/box/shotgunshells, +/turf/simulated/floor/tiled/dark/full/airless, +/area/quarantined_outpost/security) +"sOv" = ( +/obj/effect/floor_decal/industrial/hatch_door/research{ + dir = 8 + }, +/obj/machinery/door/firedoor, +/obj/structure/plasticflaps/airtight, +/obj/machinery/door/blast/regular{ + dir = 4; + name = "High Security Vault" + }, +/turf/simulated/floor/tiled/dark/full, +/area/quarantined_outpost/research) +"sOF" = ( +/obj/structure/platform{ + dir = 1 + }, +/obj/effect/decal/cleanable/floor_damage/rust, +/turf/simulated/floor/tiled/ridged, +/area/quarantined_outpost/extraction_lab) +"sOI" = ( +/obj/effect/floor_decal/industrial/outline/red, +/obj/machinery/suit_cycler, +/turf/simulated/floor/tiled/dark/full/airless, +/area/quarantined_outpost/security) +"sPi" = ( +/obj/structure/lattice, +/turf/simulated/floor/plating, +/area/quarantined_outpost/cafeteria) +"sPq" = ( +/obj/effect/floor_decal/spline/plain/black{ + dir = 4 + }, +/obj/effect/floor_decal/corner/dark_green{ + dir = 1 + }, +/obj/random/dirt_75, +/turf/simulated/floor/tiled, +/area/quarantined_outpost/gym) +"sPC" = ( +/obj/machinery/atmospherics/unary/vent_pump/on, +/obj/effect/decal/cleanable/blood, +/turf/simulated/floor/tiled, +/area/quarantined_outpost/reception) +"sPG" = ( +/obj/structure/platform/ledge, +/turf/simulated/floor/tiled, +/area/quarantined_outpost/cargo_bay) +"sPN" = ( +/obj/random/dirt_75, +/obj/random/dirt_75, +/obj/structure/cable/orange{ + icon_state = "4-8" + }, +/obj/effect/floor_decal/industrial/warning/dust/corner, +/turf/simulated/floor/plating/asteroid/airless, +/area/quarantined_outpost/exterior) +"sPU" = ( +/obj/random/dirt_75, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled/airless, +/area/quarantined_outpost/security) +"sQc" = ( +/obj/random/dirt_75, +/obj/random/dirt_75, +/turf/simulated/floor/tiled, +/area/quarantined_outpost/security) +"sQw" = ( +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/structure/closet/crate/loot, +/turf/simulated/floor/plating, +/area/quarantined_outpost/cargo_bay) +"sQF" = ( +/obj/structure/table/reinforced/steel, +/obj/machinery/door/window/desk/northright, +/obj/item/paper_bin{ + pixel_x = -3 + }, +/obj/item/flora/pottedplant_small/dead{ + pixel_y = -1; + pixel_x = 11 + }, +/turf/simulated/floor/tiled/dark/full, +/area/quarantined_outpost/medbay) +"sQK" = ( +/turf/simulated/mineral/lava, +/area/quarantined_outpost/engineering/winch_room) +"sQO" = ( +/obj/effect/floor_decal/corner_wide/lime{ + dir = 4 + }, +/obj/effect/floor_decal/corner_wide/lime{ + dir = 1 + }, +/obj/random/dirt_75, +/turf/simulated/floor/tiled/white, +/area/quarantined_outpost/medbay) +"sRf" = ( +/obj/structure/platform{ + dir = 8 + }, +/obj/random/dirt_75, +/turf/simulated/floor/tiled/ridged, +/area/quarantined_outpost/extraction_lab) +"sRj" = ( +/obj/effect/floor_decal/spline/plain/black, +/obj/structure/table/standard, +/obj/machinery/recharger{ + pixel_y = 9; + pixel_x = -8 + }, +/turf/simulated/floor/tiled/dark/full, +/area/quarantined_outpost/security) +"sRl" = ( +/obj/effect/floor_decal/corner/green/diagonal, +/obj/structure/table/standard, +/obj/structure/bedsheetbin{ + pixel_y = 7 + }, +/turf/simulated/floor/tiled/white, +/area/quarantined_outpost/dorm_hallway) +"sRv" = ( +/obj/structure/lattice/catwalk/indoor, +/obj/structure/railing/mapped{ + dir = 4 + }, +/obj/structure/railing/mapped, +/turf/simulated/floor/plating, +/area/quarantined_outpost/cargo_bay) +"sRB" = ( +/obj/structure/cable/orange{ + icon_state = "4-8" + }, +/obj/item/stack/tile/floor{ + pixel_x = 7; + pixel_y = -6 + }, +/turf/simulated/floor/plating, +/area/quarantined_outpost/engineering) +"sSs" = ( +/obj/effect/floor_decal/corner_wide/paleblue/full{ + dir = 8 + }, +/obj/structure/bed/stool/chair{ + dir = 4 + }, +/obj/structure/sign/nosmoking_2{ + pixel_y = 32 + }, +/obj/random/dirt_75, +/turf/simulated/floor/tiled/airless, +/area/quarantined_outpost/security) +"sSH" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 4 + }, +/obj/effect/landmark/trapped_vent/maybe/quarantined_outpost, +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/dark, +/area/quarantined_outpost/engineering/atmospherics) +"sTW" = ( +/obj/effect/decal/cleanable/blood, +/obj/random/dirt_75, +/obj/structure/cable{ + icon_state = "2-4" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, +/turf/simulated/floor/tiled/white, +/area/quarantined_outpost/medbay) +"sUi" = ( +/obj/effect/floor_decal/industrial/outline_door/yellow{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/quarantined_outpost/engineering) +"sUB" = ( +/obj/machinery/atmospherics/portables_connector{ + dir = 4 + }, +/obj/machinery/portable_atmospherics/canister/oxygen, +/turf/simulated/floor/reinforced, +/area/quarantined_outpost/engineering/atmospherics) +"sVf" = ( +/obj/random/dirt_75, +/obj/effect/floor_decal/corner_wide/paleblue{ + dir = 6 + }, +/obj/structure/inflatable/door, +/turf/simulated/floor/tiled/airless, +/area/quarantined_outpost/security) +"sVv" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled/gunmetal/full, +/area/quarantined_outpost/engineering/tunnel) +"sVx" = ( +/obj/structure/lattice/catwalk/indoor/grate, +/obj/structure/cable/orange{ + icon_state = "4-8" + }, +/obj/machinery/light/small/maybe_broken/decayed, +/turf/simulated/floor/plating, +/area/quarantined_outpost/entrance_lobby) +"sVG" = ( +/obj/effect/floor_decal/corner/mauve{ + dir = 6 + }, +/obj/effect/floor_decal/spline/plain/purple{ + dir = 4 + }, +/turf/simulated/floor/tiled/light, +/area/quarantined_outpost/research) +"sVN" = ( +/obj/effect/floor_decal/spline/plain/corner/black, +/obj/effect/floor_decal/corner/dark_green{ + dir = 5 + }, +/obj/random/dirt_75, +/turf/simulated/floor/tiled, +/area/quarantined_outpost/gym) +"sVT" = ( +/obj/structure/table/standard, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/item/paper_bin{ + pixel_y = 8; + pixel_x = 3 + }, +/obj/item/pen{ + pixel_x = -6; + pixel_y = 2 + }, +/obj/random/dirt_75, +/turf/simulated/floor/tiled/airless, +/area/quarantined_outpost/security) +"sWd" = ( +/obj/structure/railing/mapped{ + dir = 1 + }, +/obj/effect/floor_decal/industrial/outline/grey, +/turf/simulated/floor/carpet/rubber, +/area/quarantined_outpost/gym) +"sWq" = ( +/obj/structure/foamedmetal, +/turf/simulated/floor/plating, +/area/quarantined_outpost/entrance_maintenance) +"sWr" = ( +/obj/effect/floor_decal/corner/dark_blue{ + dir = 6 + }, +/obj/random/dirt_75, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/quarantined_outpost/elevator_hallway) +"sWH" = ( +/obj/effect/floor_decal/corner/dark_blue{ + dir = 5 + }, +/obj/random/dirt_75, +/turf/simulated/floor/tiled, +/area/quarantined_outpost/reception) +"sWL" = ( +/obj/structure/grille/broken, +/obj/random/dirt_75, +/obj/random/dirt_75, +/turf/simulated/floor/plating, +/area/quarantined_outpost/dorm_hallway) +"sXf" = ( +/obj/structure/filingcabinet/filingcabinet{ + pixel_x = -8 + }, +/obj/effect/floor_decal/corner_wide/lime/full{ + dir = 1 + }, +/obj/effect/decal/cleanable/cobweb2, +/obj/structure/filingcabinet/chestdrawer{ + pixel_x = 6 + }, +/obj/machinery/light/small/maybe_broken/decayed{ + dir = 1 + }, +/obj/random/dirt_75, +/turf/simulated/floor/tiled/white, +/area/quarantined_outpost/medbay) +"sXt" = ( +/obj/effect/floor_decal/corner/dark_green{ + dir = 9 + }, +/turf/simulated/floor/tiled, +/area/quarantined_outpost/gym) +"sXu" = ( +/obj/structure/bed/stool/chair/office/light, +/obj/effect/floor_decal/industrial/outline_straight/custodial{ + dir = 4 + }, +/turf/simulated/floor/tiled/light, +/area/quarantined_outpost/research) +"sXI" = ( +/obj/structure/sign/staff_only{ + pixel_y = 32 + }, +/obj/random/dirt_75, +/turf/simulated/floor/plating/asteroid/airless, +/area/quarantined_outpost/exterior) +"sXK" = ( +/obj/structure/lattice/catwalk, +/obj/structure/decor/fluff_ladder/up{ + pixel_y = 15; + pixel_x = 5 + }, +/turf/simulated/floor/plating, +/area/quarantined_outpost/cargo_bay) +"sXQ" = ( +/obj/effect/floor_decal/industrial/outline_door/yellow{ + dir = 1 + }, +/obj/effect/floor_decal/industrial/outline_segment/yellow{ + dir = 5 + }, +/obj/effect/floor_decal/industrial/outline_segment/yellow{ + dir = 8 + }, +/obj/abstract/footprint_spawner{ + dir = 1 + }, +/obj/item/tape/engineering{ + icon_state = "engineering_door" + }, +/turf/simulated/floor/tiled/dark/full, +/area/quarantined_outpost/research) +"sXZ" = ( +/obj/effect/floor_decal/spline/plain/black{ + dir = 1 + }, +/turf/simulated/floor/tiled/gunmetal, +/area/quarantined_outpost/north_east_hallway) +"sYg" = ( +/turf/simulated/wall/r_wall, +/area/quarantined_outpost/medbay) +"sYr" = ( +/obj/effect/floor_decal/corner/brown{ + dir = 4 + }, +/obj/random/dirt_75, +/turf/simulated/floor/tiled/dark, +/area/quarantined_outpost/cargo_bay) +"sYI" = ( +/obj/structure/flora/rock/stalagmite/random, +/obj/random/dirt_75, +/turf/simulated/floor/exoplanet/asteroid/ash/rocky, +/area/quarantined_outpost/exterior) +"sYL" = ( +/obj/effect/floor_decal/corner/dark_blue{ + dir = 9 + }, +/obj/structure/table, +/obj/abstract/footprint_spawner/body{ + dir = 8 + }, +/turf/simulated/floor/tiled/dark, +/area/quarantined_outpost/research) +"sZI" = ( +/obj/structure/lattice/catwalk, +/obj/structure/railing/mapped{ + dir = 4 + }, +/obj/item/trash/cigbutt{ + pixel_y = -16; + pixel_x = -12 + }, +/obj/structure/bed/stool/chair/folding{ + dir = 4 + }, +/turf/simulated/floor/exoplanet/basalt, +/area/quarantined_outpost/engineering/winch_room) +"taM" = ( +/obj/effect/floor_decal/corner_wide/paleblue/full{ + dir = 4 + }, +/obj/structure/table/standard, +/obj/item/storage/box/masks{ + pixel_x = 7; + pixel_y = 9 + }, +/obj/item/storage/box/gloves{ + pixel_y = 1; + pixel_x = 7 + }, +/obj/effect/decal/cleanable/floor_damage/rust, +/turf/simulated/floor/tiled/white, +/area/quarantined_outpost/medbay) +"taO" = ( +/obj/machinery/computer/terminal/inactive{ + dir = 1 + }, +/obj/structure/window/reinforced, +/obj/effect/floor_decal/industrial/outline/research, +/obj/effect/floor_decal/spline/plain/purple{ + dir = 8 + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled/bitile{ + dir = 8 + }, +/area/quarantined_outpost/research) +"tbc" = ( +/obj/effect/floor_decal/industrial/warning, +/obj/machinery/atmospherics/valve/digital{ + dir = 4; + name = "Thermal Relief Valve" + }, +/obj/effect/floor_decal/industrial/hatch_tiny/red, +/turf/simulated/floor/plating, +/area/quarantined_outpost/engineering/atmospherics) +"tca" = ( +/obj/effect/floor_decal/corner/mauve{ + dir = 9 + }, +/obj/structure/sign/flag/sol/old{ + pixel_y = 32 + }, +/obj/random/dirt_75, +/turf/simulated/floor/tiled/light, +/area/quarantined_outpost/research) +"tcg" = ( +/obj/effect/floor_decal/corner/dark_blue{ + dir = 4 + }, +/obj/random/dirt_75, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled/rust, +/area/quarantined_outpost/dorm_hallway) +"tck" = ( +/obj/effect/floor_decal/corner/mauve{ + dir = 6 + }, +/obj/effect/floor_decal/spline/plain/corner/purple, +/obj/random/dirt_75, +/turf/simulated/floor/tiled/light, +/area/quarantined_outpost/research) +"tcr" = ( +/obj/effect/floor_decal/corner/dark_blue{ + dir = 9 + }, +/obj/random/dirt_75, +/obj/abstract/footprint_spawner{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/quarantined_outpost/north_east_hallway) +"tdl" = ( +/obj/machinery/conveyor{ + dir = 1 + }, +/obj/machinery/alarm/west, +/turf/simulated/floor/tiled/dark/full, +/area/quarantined_outpost/cargo_bay) +"tdH" = ( +/obj/structure/platform/dark{ + dir = 1 + }, +/obj/random/dirt_75, +/obj/random/dirt_75, +/obj/effect/decal/cleanable/floor_damage/rust, +/turf/simulated/floor/tiled/gunmetal, +/area/quarantined_outpost/engineering/atmospherics) +"tdI" = ( +/turf/simulated/floor/exoplanet/basalt, +/area/quarantined_outpost/engineering/atmospherics) +"tdM" = ( +/turf/simulated/mineral/lava, +/area/quarantined_outpost/entrance_maintenance) +"tdN" = ( +/obj/effect/floor_decal/spline/plain/corner/black, +/obj/random/dirt_75, +/turf/simulated/floor/tiled/ridged, +/area/quarantined_outpost/extraction_lab) +"tdV" = ( +/obj/machinery/computer/terminal/inactive, +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/structure/railing/mapped{ + dir = 1; + pixel_y = 8 + }, +/obj/structure/railing/mapped{ + dir = 4; + pixel_y = 8 + }, +/obj/effect/decal/rolling_fog, +/turf/simulated/floor/tiled/dark/full, +/area/quarantined_outpost/research) +"tej" = ( +/turf/simulated/floor/tiled, +/area/quarantined_outpost/gym) +"tex" = ( +/obj/structure/table/reinforced/steel, +/obj/machinery/door/window/desk/northright, +/turf/simulated/floor/tiled/dark/full, +/area/quarantined_outpost/north_east_hallway) +"tfz" = ( +/obj/structure/lattice/catwalk/indoor/grate/dark, +/turf/simulated/floor/plating, +/area/quarantined_outpost/engineering/atmospherics) +"tgm" = ( +/obj/structure/bed/stool/chair/shuttle/double{ + pixel_x = -8 + }, +/obj/structure/bed/stool/chair/shuttle/double{ + pixel_x = 8 + }, +/obj/effect/floor_decal/spline/plain/black{ + dir = 6 + }, +/obj/effect/decal/cleanable/cobweb, +/turf/simulated/floor/tiled/dark/full, +/area/quarantined_outpost/cargo_bay) +"tgG" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/obj/random/dirt_75, +/obj/structure/trash_pile, +/turf/simulated/floor/plating, +/area/quarantined_outpost/north_east_hallway/maintenance) +"tgK" = ( +/obj/structure/lattice/catwalk/indoor, +/obj/structure/platform_stairs/full/south_north_cap{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/quarantined_outpost/engineering/atmospherics) +"tgR" = ( +/obj/effect/shuttle_landmark/quarantined_outpost/asteroid/landing_1c, +/turf/simulated/floor/plating/asteroid/airless, +/area/quarantined_outpost/exterior) +"thw" = ( +/obj/structure/lattice, +/turf/simulated/abyss/airless, +/area/quarantined_outpost/security) +"tie" = ( +/obj/effect/floor_decal/corner/dark_blue{ + dir = 9 + }, +/obj/effect/decal/cleanable/generic, +/obj/random/dirt_75, +/turf/simulated/floor/tiled, +/area/quarantined_outpost/north_east_hallway) +"tjt" = ( +/obj/effect/floor_decal/industrial/warning, +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 1 + }, +/obj/structure/closet/body_bag, +/obj/machinery/light/maybe_broken/decayed{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/quarantined_outpost/medbay) +"tjy" = ( +/obj/effect/floor_decal/industrial/hatch/yellow, +/turf/simulated/floor/tiled/full, +/area/quarantined_outpost/reception) +"tjB" = ( +/obj/effect/floor_decal/corner/yellow{ + dir = 8 + }, +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/machinery/vending/assist, +/turf/simulated/floor/tiled/gunmetal, +/area/quarantined_outpost/engineering) +"tjG" = ( +/obj/structure/platform{ + dir = 1 + }, +/obj/structure/platform{ + dir = 4 + }, +/obj/effect/floor_decal/corner/black/full{ + dir = 1 + }, +/obj/effect/floor_decal/corner/black{ + dir = 8 + }, +/obj/structure/flora/pottedplant/dead{ + pixel_y = 9 + }, +/obj/random/dirt_75, +/obj/structure/platform_deco{ + dir = 10 + }, +/turf/simulated/floor/tiled/dark, +/area/quarantined_outpost/entrance_lobby) +"tka" = ( +/obj/effect/decal/cleanable/cobweb2, +/obj/effect/floor_decal/corner/yellow{ + dir = 6 + }, +/turf/simulated/floor/tiled/gunmetal, +/area/quarantined_outpost/engineering) +"tkr" = ( +/obj/structure/lattice/catwalk, +/obj/structure/railing/mapped{ + dir = 8 + }, +/obj/structure/railing/mapped, +/obj/item/hullbeacon/red{ + pixel_y = 6 + }, +/turf/simulated/floor/exoplanet/abyss, +/area/quarantined_outpost/engineering/winch_room) +"tkx" = ( +/obj/structure/flora/pottedplant/dead, +/obj/effect/floor_decal/spline/plain/black{ + dir = 1 + }, +/obj/structure/sign/flag/sol/old{ + pixel_y = -32 + }, +/turf/simulated/floor/tiled/dark/full, +/area/quarantined_outpost/reception) +"tkC" = ( +/obj/effect/floor_decal/industrial/arrow/yellow{ + dir = 8 + }, +/obj/random/dirt_75, +/turf/simulated/floor/tiled, +/area/quarantined_outpost/reception) +"tkH" = ( +/obj/machinery/light/small/emergency{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/quarantined_outpost/entrance_maintenance) +"tkM" = ( +/obj/effect/floor_decal/corner/yellow{ + dir = 9 + }, +/obj/random/dirt_75, +/obj/random/dirt_75, +/turf/simulated/floor/tiled, +/area/quarantined_outpost/engineering) +"tkU" = ( +/obj/structure/platform/ledge/dark{ + dir = 1 + }, +/obj/structure/platform/ledge/dark{ + dir = 8 + }, +/obj/structure/platform_deco/ledge/dark{ + dir = 6 + }, +/turf/simulated/floor/exoplanet/abyss, +/area/quarantined_outpost/chasm) +"tkY" = ( +/obj/machinery/door/firedoor/multi_tile, +/obj/effect/floor_decal/industrial/hatch/yellow, +/obj/machinery/door/airlock/multi_tile/glass{ + name = "Security" + }, +/obj/random/dirt_75, +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/full/airless, +/area/quarantined_outpost/security) +"tkZ" = ( +/obj/abstract/footprint_spawner{ + dir = 1 + }, +/obj/abstract/footprint_spawner_turn_helper{ + dir = 8 + }, +/obj/random/dirt_75, +/turf/simulated/floor/tiled/gunmetal, +/area/quarantined_outpost/engineering/tunnel) +"tln" = ( +/obj/effect/floor_decal/corner/black{ + dir = 8 + }, +/obj/structure/extinguisher_cabinet/west, +/obj/random/dirt_75, +/obj/random/dirt_75, +/turf/simulated/floor/tiled, +/area/quarantined_outpost/entrance_lobby) +"tlp" = ( +/obj/structure/table/standard/flipped{ + dir = 1 + }, +/obj/effect/decal/cleanable/blood, +/obj/random/dirt_75, +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/simulated/floor/tiled, +/area/quarantined_outpost/cafeteria) +"tlz" = ( +/obj/effect/floor_decal/corner/yellow{ + dir = 4 + }, +/obj/effect/floor_decal/corner/dark_blue{ + dir = 1 + }, +/obj/random/dirt_75, +/obj/effect/decal/cleanable/floor_damage/rust, +/obj/machinery/alarm/north, +/turf/simulated/floor/tiled/dark, +/area/quarantined_outpost/engineering/atmospherics) +"tlR" = ( +/obj/effect/floor_decal/industrial/outline_straight/yellow{ + dir = 1 + }, +/obj/effect/decal/cleanable/floor_damage/rust, +/obj/machinery/light/small/emergency{ + dir = 4 + }, +/turf/simulated/floor/tiled/ridged, +/area/quarantined_outpost/server_relay/north_east) +"tmc" = ( +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/structure/closet/crate/loot, +/turf/simulated/floor/tiled/full, +/area/quarantined_outpost/cargo_bay) +"tmk" = ( +/obj/structure/closet/secure_closet/personal, +/obj/effect/floor_decal/corner/dark_green/full{ + dir = 1 + }, +/obj/effect/floor_decal/industrial/outline/grey, +/obj/random/dirt_75, +/obj/effect/decal/cleanable/cobweb2, +/obj/random/contraband/pillbottle, +/obj/outfit/admin/generic, +/turf/simulated/floor/tiled, +/area/quarantined_outpost/gym) +"tmp" = ( +/obj/structure/target_stake, +/obj/item/target, +/turf/simulated/floor/exoplanet/basalt, +/area/quarantined_outpost/cavern/east_cavern) +"tmq" = ( +/obj/effect/floor_decal/corner/yellow{ + dir = 1 + }, +/obj/effect/decal/cleanable/floor_damage/rust, +/turf/simulated/floor/tiled, +/area/quarantined_outpost/engineering) +"tmw" = ( +/obj/structure/flora/pottedplant/dead{ + pixel_y = 8 + }, +/obj/structure/railing/mapped{ + dir = 4 + }, +/obj/structure/railing/mapped{ + dir = 8 + }, +/obj/random/dirt_75, +/turf/simulated/floor/tiled/dark/full, +/area/quarantined_outpost/elevator_hallway) +"tmS" = ( +/obj/effect/floor_decal/spline/plain/black{ + dir = 4 + }, +/obj/random/dirt_75, +/obj/effect/decal/cleanable/blood, +/turf/simulated/floor/tiled/ridged, +/area/quarantined_outpost/extraction_lab) +"tnu" = ( +/obj/effect/floor_decal/industrial/outline/medical, +/obj/structure/closet/secure_closet/personal, +/obj/effect/decal/cleanable/cobweb2, +/obj/structure/sign/flag/mars{ + pixel_x = 32 + }, +/turf/simulated/floor/tiled/full, +/area/quarantined_outpost/medbay) +"tnP" = ( +/obj/random/dirt_75, +/obj/effect/floor_decal/industrial/warning/dust{ + dir = 1 + }, +/turf/simulated/floor/plating/asteroid/airless, +/area/quarantined_outpost/exterior) +"toC" = ( +/obj/effect/floor_decal/spline/plain/black{ + dir = 1 + }, +/obj/structure/table/standard, +/obj/item/device/flashlight/maglight, +/turf/simulated/floor/tiled/dark/full, +/area/quarantined_outpost/elevator_hallway) +"toM" = ( +/obj/effect/floor_decal/spline/plain/black{ + dir = 8 + }, +/obj/random/dirt_75, +/obj/abstract/footprint_spawner/oil, +/turf/simulated/floor/tiled/gunmetal, +/area/quarantined_outpost/engineering/tunnel) +"toN" = ( +/obj/effect/floor_decal/corner/mauve{ + dir = 8 + }, +/obj/random/dirt_75, +/turf/simulated/floor/tiled/light, +/area/quarantined_outpost/research) +"toP" = ( +/obj/random/dirt_75, +/obj/random/dirt_75, +/turf/simulated/floor/tiled/bitile{ + dir = 8 + }, +/area/quarantined_outpost/cafeteria) +"tpf" = ( +/obj/structure/lattice/catwalk, +/obj/machinery/light/small/emergency{ + dir = 4 + }, +/turf/simulated/floor/exoplanet/basalt, +/area/quarantined_outpost/entrance_maintenance) +"tpt" = ( +/obj/effect/floor_decal/industrial/hatch_door/medical{ + dir = 1 + }, +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/medical{ + name = "Wash Room" + }, +/turf/simulated/floor/tiled/white, +/area/quarantined_outpost/medbay) +"tqc" = ( +/turf/simulated/wall, +/area/quarantined_outpost/entrance_maintenance) +"tqv" = ( +/obj/machinery/door/airlock/hatch, +/turf/simulated/floor/plating, +/area/quarantined_outpost/engineering/tunnel) +"tqI" = ( +/obj/effect/floor_decal/corner/dark_blue{ + dir = 9 + }, +/obj/random/dirt_75, +/obj/structure/railing/mapped{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/quarantined_outpost/elevator_hallway) +"tqN" = ( +/obj/effect/floor_decal/industrial/outline_door/red{ + dir = 4 + }, +/obj/structure/bed/handrail, +/obj/effect/floor_decal/industrial/outline_segment/red{ + dir = 6 + }, +/obj/effect/floor_decal/industrial/outline_segment/red{ + dir = 1 + }, +/obj/effect/decal/cleanable/floor_damage/rust, +/obj/effect/decal/cleanable/blood, +/obj/effect/decal/remains, +/turf/simulated/floor/tiled/rust, +/area/quarantined_outpost/cargo_bay) +"trc" = ( +/obj/machinery/door/firedoor, +/obj/item/material/shard, +/obj/structure/window_frame/empty, +/turf/simulated/floor/tiled/dark/full, +/area/quarantined_outpost/extraction_lab) +"trk" = ( +/obj/structure/lattice/catwalk, +/obj/structure/stairs_railing{ + pixel_y = 30; + dir = 1; + pixel_x = -1 + }, +/obj/item/hoist_kit{ + pixel_y = 8; + pixel_x = -3 + }, +/obj/effect/decal/cleanable/cobweb, +/turf/simulated/floor/exoplanet/basalt, +/area/quarantined_outpost/engineering/winch_room) +"trC" = ( +/obj/effect/floor_decal/corner_wide/paleblue/full{ + dir = 1 + }, +/obj/random/dirt_75, +/obj/random/dirt_75, +/obj/effect/floor_decal/industrial/outline/emergency_closet, +/obj/structure/closet/walllocker/emerglocker/east, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 + }, +/turf/simulated/floor/tiled/airless, +/area/quarantined_outpost/security) +"trF" = ( +/obj/structure/lattice/catwalk/indoor/grate/old, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/quarantined_outpost/reception) +"trG" = ( +/obj/effect/floor_decal/corner_wide/lime{ + dir = 10 + }, +/obj/random/dirt_75, +/obj/structure/cable{ + 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/quarantined_outpost/medbay) +"trL" = ( +/obj/effect/floor_decal/industrial/warning/corner, +/obj/machinery/atmospherics/pipe/manifold/visible/black, +/turf/simulated/floor/plating, +/area/quarantined_outpost/engineering/atmospherics) +"tss" = ( +/obj/random/dirt_75, +/obj/random/dirt_75, +/turf/simulated/floor/tiled/dark, +/area/quarantined_outpost/engineering/atmospherics) +"tsB" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/obj/structure/filler, +/obj/effect/decal/rolling_fog, +/turf/simulated/floor/reinforced, +/area/quarantined_outpost/research) +"ttm" = ( +/obj/structure/lattice/catwalk/indoor/grate, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/quarantined_outpost/elevator_hallway) +"ttn" = ( +/turf/simulated/wall/shuttle/scc_space_ship, +/area/quarantined_outpost/entrance_lobby) +"ttr" = ( +/obj/effect/floor_decal/corner_wide/lime/diagonal, +/turf/simulated/floor/tiled/white, +/area/quarantined_outpost/medbay) +"ttx" = ( +/obj/effect/floor_decal/corner/green/diagonal, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 8 + }, +/turf/simulated/floor/tiled/white, +/area/quarantined_outpost/dorm_hallway) +"ttI" = ( +/obj/effect/floor_decal/industrial/outline_straight/custodial{ + dir = 8 + }, +/obj/item/paper/crumpled{ + pixel_x = 7; + pixel_y = 3 + }, +/obj/effect/decal/cleanable/blood, +/turf/simulated/floor/tiled/light, +/area/quarantined_outpost/research) +"ttP" = ( +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/random/dirt_75, +/obj/random/dirt_75, +/obj/random/dirt_75, +/obj/structure/closet/crate/loot, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 1 + }, +/turf/simulated/floor/tiled/full, +/area/quarantined_outpost/cargo_bay) +"tuh" = ( +/obj/structure/structural_support, +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/gunmetal, +/area/quarantined_outpost/engineering/atmospherics) +"tuu" = ( +/obj/effect/landmark/quarantined_outpost/canister_spawn, +/turf/simulated/floor/tiled/light/full, +/area/quarantined_outpost/research) +"tuv" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 4 + }, +/obj/random/dirt_75, +/obj/item/clothing/head/cone{ + pixel_y = 13; + pixel_x = -12 + }, +/turf/simulated/floor/tiled/dark, +/area/quarantined_outpost/research) +"tuz" = ( +/obj/structure/barricade/wooden/road{ + dir = 1 + }, +/turf/simulated/floor/exoplanet/basalt, +/area/quarantined_outpost/engineering/tunnel) +"tuA" = ( +/obj/effect/floor_decal/industrial/outline_segment/red{ + dir = 8 + }, +/obj/effect/floor_decal/industrial/outline_segment/red{ + dir = 5 + }, +/obj/effect/floor_decal/industrial/outline_door/red{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 1 + }, +/turf/simulated/floor/tiled/dark/full/airless, +/area/quarantined_outpost/security) +"tvx" = ( +/obj/effect/floor_decal/corner/dark_blue{ + dir = 1 + }, +/obj/random/dirt_75, +/turf/simulated/floor/tiled, +/area/quarantined_outpost/dorm_hallway) +"tvF" = ( +/obj/effect/floor_decal/corner_wide/lime{ + dir = 9 + }, +/obj/random/dirt_75, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 1 + }, +/turf/simulated/floor/tiled/white, +/area/quarantined_outpost/medbay) +"tvI" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 4 + }, +/obj/effect/floor_decal/industrial/outline_straight/yellow{ + dir = 8 + }, +/obj/effect/decal/cleanable/floor_damage/rust, +/obj/effect/decal/rolling_fog, +/turf/simulated/floor/plating, +/area/quarantined_outpost/research) +"tvK" = ( +/obj/structure/platform/ledge{ + dir = 8 + }, +/obj/effect/floor_decal/corner/brown{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/quarantined_outpost/cargo_bay) +"txj" = ( +/obj/item/crowbar/red{ + pixel_x = -9; + pixel_y = -11 + }, +/turf/simulated/floor/tiled, +/area/quarantined_outpost/dorm_hallway) +"txY" = ( +/obj/random/dirt_75, +/obj/random/dirt_75, +/turf/simulated/floor/tiled/dark/full, +/area/quarantined_outpost/research) +"tyo" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 8 + }, +/obj/structure/filler, +/obj/effect/decal/rolling_fog, +/turf/simulated/floor/reinforced, +/area/quarantined_outpost/research) +"tyv" = ( +/obj/effect/floor_decal/industrial/hatch/yellow, +/obj/machinery/door/firedoor, +/turf/simulated/floor/tiled/full, +/area/quarantined_outpost/north_east_hallway) +"tyL" = ( +/obj/effect/floor_decal/industrial/hatch/yellow, +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/simple/hidden/fuel{ + dir = 6 + }, +/turf/simulated/floor/tiled/dark/full, +/area/quarantined_outpost/engineering/atmospherics) +"tzg" = ( +/obj/random/dirt_75, +/obj/abstract/footprint_spawner{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/quarantined_outpost/engineering/tunnel) +"tzx" = ( +/obj/effect/floor_decal/industrial/outline_door/red{ + dir = 8 + }, +/obj/effect/floor_decal/industrial/outline_segment/red, +/obj/random/dirt_75, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "2-8" + }, +/turf/simulated/floor/tiled/gunmetal, +/area/quarantined_outpost/north_east_hallway) +"tzG" = ( +/obj/structure/cable{ + icon_state = "1-4" + }, +/obj/random/dirt_75, +/turf/simulated/floor/plating, +/area/quarantined_outpost/dorm_hallway) +"tAr" = ( +/obj/random/dirt_75, +/obj/effect/floor_decal/corner_wide/paleblue{ + dir = 9 + }, +/obj/effect/decal/cleanable/blood, +/turf/simulated/floor/tiled, +/area/quarantined_outpost/elevator_hallway) +"tAs" = ( +/obj/structure/barricade/wooden{ + dir = 4 + }, +/obj/item/material/stool/chair{ + dir = 1; + pixel_y = -6; + pixel_x = -7 + }, +/obj/structure/cable{ + icon_state = "2-4" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled/gunmetal, +/area/quarantined_outpost/engineering/winch_room) +"tAy" = ( +/turf/simulated/floor/tiled, +/area/quarantined_outpost/cargo_bay) +"tAZ" = ( +/obj/machinery/light/maybe_broken/decayed{ + dir = 4 + }, +/obj/random/dirt_75, +/obj/random/dirt_75, +/turf/simulated/floor/tiled/white, +/area/quarantined_outpost/medbay) +"tBb" = ( +/obj/effect/floor_decal/industrial/outline/security, +/turf/simulated/floor/tiled/dark/full, +/area/quarantined_outpost/research) +"tBh" = ( +/obj/effect/floor_decal/corner/dark_blue{ + dir = 4 + }, +/obj/structure/sign/directions/security{ + dir = 4; + pixel_y = 32 + }, +/obj/structure/sign/directions/medical{ + pixel_y = 40; + dir = 1 + }, +/obj/random/dirt_75, +/turf/simulated/floor/tiled, +/area/quarantined_outpost/reception) +"tBx" = ( +/obj/structure/flora/rock/stalagmite/random, +/turf/simulated/floor/exoplanet/basalt, +/area/quarantined_outpost/research) +"tCu" = ( +/obj/effect/floor_decal/spline/plain/black{ + dir = 4 + }, +/obj/random/dirt_75, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/turf/simulated/floor/tiled/gunmetal, +/area/quarantined_outpost/north_east_hallway) +"tCC" = ( +/obj/random/dirt_75, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/structure/cable{ + icon_state = "1-8" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, +/turf/simulated/floor/tiled, +/area/quarantined_outpost/elevator_hallway) +"tCF" = ( +/obj/effect/floor_decal/spline/plain/corner/black, +/obj/effect/floor_decal/spline/plain/black{ + dir = 4 + }, +/obj/effect/floor_decal/corner/dark_green{ + dir = 1 + }, +/obj/random/dirt_75, +/obj/random/dirt_75, +/turf/simulated/floor/tiled, +/area/quarantined_outpost/gym) +"tCI" = ( +/obj/structure/railing/mapped{ + dir = 8 + }, +/obj/structure/railing/mapped, +/obj/structure/flora/rock/pile/random, +/turf/simulated/floor/exoplanet/asteroid/ash/rocky, +/area/quarantined_outpost/exterior) +"tCV" = ( +/obj/structure/lattice/catwalk/indoor/grate/dark, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 1 + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/simulated/floor/plating, +/area/quarantined_outpost/north_east_hallway) +"tDi" = ( +/obj/structure/bed/stool/chair{ + dir = 1 + }, +/obj/random/dirt_75, +/turf/simulated/floor/tiled/dark/full, +/area/quarantined_outpost/elevator_hallway) +"tDt" = ( +/obj/structure/flora/pottedplant/dead2{ + pixel_y = 13 + }, +/obj/effect/floor_decal/corner/dark_blue{ + dir = 10 + }, +/obj/effect/floor_decal/spline/plain/black{ + dir = 10 + }, +/turf/simulated/floor/tiled, +/area/quarantined_outpost/reception) +"tDA" = ( +/obj/random/dirt_75, +/obj/effect/decal/cleanable/floor_damage/rust, +/turf/simulated/floor/tiled, +/area/quarantined_outpost/elevator_hallway) +"tDF" = ( +/obj/structure/platform_stairs/full/south_north_cap{ + dir = 8 + }, +/turf/simulated/floor/tiled/white, +/area/quarantined_outpost/medbay) +"tDG" = ( +/obj/effect/floor_decal/industrial/hatch/yellow, +/obj/machinery/door/firedoor{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark/full, +/area/quarantined_outpost/engineering/winch_room) +"tEG" = ( +/obj/effect/floor_decal/spline/plain/black{ + dir = 4 + }, +/obj/structure/railing/mapped{ + dir = 4 + }, +/obj/random/dirt_75, +/obj/abstract/footprint_spawner{ + dir = 1 + }, +/turf/simulated/floor/tiled/gunmetal, +/area/quarantined_outpost/engineering/tunnel) +"tER" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/simulated/floor/carpet/rubber, +/area/quarantined_outpost/gym) +"tET" = ( +/obj/effect/floor_decal/corner_wide/paleblue{ + dir = 5 + }, +/obj/structure/filingcabinet, +/obj/structure/filingcabinet{ + pixel_x = -10 + }, +/obj/structure/filingcabinet{ + pixel_x = 10 + }, +/obj/random/dirt_75, +/turf/simulated/floor/tiled/airless, +/area/quarantined_outpost/security) +"tFl" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, +/obj/structure/lattice/catwalk/indoor/grate/dark, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/obj/structure/cable{ + icon_state = "1-8" + }, +/turf/simulated/floor/plating, +/area/quarantined_outpost/north_east_hallway) +"tFs" = ( +/obj/random/dirt_75, +/obj/effect/decal/cleanable/floor_damage/rust, +/turf/simulated/floor/tiled/white, +/area/quarantined_outpost/medbay) +"tFN" = ( +/obj/effect/floor_decal/corner_wide/paleblue, +/obj/structure/table/standard, +/obj/random/loot, +/turf/simulated/floor/tiled, +/area/quarantined_outpost/security) +"tGw" = ( +/obj/effect/floor_decal/corner/yellow{ + dir = 4 + }, +/obj/random/dirt_75, +/obj/machinery/floodlight/randomcharge, +/turf/simulated/floor/tiled/gunmetal, +/area/quarantined_outpost/engineering) +"tGH" = ( +/turf/simulated/wall, +/area/quarantined_outpost/north_east_hallway/maintenance) +"tHt" = ( +/obj/structure/railing/mapped{ + dir = 1 + }, +/obj/effect/floor_decal/spline/plain/black{ + dir = 10 + }, +/obj/structure/flora/pottedplant/dead, +/turf/simulated/floor/tiled/dark/full, +/area/quarantined_outpost/entrance_lobby) +"tIa" = ( +/obj/structure/weapons_rack, +/obj/item/gun/projectile/shotgun/pump/combat/sol, +/obj/item/gun/projectile/shotgun/pump/combat/sol, +/turf/simulated/floor/tiled/dark/full/airless, +/area/quarantined_outpost/security) +"tIf" = ( +/obj/machinery/light/small/maybe_broken/decayed{ + dir = 8 + }, +/turf/simulated/floor/exoplanet/abyss, +/area/quarantined_outpost/research/containment) +"tIj" = ( +/obj/machinery/door/firedoor{ + dir = 4 + }, +/obj/effect/floor_decal/industrial/hatch_door/yellow, +/obj/machinery/door/airlock/glass{ + dir = 4 + }, +/turf/simulated/floor/tiled/full, +/area/quarantined_outpost/reception) +"tIL" = ( +/obj/effect/floor_decal/corner/mauve/full{ + dir = 1 + }, +/obj/structure/table/standard, +/obj/effect/decal/cleanable/cobweb2, +/turf/simulated/floor/tiled/light, +/area/quarantined_outpost/research) +"tJm" = ( +/obj/effect/floor_decal/corner/mauve{ + dir = 6 + }, +/obj/effect/decal/cleanable/floor_damage/rust, +/obj/random/dirt_75, +/turf/simulated/floor/tiled/dark, +/area/quarantined_outpost/research) +"tJO" = ( +/obj/effect/floor_decal/industrial/outline_straight/custodial{ + dir = 8 + }, +/obj/effect/decal/cleanable/floor_damage/rust, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 8 + }, +/obj/effect/landmark/trapped_vent/maybe/quarantined_outpost, +/turf/simulated/floor/tiled/light, +/area/quarantined_outpost/research) +"tKi" = ( +/obj/random/dirt_75, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/quarantined_outpost/dorm_hallway) +"tKt" = ( +/obj/effect/floor_decal/corner/mauve/diagonal, +/obj/effect/floor_decal/industrial/outline/security, +/obj/structure/environmental_storytelling_holopad/quarantined_outpost/extraction_lab_inform, +/turf/simulated/floor/tiled/white, +/area/quarantined_outpost/extraction_lab) +"tKy" = ( +/turf/simulated/wall, +/area/quarantined_outpost/north_east_hallway) +"tLp" = ( +/obj/machinery/light/small/emergency, +/obj/structure/flora/rock/random, +/turf/simulated/floor/exoplanet/basalt, +/area/quarantined_outpost/extraction_lab) +"tLD" = ( +/obj/effect/floor_decal/corner/dark_blue/full{ + dir = 4 + }, +/obj/random/dirt_75, +/obj/machinery/light/small/emergency, +/obj/effect/decal/cleanable/floor_damage/rust, +/obj/effect/decal/remains, +/obj/item/clothing/head/hardhat/orange{ + pixel_y = 4; + pixel_x = 6 + }, +/obj/machinery/alarm/south, +/turf/simulated/floor/tiled/gunmetal, +/area/quarantined_outpost/server_relay/south_east) +"tLK" = ( +/obj/random/dirt_75, +/obj/machinery/portable_atmospherics/canister/oxygen, +/turf/simulated/floor/airless, +/area/quarantined_outpost/auxiliary_power) +"tLV" = ( +/obj/structure/bed/stool/chair/folding, +/obj/effect/floor_decal/spline/fancy/wood, +/obj/random/dirt_75, +/turf/simulated/floor/wood, +/area/quarantined_outpost/cargo_bay) +"tMh" = ( +/obj/effect/floor_decal/industrial/warning/corner, +/obj/machinery/power/apc/north, +/obj/structure/cable{ + icon_state = "0-4" + }, +/obj/effect/gibspawner/human, +/turf/simulated/floor/plating, +/area/quarantined_outpost/elevator_hallway/maintenance) +"tMl" = ( +/obj/structure/lattice, +/turf/simulated/floor/plating, +/area/quarantined_outpost/cargo_bay) +"tMr" = ( +/obj/structure/lattice/catwalk/indoor/grate/dark, +/obj/machinery/alarm/north, +/turf/simulated/floor/plating, +/area/quarantined_outpost/north_east_hallway/maintenance) +"tMP" = ( +/obj/abstract/footprint_spawner/oil{ + dir = 4 + }, +/obj/effect/decal/cleanable/floor_damage/rust, +/turf/simulated/floor/tiled/dark, +/area/quarantined_outpost/engineering/atmospherics) +"tMR" = ( +/obj/effect/floor_decal/corner/brown{ + dir = 9 + }, +/obj/random/dirt_75, +/obj/random/dirt_75, +/turf/simulated/floor/tiled, +/area/quarantined_outpost/elevator_hallway) +"tNn" = ( +/obj/effect/floor_decal/spline/plain/black{ + dir = 8 + }, +/obj/structure/railing/mapped{ + dir = 8 + }, +/obj/effect/decal/cleanable/blood, +/turf/simulated/floor/tiled/white, +/area/quarantined_outpost/extraction_lab) +"tNs" = ( +/obj/structure/lattice/catwalk/indoor, +/obj/structure/platform_stairs/full/south_north_cap{ + dir = 1 + }, +/obj/structure/platform/dark{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/quarantined_outpost/engineering/atmospherics) +"tNx" = ( +/obj/random/dirt_75, +/obj/abstract/footprint_spawner/body{ + dir = 1 + }, +/obj/abstract/footprint_spawner_turn_helper{ + dir = 8 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/gunmetal, +/area/quarantined_outpost/engineering) +"tNO" = ( +/obj/effect/floor_decal/corner/mauve{ + dir = 5 + }, +/obj/machinery/light/broken{ + dir = 1 + }, +/turf/simulated/floor/tiled/white, +/area/quarantined_outpost/extraction_lab) +"tNX" = ( +/obj/structure/table/standard, +/turf/simulated/floor/plating, +/area/quarantined_outpost/gym) +"tOA" = ( +/obj/effect/floor_decal/corner/black{ + dir = 6 + }, +/obj/structure/closet/cabinet, +/obj/random/dirt_75, +/obj/outfit/admin/generic, +/obj/random/loot, +/obj/structure/sign/flag/old_visegrad{ + pixel_x = 32 + }, +/turf/simulated/floor/tiled, +/area/quarantined_outpost/dorm_hallway) +"tOI" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 8 + }, +/obj/structure/sign/securearea{ + desc = "A warning sign which reads 'WARNING: EQUIPMENT RADIOACTIVE DURING OPERATION'."; + icon_state = "radiation"; + name = "WARNING: EQUIPMENT RADIOACTIVE DURING OPERATION sign"; + pixel_y = 32 + }, +/obj/item/tape/engineering{ + icon_state = "engineering_door" + }, +/turf/simulated/floor/tiled/dark, +/area/quarantined_outpost/research) +"tPi" = ( +/obj/effect/floor_decal/corner/dark_blue{ + dir = 10 + }, +/obj/random/dirt_75, +/turf/simulated/floor/tiled, +/area/quarantined_outpost/dorm_hallway) +"tPl" = ( +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 6 + }, +/obj/structure/lattice/catwalk/indoor, +/turf/simulated/floor/plating, +/area/quarantined_outpost/engineering/atmospherics) +"tPt" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/obj/machinery/meter, +/obj/machinery/atmospherics/pipe/manifold/visible/cyan, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/turf/simulated/floor/plating, +/area/quarantined_outpost/engineering/atmospherics) +"tPu" = ( +/obj/structure/platform_stairs/full{ + dir = 1 + }, +/obj/structure/platform{ + dir = 8 + }, +/obj/structure/platform_deco{ + dir = 1 + }, +/obj/effect/floor_decal/industrial/outline_door/custodial{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 1 + }, +/turf/simulated/floor/tiled/dark, +/area/quarantined_outpost/research) +"tPz" = ( +/obj/structure/bed/stool/chair/folding{ + dir = 4 + }, +/obj/effect/floor_decal/corner/lime{ + dir = 8 + }, +/obj/effect/decal/cleanable/blood, +/turf/simulated/floor/tiled, +/area/quarantined_outpost/cafeteria) +"tQr" = ( +/obj/structure/flora/rock/pile/random, +/turf/simulated/floor/exoplanet/basalt, +/area/quarantined_outpost/research) +"tQH" = ( +/obj/structure/flora/rock/stalagmite/random, +/turf/simulated/floor/exoplanet/basalt, +/area/quarantined_outpost/engineering/tunnel) +"tRe" = ( +/obj/effect/floor_decal/corner/mauve{ + dir = 5 + }, +/obj/random/dirt_75, +/obj/effect/decal/cleanable/floor_damage/rust, +/turf/simulated/floor/tiled/white, +/area/quarantined_outpost/extraction_lab) +"tRf" = ( +/obj/effect/floor_decal/corner/brown{ + dir = 10 + }, +/obj/random/dirt_75, +/obj/random/dirt_75, +/obj/effect/decal/cleanable/floor_damage/rust, +/obj/machinery/alarm/south, +/turf/simulated/floor/tiled, +/area/quarantined_outpost/cargo_bay) +"tRl" = ( +/obj/structure/table/wood, +/obj/item/reagent_containers/food/drinks/drinkingglass/newglass/coffeecup/one{ + pixel_x = 10 + }, +/obj/item/modular_computer/laptop/preset/civilian{ + pixel_x = -10; + pixel_y = 8 + }, +/obj/random/dirt_75, +/obj/random/dirt_75, +/turf/simulated/floor/carpet/brown, +/area/quarantined_outpost/cargo_bay) +"tRU" = ( +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/effect/decal/cleanable/floor_damage/random_burned, +/obj/machinery/atmospherics/pipe/simple/hidden/yellow, +/turf/simulated/floor/tiled/dark/full, +/area/quarantined_outpost/research/containment) +"tSa" = ( +/obj/machinery/light/small/emergency{ + dir = 8 + }, +/obj/structure/closet, +/obj/random/loot, +/turf/simulated/floor/plating, +/area/quarantined_outpost/cargo_bay) +"tSd" = ( +/obj/structure/bed/stool/chair/folding, +/obj/effect/floor_decal/corner/lime, +/obj/random/dirt_75, +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/simulated/floor/tiled, +/area/quarantined_outpost/cafeteria) +"tSe" = ( +/obj/machinery/atmospherics/pipe/simple/visible/yellow{ + dir = 8 + }, +/turf/simulated/floor/reinforced/airless, +/area/quarantined_outpost/engineering/atmospherics) +"tSB" = ( +/obj/effect/floor_decal/corner/brown{ + dir = 5 + }, +/obj/structure/table/standard, +/obj/structure/noticeboard{ + pixel_y = 32 + }, +/obj/item/paper_bin{ + pixel_x = -5 + }, +/turf/simulated/floor/tiled, +/area/quarantined_outpost/cargo_bay) +"tTe" = ( +/obj/structure/lattice/catwalk/indoor, +/obj/machinery/light/small/maybe_broken/decayed{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/quarantined_outpost/engineering/atmospherics) +"tUb" = ( +/obj/effect/floor_decal/corner/dark_blue{ + dir = 9 + }, +/obj/random/dirt_75, +/turf/simulated/floor/tiled, +/area/quarantined_outpost/entrance_lobby) +"tUf" = ( +/obj/effect/floor_decal/corner/mauve/full{ + dir = 4 + }, +/obj/structure/sign/flag/venus{ + pixel_y = -32 + }, +/turf/simulated/floor/tiled/light, +/area/quarantined_outpost/research) +"tUS" = ( +/obj/random/dirt_75, +/obj/random/dirt_75, +/obj/structure/cable/orange{ + icon_state = "1-8" + }, +/turf/simulated/floor/plating/asteroid/airless, +/area/quarantined_outpost/exterior) +"tVi" = ( +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/effect/floor_decal/industrial/loading/yellow{ + dir = 8 + }, +/obj/effect/decal/cleanable/floor_damage/rust, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 + }, +/turf/simulated/floor/tiled, +/area/quarantined_outpost/cargo_bay) +"tVn" = ( +/obj/random/dirt_75, +/obj/structure/barricade/wooden{ + dir = 8 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/structure/sign/directions/tcom{ + dir = 8; + pixel_y = 32 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled/gunmetal, +/area/quarantined_outpost/engineering) +"tVV" = ( +/obj/effect/map_effect/marker/airlock/quarantined_outpost/entrance, +/obj/effect/floor_decal/industrial/outline_door/yellow, +/obj/random/dirt_75, +/obj/random/dirt_75, +/obj/machinery/atmospherics/unary/vent_pump/high_volume{ + dir = 1 + }, +/obj/effect/floor_decal/industrial/outline_segment/yellow{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/quarantined_outpost/entrance_lobby) +"tVW" = ( +/obj/structure/lattice, +/obj/machinery/atmospherics/pipe/simple/hidden/yellow{ + dir = 8 + }, +/turf/simulated/floor/exoplanet/abyss, +/area/quarantined_outpost/research/containment) +"tWf" = ( +/obj/structure/sign/directions/tcom{ + pixel_x = 32; + dir = 4 + }, +/obj/random/dirt_75, +/obj/structure/closet, +/obj/random/loot, +/turf/simulated/floor/plating, +/area/quarantined_outpost/cargo_bay) +"tWs" = ( +/obj/machinery/door/firedoor{ + dir = 4 + }, +/obj/effect/floor_decal/industrial/hatch/yellow, +/obj/random/dirt_75, +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/full, +/area/quarantined_outpost/elevator_hallway) +"tWy" = ( +/obj/random/dirt_75, +/obj/machinery/light/small/emergency{ + dir = 1 + }, +/turf/simulated/floor/plating/asteroid/airless, +/area/quarantined_outpost/exterior/powered) +"tWJ" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 8 + }, +/obj/random/dirt_75, +/turf/simulated/floor/plating, +/area/quarantined_outpost/research) +"tXh" = ( +/obj/effect/floor_decal/corner/dark_blue{ + dir = 1 + }, +/obj/effect/floor_decal/industrial/outline_door/yellow{ + dir = 4 + }, +/obj/structure/railing/mapped{ + dir = 1 + }, +/obj/random/dirt_75, +/turf/simulated/floor/tiled/dark/full, +/area/quarantined_outpost/engineering/atmospherics) +"tXn" = ( +/obj/effect/floor_decal/spline/fancy/wood/cee{ + dir = 4 + }, +/obj/structure/flora/grass/desert/bush{ + name = "withered grass" + }, +/turf/simulated/floor/exoplanet/barren, +/area/quarantined_outpost/elevator_hallway) +"tXr" = ( +/obj/effect/floor_decal/industrial/outline_straight/yellow{ + dir = 1 + }, +/obj/effect/floor_decal/industrial/outline_straight/yellow{ + dir = 8 + }, +/obj/random/dirt_75, +/turf/simulated/floor/tiled/dark/full, +/area/quarantined_outpost/research/containment) +"tXJ" = ( +/obj/structure/lattice/catwalk, +/obj/structure/railing/mapped{ + dir = 4 + }, +/obj/item/hullbeacon/red, +/turf/simulated/floor/exoplanet/abyss, +/area/quarantined_outpost/chasm) +"tYf" = ( +/obj/effect/floor_decal/industrial/arrow/yellow, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/quarantined_outpost/reception) +"tZm" = ( +/obj/random/dirt_75, +/obj/effect/floor_decal/corner/yellow{ + dir = 10 + }, +/obj/effect/decal/cleanable/floor_damage/rust, +/turf/simulated/floor/tiled/gunmetal, +/area/quarantined_outpost/engineering) +"tZv" = ( +/obj/structure/weightlifter, +/turf/simulated/floor/carpet/rubber, +/area/quarantined_outpost/gym) +"tZx" = ( +/obj/machinery/atmospherics/pipe/tank/air{ + dir = 8 + }, +/turf/simulated/floor/reinforced, +/area/quarantined_outpost/engineering/atmospherics) +"tZC" = ( +/obj/effect/floor_decal/spline/plain/corner/black{ + dir = 8 + }, +/obj/random/dirt_75, +/obj/effect/decal/cleanable/floor_damage/rust, +/turf/simulated/floor/tiled/ridged, +/area/quarantined_outpost/extraction_lab) +"uaa" = ( +/obj/effect/floor_decal/corner/dark_blue, +/obj/effect/floor_decal/corner/yellow{ + dir = 8 + }, +/obj/effect/floor_decal/corner/dark_blue{ + dir = 1 + }, +/obj/machinery/light/small/maybe_broken/decayed, +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/dark, +/area/quarantined_outpost/engineering/atmospherics) +"uaz" = ( +/obj/effect/floor_decal/corner/dark_blue{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/quarantined_outpost/elevator_hallway) +"uaB" = ( +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/machinery/computer/terminal/inactive{ + dir = 4 + }, +/turf/simulated/floor/tiled/ridged, +/area/quarantined_outpost/server_relay/north_west) +"ube" = ( +/obj/random/dirt_75, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 8 + }, +/turf/simulated/floor/tiled/dark/full, +/area/quarantined_outpost/engineering/atmospherics) +"ubG" = ( +/obj/effect/floor_decal/spline/plain/black, +/obj/structure/table/glass, +/obj/random/loot, +/obj/random/dirt_75, +/obj/random/dirt_75, +/turf/simulated/floor/lino, +/area/quarantined_outpost/cafeteria) +"ubR" = ( +/obj/machinery/shower{ + dir = 1; + pixel_y = -8 + }, +/obj/effect/floor_decal/concrete/gutter, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/curtain/open/shower, +/turf/simulated/floor/marble, +/area/quarantined_outpost/gym) +"ubX" = ( +/obj/random/dirt_75, +/obj/abstract/footprint_spawner/body{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/quarantined_outpost/reception) +"uct" = ( +/obj/effect/landmark/corpse/husk/engineer, +/obj/random/dirt_75, +/obj/random/dirt_75, +/turf/simulated/floor/exoplanet/asteroid/ash/rocky, +/area/quarantined_outpost/exterior) +"ucv" = ( +/obj/effect/floor_decal/corner/grey/diagonal, +/obj/effect/decal/cleanable/blood, +/turf/simulated/floor/tiled/white, +/area/quarantined_outpost/cafeteria) +"ucM" = ( +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/effect/floor_decal/industrial/warning{ + dir = 10 + }, +/obj/structure/closet/radiation, +/obj/random/dirt_75, +/turf/simulated/floor/tiled/dark/full, +/area/quarantined_outpost/research) +"ucP" = ( +/obj/effect/floor_decal/corner/dark_blue{ + dir = 5 + }, +/obj/machinery/light/floor/maybe_broken/decayed{ + dir = 1 + }, +/obj/structure/cable{ + 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/quarantined_outpost/dorm_hallway) +"ucQ" = ( +/obj/effect/floor_decal/corner/brown{ + dir = 8 + }, +/obj/random/dirt_75, +/obj/effect/decal/cleanable/floor_damage/rust, +/turf/simulated/floor/tiled, +/area/quarantined_outpost/cargo_bay) +"ucS" = ( +/obj/machinery/door/firedoor{ + dir = 4 + }, +/obj/machinery/door/airlock/maintenance_hatch{ + dir = 4; + welded = 1; + name = "Winch Operations" + }, +/obj/effect/floor_decal/industrial/hatch_door/yellow, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 8 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled/gunmetal/full, +/area/quarantined_outpost/engineering/winch_room) +"udo" = ( +/obj/random/dirt_75, +/obj/effect/decal/cleanable/floor_damage/rust, +/turf/simulated/floor/tiled, +/area/quarantined_outpost/cargo_bay) +"udx" = ( +/obj/effect/floor_decal/industrial/outline_door/yellow{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/quarantined_outpost/entrance_lobby) +"udy" = ( +/obj/effect/floor_decal/corner/dark_blue{ + dir = 8 + }, +/obj/random/dirt_75, +/obj/structure/cable{ + icon_state = "2-8" + }, +/turf/simulated/floor/tiled, +/area/quarantined_outpost/elevator_hallway) +"udE" = ( +/obj/effect/floor_decal/industrial/hatch_door/yellow{ + dir = 1 + }, +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/glass_security, +/obj/machinery/door/blast/regular{ + dir = 4 + }, +/turf/simulated/floor/tiled/full/airless, +/area/quarantined_outpost/security) +"uei" = ( +/obj/effect/floor_decal/corner/black{ + dir = 9 + }, +/obj/structure/bed/stool/chair/folding, +/obj/effect/decal/cleanable/cobweb, +/turf/simulated/floor/tiled, +/area/quarantined_outpost/dorm_hallway) +"uet" = ( +/obj/effect/floor_decal/corner/dark_blue{ + dir = 1 + }, +/obj/effect/floor_decal/corner/yellow{ + dir = 8 + }, +/obj/random/dirt_75, +/turf/simulated/floor/tiled/dark, +/area/quarantined_outpost/engineering/atmospherics) +"ueu" = ( +/obj/effect/floor_decal/corner/yellow{ + dir = 4 + }, +/obj/effect/floor_decal/corner/dark_blue{ + dir = 1 + }, +/obj/random/dirt_75, +/obj/effect/decal/cleanable/floor_damage/rust, +/turf/simulated/floor/tiled/dark, +/area/quarantined_outpost/engineering/atmospherics) +"ueI" = ( +/obj/effect/floor_decal/industrial/outline_door/grey{ + dir = 1 + }, +/obj/effect/floor_decal/industrial/outline_segment/grey{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/quarantined_outpost/elevator_hallway) +"ueO" = ( +/obj/random/dirt_75, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/effect/floor_decal/industrial/outline/security, +/obj/structure/environmental_storytelling_holopad/quarantined_outpost/console_inform, +/turf/simulated/floor/tiled/rust, +/area/quarantined_outpost/reception) +"ufd" = ( +/obj/effect/floor_decal/corner_wide/lime{ + dir = 5 + }, +/obj/structure/bed/stool/chair, +/obj/structure/sign/nosmoking_1{ + pixel_y = 32 + }, +/obj/effect/decal/cleanable/floor_damage/rust, +/turf/simulated/floor/tiled/white, +/area/quarantined_outpost/medbay) +"ufj" = ( +/obj/effect/floor_decal/spline/plain/black{ + dir = 4 + }, +/obj/structure/railing/mapped{ + dir = 4 + }, +/obj/machinery/floodlight/randomcharge{ + dir = 4 + }, +/obj/effect/decal/cleanable/floor_damage/rust, +/turf/simulated/floor/tiled/white, +/area/quarantined_outpost/extraction_lab) +"ufx" = ( +/obj/machinery/door/airlock/maintenance_hatch{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/simulated/floor/plating, +/area/quarantined_outpost/engineering) +"ufM" = ( +/obj/random/dirt_75, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/quarantined_outpost/dorm_hallway) +"ugL" = ( +/obj/machinery/atmospherics/unary/freezer, +/obj/effect/floor_decal/industrial/warning, +/turf/simulated/floor/carpet/rubber, +/area/quarantined_outpost/engineering/atmospherics) +"uhe" = ( +/obj/structure/lattice, +/obj/machinery/atmospherics/pipe/simple/hidden/yellow, +/turf/simulated/floor/exoplanet/abyss, +/area/quarantined_outpost/research/containment) +"uhI" = ( +/obj/structure/railing/mapped{ + dir = 1; + pixel_y = 5 + }, +/turf/simulated/floor/tiled/ramp{ + dir = 8 + }, +/area/quarantined_outpost/engineering/winch_room) +"uhL" = ( +/obj/effect/floor_decal/industrial/hatch/operations, +/obj/machinery/papershredder, +/obj/structure/sign/flag/pluto{ + pixel_y = -32 + }, +/turf/simulated/floor/tiled/dark/full, +/area/quarantined_outpost/cargo_bay) +"uhS" = ( +/obj/effect/floor_decal/corner/mauve/diagonal, +/obj/random/dirt_75, +/obj/structure/cable{ + 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/light, +/area/quarantined_outpost/research) +"uij" = ( +/obj/effect/floor_decal/corner/dark_green{ + dir = 9 + }, +/obj/effect/floor_decal/spline/plain/black{ + dir = 1 + }, +/obj/random/dirt_75, +/obj/structure/closet/crate/bin{ + pixel_x = -7 + }, +/turf/simulated/floor/tiled, +/area/quarantined_outpost/gym) +"uix" = ( +/obj/random/dirt_75, +/obj/random/dirt_75, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled/gunmetal/full, +/area/quarantined_outpost/engineering/tunnel) +"uiN" = ( +/obj/structure/railing/mapped{ + dir = 4 + }, +/obj/structure/lattice/catwalk/indoor/grate/dark, +/obj/structure/reagent_dispensers/fueltank, +/obj/effect/decal/rolling_fog, +/turf/simulated/floor/plating, +/area/quarantined_outpost/research) +"ujc" = ( +/obj/machinery/door/window/southright, +/turf/simulated/floor/tiled/dark/full, +/area/quarantined_outpost/reception) +"ujq" = ( +/obj/structure/platform/ledge/dark{ + dir = 4 + }, +/obj/machinery/light/small/maybe_broken/decayed, +/turf/simulated/floor/exoplanet/abyss, +/area/quarantined_outpost/research/containment) +"ujI" = ( +/obj/structure/closet, +/obj/random/loot, +/turf/simulated/floor/plating, +/area/quarantined_outpost/entrance_maintenance) +"ujP" = ( +/obj/machinery/computer/terminal/inactive{ + dir = 4 + }, +/obj/effect/floor_decal/spline/plain/black{ + dir = 8 + }, +/obj/structure/railing/mapped{ + dir = 8 + }, +/turf/simulated/floor/tiled/white, +/area/quarantined_outpost/extraction_lab) +"ujX" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/structure/lattice/catwalk/indoor/grate, +/turf/simulated/floor/plating, +/area/quarantined_outpost/entrance_lobby) +"uka" = ( +/obj/effect/floor_decal/corner/red{ + dir = 6 + }, +/obj/structure/platform/dark{ + dir = 8 + }, +/obj/item/material/stool{ + dir = 4 + }, +/obj/abstract/footprint_spawner/body{ + dir = 8 + }, +/obj/abstract/footprint_spawner_turn_helper, +/obj/random/dirt_75, +/turf/simulated/floor/tiled/dark, +/area/quarantined_outpost/research) +"uki" = ( +/obj/effect/floor_decal/corner/grey/diagonal, +/obj/abstract/footprint_spawner{ + dir = 1 + }, +/obj/abstract/footprint_spawner_turn_helper{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/quarantined_outpost/cafeteria) +"ukq" = ( +/obj/machinery/conveyor{ + dir = 8 + }, +/obj/structure/closet/crate/loot, +/turf/simulated/floor/tiled/dark/full, +/area/quarantined_outpost/cargo_bay) +"ukE" = ( +/obj/random/dirt_75, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 8 + }, +/turf/simulated/floor/tiled/full, +/area/quarantined_outpost/elevator_hallway) +"ukZ" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 8 + }, +/turf/simulated/floor/tiled/full, +/area/quarantined_outpost/dorm_hallway) +"ulu" = ( +/obj/effect/floor_decal/spline/plain/black{ + dir = 8 + }, +/obj/structure/railing/mapped{ + dir = 8 + }, +/obj/random/dirt_75, +/obj/machinery/light/small/maybe_broken/decayed{ + dir = 8 + }, +/turf/simulated/floor/tiled/gunmetal, +/area/quarantined_outpost/engineering/tunnel) +"ulU" = ( +/obj/structure/table/standard, +/obj/item/paper/fluff/quarantined_outpost/cafeteria_note{ + pixel_y = 7; + pixel_x = 6 + }, +/turf/simulated/floor/tiled/bitile/middle{ + dir = 4 + }, +/area/quarantined_outpost/cafeteria) +"umN" = ( +/obj/structure/stairs_railing{ + pixel_y = -16 + }, +/turf/simulated/floor/exoplanet/abyss, +/area/quarantined_outpost/chasm) +"unf" = ( +/obj/item/hullbeacon/red, +/obj/random/dirt_75, +/obj/random/dirt_75, +/turf/simulated/floor/plating/asteroid/airless, +/area/quarantined_outpost/exterior) +"unh" = ( +/obj/structure/platform_deco/dark{ + dir = 1 + }, +/obj/random/dirt_75, +/obj/random/dirt_75, +/turf/simulated/floor/plating, +/area/quarantined_outpost/engineering/atmospherics) +"unB" = ( +/obj/effect/floor_decal/corner_wide/paleblue{ + dir = 6 + }, +/obj/structure/closet/walllocker/secure{ + pixel_x = 32 + }, +/obj/random/loot, +/obj/outfit/admin/sol_private, +/obj/random/dirt_75, +/turf/simulated/floor/tiled/airless, +/area/quarantined_outpost/security) +"unE" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/structure/cable{ + icon_state = "1-8" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 4 + }, +/obj/structure/lattice/catwalk/indoor/grate/dark, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/quarantined_outpost/engineering/tunnel) +"unY" = ( +/obj/effect/decal/cleanable/floor_damage/random_broken, +/obj/effect/decal/cleanable/molten_item, +/turf/simulated/floor/tiled/full, +/area/quarantined_outpost/cargo_bay) +"uop" = ( +/obj/effect/floor_decal/corner/black/full{ + dir = 4 + }, +/obj/structure/closet/cabinet, +/obj/outfit/admin/generic, +/obj/random/loot, +/turf/simulated/floor/tiled, +/area/quarantined_outpost/dorm_hallway) +"uoB" = ( +/obj/structure/table/standard, +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/machinery/recharger{ + pixel_y = 9; + pixel_x = 2 + }, +/obj/machinery/recharger{ + pixel_y = 9; + pixel_x = -8 + }, +/turf/simulated/floor/tiled/dark/full/airless, +/area/quarantined_outpost/security) +"upi" = ( +/obj/effect/floor_decal/corner/dark_blue, +/obj/structure/bookcase/libraryspawn/fiction, +/turf/simulated/floor/tiled, +/area/quarantined_outpost/reception) +"upN" = ( +/obj/effect/floor_decal/corner/dark_blue{ + dir = 6 + }, +/obj/random/dirt_75, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/quarantined_outpost/north_east_hallway) +"uqe" = ( +/turf/simulated/floor/tiled, +/area/quarantined_outpost/north_east_hallway) +"uqt" = ( +/obj/abstract/footprint_spawner/body{ + dir = 4 + }, +/obj/random/dirt_75, +/turf/simulated/floor/plating, +/area/quarantined_outpost/elevator_hallway/maintenance) +"uqD" = ( +/obj/effect/floor_decal/corner_wide/paleblue{ + dir = 10 + }, +/obj/random/dirt_75, +/obj/effect/decal/cleanable/floor_damage/random_broken, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled/airless, +/area/quarantined_outpost/security) +"uqW" = ( +/obj/effect/floor_decal/corner/yellow{ + dir = 5 + }, +/obj/random/dirt_75, +/obj/random/dirt_75, +/obj/machinery/door/window/brigdoor/northleft, +/obj/effect/decal/cleanable/floor_damage/rust, +/turf/simulated/floor/tiled/dark, +/area/quarantined_outpost/engineering/winch_room) +"urc" = ( +/obj/random/junk, +/turf/simulated/floor/tiled/airless, +/area/quarantined_outpost/security) +"url" = ( +/obj/effect/floor_decal/industrial/warning, +/obj/machinery/meter, +/obj/machinery/atmospherics/pipe/manifold/visible/yellow{ + dir = 1 + }, +/turf/simulated/floor/plating, +/area/quarantined_outpost/engineering/atmospherics) +"urE" = ( +/obj/effect/decal/cleanable/blood, +/turf/simulated/floor/plating, +/area/quarantined_outpost/elevator_hallway/maintenance) +"urK" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/lattice/catwalk/indoor/grate/dark, +/turf/simulated/floor/plating, +/area/quarantined_outpost/engineering/atmospherics) +"urS" = ( +/obj/machinery/door/airlock/hatch, +/obj/random/dirt_75, +/turf/simulated/floor/plating, +/area/quarantined_outpost/dorm_hallway) +"usA" = ( +/obj/random/dirt_75, +/obj/structure/flora/rock/stalagmite/random, +/turf/simulated/floor/exoplanet/asteroid/ash/rocky, +/area/quarantined_outpost/exterior) +"usH" = ( +/obj/effect/floor_decal/corner/dark_blue{ + dir = 9 + }, +/turf/simulated/floor/tiled/rust, +/area/quarantined_outpost/dorm_hallway) +"usP" = ( +/obj/machinery/light/small/maybe_broken/decayed{ + dir = 8 + }, +/obj/random/dirt_75, +/turf/simulated/floor/plating, +/area/quarantined_outpost/cargo_bay) +"utf" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/quarantined_outpost/research) +"utl" = ( +/obj/structure/barricade/wooden/road, +/obj/random/dirt_75, +/turf/simulated/floor/exoplanet/asteroid/ash/rocky, +/area/quarantined_outpost/exterior) +"uts" = ( +/obj/random/dirt_75, +/obj/structure/bed/stool/chair{ + dir = 1 + }, +/obj/effect/floor_decal/corner_wide/paleblue{ + dir = 8 + }, +/obj/machinery/light/maybe_broken/decayed, +/turf/simulated/floor/tiled, +/area/quarantined_outpost/elevator_hallway) +"utz" = ( +/obj/structure/lattice/catwalk/indoor/grate/damaged, +/turf/simulated/floor/plating, +/area/quarantined_outpost/elevator_hallway) +"utI" = ( +/obj/structure/bed/handrail{ + dir = 1 + }, +/obj/random/dirt_75, +/obj/random/dirt_75, +/turf/simulated/floor/tiled/dark, +/area/quarantined_outpost/research) +"uuE" = ( +/obj/effect/floor_decal/corner_wide/paleblue{ + dir = 6 + }, +/obj/random/dirt_75, +/obj/random/dirt_75, +/obj/effect/decal/cleanable/floor_damage/random_broken, +/turf/simulated/floor/tiled/airless, +/area/quarantined_outpost/security) +"uuI" = ( +/obj/random/dirt_75, +/obj/random/dirt_75, +/obj/random/dirt_75, +/obj/structure/cable/orange{ + icon_state = "1-8" + }, +/turf/simulated/floor/plating/asteroid/airless, +/area/quarantined_outpost/exterior) +"uuL" = ( +/obj/random/dirt_75, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/quarantined_outpost/elevator_hallway) +"uuS" = ( +/obj/effect/floor_decal/spline/plain/black{ + dir = 1 + }, +/obj/effect/floor_decal/spline/plain/black, +/obj/random/dirt_75, +/turf/simulated/floor/tiled, +/area/quarantined_outpost/gym) +"uvk" = ( +/obj/random/dirt_75, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 1 + }, +/obj/effect/landmark/trapped_vent/maybe/quarantined_outpost, +/turf/simulated/floor/tiled, +/area/quarantined_outpost/cafeteria) +"uvv" = ( +/obj/random/dirt_75, +/obj/random/dirt_75, +/obj/structure/cable/orange{ + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/dark/full/airless, +/area/quarantined_outpost/auxiliary_power) +"uvC" = ( +/obj/structure/lattice/catwalk, +/turf/simulated/floor/exoplanet/basalt, +/area/quarantined_outpost/research) +"uwc" = ( +/obj/machinery/computer/terminal/inactive{ + dir = 8 + }, +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/machinery/door/firedoor{ + dir = 4 + }, +/turf/simulated/floor/tiled/gunmetal/full, +/area/quarantined_outpost/engineering) +"uwC" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/simulated/floor/tiled, +/area/quarantined_outpost/dorm_hallway) +"uwO" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/supply, +/obj/structure/lattice/catwalk/indoor/grate/light, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 1 + }, +/turf/simulated/floor/plating, +/area/quarantined_outpost/research) +"uwP" = ( +/obj/random/dirt_75, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled/gunmetal/full, +/area/quarantined_outpost/engineering) +"uwW" = ( +/obj/random/dirt_75, +/obj/random/dirt_75, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/abstract/footprint_spawner/body{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/quarantined_outpost/reception) +"uxP" = ( +/obj/structure/filingcabinet/chestdrawer{ + pixel_x = -8; + pixel_y = 9 + }, +/obj/effect/floor_decal/corner_wide/paleblue{ + dir = 5 + }, +/turf/simulated/floor/tiled/airless, +/area/quarantined_outpost/security) +"uyi" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, +/turf/simulated/floor/tiled/rust, +/area/quarantined_outpost/dorm_hallway) +"uyB" = ( +/turf/simulated/wall/r_wall, +/area/quarantined_outpost/exterior) +"uzv" = ( +/obj/effect/floor_decal/corner/yellow{ + dir = 8 + }, +/obj/effect/floor_decal/corner/dark_blue{ + dir = 1 + }, +/obj/random/dirt_75, +/obj/machinery/light/small/maybe_broken/decayed{ + dir = 8 + }, +/turf/simulated/floor/tiled/gunmetal, +/area/quarantined_outpost/engineering/atmospherics) +"uzy" = ( +/obj/structure/lattice/catwalk, +/obj/structure/railing/mapped{ + dir = 1 + }, +/obj/structure/railing/mapped{ + dir = 8 + }, +/obj/item/hullbeacon/red, +/turf/simulated/floor/exoplanet/abyss, +/area/quarantined_outpost/engineering/winch_room) +"uzN" = ( +/obj/effect/floor_decal/industrial/outline_door/custodial, +/obj/effect/floor_decal/industrial/outline_segment/research{ + dir = 4 + }, +/obj/effect/floor_decal/industrial/outline_segment/research{ + dir = 10 + }, +/obj/effect/decal/cleanable/floor_damage/rust, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, +/turf/simulated/floor/tiled/light, +/area/quarantined_outpost/research) +"uzX" = ( +/obj/effect/floor_decal/corner/mauve{ + dir = 9 + }, +/obj/effect/floor_decal/spline/plain/purple{ + dir = 8 + }, +/obj/effect/landmark/quarantined_outpost/creature, +/turf/simulated/floor/tiled/light, +/area/quarantined_outpost/research) +"uAb" = ( +/obj/effect/floor_decal/corner/mauve{ + dir = 6 + }, +/obj/effect/floor_decal/spline/plain/purple{ + dir = 4 + }, +/obj/effect/decal/cleanable/floor_damage/rust, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled/light, +/area/quarantined_outpost/research) +"uAv" = ( +/obj/random/maintenance_junk_or_loot, +/obj/random/civgun, +/turf/simulated/floor/exoplanet/basalt, +/area/quarantined_outpost/engineering/atmospherics) +"uAD" = ( +/obj/effect/floor_decal/spline/plain/black{ + dir = 1 + }, +/obj/random/dirt_75, +/obj/structure/cable{ + icon_state = "2-4" + }, +/obj/effect/landmark/quarantined_outpost/creature, +/turf/simulated/floor/tiled/gunmetal, +/area/quarantined_outpost/north_east_hallway) +"uAE" = ( +/obj/machinery/door/airlock/maintenance_hatch{ + dir = 4 + }, +/obj/machinery/door/firedoor{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/quarantined_outpost/elevator_hallway) +"uBo" = ( +/obj/effect/floor_decal/corner/yellow{ + dir = 10 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/effect/decal/cleanable/floor_damage/rust, +/turf/simulated/floor/tiled/gunmetal, +/area/quarantined_outpost/engineering) +"uBs" = ( +/obj/effect/floor_decal/industrial/hatch/yellow, +/obj/machinery/door/firedoor{ + dir = 8 + }, +/obj/random/dirt_75, +/turf/simulated/floor/tiled/full, +/area/quarantined_outpost/cargo_bay) +"uBu" = ( +/obj/effect/decal/cleanable/floor_damage/random_burned, +/turf/simulated/floor/reinforced, +/area/quarantined_outpost/research/containment) +"uCp" = ( +/obj/structure/table/reinforced/steel, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/item/reagent_containers/food/drinks/drinkingglass/newglass/coffeecup/sol{ + pixel_y = -2; + pixel_x = 10 + }, +/obj/item/paper_bin{ + pixel_y = 8; + pixel_x = -4 + }, +/obj/effect/decal/cleanable/cobweb, +/turf/simulated/floor/tiled/dark/full, +/area/quarantined_outpost/reception) +"uCx" = ( +/obj/machinery/computer/terminal/inactive, +/obj/effect/floor_decal/industrial/hatch/yellow, +/turf/simulated/floor/tiled/bitile/middle{ + dir = 4 + }, +/area/quarantined_outpost/research) +"uCy" = ( +/obj/effect/floor_decal/corner_wide/lime{ + dir = 10 + }, +/obj/effect/floor_decal/industrial/outline/grey, +/obj/effect/decal/cleanable/floor_damage/rust, +/obj/machinery/alarm/south, +/turf/simulated/floor/tiled/white, +/area/quarantined_outpost/medbay) +"uCR" = ( +/obj/effect/shuttle_landmark/quarantined_outpost/space/space_2d, +/turf/template_noop, +/area/space) +"uDy" = ( +/obj/effect/floor_decal/industrial/hatch/yellow, +/obj/machinery/door/firedoor/noid/closed{ + dir = 4; + blocked = 1 + }, +/turf/simulated/floor/tiled/white, +/area/quarantined_outpost/medbay) +"uDA" = ( +/obj/item/ammo_casing/rifle/used{ + pixel_y = -3; + pixel_x = -2 + }, +/obj/random/dirt_75, +/turf/simulated/floor/tiled/dark/airless, +/area/quarantined_outpost/security) +"uEn" = ( +/turf/simulated/floor/plating, +/area/quarantined_outpost/entrance_maintenance) +"uEM" = ( +/obj/effect/floor_decal/corner/dark_blue{ + dir = 10 + }, +/obj/random/dirt_75, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/quarantined_outpost/north_east_hallway) +"uEN" = ( +/obj/random/dirt_75, +/turf/simulated/floor/exoplanet/asteroid/ash/rocky, +/area/quarantined_outpost/exterior) +"uFd" = ( +/obj/random/dirt_75, +/obj/random/dirt_75, +/obj/random/dirt_75, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/quarantined_outpost/elevator_hallway) +"uFr" = ( +/obj/machinery/door/firedoor, +/obj/effect/floor_decal/industrial/hatch_door/yellow{ + dir = 1 + }, +/obj/machinery/door/airlock/glass, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 1 + }, +/turf/simulated/floor/tiled/full, +/area/quarantined_outpost/reception) +"uFy" = ( +/obj/structure/railing/mapped{ + dir = 1 + }, +/obj/structure/railing/mapped{ + dir = 8 + }, +/turf/simulated/floor/tiled/light/full, +/area/quarantined_outpost/research) +"uFS" = ( +/obj/effect/floor_decal/spline/plain/black{ + dir = 4 + }, +/obj/random/dirt_75, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/quarantined_outpost/reception) +"uFU" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/fuel{ + dir = 4 + }, +/obj/random/dirt_75, +/turf/simulated/floor/plating, +/area/quarantined_outpost/engineering/atmospherics) +"uGf" = ( +/obj/structure/lattice/catwalk, +/obj/structure/railing/mapped{ + dir = 8 + }, +/turf/simulated/floor/exoplanet/abyss, +/area/quarantined_outpost/engineering/winch_room) +"uGk" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold4w/hidden, +/obj/structure/tank_wall/hydrogen{ + icon_state = "h13" + }, +/turf/simulated/floor/plating, +/area/quarantined_outpost/engineering/atmospherics) +"uGw" = ( +/obj/effect/decal/cleanable/floor_damage/rust, +/obj/structure/platform{ + dir = 1 + }, +/turf/simulated/floor/tiled/ridged, +/area/quarantined_outpost/extraction_lab) +"uHd" = ( +/obj/machinery/atmospherics/pipe/tank/air{ + dir = 4 + }, +/turf/simulated/floor/reinforced, +/area/quarantined_outpost/engineering/atmospherics) +"uHe" = ( +/obj/machinery/door/airlock/maintenance_hatch, +/obj/structure/lattice/catwalk/indoor/grate, +/obj/machinery/door/firedoor, +/turf/simulated/floor/plating, +/area/quarantined_outpost/cargo_bay) +"uHH" = ( +/obj/machinery/light/floor/maybe_broken/decayed{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/quarantined_outpost/cargo_bay) +"uIa" = ( +/obj/effect/map_effect/window_spawner/full/reinforced/firedoor, +/turf/simulated/floor/tiled/dark/full, +/area/quarantined_outpost/north_east_hallway) +"uIl" = ( +/obj/effect/floor_decal/corner/mauve{ + dir = 8 + }, +/obj/structure/platform_stairs/full/south_north_cap/half{ + dir = 8 + }, +/obj/effect/decal/cleanable/floor_damage/rust, +/obj/machinery/alarm/south, +/turf/simulated/floor/tiled/light, +/area/quarantined_outpost/research) +"uIS" = ( +/obj/effect/floor_decal/industrial/outline_door/yellow{ + dir = 4 + }, +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 1 + }, +/obj/effect/floor_decal/industrial/outline_segment/yellow{ + dir = 6 + }, +/obj/effect/decal/cleanable/floor_damage/rust, +/obj/random/dirt_75, +/obj/random/dirt_75, +/turf/simulated/floor/tiled, +/area/quarantined_outpost/cargo_bay) +"uIX" = ( +/obj/abstract/footprint_spawner/oil{ + dir = 8 + }, +/turf/simulated/floor/exoplanet/basalt, +/area/quarantined_outpost/engineering/atmospherics) +"uJa" = ( +/obj/effect/floor_decal/corner_wide/lime{ + dir = 5 + }, +/obj/random/dirt_75, +/obj/machinery/atmospherics/unary/vent_pump/on, +/turf/simulated/floor/tiled/white, +/area/quarantined_outpost/medbay) +"uJv" = ( +/obj/structure/table/standard, +/obj/random/loot, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, +/turf/simulated/floor/tiled/dark/full, +/area/quarantined_outpost/elevator_hallway) +"uKm" = ( +/obj/structure/lattice/catwalk, +/obj/structure/railing/mapped{ + dir = 4 + }, +/obj/random/maintenance_junk_or_loot, +/turf/simulated/floor/exoplanet/abyss, +/area/quarantined_outpost/engineering/atmospherics) +"uKt" = ( +/obj/structure/bed/stool/chair/office/light{ + dir = 8 + }, +/obj/random/dirt_75, +/turf/simulated/floor/tiled/white, +/area/quarantined_outpost/research) +"uKz" = ( +/obj/machinery/door/firedoor, +/obj/effect/decal/cleanable/floor_damage/random_broken, +/obj/effect/decal/cleanable/molten_item, +/obj/random/dirt_75, +/turf/simulated/floor/tiled/dark/full, +/area/quarantined_outpost/cafeteria) +"uKE" = ( +/obj/random/dirt_75, +/obj/structure/trash_pile, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/dark/full, +/area/quarantined_outpost/cargo_bay) +"uLF" = ( +/obj/effect/floor_decal/corner/dark_blue{ + dir = 9 + }, +/obj/machinery/light/floor/maybe_broken/decayed{ + dir = 8 + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/rust, +/area/quarantined_outpost/elevator_hallway) +"uLR" = ( +/turf/simulated/floor/reinforced/airless, +/area/quarantined_outpost/engineering/atmospherics) +"uLV" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/obj/random/dirt_75, +/obj/random/dirt_75, +/turf/simulated/floor/plating, +/area/quarantined_outpost/north_east_hallway/maintenance) +"uLW" = ( +/obj/structure/lattice/catwalk/indoor/grate/damaged, +/turf/simulated/floor/plating, +/area/quarantined_outpost/cargo_bay) +"uMg" = ( +/obj/random/dirt_75, +/obj/effect/landmark/quarantined_outpost/canister_spawn, +/turf/simulated/floor/exoplanet/basalt, +/area/quarantined_outpost/cavern/east_cavern) +"uMr" = ( +/obj/structure/cable{ + icon_state = "2-8" + }, +/turf/simulated/floor/plating, +/area/quarantined_outpost/cafeteria/maintenance) +"uNa" = ( +/obj/structure/railing/mapped{ + dir = 1 + }, +/obj/effect/floor_decal/corner/mauve/full{ + dir = 1 + }, +/turf/simulated/floor/tiled/dark, +/area/quarantined_outpost/research) +"uNi" = ( +/obj/structure/platform/dark{ + dir = 1 + }, +/obj/structure/lattice/catwalk/indoor, +/obj/structure/cable/yellow{ + icon_state = "1-4" + }, +/turf/simulated/floor/plating, +/area/quarantined_outpost/engineering/atmospherics) +"uNn" = ( +/obj/machinery/conveyor{ + dir = 1 + }, +/obj/machinery/light/small/maybe_broken/decayed{ + dir = 8 + }, +/turf/simulated/floor/tiled/dark/full, +/area/quarantined_outpost/cargo_bay) +"uND" = ( +/obj/effect/floor_decal/corner/dark_blue{ + dir = 6 + }, +/obj/random/dirt_75, +/turf/simulated/floor/tiled, +/area/quarantined_outpost/elevator_hallway) +"uNE" = ( +/obj/structure/lattice/catwalk/indoor/grate, +/obj/structure/cable{ + 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/plating, +/area/quarantined_outpost/cargo_bay) +"uOg" = ( +/obj/effect/floor_decal/corner_wide/paleblue{ + dir = 9 + }, +/obj/random/dirt_75, +/obj/random/dirt_75, +/turf/simulated/floor/tiled/airless, +/area/quarantined_outpost/security) +"uPH" = ( +/obj/machinery/door/firedoor/multi_tile, +/obj/effect/floor_decal/industrial/hatch/yellow, +/obj/machinery/door/airlock/multi_tile/glass{ + welded = 1; + name = "Security" + }, +/turf/simulated/floor/tiled/full/airless, +/area/quarantined_outpost/security) +"uPR" = ( +/obj/structure/lattice/catwalk/indoor/grate/dark, +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/simulated/floor/plating, +/area/quarantined_outpost/elevator_hallway/maintenance) +"uQe" = ( +/obj/structure/lattice/catwalk/indoor/grate, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 1 + }, +/turf/simulated/floor/plating, +/area/quarantined_outpost/elevator_hallway) +"uQA" = ( +/obj/structure/lattice/catwalk/indoor/grate/old, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/quarantined_outpost/entrance_lobby) +"uQU" = ( +/obj/effect/floor_decal/corner/mauve{ + dir = 1 + }, +/obj/structure/table/standard, +/obj/structure/railing/mapped{ + dir = 4 + }, +/turf/simulated/floor/tiled/light, +/area/quarantined_outpost/research) +"uRk" = ( +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/random/maintenance_junk_or_loot, +/obj/effect/decal/cleanable/floor_damage/rust, +/turf/simulated/floor/tiled/full, +/area/quarantined_outpost/cargo_bay) +"uRr" = ( +/obj/random/dirt_75, +/obj/structure/cable/orange{ + icon_state = "4-8" + }, +/obj/structure/sign/electricshock{ + pixel_y = 32 + }, +/obj/random/dirt_75, +/turf/simulated/floor/plating/asteroid/airless, +/area/quarantined_outpost/exterior) +"uSa" = ( +/obj/effect/floor_decal/spline/plain/black{ + dir = 1 + }, +/obj/effect/decal/cleanable/blood, +/turf/simulated/floor/tiled/ridged, +/area/quarantined_outpost/extraction_lab) +"uSw" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/yellow{ + dir = 8 + }, +/obj/structure/lattice/catwalk/indoor, +/turf/simulated/floor/exoplanet/abyss, +/area/quarantined_outpost/research/containment) +"uSA" = ( +/obj/random/dirt_75, +/obj/structure/lattice, +/obj/structure/cable{ + icon_state = "2-8" + }, +/turf/simulated/floor/plating, +/area/quarantined_outpost/cafeteria/maintenance) +"uSQ" = ( +/obj/random/dirt_75, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 1 + }, +/turf/simulated/floor/tiled/ridged, +/area/quarantined_outpost/extraction_lab) +"uSY" = ( +/obj/effect/floor_decal/corner/dark_blue{ + dir = 10 + }, +/obj/effect/decal/cleanable/floor_damage/rust, +/turf/simulated/floor/tiled/dark, +/area/quarantined_outpost/research/containment) +"uTd" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/simulated/floor/tiled, +/area/quarantined_outpost/elevator_hallway) +"uTF" = ( +/obj/structure/grille/broken, +/turf/simulated/floor/plating, +/area/quarantined_outpost/entrance_maintenance) +"uTL" = ( +/obj/effect/floor_decal/corner_wide/paleblue{ + dir = 9 + }, +/turf/simulated/floor/tiled/airless, +/area/quarantined_outpost/security) +"uTT" = ( +/obj/structure/bed/stool/chair, +/obj/random/dirt_75, +/obj/structure/cable{ + 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/dark/full, +/area/quarantined_outpost/elevator_hallway) +"uUd" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/random/dirt_75, +/turf/simulated/floor/plating, +/area/quarantined_outpost/engineering/atmospherics) +"uUf" = ( +/obj/effect/floor_decal/corner/brown{ + dir = 10 + }, +/obj/random/dirt_75, +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/quarantined_outpost/cargo_bay) +"uUw" = ( +/obj/effect/floor_decal/corner_wide/lime/diagonal, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/quarantined_outpost/medbay) +"uUC" = ( +/obj/structure/platform/ledge/dark{ + dir = 4 + }, +/obj/structure/platform/ledge/dark{ + dir = 1 + }, +/obj/structure/platform_deco/ledge/dark{ + dir = 10 + }, +/turf/simulated/floor/exoplanet/abyss, +/area/quarantined_outpost/chasm) +"uUM" = ( +/obj/structure/table/standard, +/obj/effect/floor_decal/corner/yellow{ + dir = 6 + }, +/obj/item/storage/toolbox/mechanical{ + pixel_y = -4; + pixel_x = -7 + }, +/obj/machinery/recharger{ + pixel_y = 10; + pixel_x = 8 + }, +/turf/simulated/floor/tiled/dark, +/area/quarantined_outpost/engineering/winch_room) +"uUR" = ( +/obj/random/dirt_75, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/effect/landmark/maybe_cut_cable, +/turf/simulated/floor/tiled, +/area/quarantined_outpost/elevator_hallway) +"uUV" = ( +/obj/structure/lattice/catwalk/indoor/grate, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 1 + }, +/turf/simulated/floor/plating, +/area/quarantined_outpost/dorm_hallway) +"uVE" = ( +/obj/effect/floor_decal/corner/dark_blue{ + dir = 5 + }, +/obj/random/dirt_75, +/obj/random/dirt_75, +/obj/machinery/light/small/broken{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/quarantined_outpost/engineering/tunnel) +"uVN" = ( +/obj/structure/lattice/catwalk/indoor/grate/dark, +/obj/structure/flora/rock/pile/random, +/turf/simulated/floor/plating, +/area/quarantined_outpost/cargo_bay) +"uWa" = ( +/obj/structure/railing/mapped{ + dir = 4 + }, +/obj/random/dirt_75, +/turf/simulated/floor/plating/asteroid/airless, +/area/quarantined_outpost/exterior) +"uWA" = ( +/obj/effect/floor_decal/spline/plain/black{ + dir = 10 + }, +/obj/structure/bed/stool/chair{ + dir = 8 + }, +/obj/random/dirt_75, +/turf/simulated/floor/tiled/dark, +/area/quarantined_outpost/elevator_hallway) +"uWE" = ( +/obj/machinery/atmospherics/pipe/simple/visible/black{ + dir = 6 + }, +/obj/random/dirt_75, +/obj/random/dirt_75, +/turf/simulated/floor/plating, +/area/quarantined_outpost/engineering/atmospherics) +"uXk" = ( +/obj/effect/decal/cleanable/floor_damage/rust, +/obj/random/dirt_75, +/obj/random/dirt_75, +/obj/effect/landmark/quarantined_outpost/creature, +/turf/simulated/floor/tiled/dark, +/area/quarantined_outpost/research) +"uXQ" = ( +/obj/effect/floor_decal/corner_wide/paleblue{ + dir = 6 + }, +/obj/random/dirt_75, +/turf/simulated/floor/tiled/airless, +/area/quarantined_outpost/security) +"uYA" = ( +/obj/structure/bed/stool/chair/office/dark{ + dir = 4 + }, +/obj/random/dirt_75, +/turf/simulated/floor/tiled/dark/full, +/area/quarantined_outpost/reception) +"uZr" = ( +/obj/machinery/light/small/floor/emergency, +/obj/structure/structural_support, +/turf/simulated/floor/tiled/white, +/area/quarantined_outpost/extraction_lab) +"uZv" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 6 + }, +/obj/effect/decal/cleanable/floor_damage/random_burned, +/turf/simulated/floor/reinforced, +/area/quarantined_outpost/research/containment) +"uZA" = ( +/obj/effect/floor_decal/corner/brown{ + dir = 5 + }, +/obj/random/dirt_75, +/turf/simulated/floor/tiled/rust, +/area/quarantined_outpost/elevator_hallway) +"uZH" = ( +/obj/machinery/atmospherics/pipe/manifold/visible/black, +/obj/random/dirt_75, +/turf/simulated/floor/tiled/gunmetal, +/area/quarantined_outpost/engineering/atmospherics) +"uZM" = ( +/obj/machinery/light/small/emergency{ + dir = 8 + }, +/obj/random/maintenance_junk_or_loot, +/turf/simulated/floor/plating, +/area/quarantined_outpost/engineering/tunnel) +"vaf" = ( +/obj/machinery/door/firedoor, +/obj/abstract/footprint_spawner/body{ + dir = 1 + }, +/turf/simulated/floor/tiled/dark/full, +/area/quarantined_outpost/extraction_lab) +"vah" = ( +/turf/simulated/floor/marble, +/area/quarantined_outpost/gym) +"vaj" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/obj/structure/table/rack, +/obj/random/dirt_75, +/obj/random/junk, +/turf/simulated/floor/plating, +/area/quarantined_outpost/north_east_hallway/maintenance) +"vaS" = ( +/obj/effect/floor_decal/spline/plain/black, +/obj/random/dirt_75, +/obj/effect/decal/cleanable/floor_damage/rust, +/turf/simulated/floor/tiled/gunmetal, +/area/quarantined_outpost/engineering/tunnel) +"vbz" = ( +/obj/machinery/light/small/emergency, +/turf/simulated/floor/plating/asteroid/airless, +/area/quarantined_outpost/exterior/powered) +"vbN" = ( +/obj/effect/floor_decal/corner/dark_blue{ + dir = 5 + }, +/obj/structure/bed/stool/chair/sofa/left/brown, +/turf/simulated/floor/tiled, +/area/quarantined_outpost/cafeteria) +"vbV" = ( +/obj/structure/railing/mapped{ + dir = 1 + }, +/obj/effect/floor_decal/spline/plain/black{ + dir = 1 + }, +/obj/random/dirt_75, +/turf/simulated/floor/tiled, +/area/quarantined_outpost/cafeteria) +"vce" = ( +/obj/effect/floor_decal/corner/mauve{ + dir = 6 + }, +/obj/effect/floor_decal/spline/plain/purple{ + dir = 4 + }, +/obj/effect/decal/cleanable/floor_damage/rust, +/turf/simulated/floor/tiled/light, +/area/quarantined_outpost/research) +"vcj" = ( +/obj/structure/table/standard/flipped, +/obj/effect/floor_decal/corner/lime{ + dir = 10 + }, +/obj/random/dirt_75, +/turf/simulated/floor/tiled, +/area/quarantined_outpost/cafeteria) +"vcv" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 10 + }, +/obj/structure/filler, +/obj/effect/decal/rolling_fog, +/turf/simulated/floor/reinforced, +/area/quarantined_outpost/research) +"vcE" = ( +/obj/structure/table/standard, +/obj/effect/floor_decal/corner/yellow/full{ + dir = 4 + }, +/obj/random/junk, +/obj/item/device/binoculars{ + pixel_y = 7; + pixel_x = -7 + }, +/obj/structure/sign/flag/sol/old{ + pixel_x = 32 + }, +/turf/simulated/floor/tiled/dark, +/area/quarantined_outpost/engineering/winch_room) +"vde" = ( +/obj/structure/platform/ledge/dark{ + dir = 8 + }, +/obj/structure/sign/drop{ + pixel_y = -32 + }, +/obj/effect/decal/rolling_fog, +/turf/simulated/floor/exoplanet/abyss, +/area/quarantined_outpost/chasm) +"vdr" = ( +/obj/effect/floor_decal/corner/grey/full{ + dir = 4 + }, +/obj/structure/railing/mapped{ + dir = 8 + }, +/obj/random/dirt_75, +/turf/simulated/floor/tiled/dark, +/area/quarantined_outpost/research) +"vdL" = ( +/obj/effect/map_effect/window_spawner/full/reinforced/firedoor, +/turf/simulated/floor/tiled/full, +/area/quarantined_outpost/reception) +"vdT" = ( +/obj/effect/floor_decal/industrial/outline/red, +/obj/random/dirt_75, +/obj/machinery/suit_cycler/offship/sol, +/turf/simulated/floor/tiled/dark/full/airless, +/area/quarantined_outpost/security) +"vdX" = ( +/obj/structure/grille/broken, +/obj/random/dirt_75, +/turf/simulated/floor/plating, +/area/quarantined_outpost/engineering/tunnel) +"vef" = ( +/obj/effect/floor_decal/industrial/hatch/custodial, +/obj/machinery/door/firedoor, +/obj/structure/plasticflaps/airtight, +/turf/simulated/floor/tiled/dark/full, +/area/quarantined_outpost/research) +"vew" = ( +/obj/effect/floor_decal/spline/plain/grey{ + dir = 10 + }, +/turf/simulated/floor/tiled/white, +/area/quarantined_outpost/gym) +"veN" = ( +/obj/effect/floor_decal/industrial/outline_straight/custodial{ + dir = 9 + }, +/obj/random/dirt_75, +/turf/simulated/floor/tiled/light, +/area/quarantined_outpost/research) +"veP" = ( +/obj/effect/floor_decal/corner/dark_blue{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/turf/simulated/floor/tiled, +/area/quarantined_outpost/dorm_hallway) +"vfj" = ( +/obj/structure/barricade/wooden{ + dir = 8 + }, +/obj/random/dirt_75, +/turf/simulated/floor/plating, +/area/quarantined_outpost/entrance_maintenance) +"vfs" = ( +/turf/simulated/mineral/lava, +/area/quarantined_outpost/chasm) +"vfw" = ( +/turf/simulated/floor/plating, +/area/quarantined_outpost/elevator_hallway) +"vge" = ( +/obj/structure/lattice/catwalk/indoor/grate/dark, +/obj/machinery/atmospherics/pipe/manifold/hidden, +/turf/simulated/floor/plating, +/area/quarantined_outpost/cargo_bay) +"vgj" = ( +/obj/effect/floor_decal/industrial/hatch/yellow, +/obj/machinery/door/firedoor{ + dir = 4 + }, +/obj/machinery/door/blast/shutters/open{ + dir = 4; + id = "quarantined_outpost_eng_checkpoint_in" + }, +/turf/simulated/floor/tiled/gunmetal/full, +/area/quarantined_outpost/cafeteria) +"vgo" = ( +/obj/structure/table/standard, +/obj/random/dirt_75, +/obj/effect/floor_decal/corner_wide/paleblue{ + dir = 6 + }, +/obj/item/paper_bin{ + pixel_y = 3; + pixel_x = 3 + }, +/turf/simulated/floor/tiled/airless, +/area/quarantined_outpost/security) +"vgy" = ( +/obj/structure/tank_wall/air{ + icon_state = "air4" + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/quarantined_outpost/engineering/atmospherics) +"vgX" = ( +/obj/effect/floor_decal/industrial/hatch/yellow, +/obj/machinery/door/firedoor{ + dir = 4 + }, +/obj/structure/closet/crate/miningcart, +/turf/simulated/floor/tiled/dark/full, +/area/quarantined_outpost/engineering/winch_room) +"vha" = ( +/obj/machinery/vending/cigarette, +/obj/effect/floor_decal/industrial/outline/grey, +/turf/simulated/floor/tiled/dark/full, +/area/quarantined_outpost/dorm_hallway) +"vhy" = ( +/obj/structure/platform, +/obj/structure/platform{ + dir = 4 + }, +/obj/structure/platform_deco{ + dir = 5 + }, +/turf/simulated/floor/tiled/ridged, +/area/quarantined_outpost/extraction_lab) +"vhI" = ( +/obj/effect/floor_decal/corner/dark_blue{ + dir = 10 + }, +/turf/simulated/floor/tiled, +/area/quarantined_outpost/dorm_hallway) +"vhX" = ( +/obj/effect/floor_decal/industrial/outline/security, +/obj/effect/decal/rolling_fog, +/turf/simulated/floor/tiled/dark/full, +/area/quarantined_outpost/research) +"viu" = ( +/obj/structure/lattice/catwalk/indoor/grate/dark, +/turf/simulated/floor/plating, +/area/quarantined_outpost/engineering/winch_room) +"vjq" = ( +/obj/structure/tank_wall/oxygen, +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/turf/simulated/floor/plating, +/area/quarantined_outpost/engineering/atmospherics) +"vjz" = ( +/obj/structure/tank_wall/air{ + density = 0; + icon_state = "air11"; + opacity = 0 + }, +/obj/machinery/atmospherics/portables_connector{ + dir = 4 + }, +/obj/machinery/portable_atmospherics/canister/air, +/turf/simulated/floor/reinforced, +/area/quarantined_outpost/engineering/atmospherics) +"vjJ" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/yellow{ + dir = 10 + }, +/obj/structure/lattice/catwalk/indoor, +/turf/simulated/floor/exoplanet/abyss, +/area/quarantined_outpost/research/containment) +"vjS" = ( +/obj/structure/tank_wall/hydrogen{ + icon_state = "h4" + }, +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 6 + }, +/turf/simulated/floor/plating, +/area/quarantined_outpost/engineering/atmospherics) +"vkN" = ( +/obj/effect/floor_decal/corner/mauve/full{ + dir = 4 + }, +/obj/effect/floor_decal/spline/plain/purple{ + dir = 4 + }, +/turf/simulated/floor/tiled/light, +/area/quarantined_outpost/research) +"vli" = ( +/obj/effect/floor_decal/spline/plain/black{ + dir = 4 + }, +/obj/random/dirt_75, +/obj/effect/decal/cleanable/floor_damage/rust, +/turf/simulated/floor/tiled/gunmetal, +/area/quarantined_outpost/north_east_hallway) +"vmf" = ( +/obj/structure/railing/mapped{ + dir = 8 + }, +/obj/structure/railing/mapped, +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/random/dirt_75, +/turf/simulated/floor/tiled/full, +/area/quarantined_outpost/cargo_bay) +"vnk" = ( +/obj/random/dirt_75, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled/full/airless, +/area/quarantined_outpost/security) +"vnw" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/structure/lattice/catwalk/indoor/grate/dark, +/obj/machinery/alarm/south, +/turf/simulated/floor/plating, +/area/quarantined_outpost/server_relay/north_west) +"vnC" = ( +/obj/effect/floor_decal/corner/dark_blue{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/quarantined_outpost/elevator_hallway) +"vnD" = ( +/obj/effect/floor_decal/industrial/outline_door/grey{ + dir = 1 + }, +/obj/random/dirt_75, +/obj/random/dirt_75, +/obj/effect/floor_decal/industrial/outline_segment/grey{ + dir = 5 + }, +/turf/simulated/floor/tiled, +/area/quarantined_outpost/elevator_hallway) +"vnU" = ( +/obj/machinery/atmospherics/pipe/simple/visible/yellow{ + dir = 8 + }, +/obj/structure/lattice/catwalk/indoor, +/turf/simulated/floor/plating, +/area/quarantined_outpost/engineering/atmospherics) +"voa" = ( +/obj/machinery/light/small/emergency{ + dir = 8 + }, +/obj/structure/lattice/catwalk/indoor, +/turf/simulated/floor/plating, +/area/quarantined_outpost/engineering/atmospherics) +"vol" = ( +/obj/effect/floor_decal/corner/mauve/diagonal, +/obj/random/dirt_75, +/obj/structure/bed/stool/chair/office/light{ + dir = 1 + }, +/turf/simulated/floor/tiled/white, +/area/quarantined_outpost/extraction_lab) +"voC" = ( +/obj/structure/ore_box, +/turf/simulated/floor/tiled/dark/full, +/area/quarantined_outpost/engineering/winch_room) +"voQ" = ( +/obj/effect/floor_decal/corner/yellow{ + dir = 6 + }, +/obj/random/dirt_75, +/obj/machinery/light/small/maybe_broken/decayed{ + dir = 4 + }, +/turf/simulated/floor/tiled/gunmetal, +/area/quarantined_outpost/engineering) +"voR" = ( +/turf/simulated/mineral/lava, +/area/quarantined_outpost/exterior) +"vpe" = ( +/obj/effect/floor_decal/corner/grey, +/obj/effect/landmark/quarantined_outpost/canister_spawn, +/turf/simulated/floor/tiled/dark, +/area/quarantined_outpost/research) +"vpy" = ( +/obj/effect/floor_decal/corner/dark_blue{ + dir = 5 + }, +/obj/structure/table/standard/flipped{ + dir = 8 + }, +/obj/structure/sign/flag/sol/old{ + pixel_y = 32 + }, +/turf/simulated/floor/tiled, +/area/quarantined_outpost/dorm_hallway) +"vqg" = ( +/obj/random/dirt_75, +/obj/effect/decal/cleanable/floor_damage/rust, +/turf/simulated/floor/tiled, +/area/quarantined_outpost/entrance_maintenance) +"vqH" = ( +/obj/effect/floor_decal/corner/dark_blue{ + dir = 8 + }, +/obj/random/dirt_75, +/obj/effect/floor_decal/industrial/outline_door/yellow{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled/gunmetal, +/area/quarantined_outpost/cafeteria) +"vrx" = ( +/obj/structure/lattice/catwalk, +/turf/simulated/floor/exoplanet/basalt, +/area/quarantined_outpost/engineering/tunnel) +"vrN" = ( +/obj/effect/floor_decal/industrial/outline_door/grey{ + dir = 1 + }, +/obj/random/dirt_75, +/obj/effect/floor_decal/industrial/outline_segment/grey{ + dir = 8 + }, +/obj/effect/landmark/quarantined_outpost/creature, +/turf/simulated/floor/tiled, +/area/quarantined_outpost/elevator_hallway) +"vur" = ( +/obj/effect/floor_decal/corner_wide/paleblue{ + dir = 10 + }, +/obj/random/dirt_75, +/turf/simulated/floor/tiled/airless, +/area/quarantined_outpost/security) +"vuC" = ( +/obj/machinery/door/airlock/generic{ + dir = 4 + }, +/obj/effect/floor_decal/corner/green/diagonal, +/turf/simulated/floor/tiled/white, +/area/quarantined_outpost/dorm_hallway) +"vuO" = ( +/obj/random/dirt_75, +/obj/structure/cable{ + icon_state = "2-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 + }, +/turf/simulated/floor/tiled/gunmetal, +/area/quarantined_outpost/engineering/tunnel) +"vvg" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 8 + }, +/obj/structure/trash_pile, +/turf/simulated/floor/plating, +/area/quarantined_outpost/gym) +"vvq" = ( +/obj/item/material/shard{ + pixel_x = -4; + pixel_y = -3 + }, +/obj/effect/decal/cleanable/blood, +/obj/random/dirt_75, +/turf/simulated/floor/tiled/dark/full, +/area/quarantined_outpost/reception) +"vvE" = ( +/obj/machinery/door/firedoor{ + dir = 4 + }, +/obj/effect/floor_decal/industrial/hatch_door/medical, +/obj/machinery/door/airlock/glass_medical{ + dir = 4; + name = "Examination Room" + }, +/turf/simulated/floor/tiled/white, +/area/quarantined_outpost/medbay) +"vwc" = ( +/obj/structure/railing/mapped{ + dir = 1 + }, +/obj/structure/railing/mapped{ + dir = 8 + }, +/turf/simulated/floor/exoplanet/asteroid/ash/rocky, +/area/quarantined_outpost/exterior) +"vwv" = ( +/obj/effect/floor_decal/corner_wide/paleblue{ + dir = 4 + }, +/obj/random/dirt_75, +/obj/random/dirt_75, +/turf/simulated/floor/tiled/airless, +/area/quarantined_outpost/security) +"vxa" = ( +/obj/effect/floor_decal/corner/dark_blue{ + dir = 10 + }, +/obj/machinery/light/maybe_broken/decayed, +/obj/random/dirt_75, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/quarantined_outpost/elevator_hallway) +"vxg" = ( +/obj/random/dirt_75, +/obj/structure/window_frame/empty, +/turf/simulated/floor/tiled/dark/full, +/area/quarantined_outpost/gym) +"vxt" = ( +/obj/abstract/footprint_spawner/body{ + dir = 1 + }, +/obj/effect/decal/rolling_fog, +/turf/simulated/floor/tiled/dark, +/area/quarantined_outpost/research) +"vxw" = ( +/obj/effect/floor_decal/corner/grey{ + dir = 6 + }, +/obj/structure/table/reinforced/steel, +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/random/dirt_75, +/obj/item/folder/envelope/quarantined_outpost/research_note, +/turf/simulated/floor/tiled/dark, +/area/quarantined_outpost/research) +"vxP" = ( +/obj/structure/toilet{ + dir = 4; + pixel_y = -1 + }, +/obj/effect/floor_decal/corner/green/diagonal, +/obj/random/dirt_75, +/obj/machinery/light/small/maybe_broken/decayed{ + dir = 8 + }, +/turf/simulated/floor/tiled/white, +/area/quarantined_outpost/dorm_hallway) +"vxQ" = ( +/obj/effect/floor_decal/corner/yellow{ + dir = 5 + }, +/obj/random/dirt_75, +/obj/random/dirt_75, +/obj/random/maintenance_junk_or_loot, +/turf/simulated/floor/tiled/gunmetal, +/area/quarantined_outpost/engineering/winch_room) +"vxW" = ( +/obj/structure/lattice/catwalk/indoor/grate/dark, +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/simulated/floor/plating, +/area/quarantined_outpost/north_east_hallway/maintenance) +"vyn" = ( +/obj/effect/floor_decal/corner/green/diagonal, +/obj/machinery/washing_machine, +/obj/structure/railing/mapped{ + dir = 4 + }, +/obj/effect/floor_decal/industrial/outline, +/obj/machinery/light/maybe_broken/decayed{ + dir = 1 + }, +/turf/simulated/floor/tiled/white, +/area/quarantined_outpost/dorm_hallway) +"vzl" = ( +/obj/effect/floor_decal/corner/dark_blue{ + dir = 9 + }, +/obj/machinery/light/maybe_broken/decayed{ + dir = 8 + }, +/obj/random/dirt_75, +/turf/simulated/floor/tiled, +/area/quarantined_outpost/north_east_hallway) +"vzn" = ( +/obj/random/dirt_75, +/obj/random/dirt_75, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/quarantined_outpost/elevator_hallway) +"vzo" = ( +/obj/structure/railing/mapped{ + dir = 1 + }, +/obj/effect/floor_decal/corner/yellow{ + dir = 4 + }, +/obj/effect/floor_decal/corner/dark_blue{ + dir = 1 + }, +/turf/simulated/floor/tiled/dark, +/area/quarantined_outpost/north_east_hallway) +"vzq" = ( +/obj/effect/floor_decal/corner/dark_blue{ + dir = 8 + }, +/obj/random/dirt_75, +/obj/random/dirt_75, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled/gunmetal, +/area/quarantined_outpost/cafeteria) +"vzs" = ( +/obj/effect/floor_decal/industrial/hatch_door/yellow{ + dir = 1 + }, +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/glass{ + name = "Gym" + }, +/obj/random/dirt_75, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 1 + }, +/turf/simulated/floor/tiled/full, +/area/quarantined_outpost/gym) +"vAw" = ( +/obj/structure/reagent_dispensers/water_cooler{ + pixel_x = -10 + }, +/obj/effect/floor_decal/corner/dark_green/full, +/obj/random/dirt_75, +/obj/structure/sign/flag/sol/old{ + pixel_x = -32 + }, +/turf/simulated/floor/tiled, +/area/quarantined_outpost/gym) +"vAI" = ( +/obj/effect/decal/cleanable/blood, +/obj/structure/cable{ + 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/quarantined_outpost/medbay) +"vCi" = ( +/obj/random/dirt_75, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, +/turf/simulated/floor/tiled, +/area/quarantined_outpost/reception) +"vCl" = ( +/obj/effect/floor_decal/corner/dark_blue{ + dir = 1 + }, +/obj/random/dirt_75, +/obj/abstract/footprint_spawner{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/quarantined_outpost/north_east_hallway) +"vCr" = ( +/turf/simulated/wall, +/area/quarantined_outpost/auxiliary_power) +"vCx" = ( +/obj/structure/lattice/catwalk/indoor/grate/old, +/obj/structure/cable/orange{ + icon_state = "1-4" + }, +/turf/simulated/floor/plating, +/area/quarantined_outpost/entrance_lobby) +"vCF" = ( +/obj/random/dirt_75, +/obj/effect/floor_decal/industrial/warning/dust/corner, +/turf/simulated/floor/plating/asteroid/airless, +/area/quarantined_outpost/exterior) +"vCQ" = ( +/obj/effect/floor_decal/corner_wide/lime{ + dir = 10 + }, +/obj/effect/landmark/quarantined_outpost/creature, +/turf/simulated/floor/tiled/white, +/area/quarantined_outpost/medbay) +"vDc" = ( +/obj/random/dirt_75, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 1 + }, +/turf/simulated/floor/tiled/airless, +/area/quarantined_outpost/security) +"vDh" = ( +/obj/effect/floor_decal/corner_wide/lime/diagonal, +/obj/effect/decal/cleanable/floor_damage/rust, +/obj/random/dirt_75, +/obj/structure/cable{ + 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/quarantined_outpost/medbay) +"vDs" = ( +/obj/effect/floor_decal/corner_wide/paleblue{ + dir = 4 + }, +/obj/random/dirt_75, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/turf/simulated/floor/tiled/airless, +/area/quarantined_outpost/security) +"vDM" = ( +/obj/random/dirt_75, +/obj/random/dirt_75, +/obj/effect/shuttle_landmark/quarantined_outpost/asteroid/landing_2c, +/turf/simulated/floor/plating/asteroid/airless, +/area/quarantined_outpost/exterior) +"vEm" = ( +/obj/structure/closet/hazmat/general, +/obj/effect/floor_decal/corner/red/full{ + dir = 1 + }, +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/structure/platform_deco/dark, +/obj/effect/decal/cleanable/cobweb2, +/obj/effect/decal/cleanable/floor_damage/rust, +/turf/simulated/floor/tiled/dark, +/area/quarantined_outpost/research) +"vEJ" = ( +/obj/effect/floor_decal/corner/dark_blue{ + dir = 5 + }, +/obj/random/dirt_75, +/obj/random/junk, +/turf/simulated/floor/tiled, +/area/quarantined_outpost/dorm_hallway) +"vFo" = ( +/obj/random/dirt_75, +/turf/simulated/floor/tiled/dark/full, +/area/quarantined_outpost/reception) +"vFJ" = ( +/obj/random/dirt_75, +/obj/structure/lattice/catwalk/indoor/grate/dark, +/turf/simulated/floor/plating, +/area/quarantined_outpost/engineering) +"vFQ" = ( +/obj/machinery/door/airlock{ + dir = 8; + id_tag = "quarantined_outpost_toilet_1"; + name = "Toilet" + }, +/obj/random/dirt_75, +/turf/simulated/floor/tiled/white, +/area/quarantined_outpost/gym) +"vGl" = ( +/obj/structure/bed/stool/padded/red{ + pixel_y = 4; + pixel_x = 5 + }, +/obj/structure/coatrack{ + pixel_y = 21; + pixel_x = -8 + }, +/obj/random/dirt_75, +/obj/machinery/light/small/maybe_broken/decayed{ + dir = 1 + }, +/turf/simulated/floor/tiled/dark/full, +/area/quarantined_outpost/cargo_bay) +"vHe" = ( +/obj/machinery/door/firedoor{ + dir = 4 + }, +/obj/effect/floor_decal/industrial/hatch_door/research, +/obj/machinery/door/airlock/medical{ + dir = 4 + }, +/obj/structure/cable{ + 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/dark/full, +/area/quarantined_outpost/research) +"vHu" = ( +/obj/effect/map_effect/window_spawner/full/reinforced/firedoor, +/turf/simulated/floor/tiled/light/full, +/area/quarantined_outpost/medbay) +"vIc" = ( +/obj/effect/floor_decal/corner/green/diagonal, +/obj/random/dirt_75, +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/white, +/area/quarantined_outpost/dorm_hallway) +"vIi" = ( +/obj/effect/floor_decal/corner/mauve/full{ + dir = 1 + }, +/obj/structure/structural_support, +/obj/effect/decal/cleanable/floor_damage/rust, +/turf/simulated/floor/tiled/light, +/area/quarantined_outpost/research) +"vIp" = ( +/obj/structure/tank_wall/air{ + icon_state = "air3" + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/turf/simulated/floor/plating, +/area/quarantined_outpost/engineering/atmospherics) +"vIU" = ( +/obj/machinery/light/small/maybe_broken/decayed, +/turf/simulated/floor/tiled/freezer{ + name = "cooled tiles"; + temperature = 253.15 + }, +/area/quarantined_outpost/medbay) +"vJg" = ( +/obj/effect/floor_decal/corner_wide/paleblue{ + dir = 10 + }, +/obj/structure/bed/stool/chair{ + dir = 1 + }, +/obj/random/dirt_75, +/obj/machinery/light/maybe_broken/decayed, +/turf/simulated/floor/tiled/airless, +/area/quarantined_outpost/security) +"vJt" = ( +/obj/effect/floor_decal/spline/plain/black{ + dir = 1 + }, +/turf/simulated/floor/lino, +/area/quarantined_outpost/reception) +"vJC" = ( +/obj/effect/floor_decal/corner/mauve{ + dir = 10 + }, +/turf/simulated/floor/tiled/white, +/area/quarantined_outpost/extraction_lab) +"vJS" = ( +/obj/random/dirt_75, +/obj/machinery/atmospherics/unary/vent_pump/on, +/turf/simulated/floor/tiled/ridged, +/area/quarantined_outpost/extraction_lab) +"vJZ" = ( +/obj/effect/floor_decal/corner/grey/full{ + dir = 1 + }, +/obj/structure/railing/mapped{ + dir = 8 + }, +/obj/effect/floor_decal/industrial/outline/research, +/obj/machinery/computer/terminal/inactive, +/turf/simulated/floor/tiled/dark, +/area/quarantined_outpost/research) +"vKa" = ( +/obj/effect/floor_decal/spline/plain/black{ + dir = 8 + }, +/obj/machinery/alarm/west, +/turf/simulated/floor/tiled/gunmetal, +/area/quarantined_outpost/engineering/tunnel) +"vKm" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 8 + }, +/obj/structure/table/standard, +/turf/simulated/floor/plating, +/area/quarantined_outpost/gym) +"vLg" = ( +/obj/effect/floor_decal/corner/yellow{ + dir = 1 + }, +/obj/structure/sign/flag/sol/old/large/west{ + pixel_x = -32 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled/gunmetal, +/area/quarantined_outpost/engineering/winch_room) +"vLl" = ( +/obj/effect/floor_decal/corner/dark_blue, +/obj/random/dirt_75, +/turf/simulated/floor/tiled/rust, +/area/quarantined_outpost/dorm_hallway) +"vLs" = ( +/obj/machinery/door/firedoor{ + dir = 4 + }, +/obj/effect/floor_decal/industrial/hatch/yellow, +/obj/random/dirt_75, +/turf/simulated/floor/tiled/full, +/area/quarantined_outpost/elevator_hallway) +"vLB" = ( +/obj/structure/table/standard, +/obj/machinery/microscope/science{ + pixel_y = 9; + pixel_x = -4 + }, +/obj/effect/floor_decal/corner/mauve/full{ + dir = 8 + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/random/dirt_75, +/turf/simulated/floor/tiled/light, +/area/quarantined_outpost/research) +"vLJ" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/obj/structure/closet/body_bag, +/obj/random/dirt_75, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 1 + }, +/turf/simulated/floor/tiled/white, +/area/quarantined_outpost/medbay) +"vMa" = ( +/obj/effect/floor_decal/spline/plain/corner/black, +/obj/random/dirt_75, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 1 + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/gunmetal, +/area/quarantined_outpost/north_east_hallway) +"vMh" = ( +/turf/simulated/wall/r_wall, +/area/quarantined_outpost/server_relay/north_west) +"vMr" = ( +/obj/structure/table/rack, +/obj/random/loot, +/turf/simulated/floor/carpet/rubber, +/area/quarantined_outpost/gym) +"vML" = ( +/obj/effect/floor_decal/corner/mauve/full{ + dir = 4 + }, +/obj/structure/structural_support, +/turf/simulated/floor/tiled/light, +/area/quarantined_outpost/research) +"vMX" = ( +/obj/effect/floor_decal/corner/mauve{ + dir = 10 + }, +/obj/effect/decal/cleanable/floor_damage/rust, +/obj/random/dirt_75, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled/light, +/area/quarantined_outpost/research) +"vNa" = ( +/obj/effect/step_trigger/teleporter, +/obj/effect/step_trigger/teleporter, +/turf/template_noop, +/area/space) +"vNj" = ( +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/visible/yellow{ + dir = 8 + }, +/obj/random/dirt_75, +/obj/random/dirt_75, +/obj/machinery/atmospherics/pipe/simple/visible/black, +/turf/simulated/floor/plating, +/area/quarantined_outpost/engineering/atmospherics) +"vNm" = ( +/obj/effect/floor_decal/spline/plain/black{ + dir = 5 + }, +/obj/structure/bed/stool/chair{ + dir = 1 + }, +/obj/random/dirt_75, +/turf/simulated/floor/tiled/dark/full, +/area/quarantined_outpost/elevator_hallway) +"vNR" = ( +/obj/effect/floor_decal/corner_wide/lime{ + dir = 9 + }, +/obj/effect/decal/cleanable/cobweb, +/obj/effect/decal/cleanable/blood, +/turf/simulated/floor/tiled/white, +/area/quarantined_outpost/medbay) +"vOp" = ( +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/effect/floor_decal/industrial/warning{ + dir = 9 + }, +/obj/random/canister/filled, +/turf/simulated/floor/plating, +/area/quarantined_outpost/engineering/atmospherics) +"vOu" = ( +/obj/effect/floor_decal/corner/mauve{ + dir = 5 + }, +/obj/structure/filingcabinet/filingcabinet, +/obj/structure/filingcabinet/filingcabinet{ + pixel_x = 10 + }, +/obj/structure/filingcabinet/filingcabinet{ + pixel_x = -10 + }, +/obj/structure/sign/kiddieplaque{ + pixel_y = 32 + }, +/obj/item/flora/pottedplant_small/dead{ + pixel_y = 13; + pixel_x = -5 + }, +/obj/random/dirt_75, +/turf/simulated/floor/tiled/light, +/area/quarantined_outpost/research) +"vOF" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 8 + }, +/obj/random/maintenance_junk_or_loot, +/turf/simulated/floor/plating, +/area/quarantined_outpost/cargo_bay) +"vOQ" = ( +/obj/random/dirt_75, +/obj/item/hullbeacon/red, +/obj/effect/floor_decal/industrial/warning/dust{ + dir = 1 + }, +/turf/simulated/floor/plating/asteroid/airless, +/area/quarantined_outpost/exterior) +"vOS" = ( +/obj/effect/floor_decal/corner/lime{ + dir = 8 + }, +/obj/random/dirt_75, +/turf/simulated/floor/tiled, +/area/quarantined_outpost/cafeteria) +"vPx" = ( +/obj/effect/floor_decal/spline/plain/black{ + dir = 8 + }, +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/structure/dispenser/oxygen, +/turf/simulated/floor/tiled/dark/full, +/area/quarantined_outpost/entrance_lobby) +"vPR" = ( +/obj/structure/tank_wall/oxygen{ + icon_state = "o2-4" + }, +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 6 + }, +/turf/simulated/floor/plating, +/area/quarantined_outpost/engineering/atmospherics) +"vQr" = ( +/obj/effect/shuttle_landmark/quarantined_outpost/space/space_2a, +/turf/template_noop, +/area/space) +"vQE" = ( +/obj/random/dirt_75, +/turf/simulated/floor/tiled/rust, +/area/quarantined_outpost/elevator_hallway) +"vQS" = ( +/obj/structure/lattice/catwalk/indoor/grate/dark, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/turf/simulated/floor/plating, +/area/quarantined_outpost/engineering/winch_room) +"vRf" = ( +/obj/machinery/computer/terminal/inactive{ + dir = 8 + }, +/obj/effect/floor_decal/industrial/outline/research, +/turf/simulated/floor/tiled/bitile{ + dir = 1 + }, +/area/quarantined_outpost/research) +"vRo" = ( +/obj/structure/platform/dark, +/obj/effect/floor_decal/industrial/outline_straight/yellow, +/obj/effect/decal/rolling_fog, +/turf/simulated/floor/plating, +/area/quarantined_outpost/research) +"vRr" = ( +/obj/machinery/light/floor/maybe_broken/decayed{ + dir = 8 + }, +/obj/random/dirt_75, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled/light, +/area/quarantined_outpost/research) +"vRK" = ( +/obj/machinery/atmospherics/pipe/simple/visible/cyan{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden, +/obj/structure/lattice/catwalk/indoor, +/turf/simulated/floor/plating, +/area/quarantined_outpost/engineering/atmospherics) +"vRU" = ( +/obj/machinery/door/airlock/generic{ + dir = 4; + welded = 1; + name = "Dormitory #34" + }, +/obj/machinery/door/firedoor{ + dir = 4 + }, +/obj/effect/floor_decal/industrial/hatch_door/yellow, +/turf/simulated/floor/tiled, +/area/quarantined_outpost/dorm_hallway) +"vRY" = ( +/obj/effect/floor_decal/corner/dark_blue{ + dir = 10 + }, +/obj/random/dirt_75, +/obj/structure/bed/stool/chair{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/quarantined_outpost/elevator_hallway) +"vSe" = ( +/obj/machinery/light/small/broken{ + dir = 8 + }, +/obj/structure/table/standard, +/obj/effect/floor_decal/corner/yellow{ + dir = 1 + }, +/obj/random/tech_supply, +/turf/simulated/floor/tiled/gunmetal, +/area/quarantined_outpost/engineering) +"vSh" = ( +/obj/structure/table/standard, +/obj/machinery/microscope/science{ + pixel_y = 9; + dir = 4 + }, +/obj/effect/floor_decal/spline/plain/black{ + dir = 8 + }, +/obj/structure/railing/mapped{ + dir = 8 + }, +/turf/simulated/floor/tiled/white, +/area/quarantined_outpost/extraction_lab) +"vSw" = ( +/obj/effect/floor_decal/corner/dark_blue{ + dir = 5 + }, +/turf/simulated/floor/tiled, +/area/quarantined_outpost/elevator_hallway) +"vSF" = ( +/obj/effect/shuttle_landmark/quarantined_outpost/space/space_1c, +/turf/template_noop, +/area/space) +"vSL" = ( +/obj/structure/bed/stool/chair/office/light{ + dir = 4 + }, +/obj/machinery/light/floor/maybe_broken/decayed, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 1 + }, +/turf/simulated/floor/tiled/light/full, +/area/quarantined_outpost/research) +"vSW" = ( +/obj/structure/lattice/catwalk/indoor/grate/light, +/obj/structure/cable{ + 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/plating, +/area/quarantined_outpost/research) +"vTf" = ( +/obj/effect/floor_decal/spline/plain/black{ + dir = 8 + }, +/obj/structure/railing/mapped{ + dir = 8 + }, +/obj/random/dirt_75, +/obj/abstract/footprint_spawner/oil, +/turf/simulated/floor/tiled/gunmetal, +/area/quarantined_outpost/engineering/tunnel) +"vTo" = ( +/obj/effect/floor_decal/industrial/hatch/medical, +/turf/simulated/floor/tiled/white, +/area/quarantined_outpost/medbay) +"vTF" = ( +/obj/effect/floor_decal/industrial/hatch/yellow, +/obj/machinery/door/firedoor{ + dir = 4 + }, +/obj/machinery/door/blast/shutters{ + dir = 8; + id = "quarantined_outpost_eng_checkpoint_out" + }, +/turf/simulated/floor/tiled/gunmetal/full, +/area/quarantined_outpost/engineering/tunnel) +"vTT" = ( +/obj/structure/bed/padded, +/obj/effect/floor_decal/corner/black{ + dir = 5 + }, +/obj/structure/sign/flag/mars{ + pixel_y = 32 + }, +/obj/random/dirt_75, +/obj/item/bedsheet/brown, +/turf/simulated/floor/tiled, +/area/quarantined_outpost/dorm_hallway) +"vUa" = ( +/obj/structure/railing/mapped{ + dir = 1 + }, +/obj/random/dirt_75, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled/gunmetal, +/area/quarantined_outpost/engineering/tunnel) +"vUe" = ( +/obj/structure/platform_stairs/full{ + dir = 1 + }, +/turf/simulated/floor/exoplanet/basalt, +/area/quarantined_outpost/north_east_hallway) +"vUH" = ( +/obj/machinery/light/small/emergency, +/turf/simulated/floor/exoplanet/abyss, +/area/quarantined_outpost/extraction_lab) +"vUY" = ( +/obj/random/dirt_75, +/turf/simulated/floor/tiled/bitile{ + dir = 8 + }, +/area/quarantined_outpost/cafeteria) +"vVc" = ( +/obj/effect/floor_decal/corner_wide/paleblue{ + dir = 9 + }, +/obj/random/dirt_75, +/obj/random/dirt_75, +/obj/structure/coatrack{ + pixel_x = -10 + }, +/turf/simulated/floor/tiled/airless, +/area/quarantined_outpost/security) +"vVm" = ( +/obj/structure/bed/stool/chair{ + dir = 1 + }, +/turf/simulated/floor/tiled/dark, +/area/quarantined_outpost/entrance_lobby) +"vVP" = ( +/obj/effect/floor_decal/spline/fancy/wood/cee, +/obj/structure/flora/grass/desert{ + name = "withered grass" + }, +/turf/simulated/floor/exoplanet/barren, +/area/quarantined_outpost/elevator_hallway) +"vWf" = ( +/obj/structure/bed/stool/chair/office/dark{ + dir = 8 + }, +/obj/abstract/footprint_spawner/body{ + dir = 1 + }, +/obj/effect/floor_decal/industrial/outline_straight/yellow{ + dir = 8 + }, +/obj/effect/decal/rolling_fog, +/turf/simulated/floor/tiled/dark, +/area/quarantined_outpost/research) +"vWq" = ( +/obj/structure/window/shuttle/scc_space_ship, +/obj/machinery/door/firedoor{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark/full, +/area/quarantined_outpost/cargo_bay) +"vWu" = ( +/obj/random/dirt_75, +/obj/random/dirt_75, +/turf/simulated/floor/tiled, +/area/quarantined_outpost/cafeteria) +"vXi" = ( +/turf/simulated/mineral/lava, +/area/quarantined_outpost/cavern/south_west_cavern) +"vXs" = ( +/obj/effect/decal/cleanable/blood/oil, +/obj/machinery/atmospherics/pipe/simple/hidden/universal, +/obj/structure/lattice/catwalk/indoor/grate/dark, +/turf/simulated/floor/plating, +/area/quarantined_outpost/engineering/atmospherics) +"vYc" = ( +/obj/effect/floor_decal/corner/yellow{ + dir = 4 + }, +/obj/effect/floor_decal/corner/dark_blue, +/obj/random/dirt_75, +/obj/machinery/atmospherics/pipe/simple/visible/red{ + dir = 6 + }, +/turf/simulated/floor/tiled/dark, +/area/quarantined_outpost/engineering/atmospherics) +"vYk" = ( +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 10 + }, +/turf/simulated/wall/r_wall, +/area/quarantined_outpost/engineering/atmospherics) +"vYv" = ( +/obj/effect/floor_decal/corner/lime{ + dir = 4 + }, +/obj/item/material/stool/chair/folding{ + pixel_y = 16 + }, +/obj/random/dirt_75, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/quarantined_outpost/cafeteria) +"vYO" = ( +/obj/effect/floor_decal/industrial/outline_door/custodial{ + dir = 4 + }, +/obj/effect/floor_decal/industrial/outline_segment/research{ + dir = 1 + }, +/turf/simulated/floor/tiled/white, +/area/quarantined_outpost/extraction_lab) +"vYQ" = ( +/obj/effect/floor_decal/corner_wide/paleblue/diagonal, +/obj/random/dirt_75, +/obj/random/dirt_75, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 1 + }, +/turf/simulated/floor/tiled/airless, +/area/quarantined_outpost/security) +"vYY" = ( +/turf/simulated/floor/exoplanet/abyss, +/area/quarantined_outpost/research/containment) +"vZA" = ( +/obj/random/dirt_75, +/obj/effect/floor_decal/corner/yellow{ + dir = 4 + }, +/obj/structure/bed/stool/chair/folding, +/turf/simulated/floor/tiled/gunmetal, +/area/quarantined_outpost/engineering) +"vZF" = ( +/obj/structure/bed/stool/chair{ + dir = 1 + }, +/obj/effect/floor_decal/corner_wide/paleblue{ + dir = 10 + }, +/obj/random/dirt_75, +/turf/simulated/floor/tiled/airless, +/area/quarantined_outpost/security) +"vZJ" = ( +/obj/effect/floor_decal/corner/dark_blue{ + dir = 9 + }, +/obj/structure/cable{ + icon_state = "2-4" + }, +/turf/simulated/floor/tiled, +/area/quarantined_outpost/north_east_hallway) +"wbn" = ( +/obj/machinery/door/firedoor, +/obj/effect/floor_decal/industrial/hatch_door/research{ + dir = 8 + }, +/obj/machinery/door/airlock/external{ + name = "Cell A" + }, +/turf/simulated/floor/tiled/dark/full, +/area/quarantined_outpost/research) +"wbo" = ( +/obj/effect/floor_decal/industrial/outline_door/yellow{ + dir = 8 + }, +/obj/random/dirt_75, +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/simulated/floor/tiled, +/area/quarantined_outpost/reception) +"wbq" = ( +/obj/structure/platform_stairs/full{ + dir = 1 + }, +/obj/structure/platform/dark{ + dir = 4 + }, +/obj/effect/decal/rolling_fog, +/turf/simulated/floor/plating, +/area/quarantined_outpost/research) +"wcb" = ( +/obj/structure/cable/orange{ + icon_state = "4-8" + }, +/obj/structure/lattice/catwalk/indoor/grate, +/obj/machinery/door/airlock/external{ + dir = 4 + }, +/obj/effect/map_effect/marker/airlock/quarantined_outpost/entrance, +/obj/machinery/access_button{ + dir = 8; + pixel_x = -8; + pixel_y = -28 + }, +/obj/effect/map_effect/marker_helper/airlock/interior, +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/quarantined_outpost/entrance_lobby) +"wcr" = ( +/obj/structure/lattice/catwalk/indoor, +/obj/effect/decal/cleanable/cobweb, +/turf/simulated/floor/plating, +/area/quarantined_outpost/engineering/atmospherics) +"wcs" = ( +/obj/machinery/atmospherics/pipe/simple/hidden, +/obj/effect/floor_decal/industrial/warning{ + dir = 4 + }, +/obj/effect/decal/cleanable/floor_damage/rust, +/obj/random/dirt_75, +/turf/simulated/floor/tiled, +/area/quarantined_outpost/medbay) +"wcW" = ( +/obj/machinery/door/airlock/glass{ + dir = 1; + name = "Residential Lift"; + locked = 1 + }, +/obj/effect/floor_decal/industrial/hatch_door/yellow{ + dir = 1 + }, +/obj/machinery/door/firedoor, +/turf/simulated/floor/tiled, +/area/quarantined_outpost/elevator_hallway) +"wdl" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/quarantined_outpost/dorm_hallway) +"wdv" = ( +/obj/effect/floor_decal/corner/dark_blue{ + dir = 10 + }, +/obj/random/dirt_75, +/turf/simulated/floor/tiled/rust, +/area/quarantined_outpost/dorm_hallway) +"wdJ" = ( +/obj/effect/landmark/quarantined_outpost/canister_spawn, +/turf/simulated/floor/plating, +/area/quarantined_outpost/elevator_hallway/maintenance) +"wdZ" = ( +/obj/machinery/atmospherics/pipe/simple/visible/black{ + dir = 9 + }, +/obj/effect/decal/cleanable/floor_damage/rust, +/turf/simulated/floor/tiled/gunmetal, +/area/quarantined_outpost/engineering/atmospherics) +"wef" = ( +/obj/structure/lattice/catwalk/indoor/grate, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 1 + }, +/turf/simulated/floor/plating, +/area/quarantined_outpost/dorm_hallway) +"weG" = ( +/obj/random/dirt_75, +/turf/simulated/floor/tiled/dark, +/area/quarantined_outpost/cargo_bay) +"weN" = ( +/obj/effect/decal/cleanable/floor_damage/random_broken, +/obj/effect/decal/cleanable/molten_item, +/obj/abstract/footprint_spawner{ + dir = 8 + }, +/turf/simulated/floor/tiled/full, +/area/quarantined_outpost/cargo_bay) +"wfm" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 4 + }, +/obj/effect/decal/cleanable/blood, +/turf/simulated/floor/plating, +/area/quarantined_outpost/elevator_hallway/maintenance) +"wfF" = ( +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/effect/floor_decal/industrial/warning, +/obj/machinery/portable_atmospherics/canister/hydrogen, +/turf/simulated/floor/plating, +/area/quarantined_outpost/engineering/atmospherics) +"wfJ" = ( +/turf/simulated/floor/tiled, +/area/quarantined_outpost/elevator_hallway) +"wfX" = ( +/obj/effect/floor_decal/corner/dark_blue{ + dir = 6 + }, +/obj/effect/decal/cleanable/blood, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 1 + }, +/turf/simulated/floor/tiled/rust, +/area/quarantined_outpost/dorm_hallway) +"wgD" = ( +/obj/structure/structural_support, +/turf/simulated/floor/exoplanet/basalt, +/area/quarantined_outpost/cavern/east_cavern) +"wgZ" = ( +/obj/random/dirt_75, +/obj/item/material/stool/chair{ + dir = 1; + pixel_y = -6; + pixel_x = -7 + }, +/obj/effect/floor_decal/corner_wide/paleblue{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/quarantined_outpost/elevator_hallway) +"whb" = ( +/obj/effect/floor_decal/corner/dark_blue, +/obj/effect/decal/cleanable/floor_damage/rust, +/turf/simulated/floor/tiled/dark, +/area/quarantined_outpost/north_east_hallway) +"whh" = ( +/obj/effect/decal/cleanable/floor_damage/random_broken, +/obj/effect/decal/cleanable/molten_item, +/obj/abstract/footprint_spawner/body, +/turf/simulated/floor/plating, +/area/quarantined_outpost/elevator_hallway/maintenance) +"whi" = ( +/obj/effect/floor_decal/corner/dark_blue{ + dir = 6 + }, +/obj/effect/decal/cleanable/floor_damage/rust, +/obj/random/dirt_75, +/turf/simulated/floor/tiled/dark, +/area/quarantined_outpost/research) +"whm" = ( +/obj/structure/closet/emcloset, +/obj/effect/floor_decal/spline/plain/black{ + dir = 4 + }, +/obj/effect/floor_decal/industrial/outline/emergency_closet, +/turf/simulated/floor/tiled/dark/full, +/area/quarantined_outpost/north_east_hallway) +"whp" = ( +/obj/effect/floor_decal/industrial/outline_segment/red{ + dir = 1 + }, +/obj/effect/floor_decal/industrial/outline_segment/red{ + dir = 6 + }, +/obj/effect/floor_decal/industrial/outline_door/red{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark/full/airless, +/area/quarantined_outpost/security) +"whI" = ( +/obj/structure/lattice/catwalk, +/obj/structure/stairs_railing{ + dir = 1 + }, +/obj/random/maintenance_junk_or_loot, +/obj/machinery/light/small/emergency{ + dir = 8 + }, +/obj/structure/railing/mapped, +/turf/simulated/floor/exoplanet/abyss, +/area/quarantined_outpost/engineering/atmospherics) +"whP" = ( +/obj/effect/floor_decal/corner/dark_blue{ + dir = 5 + }, +/obj/structure/table/rack, +/obj/effect/floor_decal/industrial/outline/red, +/turf/simulated/floor/tiled/dark, +/area/quarantined_outpost/north_east_hallway) +"whX" = ( +/obj/structure/table/reinforced/steel, +/obj/effect/floor_decal/corner/mauve{ + dir = 9 + }, +/obj/machinery/reagentgrinder{ + pixel_x = 3; + pixel_y = 9 + }, +/obj/effect/floor_decal/spline/plain/purple{ + dir = 8 + }, +/turf/simulated/floor/tiled/light, +/area/quarantined_outpost/research) +"wio" = ( +/obj/effect/floor_decal/industrial/outline_door/yellow{ + dir = 8 + }, +/obj/random/dirt_75, +/turf/simulated/floor/tiled, +/area/quarantined_outpost/reception) +"wiR" = ( +/obj/structure/table/reinforced/steel, +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/random/dirt_75, +/obj/machinery/alarm/south, +/turf/simulated/floor/tiled/gunmetal/full, +/area/quarantined_outpost/server_relay/north_east) +"wiV" = ( +/obj/effect/floor_decal/corner_wide/lime{ + dir = 5 + }, +/obj/structure/bed/stool/chair/office/dark, +/obj/effect/floor_decal/corner_wide/lime, +/obj/random/dirt_75, +/turf/simulated/floor/tiled/white, +/area/quarantined_outpost/medbay) +"wje" = ( +/turf/simulated/wall/r_wall, +/area/quarantined_outpost/north_east_hallway) +"wjo" = ( +/obj/effect/floor_decal/spline/plain/corner/black, +/obj/random/dirt_75, +/turf/simulated/floor/lino, +/area/quarantined_outpost/reception) +"wjB" = ( +/obj/random/dirt_75, +/obj/effect/floor_decal/corner_wide/paleblue{ + dir = 8 + }, +/obj/machinery/alarm/south, +/turf/simulated/floor/tiled/airless, +/area/quarantined_outpost/security) +"wjR" = ( +/obj/effect/floor_decal/corner/yellow/full, +/obj/random/dirt_75, +/obj/random/dirt_75, +/turf/simulated/floor/tiled/gunmetal, +/area/quarantined_outpost/engineering/winch_room) +"wks" = ( +/obj/effect/floor_decal/corner/mauve{ + dir = 10 + }, +/obj/machinery/light/broken, +/turf/simulated/floor/tiled/white, +/area/quarantined_outpost/extraction_lab) +"wkB" = ( +/obj/effect/floor_decal/industrial/outline_door/yellow, +/obj/random/dirt_75, +/obj/random/dirt_75, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 1 + }, +/turf/simulated/floor/tiled/rust, +/area/quarantined_outpost/reception) +"wmm" = ( +/obj/random/dirt_75, +/obj/random/dirt_75, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 1 + }, +/turf/simulated/floor/tiled/full/airless, +/area/quarantined_outpost/security) +"wmu" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 5 + }, +/obj/random/dirt_75, +/obj/effect/decal/cleanable/blood, +/turf/simulated/floor/plating, +/area/quarantined_outpost/north_east_hallway/maintenance) +"wmE" = ( +/obj/machinery/door/firedoor, +/obj/effect/floor_decal/industrial/hatch_door/research{ + dir = 8 + }, +/obj/machinery/door/airlock/security{ + name = "Checkpoint" + }, +/turf/simulated/floor/tiled/dark/full, +/area/quarantined_outpost/research) +"wmK" = ( +/obj/effect/floor_decal/spline/plain/black{ + dir = 4 + }, +/obj/structure/railing/mapped{ + dir = 1 + }, +/turf/simulated/floor/tiled/gunmetal, +/area/quarantined_outpost/north_east_hallway) +"wng" = ( +/obj/effect/floor_decal/industrial/outline/service, +/obj/effect/floor_decal/industrial/loading/service{ + dir = 8 + }, +/obj/random/dirt_75, +/turf/simulated/floor/tiled/dark/full, +/area/quarantined_outpost/cafeteria) +"wnt" = ( +/obj/structure/platform{ + dir = 8 + }, +/obj/structure/platform{ + dir = 1 + }, +/obj/structure/platform_deco{ + dir = 6 + }, +/obj/random/dirt_75, +/turf/simulated/floor/plating, +/area/quarantined_outpost/cargo_bay) +"wnw" = ( +/obj/structure/lattice/catwalk/indoor/grate/dark, +/turf/simulated/floor/plating, +/area/quarantined_outpost/engineering) +"wnx" = ( +/obj/structure/table/standard, +/obj/machinery/microscope/science{ + pixel_y = 9; + pixel_x = -4; + dir = 1 + }, +/obj/effect/floor_decal/spline/plain/black, +/turf/simulated/floor/tiled/white, +/area/quarantined_outpost/extraction_lab) +"wnQ" = ( +/obj/effect/floor_decal/spline/plain/black{ + dir = 8 + }, +/obj/structure/railing/mapped{ + dir = 1 + }, +/obj/random/dirt_75, +/obj/effect/decal/cleanable/floor_damage/rust, +/turf/simulated/floor/tiled/gunmetal, +/area/quarantined_outpost/north_east_hallway) +"woZ" = ( +/obj/structure/table/standard, +/obj/effect/floor_decal/corner_wide/lime{ + dir = 5 + }, +/obj/effect/decal/cleanable/floor_damage/rust, +/turf/simulated/floor/tiled/white, +/area/quarantined_outpost/medbay) +"wql" = ( +/obj/structure/flora/pottedplant/dead, +/obj/effect/floor_decal/corner/dark_blue{ + dir = 9 + }, +/obj/machinery/light/floor/maybe_broken/decayed{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/quarantined_outpost/reception) +"wqA" = ( +/obj/machinery/conveyor{ + dir = 5 + }, +/turf/simulated/floor/tiled/dark/full, +/area/quarantined_outpost/cargo_bay) +"wqN" = ( +/obj/structure/flora/rock/stalagmite/random, +/turf/simulated/floor/exoplanet/basalt, +/area/quarantined_outpost/cavern/south_west_cavern) +"wqO" = ( +/obj/effect/floor_decal/industrial/outline/red, +/obj/structure/closet/secure_closet/guncabinet, +/obj/item/melee/energy/sword/knife/sol, +/obj/item/melee/energy/sword/knife/sol, +/obj/item/melee/baton/loaded, +/obj/item/gun/projectile/pistol/sol, +/obj/item/gun/projectile/pistol/sol, +/turf/simulated/floor/tiled/dark/full/airless, +/area/quarantined_outpost/security) +"wqW" = ( +/obj/random/dirt_75, +/obj/machinery/light/small/emergency{ + dir = 1 + }, +/obj/structure/cable{ + icon_state = "2-8" + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 6 + }, +/turf/simulated/floor/plating, +/area/quarantined_outpost/elevator_hallway/maintenance) +"wrb" = ( +/obj/random/dirt_75, +/obj/structure/cable{ + icon_state = "1-8" + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/simulated/floor/tiled, +/area/quarantined_outpost/reception) +"wrp" = ( +/obj/effect/floor_decal/industrial/hatch/yellow, +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/full, +/area/quarantined_outpost/reception) +"wrs" = ( +/obj/effect/floor_decal/corner_wide/lime{ + dir = 6 + }, +/obj/effect/floor_decal/corner_wide/lime{ + dir = 1 + }, +/turf/simulated/floor/tiled/white, +/area/quarantined_outpost/medbay) +"wrv" = ( +/obj/random/dirt_75, +/obj/random/dirt_75, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/effect/landmark/maybe_cut_cable, +/turf/simulated/floor/tiled, +/area/quarantined_outpost/cafeteria) +"wrw" = ( +/obj/structure/closet, +/obj/random/loot, +/obj/random/dirt_75, +/obj/random/dirt_75, +/turf/simulated/floor/plating, +/area/quarantined_outpost/north_east_hallway/maintenance) +"wrO" = ( +/obj/effect/decal/fake_object/light_source/invisible, +/obj/machinery/atmospherics/pipe/manifold4w/visible, +/turf/simulated/floor/reinforced, +/area/quarantined_outpost/engineering/atmospherics) +"wrT" = ( +/obj/effect/floor_decal/corner/mauve, +/turf/simulated/floor/tiled/light, +/area/quarantined_outpost/research) +"wrW" = ( +/obj/effect/floor_decal/spline/plain/corner/black{ + dir = 4 + }, +/obj/random/dirt_75, +/obj/random/maintenance_junk_or_loot, +/turf/simulated/floor/tiled, +/area/quarantined_outpost/gym) +"wsi" = ( +/obj/effect/floor_decal/corner_wide/paleblue{ + dir = 10 + }, +/obj/random/dirt_75, +/obj/random/dirt_75, +/obj/machinery/light/maybe_broken/decayed, +/turf/simulated/floor/tiled, +/area/quarantined_outpost/security) +"wtq" = ( +/obj/structure/structural_support, +/turf/simulated/floor/exoplanet/basalt, +/area/quarantined_outpost/north_east_hallway) +"wts" = ( +/obj/effect/floor_decal/corner/dark_blue/diagonal, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/turf/simulated/floor/tiled/dark/airless, +/area/quarantined_outpost/security) +"wtu" = ( +/obj/structure/closet/secure_closet/personal, +/obj/effect/floor_decal/corner/dark_green/full{ + dir = 8 + }, +/obj/random/loot, +/obj/effect/floor_decal/industrial/outline/grey, +/obj/random/dirt_75, +/turf/simulated/floor/tiled, +/area/quarantined_outpost/gym) +"wvh" = ( +/obj/effect/floor_decal/corner/mauve{ + dir = 8 + }, +/obj/effect/decal/cleanable/floor_damage/rust, +/obj/effect/landmark/quarantined_outpost/canister_spawn, +/turf/simulated/floor/tiled/white, +/area/quarantined_outpost/extraction_lab) +"wvo" = ( +/obj/structure/bed/padded, +/obj/effect/floor_decal/corner_wide/paleblue/full{ + dir = 1 + }, +/obj/item/stack/material/steel{ + pixel_y = 8; + pixel_x = 6 + }, +/obj/random/dirt_75, +/obj/random/dirt_75, +/turf/simulated/floor/tiled/airless, +/area/quarantined_outpost/security) +"wvB" = ( +/obj/effect/floor_decal/spline/plain/black{ + dir = 4 + }, +/obj/random/dirt_75, +/turf/simulated/floor/tiled/gunmetal, +/area/quarantined_outpost/engineering/tunnel) +"wvM" = ( +/obj/effect/floor_decal/spline/plain/black{ + dir = 8 + }, +/obj/effect/decal/cleanable/generic, +/obj/machinery/light/small/maybe_broken/decayed{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 1 + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/gunmetal, +/area/quarantined_outpost/north_east_hallway) +"wvR" = ( +/obj/structure/bed/stool/chair{ + dir = 4 + }, +/obj/random/dirt_75, +/obj/random/dirt_75, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 1 + }, +/turf/simulated/floor/tiled/airless, +/area/quarantined_outpost/security) +"wwl" = ( +/obj/structure/lattice/catwalk/indoor/grate/dark, +/turf/simulated/floor/plating, +/area/quarantined_outpost/elevator_hallway/maintenance) +"wwB" = ( +/obj/random/dirt_75, +/obj/effect/decal/cleanable/floor_damage/rust, +/obj/structure/cable{ + icon_state = "1-8" + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/quarantined_outpost/cargo_bay) +"wyy" = ( +/obj/effect/decal/cleanable/floor_damage/random_wood_broken, +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 8 + }, +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 4 + }, +/obj/random/dirt_75, +/turf/simulated/floor/wood, +/area/quarantined_outpost/cargo_bay) +"wyB" = ( +/obj/structure/railing/mapped, +/obj/structure/flora/rock/stalagmite/random, +/turf/simulated/floor/exoplanet/basalt, +/area/quarantined_outpost/north_east_hallway) +"wyR" = ( +/obj/structure/table/standard, +/obj/effect/floor_decal/industrial/outline_straight/custodial{ + dir = 8 + }, +/obj/random/dirt_75, +/turf/simulated/floor/tiled/light, +/area/quarantined_outpost/research) +"wzf" = ( +/obj/effect/floor_decal/corner/dark_blue/full{ + dir = 4 + }, +/obj/structure/bookcase/libraryspawn/religion, +/turf/simulated/floor/tiled, +/area/quarantined_outpost/reception) +"wzi" = ( +/obj/structure/structural_support, +/turf/simulated/floor/exoplanet/basalt, +/area/quarantined_outpost/research) +"wzP" = ( +/obj/structure/flora/rock/pile/random, +/turf/simulated/floor/exoplanet/basalt, +/area/quarantined_outpost/cavern/south_west_cavern) +"wAW" = ( +/obj/structure/lattice/catwalk, +/obj/structure/extinguisher_cabinet/east, +/obj/effect/decal/rolling_fog, +/turf/simulated/floor/plating, +/area/quarantined_outpost/research) +"wBA" = ( +/obj/effect/decal/cleanable/cobweb2, +/obj/structure/platform_stairs/full/south_north_cap/half{ + dir = 4 + }, +/obj/structure/platform{ + dir = 1 + }, +/turf/simulated/floor/tiled/dark, +/area/quarantined_outpost/research) +"wBG" = ( +/turf/simulated/floor/tiled/airless, +/area/quarantined_outpost/security) +"wCz" = ( +/obj/structure/closet/body_bag, +/obj/effect/floor_decal/sign/gtr, +/obj/random/dirt_75, +/obj/random/dirt_75, +/obj/random/dirt_75, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/quarantined_outpost/medbay) +"wCB" = ( +/obj/effect/floor_decal/industrial/hatch_door/yellow{ + dir = 1 + }, +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/glass, +/obj/random/dirt_75, +/turf/simulated/floor/tiled/full, +/area/quarantined_outpost/gym) +"wCL" = ( +/obj/structure/platform/ledge/dark{ + dir = 1 + }, +/turf/simulated/floor/exoplanet/abyss, +/area/quarantined_outpost/chasm) +"wCO" = ( +/obj/effect/floor_decal/corner/mauve/diagonal, +/obj/abstract/footprint_spawner/body{ + dir = 8 + }, +/obj/abstract/footprint_spawner_turn_helper{ + dir = 1 + }, +/turf/simulated/floor/tiled/white, +/area/quarantined_outpost/extraction_lab) +"wCU" = ( +/obj/effect/floor_decal/industrial/hatch/yellow, +/obj/machinery/door/firedoor{ + dir = 4 + }, +/obj/machinery/door/blast/shutters{ + dir = 8; + name = "Custodial Garage Shutters"; + id = "quarantined_outpost_janitor" + }, +/turf/simulated/floor/tiled/full, +/area/quarantined_outpost/dorm_hallway) +"wDf" = ( +/obj/structure/lattice/catwalk/indoor/grate/damaged, +/turf/simulated/floor/plating, +/area/quarantined_outpost/entrance_lobby) +"wDu" = ( +/obj/structure/table/standard, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/item/toy/desk/fan{ + pixel_y = 2; + pixel_x = -5 + }, +/obj/effect/floor_decal/corner_wide/paleblue{ + dir = 5 + }, +/obj/structure/sign/flag/callisto{ + pixel_y = 32 + }, +/turf/simulated/floor/tiled/airless, +/area/quarantined_outpost/security) +"wDw" = ( +/obj/effect/floor_decal/corner/dark_blue{ + dir = 4 + }, +/obj/structure/bookcase/libraryspawn/reference, +/turf/simulated/floor/tiled, +/area/quarantined_outpost/reception) +"wDF" = ( +/obj/structure/railing/mapped{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/yellow, +/obj/structure/lattice/catwalk/indoor, +/turf/simulated/floor/exoplanet/abyss, +/area/quarantined_outpost/research/containment) +"wDG" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/yellow{ + dir = 1 + }, +/obj/structure/lattice/catwalk/indoor, +/turf/simulated/floor/exoplanet/abyss, +/area/quarantined_outpost/research/containment) +"wEf" = ( +/obj/structure/lattice/catwalk/indoor/grate/dark, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/quarantined_outpost/engineering/atmospherics) +"wEg" = ( +/obj/effect/decal/cleanable/floor_damage/random_burned, +/obj/random/dirt_75, +/obj/effect/decal/cleanable/ash{ + pixel_y = -3; + pixel_x = -6 + }, +/turf/simulated/floor/plating, +/area/quarantined_outpost/entrance_lobby) +"wFz" = ( +/obj/effect/floor_decal/corner/yellow{ + dir = 4 + }, +/obj/effect/floor_decal/corner/dark_blue, +/obj/random/dirt_75, +/obj/effect/decal/cleanable/floor_damage/rust, +/obj/machinery/atmospherics/pipe/manifold/visible/red{ + dir = 8 + }, +/turf/simulated/floor/tiled/dark, +/area/quarantined_outpost/engineering/atmospherics) +"wGd" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/structure/cable{ + icon_state = "2-8" + }, +/turf/simulated/floor/plating, +/area/quarantined_outpost/entrance_maintenance) +"wGf" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 4 + }, +/obj/effect/decal/cleanable/floor_damage/rust, +/obj/effect/decal/rolling_fog, +/turf/simulated/floor/plating, +/area/quarantined_outpost/research) +"wGv" = ( +/obj/structure/lattice/catwalk/indoor/grate/light, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 1 + }, +/turf/simulated/floor/plating, +/area/quarantined_outpost/research) +"wGw" = ( +/obj/random/dirt_75, +/obj/random/dirt_75, +/turf/simulated/floor/tiled/dark/full, +/area/quarantined_outpost/reception) +"wHe" = ( +/obj/effect/floor_decal/corner/black{ + dir = 5 + }, +/obj/random/dirt_75, +/obj/structure/bed/stool/chair/folding, +/turf/simulated/floor/tiled, +/area/quarantined_outpost/dorm_hallway) +"wHT" = ( +/obj/effect/floor_decal/corner/brown/full{ + dir = 8 + }, +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/machinery/suit_cycler/mining/prepared, +/turf/simulated/floor/tiled/dark, +/area/quarantined_outpost/cargo_bay) +"wIi" = ( +/obj/structure/railing/mapped{ + dir = 1 + }, +/obj/structure/railing/mapped{ + dir = 4 + }, +/obj/random/dirt_75, +/obj/random/junk, +/turf/simulated/floor/carpet/rubber, +/area/quarantined_outpost/gym) +"wIy" = ( +/obj/effect/floor_decal/corner/lime{ + dir = 6 + }, +/obj/structure/bed/stool/chair/folding{ + dir = 8 + }, +/obj/random/dirt_75, +/turf/simulated/floor/tiled, +/area/quarantined_outpost/cafeteria) +"wIY" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 1 + }, +/turf/simulated/floor/tiled/ridged, +/area/quarantined_outpost/extraction_lab) +"wJn" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/simulated/floor/plating, +/area/quarantined_outpost/entrance_maintenance) +"wJt" = ( +/obj/structure/structural_support, +/obj/random/dirt_75, +/obj/effect/decal/rolling_fog, +/turf/simulated/floor/tiled/dark/full, +/area/quarantined_outpost/research) +"wJE" = ( +/obj/effect/floor_decal/spline/plain/black{ + dir = 4 + }, +/obj/random/dirt_75, +/obj/machinery/atmospherics/unary/vent_scrubber/on, +/turf/simulated/floor/tiled/gunmetal, +/area/quarantined_outpost/north_east_hallway) +"wJF" = ( +/obj/effect/floor_decal/industrial/outline_segment/red{ + dir = 4 + }, +/obj/effect/floor_decal/industrial/outline_segment/red{ + dir = 10 + }, +/obj/effect/floor_decal/industrial/outline_door/red, +/obj/random/dirt_75, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 1 + }, +/turf/simulated/floor/tiled/dark/full/airless, +/area/quarantined_outpost/security) +"wJI" = ( +/obj/effect/floor_decal/corner/brown, +/obj/structure/table/rack/retail_shelf, +/obj/structure/sign/flag/sol/old{ + pixel_y = -32 + }, +/turf/simulated/floor/tiled, +/area/quarantined_outpost/cargo_bay) +"wJJ" = ( +/obj/structure/table/standard, +/obj/effect/floor_decal/corner/mauve/full{ + dir = 8 + }, +/obj/machinery/microscope/science{ + pixel_y = 9; + pixel_x = -4 + }, +/turf/simulated/floor/tiled/light, +/area/quarantined_outpost/research) +"wJL" = ( +/obj/effect/floor_decal/corner/yellow{ + dir = 8 + }, +/obj/random/dirt_75, +/obj/abstract/footprint_spawner{ + dir = 1 + }, +/turf/simulated/floor/tiled/gunmetal, +/area/quarantined_outpost/engineering/tunnel) +"wJU" = ( +/obj/machinery/light/small/floor/emergency, +/obj/effect/floor_decal/spline/plain/corner/black{ + dir = 1 + }, +/obj/effect/floor_decal/spline/plain/corner/black, +/obj/machinery/atmospherics/pipe/simple/hidden/yellow{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled/ridged, +/area/quarantined_outpost/extraction_lab) +"wKa" = ( +/obj/structure/platform_deco{ + dir = 4 + }, +/obj/effect/decal/cleanable/floor_damage/rust, +/turf/simulated/floor/tiled/ridged, +/area/quarantined_outpost/extraction_lab) +"wKu" = ( +/obj/effect/floor_decal/corner/black{ + dir = 6 + }, +/obj/structure/bunk_bed/prison{ + dir = 9 + }, +/turf/simulated/floor/tiled, +/area/quarantined_outpost/dorm_hallway) +"wKE" = ( +/obj/effect/floor_decal/industrial/hatch/yellow, +/obj/machinery/door/firedoor/noid/closed, +/turf/simulated/floor/tiled/full, +/area/quarantined_outpost/cargo_bay) +"wKQ" = ( +/obj/effect/floor_decal/corner/dark_green{ + dir = 10 + }, +/obj/machinery/sleeper{ + dir = 8 + }, +/turf/simulated/floor/tiled/dark, +/area/quarantined_outpost/medbay) +"wLu" = ( +/obj/effect/floor_decal/corner/dark_blue/diagonal, +/obj/effect/decal/cleanable/blood, +/obj/random/dirt_75, +/obj/random/dirt_75, +/turf/simulated/floor/tiled/dark/airless, +/area/quarantined_outpost/security) +"wLM" = ( +/obj/effect/floor_decal/corner/yellow{ + dir = 8 + }, +/turf/simulated/floor/tiled/dark/airless, +/area/quarantined_outpost/auxiliary_power) +"wLX" = ( +/obj/effect/floor_decal/corner/yellow{ + dir = 4 + }, +/obj/random/dirt_75, +/turf/simulated/floor/tiled/dark, +/area/quarantined_outpost/engineering/atmospherics) +"wMh" = ( +/obj/random/dirt_75, +/obj/structure/flora/rock/random, +/turf/simulated/floor/exoplanet/basalt, +/area/quarantined_outpost/cavern/east_cavern) +"wMy" = ( +/obj/structure/closet, +/obj/random/dirt_75, +/obj/random/loot, +/turf/simulated/floor/tiled, +/area/quarantined_outpost/cafeteria/maintenance) +"wML" = ( +/obj/effect/floor_decal/corner_wide/paleblue{ + dir = 6 + }, +/obj/random/junk, +/obj/random/dirt_75, +/obj/random/dirt_75, +/obj/structure/cable{ + icon_state = "0-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 1 + }, +/obj/machinery/power/apc/empty/east, +/turf/simulated/floor/tiled/airless, +/area/quarantined_outpost/security) +"wMZ" = ( +/obj/effect/floor_decal/corner/mauve{ + dir = 8 + }, +/obj/structure/table/standard, +/obj/machinery/light/broken{ + dir = 8 + }, +/obj/effect/decal/cleanable/floor_damage/rust, +/turf/simulated/floor/tiled/white, +/area/quarantined_outpost/extraction_lab) +"wNa" = ( +/obj/effect/floor_decal/corner/mauve{ + dir = 6 + }, +/obj/effect/floor_decal/spline/plain/purple{ + dir = 4 + }, +/obj/effect/decal/cleanable/blood, +/turf/simulated/floor/tiled/light, +/area/quarantined_outpost/research) +"wNc" = ( +/obj/effect/floor_decal/corner/green/diagonal, +/obj/random/dirt_75, +/obj/machinery/alarm/west, +/turf/simulated/floor/tiled/white, +/area/quarantined_outpost/dorm_hallway) +"wNu" = ( +/obj/effect/floor_decal/corner/dark_blue{ + dir = 5 + }, +/obj/random/dirt_75, +/obj/structure/cable{ + icon_state = "1-4" + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, +/turf/simulated/floor/tiled/rust, +/area/quarantined_outpost/dorm_hallway) +"wOd" = ( +/obj/effect/floor_decal/industrial/hatch/yellow, +/obj/machinery/door/firedoor{ + dir = 4 + }, +/obj/random/dirt_75, +/obj/abstract/footprint_spawner/oil{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark/full, +/area/quarantined_outpost/engineering/atmospherics) +"wOp" = ( +/obj/effect/floor_decal/corner/dark_blue{ + dir = 5 + }, +/obj/effect/decal/cleanable/blood, +/obj/random/dirt_75, +/turf/simulated/floor/tiled, +/area/quarantined_outpost/reception) +"wPI" = ( +/obj/effect/floor_decal/corner/yellow{ + dir = 8 + }, +/obj/effect/floor_decal/corner/dark_blue, +/obj/structure/bed/stool/chair{ + dir = 1 + }, +/obj/machinery/light/maybe_broken/decayed, +/turf/simulated/floor/tiled/dark, +/area/quarantined_outpost/north_east_hallway) +"wQl" = ( +/obj/structure/platform/dark{ + dir = 1 + }, +/obj/random/dirt_75, +/turf/simulated/floor/plating, +/area/quarantined_outpost/engineering/atmospherics) +"wQn" = ( +/obj/structure/flora/rock/stalagmite/random, +/turf/simulated/floor/exoplanet/basalt, +/area/quarantined_outpost/extraction_lab) +"wQp" = ( +/obj/structure/cable/orange{ + icon_state = "0-8" + }, +/obj/random/dirt_75, +/obj/random/dirt_75, +/turf/simulated/floor/plating/asteroid/airless, +/area/quarantined_outpost/exterior) +"wQI" = ( +/obj/effect/floor_decal/corner/dark_green/diagonal, +/obj/random/dirt_75, +/obj/effect/landmark/quarantined_outpost/creature, +/turf/simulated/floor/tiled, +/area/quarantined_outpost/gym) +"wQK" = ( +/obj/abstract/footprint_spawner/oil, +/obj/abstract/footprint_spawner_turn_helper{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark/full, +/area/quarantined_outpost/engineering/atmospherics) +"wQL" = ( +/obj/effect/floor_decal/corner/dark_blue{ + dir = 1 + }, +/obj/effect/floor_decal/corner/yellow{ + dir = 4 + }, +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/structure/engineeringcart/half_filled, +/obj/machinery/light/small/maybe_broken/decayed{ + dir = 1 + }, +/turf/simulated/floor/tiled/dark, +/area/quarantined_outpost/engineering/atmospherics) +"wQU" = ( +/obj/effect/floor_decal/corner_wide/paleblue{ + dir = 6 + }, +/obj/structure/closet/walllocker/secure{ + pixel_x = 32 + }, +/obj/random/loot, +/obj/random/smokable, +/obj/random/dirt_75, +/turf/simulated/floor/tiled/airless, +/area/quarantined_outpost/security) +"wQX" = ( +/obj/structure/table/standard, +/obj/effect/floor_decal/corner/yellow{ + dir = 8 + }, +/obj/effect/floor_decal/corner/dark_blue, +/turf/simulated/floor/tiled/dark, +/area/quarantined_outpost/engineering/atmospherics) +"wQZ" = ( +/obj/effect/floor_decal/corner/yellow{ + dir = 8 + }, +/obj/effect/decal/cleanable/floor_damage/random_broken, +/turf/simulated/floor/tiled/gunmetal, +/area/quarantined_outpost/engineering) +"wRg" = ( +/obj/effect/floor_decal/corner/mauve, +/obj/structure/platform_stairs/full/south_north_cap/half{ + dir = 4 + }, +/turf/simulated/floor/tiled/light, +/area/quarantined_outpost/research) +"wRG" = ( +/obj/structure/grille, +/obj/random/dirt_75, +/turf/simulated/floor/plating, +/area/quarantined_outpost/engineering/tunnel) +"wSk" = ( +/obj/structure/sink{ + dir = 4; + pixel_x = 12 + }, +/obj/structure/mirror{ + pixel_x = 27 + }, +/turf/simulated/floor/tiled/white, +/area/quarantined_outpost/gym) +"wSo" = ( +/obj/random/dirt_75, +/obj/machinery/power/apc/east, +/obj/structure/cable, +/turf/simulated/floor/tiled/gunmetal, +/area/quarantined_outpost/engineering/winch_room) +"wSC" = ( +/obj/structure/bed/stool/chair, +/obj/random/dirt_75, +/turf/simulated/floor/tiled/dark, +/area/quarantined_outpost/entrance_lobby) +"wTt" = ( +/obj/effect/floor_decal/corner/black{ + dir = 9 + }, +/obj/random/junk, +/turf/simulated/floor/tiled, +/area/quarantined_outpost/dorm_hallway) +"wTA" = ( +/obj/machinery/atmospherics/portables_connector{ + dir = 8 + }, +/obj/machinery/portable_atmospherics/canister/hydrogen, +/turf/simulated/floor/reinforced, +/area/quarantined_outpost/engineering/atmospherics) +"wTS" = ( +/obj/effect/floor_decal/corner/dark_blue{ + dir = 4 + }, +/obj/effect/decal/cleanable/floor_damage/rust, +/obj/random/dirt_75, +/turf/simulated/floor/tiled/dark, +/area/quarantined_outpost/research) +"wTX" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/obj/effect/decal/cleanable/blood, +/turf/simulated/floor/tiled, +/area/quarantined_outpost/cargo_bay) +"wUc" = ( +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/random/dirt_75, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 1 + }, +/turf/simulated/floor/tiled/full, +/area/quarantined_outpost/cargo_bay) +"wUe" = ( +/obj/effect/floor_decal/corner/yellow/full{ + dir = 8 + }, +/obj/effect/decal/cleanable/cobweb, +/obj/random/dirt_75, +/obj/random/dirt_75, +/obj/structure/trash_pile, +/turf/simulated/floor/tiled/gunmetal, +/area/quarantined_outpost/engineering/winch_room) +"wUu" = ( +/obj/random/maintenance_junk_or_loot, +/turf/simulated/floor/plating, +/area/quarantined_outpost/engineering/atmospherics) +"wVg" = ( +/obj/random/dirt_75, +/obj/effect/floor_decal/industrial/outline_door/yellow{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/quarantined_outpost/entrance_lobby) +"wVr" = ( +/obj/random/dirt_75, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/obj/structure/cable{ + icon_state = "1-4" + }, +/turf/simulated/floor/tiled/gunmetal/full, +/area/quarantined_outpost/north_east_hallway) +"wVw" = ( +/obj/structure/bed/stool/chair{ + dir = 8 + }, +/obj/effect/floor_decal/corner_wide/paleblue{ + dir = 10 + }, +/obj/random/dirt_75, +/turf/simulated/floor/tiled/airless, +/area/quarantined_outpost/security) +"wWq" = ( +/obj/machinery/door/firedoor, +/obj/effect/floor_decal/industrial/hatch/yellow, +/obj/random/dirt_75, +/turf/simulated/floor/tiled/full, +/area/quarantined_outpost/elevator_hallway) +"wWG" = ( +/obj/structure/bed/stool/chair/office/bridge/generic{ + dir = 8 + }, +/obj/random/dirt_75, +/turf/simulated/floor/tiled/airless, +/area/quarantined_outpost/security) +"wXk" = ( +/obj/effect/floor_decal/corner/yellow{ + dir = 9 + }, +/obj/random/dirt_75, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, +/turf/simulated/floor/tiled/gunmetal, +/area/quarantined_outpost/engineering/winch_room) +"wXo" = ( +/obj/effect/floor_decal/spline/plain/black, +/obj/random/dirt_75, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/alarm/south, +/turf/simulated/floor/tiled/gunmetal, +/area/quarantined_outpost/north_east_hallway) +"wXq" = ( +/obj/effect/floor_decal/corner/mauve{ + dir = 9 + }, +/obj/random/dirt_75, +/obj/machinery/alarm/west, +/turf/simulated/floor/tiled/light, +/area/quarantined_outpost/research) +"wXr" = ( +/obj/structure/railing/mapped{ + dir = 1 + }, +/turf/simulated/floor/exoplanet/basalt, +/area/quarantined_outpost/engineering/tunnel) +"wXF" = ( +/obj/effect/floor_decal/industrial/outline/service, +/obj/effect/floor_decal/industrial/loading/service{ + dir = 1 + }, +/obj/random/dirt_75, +/turf/simulated/floor/tiled/dark/full, +/area/quarantined_outpost/cafeteria) +"wXX" = ( +/obj/structure/barricade/wooden{ + dir = 8 + }, +/obj/item/material/stool/chair{ + dir = 1; + pixel_y = -6; + pixel_x = -7 + }, +/turf/simulated/floor/tiled/white, +/area/quarantined_outpost/medbay) +"wYA" = ( +/obj/structure/lattice, +/turf/simulated/floor/plating, +/area/quarantined_outpost/cafeteria/maintenance) +"wYL" = ( +/obj/machinery/door/firedoor/noid/closed, +/turf/simulated/floor/tiled/dark/full, +/area/quarantined_outpost/extraction_lab) +"wYO" = ( +/obj/structure/railing/mapped, +/obj/structure/lattice/catwalk/indoor, +/obj/machinery/alarm/north, +/turf/simulated/floor/plating, +/area/quarantined_outpost/cargo_bay) +"wZh" = ( +/obj/effect/floor_decal/corner/dark_blue{ + dir = 8 + }, +/obj/random/dirt_75, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/quarantined_outpost/north_east_hallway) +"wZz" = ( +/obj/structure/bed/stool/chair/folding{ + dir = 4 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 9 + }, +/obj/random/dirt_75, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "2-8" + }, +/turf/simulated/floor/tiled, +/area/quarantined_outpost/cargo_bay) +"wZR" = ( +/obj/effect/floor_decal/corner/dark_blue{ + dir = 5 + }, +/obj/random/dirt_75, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/extinguisher_cabinet/north, +/turf/simulated/floor/tiled, +/area/quarantined_outpost/dorm_hallway) +"xaw" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 8 + }, +/obj/effect/floor_decal/industrial/outline_straight/yellow{ + dir = 4 + }, +/obj/random/dirt_75, +/obj/effect/decal/rolling_fog, +/turf/simulated/floor/plating, +/area/quarantined_outpost/research) +"xaB" = ( +/obj/effect/floor_decal/spline/plain/black{ + dir = 6 + }, +/obj/structure/flora/pottedplant/dead, +/obj/random/dirt_75, +/turf/simulated/floor/tiled/gunmetal, +/area/quarantined_outpost/north_east_hallway) +"xaQ" = ( +/obj/effect/floor_decal/asteroid_dug, +/turf/simulated/floor/exoplanet/asteroid/ash/rocky, +/area/quarantined_outpost/exterior) +"xaS" = ( +/turf/simulated/wall/shuttle/scc_space_ship/cardinal, +/area/quarantined_outpost/reception) +"xba" = ( +/obj/structure/lattice/catwalk/indoor/grate/dark, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 1 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/simulated/floor/plating, +/area/quarantined_outpost/north_east_hallway) +"xbr" = ( +/obj/effect/floor_decal/corner/lime{ + dir = 4 + }, +/obj/random/dirt_75, +/turf/simulated/floor/tiled, +/area/quarantined_outpost/cafeteria) +"xbI" = ( +/obj/effect/floor_decal/corner/dark_blue{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/quarantined_outpost/north_east_hallway) +"xbT" = ( +/obj/machinery/light/floor/maybe_broken/decayed, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/turf/simulated/floor/tiled/bitile/light, +/area/quarantined_outpost/research) +"xcz" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 1 + }, +/obj/structure/lattice/catwalk/indoor/grate/old, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 1 + }, +/turf/simulated/floor/airless, +/area/quarantined_outpost/security) +"xdm" = ( +/obj/effect/floor_decal/corner_wide/paleblue{ + dir = 1 + }, +/obj/structure/noticeboard{ + pixel_y = 32 + }, +/obj/random/dirt_75, +/turf/simulated/floor/tiled/airless, +/area/quarantined_outpost/security) +"xdp" = ( +/obj/effect/floor_decal/spline/plain/black{ + dir = 1 + }, +/obj/structure/bed/stool/chair{ + dir = 1 + }, +/turf/simulated/floor/tiled/dark/full, +/area/quarantined_outpost/elevator_hallway) +"xdN" = ( +/obj/structure/table/standard/flipped, +/obj/effect/floor_decal/corner/mauve/full, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/random/dirt_75, +/turf/simulated/floor/tiled/light, +/area/quarantined_outpost/research) +"xex" = ( +/obj/random/dirt_75, +/obj/machinery/power/apc/north, +/obj/structure/cable{ + icon_state = "0-8" + }, +/turf/simulated/floor/plating, +/area/quarantined_outpost/entrance_maintenance) +"xeH" = ( +/obj/effect/floor_decal/corner/lime{ + dir = 8 + }, +/obj/random/dirt_75, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/structure/cable{ + icon_state = "2-4" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/quarantined_outpost/cafeteria) +"xeP" = ( +/obj/structure/platform/ledge, +/obj/random/dirt_75, +/obj/effect/decal/cleanable/floor_damage/rust, +/turf/simulated/floor/tiled, +/area/quarantined_outpost/cargo_bay) +"xff" = ( +/obj/effect/floor_decal/corner/yellow{ + dir = 9 + }, +/obj/machinery/conveyor_switch{ + pixel_x = 14; + pixel_y = 21 + }, +/obj/random/dirt_75, +/obj/machinery/portable_atmospherics/canister/oxygen, +/turf/simulated/floor/tiled/dark, +/area/quarantined_outpost/engineering/winch_room) +"xfF" = ( +/obj/effect/floor_decal/corner/yellow{ + dir = 9 + }, +/turf/simulated/floor/tiled/dark, +/area/quarantined_outpost/engineering/winch_room) +"xgj" = ( +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/effect/floor_decal/industrial/warning{ + dir = 5 + }, +/obj/structure/structural_support, +/turf/simulated/floor/plating, +/area/quarantined_outpost/engineering/atmospherics) +"xgm" = ( +/obj/structure/bed/stool/chair, +/obj/effect/floor_decal/industrial/outline/security, +/obj/effect/decal/cleanable/blood, +/obj/random/dirt_75, +/turf/simulated/floor/tiled/dark/airless, +/area/quarantined_outpost/security) +"xgo" = ( +/obj/random/dirt_75, +/obj/random/maintenance_junk_or_loot, +/turf/simulated/floor/tiled/rust, +/area/quarantined_outpost/elevator_hallway) +"xgB" = ( +/obj/effect/decal/remains, +/turf/simulated/floor/exoplanet/basalt, +/area/quarantined_outpost/cavern/south_west_cavern) +"xgH" = ( +/obj/structure/closet, +/obj/random/loot, +/turf/simulated/floor/plating, +/area/quarantined_outpost/north_east_hallway/maintenance) +"xgP" = ( +/obj/machinery/atmospherics/portables_connector{ + dir = 1 + }, +/obj/machinery/portable_atmospherics/canister/oxygen, +/turf/simulated/floor/reinforced, +/area/quarantined_outpost/engineering/atmospherics) +"xhX" = ( +/obj/item/material/stool/chair/folding{ + pixel_y = 4 + }, +/obj/item/material/stool/chair/folding{ + pixel_y = 8 + }, +/obj/item/material/stool/chair/folding{ + pixel_y = 12 + }, +/obj/item/material/stool/chair/folding{ + pixel_y = 16 + }, +/obj/machinery/vending/dinnerware/plastic{ + density = 0; + pixel_y = 24 + }, +/turf/simulated/floor/tiled, +/area/quarantined_outpost/cafeteria) +"xia" = ( +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/random/dirt_75, +/obj/machinery/atmospherics/portables_connector{ + dir = 1 + }, +/obj/machinery/portable_atmospherics/canister/air/airlock, +/obj/machinery/door/window{ + dir = 1 + }, +/turf/simulated/floor/tiled/dark/full/airless, +/area/quarantined_outpost/entrance_lobby) +"xir" = ( +/obj/random/dirt_75, +/obj/structure/barricade/wooden/road{ + dir = 1 + }, +/turf/simulated/floor/exoplanet/asteroid/ash/rocky, +/area/quarantined_outpost/exterior) +"xjO" = ( +/obj/abstract/footprint_spawner/oil{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/quarantined_outpost/engineering/atmospherics) +"xjT" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/red{ + dir = 1 + }, +/obj/random/dirt_75, +/obj/effect/decal/cleanable/floor_damage/rust, +/turf/simulated/floor/tiled/dark, +/area/quarantined_outpost/engineering/atmospherics) +"xkr" = ( +/obj/effect/map_effect/window_spawner/full/borosilicate/reinforced, +/obj/machinery/atmospherics/pipe/simple/visible/cyan{ + dir = 8 + }, +/obj/machinery/door/blast/regular/open{ + id = "quarantined_outpost_combustion_viewing" + }, +/turf/simulated/floor/tiled/gunmetal/full, +/area/quarantined_outpost/engineering/atmospherics) +"xks" = ( +/turf/simulated/wall, +/area/quarantined_outpost/elevator_hallway/maintenance) +"xkD" = ( +/obj/structure/railing/mapped{ + dir = 8 + }, +/obj/effect/floor_decal/industrial/outline/operations, +/turf/simulated/floor/tiled/dark/full, +/area/quarantined_outpost/reception) +"xlu" = ( +/turf/simulated/floor/tiled/bitile{ + dir = 1 + }, +/area/quarantined_outpost/cafeteria) +"xme" = ( +/obj/effect/floor_decal/spline/plain/black, +/obj/effect/landmark/quarantined_outpost/creature, +/turf/simulated/floor/tiled/gunmetal, +/area/quarantined_outpost/engineering/tunnel) +"xms" = ( +/obj/effect/floor_decal/corner_wide/paleblue{ + dir = 10 + }, +/obj/random/dirt_75, +/obj/effect/decal/cleanable/blood, +/turf/simulated/floor/tiled/airless, +/area/quarantined_outpost/security) +"xmz" = ( +/obj/random/dirt_75, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/quarantined_outpost/elevator_hallway) +"xmD" = ( +/obj/effect/floor_decal/corner/yellow{ + dir = 4 + }, +/obj/effect/floor_decal/corner/dark_blue{ + dir = 1 + }, +/obj/structure/table/standard, +/turf/simulated/floor/tiled/dark, +/area/quarantined_outpost/engineering/atmospherics) +"xnc" = ( +/obj/effect/floor_decal/corner/mauve{ + dir = 4 + }, +/obj/structure/table/standard, +/obj/structure/railing/mapped{ + dir = 8 + }, +/turf/simulated/floor/tiled/light, +/area/quarantined_outpost/research) +"xos" = ( +/obj/effect/floor_decal/corner_wide/lime{ + dir = 10 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/alarm/south, +/turf/simulated/floor/tiled/white, +/area/quarantined_outpost/medbay) +"xoL" = ( +/obj/machinery/conveyor{ + dir = 4 + }, +/obj/structure/railing/mapped{ + dir = 4 + }, +/obj/random/dirt_75, +/turf/simulated/floor/carpet/rubber, +/area/quarantined_outpost/gym) +"xoU" = ( +/obj/effect/floor_decal/corner/brown{ + dir = 6 + }, +/obj/structure/railing/mapped{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/quarantined_outpost/cargo_bay) +"xph" = ( +/obj/effect/floor_decal/corner/grey/diagonal, +/turf/simulated/floor/tiled/white, +/area/quarantined_outpost/cafeteria) +"xpE" = ( +/obj/effect/floor_decal/corner/mauve{ + dir = 6 + }, +/obj/effect/floor_decal/spline/plain/purple{ + dir = 4 + }, +/obj/effect/decal/cleanable/floor_damage/rust, +/obj/random/dirt_75, +/obj/effect/landmark/quarantined_outpost/creature, +/turf/simulated/floor/tiled/light, +/area/quarantined_outpost/research) +"xpG" = ( +/obj/effect/floor_decal/industrial/outline_straight/yellow{ + dir = 5 + }, +/turf/simulated/floor/tiled/dark, +/area/quarantined_outpost/research) +"xpJ" = ( +/obj/random/dirt_75, +/turf/simulated/floor/tiled, +/area/quarantined_outpost/reception) +"xpV" = ( +/obj/effect/floor_decal/spline/plain/black{ + dir = 8 + }, +/obj/structure/railing/mapped{ + dir = 1 + }, +/turf/simulated/floor/tiled/gunmetal, +/area/quarantined_outpost/north_east_hallway) +"xrp" = ( +/obj/effect/floor_decal/industrial/hatch/yellow, +/obj/machinery/door/firedoor{ + dir = 4 + }, +/obj/machinery/door/blast/shutters{ + dir = 4; + id = "quarantined_outpost_extraction_west" + }, +/turf/simulated/floor/tiled/dark/full, +/area/quarantined_outpost/extraction_lab) +"xrx" = ( +/obj/structure/platform_stairs/full{ + dir = 1 + }, +/turf/simulated/floor/tiled/light, +/area/quarantined_outpost/research) +"xrQ" = ( +/obj/effect/floor_decal/corner/yellow{ + dir = 8 + }, +/obj/effect/floor_decal/corner/dark_blue, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/quarantined_outpost/engineering/atmospherics) +"xrS" = ( +/obj/effect/landmark/quarantined_outpost/creature, +/turf/simulated/floor/exoplanet/basalt, +/area/quarantined_outpost/cavern/south_west_cavern) +"xsB" = ( +/obj/effect/floor_decal/corner/dark_blue{ + dir = 10 + }, +/obj/random/dirt_75, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/quarantined_outpost/elevator_hallway) +"xsI" = ( +/obj/effect/floor_decal/corner/dark_blue{ + dir = 9 + }, +/obj/random/dirt_75, +/turf/simulated/floor/tiled/dark, +/area/quarantined_outpost/north_east_hallway) +"xsJ" = ( +/obj/effect/floor_decal/corner/dark_blue, +/obj/random/dirt_75, +/obj/effect/decal/cleanable/generic, +/turf/simulated/floor/tiled, +/area/quarantined_outpost/entrance_lobby) +"xtn" = ( +/obj/structure/cable{ + icon_state = "2-8" + }, +/obj/structure/lattice/catwalk/indoor/grate/dark, +/turf/simulated/floor/plating, +/area/quarantined_outpost/server_relay/south_east) +"xtp" = ( +/obj/effect/floor_decal/corner/dark_blue{ + dir = 8 + }, +/obj/structure/sign/securearea{ + pixel_y = -32 + }, +/obj/random/dirt_75, +/obj/machinery/light/floor/maybe_broken/decayed, +/obj/structure/cable{ + icon_state = "1-4" + }, +/turf/simulated/floor/tiled/dark, +/area/quarantined_outpost/research) +"xtI" = ( +/obj/structure/table/standard, +/obj/item/material/shard, +/turf/simulated/floor/tiled/white, +/area/quarantined_outpost/research) +"xuB" = ( +/obj/structure/bed/stool/chair/office/light{ + dir = 8 + }, +/obj/effect/floor_decal/corner/dark_blue/full{ + dir = 8 + }, +/turf/simulated/floor/tiled/dark, +/area/quarantined_outpost/research/containment) +"xuT" = ( +/obj/effect/floor_decal/corner_wide/paleblue{ + dir = 10 + }, +/obj/structure/bed/stool/chair/folding{ + dir = 4 + }, +/obj/random/dirt_75, +/turf/simulated/floor/tiled, +/area/quarantined_outpost/security) +"xvc" = ( +/obj/structure/platform_deco, +/turf/simulated/floor/tiled/ridged, +/area/quarantined_outpost/extraction_lab) +"xvR" = ( +/obj/random/maintenance_junk_or_loot, +/obj/random/dirt_75, +/obj/effect/decal/cleanable/floor_damage/rust, +/turf/simulated/floor/tiled, +/area/quarantined_outpost/entrance_maintenance) +"xwn" = ( +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/machinery/computer/terminal/inactive, +/obj/effect/decal/cleanable/cobweb2, +/obj/random/dirt_75, +/turf/simulated/floor/tiled/gunmetal/full, +/area/quarantined_outpost/server_relay/south_east) +"xwE" = ( +/obj/effect/floor_decal/spline/plain/black{ + dir = 1 + }, +/obj/random/dirt_75, +/obj/random/dirt_75, +/obj/effect/decal/cleanable/floor_damage/rust, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled/gunmetal, +/area/quarantined_outpost/engineering/tunnel) +"xwL" = ( +/obj/effect/floor_decal/corner/dark_blue{ + dir = 10 + }, +/obj/random/dirt_75, +/obj/structure/railing/mapped, +/turf/simulated/floor/tiled, +/area/quarantined_outpost/elevator_hallway) +"xxp" = ( +/obj/structure/flora/pottedplant/dead2{ + pixel_y = 13 + }, +/obj/effect/floor_decal/corner_wide/paleblue/full{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/quarantined_outpost/elevator_hallway) +"xxK" = ( +/obj/effect/floor_decal/corner/dark_blue{ + dir = 5 + }, +/obj/random/dirt_75, +/obj/random/dirt_75, +/turf/simulated/floor/tiled, +/area/quarantined_outpost/elevator_hallway) +"xxN" = ( +/obj/effect/floor_decal/industrial/warning, +/obj/machinery/meter, +/obj/machinery/atmospherics/pipe/manifold/visible/black{ + dir = 1 + }, +/turf/simulated/floor/plating, +/area/quarantined_outpost/engineering/atmospherics) +"xxO" = ( +/obj/effect/floor_decal/corner/dark_blue{ + dir = 9 + }, +/obj/random/dirt_75, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 4 + }, +/obj/effect/landmark/trapped_vent/maybe/quarantined_outpost, +/turf/simulated/floor/tiled, +/area/quarantined_outpost/elevator_hallway) +"xxU" = ( +/obj/machinery/conveyor{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/quarantined_outpost/cargo_bay) +"xyx" = ( +/obj/effect/floor_decal/spline/plain/black{ + dir = 4 + }, +/obj/random/dirt_75, +/obj/structure/inflatable/wall, +/turf/simulated/floor/tiled/gunmetal, +/area/quarantined_outpost/north_east_hallway) +"xyK" = ( +/turf/simulated/floor/exoplanet/basalt, +/area/quarantined_outpost/cavern/east_cavern) +"xzo" = ( +/obj/random/dirt_75, +/obj/effect/floor_decal/corner/yellow{ + dir = 1 + }, +/obj/machinery/alarm/north, +/turf/simulated/floor/tiled/gunmetal, +/area/quarantined_outpost/engineering) +"xzu" = ( +/obj/effect/floor_decal/spline/plain/corner/black{ + dir = 4 + }, +/obj/random/dirt_75, +/obj/random/dirt_75, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/structure/cable{ + icon_state = "2-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 1 + }, +/turf/simulated/floor/tiled/gunmetal, +/area/quarantined_outpost/north_east_hallway) +"xzI" = ( +/obj/structure/railing/mapped{ + dir = 8 + }, +/obj/structure/railing/mapped, +/obj/structure/lattice/catwalk/indoor, +/turf/simulated/floor/plating, +/area/quarantined_outpost/cargo_bay) +"xAc" = ( +/obj/effect/floor_decal/industrial/hatch/yellow, +/obj/machinery/door/firedoor{ + dir = 8 + }, +/obj/random/dirt_75, +/obj/random/dirt_75, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/full, +/area/quarantined_outpost/cargo_bay) +"xAk" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/simulated/floor/plating, +/area/quarantined_outpost/entrance_maintenance) +"xAA" = ( +/obj/structure/railing/mapped{ + dir = 1 + }, +/obj/structure/railing/mapped{ + dir = 8 + }, +/obj/effect/floor_decal/spline/plain/black{ + dir = 9 + }, +/obj/structure/flora/pottedplant/dead, +/obj/machinery/light/floor/maybe_broken/decayed, +/turf/simulated/floor/tiled, +/area/quarantined_outpost/cafeteria) +"xAG" = ( +/obj/effect/floor_decal/industrial/hatch/yellow, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 1 + }, +/turf/simulated/floor/tiled/full, +/area/quarantined_outpost/entrance_lobby) +"xAR" = ( +/obj/effect/decal/cleanable/floor_damage/random_burned, +/obj/machinery/light/small/maybe_broken/decayed, +/turf/simulated/floor/reinforced, +/area/quarantined_outpost/research/containment) +"xBd" = ( +/obj/structure/window/reinforced, +/obj/effect/floor_decal/corner/mauve{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled/light, +/area/quarantined_outpost/research) +"xBf" = ( +/obj/structure/cable/orange{ + icon_state = "1-2" + }, +/obj/structure/lattice/catwalk/indoor/grate, +/obj/machinery/door/airlock/external, +/obj/effect/map_effect/marker/airlock/quarantined_outpost/entrance, +/obj/effect/map_effect/marker_helper/airlock/exterior, +/turf/simulated/floor/plating, +/area/quarantined_outpost/entrance_lobby) +"xBo" = ( +/obj/structure/bed/stool/chair{ + dir = 1 + }, +/obj/effect/floor_decal/industrial/outline/security, +/obj/effect/decal/cleanable/blood, +/obj/random/dirt_75, +/obj/random/dirt_75, +/turf/simulated/floor/tiled/dark/airless, +/area/quarantined_outpost/security) +"xBE" = ( +/obj/effect/floor_decal/industrial/outline_door/operations{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/quarantined_outpost/cargo_bay) +"xBW" = ( +/obj/effect/floor_decal/corner_wide/lime{ + dir = 5 + }, +/obj/structure/sign/flag/sol/old{ + pixel_y = 32 + }, +/obj/effect/decal/cleanable/floor_damage/rust, +/obj/random/dirt_75, +/turf/simulated/floor/tiled/white, +/area/quarantined_outpost/medbay) +"xBX" = ( +/obj/effect/floor_decal/industrial/hatch/yellow, +/obj/machinery/door/firedoor{ + dir = 4 + }, +/obj/random/dirt_75, +/turf/simulated/floor/tiled/gunmetal/full, +/area/quarantined_outpost/engineering) +"xCf" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/fuel{ + dir = 6 + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/simulated/floor/plating, +/area/quarantined_outpost/engineering/atmospherics) +"xCj" = ( +/obj/effect/floor_decal/sign/srg, +/turf/simulated/floor/tiled/white, +/area/quarantined_outpost/medbay) +"xCk" = ( +/obj/effect/floor_decal/corner/mauve{ + dir = 5 + }, +/obj/structure/sign/flag/sol/old{ + pixel_y = 32 + }, +/turf/simulated/floor/tiled/white, +/area/quarantined_outpost/extraction_lab) +"xCo" = ( +/obj/effect/floor_decal/spline/plain/black{ + dir = 10 + }, +/obj/structure/railing/mapped{ + dir = 8 + }, +/obj/structure/railing/mapped, +/obj/random/dirt_75, +/turf/simulated/floor/tiled/gunmetal, +/area/quarantined_outpost/engineering/tunnel) +"xCI" = ( +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/obj/machinery/portable_atmospherics/canister/hydrogen, +/turf/simulated/floor/plating, +/area/quarantined_outpost/engineering/atmospherics) +"xCU" = ( +/obj/random/dirt_75, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 8 + }, +/obj/effect/landmark/trapped_vent/maybe/quarantined_outpost, +/turf/simulated/floor/tiled/rust, +/area/quarantined_outpost/dorm_hallway) +"xDW" = ( +/obj/structure/table/rack, +/obj/random/junk, +/obj/random/dirt_75, +/turf/simulated/floor/tiled, +/area/quarantined_outpost/entrance_maintenance) +"xEk" = ( +/obj/effect/floor_decal/corner/green/diagonal, +/turf/simulated/floor/tiled/white, +/area/quarantined_outpost/dorm_hallway) +"xEF" = ( +/obj/effect/floor_decal/corner/lime{ + dir = 1 + }, +/obj/random/dirt_75, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/effect/landmark/quarantined_outpost/creature, +/turf/simulated/floor/tiled, +/area/quarantined_outpost/cafeteria) +"xEN" = ( +/obj/effect/floor_decal/corner/brown{ + dir = 10 + }, +/obj/random/dirt_75, +/obj/effect/landmark/quarantined_outpost/creature, +/turf/simulated/floor/tiled, +/area/quarantined_outpost/elevator_hallway) +"xEV" = ( +/obj/effect/floor_decal/corner/lime, +/obj/random/junk, +/obj/effect/landmark/quarantined_outpost/creature, +/turf/simulated/floor/tiled, +/area/quarantined_outpost/cafeteria) +"xEX" = ( +/obj/machinery/light/small/floor/emergency, +/obj/structure/structural_support, +/obj/random/dirt_75, +/obj/effect/decal/cleanable/floor_damage/rust, +/turf/simulated/floor/tiled/white, +/area/quarantined_outpost/extraction_lab) +"xFg" = ( +/obj/machinery/door/firedoor{ + dir = 4 + }, +/obj/random/dirt_75, +/turf/simulated/floor/tiled/dark/full, +/area/quarantined_outpost/extraction_lab) +"xFU" = ( +/obj/effect/floor_decal/corner/yellow{ + dir = 4 + }, +/obj/random/dirt_75, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled/gunmetal, +/area/quarantined_outpost/engineering/tunnel) +"xFZ" = ( +/obj/effect/floor_decal/spline/plain/black{ + dir = 1 + }, +/obj/random/dirt_75, +/obj/random/dirt_75, +/obj/machinery/atmospherics/unary/vent_pump/on, +/obj/effect/landmark/trapped_vent/maybe/quarantined_outpost, +/turf/simulated/floor/tiled/airless, +/area/quarantined_outpost/security) +"xGW" = ( +/obj/effect/floor_decal/industrial/hatch/yellow, +/obj/machinery/atmospherics/binary/circulator{ + anchored = 1 + }, +/turf/simulated/floor/plating, +/area/quarantined_outpost/engineering/atmospherics) +"xHa" = ( +/obj/structure/table/standard/flipped, +/obj/structure/bed/stool/chair/folding{ + dir = 1 + }, +/obj/random/dirt_75, +/turf/simulated/floor/tiled, +/area/quarantined_outpost/dorm_hallway) +"xHl" = ( +/obj/structure/cable{ + icon_state = "2-4" + }, +/turf/simulated/floor/plating, +/area/quarantined_outpost/engineering/atmospherics) +"xHm" = ( +/obj/machinery/atmospherics/unary/vent_pump/siphon/atmos{ + dir = 8; + frequency = 1514; + id_tag = "quarantined_outpost_teg_out" + }, +/turf/simulated/floor/reinforced/airless, +/area/quarantined_outpost/engineering/atmospherics) +"xHo" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/fuel{ + dir = 4 + }, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/random/dirt_75, +/obj/random/dirt_75, +/turf/simulated/floor/plating, +/area/quarantined_outpost/engineering/atmospherics) +"xHA" = ( +/obj/machinery/appliance/cooker/stove, +/obj/effect/decal/cleanable/cobweb, +/turf/simulated/floor/tiled/dark/full, +/area/quarantined_outpost/cafeteria) +"xJg" = ( +/obj/effect/floor_decal/corner/dark_blue{ + dir = 10 + }, +/obj/random/dirt_75, +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/rust, +/area/quarantined_outpost/reception) +"xJG" = ( +/obj/structure/table/wood, +/obj/random/loot, +/turf/simulated/floor/wood, +/area/quarantined_outpost/dorm_hallway) +"xKv" = ( +/obj/effect/floor_decal/corner/mauve{ + dir = 5 + }, +/obj/structure/filingcabinet/chestdrawer{ + pixel_x = 8 + }, +/obj/structure/filingcabinet/chestdrawer{ + pixel_x = -8 + }, +/turf/simulated/floor/tiled/light, +/area/quarantined_outpost/research) +"xKO" = ( +/obj/machinery/atmospherics/pipe/simple/visible/cyan{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/quarantined_outpost/engineering/atmospherics) +"xLr" = ( +/obj/effect/floor_decal/corner/dark_blue{ + dir = 6 + }, +/obj/effect/floor_decal/industrial/outline/red, +/turf/simulated/floor/tiled, +/area/quarantined_outpost/entrance_lobby) +"xLA" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/obj/random/dirt_75, +/turf/simulated/floor/plating, +/area/quarantined_outpost/gym) +"xLQ" = ( +/obj/random/dirt_75, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, +/obj/effect/decal/cleanable/floor_damage/random_burned, +/turf/simulated/floor/tiled/dark, +/area/quarantined_outpost/entrance_lobby) +"xMF" = ( +/obj/abstract/footprint_spawner/body{ + dir = 1 + }, +/obj/effect/floor_decal/corner/yellow, +/obj/machinery/light/small/maybe_broken/decayed{ + dir = 4 + }, +/turf/simulated/floor/tiled/gunmetal, +/area/quarantined_outpost/engineering) +"xMQ" = ( +/obj/effect/floor_decal/spline/plain/black{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 1 + }, +/turf/simulated/floor/tiled/gunmetal, +/area/quarantined_outpost/north_east_hallway) +"xMY" = ( +/obj/random/dirt_75, +/obj/structure/cable{ + 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/quarantined_outpost/cargo_bay) +"xNm" = ( +/obj/effect/floor_decal/spline/plain/black{ + dir = 1 + }, +/obj/machinery/light/small/maybe_broken/decayed{ + dir = 1 + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on, +/turf/simulated/floor/tiled/gunmetal, +/area/quarantined_outpost/north_east_hallway) +"xNB" = ( +/obj/effect/floor_decal/corner/lime{ + dir = 5 + }, +/obj/effect/decal/cleanable/blood, +/obj/random/dirt_75, +/obj/effect/decal/cleanable/floor_damage/rust, +/turf/simulated/floor/tiled, +/area/quarantined_outpost/cafeteria) +"xNE" = ( +/obj/effect/floor_decal/industrial/outline_door/yellow{ + dir = 8 + }, +/obj/random/dirt_75, +/turf/simulated/floor/tiled/rust, +/area/quarantined_outpost/reception) +"xNW" = ( +/obj/effect/floor_decal/industrial/hatch/yellow, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled/full/airless, +/area/quarantined_outpost/security) +"xOF" = ( +/obj/machinery/door/firedoor{ + dir = 4 + }, +/obj/machinery/door/airlock/glass_engineering{ + dir = 4; + name = "Engineering" + }, +/obj/structure/cable/orange{ + icon_state = "4-8" + }, +/turf/simulated/floor/plating, +/area/quarantined_outpost/engineering) +"xOV" = ( +/obj/structure/railing/mapped{ + dir = 8 + }, +/obj/structure/railing/mapped, +/obj/structure/lattice/catwalk, +/turf/simulated/floor/exoplanet/basalt, +/area/quarantined_outpost/engineering/tunnel) +"xOZ" = ( +/obj/effect/floor_decal/corner_wide/paleblue{ + dir = 9 + }, +/obj/random/dirt_75, +/obj/effect/decal/remains, +/turf/simulated/floor/tiled/airless, +/area/quarantined_outpost/security) +"xPp" = ( +/obj/structure/lattice/catwalk/indoor/grate/dark, +/obj/machinery/light/small/maybe_broken/decayed{ + dir = 1 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/quarantined_outpost/engineering/tunnel) +"xPw" = ( +/obj/structure/platform{ + dir = 1 + }, +/obj/effect/floor_decal/corner/grey{ + dir = 9 + }, +/obj/random/dirt_75, +/obj/structure/railing/mapped, +/turf/simulated/floor/tiled/dark, +/area/quarantined_outpost/research) +"xPD" = ( +/obj/effect/floor_decal/corner_wide/paleblue{ + dir = 1 + }, +/obj/structure/sign/staff_only{ + pixel_y = 32 + }, +/obj/random/dirt_75, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled/airless, +/area/quarantined_outpost/security) +"xPG" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/structure/cable{ + icon_state = "1-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled/gunmetal/full, +/area/quarantined_outpost/engineering/tunnel) +"xPS" = ( +/obj/structure/platform_deco/dark{ + dir = 4 + }, +/obj/effect/floor_decal/industrial/outline_straight/yellow{ + dir = 6 + }, +/obj/random/dirt_75, +/obj/effect/decal/rolling_fog, +/turf/simulated/floor/plating, +/area/quarantined_outpost/research) +"xPZ" = ( +/obj/effect/floor_decal/corner/mauve{ + dir = 5 + }, +/turf/simulated/floor/tiled/white, +/area/quarantined_outpost/extraction_lab) +"xQj" = ( +/obj/random/dirt_75, +/turf/simulated/floor/marble, +/area/quarantined_outpost/gym) +"xQO" = ( +/obj/machinery/light/small/emergency{ + dir = 8 + }, +/obj/structure/lattice/catwalk/indoor/grate/dark, +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/simulated/floor/plating, +/area/quarantined_outpost/cargo_bay) +"xQX" = ( +/obj/machinery/light/small/emergency, +/turf/simulated/floor/exoplanet/asteroid/ash/rocky, +/area/quarantined_outpost/exterior/powered) +"xRu" = ( +/obj/effect/floor_decal/corner/black{ + dir = 6 + }, +/obj/structure/sign/flag/sancolette{ + pixel_x = 32 + }, +/obj/structure/closet/cabinet, +/obj/outfit/admin/generic, +/turf/simulated/floor/tiled, +/area/quarantined_outpost/dorm_hallway) +"xRF" = ( +/obj/effect/floor_decal/corner/dark_blue{ + dir = 6 + }, +/obj/effect/decal/cleanable/generic, +/obj/random/dirt_75, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/quarantined_outpost/elevator_hallway) +"xRH" = ( +/obj/structure/bed/stool/chair, +/obj/effect/floor_decal/corner/brown, +/obj/structure/cable{ + 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/dark, +/area/quarantined_outpost/elevator_hallway) +"xSe" = ( +/obj/effect/floor_decal/spline/plain/black, +/obj/structure/closet/crate, +/turf/simulated/floor/tiled/dark/full, +/area/quarantined_outpost/security) +"xSp" = ( +/obj/effect/floor_decal/spline/plain/black{ + dir = 6 + }, +/obj/random/dirt_75, +/obj/effect/decal/cleanable/floor_damage/rust, +/turf/simulated/floor/tiled/gunmetal, +/area/quarantined_outpost/north_east_hallway) +"xSx" = ( +/obj/effect/floor_decal/industrial/outline_door/yellow{ + dir = 8 + }, +/turf/simulated/floor/tiled/rust, +/area/quarantined_outpost/reception) +"xSz" = ( +/obj/random/dirt_75, +/obj/effect/floor_decal/industrial/outline_door/yellow{ + dir = 1 + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 8 + }, +/turf/simulated/floor/tiled/dark, +/area/quarantined_outpost/entrance_lobby) +"xTw" = ( +/obj/random/dirt_75, +/obj/random/dirt_75, +/obj/random/dirt_75, +/turf/simulated/floor/plating/asteroid/airless, +/area/quarantined_outpost/exterior) +"xUc" = ( +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/effect/floor_decal/industrial/warning{ + dir = 9 + }, +/obj/structure/closet/radiation, +/obj/effect/decal/cleanable/cobweb, +/obj/structure/sign/securearea{ + desc = "A warning sign which reads 'WARNING: EQUIPMENT RADIOACTIVE DURING OPERATION'."; + icon_state = "radiation"; + name = "WARNING: EQUIPMENT RADIOACTIVE DURING OPERATION sign"; + pixel_y = 32 + }, +/turf/simulated/floor/tiled/dark/full, +/area/quarantined_outpost/research) +"xUj" = ( +/obj/structure/table/standard, +/obj/effect/floor_decal/corner/brown/full{ + dir = 1 + }, +/obj/item/clipboard{ + pixel_y = 2; + pixel_x = -5 + }, +/obj/item/paper_bin{ + pixel_y = 5; + pixel_x = 5 + }, +/obj/machinery/light/small/decayed{ + dir = 1 + }, +/obj/structure/sign/nosmoking_2{ + pixel_x = 30; + pixel_y = 4 + }, +/obj/effect/decal/cleanable/cobweb2, +/turf/simulated/floor/tiled, +/area/quarantined_outpost/cargo_bay) +"xUA" = ( +/obj/effect/floor_decal/corner_wide/lime, +/turf/simulated/floor/tiled/white, +/area/quarantined_outpost/medbay) +"xUD" = ( +/obj/effect/floor_decal/spline/plain/black{ + dir = 1 + }, +/obj/random/dirt_75, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled/gunmetal/full, +/area/quarantined_outpost/engineering/tunnel) +"xUQ" = ( +/obj/abstract/footprint_spawner/body{ + dir = 1 + }, +/obj/abstract/footprint_spawner_turn_helper{ + dir = 8 + }, +/obj/effect/decal/rolling_fog, +/turf/simulated/floor/tiled/dark/full, +/area/quarantined_outpost/research) +"xVp" = ( +/obj/structure/railing/mapped{ + dir = 4 + }, +/obj/effect/floor_decal/industrial/outline/grey, +/obj/random/dirt_75, +/obj/machinery/light/small/maybe_broken/decayed, +/turf/simulated/floor/carpet/rubber, +/area/quarantined_outpost/gym) +"xVt" = ( +/obj/effect/floor_decal/industrial/outline/operations, +/obj/effect/floor_decal/industrial/loading/operations, +/obj/structure/sign/nosmoking_2{ + pixel_x = 30; + pixel_y = 4 + }, +/turf/simulated/floor/tiled/dark/full, +/area/quarantined_outpost/reception) +"xVA" = ( +/obj/random/dirt_75, +/obj/random/dirt_75, +/obj/effect/decal/cleanable/blood, +/turf/simulated/floor/tiled, +/area/quarantined_outpost/elevator_hallway) +"xVY" = ( +/obj/effect/floor_decal/corner/dark_green{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/quarantined_outpost/gym) +"xWC" = ( +/obj/machinery/computer/terminal/inactive{ + dir = 4 + }, +/obj/effect/floor_decal/spline/plain/black{ + dir = 8 + }, +/obj/structure/railing/mapped{ + dir = 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/quarantined_outpost/extraction_lab) +"xXv" = ( +/obj/effect/floor_decal/industrial/hatch_door/yellow{ + dir = 4 + }, +/obj/machinery/door/firedoor{ + dir = 4 + }, +/obj/random/dirt_75, +/obj/machinery/door/airlock/hatch{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled/gunmetal/full, +/area/quarantined_outpost/engineering/tunnel) +"xXz" = ( +/obj/item/material/stool/chair{ + dir = 1; + pixel_y = -6; + pixel_x = -7 + }, +/obj/effect/floor_decal/corner/brown{ + dir = 1 + }, +/obj/random/dirt_75, +/turf/simulated/floor/tiled/dark, +/area/quarantined_outpost/elevator_hallway) +"xXY" = ( +/obj/abstract/footprint_spawner/body{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/quarantined_outpost/elevator_hallway/maintenance) +"xYm" = ( +/obj/structure/platform/dark{ + dir = 8 + }, +/obj/structure/structural_support, +/obj/effect/decal/rolling_fog, +/turf/simulated/floor/plating, +/area/quarantined_outpost/research) +"xYp" = ( +/obj/effect/floor_decal/industrial/outline_door/emergency_closet, +/obj/effect/floor_decal/industrial/outline_door/emergency_closet{ + dir = 1 + }, +/turf/simulated/floor/tiled/airless, +/area/quarantined_outpost/security) +"xYC" = ( +/obj/abstract/footprint_spawner/body{ + dir = 8 + }, +/obj/abstract/footprint_spawner_turn_helper{ + dir = 1 + }, +/turf/simulated/floor/tiled/gunmetal, +/area/quarantined_outpost/engineering) +"xYV" = ( +/obj/effect/decal/cleanable/blood, +/obj/random/dirt_75, +/turf/simulated/floor/tiled/bitile{ + dir = 4 + }, +/area/quarantined_outpost/cafeteria) +"xZo" = ( +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 8 + }, +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 4 + }, +/obj/random/dirt_75, +/turf/simulated/floor/wood, +/area/quarantined_outpost/cargo_bay) +"yav" = ( +/obj/effect/floor_decal/industrial/arrow/yellow{ + dir = 1 + }, +/obj/random/dirt_75, +/turf/simulated/floor/tiled, +/area/quarantined_outpost/reception) +"yay" = ( +/obj/random/dirt_75, +/obj/random/dirt_75, +/obj/effect/floor_decal/corner_wide/paleblue, +/turf/simulated/floor/tiled/airless, +/area/quarantined_outpost/security) +"yaT" = ( +/obj/effect/floor_decal/corner/lime{ + dir = 5 + }, +/obj/random/dirt_75, +/obj/machinery/light/maybe_broken/decayed{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/quarantined_outpost/cafeteria) +"yaV" = ( +/obj/effect/floor_decal/corner/black{ + dir = 6 + }, +/obj/structure/closet/cabinet, +/obj/random/dirt_75, +/obj/outfit/admin/generic, +/obj/random/loot, +/obj/structure/sign/flag/pluto{ + pixel_x = 32 + }, +/turf/simulated/floor/tiled, +/area/quarantined_outpost/dorm_hallway) +"ybh" = ( +/obj/effect/floor_decal/corner/mauve{ + dir = 1 + }, +/obj/effect/floor_decal/spline/plain/purple{ + dir = 8 + }, +/obj/random/dirt_75, +/turf/simulated/floor/tiled/light, +/area/quarantined_outpost/research) +"ybA" = ( +/obj/effect/floor_decal/spline/plain/grey{ + dir = 8 + }, +/obj/structure/filingcabinet/chestdrawer, +/obj/random/dirt_75, +/obj/machinery/light/maybe_broken/decayed{ + dir = 8 + }, +/turf/simulated/floor/reinforced, +/area/quarantined_outpost/security) +"ybF" = ( +/obj/machinery/light/small/maybe_broken/decayed{ + dir = 1 + }, +/turf/simulated/floor/exoplanet/abyss, +/area/quarantined_outpost/research/containment) +"ybU" = ( +/obj/effect/floor_decal/corner/dark_blue{ + dir = 5 + }, +/obj/random/dirt_75, +/obj/random/dirt_75, +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/rust, +/area/quarantined_outpost/reception) +"yce" = ( +/obj/machinery/door/airlock/glass{ + name = "Residential Lift" + }, +/obj/machinery/door/firedoor, +/obj/effect/floor_decal/industrial/hatch_door/yellow{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/quarantined_outpost/elevator_hallway) +"ydg" = ( +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 4 + }, +/obj/random/dirt_75, +/obj/effect/decal/cleanable/floor_damage/rust, +/obj/machinery/light/small/decayed{ + dir = 8 + }, +/obj/effect/decal/rolling_fog, +/turf/simulated/floor/plating, +/area/quarantined_outpost/research) +"ydi" = ( +/turf/simulated/wall/r_wall, +/area/quarantined_outpost/research) +"yeJ" = ( +/obj/effect/floor_decal/industrial/warning/corner, +/obj/structure/platform, +/obj/structure/platform{ + dir = 4 + }, +/obj/structure/platform_deco{ + dir = 5 + }, +/turf/simulated/floor/reinforced, +/area/quarantined_outpost/extraction_lab) +"yfl" = ( +/obj/effect/floor_decal/corner/dark_blue{ + dir = 5 + }, +/obj/structure/sign/directions/security{ + dir = 4; + pixel_y = 32 + }, +/obj/structure/sign/directions/medical{ + pixel_y = 40; + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/quarantined_outpost/elevator_hallway) +"yfo" = ( +/obj/structure/table/reinforced/steel, +/obj/effect/floor_decal/corner/dark_blue{ + dir = 9 + }, +/obj/random/dirt_75, +/turf/simulated/floor/tiled/dark, +/area/quarantined_outpost/research) +"yfw" = ( +/obj/effect/floor_decal/corner/mauve{ + dir = 4 + }, +/obj/item/paper/crumpled{ + pixel_x = 2; + pixel_y = -8 + }, +/obj/effect/decal/cleanable/floor_damage/rust, +/obj/random/dirt_75, +/turf/simulated/floor/tiled/light, +/area/quarantined_outpost/research) +"yfE" = ( +/obj/effect/floor_decal/corner/black{ + dir = 6 + }, +/obj/random/dirt_75, +/obj/structure/closet/cabinet, +/obj/outfit/admin/generic, +/obj/random/loot, +/obj/structure/sign/flag/old_xanu{ + pixel_x = 32 + }, +/turf/simulated/floor/tiled, +/area/quarantined_outpost/dorm_hallway) +"yfG" = ( +/obj/structure/table/reinforced/steel, +/obj/item/reagent_containers/food/snacks/meat/bat{ + name = "unknown matter"; + desc = "Seemingly an organic yet grotesque... thing." + }, +/obj/machinery/light/small/maybe_broken/decayed, +/turf/simulated/floor/tiled/dark/full, +/area/quarantined_outpost/research) +"ygn" = ( +/obj/structure/inflatable/wall, +/turf/simulated/floor/tiled, +/area/quarantined_outpost/north_east_hallway) +"ygZ" = ( +/obj/structure/bed/stool/chair{ + dir = 4 + }, +/obj/effect/floor_decal/corner_wide/lime{ + dir = 9 + }, +/turf/simulated/floor/tiled/white, +/area/quarantined_outpost/medbay) +"yhV" = ( +/obj/effect/decal/remains, +/obj/effect/gibspawner/human, +/obj/effect/floor_decal/industrial/outline_straight/yellow{ + dir = 8 + }, +/obj/effect/decal/cleanable/floor_damage/rust, +/obj/effect/decal/rolling_fog, +/turf/simulated/floor/tiled/dark, +/area/quarantined_outpost/research) +"yiq" = ( +/obj/structure/lattice/catwalk/indoor/grate/old, +/obj/structure/cable{ + icon_state = "2-4" + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/simulated/floor/plating, +/area/quarantined_outpost/cafeteria) +"yiu" = ( +/obj/effect/floor_decal/spline/plain/grey{ + dir = 9 + }, +/obj/structure/table/reinforced/steel, +/obj/item/device/flashlight/lamp/off{ + pixel_y = 14; + pixel_x = 3 + }, +/obj/item/device/pin_extractor{ + pixel_x = 3 + }, +/turf/simulated/floor/reinforced, +/area/quarantined_outpost/security) +"yjc" = ( +/obj/effect/floor_decal/corner/yellow{ + dir = 8 + }, +/obj/effect/floor_decal/corner/dark_blue, +/obj/structure/flora/pottedplant/dead, +/turf/simulated/floor/tiled/gunmetal, +/area/quarantined_outpost/north_east_hallway) +"yjA" = ( +/turf/simulated/floor/exoplanet/abyss, +/area/quarantined_outpost/engineering/tunnel) +"yjI" = ( +/obj/structure/lattice/catwalk/indoor/grate, +/turf/simulated/floor/plating, +/area/quarantined_outpost/entrance_lobby) +"yko" = ( +/obj/effect/floor_decal/industrial/outline_door/yellow{ + dir = 4 + }, +/obj/structure/railing/mapped, +/obj/random/dirt_75, +/turf/simulated/floor/tiled/dark/full, +/area/quarantined_outpost/engineering/atmospherics) +"ykp" = ( +/obj/random/dirt_75, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 4 + }, +/obj/effect/landmark/trapped_vent/maybe/quarantined_outpost, +/turf/simulated/floor/tiled/rust, +/area/quarantined_outpost/dorm_hallway) +"ykv" = ( +/obj/effect/floor_decal/spline/plain/black{ + dir = 1 + }, +/obj/effect/landmark/quarantined_outpost/creature, +/turf/simulated/floor/tiled/gunmetal, +/area/quarantined_outpost/north_east_hallway) +"ykE" = ( +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 1 + }, +/obj/effect/floor_decal/spline/fancy/wood, +/obj/structure/flora/grass/desert{ + name = "withered grass" + }, +/obj/structure/flora/stump/adhomai, +/turf/simulated/floor/exoplanet/barren, +/area/quarantined_outpost/elevator_hallway) +"ylg" = ( +/obj/effect/floor_decal/corner/yellow{ + dir = 1 + }, +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/machinery/vending/engivend{ + req_access = null + }, +/turf/simulated/floor/tiled/gunmetal, +/area/quarantined_outpost/engineering) +"ylh" = ( +/obj/structure/table/reinforced/steel, +/obj/machinery/door/window/desk/eastleft, +/turf/simulated/floor/tiled/dark/full, +/area/quarantined_outpost/research/containment) +"ylu" = ( +/obj/effect/floor_decal/industrial/hatch_door/yellow, +/obj/machinery/door/firedoor{ + dir = 4 + }, +/obj/machinery/door/airlock/hatch{ + dir = 4 + }, +/obj/structure/plasticflaps/airtight{ + dir = 4 + }, +/turf/simulated/floor/tiled/gunmetal/full, +/area/quarantined_outpost/server_relay/north_west) +"ylO" = ( +/obj/effect/floor_decal/corner_wide/paleblue{ + dir = 8 + }, +/obj/structure/bed/stool/chair{ + dir = 4 + }, +/obj/machinery/alarm/west, +/turf/simulated/floor/tiled/airless, +/area/quarantined_outpost/security) +"ymg" = ( +/turf/simulated/mineral/lava, +/area/quarantined_outpost/north_east_hallway/maintenance) +"ymi" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/quarantined_outpost/engineering/atmospherics) + +(1,1,1) = {" +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +vNa +lJH +lJH +lJH +lJH +lJH +lJH +lJH +lJH +lJH +lJH +lJH +lJH +lJH +lJH +lJH +lJH +lJH +lJH +lJH +lJH +lJH +lJH +lJH +lJH +lJH +lJH +lJH +lJH +lJH +lJH +lJH +lJH +lJH +lJH +lJH +lJH +lJH +lJH +lJH +lJH +vNa +"} +(2,1,1) = {" +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +lJH +eHw +eHw +eHw +eHw +eHw +eHw +eHw +eHw +eHw +eHw +eHw +eHw +eHw +eHw +eHw +eHw +eHw +eHw +eHw +eHw +eHw +eHw +eHw +eHw +eHw +eHw +eHw +eHw +eHw +eHw +eHw +eHw +eHw +eHw +eHw +eHw +eHw +eHw +eHw +eHw +lJH +"} +(3,1,1) = {" +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +lJH +eHw +eHw +eHw +eHw +eHw +eHw +eHw +eHw +eHw +eHw +eHw +eHw +eHw +eHw +eHw +eHw +eHw +eHw +eHw +eHw +eHw +eHw +eHw +eHw +eHw +eHw +eHw +eHw +eHw +eHw +eHw +eHw +eHw +eHw +eHw +eHw +eHw +eHw +eHw +eHw +lJH +"} +(4,1,1) = {" +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +lJH +eHw +eHw +eHw +eHw +eHw +eHw +eHw +eHw +eHw +eHw +eHw +eHw +eHw +eHw +eHw +eHw +eHw +eHw +eHw +eHw +eHw +eHw +eHw +eHw +eHw +eHw +eHw +eHw +eHw +eHw +eHw +eHw +eHw +eHw +eHw +eHw +eHw +eHw +eHw +eHw +lJH +"} +(5,1,1) = {" +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +lJH +eHw +eHw +eHw +eHw +eHw +eHw +eHw +eHw +eHw +eHw +eHw +eHw +eHw +eHw +eHw +eHw +eHw +eHw +eHw +eHw +eHw +eHw +eHw +eHw +eHw +eHw +eHw +eHw +eHw +eHw +eHw +eHw +eHw +eHw +eHw +eHw +eHw +eHw +eHw +eHw +lJH +"} +(6,1,1) = {" +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +lJH +eHw +eHw +eHw +eHw +eHw +eHw +eHw +eHw +eHw +eHw +eHw +eHw +eHw +eHw +eHw +eHw +eHw +eHw +eHw +eHw +eHw +eHw +eHw +eHw +eHw +eHw +eHw +eHw +eHw +eHw +eHw +eHw +eHw +eHw +eHw +eHw +eHw +eHw +eHw +eHw +lJH +"} +(7,1,1) = {" +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +lJH +eHw +eHw +eHw +eHw +eHw +eHw +eHw +eHw +eHw +eHw +eHw +eHw +eHw +eHw +eHw +eHw +eHw +eHw +eHw +eHw +eHw +eHw +eHw +eHw +eHw +eHw +eHw +eHw +eHw +eHw +eHw +eHw +eHw +eHw +eHw +eHw +eHw +eHw +eHw +eHw +lJH +"} +(8,1,1) = {" +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +lJH +eHw +eHw +eHw +eHw +eHw +eHw +eHw +eHw +eHw +eHw +eHw +eHw +eHw +eHw +eHw +eHw +eHw +eHw +eHw +eHw +eHw +eHw +eHw +eHw +eHw +eHw +eHw +eHw +eHw +eHw +eHw +eHw +eHw +eHw +eHw +eHw +eHw +eHw +eHw +eHw +lJH +"} +(9,1,1) = {" +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +lJH +eHw +eHw +eHw +eHw +eHw +eHw +eHw +eHw +eHw +eHw +eHw +eHw +eHw +eHw +eHw +eHw +eHw +eHw +eHw +eHw +eHw +eHw +eHw +eHw +eHw +eHw +eHw +eHw +eHw +eHw +eHw +eHw +eHw +eHw +eHw +eHw +eHw +eHw +eHw +eHw +lJH +"} +(10,1,1) = {" +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +lJH +eHw +eHw +eHw +eHw +eHw +eHw +eHw +eHw +eHw +eHw +eHw +eHw +eHw +eHw +eHw +eHw +eHw +eHw +eHw +eHw +eHw +eHw +eHw +eHw +eHw +eHw +eHw +eHw +eHw +eHw +eHw +eHw +eHw +eHw +eHw +eHw +eHw +eHw +eHw +eHw +lJH +"} +(11,1,1) = {" +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +lJH +eHw +eHw +eHw +eHw +eHw +eHw +eHw +eHw +eHw +eHw +eHw +eHw +eHw +eHw +eHw +eHw +eHw +eHw +eHw +eHw +eHw +eHw +eHw +eHw +eHw +eHw +eHw +eHw +eHw +eHw +eHw +eHw +eHw +eHw +eHw +eHw +eHw +eHw +eHw +eHw +lJH +"} +(12,1,1) = {" +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +lJH +eHw +eHw +eHw +eHw +eHw +eHw +eHw +eHw +eHw +eHw +eHw +eHw +eHw +eHw +eHw +eHw +eHw +eHw +eHw +eHw +eHw +eHw +eHw +eHw +eHw +eHw +eHw +eHw +eHw +eHw +eHw +eHw +eHw +eHw +eHw +eHw +eHw +eHw +eHw +eHw +lJH +"} +(13,1,1) = {" +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +lJH +eHw +eHw +eHw +eHw +eHw +eHw +eHw +eHw +eHw +eHw +eHw +eHw +eHw +eHw +eHw +eHw +eHw +eHw +eHw +eHw +eHw +eHw +eHw +eHw +eHw +eHw +eHw +eHw +eHw +eHw +eHw +eHw +eHw +eHw +eHw +eHw +eHw +eHw +eHw +eHw +lJH +"} +(14,1,1) = {" +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +lJH +eHw +eHw +eHw +eHw +eHw +eHw +eHw +eHw +eHw +eHw +eHw +eHw +eHw +eHw +eHw +eHw +eHw +eHw +eHw +eHw +eHw +eHw +eHw +eHw +eHw +eHw +eHw +eHw +eHw +eHw +eHw +eHw +eHw +eHw +eHw +eHw +eHw +eHw +eHw +eHw +lJH +"} +(15,1,1) = {" +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +lJH +eHw +eHw +eHw +eHw +eHw +eHw +eHw +eHw +eHw +eHw +eHw +eHw +eHw +eHw +eHw +eHw +eHw +eHw +eHw +eHw +eHw +eHw +eHw +eHw +eHw +eHw +eHw +eHw +eHw +eHw +eHw +eHw +eHw +eHw +eHw +eHw +eHw +eHw +eHw +eHw +lJH +"} +(16,1,1) = {" +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +lJH +eHw +eHw +eHw +eHw +eHw +eHw +eHw +eHw +eHw +eHw +eHw +eHw +eHw +eHw +eHw +eHw +eHw +eHw +eHw +eHw +eHw +eHw +eHw +eHw +eHw +eHw +eHw +eHw +eHw +eHw +eHw +eHw +eHw +eHw +eHw +eHw +eHw +eHw +eHw +eHw +lJH +"} +(17,1,1) = {" +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +lJH +eHw +eHw +eHw +eHw +eHw +eHw +eHw +eHw +eHw +aSn +eHw +eHw +eHw +eHw +eHw +eHw +eHw +eHw +eHw +eHw +eHw +eHw +eHw +eHw +eHw +eHw +eHw +eHw +eHw +eHw +eHw +eHw +eHw +eHw +eHw +eHw +eHw +eHw +eHw +eHw +lJH +"} +(18,1,1) = {" +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +lJH +eHw +eHw +eHw +eHw +eHw +eHw +eHw +eHw +eHw +eHw +eHw +eHw +eHw +eHw +eHw +eHw +eHw +eHw +eHw +eHw +eHw +eHw +eHw +eHw +eHw +eHw +eHw +eHw +eHw +eHw +eHw +eHw +eHw +eHw +eHw +eHw +eHw +eHw +eHw +eHw +lJH +"} +(19,1,1) = {" +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +lJH +eHw +eHw +eHw +eHw +eHw +eHw +eHw +eHw +eHw +eHw +eHw +eHw +eHw +eHw +eHw +eHw +eHw +eHw +eHw +eHw +eHw +eHw +eHw +eHw +eHw +eHw +eHw +eHw +eHw +eHw +eHw +eHw +eHw +eHw +eHw +eHw +eHw +eHw +eHw +eHw +lJH +"} +(20,1,1) = {" +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +lJH +eHw +eHw +eHw +eHw +eHw +eHw +eHw +eHw +eHw +eHw +eHw +eHw +eHw +eHw +eHw +eHw +eHw +eHw +eHw +eHw +eHw +eHw +eHw +eHw +eHw +eHw +eHw +eHw +eHw +eHw +eHw +eHw +eHw +eHw +eHw +eHw +eHw +eHw +eHw +eHw +lJH +"} +(21,1,1) = {" +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +lJH +eHw +eHw +eHw +eHw +eHw +eHw +eHw +eHw +eHw +eHw +eHw +eHw +eHw +eHw +eHw +eHw +eHw +eHw +eHw +eHw +eHw +eHw +eHw +eHw +eHw +eHw +eHw +eHw +eHw +eHw +eHw +eHw +eHw +eHw +eHw +eHw +eHw +eHw +eHw +eHw +lJH +"} +(22,1,1) = {" +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +lJH +eHw +eHw +eHw +eHw +eHw +eHw +eHw +eHw +eHw +eHw +eHw +eHw +eHw +eHw +eHw +eHw +eHw +eHw +eHw +eHw +eHw +eHw +eHw +eHw +eHw +eHw +eHw +eHw +eHw +eHw +eHw +eHw +eHw +eHw +eHw +eHw +eHw +eHw +eHw +eHw +lJH +"} +(23,1,1) = {" +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +lJH +eHw +eHw +eHw +eHw +eHw +eHw +eHw +eHw +eHw +eHw +eHw +eHw +eHw +eHw +eHw +eHw +eHw +eHw +eHw +eHw +eHw +eHw +eHw +eHw +eHw +eHw +eHw +eHw +eHw +eHw +eHw +eHw +eHw +eHw +eHw +eHw +eHw +eHw +eHw +eHw +lJH +"} +(24,1,1) = {" +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +lJH +eHw +eHw +eHw +eHw +eHw +eHw +eHw +eHw +eHw +eHw +eHw +eHw +eHw +eHw +eHw +eHw +eHw +eHw +eHw +eHw +eHw +eHw +eHw +eHw +eHw +eHw +eHw +eHw +eHw +eHw +eHw +eHw +eHw +eHw +eHw +eHw +eHw +eHw +eHw +eHw +lJH +"} +(25,1,1) = {" +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +lJH +eHw +eHw +eHw +eHw +eHw +eHw +eHw +eHw +eHw +eHw +eHw +eHw +eHw +eHw +eHw +eHw +eHw +eHw +eHw +eHw +eHw +eHw +eHw +eHw +eHw +eHw +eHw +eHw +eHw +eHw +eHw +eHw +eHw +eHw +eHw +eHw +eHw +eHw +eHw +eHw +lJH +"} +(26,1,1) = {" +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +lJH +eHw +eHw +eHw +eHw +eHw +eHw +eHw +eHw +eHw +eHw +eHw +eHw +eHw +eHw +eHw +eHw +eHw +eHw +eHw +eHw +eHw +eHw +eHw +eHw +eHw +eHw +eHw +eHw +eHw +eHw +eHw +eHw +eHw +eHw +eHw +eHw +eHw +eHw +eHw +eHw +lJH +"} +(27,1,1) = {" +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +lJH +eHw +eHw +eHw +eHw +eHw +eHw +eHw +eHw +eHw +eHw +eHw +eHw +eHw +eHw +eHw +eHw +eHw +eHw +eHw +eHw +eHw +eHw +eHw +eHw +eHw +eHw +eHw +eHw +eHw +eHw +eHw +eHw +eHw +eHw +eHw +eHw +eHw +eHw +eHw +eHw +lJH +"} +(28,1,1) = {" +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +iPl +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +lJH +eHw +eHw +eHw +eHw +eHw +eHw +eHw +eHw +eHw +eHw +eHw +eHw +eHw +eHw +eHw +eHw +eHw +eHw +eHw +eHw +eHw +eHw +eHw +eHw +eHw +eHw +eHw +eHw +eHw +eHw +eHw +eHw +eHw +eHw +eHw +eHw +eHw +eHw +eHw +eHw +lJH +"} +(29,1,1) = {" +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +lJH +eHw +eHw +eHw +eHw +eHw +eHw +eHw +eHw +eHw +eHw +eHw +eHw +eHw +eHw +eHw +eHw +eHw +eHw +eHw +eHw +eHw +eHw +eHw +eHw +eHw +eHw +eHw +eHw +eHw +eHw +eHw +eHw +eHw +eHw +eHw +eHw +eHw +eHw +eHw +eHw +lJH +"} +(30,1,1) = {" +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +lJH +eHw +eHw +eHw +eHw +eHw +eHw +eHw +eHw +eHw +eHw +eHw +eHw +eHw +eHw +eHw +eHw +eHw +eHw +eHw +eHw +eHw +eHw +eHw +eHw +eHw +eHw +eHw +eHw +eHw +eHw +eHw +eHw +eHw +eHw +eHw +eHw +eHw +eHw +eHw +eHw +lJH +"} +(31,1,1) = {" +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +lJH +eHw +eHw +eHw +eHw +eHw +eHw +eHw +eHw +eHw +eHw +eHw +eHw +eHw +eHw +eHw +eHw +eHw +eHw +eHw +eHw +eHw +eHw +eHw +eHw +eHw +eHw +eHw +eHw +eHw +eHw +eHw +eHw +eHw +eHw +eHw +eHw +eHw +eHw +eHw +eHw +lJH +"} +(32,1,1) = {" +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +lJH +lJH +lJH +lJH +lJH +lJH +lJH +lJH +lJH +lJH +lJH +lJH +lJH +lJH +lJH +lJH +lJH +lJH +lJH +lJH +lJH +lJH +lJH +lJH +lJH +lJH +lJH +lJH +lJH +lJH +lJH +lJH +lJH +lJH +lJH +lJH +lJH +lJH +lJH +lJH +lJH +vNa +"} +(33,1,1) = {" +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +"} +(34,1,1) = {" +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +"} +(35,1,1) = {" +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +"} +(36,1,1) = {" +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +"} +(37,1,1) = {" +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +"} +(38,1,1) = {" +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +"} +(39,1,1) = {" +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +"} +(40,1,1) = {" +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +"} +(41,1,1) = {" +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +"} +(42,1,1) = {" +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +"} +(43,1,1) = {" +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +"} +(44,1,1) = {" +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +"} +(45,1,1) = {" +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +pif +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +"} +(46,1,1) = {" +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +voR +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +voR +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +"} +(47,1,1) = {" +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +voR +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +voR +voR +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +"} +(48,1,1) = {" +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +voR +voR +voR +voR +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +voR +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +voR +voR +sGO +sGO +sGO +sGO +sGO +voR +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +"} +(49,1,1) = {" +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +voR +voR +voR +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +voR +voR +sGO +sGO +sGO +sGO +voR +voR +voR +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +voR +voR +voR +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +"} +(50,1,1) = {" +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +voR +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +voR +voR +voR +voR +voR +sGO +voR +voR +voR +voR +voR +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +voR +voR +voR +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +"} +(51,1,1) = {" +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +voR +sGO +sGO +sGO +sGO +sGO +sGO +voR +voR +voR +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +voR +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +sGO +voR +voR +voR +voR +voR +voR +sGO +sGO +sGO +sGO +sGO +sGO +voR +voR +voR +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +"} +(52,1,1) = {" +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +voR +voR +voR +sGO +sGO +sGO +sGO +voR +voR +sGO +sGO +sGO +sGO +sGO +sGO +voR +voR +voR +voR +voR +voR +voR +voR +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +sGO +sGO +sGO +sGO +voR +voR +voR +voR +voR +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +"} +(53,1,1) = {" +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +voR +voR +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +sGO +sGO +voR +voR +voR +voR +voR +sGO +sGO +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +sGO +sGO +sGO +sGO +sGO +voR +voR +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +"} +(54,1,1) = {" +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +voR +voR +sGO +sGO +sGO +sGO +sGO +sGO +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +buG +buG +buG +buG +buG +buG +buG +buG +buG +buG +buG +buG +buG +buG +buG +buG +buG +buG +buG +buG +buG +voR +voR +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +"} +(55,1,1) = {" +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +voR +voR +voR +sGO +sGO +sGO +sGO +sGO +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +buG +vfs +vfs +vfs +vfs +vfs +vfs +vfs +vfs +vfs +vfs +vfs +vfs +buG +vfs +vfs +vfs +vfs +vfs +vfs +buG +voR +voR +voR +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +"} +(56,1,1) = {" +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +voR +voR +voR +voR +sGO +sGO +sGO +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +buG +buG +buG +buG +buG +buG +buG +buG +buG +buG +buG +buG +buG +buG +buG +buG +buG +buG +vfs +vfs +vfs +vfs +vfs +iOH +iOH +iOH +iOH +iOH +iOH +iOH +vfs +vfs +vfs +vfs +vfs +vfs +buG +voR +voR +voR +voR +voR +voR +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +"} +(57,1,1) = {" +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +voR +sGO +sGO +sGO +sGO +sGO +voR +voR +voR +voR +voR +sGO +sGO +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +buG +vMh +vMh +vMh +vMh +vMh +fkX +fkX +fkX +fkX +fkX +fkX +fkX +fkX +fkX +fkX +fkX +buG +vfs +vfs +vfs +iOH +iOH +iOH +iOH +iOH +iOH +iOH +iOH +iOH +iOH +iOH +vfs +vfs +vfs +vfs +buG +voR +voR +voR +voR +voR +voR +voR +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +"} +(58,1,1) = {" +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +buG +buG +buG +buG +buG +buG +buG +buG +buG +buG +buG +buG +vMh +uaB +kxl +rDR +vMh +fkX +fkX +fkX +fkX +fkX +fkX +fND +gNH +kds +fkX +fkX +buG +vfs +vfs +iOH +iOH +iOH +iOH +iOH +iOH +iOH +iOH +iOH +iOH +iOH +iOH +iOH +iOH +iOH +vfs +buG +buG +buG +buG +buG +buG +voR +voR +sGO +sGO +sGO +sGO +voR +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +"} +(59,1,1) = {" +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +buG +vfs +vfs +vfs +vfs +vfs +vfs +vfs +vfs +vfs +vfs +vfs +vMh +iIt +kKW +aqZ +vMh +fkX +fkX +qsR +fkX +fkX +xCI +wfF +gNH +kds +wUu +fkX +buG +buG +vfs +iOH +iOH +iOH +iOH +iOH +iOH +iOH +iOH +iOH +iOH +iOH +iOH +iOH +iOH +iOH +vfs +vfs +vfs +vfs +vfs +vfs +buG +voR +voR +sGO +sGO +sGO +sGO +voR +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +"} +(60,1,1) = {" +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +buG +vfs +vfs +vfs +vfs +iOH +iOH +iOH +iOH +iOH +iOH +vfs +vMh +ylu +cKR +cKR +vMh +fkX +jMw +jMw +jQA +voa +xgj +jQA +gNH +bcd +wUu +fkX +buG +vfs +iOH +iOH +iOH +iOH +iOH +iOH +iOH +iOH +iOH +iOH +iOH +iOH +iOH +iOH +iOH +iOH +iOH +vfs +vfs +vfs +vfs +vfs +buG +voR +voR +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +"} +(61,1,1) = {" +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +buG +vfs +vfs +vfs +iOH +iOH +iOH +iOH +iOH +iOH +iOH +iOH +vMh +mNX +hrw +rnn +vMh +fkX +gNH +dnq +gNH +gNH +gNH +gNH +gNH +kds +fkX +fkX +buG +vfs +iOH +iOH +iOH +iOH +iOH +iOH +iOH +iOH +iOH +iOH +iOH +iOH +iOH +iOH +iOH +iOH +iOH +iOH +vfs +vfs +vfs +vfs +buG +voR +voR +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +"} +(62,1,1) = {" +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +buG +vfs +vfs +iOH +iOH +iOH +iOH +iOH +iOH +iOH +iOH +iOH +vMh +iJP +oKX +vnw +vMh +fkX +lWM +sjP +sww +gNH +vOp +fkX +fkX +fkX +fkX +buG +buG +vfs +iOH +iOH +iOH +iOH +iOH +iOH +iOH +iOH +iOH +iOH +iOH +iOH +iOH +iOH +iOH +iOH +iOH +iOH +iOH +vfs +vfs +vfs +buG +voR +voR +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +"} +(63,1,1) = {" +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +buG +vfs +vfs +iOH +iOH +iOH +iOH +iOH +iOH +iOH +iOH +iOH +vMh +vMh +vMh +ivC +vMh +fkX +fkX +fkX +fkX +gNH +fkX +fkX +fkX +fkX +fkX +buG +vfs +iOH +iOH +iOH +iOH +uzy +uGf +uGf +uGf +tkr +iOH +uzy +uGf +uGf +uGf +tkr +iOH +iOH +iOH +iOH +iOH +iOH +vfs +vfs +buG +voR +voR +voR +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +"} +(64,1,1) = {" +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +buG +vfs +iOH +iOH +iOH +iOH +iOH +iOH +iOH +iOH +iOH +iOH +ish +iEN +lnf +uaa +iEN +vPR +qRg +nFr +cKg +gsa +iEN +vjS +nJi +ezq +cKg +iEN +vfs +iOH +iOH +iOH +umN +ldE +bvW +bvW +bvW +fCZ +umN +ldE +bvW +bvW +bvW +fCZ +iOH +iOH +iOH +iOH +iOH +iOH +vfs +vfs +buG +buG +voR +voR +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +"} +(65,1,1) = {" +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +buG +vfs +iOH +iOH +iOH +iOH +nky +iOH +iOH +iOH +nky +dva +ish +iEN +tlz +rgd +vjq +rZl +cCv +ayG +iNr +gNH +njZ +hnb +wTA +fmU +dvB +iEN +vfs +iOH +iOH +fSW +quT +ldE +ldE +bvW +ldE +nJy +iOH +nJy +ldE +bvW +ldE +ldE +quT +mRm +iOH +iOH +iOH +iOH +iOH +vfs +vfs +buG +voR +voR +sGO +sGO +sGO +voR +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +"} +(66,1,1) = {" +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +buG +vfs +iOH +iEN +iEN +iEN +iEN +eYQ +eYQ +eYQ +iEN +iEN +iEN +iEN +omj +rgd +dSO +xgP +lTR +ebl +eUt +gNH +ejb +kML +lTR +nTn +iUQ +iEN +fSW +quT +quT +tkU +gOY +gOY +tDG +tDG +vgX +gVA +gVA +gVA +tDG +tDG +tDG +gOY +gOY +dva +dva +iOH +iOH +iOH +iOH +iOH +vfs +buG +voR +voR +voR +voR +voR +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +"} +(67,1,1) = {" +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +buG +vfs +buG +iEN +iEN +wcr +uzv +gNH +gNH +fmw +pJl +eBs +ckU +eca +glE +rgd +cUZ +iyy +sUB +kCi +pfA +gNH +opB +kcH +efH +oBW +hTm +iEN +wCL +fQn +gIC +qUS +gOY +gOY +xfF +nqk +xff +mgp +mWY +rEF +xfF +nqk +kjH +gOY +gOY +dva +iOH +iOH +iOH +iOH +iOH +iOH +vfs +buG +voR +voR +voR +voR +voR +voR +voR +voR +voR +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +"} +(68,1,1) = {" +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +buG +buG +buG +iEN +gNH +gNH +bcr +esz +ogW +deF +tdH +qEH +aVS +tfz +glE +hhL +vYk +jYe +kau +kQe +rVN +gNH +vYk +qxL +hkx +uGk +rVN +iEN +wCL +jTq +iOH +iOH +ouu +uqW +oje +ekb +lJG +cAx +kHo +krz +ekb +ltc +voC +pbW +gOY +dva +iOH +iOH +iOH +iOH +iOH +iOH +vfs +buG +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +"} +(69,1,1) = {" +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +buG +iEN +kVN +cqm +uWE +trL +qOO +dGM +wQl +aio +mmn +eca +nnT +qxY +iEN +oyN +eTz +cpF +tTe +gNH +tTe +oyN +nTs +sIh +rHo +iEN +wCL +jTq +iOH +iOH +ouu +arn +viu +saY +dnD +pFr +hIX +bHM +itv +hvN +fAZ +dsd +gOY +pgg +iOH +iOH +dva +dva +iOH +iOH +vfs +buG +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +"} +(70,1,1) = {" +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +buG +iEN +ugL +dGO +dfP +xxN +iXD +scw +unh +aDw +tNs +eca +glE +sSH +tyL +aad +oIu +xjT +ogv +qYt +kKF +gYj +kQW +glE +fcE +iEN +wCL +rTq +pnS +tXJ +gOY +cvr +apN +oRs +uUM +vcE +gOY +pIm +qFq +fmf +sgz +mEZ +gVA +pgg +iOH +iOH +iOH +dva +iOH +iOH +vfs +buG +voR +voR +voR +voR +voR +voR +voR +voR +voR +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +"} +(71,1,1) = {" +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +buG +iEN +ugL +mdn +grF +tbc +dWj +pII +xHl +xCf +hyA +iDS +qdl +mhw +pbf +krK +eSH +sjS +kND +jGD +hhz +sAM +urK +qEO +rMx +iEN +fkX +ocs +ocs +uUC +gOY +iOb +hhg +uhI +gOY +gOY +gOY +gOY +gOY +gwd +iZl +cTY +gVA +pgg +iOH +iOH +iOH +iOH +iOH +iOH +vfs +buG +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +"} +(72,1,1) = {" +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +buG +iEN +ugL +uZH +cVJ +url +xGW +tPt +nTL +uFU +tgK +ube +tss +iPe +oLq +glE +nnT +hxf +sFT +vYc +wFz +mRl +vXs +akq +sss +iEN +iEN +iEN +sQK +sQK +gOY +jtc +bAQ +abK +gVA +rpT +wXk +vLg +idS +hNl +vQS +fSR +gOY +pgg +iOH +iOH +iOH +iOH +iOH +iOH +vfs +buG +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +sGO +sGO +sGO +sGO +sGO +voR +sGO +sGO +sGO +sGO +sGO +sGO +voR +voR +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +"} +(73,1,1) = {" +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +buG +iEN +qno +wdZ +dVf +vNj +jJO +hVI +uUd +xHo +uNi +qSM +glE +foU +iEN +vgy +nhB +ohg +iEN +ekC +qVG +ccT +tMP +aAi +pjc +iEN +oxi +fCo +sQK +sQK +gOY +lRI +viu +irw +gVA +dLR +tAs +wSo +dia +kRd +viu +mMW +gOY +pgg +iOH +iOH +iOH +iOH +iOH +fGG +buG +buG +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +sGO +sGO +sGO +voR +voR +voR +voR +voR +sGO +voR +voR +sGO +voR +voR +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +vSF +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +"} +(74,1,1) = {" +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +buG +iEN +mWC +gNH +qgV +pHg +dBI +xKO +tuh +cxh +jyn +bTN +wLX +wEf +ntS +rtO +uHd +vjz +jci +gQU +gNH +iYs +xjO +aPS +hxf +cOA +glE +reL +sQK +sQK +gOY +bNj +pKo +cgG +gOY +gOY +ucS +gOY +gOY +mzF +ekb +gOY +gOY +rcx +xOV +iOH +iOH +iOH +iOH +fGG +fGG +buG +buG +buG +buG +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +sGO +sGO +voR +voR +voR +voR +voR +sGO +voR +voR +sGO +sGO +voR +voR +voR +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +"} +(75,1,1) = {" +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +buG +buG +iEN +iEN +pIk +ctv +vnU +tPl +vRK +gMf +ouT +pcr +bTN +ueu +wEf +gSx +hYS +wrO +klA +kKr +eBQ +fFj +mHa +iOm +pQN +nnT +cOA +hxf +kIh +sQK +sQK +sQK +gOY +gZE +gOY +gOY +wUe +eWT +wjR +gOY +gOY +gOY +gOY +joL +cET +vrx +xOV +iOH +iOH +iOH +fGG +fGG +fGG +fGG +fGG +buG +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +sGO +sGO +sGO +sGO +sGO +voR +voR +voR +voR +voR +voR +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +"} +(76,1,1) = {" +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +buG +buG +iEN +iEN +iEN +iEN +ppS +hIn +xkr +iEN +iEN +iEN +iEN +rpD +wEf +vIp +fSv +aNh +tZx +gNu +fFb +gNH +bRF +gYv +wQK +nnT +oLq +hxf +rHi +sQK +hQR +sQK +trk +jOW +eFT +gOY +vxQ +oIU +abK +gOY +sQK +sQK +tQH +cET +qrQ +cET +lPd +iOH +iOH +fGG +fGG +fGG +fGG +fGG +fGG +buG +buG +buG +buG +buG +buG +buG +buG +buG +buG +buG +buG +buG +buG +buG +buG +buG +buG +buG +buG +buG +buG +buG +buG +buG +buG +voR +voR +voR +sGO +sGO +voR +voR +voR +voR +voR +voR +voR +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +"} +(77,1,1) = {" +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +buG +vfs +jyS +jyS +qgD +aIU +tSe +fIJ +eIC +iEN +osg +gzE +iEN +eDD +sfO +iEN +gBS +eyI +ovo +iEN +jjS +nAx +jcQ +iQk +stx +cYX +iEN +gMi +aGm +sQK +eGz +nXg +rfh +sZI +ech +gOY +iIK +kAJ +bSG +gOY +iWw +cET +cET +cET +cET +cET +fGG +fGG +fGG +fGG +fGG +fGG +fGG +fGG +fGG +buG +vXi +vXi +vXi +vXi +vXi +vXi +vXi +vXi +vXi +vXi +vXi +vXi +vXi +vXi +vXi +vXi +vXi +vXi +vXi +vXi +vXi +vXi +vXi +vXi +buG +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +voR +voR +voR +voR +voR +voR +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +"} +(78,1,1) = {" +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +buG +vfs +jyS +jyS +qgD +mis +xHm +ggq +ppd +iEN +uAv +tdI +iEN +xmD +xrQ +iEN +fkX +tdI +tdI +fkX +fkX +iEN +eYQ +eYQ +kDu +iEN +iEN +fkX +fkX +sQK +sQK +mBr +kpl +kpl +kpl +gOY +gOY +isr +gOY +gOY +iYq +cET +cET +cET +fGG +cET +cET +cET +fGG +fGG +fGG +fGG +fGG +fGG +fGG +buG +vXi +vXi +vXi +wqN +mfM +mfM +mfM +mfM +mfM +mfM +mfM +mfM +xrS +mfM +mfM +vXi +vXi +vXi +vXi +vXi +vXi +vXi +vXi +vXi +buG +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +voR +voR +voR +voR +voR +voR +voR +voR +voR +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +"} +(79,1,1) = {" +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +buG +vfs +jyS +jyS +dib +mis +uLR +uLR +uLR +iEN +aog +uIX +iEN +jfu +iIe +iEN +fGG +cET +fGG +fGG +fGG +wXr +kXh +aGL +pzl +toM +dQE +jDi +hBp +hJM +hIf +vTf +dQE +eLw +cEp +pWn +reT +qcb +vKa +ulu +qhX +qrQ +cET +fGG +fGG +fGG +iWw +cET +cET +cET +cET +cET +fGG +fGG +fGG +buG +vXi +vXi +vXi +mfM +mfM +mfM +mfM +vXi +vXi +vXi +vXi +wzP +mfM +mfM +mfM +mfM +mfM +mfM +vXi +vXi +vXi +vXi +vXi +vXi +buG +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +"} +(80,1,1) = {" +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +buG +vfs +vfs +jyS +iEN +iEN +iEN +iEN +iEN +iEN +iEN +oqf +iEN +qIv +aiK +iEN +fGG +cET +fGG +cET +cET +cET +dXJ +cIZ +mWR +bQq +rWW +rmx +nTy +jsA +uix +mdP +rWW +qtX +kla +mQy +xPG +unE +mfS +imq +lRH +xCo +cET +fGG +fGG +fGG +fGG +fGG +fGG +fGG +nTr +cET +cET +fGG +fGG +buG +vXi +vXi +mfM +mfM +vXi +vXi +vXi +vXi +vXi +vXi +vXi +vXi +vXi +vXi +vXi +oMo +mfM +mfM +mfM +wqN +vXi +vXi +vXi +vXi +buG +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +"} +(81,1,1) = {" +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +buG +vfs +vfs +vfs +grt +iEN +lAb +qjF +kOY +uet +fAo +dDl +keQ +qch +ymi +pht +vrx +cET +cET +cET +fGG +tQH +pvf +qJq +wvB +qZb +wvB +kAn +pZH +mxV +sAv +kAn +qwl +iDU +kAI +wvB +wvB +fHd +tEG +oOO +cBT +vaS +cET +fGG +fGG +fGG +fGG +fGG +fGG +fGG +fGG +cET +cET +tQH +fGG +buG +vXi +mfM +mfM +mfM +vXi +vXi +vXi +vXi +lXi +xgB +vXi +vXi +vXi +vXi +vXi +vXi +mfM +mfM +mfM +mfM +mfM +vXi +vXi +vXi +buG +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +sGO +sGO +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +"} +(82,1,1) = {" +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +voR +voR +voR +voR +buG +buG +buG +buG +buG +buG +buG +buG +buG +buG +buG +buG +buG +buG +buG +buG +buG +iEN +oAM +dBg +nnK +oeu +pRi +noT +don +iVe +nHh +iEN +fGG +iWw +cET +fGG +fGG +fGG +fGG +tQH +cET +cET +fGG +fGG +iWw +qrQ +cET +tQH +fGG +kIq +fYy +fGG +fGG +cET +iWw +kEr +sVv +sFo +cET +cET +fGG +fGG +fGG +fGG +fGG +fGG +fGG +fGG +cET +nTr +fGG +buG +vXi +mfM +mfM +vXi +vXi +vXi +oMo +mfM +mfM +mfM +mfM +vXi +vXi +vXi +vXi +vXi +vXi +vXi +vXi +vXi +mfM +mfM +vXi +vXi +buG +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +sGO +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +"} +(83,1,1) = {" +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +voR +voR +voR +voR +buG +vfs +vfs +vfs +vfs +vfs +vfs +vfs +vfs +vfs +vfs +buG +vfs +vfs +vfs +vfs +vfs +iEN +wQL +ooM +pZj +iEN +iEN +iEN +hux +euh +iEN +iEN +fGG +fGG +fGG +fGG +fGG +fGG +fGG +fGG +fGG +fGG +fGG +fGG +fGG +fGG +fGG +fGG +fGG +vUa +jYw +fGG +cET +cET +fyt +nTU +eZE +kQs +fyt +cET +iWw +fGG +fGG +fGG +fGG +fGG +fGG +cET +cET +fGG +fGG +fGG +vXi +mfM +vXi +vXi +vXi +vXi +mfM +mfM +vXi +vXi +vXi +vXi +vXi +vXi +mfM +mfM +mfM +vXi +vXi +vXi +vXi +mfM +mfM +vXi +buG +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +"} +(84,1,1) = {" +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +voR +voR +voR +voR +buG +vfs +vfs +vfs +vfs +iOH +iOH +iOH +iOH +iOH +iOH +iOH +vfs +vfs +vfs +vfs +vfs +iEN +oFu +niW +wQX +iEN +vfs +vfs +gvp +bnT +whI +pgg +iOH +iOH +iOH +iOH +iOH +fGG +buG +buG +buG +buG +fGG +fGG +yjA +yjA +fGG +tQH +cET +vUa +kXu +fGG +eFj +dCP +jjG +kXh +hdE +aUB +vrx +cET +cET +fGG +fGG +fGG +fGG +fGG +cET +cET +fGG +fGG +fGG +fGG +lSH +fxq +vXi +vXi +vXi +vXi +mfM +mfM +mfM +vXi +vXi +vXi +vXi +vXi +mfM +vXi +mfM +mfM +vXi +vXi +vXi +mfM +mfM +vXi +buG +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +"} +(85,1,1) = {" +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +voR +voR +voR +voR +buG +vfs +vfs +vfs +iOH +iOH +iOH +iOH +iOH +iOH +iOH +iOH +iOH +iOH +iOH +vfs +vfs +iEN +iEN +wOd +iEN +iEN +iOH +wCL +dcF +uKm +lxo +pgg +iOH +iOH +iOH +iOH +iOH +iOH +vfs +vfs +vfs +buG +fGG +fGG +fGG +oHf +fGG +fGG +cET +myU +jbC +fGG +ncu +iVk +bOj +lTe +hBB +qWb +vrx +vrx +vrx +vrx +cET +tQH +fGG +fGG +fGG +cET +fGG +fGG +fGG +fyt +cxG +fyt +vXi +vXi +vXi +vXi +vXi +vXi +mfM +vXi +vXi +vXi +vXi +vXi +mfM +wzP +vXi +mfM +mfM +vXi +vXi +mfM +mfM +vXi +buG +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +"} +(86,1,1) = {" +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +voR +voR +voR +voR +buG +vfs +vfs +vfs +iOH +iOH +iOH +iOH +iOH +iOH +iOH +iOH +iOH +iOH +iOH +iOH +iOH +iOH +cEF +bgY +rdK +pgg +iOH +rCJ +ocs +ocs +ocs +ixB +iOH +iOH +iOH +iOH +iOH +iOH +iOH +vfs +vfs +buG +fGG +fGG +cET +tuz +fGG +fGG +qrQ +myU +xme +fGG +fGG +oGy +mjm +bhK +aEU +gPr +tQH +cET +cET +vrx +vrx +vrx +fGG +fGG +tQH +cET +cET +fGG +fGG +pfu +vdX +vXi +vXi +vXi +vXi +vXi +vXi +vXi +mfM +mfM +vXi +vXi +vXi +vXi +mfM +mfM +vXi +mfM +mfM +vXi +vXi +vXi +mfM +vXi +buG +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +sGO +sGO +sGO +voR +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +"} +(87,1,1) = {" +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +voR +voR +voR +buG +vfs +vfs +iOH +iOH +iOH +iOH +iOH +iOH +iOH +iOH +iOH +iOH +iOH +iOH +iOH +iOH +iOH +cwy +qIz +lQd +ixB +iOH +iOH +iOH +iOH +iOH +iOH +iOH +iOH +iOH +iOH +iOH +iOH +iOH +vfs +vfs +buG +fGG +cET +cET +fGG +fGG +fGG +fGG +xUD +snL +qrQ +fGG +cET +fyt +nGX +myU +aUB +fyt +fGG +cET +fGG +qrQ +vrx +vrx +hiB +cET +cET +cET +iWw +fGG +fGG +rJU +uZM +vXi +vXi +vXi +vXi +vXi +vXi +wqN +mfM +mfM +mfM +mfM +vXi +xrS +mfM +vXi +vXi +mfM +vXi +vXi +vXi +mfM +vXi +buG +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +sGO +sGO +voR +voR +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +"} +(88,1,1) = {" +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +voR +voR +voR +buG +vfs +vfs +iOH +iOH +iOH +iOH +iOH +iOH +iOH +iOH +iOH +iOH +iOH +iOH +iOH +iOH +iOH +cwy +qIz +lQd +iOH +iOH +iOH +iOH +iOH +iOH +iOH +iOH +iOH +iOH +iOH +iOH +iOH +iOH +vfs +vfs +buG +fGG +cET +fGG +fGG +cET +cET +cET +myU +kAi +fGG +fGG +cET +iYq +bhK +fvx +qGj +eEX +fGG +fGG +fGG +fGG +fGG +iWw +vrx +vrx +vrx +vrx +vrx +tqv +leJ +rJU +vdX +vXi +vXi +vXi +vXi +vXi +mfM +mfM +mfM +mfM +vXi +mfM +mfM +mfM +mfM +vXi +vXi +mfM +mfM +vXi +vXi +mfM +vXi +buG +buG +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +sGO +sGO +voR +voR +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +"} +(89,1,1) = {" +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +voR +voR +voR +buG +vfs +vfs +iOH +iOH +iOH +iOH +iOH +iOH +iOH +iOH +iOH +iOH +iOH +iOH +iOH +iOH +iOH +cwy +qIz +lQd +iOH +iOH +iOH +iOH +iOH +iOH +iOH +iOH +iOH +iOH +iOH +iOH +iOH +iOH +iOH +buG +buG +fGG +cET +fGG +cET +cET +cET +fGG +xPp +rqp +fGG +fGG +fGG +bOj +bhK +iUy +tkZ +wJL +ntl +jeP +gQZ +iZI +fGG +fGG +fGG +fGG +fGG +cET +fGG +fGG +ltf +fmm +nGr +vXi +vXi +vXi +vXi +mfM +mfM +mfM +vXi +vXi +vXi +mfM +vXi +vXi +mfM +vXi +vXi +mfM +xrS +vXi +vXi +mfM +vXi +vXi +buG +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +"} +(90,1,1) = {" +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +voR +voR +voR +buG +buG +iOH +iOH +iOH +iOH +iOH +iOH +iOH +iOH +iOH +iOH +iOH +iOH +iOH +iOH +iOH +iOH +cwy +qIz +lQd +iOH +iOH +iOH +iOH +iOH +iOH +iOH +iOH +iOH +iOH +iOH +iOH +iOH +iOH +iOH +vfs +buG +fGG +cET +cET +cET +fGG +fGG +fGG +xwE +nTN +fGG +fGG +fGG +bOj +fyt +vuO +llX +hwB +eBv +xFU +gTW +mbi +fGG +fGG +fGG +fGG +fGG +fGG +fGG +fGG +fGG +leJ +sfF +vXi +vXi +vXi +vXi +mfM +vXi +vXi +vXi +vXi +vXi +mfM +wqN +vXi +mfM +mfM +vXi +xgB +mfM +lXi +vXi +mfM +mfM +vXi +buG +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +sGO +sGO +sGO +sGO +sGO +sGO +voR +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +"} +(91,1,1) = {" +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +voR +voR +voR +buG +vfs +iOH +iOH +iOH +iOH +iOH +iOH +iOH +iOH +iOH +iOH +iOH +iOH +iOH +iOH +dva +fSW +cwy +qIz +lQd +mRm +iOH +iOH +iOH +iOH +iOH +iOH +iOH +iOH +iOH +iOH +iOH +iOH +iOH +iOH +vfs +buG +fGG +cET +fGG +fGG +fGG +fGG +fyt +xXv +fyt +fyt +fGG +fGG +fyt +fyt +fyt +fGG +fGG +fGG +lls +lrc +msj +fGG +fGG +fGG +fGG +fGG +fGG +fGG +fGG +fGG +wRG +fGG +vXi +vXi +vXi +mfM +mfM +vXi +vXi +vXi +oMo +mfM +mfM +wzP +vXi +vXi +mfM +vXi +vXi +wzP +wqN +vXi +vXi +mfM +vXi +buG +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +mTH +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +sGO +sGO +sGO +sGO +voR +voR +voR +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +"} +(92,1,1) = {" +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +voR +voR +voR +buG +vfs +iOH +iOH +iOH +iOH +iOH +iOH +iOH +iOH +iOH +iOH +iOH +iOH +mmK +hVF +lww +wCL +tXh +wEf +yko +pgg +iOH +hVF +mlX +wQn +iOH +iOH +iOH +iOH +iOH +iOH +iOH +iOH +iOH +iOH +vfs +buG +fGG +cET +cET +iWw +fGG +fGG +oUR +lAl +vaS +dPX +mzr +rQp +rQE +mzr +mzr +mzr +mzr +mzr +mzr +dkc +pdq +fGG +fGG +fGG +fGG +fGG +fGG +fyt +fyt +fyt +iAh +fyt +jrc +vXi +vXi +lXi +mfM +vXi +vXi +vXi +mfM +mfM +mfM +vXi +vXi +vXi +mfM +mfM +vXi +vXi +wzP +vXi +vXi +mfM +vXi +buG +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +mTH +mTH +mTH +mTH +mTH +mTH +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +"} +(93,1,1) = {" +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +voR +voR +buG +vfs +iOH +iOH +iOH +iOH +iOH +iOH +iOH +iOH +iOH +iOH +iOH +dUW +dUW +dHC +dUW +dUW +miz +mau +xrp +dUW +dUW +xFg +dUW +dUW +iOH +iOH +iOH +iOH +iOH +iOH +iOH +iOH +iOH +iOH +vfs +buG +fGG +cET +cET +fGG +fGG +qBU +dxP +fio +jYw +sfU +rQE +rQE +rQE +esF +mzr +mzr +mzr +mzr +mzr +nwN +mio +fyt +fGG +rZh +bkT +fGG +fGG +fyt +enx +ylg +mDU +otT +jrc +vXi +vXi +wqN +vXi +vXi +vXi +mfM +mfM +mfM +vXi +vXi +vXi +vXi +mfM +mfM +vXi +vXi +vXi +vXi +mfM +mfM +vXi +buG +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +mTH +mTH +mTH +mTH +mTH +mTH +mTH +mTH +uEN +mTH +mTH +mTH +mTH +mTH +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +sGO +sGO +sGO +sGO +voR +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +"} +(94,1,1) = {" +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +voR +voR +buG +vfs +vfs +iOH +iOH +iOH +iOH +iOH +iOH +iOH +iOH +iOH +mlX +dUW +aYm +srQ +jOs +fgs +lck +mVz +awa +wMZ +rHZ +rdd +jga +dUW +mlX +iOH +iOH +iOH +iOH +iOH +iOH +iOH +iOH +iOH +vfs +buG +fGG +iWw +cET +fGG +fGG +qcj +aIy +ffP +mtl +sfU +rQE +rQE +rQE +rQp +mzr +mzr +mzr +mzr +mzr +bIU +auf +fyt +fGG +ndJ +qpV +oiG +pWj +syc +cNl +gOT +vFJ +tjB +jrc +vXi +vXi +vXi +vXi +vXi +vXi +mfM +mfM +vXi +vXi +vXi +vXi +vXi +vXi +mfM +vXi +vXi +vXi +vXi +mfM +vXi +vXi +buG +voR +voR +voR +voR +voR +voR +voR +voR +voR +mTH +mTH +mTH +mTH +mTH +sYI +lAq +mTH +mTH +qnr +mTH +mTH +uEN +uEN +uEN +uEN +mTH +mTH +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +"} +(95,1,1) = {" +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +voR +voR +buG +vfs +vfs +iOH +iOH +iOH +iOH +iOH +iOH +iOH +iOH +iOH +hVF +npa +tRe +pyM +gPE +lTM +lTM +mQj +dXX +dpf +jjo +aDF +eDk +npa +hVF +iOH +iOH +iOH +iOH +iOH +iOH +iOH +iOH +iOH +vfs +buG +fGG +fGG +cET +dPX +dPX +ofk +dPX +mMo +vTF +dPX +rQE +rQE +rQE +mzr +mzr +mzr +mzr +mzr +pyu +jVq +nTf +fyt +jrc +eUF +dNG +awr +voQ +rCm +tGw +vFJ +wnw +aml +jrc +vXi +vXi +vXi +vXi +vXi +mfM +mfM +wqN +vXi +vXi +vXi +vXi +vXi +vXi +mfM +mfM +mfM +mfM +mfM +mfM +vXi +vXi +buG +voR +voR +voR +voR +voR +voR +voR +voR +mTH +mTH +mTH +mTH +mTH +uEN +lAq +uEN +mTH +mTH +mTH +mTH +mTH +mTH +sYI +mTH +cCm +uEN +mTH +qXS +mTH +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +sGO +sGO +sGO +sGO +sGO +voR +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +"} +(96,1,1) = {" +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +voR +voR +buG +vfs +vfs +iOH +iOH +iOH +iOH +iOH +iOH +iOH +iOH +mlX +mlX +dUW +mDs +nzs +lTM +gPE +fKc +jLa +inE +lTM +tKt +lTM +dHX +dUW +mlX +iOH +iOH +iOH +iOH +iOH +iOH +iOH +iOH +iOH +vfs +buG +fGG +fGG +cET +dPX +mHB +nWz +gDc +lAl +gks +dPX +rQE +rQE +rQE +rQE +rQE +mzr +rQE +mzr +pyu +tVn +qIS +pSU +rYg +peh +tZm +qga +jrc +jrc +fsM +oLG +rxS +eWU +jrc +vXi +vXi +vXi +vXi +mfM +mfM +vXi +vXi +vXi +vXi +vXi +vXi +vXi +vXi +vXi +mfM +wqN +mfM +vXi +vXi +vXi +vXi +buG +voR +voR +voR +voR +voR +voR +voR +voR +voR +xaQ +mTH +mTH +qXS +uEN +mTH +mTH +mTH +mTH +mTH +mTH +mTH +mPg +mPg +mTH +mTH +mTH +mTH +mTH +mTH +mTH +mTH +mTH +mTH +voR +voR +voR +voR +voR +voR +voR +voR +sGO +sGO +voR +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +"} +(97,1,1) = {" +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +voR +voR +buG +vfs +vfs +iOH +iOH +iOH +iOH +iOH +iOH +iOH +iOH +wQn +dUW +dUW +mBf +gwI +sKs +ufj +nrS +iLh +hcR +jxN +nNM +gPE +wvh +dUW +dUW +iOH +iOH +iOH +iOH +iOH +iOH +iOH +iOH +vfs +vfs +buG +fGG +iWw +cET +dPX +uVE +iJd +aww +myU +klB +orz +rQE +rQE +rQp +mzr +ixx +lPP +rQE +srx +qIy +skP +gPg +uwP +acv +qBm +riw +qga +qga +jrc +jrc +jrc +jrc +kWh +jrc +vXi +vXi +vXi +vXi +mfM +mfM +vXi +vXi +vXi +vXi +vXi +vXi +vXi +vXi +vXi +vXi +vXi +vXi +vXi +vXi +vXi +vXi +buG +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +mTH +mTH +mTH +mPg +mPg +mPg +mTH +bmA +mTH +pXH +mTc +mTc +mTc +mTc +pXH +mTH +bsm +mTH +mTH +mTH +uEN +uEN +uEN +mTH +mTH +voR +voR +voR +voR +voR +voR +sGO +voR +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +"} +(98,1,1) = {" +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +voR +voR +voR +buG +vfs +vfs +iOH +iOH +iOH +iOH +iOH +iOH +iOH +iOH +mlX +dUW +eXn +lTM +pyM +kqb +vhy +hrb +nRJ +hrb +egh +oAd +lil +pyM +rcY +dUW +iOH +iOH +iOH +iOH +iOH +iOH +iOH +iOH +vfs +vfs +buG +fGG +fGG +fGG +dPX +ppT +tzg +aww +jDg +grm +dPX +rQp +rQE +mzr +mzr +mzr +rQE +rQE +mzr +pyu +lnD +tNx +xMF +ahx +xYC +lhe +qga +qga +qga +qga +tqc +cJd +dDo +hPz +vXi +vXi +vXi +vXi +tpf +lSH +lSH +vXi +buG +buG +buG +buG +buG +buG +buG +buG +buG +buG +buG +buG +buG +buG +buG +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +fXa +fXa +fXa +mTc +dkv +mTc +mTc +mTc +mTc +dkv +fXa +mTc +mTc +fXa +dkv +mTc +fXa +roE +mTH +mTH +uEN +uEN +sYI +uEN +mTH +mTH +mTH +voR +voR +voR +voR +sGO +sGO +sGO +sGO +voR +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +"} +(99,1,1) = {" +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +voR +voR +voR +buG +vfs +vfs +iOH +iOH +iOH +iOH +iOH +iOH +iOH +iOH +hVF +trc +dPu +lTM +xEX +hSO +dwn +bNs +mop +sFg +sOF +qiQ +uZr +lTM +rcY +npa +hVF +iOH +iOH +iOH +iOH +iOH +iOH +iOH +vfs +vfs +buG +api +kEp +kEp +fRM +fRM +baO +fRM +jDT +vgj +fRM +fRM +fRM +fRM +mzr +mzr +esF +rQE +mzr +pyu +jrc +ufx +jrc +jrc +ppn +bKL +jrc +qga +qga +qga +tqc +oQE +uEn +hPz +hPz +hPz +hPz +hPz +hPz +gfo +hPz +hPz +hPz +buG +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +mTc +mTc +mTc +mTc +mTc +mTc +mTc +mTc +fXa +xTw +dkv +mTc +mTc +fXa +mTc +fXa +fXa +mTc +roE +mTH +mTH +mTH +mTH +mTH +mTH +mTH +mTH +mTH +mTH +voR +voR +voR +mTH +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +"} +(100,1,1) = {" +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +voR +voR +voR +buG +vfs +vfs +iOH +iOH +iOH +iOH +iOH +iOH +iOH +iOH +mlX +npa +biP +lTM +lbw +dcT +dwn +oUu +eBe +oUu +uGw +hHg +qSR +lTM +vJC +qkM +mlX +iOH +iOH +iOH +iOH +iOH +iOH +iOH +vfs +vfs +buG +api +kEp +kUZ +fyS +aTf +qkg +fRM +hEQ +jfY +vzq +pRB +con +fRM +mzr +mzr +rQp +cAb +pyu +mzr +mzr +qOS +mzr +jrc +oCo +mZa +jrc +qga +qga +tdM +tqc +oxJ +uEn +dDo +oQE +tqc +fkr +vqg +uTF +vfj +hMH +hMH +hPz +buG +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +mTH +mTH +voR +dkv +pXH +mTH +eYI +mTH +mTH +eYI +mTH +mTH +eYI +mTH +pCQ +mTc +ezZ +mTc +mTc +nsA +mTH +eYI +mTH +mTH +eYI +mTH +mTH +eYI +mTH +mTH +eYI +mTH +mTH +mTH +mTH +mTH +mTH +mTH +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +"} +(101,1,1) = {" +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +voR +voR +buG +vfs +iOH +iOH +iOH +iOH +iOH +iOH +iOH +iOH +iOH +tLp +dUW +rPe +gPE +wnx +dwn +vJS +pXE +pqA +wIY +hTi +pbI +jWB +dqg +wks +dUW +dMI +iOH +iOH +iOH +iOH +iOH +iOH +iOH +vfs +vfs +buG +api +kEp +eJG +vWu +kPz +fta +luk +dki +ena +egH +grP +vqH +fRM +mzr +mzr +mzr +cAb +nKQ +wYA +pmk +aeV +mzr +jrc +kfZ +aSh +jrc +qga +qga +tdM +tqc +tqc +qmV +oNB +tqc +tqc +kLh +dDo +fDy +dDo +oNB +uEn +hPz +buG +buG +buG +buG +buG +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +mTH +mTH +mTH +fXa +dkv +mTH +mTH +mTH +mTH +mTH +mTH +mTH +mTH +mTH +mTH +mTH +mTH +mTH +mTH +mTH +mTH +mTH +mTH +mTH +mTH +mTH +mTH +mTH +mTH +mTH +mTH +mTH +bmA +mTH +mTH +uEN +uEN +uEN +mTH +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +"} +(102,1,1) = {" +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +voR +voR +buG +vfs +iOH +iOH +iOH +iOH +iOH +iOH +iOH +iOH +iOH +cun +wYL +dPu +gPE +rhL +rSV +tdN +ryh +wJU +tmS +rra +sxz +qHa +lTM +vJC +npa +hVF +iOH +iOH +iOH +iOH +iOH +iOH +iOH +vfs +vfs +buG +api +kEp +lEA +aKJ +ilJ +sqa +fRM +fRM +fRM +fRM +kIL +sKD +fRM +mzr +mzr +mzr +mzr +kFQ +gXS +mTK +qOS +pyu +jrc +kBk +ajq +jrc +tqc +tqc +tqc +tqc +hJo +fhZ +fhZ +fhZ +tqc +oNB +tqc +kQM +uEn +tqc +gfo +hPz +hPz +hPz +hPz +hPz +buG +voR +voR +voR +voR +voR +voR +uEN +voR +voR +voR +voR +voR +voR +mTH +qXS +mTH +fXa +mTc +qCz +mTH +mTH +mTH +mTH +mTH +mTH +mTH +mTH +mTH +mTH +mTH +mTH +mTH +mTH +mTH +mTH +mTH +mTH +mTH +mTH +mTH +mTH +mTH +mTH +mTH +mTH +mTH +qCz +bsm +cXz +cXz +uEN +uEN +mTH +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +"} +(103,1,1) = {" +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +voR +voR +voR +buG +vfs +iOH +iOH +iOH +iOH +iOH +iOH +iOH +iOH +iOH +cZP +vaf +jHQ +wCO +nUN +wKa +mNj +yeJ +aZA +mtS +uSa +scK +cSX +gPE +vJC +npa +mlX +iOH +iOH +iOH +iOH +iOH +iOH +iOH +iOH +vfs +buG +api +kEp +vbN +bNB +cud +ojk +luk +cCY +oAX +bNB +qNk +mcA +fRM +mzr +mzr +mzr +kFQ +kFQ +nER +kcU +lod +jND +jrc +bUl +uBo +rCm +mCO +atq +cJJ +wQZ +cxS +fhZ +fhZ +qmV +fMQ +uEn +tqc +tqc +gfo +tqc +vqg +uEn +uEn +dDo +lab +hPz +buG +voR +voR +voR +voR +voR +bsm +uEN +uEN +voR +voR +voR +voR +mTH +uEN +mTH +mTH +mTc +mTc +mTH +mTH +mTH +mTH +mTH +mTH +mTH +mTH +mTH +mTH +mTH +mTH +mTH +mTH +cXz +uEN +uEN +mTH +uEN +uEN +mTH +mTH +mTH +mTH +mTH +mTH +mTH +mTH +mTH +mPg +mPg +cXz +uEN +mTH +mTH +mTH +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +"} +(104,1,1) = {" +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +voR +voR +voR +buG +vfs +iOH +iOH +iOH +iOH +iOH +iOH +iOH +iOH +iOH +mlX +dUW +xCk +kkl +nBH +oUu +ohQ +pkx +dAU +mNi +jSC +oUu +ctA +gPE +rFU +dUW +bZY +iOH +iOH +iOH +iOH +iOH +iOH +iOH +iOH +vfs +buG +api +kEp +lxx +gKP +cdb +nqG +fRM +xNB +pLD +gRW +sPi +fbw +fRM +mzr +mzr +mzr +kFQ +jEX +eaz +dlL +mTK +dlL +mZw +bFE +nwM +rCm +lIg +hbY +nij +rLz +hoN +qmV +rKO +qmV +qmV +jxB +tqc +ujI +dDo +tqc +mgA +oQE +oNB +uEn +oQE +hPz +buG +voR +voR +mSJ +mSJ +mSJ +mSJ +cCm +mTH +voR +voR +voR +mTH +uEN +usA +uEN +mTH +mTc +mTc +mTH +mTH +mTH +uEN +uEN +mTH +mTH +mTH +mTH +mTH +mTH +mTH +mTH +uEN +uEN +mTH +mTH +mTH +cXz +mTH +mTH +mTH +mTH +mTH +mTH +mTH +mTH +mTH +mTH +mTc +mTc +mTH +mTH +mTH +mTH +mTH +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +"} +(105,1,1) = {" +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +voR +voR +voR +voR +buG +vfs +iOH +iOH +iOH +iOH +iOH +iOH +iOH +iOH +iOH +mlX +npa +xPZ +kkl +fee +qKD +ohQ +bkl +bUL +hDO +hTX +xvc +qxa +lTM +rcY +npa +hVF +iOH +iOH +iOH +iOH +iOH +iOH +iOH +iOH +vfs +buG +api +kEp +maC +maC +fRM +dbK +fRM +yaT +pwf +pwf +pwf +kNf +fRM +fRM +kFQ +bdq +kFQ +kFQ +mTK +iNm +jrc +jrc +jrc +xBX +eoS +jrc +xzo +jeg +pjG +bkz +oge +qmV +fhZ +fhZ +lWf +xAk +czG +nNH +uEn +tqc +dVS +dDo +oNB +ujI +dDo +hPz +buG +voR +voR +mSJ +dNx +jLe +mSJ +mTH +bsm +pVO +mTH +mTH +mTH +usA +usA +mTH +mTH +mTc +mTc +qCz +mTH +mTH +mTH +mTH +mTH +uEN +mTH +mTH +uEN +uEN +uEN +uEN +uEN +uEN +uEN +mTH +mTH +mTH +mTH +uEN +uEN +mTH +mTH +mTH +mTH +mTH +mTH +qCz +mTc +mTc +mTH +mTH +bsm +mTH +mTH +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +"} +(106,1,1) = {" +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +voR +voR +voR +voR +buG +vfs +iOH +iOH +iOH +iOH +iOH +iOH +iOH +iOH +iOH +hVF +npa +gkG +pYY +hmt +cbh +tZC +nZw +hBo +nZw +cnK +gFI +lsu +lTM +gqo +npa +mlX +iOH +iOH +iOH +iOH +iOH +iOH +iOH +iOH +vfs +buG +api +kEp +kEp +fRM +fRM +vWu +hXz +jHT +gkA +wIy +gMh +xeH +eaH +hgz +hmg +hqR +kFQ +oyy +dlL +jrc +jrc +oBO +vSe +eJY +sMf +oXp +awj +rnT +jpT +cVi +ktU +tqc +fhZ +oNB +tqc +tqc +tqc +wGd +qtU +tqc +tqc +kQM +dDo +oHV +uEn +hPz +buG +voR +voR +mSJ +tLK +ngA +mSJ +mTH +mTH +pVO +mTH +mTH +bsm +qnr +bsm +mTH +gZu +tWy +mTc +mTH +mTH +mTH +uEN +mTH +uEN +cXz +cXz +uEN +uEN +mTH +mTH +cXz +uEN +uEN +uEN +uEN +uEN +uEN +mTH +mTH +mTH +mTH +mTH +mTH +mTH +mTH +mTH +mTH +mTc +vbz +gZu +mTH +mTH +mTH +mTH +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +"} +(107,1,1) = {" +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +voR +voR +voR +voR +buG +vfs +iOH +iOH +iOH +iOH +iOH +iOH +iOH +iOH +iOH +vUH +dUW +krO +fKc +ouA +bEL +vJS +wIY +pqA +pXE +uSQ +sOF +sJZ +dqg +wks +dUW +lIw +iOH +iOH +iOH +iOH +iOH +iOH +iOH +iOH +vfs +buG +api +api +kEp +sGt +isa +bNB +pLD +aKJ +xlu +pBd +opp +wrv +gUs +vcj +kFQ +uMr +hqR +gcZ +pMV +jrc +siK +iAd +etz +sRB +qkP +jrc +tka +vZA +aTI +hJC +nCL +tqc +dDo +dDo +uTF +oQE +tqc +xex +rTZ +uTF +tqc +tqc +tqc +gfo +tqc +hPz +buG +voR +voR +mSJ +mSJ +afH +mSJ +mSJ +mSJ +mBX +uEN +mTH +mTH +bsm +mTH +mTH +pAh +fXa +mTc +mTH +mTH +mTH +mTH +uEN +mTH +uEN +uEN +uEN +cXz +cXz +mTH +hfy +uEN +uEN +cXz +cXz +cXz +uEN +cXz +uEN +uEN +mTH +mTH +mTH +mTH +mTH +mTH +mTH +mTc +mTc +gxx +mTH +mTH +mTH +mTH +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +"} +(108,1,1) = {" +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +voR +voR +voR +voR +buG +vfs +iOH +iOH +iOH +iOH +iOH +iOH +iOH +iOH +iOH +mlX +npa +gkG +lTM +ouA +eui +dwn +oUu +fjT +oUu +uGw +oXR +jmB +vol +vJC +pvt +mlX +iOH +iOH +iOH +iOH +iOH +iOH +iOH +vfs +vfs +buG +api +api +kEp +nAS +ubG +gei +oir +bNB +jWu +aqJ +ecT +cxK +pLD +ccv +kFQ +gXS +bmH +dlL +gzW +jrc +noS +dis +aui +dMY +ktU +jrc +rCm +rCm +lhv +lhv +lhv +tqc +tqc +dDo +oHV +xvR +fMQ +fDy +jxI +rcO +pDc +cwL +clg +uEn +dDo +hPz +buG +buG +buG +buG +mSJ +bGg +gQz +jff +mSJ +voR +hfy +uEN +mTH +mTH +bmA +mTH +fRd +mTc +mTc +rdZ +mTH +mTH +mTH +uEN +uEN +uEN +uEN +cXz +hfy +uEN +cXz +hfy +cXz +uEN +uEN +hfy +lgW +uEN +uEN +uEN +mTH +uEN +mTH +mTH +mTH +mTH +mTH +rdZ +mTc +mTc +gxx +mTH +mTH +mTH +mTH +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +"} +(109,1,1) = {" +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +voR +voR +voR +voR +buG +vfs +vfs +iOH +iOH +iOH +iOH +iOH +iOH +iOH +iOH +hVF +qkM +bec +lTM +qsh +hBl +hUM +bNs +mop +ckN +stN +mLo +uZr +gPE +rcY +npa +hVF +iOH +iOH +iOH +iOH +iOH +iOH +iOH +vfs +vfs +buG +api +api +kEp +ift +iYi +bNB +aKJ +ePv +vOS +nBO +ref +uvk +aKJ +kDT +skv +fUy +bmH +fUy +wMy +jrc +pAH +myi +rUl +mYO +hGj +jrc +lIX +ojN +dIC +eIF +uEn +uTF +tqc +gfo +tqc +tqc +tqc +tqc +hPz +uEn +vqg +dDo +wJn +uEn +xDW +hPz +kSH +kSH +kSH +buG +mSJ +clR +uvv +eAG +mSJ +voR +uEN +cIe +hyN +mTH +mTH +fRd +pXH +mTc +mTc +mTc +mTH +mTH +uEN +uEN +uEN +mTH +mTH +uEN +uEN +uEN +cXz +uEN +cXz +cXz +uEN +uEN +cXz +cXz +uEN +uEN +cXz +uEN +uEN +mTH +mTH +mTH +mTH +mTc +mTc +mTc +mTH +bsm +mTH +mTH +mTH +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +"} +(110,1,1) = {" +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +voR +voR +voR +voR +buG +vfs +vfs +iOH +iOH +iOH +iOH +iOH +iOH +iOH +iOH +mlX +dUW +dRX +iey +lTM +gmy +jDm +sRf +haw +giS +eNm +kez +lTM +lil +orD +dUW +iOH +iOH +iOH +iOH +iOH +iOH +iOH +iOH +vfs +vfs +buG +api +kEp +kEp +ssy +ssy +fRM +wng +siE +cGj +oIt +vYv +tSd +nhO +xbr +kFQ +kFQ +jpj +kFQ +kFQ +jrc +xOF +jrc +hLp +jYQ +uwc +jrc +iEa +nDQ +agk +tqc +uEn +vqg +uEn +tkH +uEn +dDo +dDo +fPQ +hPz +hPz +hPz +hPz +feJ +hPz +hPz +hPz +iVf +jgr +kSH +kSH +mSJ +jHf +lHl +wLM +vCr +sXI +dkv +fXa +fXa +mTc +mTc +mTc +mTc +mTc +mTc +fXa +mTH +mTH +uEN +uEN +uEN +uEN +mTH +cXz +uEN +cXz +cXz +cXz +cXz +cXz +uEN +mTH +mTH +uEN +uEN +cXz +uEN +mTH +uEN +mTH +mTH +mTH +mTH +eXg +mTc +mTc +mTH +uEN +uEN +mTH +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +"} +(111,1,1) = {" +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +voR +voR +voR +voR +buG +vfs +vfs +iOH +iOH +iOH +iOH +iOH +iOH +iOH +iOH +iOH +dUW +dUW +nJm +lTM +jyf +nOV +vSh +xWC +ujP +tNn +oYu +nzs +ltS +dUW +dUW +iOH +iOH +iOH +iOH +iOH +iOH +iOH +iOH +vfs +vfs +buG +api +kEp +xHA +qYY +aOj +mep +rcG +siE +ghh +nsO +eTv +rzi +ulU +qWv +kFQ +rnO +uSA +kcU +oUG +cCd +pAH +dLg +sLU +jNs +tkM +cCD +tmq +qNH +nfT +tqc +tqc +uEn +tqc +tqc +uTF +tqc +foH +dDo +eAw +idR +btz +hEb +hPB +tln +btz +szv +rmA +vCx +mfJ +kSH +mSJ +gbD +nDL +bfx +kJg +gkx +fXa +mTc +mTc +mTc +mTc +fXa +fXa +mTc +mTc +cRl +mTH +mTH +mTH +uEN +uEN +uEN +cXz +cXz +cXz +cXz +hfy +hfy +hfy +cXz +cXz +uEN +uEN +mTH +mTH +cXz +cXz +uEN +uEN +uEN +mTH +mTH +mTH +mTc +mTc +mTc +mTH +uEN +mTH +mTH +sGO +sGO +sGO +sGO +cyc +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +"} +(112,1,1) = {" +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +voR +voR +voR +voR +buG +vfs +vfs +iOH +iOH +iOH +iOH +iOH +iOH +iOH +iOH +iOH +mlX +dUW +tNO +jly +dpf +jjo +jjo +mVw +gIb +aNy +aNy +nzs +wks +dUW +lww +iOH +iOH +iOH +iOH +iOH +iOH +iOH +iOH +vfs +vfs +buG +api +kEp +mpP +jlR +xph +oCt +hoo +vbV +tPz +fkD +jxf +lCk +fcA +nJh +kFQ +kFQ +dwo +iNm +kFQ +fSx +ndG +qHK +ahN +cfO +cBF +mwG +jBU +sUi +mFy +bNl +tqc +uEn +tqc +qEG +uEn +tqc +tqc +tqc +kSH +dOp +cCc +dYb +hfF +ell +dGS +evX +ujX +jHi +mfJ +kSH +mSJ +fNZ +fCp +pGL +mSJ +aup +hfy +cZe +kZa +mTH +mTH +gty +sfX +fXa +mTc +mTc +mTH +mTH +mTH +uEN +uEN +uEN +uEN +uEN +cXz +cXz +hfy +hfy +hfy +hfy +cXz +cXz +uEN +mTH +uEN +hfy +cXz +uEN +uEN +mTH +mTH +mTH +mTH +mTc +mTc +mTc +mTH +uEN +mTH +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +"} +(113,1,1) = {" +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +voR +voR +voR +voR +buG +vfs +vfs +iOH +iOH +iOH +iOH +iOH +iOH +iOH +iOH +iOH +hVF +aTe +cJO +lTM +gPE +knf +lTM +mTG +aNy +knf +lTM +nzs +kkw +aTe +hVF +iOH +iOH +iOH +iOH +iOH +iOH +iOH +iOH +vfs +vfs +buG +kEp +kEp +neL +qvK +xph +uKz +nBX +mDl +aKJ +aKJ +bgD +jah +vWu +oCT +kFQ +kFQ +kFQ +kFQ +kFQ +kFQ +xaS +xaS +wrp +jgi +xaS +xaS +xaS +tjy +jgi +xaS +hPz +leX +hPz +dDo +oQE +tqc +sWq +sWq +kSH +rKD +rPo +rFx +ojf +pnV +tjG +khP +yjI +piZ +mfJ +kSH +mSJ +qTL +fAs +mSJ +uyB +uRr +cXz +mTH +mTH +mTH +bmA +mTH +tCI +mTc +fXa +rdZ +mTH +mTH +mTH +mTH +mTH +uEN +uEN +uEN +uEN +cXz +uEN +cXz +uEN +cXz +cXz +cXz +uEN +uEN +uEN +cXz +mTH +uEN +uEN +mTH +mTH +mTH +mTH +rdZ +mTc +mTc +gxx +mTH +mTH +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +"} +(114,1,1) = {" +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +voR +voR +voR +voR +voR +buG +vfs +iOH +iOH +iOH +iOH +iOH +iOH +iOH +iOH +iOH +iOH +iOH +dUW +siF +iqv +cxZ +kLc +vYO +hLk +ihJ +bGi +egi +fgF +rLp +dUW +mlX +iOH +iOH +iOH +iOH +iOH +iOH +iOH +iOH +vfs +vfs +buG +kEp +cBf +jlR +aOj +uki +aiI +iWu +msm +fdX +sBd +bgD +yiq +kBI +qJg +fRM +dvH +oVC +jtF +qqG +beZ +xaS +xaS +wbo +wio +ftn +wql +rnJ +xNE +xSx +hHS +pnJ +cac +kSH +kSH +kSH +kSH +kSH +kSH +kSH +dpe +kDj +vVm +wSC +lQx +jBS +kCo +dSB +piZ +gUw +kSH +mSJ +mSJ +mSJ +mSJ +jxT +tUS +uEN +voR +voR +bsm +mTH +mTH +pAh +mTc +dkv +mTH +mTH +uEN +mTH +uEN +mTH +uEN +cXz +hfy +uEN +uEN +uEN +uEN +uEN +uEN +uEN +uEN +uEN +uEN +uEN +uEN +uEN +uEN +uEN +mTH +mTH +mTH +mTH +mTH +mTc +mTc +gxx +mTH +mTH +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +"} +(115,1,1) = {" +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +voR +voR +voR +voR +voR +voR +buG +vfs +iOH +iOH +iOH +iOH +iOH +iOH +iOH +iOH +iOH +iOH +iOH +dUW +dUW +dHC +dUW +dUW +fep +pSp +fep +dUW +dUW +xFg +dUW +dUW +iOH +iOH +iOH +iOH +iOH +iOH +iOH +iOH +iOH +vfs +vfs +buG +kEp +pcT +jlR +aBE +iEF +eyH +jJI +wXF +xEV +toP +pLU +phF +vUY +eos +fRM +esy +mNB +sub +otE +nZO +xaS +oWF +jyX +dhb +uFS +kTB +qaR +pUY +uFS +ayt +jHZ +aTz +nGD +qJJ +qVX +rbp +aOr +kBC +nGD +fvg +pzj +isc +qCE +xLQ +pHO +dSB +wDf +sVx +kSH +kSH +voR +voR +voR +voR +jMM +fXa +voR +voR +voR +voR +mTH +mTH +gZu +fXa +mTc +mTH +mTH +mTH +cXz +cXz +mTH +uEN +mTH +cXz +uEN +uEN +uEN +uEN +uEN +uEN +uEN +uEN +mTH +mTH +uEN +uEN +uEN +uEN +mTH +mTH +mTH +mTH +mTH +mTH +mTc +mTc +gZu +mTH +mTH +mTH +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +"} +(116,1,1) = {" +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +voR +voR +voR +voR +voR +voR +voR +buG +vfs +iOH +iOH +iOH +iOH +iOH +iOH +iOH +iOH +iOH +iOH +iOH +wQn +mlX +hVF +mlX +wje +jgl +rjs +dUV +wje +wQn +hVF +mlX +iOH +iOH +iOH +iOH +iOH +iOH +iOH +iOH +iOH +iOH +vfs +vfs +buG +kEp +jFW +kQQ +qaO +ucv +mep +ssy +xAA +mEx +jGs +eTv +qOT +nmt +rpv +fRM +jNv +sub +gSe +gCQ +iva +xaS +iAt +gtP +kkS +xVt +xkD +bpu +xkD +jbR +edI +vCi +kDD +bmm +qWm +ogo +pOu +bbO +rlN +bmm +xSz +oNj +nPg +rie +rCG +eBW +yjI +yjI +cVD +xia +kSH +voR +voR +voR +bsT +sPN +voR +voR +voR +voR +voR +voR +mTH +mTH +mTc +mTc +qCz +mTH +mTH +cXz +uEN +mTH +mTH +uEN +uEN +mTH +mTH +cXz +uEN +mTH +mTH +mTH +mTH +uEN +mTH +mTH +uEN +mTH +mTH +mTH +mTH +mTH +mTH +mTH +qCz +mTc +mTc +mTH +mTH +mTH +mTH +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +"} +(117,1,1) = {" +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +voR +voR +voR +voR +voR +voR +voR +voR +buG +buG +iOH +iOH +iOH +iOH +iOH +iOH +iOH +iOH +iOH +iOH +iOH +iOH +iOH +iOH +iOH +uIa +rFF +jRc +dbV +uIa +iOH +iOH +iOH +iOH +iOH +iOH +iOH +iOH +iOH +iOH +iOH +iOH +iOH +iOH +buG +buG +kEp +kEp +iSg +dmw +xph +cPf +fRM +xhX +sqP +bNx +xEF +tlp +xYV +fKT +fRM +dbM +aNY +dbM +wCU +wCU +xaS +rbd +ueO +luq +hdO +cUx +pOS +rSs +hdO +psQ +kDt +rvh +kSH +dcG +dcG +vPx +dcG +dcG +kSH +bMy +qnX +wEg +qQL +qNd +bSX +tHt +yjI +eHd +rAL +kSH +voR +voR +joW +mbX +mye +rRL +peM +voR +voR +voR +mTH +bmA +mTH +fXa +mTc +mTH +mTH +mTH +mTH +mTH +mTH +mTH +uEN +mTH +mTH +uEN +uEN +mTH +mTH +uEN +mTH +mTH +cXz +uEN +uEN +mTH +mTH +mTH +mTH +mTH +mTH +mTH +mTH +mTH +mTc +mTc +mTH +mTH +mTH +mTH +mTH +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +"} +(118,1,1) = {" +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +voR +voR +voR +voR +voR +voR +voR +voR +buG +vfs +iOH +iOH +iOH +iOH +iOH +iOH +iOH +iOH +iOH +iOH +iOH +iOH +iOH +iOH +iOH +uIa +bui +tFl +lCr +uIa +iOH +iOH +iOH +iOH +iOH +iOH +iOH +iOH +iOH +iOH +iOH +iOH +iOH +iOH +vfs +buG +api +kEp +pzw +aOj +aOj +xph +kJp +aKJ +vWu +mBF +pPU +pJD +bNB +ssj +iIh +ciw +nqW +jaq +lYb +ipj +xaS +eQl +dMC +eCU +uCp +mRR +mRR +cmz +oyZ +aNZ +iPR +cEv +kSH +kSH +kSH +kSH +kSH +kSH +kSH +kSH +lAv +eob +qKK +ttn +atC +kSH +cQj +wcb +kSH +kSH +maP +nop +wQp +vCF +rvB +uEN +cXz +eXc +uct +uEN +mTH +xQX +gZu +fXa +mTc +mTH +mTH +mTH +mTH +mTH +mTH +mTH +mTH +mTH +mTH +mTH +mTH +mTH +mTH +mTH +mTH +mTH +mTH +mTH +mTH +mTH +mTH +mTH +mTH +mTH +mTH +mTH +mTH +uEN +mTc +mTc +gZu +mTH +mTH +qnr +mTH +mTH +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +"} +(119,1,1) = {" +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +voR +voR +voR +voR +voR +voR +voR +voR +buG +vfs +vfs +iOH +iOH +iOH +iOH +iOH +iOH +iOH +iOH +iOH +iOH +iOH +iOH +iOH +iOH +wje +avM +jhG +oBx +wje +iOH +iOH +iOH +iOH +iOH +iOH +iOH +iOH +iOH +iOH +iOH +iOH +iOH +vfs +vfs +buG +api +kEp +fWI +aOj +cPf +fRM +fRM +lwD +sPi +pLD +ddL +rUj +gUs +ryF +iTn +mOq +rwS +aFO +ykp +joG +uFr +tYf +fwJ +gzk +kjE +gzk +gQA +vFo +ogs +vFo +uwW +bVH +kSH +qPr +tUb +eAW +shb +iOP +kSH +pBz +tUb +eXu +eXu +dmX +ikg +kSH +lUw +iEd +nkm +kSH +eoZ +aKK +bbF +bPY +usA +mTH +mTH +snQ +uEN +mTH +mTH +mTH +voR +mTc +mTc +qCz +mTH +mTH +mTH +mTH +mTH +mTH +mTH +mTH +mTH +mTH +mTH +mTH +mTH +mTH +mTH +mTH +mTH +mTH +mTH +mTH +mTH +mTH +mTH +mTH +mTH +mTH +uEN +iuw +mTc +mTc +gxx +mTH +bsm +voR +voR +mTH +mTH +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +"} +(120,1,1) = {" +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +voR +voR +voR +voR +voR +voR +voR +voR +buG +vfs +vfs +iOH +iOH +iOH +iOH +iOH +iOH +iOH +iOH +iOH +iOH +iOH +iOH +iOH +vfs +wje +dyd +vzo +wPI +wje +vfs +vfs +vfs +iOH +iOH +iOH +iOH +iOH +iOH +iOH +iOH +iOH +vfs +vfs +vfs +buG +api +kEp +kEp +hqg +kEp +kEp +rJy +fGh +xbr +eil +ros +nLD +aPD +fRM +fRM +kiP +uyi +ktW +uUV +dKV +vdL +sWH +gcV +oJc +hdO +cuC +sxM +dhg +hdO +ppo +okn +lyk +lKw +wVg +lRC +emz +qDU +eCe +cfq +ati +sAW +lRC +cEi +kNQ +rsN +kSH +hrr +oiH +lCU +xBf +uuI +fXa +xir +cXz +mTH +mTH +mTH +mTH +mTH +mTH +mTH +voR +voR +mTc +mTc +mTH +mTH +mTH +mTH +mTH +mTH +mTH +mTH +mTH +mTH +mTH +mTH +mTH +mTH +mTH +mTH +mTH +mTH +mTH +mTH +mTH +mTH +mTH +mTH +mTH +bmA +mTH +uEN +cXz +mTc +mTc +qDV +mTH +voR +voR +voR +voR +mTH +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +"} +(121,1,1) = {" +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +voR +voR +voR +voR +voR +voR +voR +voR +buG +vfs +vfs +vfs +vfs +iOH +iOH +iOH +iOH +iOH +iOH +iOH +iOH +iOH +iOH +vfs +vfs +wje +eVO +gti +loO +wje +vfs +vfs +vfs +vfs +vfs +vfs +iOH +iOH +iOH +iOH +iOH +vfs +vfs +vfs +vfs +buG +api +kEp +bfr +fwr +efB +kEp +fRM +fRM +fRM +fKH +rVh +oSY +rtM +fRM +nHn +iiS +tKi +ecs +hlp +nqW +adW +yav +jno +wGw +vvq +hdr +hdr +gzk +ujc +vFo +aes +wkB +xAG +udx +clN +aze +uQA +qFk +xAG +hPL +lrA +fEn +sKn +apa +awp +kSH +kha +qXN +tVV +rfu +rye +xTw +dCi +cXz +uEN +hyN +hyN +hyN +hyN +mTH +mTH +rRd +sfX +mTc +mTc +pXH +mTH +qtR +mTH +mTH +eYI +mTH +mTH +eYI +mTH +gAT +fXa +fXa +tgR +mTc +jfJ +mTH +eYI +mTH +mTH +eYI +mTH +mTH +eYI +mTH +mTH +dPH +uEN +pXH +mTc +mTc +pXH +gxx +voR +voR +voR +voR +mTH +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +"} +(122,1,1) = {" +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +voR +voR +voR +voR +voR +voR +voR +voR +voR +buG +vfs +vfs +vfs +vfs +vfs +vfs +iOH +iOH +iOH +iOH +tKy +tKy +uIa +uIa +tKy +tKy +wje +cNr +glL +iGy +wje +kcZ +kcZ +kcZ +kcZ +kcZ +kcZ +kcZ +kcZ +kcZ +ymg +ymg +ymg +ymg +buG +buG +buG +api +kEp +dTO +gqQ +nTw +kEp +vha +mWy +cNv +dJU +qoR +uwC +siR +pPq +usH +tvx +dtY +svk +kNI +pjT +xaS +tBh +fqL +tDt +iHn +pQD +gzk +uYA +lCl +eYu +mUD +lUr +kSH +ayh +ikg +xsJ +bdb +qJd +ttn +gxl +xLr +eBC +fEK +qzP +pcb +kSH +bro +mGz +eio +kSH +uWa +dkv +dkv +xTw +fXa +fXa +mTc +mTc +mTc +fXa +fXa +fXa +mTc +mTc +mTc +mTc +mTc +mTc +mTc +fXa +dkv +mTc +mTc +mTc +fXa +fXa +dkv +mTc +mTc +mTc +mTc +fXa +mTc +dkv +fXa +mTc +mTc +mTc +mTc +fXa +mTc +mTc +mTc +mTc +mTc +mTc +mTc +gxx +voR +voR +voR +voR +bsm +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +"} +(123,1,1) = {" +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +voR +voR +voR +voR +voR +voR +voR +voR +voR +buG +vfs +vfs +vfs +vfs +vfs +vfs +vfs +vfs +vfs +buG +tKy +hsA +xsI +nVK +lVP +gxV +jSB +iUq +wVr +ofE +wje +kcZ +kcZ +kcZ +kcZ +kcZ +kcZ +kcZ +kcZ +kcZ +ymg +ymg +ymg +dbM +dbM +dbM +dbM +dbM +kEp +cEa +jfp +hqw +kEp +rfJ +wdl +ukZ +wef +grJ +abz +few +wfX +aew +ufM +veP +xks +dWe +xks +xaS +hdR +jno +luq +hdO +jYz +mvO +mvO +hdO +oOB +kfh +tkx +cqL +cqL +fdo +gMB +gMB +gMB +gMB +gMB +vWq +vWq +vWq +cqL +cqL +cqL +cqL +cqL +cqL +cqL +cqL +jhW +dkv +fXa +fXa +mTc +fXa +fXa +fXa +mTc +mTc +mTc +mTc +mTc +mTc +dkv +fXa +mTc +mTc +mTc +fXa +fXa +fXa +mTc +mTc +mTc +mTc +mTc +mTc +mTc +dkv +dkv +fXa +mTc +mTc +mTc +mTc +mTc +fXa +dkv +mTc +mTc +mTc +mTc +mTc +mTc +mTc +gxx +voR +voR +voR +voR +voR +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +"} +(124,1,1) = {" +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +buG +buG +buG +buG +buG +buG +buG +buG +buG +buG +buG +tKy +gpk +mnq +hRc +mnq +pea +tex +eTe +xba +rJA +wje +kcZ +kcZ +kcZ +kcZ +dzh +wtq +dzh +aSj +kcZ +ymg +ymg +ymg +dbM +vxP +dbM +vxP +dbM +kEp +kEp +kEp +kEp +kEp +wZR +hlp +ecs +mJq +xCU +leC +orm +dbM +dbM +vRU +dbM +xks +iLW +wdJ +xaS +gOK +trF +xpJ +nUS +omx +omx +jRH +nUS +ubX +ezi +jOI +cqL +cqL +ffj +fRL +kXb +usP +pPg +ovF +stM +stM +stM +dKA +pPg +pPg +imV +pPg +pPg +boo +pov +mTc +bsm +mTH +mTH +kZa +kZa +kZa +kZa +mTH +mTH +gty +pXH +mTc +fXa +sfX +uEN +dPH +mTH +mTH +eYI +mTH +mTH +eYI +mTH +pCQ +fXa +kob +mTc +mTc +nsA +mTH +eYI +mTH +mTH +eYI +mTH +bmA +eYI +mTH +mTH +eYI +mTH +pXH +mTc +mTc +pXH +gxx +qXS +voR +voR +voR +voR +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +"} +(125,1,1) = {" +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +buG +mhh +mhh +mhh +mhh +ebk +ebk +ebk +ebk +ebk +ebk +tKy +hgP +cBy +hRc +whb +dLO +uIa +pCj +juQ +yjc +wje +kcZ +kcZ +tKy +xpV +ndN +dzh +dzh +dzh +vUe +qVC +gDi +dbM +dbM +pyK +dbM +pyK +dbM +hbR +wNc +grf +sRl +dbM +afx +dJU +hHU +rsT +oAI +mJq +ofC +dbM +dou +nqW +pet +xks +oQg +iLW +xaS +pEy +bxr +dOJ +iKv +cDg +dCL +dCL +bdN +sPC +mOU +exF +cqL +aJo +ffj +dkK +kiN +fSa +evH +ame +ame +ame +ame +sXK +bCU +evH +fSa +kiN +kXb +boo +mUe +mTH +mTH +mTH +mTH +mTH +cXz +uEN +mTH +mTH +mTH +mTH +tCI +mTc +mTc +uEN +cXz +mTH +mTH +mTH +mTH +mTH +mTH +mTH +mTH +mTH +mTH +mTH +mTH +mTH +mTH +mTH +mTH +mTH +mTH +mTH +mTH +mTH +mTH +mTH +mTH +mTH +mTH +mTH +mTc +mTc +vwc +uEN +mTH +voR +voR +voR +voR +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +"} +(126,1,1) = {" +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +voR +sGO +sGO +voR +voR +voR +voR +voR +voR +voR +voR +voR +buG +mhh +mhh +mhh +mhh +ebk +ewm +nHD +okO +rvb +ebk +tKy +tKy +whP +mnq +kqr +tKy +tKy +qtM +czy +lXI +wje +qzO +mjR +bQm +qvF +hRc +dzh +kcZ +dzh +vUe +qVC +tgG +dbM +mnI +xEk +olV +eYM +dbM +vyn +pBQ +kwB +aTP +hgN +wNu +mJq +jDw +xJG +qDR +nqW +sIw +dbM +wHe +hlp +hoq +whh +ssN +qpF +xaS +jFH +wrb +irZ +kGm +xJg +grC +ybU +fqG +bJb +iLw +ctO +cqL +jin +sRv +fRL +tMl +ame +ame +ame +fNf +sQw +ame +ame +ame +ame +ame +eaw +eaw +boo +tnP +cXz +cXz +hfy +uEN +mTH +mTH +mTH +mTH +mTH +mTH +mTH +pAh +mTc +mTc +iuw +mTH +mTH +mTH +mTH +mTH +mTH +mTH +mTH +mTH +mTH +mTH +mTH +mTH +mTH +mTH +mTH +mTH +mTH +mTH +mTH +mTH +mTH +mTH +mTH +mTH +mTH +mTH +qCz +mTc +mTc +fbz +cXz +uEN +uEN +voR +voR +qXS +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +"} +(127,1,1) = {" +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +voR +voR +sGO +voR +voR +voR +voR +voR +voR +voR +voR +voR +buG +mhh +mhh +mhh +mhh +ebk +qSv +sKZ +kQV +rVz +ebk +aSj +tKy +tKy +kDs +tKy +tKy +iIW +sgl +tzx +bgg +wvM +tCV +vMa +fiW +bWk +gtx +aSj +ymg +ymg +ymg +kQu +joI +oMf +euP +dQY +vIc +vIc +nrv +vIc +qNr +fxx +ttx +dbM +ucP +vLl +kKd +ofe +qGZ +dfg +sIw +dbM +vTT +dpm +lbE +xks +xks +aEl +xaS +dHx +ioc +lHt +aKx +boN +gfQ +wOp +ioc +hzr +ktV +sqv +cqL +ffj +qvN +dKA +ame +ame +fJW +ame +iPv +pCG +ame +tgm +cWl +sQw +qUq +qUq +eaw +boo +sKp +uEN +mTH +mTH +mTH +uEN +cXz +mTH +hfy +cXz +mTH +mTH +gZu +fXa +mTc +uEN +mTH +mTH +mTH +mTH +uEN +uEN +mTH +uEN +cXz +uEN +mTH +mTH +mTH +mTH +uEN +uEN +mTH +mTH +mTH +mTH +mTH +mTH +mTH +mTH +mTH +mTH +mTH +mTH +mTc +mTc +gZu +uEN +uEN +mTH +mTH +qnr +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +"} +(128,1,1) = {" +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +voR +voR +voR +sGO +voR +voR +voR +voR +voR +voR +voR +voR +voR +buG +mhh +mhh +mhh +mhh +ebk +efZ +coX +ttr +mNc +ebk +wnQ +nwg +snC +kNn +xMQ +dJu +hLL +kmu +ePE +pHs +ePE +vli +xSp +tKy +xNm +wXo +tKy +ymg +ymg +ymg +vxW +gfz +dbM +dbM +pyK +dbM +vuC +dbM +nca +diI +rhf +fzG +dbM +jef +wdv +dbM +dbM +dbM +aVi +tPi +dbM +nPP +fpi +uop +xks +hPw +urE +xaS +oIv +vJt +wjo +msy +qWX +xpJ +xpJ +auU +ljb +oKS +iZA +cqL +wYO +dkK +pPg +frA +awi +jbh +uHe +jbh +jbh +mzt +aoe +jbh +loq +gxT +qUq +kXb +boo +tnP +uEN +cXz +hfy +mTH +mTH +mTH +mTH +uEN +mTH +mTH +mTH +mTH +dkv +mTc +mTH +mTH +mTH +mTH +cXz +uEN +uEN +mTH +mTH +mTH +mTH +mTH +mTH +uEN +mTH +mTH +mTH +mTH +mTH +mTH +mTH +uEN +mTH +mTH +mTH +mTH +mTH +mTH +mTH +mTc +mTc +cXz +cCm +uEN +mTH +mTH +mTH +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +"} +(129,1,1) = {" +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +voR +voR +voR +voR +sGO +voR +voR +voR +voR +voR +voR +buG +buG +buG +buG +mhh +mhh +mhh +mhh +ebk +mEN +sQO +coX +pdp +ebk +wmK +cSp +lKv +fQe +dWo +vli +eLM +xaB +kcZ +kcZ +dzh +aSj +kcZ +kcZ +iBw +mDr +kcZ +ymg +ymg +ymg +vxW +fZl +gfA +dbM +dtB +dbM +dtB +dbM +dbM +dbM +dbM +dbM +dbM +had +aZp +kTI +tzG +dbM +vpy +sCw +dbM +dbM +dbM +dbM +xks +xks +xXY +xaS +xaS +kVX +nVm +wDw +tkC +dsG +fMu +upi +efu +bDe +wzf +cqL +ffj +dkK +kXb +frA +awi +rSg +ame +tqN +fLu +ame +qsm +aEq +mol +bXV +qUq +kXb +boo +mUe +cXz +uEN +mTH +mTH +cXz +hfy +uEN +mTH +mTH +mTH +mTH +mTH +mTc +fXa +qCz +mTH +mTH +mTH +mTH +mTH +mTH +mTH +uEN +uEN +uEN +uEN +uEN +uEN +cXz +uEN +mTH +mTH +uEN +uEN +mTH +uEN +mTH +mTH +mTH +mTH +mTH +bmA +qCz +mTc +mTc +uEN +uEN +mTH +mTH +mTH +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +"} +(130,1,1) = {" +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +voR +voR +voR +voR +sGO +voR +voR +voR +voR +voR +voR +buG +mhh +ebk +ebk +ebk +ebk +ebk +ebk +ebk +ocw +ocw +vvE +ebk +ebk +tKy +mDx +uIa +lon +ruh +tKy +tKy +kcZ +kcZ +kcZ +kcZ +kcZ +kcZ +kcZ +iBw +fWG +wyB +ymg +ymg +ymg +vxW +wmu +fAH +dbM +dbM +dbM +dbM +dbM +gad +nRy +eZa +oAk +dbM +hxS +tPi +dbM +gBX +dbM +axJ +hSd +dbM +bre +hMg +hnw +mqa +xks +uqt +fTS +xaS +xaS +xaS +xaS +tIj +vdL +tIj +xaS +xaS +cEB +xaS +cqL +ffj +gHi +erM +ame +ame +jZE +ame +unY +ame +ame +smB +smB +egg +qUq +qUq +eaw +boo +vOQ +uEN +cXz +cXz +mTH +mTH +mTH +mTH +mTH +mTH +mTH +mTH +gZu +mTc +mTc +mTH +mTH +mTH +uEN +uEN +mTH +uEN +uEN +uEN +uEN +uEN +uEN +uEN +uEN +uEN +uEN +uEN +uEN +uEN +uEN +uEN +uEN +uEN +mTH +mTH +mTH +mTH +mTH +mTH +mTc +mTc +gZu +mTH +bsm +mTH +mTH +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +"} +(131,1,1) = {" +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +voR +voR +voR +voR +sGO +voR +voR +voR +voR +voR +voR +buG +mhh +ebk +hRZ +rST +kvG +bJq +ebk +kmX +ygZ +lEY +nQb +qhy +gUN +dMB +jUj +jEq +wXX +kvJ +uCy +tKy +kcZ +kcZ +kcZ +kcZ +kcZ +kcZ +jkh +ykv +rjl +pBD +ymg +ymg +ymg +fTc +aFl +aFl +aFl +qoI +qVC +vaj +dbM +raZ +nqW +txj +nqW +dIv +tKi +vhI +dbM +sWL +urS +axJ +nqW +hEZ +nqW +hlp +dJU +pBO +xks +uqt +iLW +rGZ +qVz +xks +mWH +ooZ +iSa +fHz +myV +fFr +mkK +kXb +cqL +oXV +bKx +fRL +tMl +ame +ame +ame +fmY +jbh +ame +eWk +eWk +ame +ame +kXb +kXb +boo +mUe +cXz +uEN +uEN +cXz +hfy +mTH +mTH +mTH +mTH +mTH +mTH +pAh +mTc +mTc +mTH +mTH +mTH +uEN +mTH +mTH +uEN +cXz +hfy +mTH +cXz +cXz +uEN +uEN +mTH +mTH +mTH +uEN +uEN +uEN +uEN +uEN +mTH +mTH +mTH +mTH +mTH +mTH +mTH +mTc +mTc +gxx +mTH +mTH +mTH +mTH +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +"} +(132,1,1) = {" +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +voR +voR +voR +voR +voR +sGO +sGO +voR +voR +voR +voR +voR +voR +buG +mhh +ebk +wiV +kQV +ttr +cjX +keP +pfR +aHN +mHn +nJg +aHN +dCb +sMD +ruB +aeW +nJg +aHN +bPZ +tKy +tKy +kcZ +kcZ +kcZ +kcZ +kcZ +tKy +kDZ +asb +tKy +ymg +ymg +gnG +riC +rci +xgH +wrw +nSC +qVC +oxs +dbM +rCY +jWI +iJJ +lVM +dbM +gPH +fnM +dbM +dbM +dbM +vEJ +pjT +dbM +jzF +sxf +yaV +oXi +xks +tMh +fMP +fMP +wfm +xks +oDL +cER +kEN +vSw +vNm +fFr +mkK +kXb +cqL +mqX +ffj +fRL +kiN +qAA +cNZ +ame +weN +ame +ame +dMe +dMe +qAA +qAA +kiN +pPg +boo +mUe +uEN +mTH +mTH +mTH +mTH +mTH +mTH +mTH +mTH +mTH +mTH +fRd +fXa +mTc +rdZ +mTH +mTH +mTH +mTH +mTH +uEN +uEN +mTH +uEN +mTH +mTH +uEN +uEN +uEN +mTH +mTH +cXz +cXz +cXz +uEN +uEN +mTH +uEN +uEN +mTH +mTH +mTH +rdZ +mTc +mTc +gxx +mTH +mTH +mTH +mTH +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +"} +(133,1,1) = {" +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +voR +voR +sGO +sGO +voR +voR +voR +sGO +sGO +voR +voR +voR +voR +voR +voR +voR +buG +mhh +ebk +hkv +rrz +cjX +mfz +ocw +hBK +aeW +klm +kFN +gIP +jgI +dJw +wCz +aju +irM +aHN +fpS +dhj +ebk +vNR +lUH +lUH +fVp +kcZ +jkh +hZE +mDr +pBD +ymg +tGH +akt +dlI +tGH +tGH +tGH +tGH +qVC +avm +dbM +dbM +dbM +dbM +dbM +dbM +gbo +hlK +ehV +pPq +iWL +tvx +frV +dbM +dbM +dbM +dbM +dbM +xks +wqW +uPR +uPR +uPR +cSM +bLO +aBT +ykE +rsA +aUi +fnH +ghd +hnj +cqL +cqL +ffj +fRL +pPg +fYa +kXb +kXb +jGa +pPg +eHk +cBp +ukq +cUP +dcW +kXb +pPg +boo +vOQ +mTc +mTH +mTH +bsm +hyN +hyN +hyN +hyN +mTH +bmA +fRd +unf +dkv +mTc +mTc +mTH +mTH +mTH +uEN +cXz +cXz +cXz +uEN +uEN +uEN +cXz +cXz +cXz +cXz +uEN +uEN +uEN +uEN +uEN +uEN +uEN +mTH +mTH +mTH +mTH +mTH +mTH +mTc +mTc +mTc +mTH +mTH +mTH +mTH +mTH +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +"} +(134,1,1) = {" +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +voR +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +voR +voR +voR +sGO +sGO +sGO +sGO +sGO +sGO +voR +voR +voR +voR +voR +voR +voR +voR +buG +mhh +ebk +oUz +wrs +aOR +oNy +ocw +fTT +aHN +jGS +qkW +jLi +sIN +vLJ +lkx +sxs +fMD +iHG +jgT +pXu +gde +rdv +ptp +hhZ +bAq +kcZ +jkh +pgT +rMn +tKy +tGH +tGH +pXn +tGH +tGH +whm +fex +tGH +lgF +oxs +dbM +fcz +wTt +wTt +nSo +dbM +dAF +qJK +jKg +euv +cyb +rKF +hsJ +qTb +wwl +wwl +wwl +wwl +wwl +wwl +wwl +ogp +iLW +xks +oCC +lWF +edR +nAg +qej +fFr +kXb +mkK +ijG +cqL +sgP +cqL +cqL +cqL +cqL +cqL +lIN +lQj +wnt +cBp +cBp +lQj +cqL +cqL +cqL +cqL +cqL +jkP +mTc +fXa +mTc +mTc +mTc +mTc +mTc +mTc +mTc +mTc +fXa +mTc +mTc +mTc +mTH +mTH +mTH +uEN +cXz +uEN +mTH +mTH +cXz +cXz +cXz +mTH +hfy +hfy +uEN +uEN +uEN +cXz +hfy +cXz +uEN +uEN +mTH +mTH +mTH +mTH +mTH +ozl +mTc +mTc +mTH +mTH +mTH +mTH +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +"} +(135,1,1) = {" +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +voR +voR +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +voR +sGO +sGO +voR +voR +sGO +sGO +voR +sGO +sGO +voR +voR +voR +voR +voR +voR +buG +buG +buG +buG +buG +ebk +ebk +ebk +ebk +ebk +ebk +ebk +rMm +aHN +nvC +nfr +crl +wKQ +dVF +izb +eXr +pxM +daP +aeW +tAZ +vTo +aHN +mya +vDh +hHl +kcZ +kcZ +uAD +hSI +tKy +eUn +vZJ +azd +vzl +tie +giw +qzl +tGH +tMr +uLV +dbM +ntp +iHt +jEv +xHa +pXN +dQC +sub +gKv +dbM +dbM +dbM +dbM +dbM +dbM +mPX +dCs +wwl +hPw +hPw +jKI +ewU +xks +xks +qwB +udy +uLF +aHQ +vNm +fFr +fFr +nwq +gwG +xQO +gwG +gwG +gwG +gwG +fnH +ogj +kQH +guS +hyb +cBp +ncb +nRW +uNn +qeB +nJS +cqL +mah +mTc +mTc +mTc +mTc +fXa +fXa +fXa +mTc +mTc +mTc +mTc +mTc +mTc +mTc +dUA +mTH +mTH +uEN +uEN +uEN +uEN +cXz +cXz +hfy +cXz +mTH +mTH +uEN +hfy +cXz +uEN +uEN +uEN +mTH +mTH +uEN +uEN +mTH +mTH +mTH +mTH +mTH +mTc +mTc +mTc +mTH +mTH +mTH +mTH +mTH +sGO +sGO +sGO +vQr +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +"} +(136,1,1) = {" +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +voR +voR +voR +voR +voR +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +voR +voR +voR +voR +voR +sGO +sGO +voR +voR +voR +sGO +sGO +sGO +sGO +voR +voR +voR +sGO +voR +voR +voR +voR +voR +voR +buG +oRp +ydi +ydi +ydi +ydi +cDi +kap +ebk +aFn +rmP +ebk +iRt +sAc +ebk +ebk +ebk +ebk +ebk +ebk +uDy +qMf +ebk +cxs +ebk +ebk +ebk +mgV +vDh +fpS +kcZ +tKy +czE +aWY +tKy +iTM +cMG +ifA +xbI +xbI +dDH +lkg +tGH +qVC +gDi +dbM +lFa +wKu +rUI +yfE +dbM +tcg +sIw +siR +dbM +uei +aly +dOL +eGI +dbM +mcE +bKz +wwl +xks +xks +xks +xks +xks +fzF +hhG +shW +mXN +hHw +peH +nJS +fFr +fFr +fFr +fFr +fFr +fFr +fFr +fFr +fFr +fFr +bqr +gbv +fbm +ncb +qeB +sHP +sHP +nJS +cBp +cqL +mTc +bsm +mTH +mTH +mTH +kZa +kZa +kZa +kZa +mTH +mTH +gty +pXH +mTc +mTc +fXa +mTH +mTH +uEN +cXz +cXz +cXz +uEN +uEN +cXz +cXz +cXz +uEN +cXz +uEN +uEN +uEN +mTH +mTH +mTH +uEN +uEN +uEN +mTH +mTH +mTH +mTH +mTH +mTc +mTc +mTc +mTH +mTH +mTH +bmA +mTH +mTH +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +"} +(137,1,1) = {" +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +voR +voR +voR +voR +voR +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +voR +voR +voR +voR +voR +sGO +voR +sGO +sGO +sGO +voR +voR +voR +voR +voR +sGO +sGO +voR +voR +voR +voR +voR +voR +buG +oRp +ydi +qED +mTZ +ydi +rBi +nXM +nSW +wcs +fXS +dfr +sMD +aeW +bvL +ebk +oNN +nOW +soj +ebk +oTo +bRN +ebk +cGR +pNZ +qUp +fvt +uJa +ajN +kWI +huC +gCF +xzu +cKc +sJJ +rby +rHr +cmD +cuv +jAL +rhE +dFN +tGH +qVC +tGH +dbM +dbM +dbM +dbM +dbM +dbM +dVm +sIw +jTb +onx +nqW +hlp +dJU +pBO +dbM +lmH +qoZ +wwl +xks +fMN +hhG +lVk +yce +ueI +pCN +not +xXz +nWt +elX +ncb +his +sHP +sHP +ppC +ppC +lGj +tdl +sHP +sHP +kYh +sHP +hLJ +qWN +cJW +fhA +xBE +gTR +cBp +cBp +cqL +voR +mTH +mTH +mTH +mTH +mTH +uEN +uEN +uEN +mTH +mTH +mTH +gty +mTc +dkv +eSN +mTH +mTH +mTH +uEN +uEN +uEN +uEN +uEN +cXz +cXz +uEN +cXz +cXz +cXz +uEN +mTH +uEN +uEN +mTH +uEN +uEN +mTH +mTH +mTH +mTH +mTH +mTH +rdZ +mTc +mTc +gxx +mTH +mTH +mTH +mTH +mTH +mTH +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +"} +(138,1,1) = {" +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +voR +voR +voR +voR +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +voR +voR +voR +sGO +sGO +sGO +voR +voR +voR +voR +voR +voR +voR +sGO +voR +voR +voR +voR +voR +voR +voR +buG +oRp +ydi +qjQ +axY +jQO +rJn +rJn +ebk +hZe +hIy +fjH +aeW +xCj +fOv +ebk +paJ +nOW +cxM +ntn +qgY +pys +vHu +kgN +aHN +iWh +aNX +eZo +uUw +ttr +tDF +oJg +pHz +sFh +tyv +uqe +uEM +clv +pzD +nks +cHG +gOR +tGH +fjz +tGH +bOg +rnf +tKy +olr +oWe +nfa +evW +vLs +vLs +dbM +tOA +xRu +koT +fcc +dbM +xks +xks +wwl +xks +pfd +pCN +mlA +pCn +rTo +pCN +qPG +tDi +uJv +hkq +xmz +bHJ +rSC +beQ +qQh +xoU +hmJ +htO +qxo +lTk +ehn +koG +wTX +lTJ +lYC +ttP +wUc +bFB +tVi +iiO +cqL +voR +mTH +mTH +bmA +mTH +uEN +uEN +cXz +voR +mTH +mTH +mTH +pAh +mTc +fXa +mTH +mTH +mTH +mTH +uEN +hfy +cXz +uEN +mTH +cXz +cXz +cXz +uEN +cXz +cXz +uEN +uEN +cXz +cXz +cXz +uEN +uEN +mTH +uEN +mTH +mTH +mTH +mTH +qXS +mTc +mTc +gxx +mTH +mTH +uEN +mTH +mTH +mTH +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +"} +(139,1,1) = {" +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +voR +voR +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +voR +voR +voR +voR +voR +voR +voR +sGO +voR +voR +voR +voR +voR +voR +voR +buG +oRp +ydi +vJZ +bzK +kpg +nkR +rrh +ebk +eaN +tjt +fjH +nJg +lhz +hoY +ebk +gcC +nOW +myc +ebk +aMS +xos +ebk +sXf +aHN +oTN +sQF +cNL +kUH +pTI +kcZ +tKy +gfU +pGY +tKy +mcN +wZh +mLD +tcr +fIl +mOb +nrs +hwO +hwO +lYi +hwO +vCl +iLA +cHp +iKX +fkv +jJl +gqn +rhn +dbM +dbM +dbM +dbM +dbM +dbM +fNt +xks +gNA +xks +cti +hhG +fNF +pCn +owk +fgU +xEN +tDi +uTT +bvJ +bRt +fFr +fFr +qjx +jnp +fFr +tSB +mnk +uNE +nuj +dJh +pZZ +wwB +uRk +iQu +dwW +tmc +qWN +bSL +eZl +cqL +voR +mTH +mTH +mTH +mTH +uEN +lAq +voR +voR +voR +mTH +mTH +gZu +msU +mTc +mTH +mTH +mTH +mTH +uEN +uEN +uEN +cXz +uEN +uEN +cXz +cXz +cXz +hfy +cXz +uEN +uEN +cXz +cXz +hfy +uEN +uEN +mTH +uEN +mTH +mTH +mTH +mTH +mTH +mTc +vbz +gZu +mTH +uEN +uEN +uEN +qXS +mTH +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +"} +(140,1,1) = {" +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +voR +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +voR +voR +sGO +sGO +sGO +voR +voR +voR +voR +sGO +sGO +voR +sGO +sGO +sGO +voR +voR +voR +voR +voR +voR +sGO +sGO +voR +voR +voR +voR +voR +voR +voR +buG +oRp +ydi +qTC +ovh +ydi +sYg +sYg +sYg +sYg +sYg +ebk +ccF +ocw +ocw +ebk +ebk +ebk +ebk +ebk +xBW +trG +ebk +ebk +eOQ +ebk +ebk +ufd +aXH +cxE +kcZ +jkh +sXZ +mDr +tKy +jEO +upN +ogB +nKt +lQJ +lOf +ygn +iFB +cUD +kWX +ogB +rHt +tyv +pNK +uND +mPv +jFg +xgo +vnC +rEI +soc +rEI +osA +rEI +rEI +nnk +xks +opP +xks +nfa +nfa +nfa +nfa +qxm +pCN +nhw +utz +gPo +mjV +shW +wKE +ofa +qHw +qHw +dlv +hTF +qXe +lec +eAm +jpJ +qXT +dYo +hVi +tvK +fnq +cpK +mrI +qFT +tRf +cqL +voR +qXS +mTH +mTH +mTH +voR +voR +voR +voR +voR +voR +mTH +mTH +mTc +mTc +qCz +mTH +mTH +mTH +cXz +cXz +uEN +uEN +uEN +mTH +uEN +mTH +uEN +uEN +uEN +uEN +uEN +uEN +uEN +uEN +uEN +mTH +mTH +uEN +mTH +mTH +mTH +mTH +qCz +mTc +mTc +mTH +uEN +uEN +cXz +sYI +mTH +mTH +mTH +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +"} +(141,1,1) = {" +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +voR +voR +voR +voR +voR +sGO +sGO +voR +voR +voR +voR +voR +voR +voR +voR +voR +sGO +sGO +voR +voR +voR +voR +sGO +sGO +voR +voR +voR +voR +voR +voR +voR +voR +buG +oRp +ydi +wJJ +nFE +mhF +sqS +wbn +mMc +bkm +sYg +fRH +bYQ +qpR +eHe +lZE +vIU +ebk +rqy +liN +loP +pza +tvF +jyz +klm +axn +ebk +aZT +coX +amn +kcZ +kcZ +ykv +fWG +rgv +rgv +rgv +rgv +rgv +rgv +xNW +ifT +rgv +rgv +rgv +rgv +rgv +rgv +iDg +uWA +qxm +gCY +lts +xRF +klH +oNl +rnL +ttm +jOD +mEm +rVO +xks +wwl +xks +pRR +pRR +pRR +wcW +vrN +fEX +xEN +tDi +cqA +bvJ +imu +wKE +pZb +vmf +rqE +dst +puo +udo +rEx +wJI +fFr +qjx +qjx +fFr +kPj +iUe +iUe +xzI +sPG +suU +cqL +voR +mTH +mTH +mTH +mTH +bsm +voR +voR +voR +voR +voR +mTH +mTH +fXa +mTc +mTH +mTH +mTH +uEN +mTH +mTH +mTH +cXz +uEN +uEN +uEN +uEN +mTH +uEN +uEN +cXz +uEN +uEN +uEN +uEN +mTH +mTH +mTH +mTH +mTH +mTH +mTH +mTH +mTH +mTc +mTc +mTH +uEN +cXz +uEN +mTH +mTH +mTH +mTH +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +"} +(142,1,1) = {" +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +sGO +sGO +voR +voR +voR +sGO +sGO +voR +voR +voR +voR +voR +voR +voR +voR +buG +oRp +ydi +gXO +krQ +fcU +mrX +qTC +utI +yfG +sYg +bGd +cno +bLZ +aoq +ebk +gdp +ebk +jrj +sTW +jJZ +qgb +dNI +aeW +xUA +nvb +ebk +feG +nlx +fuM +kcZ +kcZ +iBw +mWG +rgv +fcv +xOZ +qsM +rgv +cCK +oym +dBB +nhR +xgm +bdX +xBo +nda +rgv +rgv +rgv +vSw +xsB +nfa +nfa +uAE +nfa +nfa +nfa +nfa +yfl +lWP +fbR +wwl +xks +pRR +pRR +pRR +nmZ +pIT +gZb +nTq +gGX +kFA +elX +imu +rRg +tAy +qWN +nqv +qjx +kZq +eDK +eip +bNd +qjx +kvT +jtG +fFr +pQe +hpN +fFr +ffj +edl +oVw +cqL +voR +voR +mTH +mTH +mTH +mTH +peM +voR +voR +voR +mTH +mTH +gZu +fXa +mTc +mTH +mTH +mTH +mTH +mTH +uEN +uEN +uEN +uEN +mTH +mTH +uEN +uEN +uEN +mTH +mTH +mTH +uEN +uEN +mTH +uEN +mTH +mTH +mTH +mTH +mTH +mTH +mTH +mTH +fQm +fQm +mTH +uEN +uEN +mTH +qXS +mTH +mTH +mTH +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +"} +(143,1,1) = {" +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +sGO +sGO +voR +voR +voR +sGO +voR +voR +voR +voR +voR +voR +voR +voR +buG +oRp +ydi +kyu +vRf +pbS +rYf +qTC +vpe +vdr +sYg +jNg +mdp +tFs +nXf +ebk +ebk +ebk +gTf +vAI +vCQ +ebk +ebk +lCV +ocw +ebk +ebk +ebk +ebk +ebk +kcZ +tKy +hCB +qje +rgv +fpO +hPP +vur +udE +etJ +ohW +iGt +lCK +xgm +uDA +jul +iAM +qPA +iYm +rgv +fcd +emJ +nfa +nfa +vfw +pqt +iiX +imu +nfa +kuU +xsB +xks +meq +xks +pRR +pRR +pRR +nmZ +vnD +utz +not +nnX +xRH +uZA +imu +aCI +sBl +qHM +prj +dst +fek +tAy +hvv +lSo +sjg +jlG +iee +xZo +wyy +pVf +qjx +ffj +edl +dIJ +cqL +voR +voR +mTH +mTH +mTH +mTH +uEN +uEN +utl +cXz +cCm +mTH +pAh +mTc +mTc +qCz +mTH +mTH +mTH +mTH +mTH +mTH +mTH +mTH +mTH +mTH +mTH +mTH +mTH +mTH +mTH +mTH +mTH +mTH +mTH +mTH +mTH +mTH +mTH +mTH +mTH +mTH +mTH +qCz +bmA +mTH +mTH +mTH +uEN +mTH +mTH +mTH +mTH +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +"} +(144,1,1) = {" +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +voR +sGO +voR +voR +voR +voR +voR +buG +buG +buG +buG +buG +buG +buG +buG +buG +buG +buG +buG +buG +buG +buG +buG +buG +voR +voR +voR +sGO +sGO +voR +voR +sGO +voR +voR +voR +voR +voR +voR +voR +voR +buG +ydi +ydi +ydi +qTC +qTC +ivz +ydi +ydi +ydi +sYg +sYg +hFT +nuq +taM +ebk +jig +ebk +arE +hLC +jbU +ebk +eYB +ttr +dER +flT +ebk +nzB +ksi +qfQ +kcZ +kcZ +lNj +qje +rgv +iaf +kwc +oFc +nRb +oPG +xFZ +hnE +lCK +fBl +fab +nnu +nKb +nbk +wVw +rgv +qxm +iqo +toC +nfa +vfw +cTQ +pqt +qij +nfa +sqI +vxa +xks +xks +xks +nfa +nfa +nfa +nfa +dEt +sik +imu +tMR +kjn +vQE +imu +kOc +kJG +qHw +eoX +auA +kgm +qWN +xMY +rQc +qjx +hMI +tLV +dgT +cIY +uhL +qjx +ffj +xeP +lNS +cqL +voR +mTH +mTH +bsm +mTH +uEN +sYI +cXz +utl +uEN +mTH +mTH +fRd +mTc +mTc +mTH +mTH +mTH +mTH +mTH +mTH +mTH +mTH +mTH +mTH +mTH +mTH +mTH +mTH +mTH +mTH +mTH +mTH +mTH +mTH +mTH +mTH +mTH +mTH +voR +voR +voR +voR +qXS +mTH +voR +voR +mTH +qnr +mTH +mTH +mTH +mTH +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +"} +(145,1,1) = {" +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +voR +sGO +voR +voR +voR +voR +voR +buG +vfs +vfs +vfs +vfs +vfs +vfs +vfs +vfs +vfs +vfs +vfs +vfs +vfs +vfs +vfs +buG +voR +voR +voR +voR +sGO +voR +voR +sGO +voR +voR +buG +buG +buG +buG +buG +buG +buG +ydi +efl +aZg +nWj +suT +mxc +qZM +wXq +hPI +sid +ydi +ydi +ydi +ydi +ydi +ydi +ydi +ydi +aix +ydi +sYg +pYa +kHm +kQd +gTt +ebk +cLU +cOa +owv +kcZ +jkh +cKo +hSf +rgv +rgv +rgv +rgv +rgv +rgv +nfk +xcz +cqX +rna +gdV +rna +bsU +dee +smn +rgv +gSa +btw +xdp +nfa +mVP +vfw +rBa +nfa +nfa +fje +cWb +nfa +nfa +dRp +rhC +mOW +vVP +nfa +nfa +sEU +ism +uFd +fub +uuL +mdl +fFr +fFr +fFr +fFr +fFr +xUj +kbm +bGa +ucQ +qjx +hMI +fET +tRl +pPu +fJS +qjx +ffj +oMg +kHu +cqL +voR +bsm +voR +voR +qXS +mTH +uEN +uEN +voR +bsm +mTH +pAh +pXH +mTc +dkv +pXH +mTH +eYI +mTH +mTH +eYI +mTH +mTH +eYI +mTH +gAT +mTc +mTc +vDM +fXa +jfJ +mTH +eYI +mTH +mTH +eYI +mTH +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +mTH +mTH +mTH +mTH +mTH +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +"} +(146,1,1) = {" +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +voR +sGO +voR +voR +voR +voR +voR +buG +vfs +vfs +vfs +lvv +lvv +vfs +vfs +vfs +vfs +vfs +lvv +lvv +lvv +lvv +vfs +buG +buG +voR +voR +voR +sGO +sGO +voR +sGO +voR +voR +buG +oRp +iwi +iwi +iwi +iwi +iwi +iwi +xKv +toN +xdN +rmT +lzP +vMX +vLB +fpk +geE +ydi +clf +sbx +dUa +ydi +htA +fNz +bsw +oil +pSs +sYg +woZ +dJK +jif +ebk +ebk +ogK +oez +kaj +kcZ +jkh +iBw +sKB +rgv +fcv +feq +iQr +rgv +cCK +ogM +dFP +lCK +fDP +hIM +hPP +bfV +wBG +lmK +rgv +hGt +rhn +kYC +nfa +rVl +pqt +alm +nfa +rGp +imu +fKj +xxO +cCj +lDV +tqI +bWm +tqI +lja +rEI +bMY +imu +imu +iZh +fIh +nfa +nfa +cdf +cdf +cdf +fFr +fFr +fFr +xAc +uBs +fFr +iDH +aRf +pgj +pZC +rKW +fFr +sgP +fFr +eoK +cqL +voR +voR +voR +voR +voR +voR +mTH +mTH +voR +voR +mTH +pAh +mTc +mTc +mTc +mTc +mTc +mTc +mTc +mTc +fXa +dkv +fXa +dkv +mTc +mTc +mTc +mTc +fXa +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +mTH +mTH +mTH +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +"} +(147,1,1) = {" +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +voR +voR +sGO +voR +voR +voR +voR +buG +buG +vfs +vfs +lvv +lvv +lvv +lvv +vfs +vfs +vfs +lvv +lvv +lvv +lvv +lvv +vfs +vfs +buG +voR +voR +voR +voR +sGO +sGO +sGO +voR +voR +buG +oRp +iwi +lPK +vxw +rpR +snq +iwi +pLb +kjl +hGX +oOu +jFA +dyK +kqS +cKD +uzN +icN +tPu +mcZ +kGW +qzI +ksX +ovW +qUD +kaV +bCa +sYg +iAy +cjX +lCa +tpt +nUd +coX +coX +hnC +kcZ +tKy +gBM +ofv +rgv +qGb +hPP +xms +udE +etJ +thw +uqD +lCK +jLF +nbk +urc +neG +nNo +vZF +rgv +lRV +rhn +nfa +nfa +jTc +pqt +wfJ +nfa +rWz +cAE +nrn +eaD +qTy +ukE +oTl +omn +uQe +qOG +sWr +sWr +ngh +uaz +tCC +dtQ +eUg +nfa +fFr +fFr +fFr +fFr +pgc +ijO +uKE +jbh +fFr +fFr +fFr +fFr +fFr +fFr +fFr +aIc +cqL +cqL +cqL +voR +voR +voR +voR +voR +bsm +mTH +voR +voR +voR +mTH +pAh +fXa +mTc +mTc +mTc +mTc +mTc +fXa +fXa +dkv +xTw +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +mTH +mTH +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +"} +(148,1,1) = {" +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +voR +voR +voR +buG +buG +vfs +vfs +vfs +lvv +lvv +lvv +lvv +lvv +lvv +lvv +lvv +lvv +lvv +lvv +lvv +lvv +vfs +buG +voR +voR +sGO +voR +sGO +sGO +voR +voR +voR +buG +oRp +iwi +bkw +gmc +qdf +rpF +iwi +cny +xpE +vkN +jgK +crg +iLb +lOb +wNa +uAb +ydi +xnc +vSW +lfV +ydi +vEm +nlt +uka +lqA +rzC +sYg +tnu +gQO +mHz +ebk +grd +oKP +jVy +ebk +kcZ +bFa +iBw +ocS +rgv +wvo +alB +rTy +thw +thw +dOI +qxB +nhR +lKC +lqp +uXQ +lSj +pmO +qIl +rgv +bSy +nEa +nfa +tDA +pqt +fCk +nfa +nfa +nfa +tWs +vLs +nfa +xxK +nII +gxo +mGP +mGP +fTe +fTe +mGP +mGP +lwR +fRw +xwL +tXn +nfa +wHT +aLN +gFZ +fFr +jer +jbh +omC +uLW +kuc +mjW +fFr +nLp +mvS +tSa +ijG +aIc +rUb +cdf +buG +voR +voR +voR +voR +voR +voR +voR +voR +voR +mTH +mTH +pAh +unf +fXa +mTc +pXH +bsm +mTH +mTH +mTH +mTH +mTH +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +mTH +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +"} +(149,1,1) = {" +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +voR +voR +voR +buG +vfs +vfs +lvv +lvv +lvv +lvv +lvv +lvv +lvv +lvv +lvv +lvv +lvv +lvv +lvv +lvv +vfs +vfs +buG +voR +sGO +sGO +sGO +sGO +sGO +voR +voR +voR +buG +oRp +iwi +gJJ +oSj +oSj +gVo +sOv +pGO +gIB +gIB +aOS +bJs +pZp +wGv +wGv +xbT +ydi +pIR +snn +mgy +ydi +ydi +krf +sla +qTC +ydi +sYg +sYg +sYg +sYg +sYg +sYg +sYg +ebk +ebk +pQr +qzO +hgR +eCr +rgv +rgv +rgv +rgv +pHP +thw +thw +pQu +thw +thw +nhR +nhR +nhR +nhR +nhR +rgv +neu +cAU +rgv +rgv +loe +wfJ +nfa +jSD +cHX +uTd +imu +oCG +vSw +nII +vRY +mGP +oQW +ouI +uij +vAw +mGP +bzf +iPw +cER +tmw +nfa +obC +hQv +rJc +qjx +dmy +jKO +wZz +rKi +eas +joD +fnH +gwG +gwG +hnj +aIc +aIc +cdf +cdf +buG +voR +voR +voR +voR +voR +voR +voR +voR +voR +qXS +mTH +mTH +mTH +fQm +fQm +mTH +mTH +mTH +mTH +qXS +mTH +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +"} +(150,1,1) = {" +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +voR +voR +voR +buG +vfs +vfs +lvv +lvv +lvv +lvv +lvv +lvv +lvv +lvv +lvv +lvv +lvv +lvv +lvv +lvv +vfs +vfs +buG +voR +sGO +voR +voR +voR +voR +voR +voR +voR +buG +oRp +iwi +rBt +sqk +oeN +oNu +iwi +lSz +uzX +mPr +taO +bkN +gnD +bkZ +whX +jaT +ydi +uQU +ajX +jcU +ydi +aBp +yfo +sYL +erI +mkn +ddS +rHA +loK +sju +gmg +wiR +ddS +fKK +kwz +sjJ +gTL +iwN +len +uPH +uTL +feq +nFs +thw +mBH +gGl +ppt +thw +hKw +nhR +hZU +qrG +mOu +nhR +fvi +pql +gco +pae +rgv +rgv +rgv +rgv +wgZ +jcl +uTd +rBH +oCG +qxm +iVd +kQS +fTe +qWy +ouI +elS +aeR +fTe +mBy +eBc +kAq +eUg +nfa +mta +weG +bvp +qjx +eKt +uLW +pMZ +naD +dkm +lrK +fFr +vOF +jtf +mkK +dgX +pZJ +cdf +cdf +buG +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +mTH +mTH +voR +mTH +mTH +mTH +uEN +sYI +uEN +mTH +mTH +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +sGO +voR +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +"} +(151,1,1) = {" +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +voR +voR +buG +vfs +lvv +lvv +lvv +lvv +lvv +lvv +lvv +lvv +lvv +lvv +lvv +lvv +lvv +lvv +lvv +lvv +vfs +buG +voR +voR +voR +voR +voR +voR +voR +buG +buG +buG +oRp +iwi +kvo +qMD +qMD +xPw +iwi +ksC +kjl +tuu +sBr +gbY +alM +jzc +uFy +gNT +mIb +sJW +uhS +kov +wmE +cBg +txY +mCd +eeV +qEh +ddS +boi +dPc +sju +dMQ +lFH +eLR +cki +dzh +lcJ +wJE +tCu +xyx +neu +uXQ +ake +lmE +uuE +qvx +mBH +qBr +vDs +rwc +cwz +fEB +dnI +uOg +mEM +gxc +lVF +iSW +bZU +tkY +hLt +qnM +tkY +klz +uUR +bHG +uts +nfa +bMY +vzn +siW +fTe +tZv +ouI +eXz +czg +vzs +seu +gPk +qOB +diK +nfa +qhv +weG +iVX +fFr +vGl +uLW +lKj +chf +fSF +oxk +fFr +cdf +tWf +mkK +lfX +cdf +cdf +cdf +buG +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +mTH +voR +voR +qXS +sYI +uEN +uEN +cXz +cCm +mTH +xaQ +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +"} +(152,1,1) = {" +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +voR +voR +buG +vfs +lvv +lvv +lvv +lvv +lvv +lvv +lvv +lvv +eFb +dPa +dPa +dPa +dPa +dPa +vde +kgg +vfs +buG +buG +buG +buG +buG +buG +buG +buG +buG +oRp +oRp +oRp +iwi +iwi +iwi +iwi +iwi +iwi +rqC +gbV +ecM +cPg +vRr +xBd +eOC +yfw +lBY +ydi +wBA +kEH +wrT +ydi +sIZ +wTS +gWD +kzA +lqL +ddS +cgU +tlR +cOb +qSf +qtj +ddS +fuV +dzh +hCa +ftv +kcZ +rgv +rgv +rgv +rgv +rgv +rgv +rgv +aBK +rgv +trC +dnn +iQi +gSY +gdV +mhO +wML +aCX +kJP +jbI +pCK +iXG +nlZ +sVf +lmE +nfz +aUX +bMN +xVA +wWq +imu +cEL +kpH +mGP +dwX +ouI +nUq +lEO +mGP +fTe +fTe +vxg +mGP +mGP +lTw +ejq +sYr +iRl +jKO +jbh +dqB +jMH +ogf +ivG +fFr +jUp +jUp +qaB +jUp +jUp +cdf +buG +buG +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +qXS +qXS +uEN +mTH +mTH +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +"} +(153,1,1) = {" +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +voR +voR +buG +vfs +lvv +lvv +lvv +lvv +lvv +lvv +eFb +dPa +ksz +kgg +ppZ +nIX +cLu +cLu +aMQ +kgg +kgg +kgg +kgg +kgg +kgg +kgg +kgg +buG +oRp +oRp +oRp +pEi +pEi +oRp +ydi +dFe +dFe +dFe +ydi +vIi +kgL +vce +orV +ahJ +bNO +clD +ezs +vML +ydi +ydi +vHe +ydi +ydi +ydi +jJD +whi +oXj +ydi +ddS +ddS +ddS +ddS +ddS +ddS +ddS +oZy +dzh +dzh +kcZ +kcZ +rgv +yiu +ybA +rry +rgv +rgv +bVB +bei +rgv +rgv +rgv +nhR +lCK +lCK +nhR +nhR +jgR +dcE +yay +pVg +nhR +dZp +dZp +rgv +oCO +utz +pCN +wfJ +jjN +nLr +dsg +uuL +wCB +axt +djG +wrW +inR +pQG +lSq +sWd +dhr +gXh +gcP +pLe +qjx +qjx +pLe +okm +emW +uIS +qzu +uHH +duY +fFr +jUp +cYx +xtn +lqO +jUp +cdf +buG +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +mTH +mTH +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +sGO +sGO +voR +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +"} +(154,1,1) = {" +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +voR +voR +buG +vfs +lvv +lvv +lvv +lvv +lvv +lvv +rsQ +imR +cLu +lGS +edh +cTl +pyU +xaw +jCR +ydg +bTf +oLP +oLP +nZx +caZ +kgg +kgg +buG +oRp +oRp +oRp +oRp +jxj +kcg +ydi +ydi +ydi +ydi +ydi +ydi +qTC +quO +fuB +fEd +fuB +quO +qTC +ydi +ydi +mWv +sIs +iqj +bJe +eDT +eDT +anj +anj +mna +pAQ +vYY +vYY +pAQ +pAQ +eDT +eDT +eDT +eDT +eDT +kcZ +kcZ +rgv +jaE +jyJ +lFP +rgv +sfj +ePw +ePw +qHV +wqO +rgv +fVo +qPA +hBT +eOj +nhR +nhR +aAL +wjB +nhR +nhR +fdf +gLX +bEv +kze +niz +tAr +wfJ +wWq +shW +evk +ebW +mGP +pMh +lbc +lbc +mzu +hOY +dbk +saQ +tER +cba +gcP +dJJ +izz +mQZ +rEV +hic +iyq +iyq +ieh +hIY +uUf +mpQ +jUp +xwn +fpe +tLD +jUp +cdf +buG +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +sGO +sGO +sGO +sGO +voR +voR +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +"} +(155,1,1) = {" +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +voR +voR +voR +buG +vfs +lvv +lvv +lvv +lvv +lvv +lvv +rsQ +kqJ +mlb +ijU +nvA +xYm +rFg +hyS +beK +gfm +hKL +oLP +oYA +oYA +oLP +wJt +kgg +ydi +ydi +ydi +ydi +oAs +pEi +rGC +eyR +pld +jZV +ydi +tca +nac +bFD +jaT +ybh +niG +qCd +maF +mWO +sid +ydi +mWv +nql +gKi +bJe +eDT +pAQ +vYY +kUd +vYY +tIf +vYY +vYY +fTi +iZS +ezR +quz +uBu +cOg +eDT +kcZ +kcZ +rgv +avj +kbr +ooF +rgv +kRE +piC +pYm +wLu +fhO +lCK +edO +oUY +kWZ +nXO +vVc +lCK +xPD +hIM +aRp +hIM +dee +hIM +lOL +pfM +jcl +nDp +fFS +nfa +paL +imu +itx +fTe +gJe +wQI +its +gYc +dYn +opH +wIi +ouI +xVp +gcP +xxU +dJJ +mQZ +rEV +wqA +hIC +hIC +bfW +kql +aBO +pLg +jUp +bCJ +bCJ +pwc +jUp +cdf +buG +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +"} +(156,1,1) = {" +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +voR +sGO +sGO +voR +voR +voR +buG +vfs +vfs +lvv +lvv +lvv +lvv +lvv +rsQ +kqJ +qDe +gvy +djB +byw +tyo +vcv +vRo +gqS +bbk +dMb +yhV +vWf +vxt +mKY +kgg +xUc +sIm +ucM +ydi +tOI +hwR +nye +uNa +uXk +frH +fCr +shi +jXl +lVl +aZm +nrY +gbY +sXu +fqh +que +uIl +ydi +lyF +rrY +rty +ydi +eDT +vYY +fow +hTb +oTf +aHT +uhe +uhe +eWX +tRU +cKb +ivo +evD +xAR +eDT +kcZ +rgv +rgv +epO +goA +geo +mAz +tuA +wts +nvd +eIU +wJF +duT +ioq +bua +kAb +vYQ +vDc +omT +jwi +iuf +nhR +azq +bCk +dcP +dZp +kze +jcl +pPa +oBL +oCG +qxm +imu +bli +fTe +sVN +dYc +nLB +anU +qpQ +iQO +ecV +axt +nuA +gcP +xxU +lBa +izz +rEV +sHP +wqA +iyD +nCG +kql +suU +gTw +jUp +hFP +eRU +cFW +jUp +cdf +buG +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +sGO +sGO +sGO +sGO +sGO +voR +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +"} +(157,1,1) = {" +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +voR +voR +voR +voR +buG +vfs +vfs +lvv +lvv +lvv +lvv +lvv +rsQ +kqJ +qDe +jZD +mNx +tsB +ibL +rvV +vRo +hIq +fqM +mlb +vhX +mlb +mlb +xUQ +arq +fxz +gWD +guD +rrx +sXQ +gWD +lVN +qbj +rEH +ksl +vef +gny +jbe +kUW +cGb +vSL +uwO +hEI +pKf +frc +xrx +mIb +eff +kLo +xtp +ydi +eDT +vYY +fow +hTb +uSw +vYY +vYY +kUd +kUd +kDb +hdl +pHj +uBu +uZv +eDT +eDT +rgv +sRj +jIK +sxd +tFN +rgv +gZo +kKg +cay +fdA +bzD +lCK +jpM +ikS +dXs +wvR +mBN +lCK +vwv +cDS +nhR +jjQ +vgo +neA +rgv +xxp +mbV +shW +ruV +nfa +jRu +sKC +obt +mGP +kQP +xoL +uuS +qxF +dzJ +qxF +qvy +gJH +lQH +gcP +lBa +izz +izz +rEV +sHP +sHP +wqA +nCG +fiQ +dYA +fFr +jUp +gkE +elt +fRT +jUp +cdf +buG +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +"} +(158,1,1) = {" +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +voR +voR +voR +voR +buG +vfs +vfs +lvv +lvv +lvv +lvv +lvv +rsQ +kqJ +qDe +nxe +sjC +bbe +fdg +eOn +vRo +hIq +tdV +gUi +rBd +qah +gKn +rZo +kgg +plf +njj +cVx +ydi +kMb +tuv +utf +bnC +owa +aFG +vef +veN +tJO +nAk +wyR +mEO +gbY +bRz +hwM +ttI +wRg +ydi +sIZ +ftE +sdo +ydi +eDT +ybF +vYY +kUd +byW +dIs +vYY +vYY +vYY +ujq +eDT +eDT +eDT +eDT +eDT +eDT +rgv +otk +iNV +bDO +xuT +rgv +kvQ +dJt +uoB +oOF +vdT +lCK +shS +nyl +cGX +oNI +iNC +lCK +hYp +sJO +rgv +rgv +rgv +rgv +rgv +mGP +mGP +jzV +mGP +mGP +mGP +aYu +mGP +mGP +mGP +mGP +fpj +mGP +mGP +mGP +mGP +mGP +mGP +gcP +pLe +pLe +pLe +pLe +pLe +pLe +pLe +pLe +eqp +pXV +pLe +jUp +jUp +jUp +jUp +jUp +cdf +buG +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +"} +(159,1,1) = {" +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +voR +sGO +voR +voR +voR +voR +buG +vfs +vfs +lvv +lvv +lvv +lvv +lvv +rsQ +kqJ +mlb +euf +hPx +hsz +aOQ +bbG +xPS +ktZ +wbq +oLP +sBN +iEq +oLP +oHJ +kgg +ydi +ydi +ydi +ydi +oRp +wzi +pEi +exi +uNa +tJm +ydi +cIu +cIu +lvt +tck +hTZ +szc +rir +pRx +sVG +ojv +eDT +ylh +pij +oAD +eDT +eDT +kUd +kXd +hTb +byW +kUd +vYY +vYY +vYY +kUd +iZS +hdl +quz +uBu +cOg +eDT +rgv +kkJ +gFO +sQc +wsi +rgv +tIa +piC +kVw +hLg +jOa +rgv +kvs +jlP +ppt +iok +cYf +rgv +rgv +lyB +rgv +mdu +sEi +tNX +cqK +ncU +hIm +azM +xLA +mGP +wtu +sXt +pRY +roY +mEr +xVY +tej +mBE +mGP +nib +xQj +aFe +ubR +mGP +voR +voR +voR +voR +voR +voR +pLe +gfH +vge +uVN +pLe +buG +buG +buG +buG +buG +buG +buG +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +sGO +sGO +sGO +sGO +sGO +voR +voR +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +"} +(160,1,1) = {" +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +voR +sGO +voR +voR +voR +voR +buG +vfs +lvv +lvv +lvv +lvv +lvv +lvv +rsQ +imR +lPv +iJx +wGf +tvI +cQg +nmJ +dQN +kUl +isC +gEw +wAW +dkd +oLP +kgg +kgg +buG +oRp +oRp +oRp +oRp +pEi +dey +ydi +ydi +ydi +ydi +pxN +drN +ydi +ydi +oAr +ryP +lyP +bTH +xtI +ydi +eDT +xuB +kSA +luT +uSY +eDT +bFV +feZ +hTb +wDG +eWX +eWX +aHT +uhe +eWX +tRU +cKb +ivo +evD +xAR +eDT +rgv +xSe +hPp +jZl +aOp +rgv +sNz +ePw +hkN +whp +sOI +rgv +nhR +nhR +dEA +nhR +nhR +rgv +svT +azM +rWY +azM +azM +azM +azM +azM +azM +azM +kle +mGP +dhD +cxP +cxP +mGW +mGW +cxP +sBH +mdk +mGP +rAi +vah +xQj +fxr +mGP +voR +voR +voR +voR +voR +voR +pLe +cdf +cdf +iho +pLe +buG +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +sGO +sGO +sGO +sGO +voR +voR +voR +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +"} +(161,1,1) = {" +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +voR +voR +voR +buG +vfs +lvv +lvv +lvv +lvv +lvv +lvv +lCq +gou +qTK +kgg +aVj +lPv +lPv +uiN +aYv +kgg +kgg +kgg +kgg +kgg +kgg +kgg +kgg +buG +oRp +oRp +oRp +oRp +tBx +pEi +wzi +oRp +oRp +fLc +sxJ +qXV +ydi +ydi +dyT +rrS +cLI +uKt +dlu +ydi +eDT +kIu +lRX +six +kIz +kNZ +clK +wDF +eWX +aWb +fTi +kUd +kUd +kUd +fTi +kDb +ezR +pHj +uBu +uZv +eDT +rgv +rgv +lFd +isK +qZe +rgv +rgv +lCK +lCK +pTt +rgv +rgv +sSs +paR +cGy +ylO +sJy +rgv +nJV +qTu +cjB +vKm +vvg +gnW +qTu +gnW +cjB +cjB +hgD +mGP +jQR +mGW +gnu +tCF +bBS +sPq +bBS +qtL +axo +hhH +hhH +vew +gwm +mGP +voR +voR +voR +voR +voR +voR +pLe +cdf +cdf +cdf +pLe +buG +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +sGO +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +sGO +sGO +voR +voR +voR +voR +sGO +sGO +sGO +sGO +sGO +sGO +sGO +voR +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +"} +(162,1,1) = {" +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +voR +sGO +sGO +voR +voR +voR +buG +vfs +lvv +lvv +lvv +lvv +lvv +lvv +lvv +lvv +lCq +gou +gou +gou +gou +gou +eoV +kgg +vfs +buG +buG +buG +buG +buG +buG +buG +oRp +oRp +oRp +oRp +oRp +pEi +pEi +pEi +oRp +rDl +sxJ +kBg +ydi +ydi +ric +nJD +qsb +dei +aUe +ydi +eDT +qGW +qJM +oxu +cdO +eDT +rqh +iDA +aTk +uSw +iPm +vYY +vYY +vYY +cEO +ssp +eDT +eDT +eDT +eDT +eDT +oXH +oXH +xyK +xyK +xyK +rgv +nFh +aek +qoz +vnk +jfc +nhR +xdm +nuB +cGy +oHv +gss +rgv +voR +mdu +hIm +voR +voR +voR +voR +voR +evr +hIm +lem +kLK +kPE +mGW +goT +vMr +cjh +mAp +cQZ +rXJ +mGP +kiI +nqT +bWG +adU +mGP +voR +voR +voR +voR +voR +voR +pLe +pLe +cdf +cdf +pLe +buG +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +sGO +sGO +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +sGO +sGO +voR +voR +voR +voR +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +"} +(163,1,1) = {" +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +voR +voR +voR +buG +vfs +lvv +lvv +lvv +lvv +lvv +lvv +lvv +lvv +lvv +lvv +lvv +lvv +lvv +lvv +lvv +lvv +vfs +buG +voR +voR +voR +voR +voR +buG +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +qwt +hVu +gWD +ydi +owL +cTG +nKC +cSC +iAW +mvF +ddk +eDT +hiQ +tXr +kOR +szA +fcS +aRH +nyi +fTi +uSw +fTi +vYY +vYY +kUd +fTi +iZS +hdl +quz +uBu +cOg +eDT +oXH +xyK +xyK +xyK +xyK +rgv +glm +dCY +ihG +mBo +wmm +nDb +hex +jhR +kRA +elN +vJg +rgv +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +hIm +mGP +qwp +cxP +gec +fLk +mGP +mGP +mGP +mGP +mGP +oGk +wSk +mtq +mGP +mGP +buG +buG +buG +buG +buG +buG +buG +buG +buG +buG +buG +buG +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +sGO +sGO +voR +voR +sGO +voR +voR +sGO +voR +voR +voR +voR +voR +voR +voR +sGO +sGO +sGO +sGO +sGO +sGO +sGO +voR +voR +voR +voR +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +"} +(164,1,1) = {" +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +voR +voR +voR +buG +vfs +lvv +lvv +lvv +lvv +lvv +lvv +lvv +lvv +lvv +lvv +lvv +lvv +lvv +lvv +lvv +lvv +vfs +buG +voR +voR +voR +voR +voR +buG +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oRp +dPz +xpG +mas +ydi +uCx +mhI +lgB +tBb +khI +eMU +dpX +eDT +bpb +eYR +oMu +pua +eDT +pQW +eog +hTb +dZq +uhe +aHT +uhe +uhe +eWX +tRU +cKb +ivo +evD +xAR +eDT +xyK +xyK +tmp +dGc +dGc +rgv +rGP +sPU +grv +pds +dBB +nhR +oOp +fbP +nnj +bOW +mUP +rgv +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +mGP +tmk +pAK +pQU +rXJ +mGP +voR +voR +voR +mGP +mGP +mGP +vFQ +mGP +glA +buG +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +sGO +sGO +sGO +voR +sGO +sGO +sGO +sGO +sGO +voR +voR +voR +voR +voR +voR +voR +sGO +sGO +sGO +sGO +sGO +sGO +sGO +voR +voR +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +"} +(165,1,1) = {" +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +voR +voR +voR +buG +vfs +lvv +lvv +lvv +lvv +lvv +lvv +lvv +lvv +lvv +lvv +lvv +lvv +lvv +lvv +lvv +lvv +vfs +buG +voR +voR +voR +voR +voR +buG +buG +buG +buG +buG +buG +buG +buG +buG +oRp +ydi +qwt +sxJ +ydi +gHm +hEd +itO +pLK +eQs +cYr +cCr +eDT +eDT +eDT +eDT +eDT +eDT +kUd +kMh +hTb +byW +kUd +vYY +vYY +vYY +kUd +kDb +hdl +pHj +uBu +uZv +eDT +xyK +xyK +xyK +xyK +xyK +rgv +eHu +rru +wBG +gwA +drK +nhR +gEg +wWG +hIM +kWZ +ehN +rgv +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +mGP +mGP +mGP +mGP +mGP +mGP +voR +voR +voR +voR +voR +mGP +oct +mGP +glA +buG +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +voR +voR +voR +voR +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +"} +(166,1,1) = {" +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +voR +voR +voR +buG +vfs +vfs +vfs +lvv +lvv +lvv +lvv +lvv +lvv +lvv +lvv +lvv +lvv +lvv +lvv +lvv +lvv +vfs +buG +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +buG +oRp +ydi +ydi +eEs +ydi +ydi +vOu +qqI +hoP +gbV +tUf +ydi +ydi +oXH +oXH +oXH +buG +pAQ +ybF +vYY +fTi +tVW +vYY +vYY +vYY +bFV +pHZ +eDT +eDT +eDT +eDT +eDT +eDT +xyK +xyK +xyK +xyK +oXH +rgv +cDb +lXq +xYp +sVT +jJk +nhR +tET +hYH +kWZ +fwt +scP +rgv +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +mGP +mGP +mGP +glA +buG +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +voR +voR +voR +voR +voR +voR +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +"} +(167,1,1) = {" +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +voR +voR +buG +vfs +vfs +vfs +vfs +vfs +lvv +lvv +lvv +lvv +lvv +lvv +lvv +lvv +lvv +lvv +lvv +vfs +vfs +buG +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +buG +oRp +oRp +aSg +gWD +ydi +ydi +tIL +nwe +nuz +iaj +ydi +ydi +ydi +oXH +oXH +oXH +buG +pAQ +vYY +vYY +fTi +uSw +vYY +kUd +kUd +fTi +iZS +ezR +quz +uBu +cOg +eDT +oXH +oXH +fbb +fbb +oXH +oXH +rgv +wDu +egx +myf +cGr +gTs +nhR +ryU +kxD +unB +wQU +blJ +rgv +voR +buG +buG +buG +buG +buG +buG +buG +buG +buG +buG +buG +buG +buG +buG +buG +buG +buG +buG +buG +buG +buG +buG +buG +buG +buG +buG +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +voR +voR +voR +voR +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +uCR +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +"} +(168,1,1) = {" +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +voR +voR +buG +vfs +vfs +vfs +vfs +vfs +vfs +vfs +vfs +vfs +lvv +lvv +lvv +lvv +lvv +lvv +vfs +vfs +vfs +buG +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +buG +oRp +oRp +ieX +gWD +ydi +ydi +ydi +ydi +ydi +ydi +ydi +ydi +ydi +dFo +dFo +oXH +buG +pAQ +pAQ +vYY +kUd +vjJ +uhe +aHT +uhe +uhe +tRU +cKb +ivo +evD +xAR +eDT +oXH +oXH +oXH +xyK +xyK +oXH +rgv +uxP +mvt +hPP +beP +ncr +rgv +rgv +rgv +rgv +rgv +rgv +rgv +voR +buG +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +voR +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +"} +(169,1,1) = {" +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +voR +voR +buG +vfs +vfs +vfs +vfs +vfs +vfs +vfs +vfs +vfs +vfs +vfs +vfs +vfs +vfs +vfs +vfs +vfs +vfs +buG +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +buG +oRp +oRp +gXF +gWD +ezY +pJk +pEi +tQr +gWD +gWD +gWD +bUT +oeS +bZD +fNG +oXH +buG +pAQ +pAQ +vYY +vYY +kUd +vYY +vYY +kUd +fTi +kDb +hdl +pHj +uBu +uZv +eDT +oXH +oXH +oXH +ppk +dRt +oXH +rgv +oYL +kxD +ePj +evp +rgv +rgv +voR +voR +voR +voR +voR +voR +voR +buG +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +sGO +sGO +sGO +sGO +sGO +sGO +sGO +voR +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +"} +(170,1,1) = {" +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +voR +voR +buG +buG +buG +buG +buG +buG +buG +buG +buG +buG +buG +buG +buG +buG +buG +buG +buG +buG +buG +buG +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +buG +oRp +oRp +oRp +ggv +tWJ +pEi +pEi +tWJ +tWJ +ggv +pTX +cCT +uvC +xyK +xyK +oXH +buG +pAQ +pAQ +pAQ +pAQ +pAQ +ldl +vYY +vYY +pAQ +pAQ +eDT +eDT +eDT +eDT +eDT +oXH +oXH +xyK +xyK +dRt +oXH +rgv +rgv +rgv +rgv +rgv +rgv +voR +voR +voR +voR +voR +voR +voR +voR +buG +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +sGO +sGO +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +sGO +sGO +sGO +sGO +sGO +sGO +voR +voR +sGO +voR +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +"} +(171,1,1) = {" +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +voR +sGO +sGO +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +sGO +sGO +sGO +sGO +sGO +voR +voR +voR +voR +voR +buG +buG +buG +oRp +oRp +oRp +oRp +oRp +ihg +orA +rrc +ngG +ghC +uvC +xyK +xyK +oXH +buG +buG +buG +buG +buG +pAQ +pAQ +pAQ +pAQ +pAQ +pAQ +pAQ +pAQ +pAQ +pAQ +buG +oXH +oXH +dRt +dRt +pNJ +ppk +oXH +buG +buG +buG +buG +buG +buG +buG +buG +buG +buG +buG +buG +buG +buG +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +sGO +sGO +sGO +sGO +sGO +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +sGO +voR +voR +voR +sGO +sGO +sGO +sGO +sGO +voR +voR +voR +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +"} +(172,1,1) = {" +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +voR +sGO +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +sGO +sGO +sGO +sGO +voR +voR +sGO +sGO +voR +voR +voR +voR +voR +voR +buG +buG +buG +buG +oRp +oRp +oRp +oRp +oRp +oRp +oRp +oXH +wgD +ehy +oXH +oXH +oXH +oXH +oXH +buG +buG +buG +buG +buG +buG +buG +buG +buG +buG +buG +buG +oXH +oXH +pNJ +dRt +dRt +ppk +oXH +buG +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +sGO +voR +voR +voR +voR +voR +voR +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +voR +voR +voR +voR +voR +voR +voR +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +voR +voR +voR +voR +voR +sGO +voR +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +"} +(173,1,1) = {" +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +voR +sGO +sGO +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +voR +voR +voR +voR +sGO +sGO +sGO +voR +voR +voR +voR +voR +voR +voR +buG +buG +buG +buG +buG +buG +buG +buG +oXH +xyK +ehy +dRt +oXH +oXH +oXH +oXH +oXH +oXH +oXH +oXH +oXH +oXH +oXH +oXH +oXH +oXH +oXH +oXH +oXH +xyK +dRt +idN +xyK +xyK +oXH +buG +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +voR +voR +voR +voR +voR +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +"} +(174,1,1) = {" +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +voR +voR +sGO +sGO +sGO +voR +voR +voR +voR +voR +voR +voR +voR +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +voR +voR +voR +sGO +sGO +sGO +voR +voR +voR +voR +voR +sGO +sGO +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +buG +oXH +cBX +dRt +dRt +xyK +oXH +oXH +oXH +oXH +oXH +oXH +oXH +oXH +oXH +oXH +oXH +oXH +oXH +oXH +oXH +xyK +dRt +xyK +xyK +xyK +oXH +oXH +buG +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +voR +voR +voR +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +"} +(175,1,1) = {" +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +voR +voR +voR +sGO +sGO +voR +voR +voR +voR +voR +voR +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +voR +voR +sGO +sGO +sGO +sGO +voR +voR +sGO +sGO +sGO +sGO +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +buG +oXH +oXH +dRt +kyQ +dRt +ppk +oXH +oXH +oXH +oXH +dFo +oXH +oXH +ppk +wgD +oXH +oXH +oXH +ppk +ssH +xyK +wMh +ppk +xyK +aWF +oXH +oXH +buG +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +sGO +sGO +sGO +voR +voR +voR +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +"} +(176,1,1) = {" +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +voR +voR +sGO +sGO +sGO +voR +voR +voR +voR +sGO +sGO +voR +voR +voR +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +buG +oXH +oXH +fbb +dRt +ehy +xyK +oXH +oXH +oXH +dFo +dFo +ppk +xyK +dRt +dRt +dRt +dRt +xyK +dRt +dRt +dRt +ppk +xyK +jVI +oXH +oXH +oXH +buG +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +"} +(177,1,1) = {" +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +voR +sGO +voR +sGO +sGO +sGO +sGO +sGO +sGO +voR +voR +voR +voR +voR +voR +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +buG +oXH +oXH +dFo +fEj +ehy +xyK +xyK +oXH +oXH +dFo +qlF +xyK +dRt +kyQ +dRt +pNJ +dRt +dRt +dRt +dRt +dRt +xyK +aWF +ohl +dFo +oXH +oXH +buG +voR +voR +voR +voR +voR +voR +voR +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +"} +(178,1,1) = {" +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +voR +voR +voR +sGO +sGO +voR +sGO +sGO +sGO +voR +voR +voR +voR +voR +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +buG +oXH +oXH +dFo +dFo +mWk +ehy +ehy +dRt +xyK +nma +ehy +ehy +dRt +dRt +aWF +fhf +dRt +xyK +xyK +xyK +xyK +oPT +dFo +dFo +dFo +dFo +oXH +buG +voR +voR +voR +voR +voR +voR +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +"} +(179,1,1) = {" +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +voR +voR +voR +voR +sGO +sGO +sGO +sGO +sGO +voR +voR +voR +voR +voR +voR +voR +voR +voR +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +buG +oXH +oXH +oXH +dFo +ppk +xyK +ehy +ehy +ehy +ehy +dRt +dRt +oXH +dFo +dFo +oXH +oXH +ppk +xyK +oXH +oXH +oXH +dFo +dFo +dFo +oXH +oXH +buG +voR +voR +voR +voR +voR +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +"} +(180,1,1) = {" +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +voR +voR +voR +voR +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +buG +oXH +oXH +oXH +oXH +oXH +cBX +uMg +dRt +xyK +xyK +xyK +oXH +oXH +dFo +dFo +dFo +oXH +oXH +oXH +oXH +oXH +oXH +oXH +dFo +oXH +oXH +oXH +buG +voR +voR +voR +voR +voR +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +"} +(181,1,1) = {" +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +voR +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +buG +oXH +oXH +oXH +oXH +oXH +oXH +oXH +oXH +oXH +oXH +oXH +oXH +oXH +oXH +oXH +oXH +oXH +oXH +oXH +oXH +oXH +oXH +oXH +oXH +oXH +oXH +oXH +buG +voR +voR +voR +voR +voR +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +"} +(182,1,1) = {" +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +buG +buG +buG +buG +buG +buG +buG +buG +buG +buG +buG +buG +buG +buG +buG +buG +buG +buG +buG +buG +buG +buG +buG +buG +buG +buG +buG +buG +buG +voR +voR +voR +voR +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +"} +(183,1,1) = {" +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +"} +(184,1,1) = {" +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +"} +(185,1,1) = {" +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +"} +(186,1,1) = {" +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +"} +(187,1,1) = {" +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +"} +(188,1,1) = {" +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +"} +(189,1,1) = {" +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +"} +(190,1,1) = {" +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +voR +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +"} +(191,1,1) = {" +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +voR +voR +voR +voR +voR +voR +voR +voR +voR +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +"} +(192,1,1) = {" +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +"} +(193,1,1) = {" +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +"} +(194,1,1) = {" +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +iSk +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +"} +(195,1,1) = {" +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +"} +(196,1,1) = {" +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +"} +(197,1,1) = {" +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +dZH +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +"} +(198,1,1) = {" +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +"} +(199,1,1) = {" +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +"} +(200,1,1) = {" +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +"} +(201,1,1) = {" +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +"} +(202,1,1) = {" +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +"} +(203,1,1) = {" +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +"} +(204,1,1) = {" +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +"} +(205,1,1) = {" +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +"} +(206,1,1) = {" +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +"} +(207,1,1) = {" +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +"} +(208,1,1) = {" +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +"} +(209,1,1) = {" +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +"} +(210,1,1) = {" +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +"} +(211,1,1) = {" +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +"} +(212,1,1) = {" +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +"} +(213,1,1) = {" +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +"} +(214,1,1) = {" +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +"} +(215,1,1) = {" +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +"} +(216,1,1) = {" +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +"} +(217,1,1) = {" +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +"} +(218,1,1) = {" +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +"} +(219,1,1) = {" +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +"} +(220,1,1) = {" +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +"} +(221,1,1) = {" +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +"} +(222,1,1) = {" +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +"} +(223,1,1) = {" +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +"} +(224,1,1) = {" +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +"} +(225,1,1) = {" +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +"} +(226,1,1) = {" +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +"} +(227,1,1) = {" +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +"} +(228,1,1) = {" +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +"} +(229,1,1) = {" +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +"} +(230,1,1) = {" +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +"} +(231,1,1) = {" +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +"} +(232,1,1) = {" +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +"} +(233,1,1) = {" +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +"} +(234,1,1) = {" +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +"} +(235,1,1) = {" +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +"} +(236,1,1) = {" +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +"} +(237,1,1) = {" +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +"} +(238,1,1) = {" +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +"} +(239,1,1) = {" +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +"} +(240,1,1) = {" +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +"} +(241,1,1) = {" +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +"} +(242,1,1) = {" +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +"} +(243,1,1) = {" +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +"} +(244,1,1) = {" +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +"} +(245,1,1) = {" +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +"} +(246,1,1) = {" +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +"} +(247,1,1) = {" +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +"} +(248,1,1) = {" +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +"} +(249,1,1) = {" +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +"} +(250,1,1) = {" +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +"} +(251,1,1) = {" +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +"} +(252,1,1) = {" +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +"} +(253,1,1) = {" +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +"} +(254,1,1) = {" +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +"} +(255,1,1) = {" +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +sGO +"} diff --git a/maps/away/away_site/quarantined_outpost/quarantined_outpost_areas.dm b/maps/away/away_site/quarantined_outpost/quarantined_outpost_areas.dm new file mode 100644 index 00000000000..547481daf8f --- /dev/null +++ b/maps/away/away_site/quarantined_outpost/quarantined_outpost_areas.dm @@ -0,0 +1,150 @@ + +/area/quarantined_outpost + name = "base type" + ambience = list(AMBIENCE_FOREBODING, AMBIENCE_LAVA) + base_turf = /turf/simulated/floor/exoplanet/abyss + area_flags = AREA_FLAG_INDESTRUCTIBLE_TURFS + +/area/quarantined_outpost/exterior + name = "Exterior" + icon_state = "exterior" + always_unpowered = TRUE + +/area/quarantined_outpost/exterior/powered + requires_power = FALSE + always_unpowered = FALSE + +/area/quarantined_outpost/chasm + name = "Chasm" + icon_state = "exterior" + always_unpowered = TRUE + +// South - Entrance + +/area/quarantined_outpost/reception + name = "Reception" + icon_state = "bluenew" + +/area/quarantined_outpost/entrance_lobby + name = "Entrance Lobby" + icon_state = "green" + +/area/quarantined_outpost/entrance_maintenance + name = "Entrance Maintenance" + icon_state = "maintcentral" + +// South East - Cargo + +/area/quarantined_outpost/cargo_bay + name = "Cargo Bay" + icon_state = "quartloading" + +// West side - Engineering + +/area/quarantined_outpost/engineering + name = "Engineering" + icon_state = "engineering" + +/area/quarantined_outpost/engineering/tunnel + name = "Engineering Tunnels" + icon_state = "green" + +/area/quarantined_outpost/engineering/winch_room + name = "Engineering Winch Room" + icon_state = "engineering_workshop" + +/area/quarantined_outpost/engineering/atmospherics + name = "Atmospherics" + icon_state = "atmos" + +// North-East side - Medbay/Science + +/area/quarantined_outpost/medbay + name = "Medical Ward" + icon_state = "medbay3" + +/area/quarantined_outpost/research + name = "Research Laboratory" + icon_state = "research" + +/area/quarantined_outpost/research/containment + name = "Research Heavy Containment Zone" + icon_state = "security_sub" + +/area/quarantined_outpost/extraction_lab + name = "Extraction Laboratory" + icon_state = "purple" + +// Center - Cafeteria + +/area/quarantined_outpost/cafeteria + name = "Cafeteria" + icon_state = "cafeteria" + +/area/quarantined_outpost/cafeteria/maintenance + name = "Cafeteria Maintenance" + icon_state = "maintenance" + +// Hallways + +/area/quarantined_outpost/dorm_hallway + name = "Central Dormitory Hallway" + icon_state = "hallC" + +/area/quarantined_outpost/elevator_hallway + name = "Residential Lift Hallway" + icon_state = "hallS" + +/area/quarantined_outpost/elevator_hallway/maintenance + name = "Residential Lift Maintennace" + icon_state = "maintenance" + +/area/quarantined_outpost/north_east_hallway + name = "North East Hallway" + icon_state = "dk_yellow" + +/area/quarantined_outpost/north_east_hallway/maintenance + name = "North East Hallway Maintenance" + icon_state = "maintenance" + +// East - Security + +/area/quarantined_outpost/security + name = "Security Wing" + icon_state = "security" + +// Caverns + +/area/quarantined_outpost/cavern + name = "Caverns" + icon_state = "dark128" + requires_power = FALSE + always_unpowered = FALSE + +/area/quarantined_outpost/cavern/east_cavern + name = "East Caverns" + +/area/quarantined_outpost/cavern/south_west_cavern + name = "South West Caverns" + +// Misc + +/area/quarantined_outpost/auxiliary_power + name = "Auxiliary Power Storage" + icon_state = "storage" + +/area/quarantined_outpost/gym + name = "Gym" + icon_state = "fitness_gym" + +/area/quarantined_outpost/server_relay + icon_state = "dark128" + +/area/quarantined_outpost/server_relay/south_east + name = "Server Relay Room - South East" + +/area/quarantined_outpost/server_relay/north_east + name = "Server Relay Room - North East" + +/area/quarantined_outpost/server_relay/north_west + name = "Server Relay Room - North West" diff --git a/maps/away/away_site/quarantined_outpost/quarantined_outpost_holopads.dm b/maps/away/away_site/quarantined_outpost/quarantined_outpost_holopads.dm new file mode 100644 index 00000000000..09999ac716a --- /dev/null +++ b/maps/away/away_site/quarantined_outpost/quarantined_outpost_holopads.dm @@ -0,0 +1,206 @@ +/** + * Storytelling Holograms + * Compatible to use in any maps. Ported and adapted from Paradise Station. + * + * How does it work? + * * Once a player crosses a 'step_trigger' placed by this object, it activates the holopad. + * * Hologram repeats the things written in 'list/things_to_say' in a loop. + */ +/obj/structure/environmental_storytelling_holopad + name = "holopad" + desc = "It's a floor-mounted device for projecting holographic images." + icon = 'icons/obj/holopad.dmi' + icon_state = "holopad0" + anchored = TRUE + layer = ABOVE_TILE_LAYER + + /// Have we been activated? If we have, we do not activate again. + var/activated = FALSE + + /// Tied effect to kill when we die. + var/obj/effect/overlay/our_holo + + /// Name of who we are speaking as. + var/speaking_name = "placeholder" + + /// Appearance of the hologram. + var/mob/holo_icon + + /// An assoc list of things to say. Key should contain the actual dialogue string, value will dictate whether the key is an emote or regular say. + /// eg: list("Billions must code a silly functionality!" = "says", "smiles like :)" = "emote") + /// If value is "emote", it will do an emote. Any other value will be displayed in the text along with the key. + var/list/things_to_say = list( + "Hi future coders." = "says", + "Welcome to real lore hologram hours." = "says sagely", + "People should have fun with these!" = "yells", + "does an emote because they can." = "emote" + ) + + /// The sounds our hologram makes when it speaks. Supports singleton sound categories. Null by default. + var/list/soundblock + + /// How long do we sleep between messages? 5 seconds by default. + var/loop_sleep_time = 5 SECONDS + + /// Seconds integer. If set, the hologram will wait the set amount of seconds before making its speech. This applied only once and is null by default. + var/sleep_before_speak = 5 SECONDS + + /// Accent tag of the holo. By default it's Text-to-Speech. For the full list, see: '_DEFINES/background.dm' + var/holo_accent_tag = ACCENT_TTS + + /// The language our hologram will speak. Tau Ceti by default. For the full list, see: '_DEFINES/species_languages.dm' + var/language = LANGUAGE_TCB + + /// How long should be the radius of step_triggers to place? 2 by default, so we get 5x5 area covered. + var/trigger_radius = 2 + + /// List of step_triggers associated with this instance. + var/list/step_trigger_group = list() + + /// Hologram icon path. + var/holo_icon_path = 'icons/mob/AI.dmi' + var/holo_icon_state = "floating_face_glitchy" + + /// Hex colour of the hologram. + var/holo_color = COLOR_SILVER + +/obj/structure/environmental_storytelling_holopad/mechanics_hints() + . += ..() + . += "This is a special holopad allows you to listen messages recorded in it. You may left click this [src] to replay the recorded message!" + +/obj/structure/environmental_storytelling_holopad/Initialize(mapload) + . = ..() + if(mapload) // give it some time for the map to initialize + addtimer(CALLBACK(src, PROC_REF(set_the_triggers)), 3 MINUTES) + else + set_the_triggers() + + +/obj/structure/environmental_storytelling_holopad/Destroy() + QDEL_NULL(our_holo) + QDEL_LAZYLIST(step_trigger_group) + return ..() + +/obj/structure/environmental_storytelling_holopad/proc/set_the_triggers() + for(var/turf/I in range(trigger_radius, src)) + var/obj/effect/step_trigger/holopad/H = new(I) + H.tied_holopad = src + step_trigger_group += H + +/obj/structure/environmental_storytelling_holopad/proc/start_message() + if(activated) + return + + QDEL_LAZYLIST(step_trigger_group) + activated = TRUE + holo_icon = new /mob/abstract(src) + holo_icon.set_invisibility(0) + holo_icon.icon = icon(holo_icon_path, holo_icon_state) + holo_icon.accent = holo_accent_tag + holo_icon.name = speaking_name + icon_state = "holopad2" + update_icon() + var/obj/effect/overlay/hologram = new(get_turf(src)) + our_holo = hologram + hologram.appearance = holo_icon.appearance + hologram.alpha = 150 + hologram.color = holo_color + hologram.mouse_opacity = MOUSE_OPACITY_TRANSPARENT + hologram.layer = FLY_LAYER + hologram.anchored = TRUE + hologram.set_light(2, 1, holo_color) + hologram.pixel_y = 16 + hologram.name = speaking_name + + for(var/I in things_to_say) + if(sleep_before_speak) + sleep(sleep_before_speak) + sleep_before_speak = null + + if(things_to_say[I] == "emote") + holo_icon.custom_emote(AUDIBLE_MESSAGE, "[I]") + sleep(loop_sleep_time) + continue + + hologram.langchat_speech("[I]", get_hearers_in_view(7, src), skip_language_check = TRUE) + for(var/mob/living/L in get_hearers_in_view(7, src)) + L.hear_say("[I]", "[things_to_say[I]]", GLOB.all_languages[language], speaker = holo_icon) + if(soundblock) + playsound(get_turf(src), text2path(soundblock), 60, FALSE) + sleep(loop_sleep_time) + + QDEL_NULL(our_holo) + icon_state = "holopad0" + activated = FALSE + +/obj/structure/environmental_storytelling_holopad/attack_hand(mob/user) + if(activated) + to_chat(user, SPAN_WARNING("\The [src] is already active!")) + return + + user.visible_message(SPAN_NOTICE("[user] presses their foot down on \the [src], replays the holopad message."), + SPAN_NOTICE("You press your foot down on \the [src], it replays the message.")) + start_message() + +// ---- Step trigger for holopads + +/obj/effect/step_trigger/holopad + name = "I shouldn't be placed by hand!" + players_only = TRUE + mobs_only = TRUE + + var/obj/structure/environmental_storytelling_holopad/tied_holopad + +/obj/effect/step_trigger/holopad/Trigger() + tied_holopad.start_message() + +// ---- Base type +/obj/structure/environmental_storytelling_holopad/quarantined_outpost + speaking_name = "Amalthea" + holo_accent_tag = ACCENT_SOL + holo_color = COLOR_PURPLE_GRAY + loop_sleep_time = 12 SECONDS + soundblock = "/singleton/sound_category/robot_talk" + things_to_say = list() + +/obj/structure/environmental_storytelling_holopad/quarantined_outpost/greet + things_to_say = list( + "Welcome, visitors. Your arrival constitutes an unschedul—sched... vi—visit to Sovereign Alliance pro—prop...erty." = "examines the visitors one by one, then says in a glitchy tone", + "This anomaly has been logged. Please refrain from committing further trespass." = "states flatly", + "This unit is designated as Amalthea, facility intelligence of S-S-F Nemora. This unit informs, this is not an appropriate time for visitation." = "adds monotonously", + "This facility is currently under quarantine measures, as per Directorate directives and universal biohazard safety protocols." = "says", + "Th# #nt—itie@#s po#sess... a lif# threa—... danger... Recommended co—courzzzzt... leave..." = "'s transmission abruptly broken into static, its words are now fractured into noise", + ) + +/obj/structure/environmental_storytelling_holopad/quarantined_outpost/console_inform + things_to_say = list( + "Facility's internal network has been neglected for ERR#... cycles, as much can be stated for the rest of systems." = "abruptly explains", + "This unit has a proposal. Your presence here will be permitted to provide assistance to maintenance crew, who are currently otherwise engaged, presumed missing or deceased." = "says after a moment of pause", + "As for compensation, your valiant efforts for the Greater Alliance will be mentioned in facility logs, addition to discussing a further agreement when the ne—ne—xtzzzzzt... director is appointed." = "says", + "For now, you will run into terminals similar to this one throughout the facility. They were repurposed to display tracking scan results for public access." = "says", + "Provided the link is established manually, it may prove to be crucial for neutralizing current outbreak." = "says", + "Nearest server relay is located at: cargo bay. You will find it at eastern wing, into the maintenance tunnels." = "says", + "There are one more located at atmospherics and another one accessible through hallway, outside of medical ward. Activating either one of the relays is likely to be sufficient." = "says" + ) + +/obj/structure/environmental_storytelling_holopad/quarantined_outpost/engineering_inform + things_to_say = list( + "Despite the engineering's best attempts to optimise the power consumption and provide a controlled combustion ignition, they had to shut the systems down to save what remains for the moment of need." = "says", + "Some systems may still experience stutter, especially after such an extended period of sleep." = "says", + "Remaining gas supply is likely to be sufficient to power the facility once more time. East from here, across the rift is where the extraction laboratory located at." = "says", + "Laboratory remains sealed and can only be unlocked from its checkpoint, which is located at the other side of this floor." = "says", + "Please excercise extreme caution." = "says" + ) + +/obj/structure/environmental_storytelling_holopad/quarantined_outpost/extraction_lab_inform + things_to_say = list( + "This laboratory is built on top a rift which was initially discovered by first expedition members sent by Department of Colonization." = "informs", + "It is also assumed to be the same location where the team in question went missing. Deep within is where the unidentified energy signature is originated at." = "says", + "There has been many attempts before the outbreak to understand what lies beneath, ranging from expedition to excavation. Each determined attempt was met with unideal consequences." = "says", + "This machinery, while this unit must inform that it is not at any liberty to disclose the details, is designed to extract the samples required for the next step." = "says", + "However, this will necessitate a thorough preparation. Firstly, this until will not permit activating the machine until the floor is neutralized from threats." = "says after a brief pause", + "Secondly, five sample canisters will be required to be brought to this room. First two conditions can be fulfilled with the help of tracking scanners, accessible in the public terminals." = "says", + "Lastly, it is highly recommended to barricade the laboratory. It is safe to assume below this rift is swarmed by the entities and the noise caused by the extraction process will alert a big majority of them." = "says, emphasizing on certain words", + "Their muscle tissues are developed enough to allow them break the walls apart, therefore it is advised to not rely on the wall barricades." = "says", + "Protect the machine, otherwise the operation will be a failure." = "says" + ) diff --git a/maps/away/away_site/quarantined_outpost/quarantined_outpost_landmarks.dm b/maps/away/away_site/quarantined_outpost/quarantined_outpost_landmarks.dm new file mode 100644 index 00000000000..44cb4b16eeb --- /dev/null +++ b/maps/away/away_site/quarantined_outpost/quarantined_outpost_landmarks.dm @@ -0,0 +1,117 @@ +//---- Base types + +/obj/effect/shuttle_landmark/quarantined_outpost + base_area = /area/space + base_turf = /turf/space + +/obj/effect/shuttle_landmark/quarantined_outpost/asteroid + base_area = /area/quarantined_outpost/exterior + base_turf = /turf/simulated/floor/exoplanet/asteroid/ash/rocky + +/obj/effect/shuttle_landmark/quarantined_outpost/shuttle_transit + name = "In transit" + landmark_tag = "nav_quarantined_outpost_shuttle_transit" + base_turf = /turf/space/transit/north + dir = NORTH + +// ---- Inner docking zones + +// ---- left side + +/obj/effect/shuttle_landmark/quarantined_outpost/asteroid/landing_1a + name = "Asteroid, Landing Zone, 1a" + landmark_tag = "nav_quarantined_outpost_asteroid_1a" + dir = NORTH + +/obj/effect/shuttle_landmark/quarantined_outpost/asteroid/landing_1b + name = "Asteroid, Landing Zone, 1b" + landmark_tag = "nav_quarantined_outpost_asteroid_1b" + dir = SOUTH + +/obj/effect/shuttle_landmark/quarantined_outpost/asteroid/landing_1c + name = "Asteroid, Landing Zone, 1c" + landmark_tag = "nav_quarantined_outpost_asteroid_1c" + dir = EAST + +/obj/effect/shuttle_landmark/quarantined_outpost/asteroid/landing_1d + name = "Asteroid, Landing Zone, 1d" + landmark_tag = "nav_quarantined_outpost_asteroid_1d" + dir = WEST + +// ---- right side + +/obj/effect/shuttle_landmark/quarantined_outpost/asteroid/landing_2a + name = "Asteroid, Landing Zone, 2a" + landmark_tag = "nav_quarantined_outpost_asteroid_2a" + dir = NORTH + +/obj/effect/shuttle_landmark/quarantined_outpost/asteroid/landing_2b + name = "Asteroid, Landing Zone, 2b" + landmark_tag = "nav_quarantined_outpost_asteroid_2b" + dir = SOUTH + +/obj/effect/shuttle_landmark/quarantined_outpost/asteroid/landing_2c + name = "Asteroid, Landing Zone, 2c" + landmark_tag = "nav_quarantined_outpost_asteroid_2c" + dir = EAST + +/obj/effect/shuttle_landmark/quarantined_outpost/asteroid/landing_2d + name = "Asteroid, Landing Zone, 2d" + landmark_tag = "nav_quarantined_outpost_asteroid_2d" + dir = WEST + +// ---- Space + +/obj/effect/shuttle_landmark/quarantined_outpost/space/space_1a + name = "Space, 1a" + landmark_tag = "nav_quarantined_outpost_space_1a" + dir = NORTH + +/obj/effect/shuttle_landmark/quarantined_outpost/space/space_1b + name = "Space, 1b" + landmark_tag = "nav_quarantined_outpost_space_1b" + dir = SOUTH + +/obj/effect/shuttle_landmark/quarantined_outpost/space/space_1c + name = "Space, 1c" + landmark_tag = "nav_quarantined_outpost_space_1c" + dir = EAST + +/obj/effect/shuttle_landmark/quarantined_outpost/space/space_1d + name = "Space, 1d" + landmark_tag = "nav_quarantined_outpost_space_1d" + dir = WEST + +// ---- + +/obj/effect/shuttle_landmark/quarantined_outpost/space/space_2a + name = "Space, 2a" + landmark_tag = "nav_quarantined_outpost_space_2a" + dir = NORTH + +/obj/effect/shuttle_landmark/quarantined_outpost/space/space_2b + name = "Space, 2b" + landmark_tag = "nav_quarantined_outpost_space_2b" + dir = SOUTH + +/obj/effect/shuttle_landmark/quarantined_outpost/space/space_2c + name = "Space, 2c" + landmark_tag = "nav_quarantined_outpost_space_2c" + dir = EAST + +/obj/effect/shuttle_landmark/quarantined_outpost/space/space_2d + name = "Space, 2d" + landmark_tag = "nav_quarantined_outpost_space_2d" + dir = WEST + +// Airlocks + +/obj/effect/map_effect/marker/airlock/quarantined_outpost/entrance + name = "Entrance" + master_tag = "airlock_quarantined_outpost_entrance" + +/obj/effect/map_effect/marker/airlock/quarantined_outpost/mining + name = "Excavation Sector" + master_tag = "airlock_quarantined_outpost_mining" + + diff --git a/maps/away/away_site/quarantined_outpost/quarantined_outpost_objects.dm b/maps/away/away_site/quarantined_outpost/quarantined_outpost_objects.dm new file mode 100644 index 00000000000..fa5a26da0e2 --- /dev/null +++ b/maps/away/away_site/quarantined_outpost/quarantined_outpost_objects.dm @@ -0,0 +1,1214 @@ +// Global lists used in this ruin + +/// List of ruin creatures that exists. +GLOBAL_LIST_EMPTY(quarantined_outpost_creatures) + +/// List of ruin canisters. (will be) Used in multiple systems. +GLOBAL_LIST_EMPTY(quarantined_outpost_canisters) + +/// List of landmarkslocations for various things (randomly spawning creatures, canisters, etc...) + +/// List of the things '/obj/machinery/computer/terminal/mob_tracker' required to track. +GLOBAL_LIST_EMPTY(trackables_pool) + +#define BREAK_WALL_COOLDOWN 5 SECONDS +#define BREAK_EXTRACTOR_COOLDOWN 10 SECONDS + +/*###################################### + RUIN STUFF +######################################*/ + +//---- Bluespace portal +// WIP, its functions will be completed at PART 2(tm) +/obj/structure/bluespace_portal_device + name = "\improper Unknown Machine" + desc = "A contraption of dubious purpose. Its screens and indicators are blank, standing lifeless." + icon = 'icons/obj/structure/bluespace_portal.dmi' + icon_state = "bluespace_tap" + pixel_x = -32 + pixel_y = -32 + +/*###################################### + RUIN CREATURES +######################################*/ + +/** + * Revivable mobs + * + * * Unless their corpse is set on fire by either a flamethrower, a lit flare or any other means, the mob will reive after 3 minutes. + * * Additionally this mob yells at its target if soundblock is set. + */ +/mob/living/simple_animal/hostile/revivable + name = "abomination" + desc = "Its ominous presence is enough to make even the calmest soul shudder. It seems agitated and you probably shouldn't get close to it." + icon = 'icons/mob/npc/animal.dmi' + icon_state = "abomination" + icon_living = "abomination" + icon_dead = "abomination_dead" + tameable = FALSE + blood_type = "#490d0d" + + maxHealth = 300 + health = 300 + speed = 6 + + melee_damage_lower = 30 + melee_damage_upper = 30 + armor_penetration = 15 + + /// Used on deleting revive timer if the mob is burning while being dead. + var/revive_timer + /// The amount of time it takes for this mob to revive. 3 minutes by default. + var/revival_countdown = 3 MINUTES + /// Did we yell at our unfortunate victim the moment we spot them? This prevents yell spams. + var/recently_yelled = FALSE + /// The mob will yell at its targets with the sound path set here. Leave as null to disable. + var/mob_soundblock_yell = "/singleton/sound_category/bear_loud" + /// Changes the mobs description after death if set. + var/desc_after_death = "One might wonder if the evolution ever had a hand in its creation. Whatever it was, it's now dead, hopefully..." + +/mob/living/simple_animal/hostile/revivable/death() + . = ..() + if(desc_after_death) + desc = desc_after_death + playsound(loc, 'sound/effects/creatures/siro_shriek.ogg', 60, 1) + START_PROCESSING(SSprocessing, src) + +// Checks every process cycle if our mob is burning and adds a timer for 'revive()' proc. +// If the mob was burned before time ran out, we stop the timer and processing. +/mob/living/simple_animal/hostile/revivable/process() + var/turf/T = get_turf(src) + var/obj/item/device/flashlight/flare/F = locate(/obj/item/device/flashlight/flare) in T + if(F?.on) + src.IgniteMob(2) + F.fuel = 0 + F.turn_off() // one flare per mob, otherwise this would make flamethrower mechanic obsolete + playsound(loc, 'sound/items/flare.ogg', 60, 1) + + if(on_fire || QDELETED(src)) // mob is burning or ceased to exist, cancel the revive + if(revive_timer) + deltimer(revive_timer) + revive_timer = null + playsound(loc, 'sound/effects/creatures/siro_shriek.ogg', 60, 1) + src.visible_message((SPAN_DANGER("\improper [src] trembles and lets out a final, sharp shriek as its corpse is consumed by the flames!"))) + STOP_PROCESSING(SSprocessing, src) + return + + if(!revive_timer) // if our timer is already running don't start new timers + revive_timer = addtimer(CALLBACK(src, PROC_REF(revive)), revival_countdown, TIMER_STOPPABLE) + +/mob/living/simple_animal/hostile/revivable/revive() + . = ..() + update_icon() + desc = initial(desc) + src.visible_message((SPAN_DANGER("\improper [src] abruptly rises with a deafening shriek!"))) + playsound(loc, 'sound/effects/creatures/siro_shriek.ogg', 60, 1) + revive_timer = null // timer served its purpose for one loop, getting it ready if our mob dies again + STOP_PROCESSING(SSprocessing, src) // we are revived and no longer need to check if we were burning + +/mob/living/simple_animal/hostile/revivable/update_fire() + + CutOverlays(image("icon" = 'icons/mob/burning/burning_generic.dmi', "icon_state" = "lower")) + + if(on_fire) + AddOverlays(image("icon" = 'icons/mob/burning/burning_generic.dmi', "icon_state" = "lower")) + +/mob/living/simple_animal/hostile/revivable/AttackTarget() + . = ..() + if(mob_soundblock_yell) + if(last_found_target && !recently_yelled) + playsound(loc, text2path(mob_soundblock_yell), 60) + recently_yelled = TRUE + +/mob/living/simple_animal/hostile/revivable/LoseTarget() + . = ..() + if(recently_yelled) + recently_yelled = FALSE + +// ---- Husked creature + +/mob/living/simple_animal/hostile/revivable/husked_creature + name = "husked creature" + desc = "This eerie figure is unusually pale, its body parts are difficult to discern. The blade that the creature has as an arm looks sharp and menacing." + icon = 'icons/mob/npc/human.dmi' + icon_state = "the_thing" + icon_living = "the_thing" + icon_dead = "the_thing_dead" + faction = "abominations" + maxHealth = 250 + health = 250 + speed = 6 + +/mob/living/simple_animal/hostile/revivable/husked_creature/Initialize() + . = ..() + if(prob(50)) + icon_state = "the_thing_chitin" + icon_living = "the_thing_chitin" + icon_dead = "the_thing_chitin_dead" + + maxHealth = 350 // chitinous armor + health = 350 + speed = 7 // armor heavy + +// ---- Abomination +/mob/living/simple_animal/hostile/revivable/abomination + name = "abomination" + icon = 'icons/mob/npc/animal.dmi' + icon_state = "abomination" + icon_living = "abomination" + icon_dead = "abomination_dead" + faction = "abominations" + + + /// If true, will split into lesser creatures if someone approaches to the corpse. Has a chance to be set to true in Init. + var/trap_split = FALSE + /// Makes the mob appear in disguise. If the mob attacks someone or gets attacked, the disguise is blown. + /// If true, it will adjust mobs attack reactions and make them pacifist until it reaches someone. Has a chance to be set to True in Init. + var/mob_in_disguise = FALSE + /// Used to store `talk_to_prey()` cooldown. + var/last_time_spoken + /// Used in `talk_to_prey()`. + var/language = LANGUAGE_TCB + /// Used for disabling some abilities for horde and a few other subtypes. + var/disguise_disabled = FALSE + bypass_blood_overlay = TRUE + +/mob/living/simple_animal/hostile/revivable/abomination/Initialize() + . = ..() + if(disguise_disabled) + if(prob(7)) + trap_split = TRUE + return + if(prob(40)) + trap_split = TRUE + if(prob(20)) + mob_in_disguise = TRUE + maxHealth = 400 // the mob in disguise makes it easy target for a few bullets. This should even the odds. + health = 400 + speed = 15 + melee_damage_upper = 60 // punishment for clueless preys. + mob_soundblock_yell = null // letting us skip the yell check in parent `AttackTarget()` proc + destroy_surroundings = FALSE // we don't punch stufff around when we're in disguise! + new /obj/effect/landmark/corpse/quarantined_outpost(get_turf(src)) // janky way to steal identity, but it works... + addtimer(CALLBACK(src, PROC_REF(copy_appearance)), 1 SECONDS) + +/mob/living/simple_animal/hostile/revivable/abomination/proc/copy_appearance() + for(var/mob/living/carbon/human/H in range(2, src)) + if(H && !H.client) // safety check, so we don't accidentally delete players if the mob happen to spawn near them for some reason. + H.lying = FALSE + H.update_icon() + appearance = H.appearance + name = "Unknown" + desc = "The way they move is rather rigid and limping. Their blank eyes are locked on you, the monotonous expression is making your skin crawl. Who is this person?" + qdel(H) + +/mob/living/simple_animal/hostile/revivable/abomination/process() + . = ..() + if(trap_split && src.stat == DEAD && locate(/mob/living/carbon) in range(2, src)) + deltimer(revive_timer) // the mob shouldn't revive when the trap is engaged + revive_timer = null + trap_split_start() + +/mob/living/simple_animal/hostile/revivable/abomination/proc/trap_split_start() + STOP_PROCESSING(SSprocessing, src) + src.visible_message((SPAN_DANGER("\improper [src]'s corpse begins to vibrate. Uh... Oh..."))) + animate(src, pixel_x = pixel_x + pick(-2, -1, 1, 2), pixel_y = pixel_y + pick(-3, -2, 2, 3), time = 1 DECISECONDS, loop = 50, easing = JUMP_EASING) + animate(pixel_x = 0, pixel_y = 0, time = 1 DECISECONDS, easing = JUMP_EASING) + sleep(2 SECONDS) + playsound(get_turf(src), 'sound/effects/lingabsorbs.ogg', 50, 1) // takes 3 seconds + sleep(3 SECONDS) + var/lesser_creature_amount = rand(1, 3) + for(var/i in 1 to lesser_creature_amount) + new /mob/living/simple_animal/hostile/giant_spider/lesser_abomination/(get_turf(src)) + new /obj/effect/gibspawner/generic(get_turf(src)) + playsound(loc, 'sound/effects/splat.ogg', 50, 1) + qdel(src) + +/mob/living/simple_animal/hostile/revivable/abomination/AttackTarget() + . = ..() + if(mob_in_disguise && ismob(last_found_target) && prob(25) && world.time > last_time_spoken + 10 SECONDS) + last_time_spoken = world.time + talk_to_prey() + +/mob/living/simple_animal/hostile/revivable/abomination/proc/talk_to_prey() + var/list/mimic_sentences = list( + "Who... are you...?", + "It... hurts...", + "Who... is there...?", + "H-help... me...", + "I... have been... l-looking for you...", + "It's... grim...", + "I can... show it to y-you...", + "I know... a way... o-out...", + "AAaargh!" + ) + var/chosen_sentence = pick(mimic_sentences) + langchat_speech("[chosen_sentence]", get_hearers_in_view(7, src), skip_language_check = TRUE) + for(var/mob/living/L in get_hearers_in_view(7, src)) + L.hear_say("[chosen_sentence]", "says", GLOB.all_languages[language], speaker = src) + +/mob/living/simple_animal/hostile/revivable/abomination/on_attack_mob(var/mob/hit_mob, var/obj/item/organ/external/limb) + . = ..() + if(mob_in_disguise && isliving(hit_mob)) // we hit a mob? Disguise is gone + disregard_the_disguise() + +/mob/living/simple_animal/hostile/revivable/abomination/apply_damage(damage = 0, damagetype = DAMAGE_BRUTE, def_zone, blocked, used_weapon, damage_flags = 0, armor_pen, silent = FALSE) + . = ..() + if(mob_in_disguise && damage) // we were hit? Disguise is gone + disregard_the_disguise() + +/mob/living/simple_animal/hostile/revivable/abomination/proc/disregard_the_disguise() + mob_in_disguise = FALSE + speed = initial(speed) + melee_damage_upper = initial(melee_damage_upper) + destroy_surroundings = TRUE + icon = 'icons/mob/npc/animal.dmi' + icon_state = "abomination" + UpdateOverlays() + CutOverlays() + name = initial(name) + desc = initial(desc) + new /obj/effect/gibspawner/generic(get_turf(src)) + src.visible_message((SPAN_DANGER("Suddenly, [src] twists and reveals a monstrosity..."))) + playsound(loc, 'sound/effects/splat.ogg', 50, 1) + playsound(loc, 'sound/effects/creatures/siro_shriek.ogg', 60, 1) + +// Lesser Abomination +/mob/living/simple_animal/hostile/giant_spider/lesser_abomination + name = "lesser abomination" + desc = "An agile, chitinous creature." + icon = 'icons/mob/npc/animal.dmi' + icon_state = "lesser_ling" + tameable = FALSE + faction = "abominations" + + maxHealth = 50 + health = 50 + + speed = 2 + + melee_damage_lower = 5 + melee_damage_upper = 10 + armor_penetration = 5 + poison_per_bite = 1 + poison_type = /singleton/reagent/soporific // sweet, horrible dreams for its undoubting victims + +/mob/living/simple_animal/hostile/giant_spider/lesser_abomination/Initialize() + . = ..() + playsound(loc, 'sound/effects/creatures/siro_shriek.ogg', 40, 1) + +/mob/living/simple_animal/hostile/giant_spider/lesser_abomination/death() + . = ..() + new /obj/effect/gibspawner/generic(get_turf(src)) + qdel(src) + +// ---- Ruin specific mobs, don't spawn these outside of the ruin. Use the parent types instead! + +// Husked creature +/mob/living/simple_animal/hostile/revivable/husked_creature/quarantined_outpost + break_stuff_probability = 0 // to avoid the ruin looking like a road roller went over it. Mobs should still be able to destroy whatever is blocking their way to their target + +/mob/living/simple_animal/hostile/revivable/husked_creature/quarantined_outpost/Initialize() + . = ..() + GLOB.quarantined_outpost_creatures += src + GLOB.trackables_pool += src + +/mob/living/simple_animal/hostile/revivable/husked_creature/quarantined_outpost/Destroy() + GLOB.quarantined_outpost_creatures -= src + GLOB.trackables_pool -= src + return ..() + +/mob/living/simple_animal/hostile/revivable/husked_creature/quarantined_outpost/death() + . = ..() + GLOB.quarantined_outpost_creatures -= src + GLOB.trackables_pool -= src + +/mob/living/simple_animal/hostile/revivable/husked_creature/quarantined_outpost/revive() + . = ..() + GLOB.quarantined_outpost_creatures += src + GLOB.trackables_pool += src + +// Abomination +/mob/living/simple_animal/hostile/revivable/abomination/quarantined_outpost + /// Used for 'talk_to_prey()' stuff. + accent = ACCENT_SOL + break_stuff_probability = 0 + +/mob/living/simple_animal/hostile/revivable/abomination/quarantined_outpost/Initialize() + . = ..() + GLOB.quarantined_outpost_creatures += src + GLOB.trackables_pool += src + +/mob/living/simple_animal/hostile/revivable/abomination/quarantined_outpost/Destroy() + GLOB.quarantined_outpost_creatures -= src + GLOB.trackables_pool -= src + return ..() + +/mob/living/simple_animal/hostile/revivable/abomination/quarantined_outpost/death() + . = ..() + GLOB.quarantined_outpost_creatures -= src + GLOB.trackables_pool -= src + +/mob/living/simple_animal/hostile/revivable/abomination/quarantined_outpost/revive() + . = ..() + GLOB.quarantined_outpost_creatures += src + GLOB.trackables_pool += src + +// Abomination, disguiseless +/mob/living/simple_animal/hostile/revivable/abomination/quarantined_outpost/disguiseless + disguise_disabled = TRUE + +// ---- special types used in horde spawner (shamelessly copied and adjusted from phoron_deposit_objects.dm) +// contains two mobs with same procs defined under them. + +// Husked Creature - Horde edition + +/mob/living/simple_animal/hostile/revivable/husked_creature/quarantined_outpost/horde + var/tmp/breaking_wall = FALSE + break_stuff_probability = 100 + maxHealth = 200 + health = 200 + +/mob/living/simple_animal/hostile/revivable/husked_creature/quarantined_outpost/horde/Move(NewLoc) + if(breaking_wall) + return FALSE // we're breaking something and we need to stand still + + var/turf/target_turf = NewLoc + var/obj/machinery/door/firedoor/F = locate(/obj/machinery/door/firedoor) in target_turf + var/obj/structure/quarantined_outpost_extractor/EX = locate(/obj/structure/quarantined_outpost_extractor) in target_turf + + if(istype(target_turf, /turf/simulated/wall) || EX || (F && F.density)) + breaking_wall = TRUE + INVOKE_ASYNC(src, PROC_REF(destroy_obstacle), target_turf, F, EX) + + return FALSE + return ..() + +/mob/living/simple_animal/hostile/revivable/husked_creature/quarantined_outpost/horde/proc/destroy_obstacle(turf/target_turf, obj/F, obj/EX) + if(istype(target_turf, /turf/simulated/wall)) + visible_message(SPAN_DANGER("\the [src] is attempting to break down \the [target_turf]!")) + playsound(target_turf, 'sound/effects/meteorimpact.ogg', 50, 1) + sleep(BREAK_WALL_COOLDOWN) + if(istype(target_turf, /turf/simulated/wall) && !QDELETED(src) && stat != DEAD && get_dist(src, target_turf) == 1) // we check again + visible_message(SPAN_DANGER("With a loud thud, \the [src] breaks down the [target_turf]!")) + playsound(target_turf, 'sound/effects/meteorimpact.ogg', 50, 1) + target_turf.ChangeTurf(/turf/simulated/floor/exoplanet/asteroid/ash/rocky) + new /obj/effect/decal/cleanable/floor_damage/broken6(target_turf) + breaking_wall = FALSE + return + + if(F) // ---- firedoor + visible_message(SPAN_DANGER("\the [src] is attempting to break down the [F]!")) + playsound(target_turf, 'sound/effects/meteorimpact.ogg', 50, 1) + sleep(BREAK_WALL_COOLDOWN) + if(!QDELETED(F) && !QDELETED(src) && stat != DEAD && get_dist(src, target_turf) == 1) // check again if conditions are still valid after sleep + qdel(F) + visible_message(SPAN_DANGER("With a loud thud, \the [src] breaks down \the [F]!")) + playsound(target_turf, 'sound/effects/meteorimpact.ogg', 50, 1) + breaking_wall = FALSE + return + + if(EX) + visible_message(SPAN_DANGER("\the [src] is attempting to break down the [EX]!")) + playsound(target_turf, 'sound/effects/meteorimpact.ogg', 50, 1) + sleep(BREAK_EXTRACTOR_COOLDOWN) + if(!QDELETED(EX) && !QDELETED(src) && stat != DEAD && get_dist(src, target_turf) == 1) + qdel(EX) + visible_message(SPAN_DANGER("With a loud thud, \the [src] breaks down \the [EX]!")) + playsound(target_turf, 'sound/effects/meteorimpact.ogg', 50, 1) + breaking_wall = FALSE + +// Abomination - Horde edition + +/mob/living/simple_animal/hostile/revivable/abomination/quarantined_outpost/horde + var/tmp/breaking_wall = FALSE + break_stuff_probability = 100 + disguise_disabled = TRUE + maxHealth = 250 + health = 250 + +/mob/living/simple_animal/hostile/revivable/abomination/quarantined_outpost/horde/Move(NewLoc) + if(breaking_wall) + return FALSE // we're breaking something and we need to stand still + + var/turf/target_turf = NewLoc + var/obj/machinery/door/firedoor/F = locate(/obj/machinery/door/firedoor) in target_turf + var/obj/structure/quarantined_outpost_extractor/EX = locate(/obj/structure/quarantined_outpost_extractor) in target_turf + + if(istype(target_turf, /turf/simulated/wall) || EX || (F && F.density)) + breaking_wall = TRUE + INVOKE_ASYNC(src, PROC_REF(destroy_obstacle), target_turf, F, EX) + + return FALSE + return ..() + +/mob/living/simple_animal/hostile/revivable/abomination/quarantined_outpost/horde/proc/destroy_obstacle(turf/target_turf, obj/F, obj/EX) + if(istype(target_turf, /turf/simulated/wall)) + visible_message(SPAN_DANGER("\the [src] is attempting to break down \the [target_turf]!")) + playsound(target_turf, 'sound/effects/meteorimpact.ogg', 50, 1) + sleep(BREAK_WALL_COOLDOWN) + if(istype(target_turf, /turf/simulated/wall) && !QDELETED(src) && stat != DEAD && get_dist(src, target_turf) == 1) // we check again + visible_message(SPAN_DANGER("With a loud thud, \the [src] breaks down the [target_turf]!")) + playsound(target_turf, 'sound/effects/meteorimpact.ogg', 50, 1) + target_turf.ChangeTurf(/turf/simulated/floor/exoplanet/asteroid/ash/rocky) + new /obj/effect/decal/cleanable/floor_damage/broken6(target_turf) + breaking_wall = FALSE + return + + if(F) // ---- firedoor + visible_message(SPAN_DANGER("\the [src] is attempting to break down the [F]!")) + playsound(target_turf, 'sound/effects/meteorimpact.ogg', 50, 1) + sleep(BREAK_WALL_COOLDOWN) + if(!QDELETED(F) && !QDELETED(src) && stat != DEAD && get_dist(src, target_turf) == 1) // check again if conditions are still valid after sleep + qdel(F) + visible_message(SPAN_DANGER("With a loud thud, \the [src] breaks down \the [F]!")) + playsound(target_turf, 'sound/effects/meteorimpact.ogg', 50, 1) + breaking_wall = FALSE + return + + if(EX) + visible_message(SPAN_DANGER("\the [src] is attempting to break down the [EX]!")) + playsound(target_turf, 'sound/effects/meteorimpact.ogg', 50, 1) + sleep(BREAK_EXTRACTOR_COOLDOWN) + if(!QDELETED(EX) && !QDELETED(src) && stat != DEAD && get_dist(src, target_turf) == 1) + qdel(EX) + visible_message(SPAN_DANGER("With a loud thud, \the [src] breaks down \the [EX]!")) + playsound(target_turf, 'sound/effects/meteorimpact.ogg', 50, 1) + breaking_wall = FALSE + +/*###################################### + HORDE LOGIC (partially copied over from `phoron_deposit_objects.dm`) +######################################*/ + +/obj/structure/quarantined_outpost_extractor + name = "HPMER Mk. I" + desc = "A peculiar machine. Its alloy construction appears slightly less corroded than its surroundings." + desc_extended = "\ + Also known as the 'High-Pressure Matter Extraction Rig', it's renowned as one of the loudest non-explosive contraptions ever created. Due to its \ + high operating pressure, this machine can generate vibrations at volumes far beyond what one would expect from a device of this size. This one is particularly \ + a relic. \ + " + icon = 'icons/obj/kinetic_harvester.dmi' + icon_state = "off" + anchored = TRUE + density = TRUE + + var/obj/effect/fauna_spawner/organized/quarantined_outpost/spawner + var/obj/effect/map_effect/interval/screen_shaker/quarantined_outpost/shaker_effect + + var/list/connector_locations_list = list() + var/working = FALSE + + /// Amount of canisters filled by the machine. Once it reaches 5 the operation stops. + var/canisters_filled = 0 + +/obj/structure/quarantined_outpost_extractor/Initialize() + . = ..() + return INITIALIZE_HINT_LATELOAD + +/obj/structure/quarantined_outpost_extractor/LateInitialize() + spawner = locate(/obj/effect/fauna_spawner/organized/quarantined_outpost) in get_turf(src) + var/obj/effect/landmark/quarantined_outpost/canister_spawn/CS + var/obj/structure/quarantined_outpost/fluff_connector/connector + var/obj/effect/landmark/quarantined_outpost/creature/creature_spawn + var/list/ruin_creatures = list( + /mob/living/simple_animal/hostile/revivable/abomination/quarantined_outpost, + /mob/living/simple_animal/hostile/revivable/husked_creature/quarantined_outpost + ) + var/chosen_ruin_creature + var/list/possible_locations = list() + var/turf/T = get_turf(src) + + for(CS in GLOB.landmarks_list) // canister locations + if(CS.z == T.z) + possible_locations += get_turf(CS) + for(var/i in 1 to 5) // only 5 canisters needed for this map + new /obj/structure/quarantined_outpost/fluff_canister(pick_n_take(possible_locations)) + possible_locations.Cut() + + for(connector in world) // getting connector locations + if(connector.z == T.z) + connector_locations_list += get_turf(connector) + + for(creature_spawn in GLOB.landmarks_list) // non-horde ruin creatures + if(creature_spawn.z == T.z) + possible_locations += get_turf(creature_spawn) + for(var/i in 1 to rand(20, 25)) // 20-25 creatures + chosen_ruin_creature = pick(ruin_creatures) + new chosen_ruin_creature(pick_n_take(possible_locations)) + + +/obj/structure/quarantined_outpost_extractor/Destroy() // game over man, it's game over... + qdel(spawner) + qdel(shaker_effect) + return ..() + +/obj/structure/quarantined_outpost_extractor/proc/start_extraction() + icon_state = "on" + for(var/mob/M in range(50, src)) + if(M.client) + to_chat(M, SPAN_DANGER("After a long mechanical hiss, the machine starts up with a jolt. Heavy thumps and the grind of hydraulics fill the air. \ + Through the noise, you catch something else: a faint sound outside the windows, echoing from deep within the abyss. The air grows tense as the screeches draw closer. \ + You have a really bad feeling about this...")) + playsound(M, 'sound/mecha/powerup.ogg', 50, FALSE) + spawn(4 SECONDS) // I put my hopes that this thing captures the ref variable that started the process... + playsound(M, 'sound/music/quarantined_outpost.ogg', 30, FALSE) + + sleep(40 SECONDS) // just before the beat begins, this HAS to be done with style + shaker_effect = new /obj/effect/map_effect/interval/screen_shaker/quarantined_outpost(get_turf(src)) + activate_fauna_spawners(src.z) + working = TRUE + INVOKE_ASYNC(src, PROC_REF(process_mini_game)) + + // ---- core function of the horde mini-game +/obj/structure/quarantined_outpost_extractor/proc/process_mini_game() + var/obj/structure/quarantined_outpost/fluff_canister/canister + while(working && src) + for(var/turf/connector_turf in connector_locations_list) + canister = locate(/obj/structure/quarantined_outpost/fluff_canister) in connector_turf + if(canister && canister.connected) + canister.percentage = min(canister.percentage + 10, 100) // make sure it doesn't exceed 100 while we add 10% each time + canister.update_icon() + if(canister.percentage == 100) + canister.toggle_fastening() + canisters_filled++ + + if(canisters_filled == 5) // mission successful, shutting down the monster magnet + working = FALSE + spawner.stop_spawning() + qdel(shaker_effect) + icon_state = "off" + for(var/mob/M in view(7, src)) + playsound(M, 'sound/mecha/mech-shutdown.ogg', 50, FALSE) + to_chat(M, SPAN_DANGER("\The [src]'s hydraulics beginning to slow down, the machine releases a long hiss for one last time.")) + return + + // it takes 2 minutes to completely fill a canister. There is a total of 5 canister and 2 connector ports. Event takes 6 minutes at best. + sleep(12 SECONDS) + +// ---- Fluff objects used in extraction/horde mini-game + +/obj/structure/quarantined_outpost/fluff_connector + name = "connector port" + desc = "Doesn't seem to be designed for regular atmospheric components." + icon = 'icons/atmos/connector.dmi' + icon_state = "connector-fuel" + anchored = TRUE + +/obj/structure/quarantined_outpost/fluff_canister + name = "NEMORA labelled canister" + desc = "A fuel canister with an unique connector port." + icon = 'icons/obj/atmos.dmi' + icon_state = "brown" + density = TRUE + anchored = FALSE + + var/connected = FALSE + var/percentage = 0 + +/obj/structure/quarantined_outpost/fluff_canister/Initialize() + . = ..() + GLOB.quarantined_outpost_canisters += src + GLOB.trackables_pool += src + update_icon() + +/obj/structure/quarantined_outpost/fluff_canister/feedback_hints(mob/user, distance, is_adjacent) + . += ..() + if(distance <= 1) + . += "[icon2html(src, user)] The pressure indicator on \the [src] reads: [percentage]% full!" + +/obj/structure/quarantined_outpost/fluff_canister/Destroy() + GLOB.quarantined_outpost_canisters -= src + GLOB.trackables_pool -= src + return ..() + +/obj/structure/quarantined_outpost/fluff_canister/attackby(obj/item/attacking_item, mob/user) + if(attacking_item.iswrench()) + if(!locate(/obj/structure/quarantined_outpost/fluff_connector) in get_turf(src)) + to_chat(user, SPAN_WARNING("There is no suitable port to secure \the [src].")) + return TRUE + if(percentage == 100) + to_chat(user, SPAN_WARNING("\The [src] is already full! You can't connect this here.")) + return TRUE + toggle_fastening(user) + return TRUE + + if(istype(attacking_item, /obj/item/device/analyzer) && Adjacent(user)) + to_chat(user, "[icon2html(src, user)] The pressure indicator on \the [src] reads: [percentage]% full!") + return TRUE + return ..() + +/obj/structure/quarantined_outpost/fluff_canister/proc/toggle_fastening(mob/user) + connected = !connected + anchored = !anchored + if(user) + to_chat(user, SPAN_NOTICE("You [connected ? "secure" : "unsecure"] \the [src].")) + else + visible_message(SPAN_NOTICE("\The [src] unfastens itself as the percentage indicator reached [percentage]%!")) + playsound(get_turf(src), 'sound/items/wrench.ogg', 50) + update_icon() + +/obj/structure/quarantined_outpost/fluff_canister/update_icon() + ClearOverlays() + set_light(FALSE) + + if(connected) + AddOverlays("can-connector") + switch(percentage) + if(0 to 10) + var/mutable_appearance/indicator_overlay = mutable_appearance(icon, "can-o0", plane = ABOVE_LIGHTING_PLANE) + AddOverlays(indicator_overlay) + set_light(1.4, 1, COLOR_RED_LIGHT) + if(11 to 30) + var/mutable_appearance/indicator_overlay = mutable_appearance(icon, "can-o1", plane = ABOVE_LIGHTING_PLANE) + AddOverlays(indicator_overlay) + set_light(1.4, 1, COLOR_RED_LIGHT) + if(31 to 99) + var/mutable_appearance/indicator_overlay = mutable_appearance(icon, "can-o2", plane = ABOVE_LIGHTING_PLANE) + AddOverlays(indicator_overlay) + set_light(1.4, 1, COLOR_YELLOW) + if(100) + var/mutable_appearance/indicator_overlay = mutable_appearance(icon, "can-o3", plane = ABOVE_LIGHTING_PLANE) + AddOverlays(indicator_overlay) + set_light(1.4, 1, COLOR_BRIGHT_GREEN) + +/obj/effect/map_effect/interval/screen_shaker/quarantined_outpost + interval_lower_bound = 10 SECOND + interval_upper_bound = 30 SECONDS + + shake_radius = 14 + shake_strength = 2 + play_rumble_sound = TRUE + +/// Used for location information, some are randomly choosen throughout the map to spawn certain things. +/obj/effect/landmark/quarantined_outpost + name = "base type" + icon = 'icons/effects/map_effects.dmi' + icon_state = "mob_spawn" + +/obj/effect/landmark/quarantined_outpost/canister_spawn + name = "possible canister location" + icon_state = "object_spawn" + +/obj/effect/landmark/quarantined_outpost/creature + name = "possible creature location" + +/*###################################### + CONSOLES +######################################*/ + +/** + * Tracker Consoles + * Used for tracking mobs and objects that exists in the same Z level as the console is. + * How to use it? + * * Define a subtype of this and put the types you need to have tracked in `types_to_track` list. + * * Add your mobs/objects to `GLOB.trackables_pool`. For example, see: `/mob/living/simple_animal/hostile/revivable/abomination/quarantined_outpost` + */ +/obj/machinery/computer/terminal/mob_tracker + name = "tracking terminal" + icon_screen = "command" + icon_keyboard = "atmos_key" + icon_keyboard_emis = "atmos_key_mask" + + /// Lists of type paths used to check tagging mobs to track. Put your types here. + var/list/types_to_track + + /// Leave as null if you wish to use default theme. + var/tgui_theme + + /// Last time we have used the console's refresh function. + var/cooldown_until + var/cooldown = 3 MINUTE + + /// If true, the console won't display the scan readings. Useful for cases if this object needs a conditional use. + var/disabled = FALSE + /// The text that'll be displayed in disabled console screen. + var/no_data_description + + /// Local assoc list of area names, each key assigned a number, the amount of mobs present in the associated area. + var/list/areas_with_mobs + var/list/areas_with_objects + +/obj/machinery/computer/terminal/mob_tracker/proc/categorize_trackables(mob/user) + playsound(get_turf(src), /singleton/sound_category/keyboard_sound, 30, TRUE) + if(cooldown_until > world.time) + to_chat(user, SPAN_WARNING("Terminal declines your input. Scanners are still preparing for the queries, you may try again in [time2text(cooldown_until - world.time, "mm:ss")] seconds.")) + return + + // this cleans the lists for every requested refresh + LAZYNULL(areas_with_mobs) + LAZYNULL(areas_with_objects) + + for(var/I in GLOB.trackables_pool) // actual categorizing starts here + var/turf/T = get_turf(I) + if(!T || T.z != src.z || !is_type_in_list(I, types_to_track)) // validity check + continue + + var/area_name = get_area(T) + if(ismob(I)) // ---- mobs are categorized here + LAZYOR(areas_with_mobs, area_name) // if we don't have the area name present in the list, we create a new one + areas_with_mobs[area_name]++ + else // ---- anything else categorized here + LAZYOR(areas_with_objects, area_name) + areas_with_objects[area_name]++ + cooldown_until = world.time + cooldown + +/obj/machinery/computer/terminal/mob_tracker/ui_interact(mob/user, datum/tgui/ui) + ui = SStgui.try_update_ui(user, src, ui) + if(!ui) + ui = new(user, src, "MobTracker", capitalize_first_letters(name)) + ui.open() + +/obj/machinery/computer/terminal/mob_tracker/ui_data(mob/user) + var/list/data = list() + + data["areas_containing_mobs"] = areas_with_mobs + data["areas_containing_objects"] = areas_with_objects + data["tgui_theme"] = tgui_theme + data["disabled"] = disabled + data["no_data_description"] = no_data_description + + return data + +/obj/machinery/computer/terminal/mob_tracker/ui_act(action, params) + . = ..() + if(.) + return + if(action) + categorize_trackables(usr) + +/obj/machinery/computer/terminal/mob_tracker/attack_hand(mob/user) + if(..()) + return + ui_interact(user) + +/// If this object is present in the same Z level as `/obj/machinery/computer/terminal/mob_tracker`, trackers will be dependant on this machine to stay active in order to work. +/obj/machinery/mob_tracker/server_relay + name = "server relay" + desc = "An enclosed server machinery." + icon = 'icons/obj/machinery/research.dmi' + icon_state = "server-off" + density = TRUE + anchored = TRUE + idle_power_usage = 300 + active_power_usage = 300 + + var/active = FALSE + var/busy = FALSE + +/obj/machinery/mob_tracker/server_relay/mechanics_hints() + . += ..() + . += "You may use a multitool on this [src] to attempt activating it. It must be powered first." + +/obj/machinery/mob_tracker/server_relay/Initialize() + . = ..() + power_change() + update_icon() + +/obj/machinery/mob_tracker/server_relay/power_change() + ..() + update_icon() + if(stat & NOPOWER) + set_light(0) + active = FALSE + post_activation() + +/obj/machinery/mob_tracker/server_relay/attackby(obj/item/attacking_item, mob/user) + if(istype(attacking_item, /obj/item/device/multitool)) + if(stat & NOPOWER) + to_chat(user, SPAN_NOTICE("\The [src] is not powered, completely unresponsive to your inputs.")) + return + + if(busy || active) + to_chat(user, SPAN_WARNING("\The [src] is already receiving inputs!")) + return + busy = TRUE + + visible_message(SPAN_NOTICE("\The [user] starts tinkering with \the [src]...")) + to_chat(user, SPAN_NOTICE("You start pulsing \the [src] with \the [attacking_item], this should take a while...")) + playsound(get_turf(src), /singleton/sound_category/electrical_hum, 30, TRUE) + if(do_after(user, 15 SECONDS)) + to_chat(user, SPAN_NOTICE("With the last impulse, \the [src] comes to life!")) + playsound(get_turf(src), /singleton/sound_category/electrical_spark, 30, TRUE) + active = TRUE + update_icon() + post_activation() + busy = FALSE + return + + return ..() + +/obj/machinery/mob_tracker/server_relay/proc/post_activation() + for(var/obj/machinery/computer/terminal/mob_tracker/MT in world) + if(MT.z == src.z) + MT.disabled = !active + +/obj/machinery/mob_tracker/server_relay/update_icon() + if(stat & NOPOWER) + icon_state = "server-nopower" + else if(active) + icon_state = "server-on" + set_light(2, 1.3, COLOR_GREEN) + else + icon_state = initial(icon_state) + set_light(2, 1.3, COLOR_MAROON) + +// ---- Ruin specific consoles + +/obj/machinery/computer/terminal/mob_tracker/quarantined_outpost + name = "obsolete terminal" + types_to_track = list( + /mob/living/simple_animal/hostile/revivable/husked_creature/quarantined_outpost, + /mob/living/simple_animal/hostile/revivable/abomination/quarantined_outpost, + /obj/structure/quarantined_outpost/fluff_canister + ) + + tgui_theme = "sol" + disabled = TRUE + no_data_description = "ERR:0xDEAD UNABLE TO LINK WITH SENSORS RELAY" + +/obj/machinery/computer/terminal/quarantined_outpost/extraction + name = "extraction terminal" + icon_screen = "forensic" + icon_keyboard = "atmos_key" + icon_keyboard_emis = "atmos_key_mask" + + var/used = FALSE + +/obj/machinery/computer/terminal/quarantined_outpost/extraction/attack_hand(mob/user) + if(used) + to_chat(user, SPAN_WARNING("You cannot interact with \the [src] right now.")) + return + used = TRUE + if(LAZYLEN(GLOB.quarantined_outpost_creatures)) // extraction isn't allowed without clearing the ruin + to_chat(user, SPAN_WARNING("\The [src] doesn't notice your input. The notice on the screen informs you about a present lockdown and quarantine protocols.")) + playsound(get_turf(src), /singleton/sound_category/keyboard_sound, 30, TRUE) + used = FALSE + return + if(tgui_alert(user, "As you stand before \the [src] a wave doubt washes over you. This machine hasn't been maintained for a long time. This may be the only chance you have got.", "Irreversible Action!", list("Confirm", "I changed my mind")) != "Confirm") + used = FALSE + return + + var/obj/structure/quarantined_outpost_extractor/EX = locate(/obj/structure/quarantined_outpost_extractor) in world + EX.start_extraction() + +/*###################################### + MISC +######################################*/ + +/// A mapping tool. Has a chance to cut a cable and pry the flooring of the tile this landmark is placed upon. +/obj/effect/landmark/maybe_cut_cable + name = "cut cable helper" + icon_state = "x" + +/obj/effect/landmark/maybe_cut_cable/Initialize() + ..() + return INITIALIZE_HINT_LATELOAD + +/obj/effect/landmark/maybe_cut_cable/LateInitialize() + if(prob(25)) + var/turf/simulated/floor/T = get_turf(src) + var/obj/structure/cable/C = locate(/obj/structure/cable) in T + if(C) + new/obj/item/stack/cable_coil(T, 1, C.color) + qdel(C) + if(T.flooring && T.flooring.flags & TURF_REMOVE_CROWBAR) + T.make_plating(1) + qdel(src) + +/** + * Trapped vents + * A mapping tool. Acts as a mob spawner if placed on top of a vent. When a player crosses near them, they'll get ambushed. + * + * Following circuimstances affects the chance of this trap triggering: + * * If someone ran past it, it's guaranteed to be triggered without delay. + * * If they were wise and slowly walked closer to it, it has a chance that it won't be triggered. But even if it was triggered in this circuimstances, it'll happen with a delay. + * * If an obj/item crosses it instead, it has a low chance to trigger the trap. + * * If the vent is welded shut, trap is disabled until it is unwelded again. + * + * Once the trap is triggered, it won't trigger again. + */ +/obj/effect/landmark/trapped_vent + name = "trapped vent" + icon = 'icons/effects/map_effects.dmi' + icon_state = "rigged_vent" + invisibility = INVISIBILITY_MAXIMUM // not abstract level, because this landmark needs to be detected by a range location check + + /// List of mob type paths that will be spawned on trigger. Put your types here. + var/list/mobs_to_spawn + + var/min_spawn_amount = 1 + var/max_spawn_amount = 2 + + var/datum/weakref/my_vent + var/list/step_trigger_group = list() + var/activated = FALSE + + /// Probability of the vent chosen as trapped after initialize. + var/spawn_chance = 100 + +/obj/effect/landmark/trapped_vent/Initialize(mapload) + . = ..() + my_vent = WEAKREF(locate(/obj/machinery/atmospherics/unary/vent_pump) in get_turf(src)) + if(!my_vent) + return INITIALIZE_HINT_QDEL // Object wasn't placed on a vent, abort! + + if(prob(spawn_chance)) + if(mapload) // make sure everything is loaded before we set the `step_trigger` group, so we'll avoid random objects triggering this while main initialize process + addtimer(CALLBACK(src, PROC_REF(set_the_trap)), 3 MINUTE) + else + set_the_trap() + else + return INITIALIZE_HINT_QDEL + +/obj/effect/landmark/trapped_vent/proc/set_the_trap() + for(var/turf/I in range(1, src)) + step_trigger_group += new /obj/effect/step_trigger/trapped_vent(I) + +/obj/effect/landmark/trapped_vent/proc/activate_trap(chance, immediate_spawn = FALSE) + if(activated) + return + activated = TRUE + var/obj/machinery/atmospherics/unary/vent_pump/vent = my_vent.resolve() // temporarily referencing because we need the vent's variables + var/turf/T = get_turf(src) + if(!vent || vent.welded) // trap was made invalid, no need to check for bypassers + QDEL_LAZYLIST(step_trigger_group) + return + if(prob(chance)) + if(!immediate_spawn) + for(var/mob/M in get_hearers_in_range(7, src)) + to_chat(M, SPAN_DANGER("You hear a subtle thud echoing inside the [vent], it's getting closer...")) + playsound(T, 'sound/effects/clang.ogg', 50, FALSE) + sleep(2 SECONDS) + var/loop_amount = rand(min_spawn_amount, max_spawn_amount) + for(var/I in 1 to loop_amount) + var/chosen_mob = pick(mobs_to_spawn) + new chosen_mob(T) + playsound(T, 'sound/effects/clang.ogg', 100, FALSE) + for(var/mob/M in get_hearers_in_range(7, src)) + to_chat(M, SPAN_DANGER("Something emerges, crawling out of \the [vent]!")) + QDEL_LAZYLIST(step_trigger_group) // step_triggers served its purpose + else + activated = FALSE + +/// Has a 20% chance to make set a trap. +/obj/effect/landmark/trapped_vent/maybe + spawn_chance = 20 + +/obj/effect/landmark/trapped_vent/maybe/quarantined_outpost + mobs_to_spawn = list( + /mob/living/simple_animal/hostile/revivable/abomination/quarantined_outpost/disguiseless, + /mob/living/simple_animal/hostile/revivable/husked_creature/quarantined_outpost + ) + +/obj/effect/step_trigger/trapped_vent + players_only = TRUE + var/obj/effect/landmark/trapped_vent/spawner_trap + +/obj/effect/step_trigger/trapped_vent/Initialize() + . = ..() + spawner_trap = locate(/obj/effect/landmark/trapped_vent) in range(1, src) + +/obj/effect/step_trigger/trapped_vent/Trigger(atom/A) + if(isobj(A)) + spawner_trap.activate_trap(10) + return + var/mob/crossing_mob = A + if(crossing_mob.m_intent == "walk") + spawner_trap.activate_trap(20) + return + spawner_trap.activate_trap(100, TRUE) + +/// Mainly used by abominations to copy human appearance. +/obj/effect/landmark/corpse/quarantined_outpost + outfit = list( + /obj/outfit/admin/sol_private, + /obj/outfit/admin/generic, + /obj/outfit/admin/generic/engineer, + /obj/outfit/admin/generic/security, + /obj/outfit/admin/generic/medical + ) + +/obj/effect/landmark/corpse/husk + name = "Decayed Corpse" + corpseid = FALSE + species = SPECIES_HUMAN + +/obj/effect/landmark/corpse/husk/do_extra_customization(mob/living/carbon/human/M) + M.ChangeToSkeleton() + M.dir = pick(GLOB.cardinals) + +/obj/effect/landmark/corpse/husk/engineer + name = "Decayed Engineer" + corpsehelmet = /obj/item/clothing/head/helmet/space/void/engineering + corpsesuit = /obj/item/clothing/suit/space/void/engineering + corpseuniform = /obj/item/clothing/under/color/brown + corpsegloves = /obj/item/clothing/gloves/yellow + corpsebelt = /obj/item/storage/belt/utility/full + corpseshoes = /obj/item/clothing/shoes/magboots + corpseid = TRUE + corpseidjob = "Facility Engineer" + corpseidaccess = ACCESS_QUARANTINED_OUTPOST_ENGINEER + corpseidicon = "dark" + +/obj/outfit/admin/sol_private + name = "Solarian Army Personnel" + + uniform = list( + /obj/item/clothing/under/rank/sol, + /obj/item/clothing/under/rank/sol/army, + /obj/item/clothing/under/rank/sol/army/grey + + ) + gloves = list( + /obj/item/clothing/gloves/fingerless, + /obj/item/clothing/gloves/black, + /obj/item/clothing/gloves/black_leather + ) + shoes = list( + /obj/item/clothing/shoes/jackboots, + /obj/item/clothing/shoes/workboots, + /obj/item/clothing/shoes/workboots/dark, + /obj/item/clothing/shoes/winter + ) + accessory = list( + /obj/item/clothing/accessory/storage/brown_vest, + /obj/item/clothing/accessory/storage/overalls, + /obj/item/clothing/accessory/storage/pouches, + /obj/item/clothing/accessory/storage/pouches/white, + /obj/item/clothing/accessory/storage/webbing, + /obj/item/clothing/accessory/storage/webbingharness + ) + belt = list( + /obj/item/storage/belt/fannypack, + /obj/item/storage/belt/utility, + /obj/item/storage/belt/medical/paramedic, + /obj/item/storage/belt/mining, + /obj/item/storage/belt/security + ) + back = list( + /obj/item/storage/backpack/rucksack/tan, + /obj/item/storage/backpack/rucksack/green, + /obj/item/storage/backpack/rucksack/navy, + /obj/item/storage/backpack/satchel, + /obj/item/storage/backpack/satchel/leather, + /obj/item/storage/backpack/messenger, + /obj/item/storage/backpack/satchel/pocketbook + ) + +/obj/structure/filler + name = "invisible wall" + desc = "I cast barrier!" + density = TRUE + anchored = TRUE + invisibility = 101 + +/obj/structure/filler/ex_act() + return + +/obj/structure/decor/fluff_ladder + name = "ladder" + icon = 'icons/obj/structures.dmi' + icon_state = "ladder01" + +/obj/structure/decor/fluff_ladder/up + icon_state = "ladder10" + +/*###################################### + PAPERS +######################################*/ + +/obj/item/paper/fluff/quarantined_outpost/engineers_note + name = "crumpled instructions" + info = {" +

+

SSF Nemora

+ 'Research Rooted in Discovery.'
+

+
From: Directorate Office - Facility Operations +
To: Engineering Desk - Main Floor +
Subject: Immediate Action Required, Quarantine Protocols +

Current security issues necessitate the quarantine measures, which are now to be enacted. +

Ongoing situation intervenes the automated systems and it has to be enforced manually. Personnels who aren't occupied with highest priority tasks + are required to perform EVA and toggle the locking systems in Auxiliary Power Compartment. Attending personnels will be let back inside once the situation + settles down, estimatedly in two hours. Prepare in consideration of a long duration EVA duty. + "} + +/obj/item/paper/fluff/quarantined_outpost/burnt_note + name = "burnt note" + info = {" + \[whatever once was written here is now mostly unintelligible, claimed by a fire. Following is the only things you can discern.\] +

+ ...bring the equipment to... dispose of... if you see any, make sure they stay down... burn... + "} + +/obj/item/paper/fluff/quarantined_outpost/maintenance_log + name = "maintenance log" + info = {" + ... +

+ - \[11 FEB 2274 - CYCLE 451 - ATKINSON\] Regular check-up, all green. Lately we allocate more and more processing space for the labs, even though these equipments + weren't meant to pull off such an intense workload. We may be in the middle of damn nowhere, but hoping for miracles won't get you too far either. Put a ticket, + get us some proper hardware and then maybe you will see less blinking red lights in the box that we have to pulse to reboot every now and then. + "} + +/obj/item/paper/fluff/quarantined_outpost/venusians_note + name = "hastily written note" + info = {" + Babe, if you find this note pick whatever you can. Meet me at the hangar bay, we're leaving the first chance we get. Just today two more search and rescue teams + went missing, and now medbay isn't accepting like, patients. More people are getting sick. Now we have a pilot too, that's the chance! I hope you change your mind, wholeheartedly. + "} + +/obj/item/paper/fluff/quarantined_outpost/cafeteria_note + name = "crumpled notice" + info = {" + We have been holding the cafeteria for some time now. Keeping watch in turns, scare them away where we can. At first it seemed promising, we had plenty + tables here to block the entry and enough food to feed an entire floor for months. It was a brief solace to know we won't starve while the sickness was getting inside our heads. +

+ Comfort is a slow death, they say. We were ambushed. Most of us thought it was sickness bogging down our sanity, but those damnable things lurk in the ventilation. + We lost three good men. If you be smart about it and move slowly around vents, the chances are they won't notice you. Welding them shut will keep you safe. + You can also try thowing stuff near vents, might make them curious. Whatever you do, DON'T run pass them, unless you have a death wish... +

+ We heard the rumours of a search-and-rescue team returned from the depths, claiming tunnels are connecting to some caverns in a junction, where them have no way + of reaching for now. We are headed there. + "} + +/obj/item/folder/envelope/quarantined_outpost/research_note + name = "Summarized Research Log - 'Experiment Site Nemora'" + desc = "A small envelope with Solarian Alliance's emblem on the front. Right beneath it, 'CONFIDENTIAL' is written in bold text." + +/obj/item/folder/envelope/quarantined_outpost/research_note/Initialize() + . = ..() + + var/obj/item/paper/fluff/reward/research_note/R = new(src) + R.update_icon() + var/image/stampoverlay = image('icons/obj/bureaucracy.dmi') + stampoverlay.icon_state = "paper_stamp-sol" + if(!R.stamped) + R.stamped = new + R.ico += "paper_stamp-sol" + R.stamped += /obj/item/stamp + R.AddOverlays(stampoverlay) + R.stamps += "
This paper has been stamped as \"TOP SECRET\"." + +/obj/item/paper/fluff/reward/research_note + name = "research article" + var/list/possible_techs = list( + TECH_MATERIAL, TECH_ENGINEERING, TECH_POWER, TECH_BIO, + TECH_COMBAT, TECH_MAGNET, TECH_DATA, TECH_ARCANE + ) // illegals, phoron and bluespace isn't included for this instance, given this ruin is a pre-war solarian relic, two of these things weren't discovered at the time! + +/obj/item/paper/fluff/reward/research_note/Initialize() + . = ..() + + origin_tech = list(pick(possible_techs) = 5) + info = {" + \[after briefly skimming its contents, this article presents [origin_tech[1]]-related findings. All sensitive sections are encrypted. Maybe a decrypting tool \ + could get you through it.\]"} + +/obj/item/paper/fluff/reward/research_note/mechanics_hints(mob/user, distance, is_adjacent) + . += ..() + . += "You can put this paper in a deconstructive analyzer to obtain research levels hidden in it!" + +#undef BREAK_WALL_COOLDOWN +#undef BREAK_EXTRACTOR_COOLDOWN diff --git a/maps/away/ships/coc/coc_scarab/coc_scarab.dm b/maps/away/ships/coc/coc_scarab/coc_scarab.dm index e8d83c7ef52..79b296df7db 100644 --- a/maps/away/ships/coc/coc_scarab/coc_scarab.dm +++ b/maps/away/ships/coc/coc_scarab/coc_scarab.dm @@ -198,15 +198,6 @@ shuttle_tag = "Scarab Lift" // CUSTOM STUFF -// Dimmed yellow lights -/obj/machinery/light/floor/decayed - brightness_color = "#fabd6d" - randomize_color = FALSE - brightness_power = 0.3 - -/obj/machinery/light/colored/decayed/dimmed - brightness_power = 0.2 - // Guide to the combustion engine /obj/item/paper/fluff/scarabengine name = "Burrow-class Freighter Engine Field Guide" diff --git a/sound/effects/creatures/robot_talk_1.ogg b/sound/effects/creatures/robot_talk_1.ogg new file mode 100644 index 00000000000..73659c15fa5 Binary files /dev/null and b/sound/effects/creatures/robot_talk_1.ogg differ diff --git a/sound/effects/creatures/robot_talk_2.ogg b/sound/effects/creatures/robot_talk_2.ogg new file mode 100644 index 00000000000..ed605df5d5f Binary files /dev/null and b/sound/effects/creatures/robot_talk_2.ogg differ diff --git a/sound/effects/earthquake_rumble.ogg b/sound/effects/earthquake_rumble.ogg new file mode 100644 index 00000000000..96bbdf8d092 Binary files /dev/null and b/sound/effects/earthquake_rumble.ogg differ diff --git a/sound/effects/light_heavy_on.ogg b/sound/effects/light_heavy_on.ogg new file mode 100644 index 00000000000..e1112a70b6e Binary files /dev/null and b/sound/effects/light_heavy_on.ogg differ diff --git a/sound/music/licensing_information.txt b/sound/music/licensing_information.txt index 45d3c85b66e..49a1ae2254e 100644 --- a/sound/music/licensing_information.txt +++ b/sound/music/licensing_information.txt @@ -121,4 +121,10 @@ File Name: kaaistoep.ogg Original Title: Kaaistoep Author: Doxent Zsigmond License: CC BY-NC-SA 4.0 -Link: http://dig.ccmixter.org/files/doxent/58480 \ No newline at end of file +Link: http://dig.ccmixter.org/files/doxent/58480 +---------- +File Name: quarantined_outpost.ogg +Original Title: Betrayer +Author: Karl Casey +License: CC BY 3.0 +Link: https://karlcasey.bandcamp.com/track/betrayer \ No newline at end of file diff --git a/sound/music/quarantined_outpost.ogg b/sound/music/quarantined_outpost.ogg new file mode 100644 index 00000000000..dd42c440453 Binary files /dev/null and b/sound/music/quarantined_outpost.ogg differ diff --git a/tgui/packages/tgui/interfaces/MobTracker.tsx b/tgui/packages/tgui/interfaces/MobTracker.tsx new file mode 100644 index 00000000000..4ef2df70a5d --- /dev/null +++ b/tgui/packages/tgui/interfaces/MobTracker.tsx @@ -0,0 +1,151 @@ +import { BooleanLike } from '../../common/react'; +import { useBackend } from '../backend'; +import { Section, Box, Button, LabeledList, Flex } from '../components'; +import { Window } from '../layouts'; + +export type MobTrackerData = { + areas_containing_mobs: Record; + areas_containing_objects: Record; + tgui_theme: string; + disabled: BooleanLike; + no_data_description: string; +}; + +export const MobTracker = (props, context) => { + const { act, data } = useBackend(context); + + const total_entities = Object.values(data.areas_containing_mobs || {}).reduce( + (sum, count) => sum + count, + 0 + ); + + const total_objects = Object.values( + data.areas_containing_objects || {} + ).reduce((sum, count) => sum + count, 0); + + return ( + + + {data.disabled ? ( + + + NO DATA AVAILABLE + + {data.no_data_description} + + ) : ( +
+ + +
+ + + {Object.keys(data.areas_containing_mobs || {}).length} + + + {total_entities} + + + ONLINE + + +
+
+ +
act('refresh_the_ui')} + /> + }> + + {Object.entries(data.areas_containing_mobs || {}).map( + ([area_name, count]) => ( + = 5 ? 'red' : 'yellow'}> + {count} ENTITY(S) FOUND + + ) + )} + +
+
+
+ + + +
+ + + {Object.keys(data.areas_containing_objects || {}).length} + + + {total_objects} + + + ONLINE + + +
+
+ +
+ + {Object.entries(data.areas_containing_objects || {}).map( + ([area_name, count]) => ( + + {count} OBJECT(S) FOUND + + ) + )} + +
+
+
+
+ )} +
+
+ ); +};